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); > } > } > From patchwork at emeril.freedesktop.org Sun Jan 5 08:26:46 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sun, 05 Jan 2025 08:26:46 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_series_starting_with_=5B1/3?= =?utf-8?q?=5D_lib/amdgpu=3A_Extract_PCI_device_address_from_file_descriptor?= In-Reply-To: <20250105071551.113830-1-vitaly.prosyak@amd.com> References: <20250105071551.113830-1-vitaly.prosyak@amd.com> Message-ID: <173606560642.3656620.949004558269202567@b555e5b46a47> == Series Details == Series: series starting with [1/3] lib/amdgpu: Extract PCI device address from file descriptor URL : https://patchwork.freedesktop.org/series/143116/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12388_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_12388 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2435-3491399dc8f0c0c3bcec5316c66e60f5f44e1f10 IGTPW_12388: 12388 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_12388/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sun Jan 5 08:30:10 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sun, 05 Jan 2025 08:30:10 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_series_starting_with_=5B1?= =?utf-8?q?/3=5D_lib/amdgpu=3A_Extract_PCI_device_address_from_file_descript?= =?utf-8?q?or?= In-Reply-To: <20250105071551.113830-1-vitaly.prosyak@amd.com> References: <20250105071551.113830-1-vitaly.prosyak@amd.com> Message-ID: <173606581053.3665830.304262069810895456@b555e5b46a47> == Series Details == Series: series starting with [1/3] lib/amdgpu: Extract PCI device address from file descriptor URL : https://patchwork.freedesktop.org/series/143116/ State : success == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12388 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/index.html Participating hosts (40 -> 38) ------------------------------ Missing (2): bat-atsm-1 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12388 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_12388/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_12388/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_12388 * 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_12388: 12388 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_12388/index.html From patchwork at emeril.freedesktop.org Sun Jan 5 09:52:57 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sun, 05 Jan 2025 09:52:57 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_series_starting_with_=5B1/?= =?utf-8?q?3=5D_lib/amdgpu=3A_Extract_PCI_device_address_from_file_descripto?= =?utf-8?q?r?= In-Reply-To: <20250105071551.113830-1-vitaly.prosyak@amd.com> References: <20250105071551.113830-1-vitaly.prosyak@amd.com> Message-ID: <173607077736.3701513.10912036807720802703@b555e5b46a47> == Series Details == Series: series starting with [1/3] lib/amdgpu: Extract PCI device address from file descriptor URL : https://patchwork.freedesktop.org/series/143116/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12388_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12388_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12388_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_12388_full: ### IGT changes ### #### Possible regressions #### * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-lnl: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-1/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_cursor_crc@cursor-suspend: - shard-bmg: NOTRUN -> [FAIL][3] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-3/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-set2: [PASS][4] -> [DMESG-WARN][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-436/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a3: - 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@flip-vs-suspend at a-hdmi-a3.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-3/igt at kms_flip@flip-vs-suspend at a-hdmi-a3.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3: - shard-bmg: NOTRUN -> [INCOMPLETE][8] +1 other test incomplete [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-4/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3.html * igt at kms_psr@fbc-psr2-suspend: - shard-lnl: [PASS][9] -> [FAIL][10] +1 other test fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at kms_psr@fbc-psr2-suspend.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-1/igt at kms_psr@fbc-psr2-suspend.html #### Warnings #### * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [TIMEOUT][11] ([Intel XE#1473] / [Intel XE#2472]) -> [DMESG-FAIL][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_evict@evict-mixed-threads-large.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-3/igt at xe_evict@evict-mixed-threads-large.html Known issues ------------ Here are the changes found in XEIGTPW_12388_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getversion@basic: - shard-dg2-set2: [PASS][13] -> [FAIL][14] ([Intel XE#3440]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at core_getversion@basic.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at core_getversion@basic.html * igt at core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [PASS][15] -> [SKIP][16] ([Intel XE#1885]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at core_hotunplug@hotunplug-rescan.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at core_hotunplug@hotunplug-rescan.html * igt at core_setmaster@master-drop-set-root: - shard-dg2-set2: NOTRUN -> [FAIL][17] ([Intel XE#3249]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at core_setmaster@master-drop-set-root.html * igt at core_setmaster@master-drop-set-user: - shard-dg2-set2: [PASS][18] -> [FAIL][19] ([Intel XE#3249]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at core_setmaster@master-drop-set-user.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at core_setmaster@master-drop-set-user.html * igt at fbdev@info: - shard-dg2-set2: [PASS][20] -> [SKIP][21] ([Intel XE#2134]) +4 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at fbdev@info.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at fbdev@info.html * igt at fbdev@read: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2134]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-434/igt at fbdev@read.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#3157]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-1/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.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_12388/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][25] -> [SKIP][26] ([Intel XE#2423] / [i915#2575]) +243 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#3658]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][28] ([Intel XE#1407]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-6/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1428]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +5 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-8/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.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_12388/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-180: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][33] ([Intel XE#2314] / [Intel XE#2894]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][34] ([Intel XE#367]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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_12388/shard-bmg-7/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][36] ([Intel XE#2887]) +8 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][37] -> [SKIP][38] ([Intel XE#2136] / [Intel XE#2351]) +35 other tests skip [37]: 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 [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][39] ([Intel XE#787]) +30 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][40] ([Intel XE#3432]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-434/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2887]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][43] ([Intel XE#373]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-435/igt at kms_chamelium_audio@dp-audio.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_12388/shard-lnl-8/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_hpd@dp-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2252]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-5/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#373]) +4 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][47] ([Intel XE#1178]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][48] ([Intel XE#307]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-3/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_12388/shard-lnl-1/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_12388/shard-bmg-5/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_12388/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][54] ([Intel XE#455]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][55] ([Intel XE#2320]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-3/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][56] ([Intel XE#309]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-1/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]) +1 other test dmesg-warn [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_12388/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][59] ([Intel XE#2286]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][60] ([Intel XE#2141]) +2 other tests fail [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#3383]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-3/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dp_aux_dev: - shard-dg2-set2: [PASS][62] -> [SKIP][63] ([Intel XE#2423]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_dp_aux_dev.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_dp_aux_dev.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_12388/shard-bmg-7/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#2423] / [i915#2575]) +20 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_flip@2x-dpms-vs-vblank-race.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_12388/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 ad-dp2-hdmi-a3: - shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#3288] / [Intel XE#3321]) +1 other test fail [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 ad-dp2-hdmi-a3.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-8/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 at ac-dp2-hdmi-a3: - shard-bmg: [PASS][70] -> [FAIL][71] ([Intel XE#3321]) [70]: 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 [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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-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_12388/shard-lnl-1/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][73] -> [INCOMPLETE][74] ([Intel XE#2597]) +1 other test incomplete [73]: 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 [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-4/igt at kms_flip@2x-flip-vs-suspend-interruptible at ac-dp2-hdmi-a3.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [PASS][75] -> [FAIL][76] ([Intel XE#3149] / [Intel XE#886]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at kms_flip@blocking-wf_vblank.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-8/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@blocking-wf_vblank at c-edp1: - shard-lnl: [PASS][77] -> [FAIL][78] ([Intel XE#886]) +2 other tests fail [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at kms_flip@blocking-wf_vblank at c-edp1.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-8/igt at kms_flip@blocking-wf_vblank at c-edp1.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][79] ([Intel XE#2597]) +2 other tests incomplete [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-5/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend at c-dp2: - shard-bmg: [PASS][80] -> [FAIL][81] ([Intel XE#3879]) +1 other test fail [80]: 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 [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-3/igt at kms_flip@flip-vs-suspend at c-dp2.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [PASS][82] -> [SKIP][83] ([Intel XE#2136]) +64 other tests skip [82]: 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 [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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-yftileccs-to-64bpp-yftile-downscaling 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_12388/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_12388/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][86] ([Intel XE#1401]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][87] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][88] ([Intel XE#1397]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][89] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-4/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_12388/shard-dg2-466/igt at kms_frontbuffer_tracking@basic.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2311]) +18 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][93] ([Intel XE#651]) +6 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-4/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][94] ([Intel XE#2333]) +8 other tests fail [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-5/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][95] ([Intel XE#651]) +6 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][96] ([Intel XE#656]) +21 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][97] ([Intel XE#2352]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][98] ([Intel XE#2313]) +24 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][99] ([Intel XE#1469]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][100] ([Intel XE#653]) +7 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][101] ([Intel XE#1503]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-8/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#3898]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-7/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#346]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-3/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#2927]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-4/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2927]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-435/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-bmg: NOTRUN -> [INCOMPLETE][106] ([Intel XE#3663]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-4/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_plane_cursor@viewport: - shard-dg2-set2: [PASS][107] -> [FAIL][108] ([Intel XE#616]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_cursor@viewport.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-435/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][109] ([Intel XE#2763]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][110] ([Intel XE#2763]) +9 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.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_12388/shard-lnl-3/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]) +5 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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_12388/shard-bmg-7/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@cursor-dpms: - shard-dg2-set2: [PASS][115] -> [SKIP][116] ([Intel XE#2446]) +8 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_rpm@cursor-dpms.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_pm_rpm@cursor-dpms.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_12388/shard-lnl-5/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][118] ([Intel XE#1489]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][119] ([Intel XE#1489]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-3/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][120] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-434/igt at kms_psr@fbc-psr2-primary-render.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_12388/shard-lnl-8/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]) +7 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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#2136]) +21 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][124] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][125] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][126] ([Intel XE#3414]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-436/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_12388/shard-bmg-8/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_12388/shard-bmg-4/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2450]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-3/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#1499]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-7/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1499]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-6/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#756]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-3/igt at kms_writeback@writeback-pixel-formats.html - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#756]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-434/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1091] / [Intel XE#2849]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][135] ([Intel XE#3869]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][136] ([Intel XE#2905]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-434/igt at xe_eudebug@basic-exec-queues.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_12388/shard-lnl-6/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]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-4/igt at xe_eudebug_online@single-step.html * igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-sram: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2905]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-7/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html * igt at xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#688]) +6 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][141] ([Intel XE#2364]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-5/igt at xe_evict@evict-large-multi-vm-cm.html - shard-dg2-set2: NOTRUN -> [FAIL][142] ([Intel XE#1600]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][143] -> [SKIP][144] ([Intel XE#1130]) +457 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_exec_basic@many-null-rebind.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_exec_basic@many-null-rebind.html * igt at xe_exec_basic@multigpu-no-exec-null-rebind: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#1392]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-1/igt at xe_exec_basic@multigpu-no-exec-null-rebind.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_12388/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][147] ([Intel XE#288]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-435/igt at xe_exec_fault_mode@twice-userptr-prefetch.html * igt at xe_live_ktest@xe_bo: - shard-dg2-set2: [PASS][148] -> [SKIP][149] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_live_ktest@xe_bo.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_live_ktest@xe_bo.html - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1192]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-4/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-dg2-set2: [PASS][151] -> [SKIP][152] ([Intel XE#2229]) [151]: 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 [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][153] ([Intel XE#378]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-6/igt at xe_module_load@force-load.html * igt at xe_oa@syncs-syncobj-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-435/igt at xe_oa@syncs-syncobj-cfg.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#1420] / [Intel XE#2838]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-5/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2284]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-5/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#584]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-5/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-6/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-multiple-execs: - shard-lnl: [PASS][159] -> [ABORT][160] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at xe_pm@s4-multiple-execs.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-2/igt at xe_pm@s4-multiple-execs.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#579]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-436/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#944]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-7/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#944]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-5/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#944]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-435/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#3342]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-1/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@invalid-extensions: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#1130]) +32 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_vm@invalid-extensions.html #### Possible fixes #### * 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_12388/shard-bmg-3/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][169] ([Intel XE#301]) -> [PASS][170] +2 other tests pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][171] -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][173] -> [PASS][174] +1 other test pass [173]: 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 [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][175] ([Intel XE#1035]) -> [PASS][176] +1 other test pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-8/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][177] ([Intel XE#718]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][179] ([Intel XE#3313]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-3/igt at kms_sequence@get-forked-busy.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][181] ([Intel XE#899]) -> [PASS][182] +1 other test pass [181]: 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 [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][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_12388/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_12388/shard-lnl-4/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm_residency@gt-c6-freeze: - shard-bmg: [INCOMPLETE][187] ([Intel XE#3088]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-7/igt at xe_pm_residency@gt-c6-freeze.html * igt at xe_pm_residency@gt-c6-freeze at gt1: - shard-bmg: [INCOMPLETE][189] -> [PASS][190] +1 other test pass [189]: 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 [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-7/igt at xe_pm_residency@gt-c6-freeze at gt1.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][191] ([Intel XE#623]) -> [SKIP][192] ([Intel XE#2423] / [i915#2575]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@crc: - shard-bmg: [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-bmg-3/igt at kms_async_flips@crc.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-7/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][195] ([Intel XE#3781]) -> [INCOMPLETE][196] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_async_flips@crc-atomic.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-436/igt at kms_async_flips@crc-atomic.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][197] ([Intel XE#3768]) -> [SKIP][198] ([Intel XE#2423] / [i915#2575]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_async_flips@invalid-async-flip-atomic.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-434/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][199] ([Intel XE#316]) -> [SKIP][200] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@linear-16bpp-rotate-90.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][201] ([Intel XE#316]) -> [SKIP][202] ([Intel XE#2136]) +8 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][203] ([Intel XE#1124]) -> [SKIP][204] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip [203]: 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 [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][205] ([Intel XE#1124]) -> [SKIP][206] ([Intel XE#2136]) +20 other tests skip [205]: 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 [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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-addfb: - shard-dg2-set2: [SKIP][207] ([Intel XE#619]) -> [SKIP][208] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_big_fb@yf-tiled-addfb.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][209] ([Intel XE#610]) -> [SKIP][210] ([Intel XE#2136]) [209]: 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 [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][211] ([Intel XE#367]) -> [SKIP][212] ([Intel XE#2423] / [i915#2575]) +11 other tests skip [211]: 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 [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][213] ([Intel XE#2191]) -> [SKIP][214] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [213]: 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 [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][215] ([Intel XE#2907]) -> [SKIP][216] ([Intel XE#2136]) +3 other tests skip [215]: 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 [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][217] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][218] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][219] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][220] ([Intel XE#2136]) +35 other tests skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][221] ([Intel XE#314]) -> [SKIP][222] ([Intel XE#2136] / [Intel XE#2351]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_cdclk@mode-transition-all-outputs.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][223] ([Intel XE#306]) -> [SKIP][224] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_chamelium_color@gamma.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_chamelium_color@gamma.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: [SKIP][225] ([Intel XE#373]) -> [SKIP][226] ([Intel XE#2423] / [i915#2575]) +26 other tests skip [225]: 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 [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][227] ([Intel XE#1178]) -> [SKIP][228] ([Intel XE#2423] / [i915#2575]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_content_protection@atomic-dpms.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][229] ([Intel XE#307]) -> [SKIP][230] ([Intel XE#2423] / [i915#2575]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_content_protection@dp-mst-type-1.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][231] ([Intel XE#308]) -> [SKIP][232] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x170.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][233] ([Intel XE#323]) -> [SKIP][234] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [233]: 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 [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_dsc@dsc-with-bpc: - shard-dg2-set2: [SKIP][235] ([Intel XE#455]) -> [SKIP][236] ([Intel XE#2136]) +9 other tests skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_dsc@dsc-with-bpc.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_dsc@dsc-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][237] ([Intel XE#776]) -> [SKIP][238] ([Intel XE#2136]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_fbcon_fbt@psr.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][239] ([Intel XE#701]) -> [SKIP][240] ([Intel XE#2423] / [i915#2575]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_feature_discovery@chamelium.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][241] ([Intel XE#1138]) -> [SKIP][242] ([Intel XE#2423] / [i915#2575]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_feature_discovery@display-4x.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr2: - shard-dg2-set2: [SKIP][243] ([Intel XE#1135]) -> [SKIP][244] ([Intel XE#2423] / [i915#2575]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_feature_discovery@psr2.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-434/igt at kms_feature_discovery@psr2.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][245] ([Intel XE#2049] / [Intel XE#2597]) -> [SKIP][246] ([Intel XE#2423] / [i915#2575]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][247] ([Intel XE#455]) -> [SKIP][248] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][249] ([i915#5274]) -> [SKIP][250] ([Intel XE#2423] / [i915#2575]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_force_connector_basic@prune-stale-modes.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][251] ([Intel XE#651]) -> [SKIP][252] ([Intel XE#2136] / [Intel XE#2351]) +27 other tests skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][253] ([Intel XE#651]) -> [SKIP][254] ([Intel XE#2136]) +58 other tests skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][255] ([Intel XE#877]) -> [FAIL][256] ([Intel XE#2333]) [255]: 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 [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][257] ([Intel XE#658]) -> [SKIP][258] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2-set2: [SKIP][259] ([Intel XE#653]) -> [SKIP][260] ([Intel XE#2136] / [Intel XE#2351]) +21 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][261] ([Intel XE#653]) -> [SKIP][262] ([Intel XE#2136]) +68 other tests skip [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-slowdraw.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][263] ([Intel XE#605]) -> [SKIP][264] ([Intel XE#2423] / [i915#2575]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_getfb@getfb-reject-ccs.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-434/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: [SKIP][265] ([Intel XE#2925]) -> [SKIP][266] ([Intel XE#2136]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_joiner@basic-force-ultra-joiner.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][267] ([Intel XE#2927]) -> [SKIP][268] ([Intel XE#2136]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_joiner@basic-ultra-joiner.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: [SKIP][269] ([Intel XE#346]) -> [SKIP][270] ([Intel XE#2136]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_joiner@invalid-modeset-big-joiner.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][271] ([Intel XE#356]) -> [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_multipipe_modeset@basic-max-pipe-crc-check.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_cursor@primary: - shard-dg2-set2: [FAIL][273] ([Intel XE#616]) -> [SKIP][274] ([Intel XE#2423] / [i915#2575]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_plane_cursor@primary.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_plane_cursor@primary.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][275] ([Intel XE#361]) -> [SKIP][276] ([Intel XE#2423] / [i915#2575]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][277] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][278] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [277]: 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 [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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][279] ([Intel XE#2938]) -> [SKIP][280] ([Intel XE#2136]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_pm_backlight@brightness-with-dpms.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][281] ([Intel XE#870]) -> [SKIP][282] ([Intel XE#2136]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_backlight@fade-with-suspend.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][283] ([Intel XE#3309]) -> [SKIP][284] ([Intel XE#2136]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_pm_dc@dc5-retention-flops.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][285] ([Intel XE#1489]) -> [SKIP][286] ([Intel XE#2136]) +25 other tests skip [285]: 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 [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][287] ([Intel XE#1122]) -> [SKIP][288] ([Intel XE#2136]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr2_su@page_flip-nv12.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: [SKIP][289] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][290] ([Intel XE#2136]) +28 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][291] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][292] ([Intel XE#2136] / [Intel XE#2351]) +15 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr@psr-dpms.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_psr@psr-dpms.html * igt at kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][293] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][294] ([Intel XE#2351]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr@psr-sprite-plane-onoff.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][295] ([Intel XE#1127]) -> [SKIP][296] ([Intel XE#2423] / [i915#2575]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][297] ([Intel XE#3414]) -> [SKIP][298] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [297]: 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 [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][299] -> [FAIL][300] ([Intel XE#2883]) [299]: 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 [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-lnl-6/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][301] ([Intel XE#362]) -> [SKIP][302] ([Intel XE#2423] / [i915#2575]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][303] ([Intel XE#330]) -> [SKIP][304] ([Intel XE#2423] / [i915#2575]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_tv_load_detect@load-detect.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][305] ([Intel XE#455]) -> [SKIP][306] ([Intel XE#2423] / [i915#2575]) +17 other tests skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_vrr@flip-dpms.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@lobf: - shard-dg2-set2: [SKIP][307] ([Intel XE#2168]) -> [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-434/igt at kms_vrr@lobf.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg2-set2: [SKIP][309] ([Intel XE#756]) -> [SKIP][310] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_writeback@writeback-invalid-parameters.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at kms_writeback@writeback-invalid-parameters.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][311] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][312] ([Intel XE#1130]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_compute_preempt@compute-threadgroup-preempt.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: [SKIP][313] ([Intel XE#1123]) -> [SKIP][314] ([Intel XE#1130]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_copy_basic@mem-copy-linear-0xfffe.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_copy_basic@mem-copy-linear-0xfffe.html * igt at xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][315] ([Intel XE#1126]) -> [SKIP][316] ([Intel XE#1130]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_copy_basic@mem-set-linear-0x3fff.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0x3fff.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-dg2-set2: [FAIL][317] ([Intel XE#3869]) -> [SKIP][318] ([Intel XE#1130]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_drm_fdinfo@utilization-others-full-load.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][319] ([Intel XE#2905]) -> [SKIP][320] ([Intel XE#1130]) +34 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_eudebug@basic-close.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_eudebug@basic-close.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][321] ([Intel XE#1473] / [Intel XE#402]) -> [SKIP][322] ([Intel XE#1130]) [321]: 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 [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_exec_fault_mode@once-rebind-imm: - shard-dg2-set2: [SKIP][323] ([Intel XE#288]) -> [SKIP][324] ([Intel XE#1130]) +70 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_exec_fault_mode@once-rebind-imm.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_exec_fault_mode@once-rebind-imm.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][325] ([Intel XE#2360]) -> [SKIP][326] ([Intel XE#1130]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][327] ([Intel XE#255]) -> [SKIP][328] ([Intel XE#1130]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_huc_copy@huc_copy.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_huc_copy@huc_copy.html * igt at xe_oa@polling-small-buf: - shard-dg2-set2: [SKIP][329] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][330] ([Intel XE#1130]) +22 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_oa@polling-small-buf.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_oa@polling-small-buf.html * igt at xe_pat@pat-index-xehpc: - shard-dg2-set2: [SKIP][331] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][332] ([Intel XE#1130]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_pat@pat-index-xehpc.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@write: - shard-dg2-set2: [FAIL][333] ([Intel XE#1173]) -> [SKIP][334] ([Intel XE#1061]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_peer2peer@write.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: [SKIP][335] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][336] ([Intel XE#1130]) +5 other tests skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_pm@d3cold-mmap-vram.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][337] ([Intel XE#944]) -> [SKIP][338] ([Intel XE#1130]) +8 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_query@multigpu-query-engines.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_query@multigpu-query-engines.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][339] ([Intel XE#3342]) -> [SKIP][340] ([Intel XE#1130]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_sriov_flr@flr-vf1-clear.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/shard-dg2-466/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][341] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][342] ([Intel XE#1130]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_wedged@wedged-mode-toggle.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12388/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#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#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#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#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#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#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#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#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [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#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#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#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#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#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#3663]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3663 [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#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#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#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [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#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#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [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_12388 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2435-3491399dc8f0c0c3bcec5316c66e60f5f44e1f10 IGTPW_12388: 12388 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_12388/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sun Jan 5 10:12:12 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sun, 05 Jan 2025 10:12:12 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_series_starting_with_=5B?= =?utf-8?q?1/3=5D_lib/amdgpu=3A_Extract_PCI_device_address_from_file_descrip?= =?utf-8?q?tor?= In-Reply-To: <20250105071551.113830-1-vitaly.prosyak@amd.com> References: <20250105071551.113830-1-vitaly.prosyak@amd.com> Message-ID: <173607193239.3712263.4909199349149103026@b555e5b46a47> == Series Details == Series: series starting with [1/3] lib/amdgpu: Extract PCI device address from file descriptor URL : https://patchwork.freedesktop.org/series/143116/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15903_full -> IGTPW_12388_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12388_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12388_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_12388/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_12388_full: ### IGT changes ### #### Possible regressions #### * igt at i915_pm_rc6_residency@rc6-fence: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-8/igt at i915_pm_rc6_residency@rc6-fence.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-6/igt at i915_pm_rc6_residency@rc6-fence.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-hdmi-a3: - shard-dg1: [PASS][3] -> [FAIL][4] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg1-12/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-hdmi-a3.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-13/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-hdmi-a3.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - shard-snb: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-snb5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-snb4/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_properties@connector-properties-legacy: - shard-dg2: [PASS][7] -> [FAIL][8] +1 other test fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-10/igt at kms_properties@connector-properties-legacy.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-10/igt at kms_properties@connector-properties-legacy.html * igt at perf@blocking-parameterized: - shard-mtlp: [PASS][9] -> [INCOMPLETE][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-mtlp-6/igt at perf@blocking-parameterized.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-5/igt at perf@blocking-parameterized.html #### Warnings #### * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-glk: [INCOMPLETE][11] ([i915#12353]) -> [INCOMPLETE][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-glk8/igt at gem_ctx_isolation@preservation-s3 at bcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk5/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][13] ([i915#10131] / [i915#10887]) -> [DMESG-WARN][14] [13]: 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 [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-6/igt at i915_module_load@reload-with-fault-injection.html New tests --------- New tests have been introduced between CI_DRM_15903_full and IGTPW_12388_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_12388_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_12388/shard-dg1-13/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#6230]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-2/igt at api_intel_bb@crc32.html - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#6230]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at api_intel_bb@crc32.html * igt at drm_fdinfo@busy-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8414]) +7 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-3/igt at drm_fdinfo@busy-check-all at vecs1.html * igt at drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8414]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-14/igt at drm_fdinfo@virtual-busy-hang.html * igt at gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-6/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-3/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#9323]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-4/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#7697]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-7/igt at gem_close_race@multigpu-basic-process.html * igt at gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#7697]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-1/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][25] ([i915#6335]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-2/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][26] ([i915#8562]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-9/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_freq@sysfs: - shard-dg2: NOTRUN -> [FAIL][27] ([i915#9561]) +1 other test fail [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-4/igt at gem_ctx_freq@sysfs.html * igt at gem_ctx_isolation@preservation-s3: - shard-dg1: [PASS][28] -> [DMESG-WARN][29] ([i915#4423]) +1 other test dmesg-warn [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg1-14/igt at gem_ctx_isolation@preservation-s3.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/igt at gem_ctx_isolation@preservation-s3.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#8555]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-12/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_12388/shard-snb2/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-1/igt at gem_ctx_sseu@invalid-sseu.html - shard-rkl: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-6/igt at gem_ctx_sseu@invalid-sseu.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#280]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-14/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_12388/shard-tglu-10/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_12388/shard-mtlp-1/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_15903/shard-dg1-12/igt at gem_eio@kms.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/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_12388/shard-snb2/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4771]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-7/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@hog: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-5/igt at gem_exec_balancer@hog.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4036]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-14/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#4525]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-2/igt at gem_exec_balancer@parallel-bb-first.html - shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#4525]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_endless@dispatch: - shard-dg2: [PASS][45] -> [TIMEOUT][46] ([i915#3778] / [i915#7016]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-11/igt at gem_exec_endless@dispatch.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-11/igt at gem_exec_endless@dispatch.html * igt at gem_exec_endless@dispatch at vecs1: - shard-dg2: [PASS][47] -> [TIMEOUT][48] ([i915#7016]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-11/igt at gem_exec_endless@dispatch at vecs1.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-11/igt at gem_exec_endless@dispatch at vecs1.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-17/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-1/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_12388/shard-dg1-14/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-set-default: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-5/igt at gem_exec_flush@basic-wb-set-default.html * igt at gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][53] +7 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-6/igt at gem_exec_params@secure-non-root.html * igt at gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3281]) +10 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-4/igt at gem_exec_reloc@basic-gtt.html * igt at gem_exec_reloc@basic-scanout: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3281]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-8/igt at gem_exec_reloc@basic-scanout.html * igt at gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#3281]) +17 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-17/igt at gem_exec_reloc@basic-write-gtt-active.html * igt at gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#3281]) +11 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-5/igt at gem_exec_reloc@basic-write-read-noreloc.html * igt at gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4537] / [i915#4812]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-11/igt at gem_exec_schedule@preempt-queue-chain.html * igt at gem_exec_schedule@reorder-wide: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4812]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-12/igt at gem_exec_schedule@reorder-wide.html * igt at gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-13/igt at gem_fenced_exec_thrash@no-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4860]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-3/igt at gem_fenced_exec_thrash@no-spare-fences.html - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4860]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-5/igt at gem_fenced_exec_thrash@no-spare-fences.html * igt at gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][63] ([i915#2190]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk7/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-4/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@parallel-multi: - shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#4613]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at gem_lmem_swapping@parallel-multi.html * igt at gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][66] ([i915#4613]) +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk5/igt at gem_lmem_swapping@random-engines.html - shard-tglu: NOTRUN -> [SKIP][67] ([i915#4613]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-6/igt at gem_lmem_swapping@random-engines.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: [PASS][68] -> [TIMEOUT][69] ([i915#5493]) +1 other test timeout [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-6/igt at gem_lmem_swapping@smem-oom at lmem0.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-2/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#12193]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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][71] ([i915#4565]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-17/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_media_vme: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#284]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/igt at gem_media_vme.html * igt at gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4083]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-4/igt at gem_mmap@short-mmap.html * igt at gem_mmap_gtt@big-bo: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4077]) +6 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-17/igt at gem_mmap_gtt@big-bo.html * igt at gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4077]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-1/igt at gem_mmap_gtt@big-bo-tiledy.html - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4077]) +5 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-7/igt at gem_mmap_gtt@big-bo-tiledy.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][77] -> [ABORT][78] ([i915#10729]) +1 other test abort [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-mtlp-3/igt at gem_mmap_offset@clear-via-pagefault.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-7/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4083]) +6 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-12/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4083]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-10/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3282]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-10/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3282]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-13/igt at gem_pread@exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3282]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-5/igt at gem_pread@exhaustion.html * igt at gem_pxp@display-protected-crc: - shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#4270]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at gem_pxp@display-protected-crc.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4270]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-12/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [FAIL][86] ([i915#12940]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-6/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4270]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-1/igt at gem_pxp@protected-raw-src-copy-not-readible.html - shard-rkl: NOTRUN -> [TIMEOUT][88] ([i915#12917] / [i915#12964]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-3/igt at gem_pxp@protected-raw-src-copy-not-readible.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: NOTRUN -> [TIMEOUT][89] ([i915#12964]) +1 other test timeout [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-5/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#4270]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-1/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_readwrite@write-bad-handle: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#3282]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-5/igt at gem_readwrite@write-bad-handle.html * igt at gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#5190] / [i915#8428]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-10/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][93] ([i915#8428]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-8/igt at gem_render_copy@yf-tiled-to-vebox-linear.html * igt at gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#4079]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/igt at gem_set_tiling_vs_gtt.html - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#4079]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-4/igt at gem_set_tiling_vs_gtt.html * igt at gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4885]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/igt at gem_softpin@evict-snoop.html * igt at gem_softpin@noreloc-s3: - shard-glk: [PASS][97] -> [INCOMPLETE][98] ([i915#13306]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-glk3/igt at gem_softpin@noreloc-s3.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk3/igt at gem_softpin@noreloc-s3.html * igt at gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#3323]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-8/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#3282] / [i915#3297]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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][101] ([i915#3297] / [i915#4880]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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][102] ([i915#3297]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-6/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_userptr_blits@readonly-unsync: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#3297]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-14/igt at gem_userptr_blits@readonly-unsync.html * igt at gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3297] / [i915#4958]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-14/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#3297]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-1/igt at gem_userptr_blits@unsync-overlap.html - shard-rkl: NOTRUN -> [SKIP][106] ([i915#3297]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-6/igt at gem_userptr_blits@unsync-overlap.html * igt at gem_workarounds@suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][107] ([i915#13356]) +1 other test incomplete [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk7/igt at gem_workarounds@suspend-resume.html * igt at gen9_exec_parse@allowed-single: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#2527]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-1/igt at gen9_exec_parse@allowed-single.html * igt at gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#2527] / [i915#2856]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-9/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@bb-large: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#2527] / [i915#2856]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at gen9_exec_parse@bb-large.html * igt at gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#2527]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-14/igt at gen9_exec_parse@bb-secure.html * igt at gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#2856]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-2/igt at gen9_exec_parse@bb-start-far.html * igt at gen9_exec_parse@secure-batches: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#2856]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-6/igt at gen9_exec_parse@secure-batches.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][114] -> [ABORT][115] ([i915#9820]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-2/igt at i915_module_load@reload-with-fault-injection.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-5/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#6412]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-1/igt at i915_module_load@resize-bar.html - shard-dg1: NOTRUN -> [SKIP][117] ([i915#7178]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/igt at i915_module_load@resize-bar.html * igt at i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#8399]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#8399]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-4/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#6590]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-6/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-fence: - shard-tglu-1: NOTRUN -> [WARN][121] ([i915#2681]) +1 other test warn [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at i915_pm_rc6_residency@rc6-fence.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][122] ([i915#12797]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk2/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#11681] / [i915#6621]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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][124] ([i915#11681] / [i915#6621]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-2/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@thresholds-park: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#11681]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-14/igt at i915_pm_rps@thresholds-park.html * igt at i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4387]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/igt at i915_pm_sseu@full-enable.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [PASS][127] -> [DMESG-FAIL][128] ([i915#13393]) +1 other test dmesg-fail [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-mtlp-1/igt at i915_selftest@live at workarounds.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-7/igt at i915_selftest@live at workarounds.html * igt at i915_selftest@mock at memory_region: - shard-dg1: NOTRUN -> [DMESG-WARN][129] ([i915#9311]) +1 other test dmesg-warn [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-17/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][130] ([i915#7443]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-3/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@debugfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][131] ([i915#4817]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk4/igt at i915_suspend@debugfs-reader.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4212]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-1/igt at kms_addfb_basic@basic-x-tiled-legacy.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-1-y-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#8709]) +7 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-1-y-rc-ccs-cc.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][134] ([i915#8709]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#8709]) +7 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#8709]) +11 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-7/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-3-4-mc-ccs.html * igt at kms_async_flips@crc: - shard-snb: NOTRUN -> [INCOMPLETE][137] ([i915#13287] / [i915#9878]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-snb5/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [CRASH][138] ([i915#13287]) +3 other tests crash [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-4/igt at kms_async_flips@crc-atomic at pipe-a-hdmi-a-1.html - shard-rkl: NOTRUN -> [INCOMPLETE][139] ([i915#13287]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-2/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-snb: NOTRUN -> [INCOMPLETE][140] ([i915#13287]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-snb5/igt at kms_async_flips@crc at pipe-a-hdmi-a-1.html * igt at kms_async_flips@crc at pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [CRASH][141] ([i915#13287]) +3 other tests crash [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/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][142] ([i915#12967] / [i915#6228]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-2/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#10333]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-4/igt at kms_async_flips@test-cursor-atomic.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#1769] / [i915#3555]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-glk: NOTRUN -> [SKIP][145] ([i915#1769]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk2/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#5286]) +6 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-4/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#4538] / [i915#5286]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-12/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-tglu: NOTRUN -> [SKIP][148] ([i915#5286]) +6 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-9/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][149] ([i915#5286]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#3638]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-2/igt at kms_big_fb@linear-64bpp-rotate-270.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#3638]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-12/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#6187]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-4/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#5190]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-2/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#4538] / [i915#5190]) +9 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-4/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#4538]) +4 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-12/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#6095]) +34 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#12313]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-14/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][158] ([i915#6095]) +204 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/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][159] +459 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk6/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#10307] / [i915#6095]) +171 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-10/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#6095]) +54 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-2/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][162] ([i915#12805]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-7/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#6095]) +25 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-8/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][164] ([i915#12796]) +1 other test incomplete [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk7/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#6095]) +96 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-7/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs 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][166] ([i915#6095]) +19 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-8/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][167] ([i915#12313]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-11/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][168] ([i915#12313]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-5/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][169] ([i915#12313]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#3742]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-17/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#3742]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#7828]) +6 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-7/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][173] ([i915#7828]) +7 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-5/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_hpd@dp-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#7828]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html * igt at kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#7828]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-6/igt at kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#7828]) +10 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-12/igt at kms_chamelium_hpd@hdmi-hpd-fast.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#7828]) +8 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-8/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#7116] / [i915#9424]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#3299]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-8/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3116]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-2/igt at kms_content_protection@dp-mst-type-0.html - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#3116] / [i915#3299]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#3299]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-17/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][183] ([i915#7173]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-10/igt at kms_content_protection@lic-type-0 at pipe-a-dp-4.html * igt at kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#9424]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-5/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#6944] / [i915#9424]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-2/igt at kms_content_protection@uevent.html - shard-dg2: NOTRUN -> [SKIP][186] ([i915#7118] / [i915#9424]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-8/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#13049]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#8814]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-6/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#3555]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#3555]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-7/igt at kms_cursor_crc@cursor-sliding-32x32.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#13049]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-4/igt at kms_cursor_crc@cursor-sliding-512x170.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#13049]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/igt at kms_cursor_crc@cursor-sliding-512x170.html - shard-tglu: NOTRUN -> [SKIP][193] ([i915#13049]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-3/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8814]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-1/igt at kms_cursor_crc@cursor-sliding-max-size.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-snb: [PASS][195] -> [SKIP][196] [195]: 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 [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-snb7/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.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_12388/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][198] ([i915#4103] / [i915#4213]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-4/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]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-dg1: NOTRUN -> [SKIP][200] ([i915#4103] / [i915#4213]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-12/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@basic-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [DMESG-WARN][201] ([i915#12964]) +5 other tests dmesg-warn [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-3/igt at kms_cursor_legacy@basic-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][202] +18 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-7/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][203] ([i915#2346]) +1 other test fail [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk6/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#9067]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-10/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_12388/shard-tglu-8/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#4103]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#9833]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-rkl: NOTRUN -> [SKIP][208] ([i915#9723]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][209] ([i915#9723]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][210] ([i915#9723]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-6/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#9833]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-5/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.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_12388/shard-dg2-8/igt at kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][213] ([i915#8588]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-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][214] ([i915#3804]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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-rkl: NOTRUN -> [SKIP][215] ([i915#12402]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-3/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][216] ([i915#12402]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-13/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][217] ([i915#12402]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-9/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_dsc@dsc-with-bpc: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-13/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#3840]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-5/igt at kms_dsc@dsc-with-bpc-formats.html - shard-rkl: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#3840]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-4/igt at kms_dsc@dsc-with-bpc-formats.html - shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#3840] / [i915#9053]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-14/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#3469]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-8/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#4854]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-6/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_12388/shard-rkl-2/igt at kms_feature_discovery@chamelium.html - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#2065] / [i915#4854]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][227] ([i915#4854]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-12/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@dp-mst: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#9337]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/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_12388/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_12388/shard-tglu-8/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_12388/shard-dg2-2/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_12388/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_12388/shard-dg2-11/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1: - shard-snb: [PASS][234] -> [FAIL][235] ([i915#11989]) +5 other tests fail [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-snb7/igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-snb5/igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#9934]) +3 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-12/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#3637]) +3 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#3637]) +8 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-4/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_12388/shard-mtlp-6/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-dg2: NOTRUN -> [SKIP][240] ([i915#9934]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-11/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][241] ([i915#9934]) +7 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-1/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-dg1: [PASS][242] -> [FAIL][243] ([i915#11989]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg1-12/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-13/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#8381]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-17/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [PASS][245] -> [FAIL][246] ([i915#11989]) +4 other tests fail [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-tglu-9/igt at kms_flip@plain-flip-fb-recreate-interruptible.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-6/igt at kms_flip@plain-flip-fb-recreate-interruptible.html * igt at kms_flip@wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [FAIL][247] ([i915#11989] / [i915#12840]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-5/igt at kms_flip@wf_vblank-ts-check-interruptible.html * igt at kms_flip@wf_vblank-ts-check-interruptible at a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][248] ([i915#11989]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-5/igt at kms_flip@wf_vblank-ts-check-interruptible at a-hdmi-a2.html * igt at kms_flip@wf_vblank-ts-check-interruptible at b-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][249] ([i915#11989]) +3 other tests fail [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-9/igt at kms_flip@wf_vblank-ts-check-interruptible at b-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-13/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-dg2: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-4/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]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-4/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_12388/shard-tglu-9/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#2587] / [i915#2672] / [i915#3555]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555] / [i915#5190]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-10/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: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555]) +3 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-14/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html - shard-tglu: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#3555]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-10/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]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-10/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][260] ([i915#2672] / [i915#3555] / [i915#8813]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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][261] ([i915#2672] / [i915#8813]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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][262] ([i915#2672] / [i915#3555]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-7/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][263] ([i915#2672]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-rkl: [PASS][264] -> [DMESG-WARN][265] ([i915#12964]) +25 other tests dmesg-warn [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-2/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-7/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-dg2: [PASS][266] -> [FAIL][267] ([i915#6880]) +2 other tests fail [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][268] +38 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#8708]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-6/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][270] +51 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#5354]) +32 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#1825]) +8 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-6/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][273] ([i915#9766]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][274] ([i915#9766]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-1/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#8708]) +26 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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-blt: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#3458]) +11 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-5/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][277] ([i915#8708]) +17 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-5/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][278] ([i915#3023]) +20 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html - shard-dg1: NOTRUN -> [SKIP][279] ([i915#3458]) +16 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-12/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][280] ([i915#1825]) +34 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#12713]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-2/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8228]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-2/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-5/igt at kms_hdr@invalid-metadata-sizes.html - shard-rkl: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#8228]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-4/igt at kms_hdr@invalid-metadata-sizes.html - shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-13/igt at kms_hdr@static-swap.html * igt at kms_histogram@algo-color: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#13389]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-10/igt at kms_histogram@algo-color.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg2: [PASS][288] -> [SKIP][289] ([i915#12388]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-10/igt at kms_joiner@basic-force-big-joiner.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-7/igt at kms_joiner@basic-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][290] ([i915#12388]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-17/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#12339]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-5/igt at kms_joiner@basic-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][292] ([i915#12339]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-8/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][293] ([i915#12394]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-13/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#1839]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#6301]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-3/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][296] ([i915#10647] / [i915#12169]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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][297] ([i915#10647]) +1 other test fail [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk3/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][298] ([i915#3555]) +3 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-7/igt at kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8806]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-7/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#6953] / [i915#9423]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-2/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-rkl: NOTRUN -> [SKIP][301] ([i915#12247]) +5 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-4/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#12247]) +9 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-8/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#12247] / [i915#6953]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][304] ([i915#12247] / [i915#6953]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-12/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#12247] / [i915#9423]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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-a: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#12247]) +3 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-1/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 at pipe-b: - shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#12247]) +13 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b.html - shard-dg1: NOTRUN -> [SKIP][308] ([i915#12247]) +3 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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][309] ([i915#12247] / [i915#6953]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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][310] ([i915#12247]) +3 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-2/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][311] ([i915#5354]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#9812]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#9812]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-2/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#9685]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-8/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-tglu: NOTRUN -> [SKIP][315] ([i915#3828]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-4/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-mtlp: NOTRUN -> [FAIL][316] ([i915#12913]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-5/igt at kms_pm_dc@dc6-dpms.html - shard-dg2: NOTRUN -> [SKIP][317] ([i915#5978]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-1/igt at kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][318] ([i915#3361]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#8430]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-3/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-rkl: [PASS][320] -> [SKIP][321] ([i915#12916]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-2/igt at kms_pm_rpm@basic-pci-d3-state.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-7/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][322] -> [SKIP][323] ([i915#9519]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-4/igt at kms_pm_rpm@dpms-lpsp.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-10/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#9519]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-7/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#9519]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: NOTRUN -> [SKIP][326] ([i915#9519]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-14/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][327] -> [SKIP][328] ([i915#9519]) +3 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-1/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-4/igt at kms_pm_rpm@modeset-non-lpsp-stress.html - shard-tglu: NOTRUN -> [SKIP][329] ([i915#9519]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-4/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#9519]) +2 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-7/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#6524] / [i915#6805]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-8/igt at kms_prime@basic-crc-hybrid.html - shard-rkl: NOTRUN -> [SKIP][332] ([i915#6524]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-4/igt at kms_prime@basic-crc-hybrid.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][333] ([i915#11520]) +10 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-snb2/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][334] ([i915#11520]) +8 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-2/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#11520]) +9 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-3/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][336] ([i915#11520]) +8 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk6/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-dg2: NOTRUN -> [SKIP][337] ([i915#11520]) +5 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-10/igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html - shard-mtlp: NOTRUN -> [SKIP][338] ([i915#12316]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-5/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][339] ([i915#11520]) +8 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-12/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#11520]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr@fbc-pr-suspend: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#1072] / [i915#9732]) +18 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-6/igt at kms_psr@fbc-pr-suspend.html - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#9688]) +2 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-7/igt at kms_psr@fbc-pr-suspend.html * igt at kms_psr@fbc-psr2-no-drrs: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#9732]) +18 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-7/igt at kms_psr@fbc-psr2-no-drrs.html * igt at kms_psr@fbc-psr2-sprite-render: - shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#9732]) +10 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_psr@fbc-psr2-sprite-render.html * igt at kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +24 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-3/igt at kms_psr@psr-sprite-plane-move.html * igt at kms_psr@psr2-sprite-blt: - shard-dg1: NOTRUN -> [SKIP][346] ([i915#1072] / [i915#9732]) +23 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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][347] ([i915#9685]) +3 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-14/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][348] ([i915#4884]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-17/igt at kms_rotation_crc@exhaust-fences.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][349] ([i915#5289]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-8/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][350] ([i915#5289]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-1/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][351] ([i915#5289]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-13/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#5289]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][353] ([i915#12755]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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][354] ([i915#12755]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-8/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.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_12388/shard-snb5/igt at kms_selftest@drm_framebuffer.html * igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][356] ([i915#13179]) +1 other test abort [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-7/igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free.html * igt at kms_setmode@clone-exclusive-crtc: - shard-dg1: NOTRUN -> [SKIP][357] ([i915#3555]) +6 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_setmode@invalid-clone-exclusive-crtc: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#3555]) +2 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-5/igt at kms_setmode@invalid-clone-exclusive-crtc.html * igt at kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][359] ([IGT#160]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-8/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][360] ([i915#10959]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk2/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][361] ([i915#8623]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/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_12388/shard-mtlp-8/igt at kms_tv_load_detect@load-detect.html * igt at kms_vblank@query-forked-hang: - shard-rkl: NOTRUN -> [DMESG-WARN][363] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-7/igt at kms_vblank@query-forked-hang.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][364] ([i915#12276]) +3 other tests incomplete [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk8/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html * igt at kms_vblank@ts-continuation-suspend: - shard-rkl: [PASS][365] -> [DMESG-FAIL][366] ([i915#12964]) +2 other tests dmesg-fail [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-2/igt at kms_vblank@ts-continuation-suspend.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-6/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-FAIL][367] ([i915#12964]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-6/igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-2.html * igt at kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][368] ([i915#9906]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-1/igt at kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][369] ([i915#9906]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-6/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@lobf: - shard-tglu: NOTRUN -> [SKIP][370] ([i915#11920]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-9/igt at kms_vrr@lobf.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-dg1: NOTRUN -> [SKIP][371] ([i915#9906]) +2 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-12/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#2437]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-3/igt at kms_writeback@writeback-fb-id.html - shard-rkl: NOTRUN -> [SKIP][373] ([i915#2437]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-7/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#2437] / [i915#9412]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-5/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][375] ([i915#2437] / [i915#9412]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-4/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu-1: NOTRUN -> [SKIP][376] ([i915#2437] / [i915#9412]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][377] ([i915#2437]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-6/igt at kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][378] ([i915#2437]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk5/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][379] ([i915#7387]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-1/igt at perf@global-sseu-config-invalid.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#2434]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-6/igt at perf@mi-rpc.html - shard-rkl: NOTRUN -> [SKIP][381] ([i915#2434]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-2/igt at perf@mi-rpc.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][382] +383 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-snb7/igt at perf_pmu@busy-accuracy-98.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_12388/shard-glk6/igt at perf_pmu@rc6-suspend.html * igt at perf_pmu@render-node-busy-idle: - shard-dg2: NOTRUN -> [FAIL][384] ([i915#4349]) +1 other test fail [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-8/igt at perf_pmu@render-node-busy-idle.html * igt at prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][385] ([i915#3708] / [i915#4077]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-2/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][386] ([i915#3708] / [i915#4077]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][387] ([i915#3291] / [i915#3708]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-6/igt at prime_vgem@basic-read.html - shard-rkl: NOTRUN -> [SKIP][388] ([i915#3291] / [i915#3708]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-2/igt at prime_vgem@basic-read.html * igt at prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][389] +74 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-4/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][390] ([i915#9917]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-2/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#9917]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-2/igt at sriov_basic@enable-vfs-autoprobe-off.html - shard-dg1: NOTRUN -> [SKIP][392] ([i915#9917]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-17/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6: - shard-tglu: NOTRUN -> [FAIL][393] ([i915#12910]) +9 other tests fail [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-8/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6.html - shard-mtlp: NOTRUN -> [FAIL][394] ([i915#12910]) +9 other tests fail [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-8/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6.html * igt at tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][395] ([i915#4818]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-18/igt at tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][396] ([i915#4818]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-4/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][397] ([i915#7297]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-2/igt at gem_ccs@suspend-resume.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-8/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at tile64-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][399] ([i915#12392] / [i915#7297]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-2/igt at gem_ccs@suspend-resume at tile64-compressed-compfmt0-smem-lmem0.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-8/igt at gem_ccs@suspend-resume at tile64-compressed-compfmt0-smem-lmem0.html * igt at gem_eio@kms: - shard-tglu: [DMESG-WARN][401] ([i915#13363]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-tglu-4/igt at gem_eio@kms.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-tglu-3/igt at gem_eio@kms.html * igt at gem_eio@unwedge-stress: - shard-dg1: [FAIL][403] ([i915#12714] / [i915#5784]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg1-12/igt at gem_eio@unwedge-stress.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-13/igt at gem_eio@unwedge-stress.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: [ABORT][405] ([i915#7975] / [i915#8213]) -> [PASS][406] +1 other test pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-3/igt at gem_exec_suspend@basic-s4-devices.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-7/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: [ABORT][407] ([i915#7975] / [i915#8213]) -> [PASS][408] +1 other test pass [407]: 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 [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-12/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [DMESG-WARN][409] ([i915#5493]) -> [PASS][410] +1 other test pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg1-14/igt at gem_lmem_swapping@smem-oom at lmem0.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg1-17/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-random: - shard-dg2: [SKIP][411] -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-dg2-5/igt at gem_lmem_swapping@verify-random.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-dg2-6/igt at gem_lmem_swapping@verify-random.html * igt at gem_tiled_swapping@non-threaded: - shard-rkl: [FAIL][413] -> [PASS][414] +1 other test pass [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-1/igt at gem_tiled_swapping@non-threaded.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-1/igt at gem_tiled_swapping@non-threaded.html * igt at gem_workarounds@suspend-resume-fd: - shard-rkl: [DMESG-FAIL][415] ([i915#12964]) -> [PASS][416] +1 other test pass [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-2/igt at gem_workarounds@suspend-resume-fd.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-2/igt at gem_workarounds@suspend-resume-fd.html * igt at i915_selftest@live: - shard-rkl: [DMESG-FAIL][417] ([i915#13342]) -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-4/igt at i915_selftest@live.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-2/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_pm: - shard-rkl: [DMESG-FAIL][419] ([i915#13338]) -> [PASS][420] [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-rkl-4/igt at i915_selftest@live at gt_pm.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-2/igt at i915_selftest@live at gt_pm.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: [INCOMPLETE][421] ([i915#12761] / [i915#1982]) -> [PASS][422] +1 other test pass [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-glk2/igt at kms_async_flips@async-flip-suspend-resume.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk6/igt at kms_async_flips@async-flip-suspend-resume.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][423] ([i915#5138]) -> [PASS][424] +1 other test pass [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-mtlp-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-mtlp-6/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_cursor_legacy@cursora-vs-flipa-toggle: - shard-rkl: [DMESG-WARN][425] ([i915#12917] / [i915#12964]) -> [PASS][426] +1 other test pass [425]: 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 [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-rkl-1/igt at kms_cursor_legacy@cursora-vs-flipa-toggle.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1: - shard-snb: [FAIL][427] ([i915#11989]) -> [PASS][428] +1 other test pass [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15903/shard-snb4/igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-snb7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check at a-hdmi-a1: - shard-glk: [DMESG-FAIL][429] ([i915#118] / [i915#1982]) -> [PASS][430] +1 other test pass [429]: 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 [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk6/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][431] ([i915#11989]) -> [PASS][432] [431]: 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 [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/shard-glk6/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][433] ([i915#11989]) -> [PASS][434] +4 other tests pass [433]: 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 [434]: https://intel-gfx-ci.01.org == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12388/index.html From pranay.samala at intel.com Mon Jan 6 03:59:03 2025 From: pranay.samala at intel.com (Pranay Samala) Date: Mon, 6 Jan 2025 09:29:03 +0530 Subject: [PATCH i-g-t v2] tests/intel/kms_dirtyfb: Add logs to skips Message-ID: <20250106035903.22776-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..4cbd1a2f9 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 support 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 support DRRS\n"); + return false; + } + return true; + case FEATURE_DEFAULT: return true; default: -- 2.34.1 From sai.teja.pottumuttu at intel.com Mon Jan 6 03:46:36 2025 From: sai.teja.pottumuttu at intel.com (Sai Teja Pottumuttu) Date: Mon, 6 Jan 2025 09:16:36 +0530 Subject: [PATCH i-g-t v2 0/2] Miscellaneous OA Refactors Message-ID: <20250106034638.1746051-1-sai.teja.pottumuttu@intel.com> The patch series cleans up some unused arguments and also removes hardcoded time heuristics. Sai Teja Pottumuttu (2): tests/intel/xe_oa: Remove unused function arguments tests/intel/xe_oa: Remove hardcoded time heuristics tests/intel/xe_oa.c | 52 +++++++++++++++++++++++++++++++-------------- 1 file changed, 36 insertions(+), 16 deletions(-) -- 2.34.1 From sai.teja.pottumuttu at intel.com Mon Jan 6 03:46:37 2025 From: sai.teja.pottumuttu at intel.com (Sai Teja Pottumuttu) Date: Mon, 6 Jan 2025 09:16:37 +0530 Subject: [PATCH i-g-t v2 1/2] tests/intel/xe_oa: Remove unused function arguments In-Reply-To: <20250106034638.1746051-1-sai.teja.pottumuttu@intel.com> References: <20250106034638.1746051-1-sai.teja.pottumuttu@intel.com> Message-ID: <20250106034638.1746051-2-sai.teja.pottumuttu@intel.com> The oa_exponent argument is unused in oa_report_is_periodic function. Thus remove it. Signed-off-by: Sai Teja Pottumuttu Reviewed-by: Jonathan Cavitt --- tests/intel/xe_oa.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c index 492a6b5d6..ad3526406 100644 --- a/tests/intel/xe_oa.c +++ b/tests/intel/xe_oa.c @@ -791,7 +791,7 @@ emit_report_perf_count(struct intel_bb *ibb, } static bool -oa_report_is_periodic(uint32_t oa_exponent, const uint32_t *report) +oa_report_is_periodic(const uint32_t *report) { if (report_reason(report) & OAREPORT_REASON_TIMER) return true; @@ -1342,7 +1342,7 @@ read_2_oa_reports(int format_id, igt_assert_neq_u64(oa_timestamp(report, format_id), 0); if (timer_only) { - if (!oa_report_is_periodic(exponent, report)) { + if (!oa_report_is_periodic(report)) { igt_debug("skipping non timer report\n"); continue; } @@ -1752,7 +1752,7 @@ static void test_oa_exponents(const struct drm_xe_engine_class_instance *hwe) if (oa_status & DRM_XE_OASTATUS_REPORT_LOST) igt_debug("report loss\n"); - if (!oa_report_is_periodic(exponent, report)) + if (!oa_report_is_periodic(report)) continue; memcpy(timer_reports, report, format_size); @@ -1969,7 +1969,7 @@ static void test_blocking(uint64_t requested_oa_period, for (int offset = 0; offset < ret; offset += format_size) { uint32_t *report = (void *)(buf + offset); - if (oa_report_is_periodic(oa_exponent, report)) + if (oa_report_is_periodic(report)) timer_report_read = true; else non_timer_report_read = true; @@ -2142,7 +2142,7 @@ static void test_polling(uint64_t requested_oa_period, for (int offset = 0; offset < ret; offset += format_size) { uint32_t *report = (void *)(buf + offset); - if (oa_report_is_periodic(oa_exponent, report)) + if (oa_report_is_periodic(report)) timer_report_read = true; else non_timer_report_read = true; @@ -2463,7 +2463,7 @@ again_1: " ts_delta_last_periodic=%"PRIu64" is_timer=%i ctx_id=%8x nb_periodic=%u\n", oa_timestamp(report, fmt), n_periodic_reports > 0 ? oa_timestamp_delta(report, last_periodic_report, fmt) : 0, - oa_report_is_periodic(oa_exponent, report), + oa_report_is_periodic(report), oa_report_get_ctx_id(report), n_periodic_reports); @@ -2471,7 +2471,7 @@ again_1: first_timestamp = oa_timestamp(report, fmt); last_timestamp = oa_timestamp(report, fmt); - if (oa_report_is_periodic(oa_exponent, report)) { + if (oa_report_is_periodic(report)) { memcpy(last_periodic_report, report, report_size); n_periodic_reports++; } @@ -2677,12 +2677,12 @@ test_enable_disable(const struct drm_xe_engine_class_instance *hwe) " ts_delta_last_periodic=%s%"PRIu64"" " is_timer=%i ctx_id=0x%8x\n", oa_timestamp(report, fmt), - oa_report_is_periodic(oa_exponent, report) ? " " : "*", + oa_report_is_periodic(report) ? " " : "*", n_periodic_reports > 0 ? oa_timestamp_delta(report, last_periodic_report, fmt) : 0, - oa_report_is_periodic(oa_exponent, report), + oa_report_is_periodic(report), oa_report_get_ctx_id(report)); - if (oa_report_is_periodic(oa_exponent, report)) { + if (oa_report_is_periodic(report)) { memcpy(last_periodic_report, report, report_size); /* We want to measure only the periodic reports, @@ -4380,7 +4380,7 @@ static void check_reports(void *oa_vaddr, uint32_t oa_size, for (reports = (uint32_t *)oa_vaddr; timer_reports < 20 && reports[0] && oa_timestamp(reports, fmt); reports += report_words) { - if (!oa_report_is_periodic(oa_exp_1_millisec, reports)) + if (!oa_report_is_periodic(reports)) continue; timer_reports++; -- 2.34.1 From sai.teja.pottumuttu at intel.com Mon Jan 6 03:46:38 2025 From: sai.teja.pottumuttu at intel.com (Sai Teja Pottumuttu) Date: Mon, 6 Jan 2025 09:16:38 +0530 Subject: [PATCH i-g-t v2 2/2] tests/intel/xe_oa: Remove hardcoded time heuristics In-Reply-To: <20250106034638.1746051-1-sai.teja.pottumuttu@intel.com> References: <20250106034638.1746051-1-sai.teja.pottumuttu@intel.com> Message-ID: <20250106034638.1746051-3-sai.teja.pottumuttu@intel.com> Some tests in xe_oa tests have hardcoded timing heuristics. Refactor it to make it more robust and reliable. The patch extends the wait time logically but usually it would take a single iteration for the required reports to be available so wait time doesn't change much. v2: - Extend commit message [Lucas] - Make wait function more generic [Lucas] Signed-off-by: Sai Teja Pottumuttu --- tests/intel/xe_oa.c | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c index ad3526406..b271278d6 100644 --- a/tests/intel/xe_oa.c +++ b/tests/intel/xe_oa.c @@ -4367,6 +4367,29 @@ static void map_oa_buffer_forked_access(const struct drm_xe_engine_class_instanc munmap(vaddr, size); } +static void wait_for_periodic_reports(void *oa_vaddr, + uint32_t n, + const struct drm_xe_engine_class_instance *hwe) +{ + uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000; + struct intel_xe_perf_metric_set *test_set = metric_set(hwe); + uint64_t fmt = test_set->perf_oa_format; + struct oa_format format = get_oa_format(fmt); + uint32_t num_periodic_reports = 0; + uint32_t *reports; + + while (num_periodic_reports < n) { + usleep(100 * period_us); + num_periodic_reports = 0; + for (reports = (uint32_t *)oa_vaddr; + reports[0] && oa_timestamp(reports, fmt); + reports += format.size) { + if (oa_report_is_periodic(reports)) + num_periodic_reports++; + } + } +} + static void check_reports(void *oa_vaddr, uint32_t oa_size, const struct drm_xe_engine_class_instance *hwe) { @@ -4396,12 +4419,10 @@ static void check_reports_from_mapped_buffer(const struct drm_xe_engine_class_in { void *vaddr; uint32_t size; - uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000; vaddr = map_oa_buffer(&size); - /* wait for approx 100 reports */ - usleep(100 * period_us); + wait_for_periodic_reports(vaddr, 20, hwe); check_reports(vaddr, size, hwe); munmap(vaddr, size); @@ -4426,12 +4447,11 @@ static void closed_fd_and_unmapped_access(const struct drm_xe_engine_class_insta }; void *vaddr; uint32_t size; - uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000; stream_fd = __perf_open(drm_fd, ¶m, false); vaddr = map_oa_buffer(&size); - usleep(100 * period_us); + wait_for_periodic_reports(vaddr, 20, hwe); check_reports(vaddr, size, hwe); munmap(vaddr, size); -- 2.34.1 From jeevan.b at intel.com Mon Jan 6 04:16:26 2025 From: jeevan.b at intel.com (B, Jeevan) Date: Mon, 6 Jan 2025 04:16:26 +0000 Subject: [PATCH i-g-t v2] tests/intel/kms_dirtyfb: Add logs to skips In-Reply-To: <20250106035903.22776-1-pranay.samala@intel.com> References: <20250106035903.22776-1-pranay.samala@intel.com> Message-ID: LGTM. Reviewed-by: Jeevan B > -----Original Message----- > From: Samala, Pranay > Sent: Monday, January 6, 2025 9:29 AM > To: igt-dev at lists.freedesktop.org > Cc: B S, Karthik ; B, Jeevan ; > Lattannavar, Sameer ; Samala, Pranay > > Subject: [PATCH i-g-t v2] 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..4cbd1a2f9 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 support 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 support DRRS\n"); > + return false; > + } > + return true; > + > case FEATURE_DEFAULT: > return true; > default: > -- > 2.34.1 From jeevan.b at intel.com Mon Jan 6 04:17:43 2025 From: jeevan.b at intel.com (B, Jeevan) Date: Mon, 6 Jan 2025 04:17:43 +0000 Subject: [PATCH i-g-t v2] tests/intel/kms_dirtyfb: Add logs to skips In-Reply-To: References: <20250106035903.22776-1-pranay.samala@intel.com> Message-ID: > -----Original Message----- > From: B, Jeevan > Sent: Monday, January 6, 2025 9:46 AM > To: Samala, Pranay ; igt- > dev at lists.freedesktop.org > Cc: B S, Karthik ; Lattannavar, Sameer > > Subject: RE: [PATCH i-g-t v2] tests/intel/kms_dirtyfb: Add logs to skips > > LGTM. > > Reviewed-by: Jeevan B > > > -----Original Message----- > > From: Samala, Pranay > > Sent: Monday, January 6, 2025 9:29 AM > > To: igt-dev at lists.freedesktop.org > > Cc: B S, Karthik ; B, Jeevan > > ; Lattannavar, Sameer > > ; Samala, Pranay > > > > Subject: [PATCH i-g-t v2] tests/intel/kms_dirtyfb: Add logs to skips > > > > Having some logs for test failures & skips would make debugging much > easier. Add v2: changes before merging !! > > > > 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..4cbd1a2f9 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 support 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 support DRRS\n"); > > + return false; > > + } > > + return true; > > + > > case FEATURE_DEFAULT: > > return true; > > default: > > -- > > 2.34.1 From patchwork at emeril.freedesktop.org Mon Jan 6 04:49:17 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 04:49:17 -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_=28rev2=29?= In-Reply-To: <20250106035903.22776-1-pranay.samala@intel.com> References: <20250106035903.22776-1-pranay.samala@intel.com> Message-ID: <173613895713.4175944.8555860751060504292@b555e5b46a47> == Series Details == Series: tests/intel/kms_dirtyfb: Add logs to skips (rev2) URL : https://patchwork.freedesktop.org/series/143063/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1339939 for the overview. build:tests-debian-meson-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/68893005): Getting source from Git repository $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Initialized empty Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Created fresh repository. Checking out 4041eeac as detached HEAD (ref is intel/IGTPW_12389)... Skipping Git submodules setup section_end:1736138829:get_sources section_start:1736138829:step_script Executing "step_script" stage of the job script Using docker image sha256:cc55efdc667be826910d414a562c76ce1130a9c15255a0dd115431bc42f83448 for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-mips:commit-4041eeac13a9d72a7c4200655b69a2e87935a942 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-mips at sha256:c829c44880da4782b7a72626c259ac6904b4bd5f08601e66b3be889ca1c0cf79 ... section_end:1736138832:step_script section_start:1736138832:cleanup_file_variables Cleaning up project directory and file based variables section_end:1736138832:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:cc55efdc667be826910d414a562c76ce1130a9c15255a0dd115431bc42f83448: image not known (docker.go:650:0s) build:tests-fedora has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/68892996): Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out 4041eeac as detached HEAD (ref is intel/IGTPW_12389)... Removing build/ Removing installdir/ Removing undocumented_tests.txt Skipping Git submodules setup section_end:1736138679:get_sources section_start:1736138679: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-4041eeac13a9d72a7c4200655b69a2e87935a942 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora at sha256:17d64607d998df2bf29a56b88922d3a598e6f1daa3b51ece2a892c2f293daf83 ... section_end:1736138683:step_script section_start:1736138683:cleanup_file_variables Cleaning up project directory and file based variables section_end:1736138685: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/1339939 From patchwork at emeril.freedesktop.org Mon Jan 6 04:55:18 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 04:55:18 -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_=28rev2=29?= In-Reply-To: <20250106035903.22776-1-pranay.samala@intel.com> References: <20250106035903.22776-1-pranay.samala@intel.com> Message-ID: <173613931843.7565.313803260674636934@b555e5b46a47> == Series Details == Series: tests/intel/kms_dirtyfb: Add logs to skips (rev2) URL : https://patchwork.freedesktop.org/series/143063/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12389_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-adlp-7 Known issues ------------ Here are the changes found in XEIGTPW_12389_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_exec_basic@twice-bindexecqueue-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-bindexecqueue-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-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_12389/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_12389/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_12389 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2436-856baaf960db044e0ce5e3f5d04d35a7b9879837 IGTPW_12389: 12389 IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2436-856baaf960db044e0ce5e3f5d04d35a7b9879837: 856baaf960db044e0ce5e3f5d04d35a7b9879837 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 6 05:02:26 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 05:02:26 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_tests/intel/kms=5Fdirtyfb?= =?utf-8?q?=3A_Add_logs_to_skips_=28rev2=29?= In-Reply-To: <20250106035903.22776-1-pranay.samala@intel.com> References: <20250106035903.22776-1-pranay.samala@intel.com> Message-ID: <173613974678.4175944.10383572660765726603@b555e5b46a47> == Series Details == Series: tests/intel/kms_dirtyfb: Add logs to skips (rev2) URL : https://patchwork.freedesktop.org/series/143063/ State : failure == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12389 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12389 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12389, 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_12389/index.html Participating hosts (40 -> 38) ------------------------------ Missing (2): bat-atsm-1 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12389: ### IGT changes ### #### Possible regressions #### * igt at i915_pm_rpm@module-reload: - bat-arls-5: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arls-5/igt at i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12389/bat-arls-5/igt at i915_pm_rpm@module-reload.html Known issues ------------ Here are the changes found in IGTPW_12389 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live at client: - fi-kbl-7567u: [PASS][3] -> [DMESG-WARN][4] ([i915#11621]) +13 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/fi-kbl-7567u/igt at i915_selftest@live at client.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12389/fi-kbl-7567u/igt at i915_selftest@live at client.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_12389/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_12389/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_12389/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#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12389 * Linux: CI_DRM_15892 -> CI_DRM_15904 CI-20190529: 20190529 CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15904: 856baaf960db044e0ce5e3f5d04d35a7b9879837 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12389: 12389 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_12389/index.html From patchwork at emeril.freedesktop.org Mon Jan 6 06:32:02 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 06:32:02 -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_=28rev2=29?= In-Reply-To: <20250106035903.22776-1-pranay.samala@intel.com> References: <20250106035903.22776-1-pranay.samala@intel.com> Message-ID: <173614512258.50894.6752483192368779894@b555e5b46a47> == Series Details == Series: tests/intel/kms_dirtyfb: Add logs to skips (rev2) URL : https://patchwork.freedesktop.org/series/143063/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12389_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12389_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12389_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_12389_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@flip-vs-suspend-interruptible at b-dp2: - shard-bmg: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_flip@flip-vs-suspend-interruptible at b-dp2.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-lnl: [PASS][2] -> [FAIL][3] +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-2/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_vblank@ts-continuation-suspend: - shard-bmg: [PASS][4] -> [FAIL][5] +4 other tests fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_vblank@ts-continuation-suspend.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_vblank@ts-continuation-suspend.html Known issues ------------ Here are the changes found in XEIGTPW_12389_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getstats: - shard-dg2-set2: [PASS][6] -> [SKIP][7] ([Intel XE#2423]) +4 other tests 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_12389/shard-dg2-435/igt at core_getstats.html * igt at core_getversion@all-cards: - shard-dg2-set2: [PASS][8] -> [FAIL][9] ([Intel XE#3440]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at core_getversion@all-cards.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at core_getversion@all-cards.html * igt at core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#1885]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at core_hotunplug@hotunplug-rescan.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at core_hotunplug@hotunplug-rescan.html * igt at core_setmaster@master-drop-set-root: - shard-dg2-set2: NOTRUN -> [FAIL][12] ([Intel XE#3249]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at core_setmaster@master-drop-set-root.html * igt at core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][13] -> [SKIP][14] ([Intel XE#3453]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at core_setmaster@master-drop-set-shared-fd.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at core_setmaster@master-drop-set-shared-fd.html * igt at fbdev@eof: - shard-dg2-set2: [PASS][15] -> [SKIP][16] ([Intel XE#2134]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at fbdev@eof.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at fbdev@eof.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3157]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-6/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][18] -> [FAIL][19] ([Intel XE#827]) +1 other test fail [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-4/igt at kms_async_flips@alternate-sync-async-flip.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_12389/shard-lnl-8/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][22] ([Intel XE#2423] / [i915#2575]) +27 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][23] ([Intel XE#3279]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-2/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1: - shard-lnl: [PASS][24] -> [FAIL][25] ([Intel XE#3908]) +1 other test fail [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-4/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#316]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][27] ([Intel XE#3658]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][28] ([Intel XE#1407]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-6/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1428]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-2/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][32] ([Intel XE#1124]) +7 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1124]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-436/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][34] ([Intel XE#1124]) +6 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/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_12389/shard-bmg-4/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.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_12389/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][37] ([Intel XE#367]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][38] ([Intel XE#2887]) +6 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-6/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#3432]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][40] ([Intel XE#455] / [Intel XE#787]) +10 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][41] ([Intel XE#787]) +32 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2887]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-4/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][43] ([Intel XE#306]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-8/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_frames@hdmi-frame-dump: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#3007]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_chamelium_frames@hdmi-frame-dump.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2252]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-7/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#373]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][47] ([Intel XE#1178]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][48] ([Intel XE#307]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-4/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]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-5/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_12389/shard-lnl-8/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_12389/shard-lnl-5/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_12389/shard-bmg-5/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_12389/shard-lnl-4/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-random-64x64: - shard-bmg: [PASS][54] -> [SKIP][55] ([Intel XE#3007]) +13 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_cursor_crc@cursor-random-64x64.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_cursor_crc@cursor-random-64x64.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2320]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][57] -> [SKIP][58] ([Intel XE#2423] / [i915#2575]) +221 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_cursor_crc@cursor-sliding-64x64.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_cursor_crc@cursor-sliding-64x64.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_12389/shard-lnl-2/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][60] -> [DMESG-WARN][61] ([Intel XE#877]) +1 other test dmesg-warn [60]: 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 [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-7/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][62] ([Intel XE#2286]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][63] ([Intel XE#2141]) +2 other tests fail [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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_12389/shard-lnl-3/igt at kms_display_modes@extended-mode-basic.html * igt at kms_draw_crc@fill-fb: - shard-dg2-set2: [PASS][65] -> [SKIP][66] ([Intel XE#2136] / [Intel XE#2351]) +31 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_draw_crc@fill-fb.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_draw_crc@fill-fb.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2244]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-7/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@psr-suspend: - shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#2958]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at kms_fbcon_fbt@psr-suspend.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-5/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [PASS][70] -> [FAIL][71] ([Intel XE#2882] / [Intel XE#3288]) +1 other test fail [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 ab-dp2-hdmi-a3.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-8/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 bd-dp2-hdmi-a3: - shard-bmg: [PASS][72] -> [FAIL][73] ([Intel XE#3288] / [Intel XE#3321]) +2 other tests 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 bd-dp2-hdmi-a3.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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 ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][74] -> [FAIL][75] ([Intel XE#301]) +7 other tests fail [74]: 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 [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][76] ([Intel XE#1421]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-5/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank at a-dp2: - shard-bmg: [PASS][77] -> [FAIL][78] ([Intel XE#2882]) +5 other tests fail [77]: 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 [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-4/igt at kms_flip@flip-vs-absolute-wf_vblank at a-dp2.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at c-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][79] ([Intel XE#301]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank-interruptible at c-dp4.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: [PASS][80] -> [FAIL][81] ([Intel XE#3321]) [80]: 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 [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at a-dp4.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_12389/shard-dg2-436/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]) +2 other tests incomplete [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][85] -> [INCOMPLETE][86] ([Intel XE#2597] / [Intel XE#2635]) [85]: 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 [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-8/igt at kms_flip@flip-vs-suspend at c-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [PASS][87] -> [SKIP][88] ([Intel XE#2136]) +64 other tests skip [87]: 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 [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2293]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/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][90] ([Intel XE#1401] / [Intel XE#1745]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][91] ([Intel XE#1401]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][92] ([Intel XE#1397] / [Intel XE#1745]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][93] ([Intel XE#1397]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][94] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][95] ([Intel XE#2311]) +16 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][96] ([Intel XE#651]) +6 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-8/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]) +8 other tests fail [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-4/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]) +5 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-434/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_12389/shard-lnl-3/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#2136] / [Intel XE#2351]) +9 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][101] ([Intel XE#2352]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][102] ([Intel XE#2313]) +26 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#653]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][105] ([Intel XE#1469]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-2/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.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_12389/shard-lnl-8/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_12389/shard-bmg-5/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_12389/shard-lnl-6/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_12389/shard-lnl-4/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_12389/shard-dg2-436/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-bmg: NOTRUN -> [INCOMPLETE][111] ([Intel XE#3663]) +1 other test incomplete [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-4/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_12389/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-b: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2763]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][114] ([Intel XE#2763]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-5/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]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-435/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.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_12389/shard-lnl-2/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_12389/shard-dg2-434/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_12389/shard-bmg-5/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][120] -> [SKIP][121] ([Intel XE#2446]) +11 other tests skip [120]: 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 [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-435/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.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_12389/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][123] ([Intel XE#1489]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][124] ([Intel XE#1489]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][125] ([Intel XE#2136]) +20 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/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_12389/shard-lnl-5/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@pr-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2850] / [Intel XE#929]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-436/igt at kms_psr@pr-primary-render.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-7/igt at kms_psr@psr-primary-page-flip.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#3414] / [Intel XE#3904]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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-90: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#3414] / [Intel XE#3904]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2413]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@basic: - shard-bmg: NOTRUN -> [FAIL][132] ([Intel XE#2883]) +4 other tests fail [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-5/igt at kms_setmode@basic.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#362]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][134] ([Intel XE#2450]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-4/igt at kms_tv_load_detect@load-detect.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_12389/shard-bmg-7/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_12389/shard-lnl-4/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_12389/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_12389/shard-dg2-435/igt at kms_writeback@writeback-pixel-formats.html * igt at xe_ccs@suspend-resume: - shard-bmg: [PASS][139] -> [INCOMPLETE][140] ([Intel XE#2771] / [Intel XE#3918]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_ccs@suspend-resume.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-7/igt at xe_ccs@suspend-resume.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01: - shard-bmg: [PASS][141] -> [INCOMPLETE][142] ([Intel XE#3918]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-7/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.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_12389/shard-lnl-1/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2905]) +5 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-7/igt at xe_eudebug@basic-vm-access.html - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#2905]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-436/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_12389/shard-lnl-4/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@discovery-race: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#2905]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-2/igt at xe_eudebug@discovery-race.html * igt at xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#688]) +7 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][149] ([Intel XE#2364]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-8/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_12389/shard-dg2-435/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: [PASS][151] -> [SKIP][152] ([Intel XE#1130]) +422 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_exec_balancer@once-parallel-rebind.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][153] ([Intel XE#1392]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-8/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][154] ([Intel XE#2322]) +4 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-4/igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt at xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#288]) +4 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-434/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_12389/shard-lnl-3/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_12389/shard-lnl-3/igt at xe_module_load@force-load.html * igt at xe_module_load@reload-no-display: - shard-dg2-set2: [PASS][158] -> [FAIL][159] ([Intel XE#3546]) +1 other test fail [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_module_load@reload-no-display.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at xe_module_load@reload-no-display.html * igt at xe_oa@syncs-syncobj-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-436/igt at xe_oa@syncs-syncobj-cfg.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#1420] / [Intel XE#2838]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-8/igt at xe_pat@pat-index-xehpc.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_12389/shard-bmg-7/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_12389/shard-lnl-3/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-basic-exec: - shard-lnl: [PASS][164] -> [ABORT][165] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_pm@s4-basic-exec.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-2/igt at xe_pm@s4-basic-exec.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-6/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#944]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-8/igt at xe_query@multigpu-query-engines.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_12389/shard-lnl-2/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#3342]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-6/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][170] -> [SKIP][171] ([Intel XE#1130]) +28 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html * igt at xe_vm@invalid-extensions: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#1130]) +32 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at xe_vm@invalid-extensions.html * igt at xe_vm@munmap-style-unbind-many-all: - shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#1130]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at xe_vm@munmap-style-unbind-many-all.html #### Possible fixes #### * igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3: - shard-bmg: [FAIL][174] ([Intel XE#3321]) -> [PASS][175] [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 cd-dp2-hdmi-a3.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-7/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][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_12389/shard-bmg-7/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.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_12389/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][180] ([Intel XE#361]) -> [PASS][181] [180]: 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 [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-436/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][182] ([Intel XE#718]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-3/igt at kms_pm_dc@dc5-dpms.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][184] ([Intel XE#3313]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-7/igt at kms_sequence@get-forked-busy.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][186] ([Intel XE#1473]) -> [PASS][187] [186]: 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 [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][188] ([Intel XE#3865]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-7/igt at xe_gt_freq@freq_suspend.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][190] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-5/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm_residency@gt-c6-freeze: - shard-bmg: [INCOMPLETE][192] ([Intel XE#3088]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][194] -> [PASS][195] +1 other test pass [194]: 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 [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze at gt1.html #### Warnings #### * igt at kms_async_flips@crc: - shard-bmg: [INCOMPLETE][196] ([Intel XE#3781]) -> [INCOMPLETE][197] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-5/igt at kms_async_flips@crc.html - shard-dg2-set2: [INCOMPLETE][198] ([Intel XE#3781]) -> [INCOMPLETE][199] ([Intel XE#3781] / [Intel XE#3946]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_async_flips@crc.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-436/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][200] ([Intel XE#3781]) -> [SKIP][201] ([Intel XE#2423] / [i915#2575]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_async_flips@crc-atomic.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_async_flips@crc-atomic.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][202] ([Intel XE#3768]) -> [SKIP][203] ([Intel XE#2423] / [i915#2575]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_async_flips@invalid-async-flip-atomic.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][204] ([Intel XE#316]) -> [SKIP][205] ([Intel XE#2136]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html * igt at kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][206] ([Intel XE#316]) -> [SKIP][207] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [206]: 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 [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_big_fb@x-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][208] ([Intel XE#1124]) -> [SKIP][209] ([Intel XE#2136] / [Intel XE#2231]) [208]: 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 [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb: - shard-dg2-set2: [SKIP][210] ([Intel XE#619]) -> [SKIP][211] ([Intel XE#2136] / [Intel XE#2351]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@y-tiled-addfb.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][212] ([Intel XE#1124]) -> [SKIP][213] ([Intel XE#2136]) +12 other tests skip [212]: 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 [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][214] ([Intel XE#1124]) -> [SKIP][215] ([Intel XE#2136] / [Intel XE#2351]) +12 other tests skip [214]: 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 [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][216] ([Intel XE#610]) -> [SKIP][217] ([Intel XE#2136]) [216]: 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 [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][218] ([Intel XE#2191]) -> [SKIP][219] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: [SKIP][220] ([Intel XE#367]) -> [SKIP][221] ([Intel XE#2423] / [i915#2575]) +11 other tests skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: [SKIP][222] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][223] ([Intel XE#2136]) +26 other tests skip [222]: 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 [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][224] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][225] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - 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-8/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][228] ([Intel XE#3442]) -> [SKIP][229] ([Intel XE#2136]) [228]: 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 [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][230] ([Intel XE#3432]) -> [SKIP][231] ([Intel XE#2136] / [Intel XE#2231]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][232] ([Intel XE#2907]) -> [SKIP][233] ([Intel XE#2136]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_chamelium_color@degamma: - shard-dg2-set2: [SKIP][234] ([Intel XE#306]) -> [SKIP][235] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_chamelium_color@degamma.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-bmg: [SKIP][236] ([Intel XE#2252]) -> [SKIP][237] ([Intel XE#3007]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_chamelium_hpd@hdmi-hpd.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: [SKIP][238] ([Intel XE#373]) -> [SKIP][239] ([Intel XE#2423] / [i915#2575]) +27 other tests skip [238]: 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 [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/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][240] ([Intel XE#1178]) -> [SKIP][241] ([Intel XE#2423] / [i915#2575]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_content_protection@atomic-dpms.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][242] ([Intel XE#307]) -> [SKIP][243] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_content_protection@dp-mst-lic-type-0.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@uevent: - shard-dg2-set2: [FAIL][244] ([Intel XE#1188]) -> [SKIP][245] ([Intel XE#2423] / [i915#2575]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_content_protection@uevent.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][246] ([Intel XE#308]) -> [SKIP][247] ([Intel XE#2423] / [i915#2575]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x170.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][248] ([Intel XE#323]) -> [SKIP][249] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [248]: 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 [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_dsc@dsc-with-bpc: - shard-dg2-set2: [SKIP][250] ([Intel XE#455]) -> [SKIP][251] ([Intel XE#2136]) +7 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_dsc@dsc-with-bpc.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_dsc@dsc-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][252] ([Intel XE#776]) -> [SKIP][253] ([Intel XE#2136]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_fbcon_fbt@psr.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][254] ([Intel XE#1138]) -> [SKIP][255] ([Intel XE#2423] / [i915#2575]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_feature_discovery@display-4x.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2-set2: [SKIP][256] ([Intel XE#1137]) -> [SKIP][257] ([Intel XE#2423] / [i915#2575]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_feature_discovery@dp-mst.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][258] ([Intel XE#1135]) -> [SKIP][259] ([Intel XE#2423] / [i915#2575]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_feature_discovery@psr1.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_feature_discovery@psr1.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][260] ([Intel XE#2049] / [Intel XE#2597]) -> [SKIP][261] ([Intel XE#2423] / [i915#2575]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-bmg: [SKIP][262] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][263] ([Intel XE#2136] / [Intel XE#2231]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][264] ([Intel XE#455]) -> [SKIP][265] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][266] ([Intel XE#2311]) -> [SKIP][267] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][268] ([Intel XE#651]) -> [SKIP][269] ([Intel XE#2136]) +50 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][270] ([Intel XE#651]) -> [SKIP][271] ([Intel XE#2136] / [Intel XE#2351]) +28 other tests skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-suspend.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][272] ([Intel XE#2333]) -> [SKIP][273] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][274] ([Intel XE#658]) -> [SKIP][275] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][276] ([Intel XE#653]) -> [SKIP][277] ([Intel XE#2136]) +56 other tests skip [276]: 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 [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][278] ([Intel XE#653]) -> [SKIP][279] ([Intel XE#2136] / [Intel XE#2351]) +20 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][280] ([Intel XE#2313]) -> [SKIP][281] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][282] -> [SKIP][283] ([Intel XE#2423] / [i915#2575]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][284] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][285] ([Intel XE#3007]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_hdr@brightness-with-hdr.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_hdr@brightness-with-hdr.html * igt at kms_histogram@algo-color: - shard-dg2-set2: [SKIP][286] ([Intel XE#3897]) -> [SKIP][287] ([Intel XE#2423] / [i915#2575]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_histogram@algo-color.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_histogram@algo-color.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][288] ([Intel XE#346]) -> [SKIP][289] ([Intel XE#2136]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_joiner@basic-big-joiner.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: [SKIP][290] ([Intel XE#2925]) -> [SKIP][291] ([Intel XE#2136]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_joiner@basic-force-ultra-joiner.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][292] ([Intel XE#2927]) -> [SKIP][293] ([Intel XE#2136]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_joiner@basic-ultra-joiner.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_panel_fitting@legacy: - shard-bmg: [SKIP][294] ([Intel XE#2486]) -> [SKIP][295] ([Intel XE#3007]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_panel_fitting@legacy.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_panel_fitting@legacy.html * igt at kms_plane_cursor@primary: - shard-dg2-set2: [FAIL][296] ([Intel XE#616]) -> [SKIP][297] ([Intel XE#2423] / [i915#2575]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_plane_cursor@primary.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_plane_cursor@primary.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: [SKIP][298] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][299] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [298]: 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 [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-bmg: [SKIP][300] ([Intel XE#2763]) -> [SKIP][301] ([Intel XE#3007]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][302] ([Intel XE#2938]) -> [SKIP][303] ([Intel XE#2136]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_pm_backlight@brightness-with-dpms.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][304] ([Intel XE#870]) -> [SKIP][305] ([Intel XE#2136]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_backlight@fade-with-suspend.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: [SKIP][306] ([Intel XE#1122]) -> [SKIP][307] ([Intel XE#2136] / [Intel XE#2351]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_pm_dc@dc3co-vpb-simulation.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][308] ([Intel XE#1129]) -> [SKIP][309] ([Intel XE#2136] / [Intel XE#2351]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_dc@dc6-psr.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: [SKIP][310] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][311] ([Intel XE#2446]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][312] ([Intel XE#1489]) -> [SKIP][313] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][314] ([Intel XE#1489]) -> [SKIP][315] ([Intel XE#2136]) +22 other tests skip [314]: 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 [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: [SKIP][316] ([Intel XE#1122]) -> [SKIP][317] ([Intel XE#2136]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr2_su@page_flip-xrgb8888.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][318] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][319] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr@fbc-psr-sprite-plane-onoff.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_psr@fbc-psr-sprite-plane-onoff.html * igt at kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: [SKIP][320] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][321] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_psr@fbc-psr2-cursor-plane-move.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_psr@fbc-psr2-cursor-plane-move.html * igt at kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][322] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][323] ([Intel XE#2136]) +28 other tests skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr@fbc-psr2-sprite-plane-move.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_psr@fbc-psr2-sprite-plane-move.html * igt at kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][324] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][325] ([Intel XE#2351]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr@psr-sprite-plane-onoff.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: [SKIP][326] ([Intel XE#2939]) -> [SKIP][327] ([Intel XE#2136] / [Intel XE#2351]) [326]: 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 [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][328] ([Intel XE#2939]) -> [SKIP][329] ([Intel XE#2136]) [328]: 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 [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][330] ([Intel XE#1127]) -> [SKIP][331] ([Intel XE#2423] / [i915#2575]) [330]: 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 [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: [SKIP][332] ([Intel XE#3414]) -> [SKIP][333] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_rotation_crc@sprite-rotation-270.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: [SKIP][334] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][335] ([Intel XE#3007]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][336] -> [FAIL][337] ([Intel XE#2883]) [336]: 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 [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-lnl-3/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][338] ([Intel XE#362]) -> [FAIL][339] ([Intel XE#1729]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][340] ([Intel XE#330]) -> [SKIP][341] ([Intel XE#2423] / [i915#2575]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_tv_load_detect@load-detect.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flipline: - shard-dg2-set2: [SKIP][342] ([Intel XE#455]) -> [SKIP][343] ([Intel XE#2423] / [i915#2575]) +19 other tests skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_vrr@flipline.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at kms_vrr@flipline.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][344] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][345] ([Intel XE#1130]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_compute_preempt@compute-preempt-many.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: [SKIP][346] ([Intel XE#1123]) -> [SKIP][347] ([Intel XE#1130]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_copy_basic@mem-copy-linear-0x369.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at xe_copy_basic@mem-copy-linear-0x369.html * igt at xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][348] ([Intel XE#1126]) -> [SKIP][349] ([Intel XE#1130]) +2 other tests skip [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0xfffe.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0xfffe.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-dg2-set2: [FAIL][350] ([Intel XE#3869]) -> [SKIP][351] ([Intel XE#1130]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_drm_fdinfo@utilization-others-full-load.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: [SKIP][352] ([Intel XE#3889]) -> [SKIP][353] ([Intel XE#1130]) +2 other tests skip [352]: 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 [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@discovery-empty: - shard-bmg: [SKIP][354] ([Intel XE#2905]) -> [SKIP][355] ([Intel XE#1130]) +2 other tests skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_eudebug@discovery-empty.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at xe_eudebug@discovery-empty.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][356] ([Intel XE#1473]) -> [FAIL][357] ([Intel XE#1000]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_evict@evict-beng-mixed-threads-large.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-7/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][358] ([Intel XE#1473]) -> [INCOMPLETE][359] ([Intel XE#1473]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_evict@evict-mixed-many-threads-large.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-434/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][360] ([Intel XE#1473]) -> [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-mixed-many-threads-small.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_evict@evict-threads-large: - shard-bmg: [TIMEOUT][362] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][363] ([Intel XE#1000]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_evict@evict-threads-large.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-5/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-bind: - 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-5/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-bmg-3/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt at xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: [SKIP][366] ([Intel XE#288]) -> [SKIP][367] ([Intel XE#1130]) +65 other tests skip [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_exec_fault_mode@once-invalid-userptr-fault.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at xe_exec_fault_mode@once-invalid-userptr-fault.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]) +2 other tests skip [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_12389/shard-dg2-466/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: [SKIP][370] ([Intel XE#2905]) -> [SKIP][371] ([Intel XE#1130]) +27 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_exec_sip_eudebug@breakpoint-writesip.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-435/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][372] ([Intel XE#255]) -> [SKIP][373] ([Intel XE#1130]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_huc_copy@huc_copy.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at xe_huc_copy@huc_copy.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: [SKIP][374] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][375] ([Intel XE#1130]) +17 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_oa@whitelisted-registers-userspace-config.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xehpc: - shard-dg2-set2: [SKIP][376] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][377] ([Intel XE#1130]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_pat@pat-index-xehpc.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-multiple-execs: - shard-dg2-set2: [SKIP][378] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][379] ([Intel XE#1130]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_pm@d3cold-multiple-execs.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at xe_pm@d3cold-multiple-execs.html * igt at xe_query@multigpu-query-oa-units: - shard-dg2-set2: [SKIP][380] ([Intel XE#944]) -> [SKIP][381] ([Intel XE#1130]) +6 other tests skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_query@multigpu-query-oa-units.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at xe_query@multigpu-query-oa-units.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][382] ([Intel XE#3342]) -> [SKIP][383] ([Intel XE#1130]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_sriov_flr@flr-vf1-clear.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][384] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][385] ([Intel XE#1130]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_wedged@wedged-mode-toggle.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/shard-dg2-466/igt at xe_wedged@wedged-mode-toggle.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#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#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [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#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#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#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#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#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#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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [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#2771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2771 [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#2958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2958 [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#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#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#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#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#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#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#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#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#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [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#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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [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#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#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_12389 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2436-856baaf960db044e0ce5e3f5d04d35a7b9879837 IGTPW_12389: 12389 IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642 xe-2436-856baaf960db044e0ce5e3f5d04d35a7b9879837: 856baaf960db044e0ce5e3f5d04d35a7b9879837 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12389/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 6 07:23:32 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 07:23:32 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Miscellaneous_OA_Refactor?= =?utf-8?q?s_=28rev2=29?= In-Reply-To: <20250106034638.1746051-1-sai.teja.pottumuttu@intel.com> References: <20250106034638.1746051-1-sai.teja.pottumuttu@intel.com> Message-ID: <173614821254.70975.1286010023309592368@b555e5b46a47> == Series Details == Series: Miscellaneous OA Refactors (rev2) URL : https://patchwork.freedesktop.org/series/142773/ State : success == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12390 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/index.html Participating hosts (40 -> 38) ------------------------------ Missing (2): bat-atsm-1 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12390 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_module_load@reload: - fi-kbl-7567u: [PASS][1] -> [DMESG-WARN][2] ([i915#11621] / [i915#180] / [i915#1982]) +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/fi-kbl-7567u/igt at i915_module_load@reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/fi-kbl-7567u/igt at i915_module_load@reload.html * igt at i915_selftest@live at sanitycheck: - fi-kbl-7567u: [PASS][3] -> [DMESG-WARN][4] ([i915#11621]) +81 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/fi-kbl-7567u/igt at i915_selftest@live at sanitycheck.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/fi-kbl-7567u/igt at i915_selftest@live at sanitycheck.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_12390/bat-arlh-3/igt at i915_selftest@live at workarounds.html * igt at kms_pm_rpm@basic-pci-d3-state: - fi-kbl-7567u: [PASS][7] -> [DMESG-WARN][8] ([i915#11621] / [i915#180]) +51 other tests dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/fi-kbl-7567u/igt at kms_pm_rpm@basic-pci-d3-state.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/fi-kbl-7567u/igt at kms_pm_rpm@basic-pci-d3-state.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_12390/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_12390/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12390 * Linux: CI_DRM_15892 -> CI_DRM_15905 CI-20190529: 20190529 CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15905: 3241e60971d2944662d23a791a01a7c5cdc4230f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12390: 3d76579e0610ecd7ce7d37ccc3f5118deac9d2c6 @ 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_12390/index.html From patchwork at emeril.freedesktop.org Mon Jan 6 07:42:36 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 07:42:36 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Miscellaneous_OA_Refactors_?= =?utf-8?q?=28rev2=29?= In-Reply-To: <20250106034638.1746051-1-sai.teja.pottumuttu@intel.com> References: <20250106034638.1746051-1-sai.teja.pottumuttu@intel.com> Message-ID: <173614935625.82540.8179819210335616143@b555e5b46a47> == Series Details == Series: Miscellaneous OA Refactors (rev2) URL : https://patchwork.freedesktop.org/series/142773/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12390_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_12390 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2437-3241e60971d2944662d23a791a01a7c5cdc4230f IGTPW_12390: 3d76579e0610ecd7ce7d37ccc3f5118deac9d2c6 @ 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-2437-3241e60971d2944662d23a791a01a7c5cdc4230f: 3241e60971d2944662d23a791a01a7c5cdc4230f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeevan.b at intel.com Mon Jan 6 09:28:21 2025 From: jeevan.b at intel.com (B, Jeevan) Date: Mon, 6 Jan 2025 09:28:21 +0000 Subject: [PATCH i-g-t 1/4] tests/intel/kms_joiner_helper: helper for joiner-related functions In-Reply-To: <20241231141518.765212-2-kunal1.joshi@intel.com> References: <20241231141518.765212-1-kunal1.joshi@intel.com> <20241231141518.765212-2-kunal1.joshi@intel.com> Message-ID: > -----Original Message----- > From: igt-dev On Behalf Of Kunal > Joshi > Sent: Tuesday, December 31, 2024 7:45 PM > To: igt-dev at lists.freedesktop.org > Cc: Joshi, Kunal1 > Subject: [PATCH i-g-t 1/4] tests/intel/kms_joiner_helper: helper for joiner- > related functions > > This patch introduces a new kms_joiner_helper.c and kms_joiner_helper.h to > handle Big Joiner and Ultra Joiner logic in a centralized manner. It provides > utility functions to set and manage master pipes, as well as to assign > consecutive pipes for multi-pipe configurations. By moving these operations > into helper files, we improve code clarity and enable reuse across multiple > tests requiring joiner capabilities. > > The patch also updates kms_joiner.c to use > igt_set_all_master_pipes_for_platform() > instead of the local set_all_master_pipes_for_platform() function. This unifies > the approach to pipe assignments for joiner scenarios. Finally, it updates > meson.build to include kms_joiner_helper.c. > > Signed-off-by: Kunal Joshi LGTM. Reviewed-by: Jeevan B > --- > tests/intel/kms_joiner.c | 15 +-- > tests/intel/kms_joiner_helper.c | 179 > ++++++++++++++++++++++++++++++++ tests/intel/kms_joiner_helper.h | > 15 +++ > tests/meson.build | 1 + > 4 files changed, 197 insertions(+), 13 deletions(-) create mode 100644 > tests/intel/kms_joiner_helper.c create mode 100644 > tests/intel/kms_joiner_helper.h > > diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c index > 418ff26a6..0151dd182 100644 > --- a/tests/intel/kms_joiner.c > +++ b/tests/intel/kms_joiner.c > @@ -37,6 +37,7 @@ > #include "igt.h" > #include "xe/xe_query.h" > #include "kms_dsc_helper.c" > +#include "kms_joiner_helper.h" > > /** > * SUBTEST: invalid-modeset-big-joiner > @@ -97,18 +98,6 @@ typedef struct { > > static int max_dotclock; > > -static void set_all_master_pipes_for_platform(data_t *data) -{ > - enum pipe pipe; > - > - for (pipe = PIPE_A; pipe < IGT_MAX_PIPES - 1; pipe++) { > - if (data->display.pipes[pipe].enabled && data- > >display.pipes[pipe + 1].enabled) { > - data->master_pipes |= BIT(pipe); > - igt_info("Found master pipe %s\n", > kmstest_pipe_name(pipe)); > - } > - } > -} > - > static void enable_force_joiner_on_all_non_big_joiner_outputs(data_t *data) > { > bool status; > @@ -430,7 +419,7 @@ igt_main > data.drm_fd = drm_open_driver_master(DRIVER_INTEL | > DRIVER_XE); > kmstest_set_vt_graphics_mode(); > igt_display_require(&data.display, data.drm_fd); > - set_all_master_pipes_for_platform(&data); > + igt_set_all_master_pipes_for_platform(&data.display, > +&data.master_pipes); > igt_require(data.display.is_atomic); > max_dotclock = igt_get_max_dotclock(data.drm_fd); > > diff --git a/tests/intel/kms_joiner_helper.c b/tests/intel/kms_joiner_helper.c > new file mode 100644 index 000000000..af89be777 > --- /dev/null > +++ b/tests/intel/kms_joiner_helper.c > @@ -0,0 +1,179 @@ > +#include "kms_joiner_helper.h" > +#include "igt.h" > +#include "igt_kms.h" > +#include "intel_chipset.h" > + > +/* > + * Detect if the output needs 1, 2, or 4 pipes (non-joiner, big joiner, ultra). > + * This re-uses your existing logic from: > + * bigjoiner_mode_found(), ultrajoiner_mode_found(), > + * is_intel_device(), igt_get_max_dotclock(), etc. > + */ > +static int get_required_pipes(int drm_fd, igt_output_t *output) { > + bool is_big = false, is_ultra = false; > + int max_dotclock; > + drmModeModeInfo mode; > + > + if (!is_intel_device(drm_fd)) > + return -1; > + > + max_dotclock = igt_get_max_dotclock(drm_fd); > + > + is_ultra = ultrajoiner_mode_found(drm_fd, > + output->config.connector, > + max_dotclock, > + &mode); > + is_big = bigjoiner_mode_found(drm_fd, > + output->config.connector, > + max_dotclock, > + &mode); > + > + if (is_ultra) > + return 4; > + if (is_big) > + return 2; > + > + return 1; > +} > + > +/* > + * Internal helper to find a block of consecutive free pipes > + * in available_pipes_mask. If count > 1, the first pipe must also > + * be in master_pipes_mask. > + * > + * Returns the starting pipe index or -1 if not found. > + */ > +static int find_consecutive_pipes(int n_pipes, > + uint32_t available_pipes_mask, > + uint32_t master_pipes_mask, > + int count) > +{ > + int i = 0, pipe_idx = 0; > + bool can_use; > + > + for (int start = 0; start < n_pipes; start++) { > + if (((start + count) - 1) >= n_pipes) > + break; > + > + if ((count > 1) && (!(BIT(start) & master_pipes_mask))) > + continue; > + > + can_use = true; > + for (i = 0; i < count; i++) { > + pipe_idx = start + i; > + if (!(BIT(pipe_idx) & available_pipes_mask)) { > + can_use = false; > + break; > + } > + } > + if (can_use) > + return start; > + } > + return -1; > +} > + > +static enum pipe get_next_master_pipe(uint32_t pipe_mask) { > + int i; > + > + if (!pipe_mask) > + return PIPE_NONE; > + > + i = ffs(pipe_mask) - 1; > + > + if (i < 0) > + return PIPE_NONE; > + > + return i; > +} > + > +/** > + * igt_set_all_master_pipes_for_platform: > + * @master_pipes: Pointer to the variable to store the master pipes bitmask. > + * @display: The display structure containing pipe information. > + * > + * This function sets the master pipes for the platform by checking if > +consecutive > + * pipes are enabled. If both pipe and the next pipe are enabled, the > +pipe is > + * considered a master pipe. > + */ > +void igt_set_all_master_pipes_for_platform(igt_display_t *display, > +uint32_t *master_pipes) { > + enum pipe pipe; > + > + *master_pipes = 0; > + for (pipe = PIPE_A; pipe < IGT_MAX_PIPES - 1; pipe++) { > + if (display->pipes[pipe].enabled && display->pipes[pipe + > 1].enabled) { > + *master_pipes |= BIT(pipe); > + igt_info("Found master pipe %s\n", > kmstest_pipe_name(pipe)); > + } > + } > +} > + > +/* > + * @drm_fd: DRM file descriptor > + * @outputs: array of pointers to igt_output_t > + * @num_outputs: how many outputs in the array > + * @n_pipes: total number of pipes available > + * @used_pipes_mask: pointer to a bitmask (in/out) of already-used > +pipes > + * @master_pipes_mask: bitmask of valid "master" pipes > + * @valid_pipes_mask: bitmask of valid (non-fused) pipes > + * > + * Assign pipes to outputs based on the number of required pipes. > + * This function will assign 1, 2, or 4 consecutive pipes to each output. > + * It will also mark the used pipes in the bitmask. > + * > + * Returns: true if all outputs can be assigned successfully; false otherwise. > + */ > +bool igt_assign_pipes_for_outputs(int drm_fd, > + igt_output_t **outputs, > + int num_outputs, > + int n_pipes, > + uint32_t *used_pipes_mask, > + uint32_t master_pipes_mask, > + uint32_t valid_pipes_mask) > +{ > + int i = 0, idx = 0, needed = 0, start = 0; > + uint32_t available_pipes_mask = 0; > + enum pipe mp = PIPE_NONE; > + igt_output_t *out; > + > + for (idx = 0; idx < num_outputs; idx++) { > + out = outputs[idx]; > + needed = get_required_pipes(drm_fd, out); > + if (needed < 0) > + return false; > + > + available_pipes_mask = (~(*used_pipes_mask)) & > valid_pipes_mask; > + start = find_consecutive_pipes(n_pipes, > available_pipes_mask, > + master_pipes_mask, needed); > + > + if (start < 0) { > + igt_debug("Cannot allocate %d consecutive pipes for > output %s\n", > + needed, out->name); > + return false; > + } > + > + igt_info("Assigning %d pipes [start=%s..%s] to output %s\n", > + needed, kmstest_pipe_name(start), > + kmstest_pipe_name(start + needed - 1), out- > >name); > + > + if (needed > 1) { > + mp = get_next_master_pipe(BIT(start)); > + > + if (mp == PIPE_NONE) { > + igt_debug("Failed to confirm master pipe for > %s\n", > + out->name); > + return false; > + } > + igt_output_set_pipe(out, start); > + igt_debug("Using pipe %s as master.\n", > + kmstest_pipe_name(start)); > + } else > + igt_output_set_pipe(out, start); > + > + for (i = 0; i < needed; i++) > + *used_pipes_mask |= BIT(start + i); > + } > + return true; > +} > diff --git a/tests/intel/kms_joiner_helper.h b/tests/intel/kms_joiner_helper.h > new file mode 100644 index 000000000..95e71a229 > --- /dev/null > +++ b/tests/intel/kms_joiner_helper.h > @@ -0,0 +1,15 @@ > +#ifndef KMS_JOINER_HELPER_H > +#define KMS_JOINER_HELPER_H > + > +#include "igt_kms.h" > + > +void igt_set_all_master_pipes_for_platform(igt_display_t *display, > + uint32_t *master_pipes); > +bool igt_assign_pipes_for_outputs(int drm_fd, > + igt_output_t **outputs, > + int num_outputs, > + int n_pipes, > + uint32_t *used_pipes_mask, > + uint32_t master_pipes_mask, > + uint32_t valid_pipes_mask); > +#endif > diff --git a/tests/meson.build b/tests/meson.build index > 89bba6454..4bc68d659 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -366,6 +366,7 @@ extra_sources = { > 'kms_chamelium_frames': [ join_paths ('chamelium', > 'kms_chamelium_helper.c') ], > 'kms_chamelium_hpd': [ join_paths ('chamelium', > 'kms_chamelium_helper.c') ], > 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ], > + 'kms_joiner': [join_paths ('intel', 'kms_joiner_helper.c')], > 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ], } > > -- > 2.25.1 From jeevan.b at intel.com Mon Jan 6 09:31:53 2025 From: jeevan.b at intel.com (B, Jeevan) Date: Mon, 6 Jan 2025 09:31:53 +0000 Subject: [PATCH i-g-t 2/4] tests/intel/kms_mst_helper: Add helper for MST-related functions In-Reply-To: <20241231141518.765212-3-kunal1.joshi@intel.com> References: <20241231141518.765212-1-kunal1.joshi@intel.com> <20241231141518.765212-3-kunal1.joshi@intel.com> Message-ID: > -----Original Message----- > From: igt-dev On Behalf Of Kunal > Joshi > Sent: Tuesday, December 31, 2024 7:45 PM > To: igt-dev at lists.freedesktop.org > Cc: Joshi, Kunal1 > Subject: [PATCH i-g-t 2/4] tests/intel/kms_mst_helper: Add helper for MST- > related functions > > This patch introduces kms_mst_helper.c and kms_mst_helper.h to centralize > commonly used MST-related logic. > The new function igt_find_all_mst_output_in_topology() > enumerates MST outputs that share the same root connector, simplifying > code reuse across tests needing outputs on same MST topology. The existing > MST-related code in kms_dp_linktrain_fallback.c is updated to use the new > helper, removing duplication. Additionally, meson.build is modified to include > kms_mst_helper.c in the build process. > > Signed-off-by: Kunal Joshi LGTM. Reviewed-by: Jeevan B > --- > tests/intel/kms_dp_linktrain_fallback.c | 28 +++------------ > tests/intel/kms_mst_helper.c | 48 +++++++++++++++++++++++++ > tests/intel/kms_mst_helper.h | 10 ++++++ > tests/meson.build | 1 + > 4 files changed, 63 insertions(+), 24 deletions(-) create mode 100644 > tests/intel/kms_mst_helper.c create mode 100644 > tests/intel/kms_mst_helper.h > > diff --git a/tests/intel/kms_dp_linktrain_fallback.c > b/tests/intel/kms_dp_linktrain_fallback.c > index a05e2015f..b10946781 100644 > --- a/tests/intel/kms_dp_linktrain_fallback.c > +++ b/tests/intel/kms_dp_linktrain_fallback.c > @@ -16,6 +16,7 @@ > #include > > #include "igt.h" > +#include "kms_mst_helper.h" > > /** > * SUBTEST: dp-fallback > @@ -47,28 +48,6 @@ typedef int (*condition_check_fn)(int drm_fd, > igt_output_t *output); > > IGT_TEST_DESCRIPTION("Test link training fallback"); > > -static void find_mst_outputs(int drm_fd, data_t *data, > - igt_output_t *output, > - igt_output_t *mst_outputs[], > - int *num_mst_outputs) > -{ > - int output_root_id, root_id; > - igt_output_t *connector_output; > - > - output_root_id = igt_get_dp_mst_connector_id(output); > - /* > - * If output is MST check all other connected output which shares > - * same path and fill mst_outputs and num_mst_outputs > - */ > - for_each_connected_output(&data->display, connector_output) { > - if (!igt_check_output_is_dp_mst(connector_output)) > - continue; > - root_id = igt_get_dp_mst_connector_id(connector_output); > - if (((*num_mst_outputs) < IGT_MAX_PIPES) && root_id == > output_root_id) > - mst_outputs[(*num_mst_outputs)++] = > connector_output; > - } > -} > - > static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[], > int *output_count) > { > @@ -83,8 +62,9 @@ static bool setup_mst_outputs(data_t *data, > igt_output_t *mst_output[], > traversed_mst_outputs[i] == data->output- > >config.connector->connector_id) > return false; > > - find_mst_outputs(data->drm_fd, data, data->output, > - mst_output, output_count); > + igt_assert_f(igt_find_all_mst_output_in_topology(data->drm_fd, &data- > >display, data->output, > + mst_output, > output_count), > + "Unable to find mst outputs\n"); > > for (i = 0; i < *output_count; i++) { > output = mst_output[i]; > diff --git a/tests/intel/kms_mst_helper.c b/tests/intel/kms_mst_helper.c new > file mode 100644 index 000000000..9d52068f7 > --- /dev/null > +++ b/tests/intel/kms_mst_helper.c > @@ -0,0 +1,48 @@ > +#include "kms_mst_helper.h" > + > +/* > + * @drm_fd: DRM file descriptor > + * @display: pointer to an #igt_display_t structure > + * @output: target output > + * @mst_outputs: filled with mst output of same toplogy as @output > + * @num_mst_outputs: filled with count of mst outputs found in topology > + * @n_pipes: total number of pipes available > + * @used_pipes_mask: pointer to a bitmask (in/out) of already-used > +pipes > + * @master_pipes_mask: bitmask of valid "master" pipes > + * @valid_pipes_mask: bitmask of valid (non-fused) pipes > + * > + * Assign pipes to outputs based on the number of required pipes. > + * This function will assign 1, 2, or 4 consecutive pipes to each output. > + * It will also mark the used pipes in the bitmask. > + * > + * Returns: true if all outputs can be assigned successfully; false otherwise. > + */ > +bool igt_find_all_mst_output_in_topology(int drm_fd, igt_display_t *display, > + igt_output_t *output, > + igt_output_t *mst_outputs[], > + int *num_mst_outputs) > +{ > + int output_root_id, root_id; > + igt_output_t *connector_output; > + > + if (!igt_check_output_is_dp_mst(output)) > + return false; > + > + output_root_id = igt_get_dp_mst_connector_id(output); > + if (output_root_id == -EINVAL) > + return false; > + > + /* > + * If output is MST, check all other connected output which shares > + * same path and fill mst_outputs and num_mst_outputs > + */ > + for_each_connected_output(display, connector_output) { > + if (!igt_check_output_is_dp_mst(connector_output)) > + continue; > + > + root_id = igt_get_dp_mst_connector_id(connector_output); > + if (((*num_mst_outputs) < IGT_MAX_PIPES) && root_id == > output_root_id) > + mst_outputs[(*num_mst_outputs)++] = > connector_output; > + } > + return true; > +} > diff --git a/tests/intel/kms_mst_helper.h b/tests/intel/kms_mst_helper.h new > file mode 100644 index 000000000..291fcebfe > --- /dev/null > +++ b/tests/intel/kms_mst_helper.h > @@ -0,0 +1,10 @@ > +#ifndef KMS_MST_HELPER_H > +#define KMS_MST_HELPER_H > + > +#include "igt.h" > + > +bool igt_find_all_mst_output_in_topology(int drm_fd, igt_display_t *display, > + igt_output_t *output, > + igt_output_t *mst_outputs[], > + int *num_mst_outputs); > +#endif > diff --git a/tests/meson.build b/tests/meson.build index > 4bc68d659..ffbe1211e 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -367,6 +367,7 @@ extra_sources = { > 'kms_chamelium_hpd': [ join_paths ('chamelium', > 'kms_chamelium_helper.c') ], > 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ], > 'kms_joiner': [join_paths ('intel', 'kms_joiner_helper.c')], > + 'kms_dp_linktrain_fallback': [join_paths ('intel', > +'kms_mst_helper.c')], > 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ], } > > -- > 2.25.1 From santhosh.reddy.guddati at intel.com Mon Jan 6 09:42:04 2025 From: santhosh.reddy.guddati at intel.com (Reddy Guddati, Santhosh) Date: Mon, 6 Jan 2025 09:42:04 +0000 Subject: [PATCH i-g-t] tests/kms_plane_scaling: Add logs to skips In-Reply-To: <20250103103414.10731-1-pranay.samala@intel.com> References: <20250103103414.10731-1-pranay.samala@intel.com> Message-ID: Hi Pranay, ________________________________ From: igt-dev on behalf of Pranay Samala Sent: Friday, January 3, 2025 4:04 PM To: igt-dev at lists.freedesktop.org Cc: B S, Karthik ; Sharma, Swati2 ; Lattannavar, Sameer ; Samala, Pranay Subject: [PATCH i-g-t] tests/kms_plane_scaling: Add logs to skips 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"); Imho, It would be good to add the output name and pipe name something like below, otherwise LGTM. igt_info("Unable to find a mode with the lowest refresh rate for ????????????output %s on pipe %s\n", igt_output_name(output), kmstest_pipe_name(pipe)); } continue; } -- 2.34.1 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramanaidu.naladala at intel.com Mon Jan 6 09:42:57 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Mon, 6 Jan 2025 15:12:57 +0530 Subject: [PATCH i-g-t v1 0/2] Remove redundant hotplug detection assertion Message-ID: <20250106094259.931356-1-ramanaidu.naladala@intel.com> Remove Hotplug assertion from chamelium edid test. Naladala Ramanaidu (2): tests/chamelium/kms_chamelium_edid: Remove unnecessary hotplug detection in EDID test HAX patch do not merge tests/chamelium/kms_chamelium_edid.c | 2 - tests/intel-ci/fast-feedback.testlist | 171 +------------- tests/intel-ci/xe-fast-feedback.testlist | 276 +---------------------- 3 files changed, 8 insertions(+), 441 deletions(-) -- 2.43.0 From ramanaidu.naladala at intel.com Mon Jan 6 09:42:58 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Mon, 6 Jan 2025 15:12:58 +0530 Subject: [PATCH i-g-t v1 1/2] tests/chamelium/kms_chamelium_edid: Remove unnecessary hotplug detection in EDID test In-Reply-To: <20250106094259.931356-1-ramanaidu.naladala@intel.com> References: <20250106094259.931356-1-ramanaidu.naladala@intel.com> Message-ID: <20250106094259.931356-2-ramanaidu.naladala@intel.com> Remove redundant hotplug detection assertion from test_suspend_resume_edid_change. Hotplug detection is unnecessary after modeset disable. Signed-off-by: Naladala Ramanaidu --- tests/chamelium/kms_chamelium_edid.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/chamelium/kms_chamelium_edid.c b/tests/chamelium/kms_chamelium_edid.c index e572a6468..ff2a19e48 100644 --- a/tests/chamelium/kms_chamelium_edid.c +++ b/tests/chamelium/kms_chamelium_edid.c @@ -419,8 +419,6 @@ static void test_suspend_resume_edid_change(chamelium_data_t *data, chamelium_reset_state(&data->display, data->chamelium, port, data->ports, data->port_count); - /* Catch the event and flush all remaining ones. */ - igt_assert(igt_hotplug_detected(mon, CHAMELIUM_HOTPLUG_TIMEOUT)); igt_flush_uevents(mon); /* First plug in the port */ -- 2.43.0 From ramanaidu.naladala at intel.com Mon Jan 6 09:42:59 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Mon, 6 Jan 2025 15:12:59 +0530 Subject: [PATCH i-g-t v1 2/2] HAX patch do not merge In-Reply-To: <20250106094259.931356-1-ramanaidu.naladala@intel.com> References: <20250106094259.931356-1-ramanaidu.naladala@intel.com> Message-ID: <20250106094259.931356-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..3259b7b38 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_chamelium_edid@dp-edid-change-during-suspend +igt at kms_chamelium_edid@dp-edid-change-during-hibernate +igt at kms_chamelium_edid@hdmi-edid-change-during-suspend +igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index 0234d3e72..8fb01dca6 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_chamelium_edid@dp-edid-change-during-suspend +igt at kms_chamelium_edid@dp-edid-change-during-hibernate +igt at kms_chamelium_edid@hdmi-edid-change-during-suspend +igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate -- 2.43.0 From mohammed.thasleem at intel.com Mon Jan 6 09:51:54 2025 From: mohammed.thasleem at intel.com (Mohammed Thasleem) Date: Mon, 6 Jan 2025 15:21:54 +0530 Subject: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api call Message-ID: <20250106095154.243459-1-mohammed.thasleem@intel.com> Check ghe algo for the function called by ghe igt while compiling. Signed-off-by: Mohammed Thasleem --- meson.build | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 8b2a2a64a..96f010fe2 100644 --- a/meson.build +++ b/meson.build @@ -198,8 +198,19 @@ else endif libghe = dependency('libghe', required : false) + if libghe.found() - config.set('HAVE_LIBGHE', 1) + + cc = meson.get_compiler('c') + + if cc.has_function('histogram_compute_generate_data_bin', dependencies: libghe) + message('libghe provides the required function') + config.set('HAVE_LIBGHE', 1) + else + warning('libghe does not provide the required function') + endif +else + warning('libghe not found') endif build_info += 'Build Chamelium test: @0@'.format(chamelium.found()) -- 2.25.1 From matthew.auld at intel.com Mon Jan 6 10:49:17 2025 From: matthew.auld at intel.com (Matthew Auld) Date: Mon, 6 Jan 2025 10:49:17 +0000 Subject: [PATCH V6 4/4] tests/xe/mmap: add tests for pci mem barrier In-Reply-To: <20241230125757.2581381-5-tejas.upadhyay@intel.com> References: <20241230125757.2581381-1-tejas.upadhyay@intel.com> <20241230125757.2581381-5-tejas.upadhyay@intel.com> Message-ID: On 30/12/2024 12:57, Tejas Upadhyay wrote: > We want to make sure that mmap do direct mapping of physical > page at doorbell space and whole page is accessible in order > to use pci memory barrier effect effectively. > > Following subtests are added, > ./build/tests/xe_mmap --r pci-membarrier > ./build/tests/xe_mmap --r pci-membarrier-parallel > ./build/tests/xe_mmap --r pci-membarrier-bad-pagesize > ./build/tests/xe_mmap --r pci-membarrier-bad-object > > V6(MAuld): > - checking differnet cross client value is enough in parallel test > V5: > - Add pci-membarrier-parallel test > V3(MAuld): > - Check if pci memory barrier is supported > V2(MAuld) > - use do_ioctl and replace igt_subtest_f with igt_subtest > - Remove unused define > > Signed-off-by: Tejas Upadhyay > --- > tests/intel/xe_mmap.c | 190 ++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 190 insertions(+) > > diff --git a/tests/intel/xe_mmap.c b/tests/intel/xe_mmap.c > index d818cc2f8..8e7095e48 100644 > --- a/tests/intel/xe_mmap.c > +++ b/tests/intel/xe_mmap.c > @@ -64,6 +64,140 @@ test_mmap(int fd, uint32_t placement, uint32_t flags) > gem_close(fd, bo); > } > > +#define PAGE_SIZE 4096 > + > +/** > + * SUBTEST: pci-membarrier > + * Description: create pci memory barrier with write on defined mmap offset. > + * Test category: functionality test > + * > + */ > +static void test_pci_membarrier(int xe) > +{ > + uint64_t flags = MAP_SHARED; > + unsigned int prot = PROT_WRITE; > + uint32_t *ptr; > + uint64_t size = PAGE_SIZE; > + struct timespec tv; > + struct drm_xe_gem_mmap_offset mmo = { > + .handle = 0, > + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, > + }; > + > + do_ioctl(xe, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo); > + ptr = mmap(NULL, size, prot, flags, xe, mmo.offset); > + igt_assert(ptr != MAP_FAILED); > + > + /* Check whole page for any errors, also check as > + * we should not read written values back > + */ > + for (int i = 0; i < size / sizeof(*ptr); i++) { > + /* It is expected unconfigured doorbell space > + * will return read value 0xdeadbeef > + */ > + igt_assert_eq_u32(READ_ONCE(ptr[i]), 0xdeadbeef); > + > + igt_gettime(&tv); > + ptr[i] = i; > + if (READ_ONCE(ptr[i]) == i) { > + while (READ_ONCE(ptr[i]) == i) > + ; > + igt_info("fd:%d value retained for %"PRId64"ns pos:%d\n", > + xe, igt_nsec_elapsed(&tv), i); > + } > + igt_assert_neq(READ_ONCE(ptr[i]), i); > + } > + > + munmap(ptr, size); > +} > + > +/** > + * SUBTEST: pci-membarrier-parallel > + * Description: create parallel pci memory barrier with write on defined mmap offset. > + * Test category: functionality test > + * > + */ > +static void test_pci_membarrier_parallel(int xe, int child) > +{ > + unsigned int bad_ns, elapsed; > + uint64_t flags = MAP_SHARED; > + unsigned int i; > + unsigned int prot = PROT_WRITE; > + uint32_t *ptr; > + uint64_t size = PAGE_SIZE; > + struct drm_xe_gem_mmap_offset mmo = { > + .handle = 0, > + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, > + }; > + struct timespec total, bad; > + int tpos = size / sizeof(*ptr); > + int value; > + > + do_ioctl(xe, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo); > + ptr = mmap(NULL, size, prot, flags, xe, mmo.offset); > + igt_assert(ptr != MAP_FAILED); > + > + /* Check any random position up to 1K */ > + i = rand() % (size / sizeof(*ptr)); We should also re-seed at the start of the subtest or in the fixture? > + /* It is expected unconfigured doorbell space > + * will return read value 0xdeadbeef > + */ > + igt_assert_eq_u32(READ_ONCE(ptr[i]), 0xdeadbeef); Should we also use i below? Random index seems better than hardcoded. > + > + igt_until_timeout(5) { Could maybe instead delegate one client to be the reader and the other to be the writer in the same 5 second window. That way there is more opportunity to see a cross client write? > + /* Check clients should not be able to see each other */ > + if (child != -1) > + value = tpos + 1; > + else > + value = tpos; > + > + WRITE_ONCE(ptr[tpos-1], value); > + } > + bad_ns = 0; > + igt_gettime(&total); > + igt_until_timeout(5) { /* XXX sync with parent loop! */ Could also assert that we never see the cross client value here in the loop... > + if (READ_ONCE(ptr[tpos-1]) == value) { > + igt_gettime(&bad); > + while (READ_ONCE(ptr[tpos-1]) == value) > + ; > + bad_ns += igt_nsec_elapsed(&bad); > + } > + } > + elapsed = igt_nsec_elapsed(&total); > + if (bad_ns) { > + igt_info("Cross-client writes visible %.1f%% of the time.\n", > + bad_ns * 100. / elapsed); > + } > + igt_assert(20 * bad_ns < elapsed); /* Arbitrary 5% threshold */ > + if (child != -1) > + igt_assert_neq(READ_ONCE(ptr[tpos-1]), tpos); > + else > + igt_assert_neq(READ_ONCE(ptr[tpos-1]), tpos + 1); ..and then drop this? It seems more likely that we would see the cross client value in the 5 second window than here at the end. > + igt_assert_eq_u32(READ_ONCE(ptr[tpos-1]), 0xdeadbeef); > + > + munmap(ptr, size); > +} > + > +/** > + * SUBTEST: pci-membarrier-bad-pagesize > + * Description: Test mmap offset with bad pagesize for pci membarrier. > + * Test category: negative test > + * > + */ > +static void test_bad_pagesize_for_pcimem(int fd) > +{ > + uint32_t *map; > + uint64_t page_size = PAGE_SIZE * 2; > + struct drm_xe_gem_mmap_offset mmo = { > + .handle = 0, > + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, > + }; > + > + do_ioctl(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo); > + map = mmap(NULL, page_size, PROT_WRITE, MAP_SHARED, fd, mmo.offset); > + igt_assert(map == MAP_FAILED); > +} > + > /** > * SUBTEST: bad-flags > * Description: Test mmap offset with bad flags. > @@ -126,6 +260,25 @@ static void test_bad_object(int fd) > do_ioctl_err(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo, ENOENT); > } > > +/** > + * SUBTEST: pci-membarrier-bad-object > + * Description: Test mmap offset with bad object for pci mem barrier. > + * Test category: negative test > + * > + */ > +static void test_bad_object_for_pcimem(int fd) > +{ > + uint64_t size = xe_get_default_alignment(fd); > + struct drm_xe_gem_mmap_offset mmo = { > + .handle = xe_bo_create(fd, 0, size, > + vram_if_possible(fd, 0), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM), > + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, > + }; > + > + do_ioctl_err(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo, EINVAL); > +} > + > static jmp_buf jmp; > > __noreturn static void sigtrap(int sig) > @@ -260,6 +413,16 @@ static void test_cpu_caching(int fd) > assert_caching(fd, system_memory(fd), 0, DRM_XE_GEM_CPU_CACHING_WC + 1, true); > } > > +static bool is_pci_membarrier_supported(int fd) > +{ > + struct drm_xe_gem_mmap_offset mmo = { > + .handle = 0, > + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, > + }; > + > + return (igt_ioctl(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo) == 0); > +} > + > igt_main > { > int fd; > @@ -278,6 +441,28 @@ igt_main > test_mmap(fd, vram_memory(fd, 0) | system_memory(fd), > DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > > + igt_subtest("pci-membarrier") { > + igt_require(is_pci_membarrier_supported(fd)); > + test_pci_membarrier(fd); > + } > + > + igt_subtest("pci-membarrier-parallel") { > + int xe = drm_open_driver(DRIVER_XE); > + > + igt_require(is_pci_membarrier_supported(fd)); > + igt_fork(child, 1) > + test_pci_membarrier_parallel(xe, child); > + test_pci_membarrier_parallel(fd, -1); > + igt_waitchildren(); > + > + close(xe); > + } > + > + igt_subtest("pci-membarrier-bad-pagesize") { > + igt_require(is_pci_membarrier_supported(fd)); > + test_bad_pagesize_for_pcimem(fd); > + } > + > igt_subtest("bad-flags") > test_bad_flags(fd); > > @@ -287,6 +472,11 @@ igt_main > igt_subtest("bad-object") > test_bad_object(fd); > > + igt_subtest("pci-membarrier-bad-object") { > + igt_require(is_pci_membarrier_supported(fd)); > + test_bad_object_for_pcimem(fd); > + } > + > igt_subtest("small-bar") { > igt_require(xe_visible_vram_size(fd, 0)); > igt_require(xe_visible_vram_size(fd, 0) < xe_vram_size(fd, 0)); From patchwork at emeril.freedesktop.org Mon Jan 6 11:13:34 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 11:13:34 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_Miscellaneous_OA_Refacto?= =?utf-8?q?rs_=28rev2=29?= In-Reply-To: <20250106034638.1746051-1-sai.teja.pottumuttu@intel.com> References: <20250106034638.1746051-1-sai.teja.pottumuttu@intel.com> Message-ID: <173616201456.120825.15782623489068104712@b555e5b46a47> == Series Details == Series: Miscellaneous OA Refactors (rev2) URL : https://patchwork.freedesktop.org/series/142773/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15905_full -> IGTPW_12390_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12390_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12390_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_12390/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_12390_full: ### IGT changes ### #### Possible regressions #### * igt at core_setmaster@master-drop-set-user: - shard-tglu: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt at core_setmaster@master-drop-set-user.html * igt at gem_exec_balancer@individual: - shard-dg2: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-3/igt at gem_exec_balancer@individual.html * igt at i915_module_load@reload-with-fault-injection: - shard-snb: NOTRUN -> [DMESG-WARN][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb2/igt at i915_module_load@reload-with-fault-injection.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_12390/shard-glk8/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling at pipe-a-valid-mode: - shard-dg1: [PASS][5] -> [FAIL][6] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg1-12/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling at pipe-a-valid-mode.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling at pipe-a-valid-mode.html New tests --------- New tests have been introduced between CI_DRM_15905_full and IGTPW_12390_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_12390_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at device_reset@unbind-cold-reset-rebind: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-idle at bcs0: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +25 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-1/igt at drm_fdinfo@busy-idle at bcs0.html * igt at drm_fdinfo@isolation at vecs0: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +13 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt at drm_fdinfo@isolation at vecs0.html * igt at gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt at gem_basic@multigpu-create-close.html - shard-dg2: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-copy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-6/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][15] -> [INCOMPLETE][16] ([i915#12392] / [i915#7297]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-4/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-3/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html * igt at gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#6335]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][18] ([i915#1099]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb4/igt at gem_ctx_persistence@engines-queued.html * igt at gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-14/igt at gem_ctx_persistence@heartbeat-stop.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#280]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-args: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt at gem_ctx_sseu@invalid-args.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt at gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-5/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][24] ([i915#13197] / [i915#13390]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk5/igt at gem_eio@in-flight-suspend.html * igt at gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4771]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-10/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#4771]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-14/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@parallel-balancer: - shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#4525]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][28] ([i915#4525]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_capture@capture-recoverable: - shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#6344]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at gem_exec_capture@capture-recoverable.html * igt at gem_exec_fence@concurrent: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt at gem_exec_fence@concurrent.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/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][33] ([i915#3539]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-3/igt at gem_exec_flush@basic-uc-set-default.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt at gem_exec_flush@basic-wb-rw-default.html * igt at gem_exec_reloc@basic-cpu-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3281]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-1/igt at gem_exec_reloc@basic-cpu-wc-noreloc.html * igt at gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3281]) +11 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt at gem_exec_reloc@basic-gtt.html * igt at gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#3281]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt at gem_exec_reloc@basic-gtt-read-noreloc.html * igt at gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3281]) +9 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt at gem_exec_reloc@basic-wc-gtt-noreloc.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][41] ([i915#7975] / [i915#8213]) +1 other test abort [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4860]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt at gem_fenced_exec_thrash@no-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4860]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt at gem_fenced_exec_thrash@no-spare-fences.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][45] ([i915#4613]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk5/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@random-engines: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-3/igt at gem_lmem_swapping@random-engines.html - shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at gem_lmem_swapping@random-engines.html * igt at gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-3/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4083]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-7/igt at gem_mmap@short-mmap.html * igt at gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4077]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-6/igt at gem_mmap_gtt@big-bo-tiledy.html * igt at gem_mmap_gtt@big-copy-odd: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt at gem_mmap_gtt@big-copy-odd.html * igt at gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +6 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt at gem_mmap_gtt@cpuset-big-copy-odd.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4083]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/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][54] ([i915#4083]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-2/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-10/igt at gem_partial_pwrite_pread@reads-uncached.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3282]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-6/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][57] ([i915#2658]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at gem_pread@exhaustion.html - shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][59] ([i915#2658]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb5/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][60] ([i915#13398]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4270]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: NOTRUN -> [TIMEOUT][63] ([i915#12917] / [i915#12964]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-4/igt at gem_pxp@verify-pxp-stale-ctx-execution.html * igt at gem_render_copy@mixed-tiled-to-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#5190] / [i915#8428]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-10/igt at gem_render_copy@mixed-tiled-to-y-tiled-ccs.html * igt at gem_render_copy@yf-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-2/igt at gem_render_copy@yf-tiled-to-vebox-linear.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4079]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4079]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt at gem_set_tiling_vs_gtt.html - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4079]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-8/igt at gem_set_tiling_vs_gtt.html * igt at gem_softpin@allocator-evict: - shard-dg2: [PASS][69] -> [INCOMPLETE][70] ([i915#13421]) +1 other test incomplete [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-3/igt at gem_softpin@allocator-evict.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-1/igt at gem_softpin@allocator-evict.html * igt at gem_tiled_partial_pwrite_pread@writes: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3282]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-3/igt at gem_tiled_partial_pwrite_pread@writes.html * igt at gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4879]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][73] ([i915#3297] / [i915#3323]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#3282] / [i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-10/igt at gem_userptr_blits@invalid-mmap-offset-unsync.html * igt at gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#3297]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4958]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#3297]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][79] +409 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb7/igt at gem_vm_create@invalid-create.html * igt at gem_workarounds@suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][80] ([i915#13356]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk4/igt at gem_workarounds@suspend-resume.html * igt at gen3_render_mixed_blits: - shard-dg2: NOTRUN -> [SKIP][81] +9 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt at gen3_render_mixed_blits.html * igt at gen9_exec_parse@allowed-all: - shard-glk: NOTRUN -> [ABORT][82] ([i915#5566]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk1/igt at gen9_exec_parse@allowed-all.html * igt at gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#2527] / [i915#2856]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#2527]) +4 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt at gen9_exec_parse@bb-large.html * igt at gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#2856]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt at gen9_exec_parse@bb-start-far.html - shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at gen9_exec_parse@bb-start-far.html * igt at gen9_exec_parse@secure-batches: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt at gen9_exec_parse@secure-batches.html * igt at gen9_exec_parse@shadow-peek: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt at gen9_exec_parse@shadow-peek.html * igt at i915_module_load@reload: - shard-tglu-1: NOTRUN -> [ABORT][89] ([i915#13010]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at i915_module_load@reload.html * igt at i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#6412]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-2/igt at i915_module_load@resize-bar.html * igt at i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#8399]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-2/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0: - shard-dg1: [PASS][92] -> [FAIL][93] ([i915#3591]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0.html * igt at i915_pm_rpm@gem-evict-pwrite: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#13328]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt at i915_pm_rpm@gem-evict-pwrite.html * igt at i915_pm_rpm@gem-mmap-type: - shard-rkl: [PASS][95] -> [SKIP][96] ([i915#13328]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-1/igt at i915_pm_rpm@gem-mmap-type.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt at i915_pm_rpm@gem-mmap-type.html * igt at i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#11681] / [i915#6621]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-10/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#11681] / [i915#6621]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@min-max-config-loaded: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#11681] / [i915#6621]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][100] ([i915#1982] / [i915#9311]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk6/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-glk: NOTRUN -> [DMESG-WARN][101] ([i915#9311]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk6/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][102] ([i915#4817]) +1 other test incomplete [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk6/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#7707]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4212]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-10/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-b-hdmi-a-3-4-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#8709]) +23 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-3-4-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][106] ([i915#8709]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/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@crc-atomic: - shard-tglu: NOTRUN -> [INCOMPLETE][107] ([i915#13287]) +1 other test incomplete [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt at kms_async_flips@crc-atomic.html * igt at kms_async_flips@crc-atomic at pipe-a-dp-4: - shard-dg2: NOTRUN -> [INCOMPLETE][108] ([i915#13287]) +1 other test incomplete [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-10/igt at kms_async_flips@crc-atomic at pipe-a-dp-4.html * igt at kms_async_flips@crc at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][109] ([i915#13287]) +1 other test incomplete [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt at kms_async_flips@crc at pipe-a-hdmi-a-2.html * igt at kms_async_flips@crc at pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [CRASH][110] ([i915#13287]) +3 other tests crash [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt at kms_async_flips@crc at pipe-b-hdmi-a-1.html * igt at kms_async_flips@crc at pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [CRASH][111] ([i915#13287]) +3 other tests crash [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/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][112] ([i915#12967] / [i915#6228]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#10333]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-1/igt at kms_async_flips@test-cursor.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2: NOTRUN -> [FAIL][114] ([i915#5956]) +1 other test fail [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-10/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][115] ([i915#1769]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk5/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#5286]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-9/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-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#5286]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#5286]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-3/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5286]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#3638]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6187]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-8/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][122] ([i915#4538] / [i915#5190]) +9 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/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-64bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#5190]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#6095]) +180 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-4.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#6095]) +39 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#6095]) +46 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/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@ccs-on-another-bo-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][128] +468 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk1/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#6095]) +64 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/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-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#12805]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/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][131] ([i915#6095]) +16 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/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: - shard-glk: NOTRUN -> [INCOMPLETE][132] ([i915#12796]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk8/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#12313]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#10307] / [i915#6095]) +187 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-b-hdmi-a-2.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6095]) +14 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/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][136] ([i915#12313]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][137] ([i915#12313]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#12313]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-8/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#12313]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-14/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/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-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#3742]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_cdclk@mode-transition-all-outputs.html - shard-dg1: NOTRUN -> [SKIP][142] ([i915#3742]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@plane-scaling: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#3742]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#7828]) +11 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt at kms_chamelium_audio@dp-audio.html * igt at kms_chamelium_frames@hdmi-crc-multiple: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#7828]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt at kms_chamelium_frames@hdmi-crc-multiple.html * igt at kms_chamelium_frames@hdmi-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#7828]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_chamelium_frames@hdmi-crc-single.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#7828]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-1/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#7828]) +6 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt at kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#7828]) +6 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#3555]) +7 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt at kms_color@deep-color.html - shard-tglu: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#9979]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-6/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_content_protection@atomic.html * igt at kms_content_protection@content-type-change: - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#6944] / [i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#3299]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt at kms_content_protection@dp-mst-type-0.html - shard-tglu: NOTRUN -> [SKIP][155] ([i915#3116] / [i915#3299]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@lic-type-1: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#9424]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-10/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#6944] / [i915#7116] / [i915#7118]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#7116] / [i915#9424]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt at kms_content_protection@type1.html - shard-tglu: NOTRUN -> [SKIP][159] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#9424]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-2/igt at kms_content_protection@uevent.html - shard-dg2: NOTRUN -> [SKIP][161] ([i915#7118] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-2/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#3555]) +9 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#13049]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-256x256: - shard-rkl: [PASS][164] -> [DMESG-WARN][165] ([i915#12964]) +30 other tests dmesg-warn [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-7/igt at kms_cursor_crc@cursor-onscreen-256x256.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt at kms_cursor_crc@cursor-onscreen-256x256.html * igt at kms_cursor_crc@cursor-onscreen-256x256 at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][166] ([i915#12964]) +6 other tests dmesg-warn [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt at kms_cursor_crc@cursor-onscreen-256x256 at pipe-a-hdmi-a-2.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#13049]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#13049]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt at kms_cursor_crc@cursor-random-512x170.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_12390/shard-mtlp-1/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#8814]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt at kms_cursor_crc@cursor-sliding-max-size.html - shard-rkl: NOTRUN -> [SKIP][171] ([i915#3555]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-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][172] ([i915#13046] / [i915#5354]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-2/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][173] ([i915#4103] / [i915#4213]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/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: NOTRUN -> [SKIP][174] ([i915#4103]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-10/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#4103] / [i915#4213]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][176] +8 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#9809]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-5/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][178] -> [SKIP][179] +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-snb2/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb4/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][180] ([i915#2346]) +1 other test fail [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk8/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: NOTRUN -> [FAIL][181] ([i915#2346]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb2/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#9067]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#9833]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-rkl: NOTRUN -> [SKIP][184] ([i915#9723]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][185] ([i915#9723]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][186] ([i915#9723]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-6/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#9833]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-8/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#8588]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt at kms_display_modes@mst-extended-mode-negative.html - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#8588]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#1769] / [i915#3555] / [i915#3804]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-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-1: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#3804]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1.html * igt at kms_dp_aux_dev: - shard-dg2: [PASS][192] -> [SKIP][193] ([i915#1257]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-10/igt at kms_dp_aux_dev.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#12402]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][195] ([i915#12402]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-2/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#8812]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#3840]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3840]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#3840]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-1/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#3840] / [i915#9053]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#3469]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#4854]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-2/igt at kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][203] ([i915#4854]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-2/igt at kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#4854]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][205] ([i915#9337]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-3/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#658]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][207] ([i915#658]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/igt at kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][208] ([i915#658]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt at kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][209] ([i915#658]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#658]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_feature_discovery@psr2.html * igt at kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#4881]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#9934]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt at kms_flip@2x-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#3637]) +5 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/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][214] ([i915#3637]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-4/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#9934]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-14/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-modeset-vs-vblank-race: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#3637]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_flip@2x-modeset-vs-vblank-race.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#9934]) +3 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-glk: [PASS][218] -> [FAIL][219] ([i915#11989]) +2 other tests fail [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-glk2/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk1/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#8381]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a2: - shard-rkl: [PASS][221] -> [DMESG-FAIL][222] ([i915#12964]) +1 other test dmesg-fail [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-1/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a2.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a2.html * igt at kms_flip@flip-vs-wf_vblank-interruptible: - shard-mtlp: [PASS][223] -> [FAIL][224] ([i915#10826]) +1 other test fail [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-4/igt at kms_flip@flip-vs-wf_vblank-interruptible.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt at kms_flip@flip-vs-wf_vblank-interruptible.html * igt at kms_flip@plain-flip-fb-recreate: - shard-tglu: [PASS][225] -> [FAIL][226] ([i915#10826] / [i915#11989]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-tglu-10/igt at kms_flip@plain-flip-fb-recreate.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a3: - shard-dg2: [PASS][227] -> [FAIL][228] ([i915#11989]) +3 other tests fail [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-2/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a3.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-1/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a3.html * igt at kms_flip@plain-flip-fb-recreate at a-hdmi-a1: - shard-tglu: [PASS][229] -> [FAIL][230] ([i915#10826]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-tglu-10/igt at kms_flip@plain-flip-fb-recreate at a-hdmi-a1.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt at kms_flip@plain-flip-fb-recreate at a-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate at d-hdmi-a1: - shard-tglu: [PASS][231] -> [FAIL][232] ([i915#11989]) +4 other tests fail [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-tglu-10/igt at kms_flip@plain-flip-fb-recreate at d-hdmi-a1.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt at kms_flip@plain-flip-fb-recreate at d-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [FAIL][233] ([i915#11989]) +3 other tests fail [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-6/igt at kms_flip@plain-flip-ts-check-interruptible.html - shard-mtlp: [PASS][234] -> [FAIL][235] ([i915#11989]) +2 other tests fail [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-8/igt at kms_flip@plain-flip-ts-check-interruptible.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip@wf_vblank-ts-check-interruptible at b-hdmi-a1: - shard-glk: NOTRUN -> [FAIL][236] ([i915#11989]) +2 other tests fail [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk5/igt at kms_flip@wf_vblank-ts-check-interruptible at b-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#2672]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-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-64bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#3555]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#2587] / [i915#2672]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-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-tglu: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#3555]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/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][242] ([i915#2587] / [i915#2672] / [i915#3555]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-10/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][243] ([i915#2672] / [i915#3555] / [i915#5190]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#2587] / [i915#2672] / [i915#3555]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/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: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/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][246] ([i915#2587] / [i915#2672]) +4 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/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][247] ([i915#2672] / [i915#3555] / [i915#8813]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/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][248] ([i915#2672] / [i915#8813]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/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-16bpp-yftile-downscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#2587] / [i915#2672]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555]) +2 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/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-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#2672]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#5274]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][253] +39 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#5439]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#8708]) +22 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-tglu-1: NOTRUN -> [SKIP][256] +43 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#1825]) +10 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#1825]) +12 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-5/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][259] ([i915#9766]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/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_12390/shard-dg2-11/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#8708]) +15 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-3/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][262] ([i915#3023]) +7 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#3458]) +12 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#5354]) +29 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][265] +99 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#8708]) +5 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#3458]) +15 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#12713]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-6/igt at kms_hdr@invalid-metadata-sizes.html - shard-rkl: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8228]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt at kms_hdr@invalid-metadata-sizes.html - shard-dg1: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#8228]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8228]) +4 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle-suspend: - shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8228]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#12394]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt at kms_joiner@basic-force-ultra-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_12390/shard-tglu-4/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#10656]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: [PASS][277] -> [SKIP][278] ([i915#12388]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-10/igt at kms_joiner@invalid-modeset-force-big-joiner.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#12339]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/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][280] ([i915#1839]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#6301]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][282] ([i915#12756] / [i915#13409]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk2/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][283] ([i915#13409]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk2/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][284] ([i915#13026]) +1 other test incomplete [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk1/igt at kms_plane@plane-panning-bottom-right-suspend.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_12390/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][286] ([i915#10647]) +3 other tests fail [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk5/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_12390/shard-glk6/igt at kms_plane_alpha_blend@alpha-transparent-fb.html * igt at kms_plane_scaling@intel-max-src-size: - shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#6953]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#12247]) +9 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-2/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#12247]) +7 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#12247] / [i915#9423]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#12247] / [i915#6953]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/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-c: - shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#12247]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#12247] / [i915#6953]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-2/igt at kms_plane_scaling@planes-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20: - shard-dg1: NOTRUN -> [DMESG-WARN][295] ([i915#4423]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html * igt at kms_plane_scaling@planes-downscale-factor-0-5 at pipe-b: - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#12247]) +5 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-2/igt at kms_plane_scaling@planes-downscale-factor-0-5 at pipe-b.html * igt at kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20: - shard-rkl: [PASS][297] -> [DMESG-WARN][298] ([i915#12964] / [i915#1982]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-4/igt at kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt at kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html * igt at kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#5354]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#9685]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt at kms_pm_dc@dc5-psr.html - shard-tglu: NOTRUN -> [SKIP][301] ([i915#9685]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-4/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-mtlp: NOTRUN -> [FAIL][302] ([i915#12913]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-1/igt at kms_pm_dc@dc6-dpms.html - shard-dg2: NOTRUN -> [SKIP][303] ([i915#5978]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt at kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][304] ([i915#3361]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-14/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#4281]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#3828]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-6/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#9519]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#9519]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#9519]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#9519]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][311] -> [SKIP][312] ([i915#9519]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-3/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/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][313] -> [SKIP][314] ([i915#9519]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-1/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-4/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][315] ([i915#10553]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk4/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#6524] / [i915#6805]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt at kms_prime@basic-crc-hybrid.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][317] ([i915#11520]) +9 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-2/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][318] ([i915#11520]) +10 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb2/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#11520]) +3 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#12316]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-6/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-sf: - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#11520]) +3 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][322] ([i915#11520]) +7 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][323] ([i915#11520]) +8 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk1/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][324] ([i915#11520]) +7 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-5/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#9683]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-psr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#1072] / [i915#9732]) +17 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt at kms_psr@fbc-psr-primary-page-flip.html * igt at kms_psr@fbc-psr2-no-drrs: - shard-tglu: NOTRUN -> [SKIP][327] ([i915#9732]) +24 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-9/igt at kms_psr@fbc-psr2-no-drrs.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#9688]) +6 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-4/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@psr-cursor-render: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#1072] / [i915#9732]) +4 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr-primary-mmap-gtt at edp-1: - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#4077] / [i915#9688]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-2/igt at kms_psr@psr-primary-mmap-gtt at edp-1.html * igt at kms_psr@psr2-cursor-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#9732]) +8 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_psr@psr2-cursor-mmap-gtt.html * igt at kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][332] ([i915#1072] / [i915#9732]) +20 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt at kms_psr@psr2-sprite-mmap-gtt.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][333] ([i915#9685]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][334] ([i915#5289]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][335] ([i915#5289]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][336] ([i915#5289]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#12755]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#12755]) +2 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-3/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][339] ([i915#13179]) +1 other test abort [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb5/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@clone-exclusive-crtc: - shard-tglu: NOTRUN -> [SKIP][340] ([i915#3555]) +6 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-3/igt at kms_setmode@clone-exclusive-crtc.html - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#3555] / [i915#8809]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-2/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#3555]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][343] ([IGT#160]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-4/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#8623]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_tiled_display@basic-test-pattern.html - shard-dg1: NOTRUN -> [SKIP][345] ([i915#8623]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][346] ([i915#8623]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-2/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][347] +6 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-6/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#9906]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-3/igt at kms_vrr@flip-basic-fastset.html - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#8808] / [i915#9906]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-6/igt at kms_vrr@flip-basic-fastset.html - shard-dg2: NOTRUN -> [SKIP][350] ([i915#9906]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-11/igt at kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][351] ([i915#9906]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-4/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#9906]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-1/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-dg1: NOTRUN -> [SKIP][353] ([i915#9906]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#2437]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][355] ([i915#2437]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-7/igt at kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][356] ([i915#2437]) +2 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk5/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#2434]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt at perf@mi-rpc.html * igt at perf_pmu@busy-double-start at rcs0: - shard-mtlp: [PASS][358] -> [FAIL][359] ([i915#4349]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-4/igt at perf_pmu@busy-double-start at rcs0.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-8/igt at perf_pmu@busy-double-start at rcs0.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: [PASS][360] -> [FAIL][361] ([i915#4349]) +4 other tests fail [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-11/igt at perf_pmu@busy-double-start at vecs1.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt at perf_pmu@busy-double-start at vecs1.html * igt at prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][362] ([i915#3708]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-14/igt at prime_vgem@basic-fence-flip.html * igt at prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#3708]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-7/igt at prime_vgem@fence-flip-hang.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#9917]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt at sriov_basic@enable-vfs-autoprobe-off.html - shard-dg1: NOTRUN -> [SKIP][365] ([i915#9917]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-17/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6: - shard-tglu: NOTRUN -> [FAIL][366] ([i915#12910]) +9 other tests fail [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-8/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6.html - shard-mtlp: NOTRUN -> [FAIL][367] ([i915#12910]) +9 other tests fail [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-1/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-6.html * igt at tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][368] ([i915#4818]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-14/igt at tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][369] ([i915#4818]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-1/igt at tools_test@sysfs_l3_parity.html - shard-dg2: NOTRUN -> [SKIP][370] ([i915#4818]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-8/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at gem_exec_big@single: - shard-tglu: [ABORT][371] ([i915#11713]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-tglu-6/igt at gem_exec_big@single.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-9/igt at gem_exec_big@single.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: [ABORT][373] ([i915#7975] / [i915#8213]) -> [PASS][374] +1 other test pass [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_lmem_swapping@verify-random: - shard-dg2: [SKIP][375] ([i915#13459]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-7/igt at gem_lmem_swapping@verify-random.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-2/igt at gem_lmem_swapping@verify-random.html * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-tglu: [SKIP][377] ([i915#4270]) -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-tglu-10/igt at gem_pxp@reject-modify-context-protection-off-2.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-6/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_workarounds@suspend-resume: - shard-rkl: [INCOMPLETE][379] ([i915#13356]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-5/igt at gem_workarounds@suspend-resume.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-4/igt at gem_workarounds@suspend-resume.html * igt at gem_workarounds@suspend-resume-fd: - shard-rkl: [DMESG-FAIL][381] ([i915#12964]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-3/igt at gem_workarounds@suspend-resume-fd.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-2/igt at gem_workarounds@suspend-resume-fd.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-dg1: [FAIL][383] ([i915#3591]) -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [DMESG-FAIL][385] ([i915#13393]) -> [PASS][386] +1 other test pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-4/igt at i915_selftest@live at workarounds.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-5/igt at i915_selftest@live at workarounds.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][387] ([i915#5138]) -> [PASS][388] +1 other test pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-2/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-8/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_cursor_crc@cursor-sliding-128x42 at pipe-b-hdmi-a-2: - shard-rkl: [DMESG-WARN][389] ([i915#12964]) -> [PASS][390] +32 other tests pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-5/igt at kms_cursor_crc@cursor-sliding-128x42 at pipe-b-hdmi-a-2.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt at kms_cursor_crc@cursor-sliding-128x42 at pipe-b-hdmi-a-2.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: [FAIL][391] ([i915#2346]) -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-snb4/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1: - shard-glk: [DMESG-WARN][393] ([i915#118]) -> [PASS][394] +1 other test pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-glk8/igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk1/igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check at a-edp1: - shard-mtlp: [FAIL][395] ([i915#11989]) -> [PASS][396] +1 other test pass [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-1/igt at kms_flip@plain-flip-ts-check at a-edp1.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-5/igt at kms_flip@plain-flip-ts-check at a-edp1.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: [FAIL][397] ([i915#6880]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][399] ([i915#9295]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-tglu-8/igt at kms_pm_dc@dc6-dpms.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-tglu-2/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@basic-rte: - shard-dg1: [DMESG-WARN][401] ([i915#4423]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg1-12/igt at kms_pm_rpm@basic-rte.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-12/igt at kms_pm_rpm@basic-rte.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][403] ([i915#9519]) -> [PASS][404] +1 other test pass [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-2/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-5/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_universal_plane@cursor-fb-leak at pipe-d-edp-1: - shard-mtlp: [FAIL][405] ([i915#9196]) -> [PASS][406] +1 other test pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-5/igt at kms_universal_plane@cursor-fb-leak at pipe-d-edp-1.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-7/igt at kms_universal_plane@cursor-fb-leak at pipe-d-edp-1.html * igt at kms_vblank@query-forked-hang: - shard-rkl: [DMESG-WARN][407] ([i915#12917] / [i915#12964]) -> [PASS][408] +1 other test pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-4/igt at kms_vblank@query-forked-hang.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-1/igt at kms_vblank@query-forked-hang.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_15905/shard-mtlp-1/igt at kms_vrr@negative-basic.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-2/igt at kms_vrr@negative-basic.html * igt at perf_pmu@busy-accuracy-2: - shard-dg1: [FAIL][411] ([i915#4349]) -> [PASS][412] +1 other test pass [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg1-12/igt at perf_pmu@busy-accuracy-2.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-13/igt at perf_pmu@busy-accuracy-2.html * igt at perf_pmu@busy-accuracy-2 at vcs1: - shard-mtlp: [FAIL][413] ([i915#4349]) -> [PASS][414] +3 other tests pass [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-1/igt at perf_pmu@busy-accuracy-2 at vcs1.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-mtlp-3/igt at perf_pmu@busy-accuracy-2 at vcs1.html * igt at perf_pmu@busy-accuracy-2 at vecs1: - shard-dg2: [FAIL][415] ([i915#4349]) -> [PASS][416] +4 other tests pass [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg2-1/igt at perf_pmu@busy-accuracy-2 at vecs1.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg2-2/igt at perf_pmu@busy-accuracy-2 at vecs1.html * igt at perf_pmu@most-busy-check-all: - shard-rkl: [FAIL][417] ([i915#4349]) -> [PASS][418] +1 other test pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-4/igt at perf_pmu@most-busy-check-all.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt at perf_pmu@most-busy-check-all.html #### Warnings #### * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [TIMEOUT][419] ([i915#5493]) -> [DMESG-WARN][420] ([i915#5493]) +1 other test dmesg-warn [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-dg1-18/igt at gem_lmem_swapping@smem-oom at lmem0.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-dg1-18/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_pxp@fail-invalid-protected-context: - shard-rkl: [SKIP][421] ([i915#4270]) -> [TIMEOUT][422] ([i915#12964]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-7/igt at gem_pxp@fail-invalid-protected-context.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-7/igt at gem_pxp@fail-invalid-protected-context.html * igt at gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: [TIMEOUT][423] ([i915#12917] / [i915#12964]) -> [SKIP][424] ([i915#4270]) +1 other test skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-5/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-4/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: [SKIP][425] ([i915#4270]) -> [TIMEOUT][426] ([i915#12917] / [i915#12964]) +1 other test timeout [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-rkl-1/igt at gem_pxp@reject-modify-context-protection-off-2.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-rkl-2/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: [ABORT][427] ([i915#13263] / [i915#13449]) -> [ABORT][428] ([i915#13449]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-glk5/igt at gem_tiled_swapping@non-threaded.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/shard-glk9/igt at gem_tiled_swapping@non-threaded.html * igt at i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][429] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][430] ([i915#10131]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15905/shard-mtlp-1/igt at i915_module_load@reload-with-fault-injection.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12390/index.html From patchwork at emeril.freedesktop.org Mon Jan 6 11:48:28 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 11:48:28 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Remove_redundant_hotplug_?= =?utf-8?q?detection_assertion?= In-Reply-To: <20250106094259.931356-1-ramanaidu.naladala@intel.com> References: <20250106094259.931356-1-ramanaidu.naladala@intel.com> Message-ID: <173616410824.120825.8034844735065599147@b555e5b46a47> == Series Details == Series: Remove redundant hotplug detection assertion URL : https://patchwork.freedesktop.org/series/143141/ State : success == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12391 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/index.html Participating hosts (40 -> 37) ------------------------------ Missing (3): bat-atsm-1 fi-snb-2520m fi-bsw-nick Known issues ------------ Here are the changes found in IGTPW_12391 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at runner@aborted: - fi-kbl-x1275: NOTRUN -> [FAIL][1] ([i915#13462]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/fi-kbl-x1275/igt at runner@aborted.html - bat-adlp-11: NOTRUN -> [FAIL][2] ([i915#13462]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-adlp-11/igt at runner@aborted.html - fi-hsw-4770: NOTRUN -> [FAIL][3] ([i915#13462]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/fi-hsw-4770/igt at runner@aborted.html - fi-cfl-8109u: NOTRUN -> [FAIL][4] ([i915#13462]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/fi-cfl-8109u/igt at runner@aborted.html - fi-kbl-8809g: NOTRUN -> [FAIL][5] ([i915#13462]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/fi-kbl-8809g/igt at runner@aborted.html - fi-ivb-3770: NOTRUN -> [FAIL][6] ([i915#13462]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/fi-ivb-3770/igt at runner@aborted.html - bat-mtlp-8: NOTRUN -> [FAIL][7] ([i915#13462]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-mtlp-8/igt at runner@aborted.html - bat-dg1-6: NOTRUN -> [FAIL][8] ([i915#13462]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-dg1-6/igt at runner@aborted.html - fi-elk-e7500: NOTRUN -> [FAIL][9] ([i915#13462]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/fi-elk-e7500/igt at runner@aborted.html - bat-dg2-8: NOTRUN -> [FAIL][10] ([i915#13462]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-dg2-8/igt at runner@aborted.html - fi-kbl-guc: NOTRUN -> [FAIL][11] ([i915#13462]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/fi-kbl-guc/igt at runner@aborted.html - bat-adls-6: NOTRUN -> [FAIL][12] ([i915#13462]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-adls-6/igt at runner@aborted.html - fi-ilk-650: NOTRUN -> [FAIL][13] ([i915#13462]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/fi-ilk-650/igt at runner@aborted.html - bat-jsl-1: NOTRUN -> [FAIL][14] ([i915#13462]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-jsl-1/igt at runner@aborted.html - fi-tgl-1115g4: NOTRUN -> [FAIL][15] ([i915#13462]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/fi-tgl-1115g4/igt at runner@aborted.html - fi-blb-e6850: NOTRUN -> [FAIL][16] ([i915#13462]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/fi-blb-e6850/igt at runner@aborted.html - bat-mtlp-6: NOTRUN -> [FAIL][17] ([i915#13462]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-mtlp-6/igt at runner@aborted.html - bat-arlh-3: NOTRUN -> [FAIL][18] ([i915#13462]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-arlh-3/igt at runner@aborted.html - fi-pnv-d510: NOTRUN -> [FAIL][19] ([i915#13462]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/fi-pnv-d510/igt at runner@aborted.html - bat-dg1-7: NOTRUN -> [FAIL][20] ([i915#13462]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-dg1-7/igt at runner@aborted.html - bat-adlp-9: NOTRUN -> [FAIL][21] ([i915#13462]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-adlp-9/igt at runner@aborted.html - bat-twl-2: NOTRUN -> [FAIL][22] ([i915#13462]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-twl-2/igt at runner@aborted.html - bat-dg2-11: NOTRUN -> [FAIL][23] ([i915#13462]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-dg2-11/igt at runner@aborted.html - bat-rpls-4: NOTRUN -> [FAIL][24] ([i915#13462]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-rpls-4/igt at runner@aborted.html - fi-kbl-7567u: NOTRUN -> [FAIL][25] ([i915#13462]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/fi-kbl-7567u/igt at runner@aborted.html - fi-cfl-8700k: NOTRUN -> [FAIL][26] ([i915#13462]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/fi-cfl-8700k/igt at runner@aborted.html - bat-dg2-14: NOTRUN -> [FAIL][27] ([i915#13462]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-dg2-14/igt at runner@aborted.html - bat-kbl-2: NOTRUN -> [FAIL][28] ([i915#13462]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-kbl-2/igt at runner@aborted.html - bat-arls-5: NOTRUN -> [FAIL][29] ([i915#13462]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-arls-5/igt at runner@aborted.html - bat-rplp-1: NOTRUN -> [FAIL][30] ([i915#13462]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-rplp-1/igt at runner@aborted.html - bat-arlh-2: NOTRUN -> [FAIL][31] ([i915#13462]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-arlh-2/igt at runner@aborted.html - fi-rkl-11600: NOTRUN -> [FAIL][32] ([i915#13462]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/fi-rkl-11600/igt at runner@aborted.html - fi-cfl-guc: NOTRUN -> [FAIL][33] ([i915#13462]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/fi-cfl-guc/igt at runner@aborted.html - bat-dg2-13: NOTRUN -> [FAIL][34] ([i915#13462]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-dg2-13/igt at runner@aborted.html - bat-jsl-3: NOTRUN -> [FAIL][35] ([i915#13462]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/bat-jsl-3/igt at runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#13462]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13462 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12391 * Linux: CI_DRM_15892 -> CI_DRM_15908 CI-20190529: 20190529 CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15908: f06efdfad9d0e9f5cb74404ac98e1a5b3b246567 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12391: b30c905319556f0f67860479cd2d1f5c6586bab5 @ 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_12391/index.html From patchwork at emeril.freedesktop.org Mon Jan 6 12:01:34 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 12:01:34 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/kms=5Fhistogram=3A_?= =?utf-8?q?Add_check_for_ghe_api_call?= In-Reply-To: <20250106095154.243459-1-mohammed.thasleem@intel.com> References: <20250106095154.243459-1-mohammed.thasleem@intel.com> Message-ID: <173616489425.133956.6088469870388684962@b555e5b46a47> == Series Details == Series: tests/kms_histogram: Add check for ghe api call URL : https://patchwork.freedesktop.org/series/143142/ State : success == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12392 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/index.html Participating hosts (40 -> 37) ------------------------------ Missing (3): bat-atsm-1 fi-snb-2520m fi-bsw-nick Known issues ------------ Here are the changes found in IGTPW_12392 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at runner@aborted: - fi-kbl-x1275: NOTRUN -> [FAIL][1] ([i915#13462]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/fi-kbl-x1275/igt at runner@aborted.html - bat-adlp-11: NOTRUN -> [FAIL][2] ([i915#13462]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-adlp-11/igt at runner@aborted.html - fi-hsw-4770: NOTRUN -> [FAIL][3] ([i915#13462]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/fi-hsw-4770/igt at runner@aborted.html - fi-cfl-8109u: NOTRUN -> [FAIL][4] ([i915#13462]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/fi-cfl-8109u/igt at runner@aborted.html - fi-kbl-8809g: NOTRUN -> [FAIL][5] ([i915#13462]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/fi-kbl-8809g/igt at runner@aborted.html - fi-ivb-3770: NOTRUN -> [FAIL][6] ([i915#13462]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/fi-ivb-3770/igt at runner@aborted.html - bat-mtlp-8: NOTRUN -> [FAIL][7] ([i915#13462]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-mtlp-8/igt at runner@aborted.html - bat-dg1-6: NOTRUN -> [FAIL][8] ([i915#13462]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-dg1-6/igt at runner@aborted.html - fi-elk-e7500: NOTRUN -> [FAIL][9] ([i915#13462]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/fi-elk-e7500/igt at runner@aborted.html - bat-dg2-8: NOTRUN -> [FAIL][10] ([i915#13462]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-dg2-8/igt at runner@aborted.html - fi-kbl-guc: NOTRUN -> [FAIL][11] ([i915#13462]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/fi-kbl-guc/igt at runner@aborted.html - bat-adls-6: NOTRUN -> [FAIL][12] ([i915#13462]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-adls-6/igt at runner@aborted.html - fi-ilk-650: NOTRUN -> [FAIL][13] ([i915#13462]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/fi-ilk-650/igt at runner@aborted.html - bat-jsl-1: NOTRUN -> [FAIL][14] ([i915#13462]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-jsl-1/igt at runner@aborted.html - fi-tgl-1115g4: NOTRUN -> [FAIL][15] ([i915#13462]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/fi-tgl-1115g4/igt at runner@aborted.html - fi-blb-e6850: NOTRUN -> [FAIL][16] ([i915#13462]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/fi-blb-e6850/igt at runner@aborted.html - bat-mtlp-6: NOTRUN -> [FAIL][17] ([i915#13462]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-mtlp-6/igt at runner@aborted.html - bat-arlh-3: NOTRUN -> [FAIL][18] ([i915#13462]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-arlh-3/igt at runner@aborted.html - fi-pnv-d510: NOTRUN -> [FAIL][19] ([i915#13350]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/fi-pnv-d510/igt at runner@aborted.html - bat-dg1-7: NOTRUN -> [FAIL][20] ([i915#13462]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-dg1-7/igt at runner@aborted.html - bat-adlp-9: NOTRUN -> [FAIL][21] ([i915#13462]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-adlp-9/igt at runner@aborted.html - bat-twl-2: NOTRUN -> [FAIL][22] ([i915#13462]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-twl-2/igt at runner@aborted.html - bat-dg2-11: NOTRUN -> [FAIL][23] ([i915#13462]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-dg2-11/igt at runner@aborted.html - bat-rpls-4: NOTRUN -> [FAIL][24] ([i915#13462]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-rpls-4/igt at runner@aborted.html - fi-kbl-7567u: NOTRUN -> [FAIL][25] ([i915#13462]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/fi-kbl-7567u/igt at runner@aborted.html - fi-cfl-8700k: NOTRUN -> [FAIL][26] ([i915#13462]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/fi-cfl-8700k/igt at runner@aborted.html - bat-dg2-14: NOTRUN -> [FAIL][27] ([i915#13462]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-dg2-14/igt at runner@aborted.html - bat-kbl-2: NOTRUN -> [FAIL][28] ([i915#13462]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-kbl-2/igt at runner@aborted.html - bat-arls-5: NOTRUN -> [FAIL][29] ([i915#13462]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-arls-5/igt at runner@aborted.html - bat-rplp-1: NOTRUN -> [FAIL][30] ([i915#13462]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-rplp-1/igt at runner@aborted.html - bat-arlh-2: NOTRUN -> [FAIL][31] ([i915#13462]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-arlh-2/igt at runner@aborted.html - fi-rkl-11600: NOTRUN -> [FAIL][32] ([i915#13462]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/fi-rkl-11600/igt at runner@aborted.html - fi-cfl-guc: NOTRUN -> [FAIL][33] ([i915#13462]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/fi-cfl-guc/igt at runner@aborted.html - bat-dg2-13: NOTRUN -> [FAIL][34] ([i915#13462]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-dg2-13/igt at runner@aborted.html - bat-jsl-3: NOTRUN -> [FAIL][35] ([i915#13462]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/bat-jsl-3/igt at runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350 [i915#13462]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13462 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12392 * Linux: CI_DRM_15892 -> CI_DRM_15908 CI-20190529: 20190529 CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15908: f06efdfad9d0e9f5cb74404ac98e1a5b3b246567 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12392: bde46610a2c68df5fd154cbefd26bf4a506e1a6e @ 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_12392/index.html From patchwork at emeril.freedesktop.org Mon Jan 6 12:26:32 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 12:26:32 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Miscellaneous_OA_Refactors?= =?utf-8?q?_=28rev2=29?= In-Reply-To: <20250106034638.1746051-1-sai.teja.pottumuttu@intel.com> References: <20250106034638.1746051-1-sai.teja.pottumuttu@intel.com> Message-ID: <173616639226.205352.5257549234513753487@b555e5b46a47> == Series Details == Series: Miscellaneous OA Refactors (rev2) URL : https://patchwork.freedesktop.org/series/142773/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12390_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12390_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12390_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_12390_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 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-c-hdmi-a-3.html * igt at kms_cursor_crc@cursor-suspend: - shard-bmg: NOTRUN -> [FAIL][2] +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_flip@flip-vs-suspend at b-dp2: - shard-bmg: [PASS][3] -> [INCOMPLETE][4] [3]: 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 [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/igt at kms_flip@flip-vs-suspend at b-dp2.html Known issues ------------ Here are the changes found in XEIGTPW_12390_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getstats: - shard-dg2-set2: [PASS][5] -> [SKIP][6] ([Intel XE#2423]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at core_getstats.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at core_getstats.html * igt at core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [PASS][7] -> [SKIP][8] ([Intel XE#1885]) +4 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at core_hotunplug@hotunplug-rescan.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at core_hotunplug@hotunplug-rescan.html * igt at core_setmaster@master-drop-set-root: - shard-dg2-set2: NOTRUN -> [FAIL][9] ([Intel XE#3249]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at core_setmaster@master-drop-set-root.html * igt at core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#3453]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at core_setmaster@master-drop-set-shared-fd.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at core_setmaster@master-drop-set-shared-fd.html * igt at fbdev@info: - shard-dg2-set2: [PASS][12] -> [SKIP][13] ([Intel XE#2134]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at fbdev@info.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at fbdev@info.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#3157]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-1/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [PASS][15] -> [FAIL][16] ([Intel XE#3701] / [Intel XE#3718] / [Intel XE#827]) [15]: 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 [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-dp-2: - shard-bmg: [PASS][17] -> [FAIL][18] ([Intel XE#3718]) [17]: 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-a-dp-2.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-dp-2.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [PASS][19] -> [FAIL][20] ([Intel XE#3719]) +3 other tests fail [19]: 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 [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-8/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][21] ([Intel XE#3279]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/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][22] ([Intel XE#3658]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][23] ([Intel XE#1407]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-1/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][24] ([Intel XE#1124]) +7 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][25] ([Intel XE#1124]) +7 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][27] ([Intel XE#2314] / [Intel XE#2894]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.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_12390/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_12390/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][30] ([Intel XE#2887]) +8 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][31] -> [SKIP][32] ([Intel XE#2136] / [Intel XE#2351]) +28 other tests skip [31]: 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 [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +7 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#3432]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#787]) +32 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs at pipe-b-dp-4.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#455] / [Intel XE#787]) +10 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-436/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][37] -> [INCOMPLETE][38] ([Intel XE#1727]) [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.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-435/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][39] -> [DMESG-WARN][40] ([Intel XE#1727] / [Intel XE#3113]) [39]: 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 [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-435/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-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#3124]) [41]: 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-b-hdmi-a-6.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-6.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#306]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][44] ([Intel XE#2252]) +5 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#373]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#307]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2341]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt at kms_content_protection@mei-interface.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_12390/shard-lnl-8/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_12390/shard-lnl-3/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2320]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt at kms_cursor_crc@cursor-onscreen-32x32.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_12390/shard-lnl-5/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#455]) +5 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-sliding-64x64: - shard-dg2-set2: [PASS][53] -> [SKIP][54] ([Intel XE#2423] / [i915#2575]) +251 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_cursor_crc@cursor-sliding-64x64.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_cursor_crc@cursor-sliding-64x64.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_12390/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][56] -> [DMESG-WARN][57] ([Intel XE#877]) +3 other tests 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_12390/shard-bmg-7/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][58] ([Intel XE#2286]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][59] ([Intel XE#2141]) +2 other tests fail [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/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_12390/shard-lnl-1/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_12390/shard-bmg-8/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@psr-suspend: - shard-lnl: [PASS][62] -> [FAIL][63] ([Intel XE#2958]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at kms_fbcon_fbt@psr-suspend.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-1/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#2423] / [i915#2575]) +24 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [PASS][65] -> [FAIL][66] ([Intel XE#2882] / [Intel XE#3288]) +1 other test fail [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 at ab-dp2-hdmi-a3.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/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][67] -> [FAIL][68] ([Intel XE#3321]) +2 other tests fail [67]: 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 [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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 ad-dp2-hdmi-a3: - shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#3288] / [Intel XE#3321]) +1 other test fail [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 ad-dp2-hdmi-a3.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/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-dp4: - shard-dg2-set2: [PASS][71] -> [FAIL][72] ([Intel XE#301]) +11 other tests fail [71]: 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 [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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-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_12390/shard-lnl-2/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][74] ([Intel XE#301]) +2 other tests fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.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]) +1 other test 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_12390/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][77] ([Intel XE#2597]) +2 other tests incomplete [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@wf_vblank-ts-check: - shard-bmg: [PASS][78] -> [FAIL][79] ([Intel XE#2882]) +4 other tests fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_flip@wf_vblank-ts-check.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt at kms_flip@wf_vblank-ts-check.html * igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2293]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/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][82] ([Intel XE#1401] / [Intel XE#1745]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][83] ([Intel XE#1401]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][84] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][85] ([Intel XE#1397]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][86] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@basic: - shard-dg2-set2: [PASS][87] -> [SKIP][88] ([Intel XE#2351]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_frontbuffer_tracking@basic.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_frontbuffer_tracking@basic.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2311]) +15 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][90] ([Intel XE#651]) +7 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-8/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][91] ([Intel XE#651]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#2136]) +78 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][94] ([Intel XE#2333]) +8 other tests fail [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/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][95] ([Intel XE#2136]) +17 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][96] ([Intel XE#656]) +20 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][97] ([Intel XE#2352]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2136] / [Intel XE#2231]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2313]) +22 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][100] ([Intel XE#1469]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#653]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1503]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-5/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#3898]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#346]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#2927]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-8/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2927]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-436/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_pipe_crc_basic@disable-crc-after-crtc: - shard-bmg: [PASS][107] -> [SKIP][108] ([Intel XE#3007]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_pipe_crc_basic@disable-crc-after-crtc.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt at kms_pipe_crc_basic@disable-crc-after-crtc.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-bmg: NOTRUN -> [INCOMPLETE][109] ([Intel XE#3663]) +1 other test incomplete [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#3007]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/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][111] ([Intel XE#2763]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][112] ([Intel XE#2763]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/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][113] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][114] ([Intel XE#2763]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][115] -> [FAIL][116] ([Intel XE#718]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at kms_pm_dc@dc5-psr.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#908]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-436/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2499]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][119] -> [SKIP][120] ([Intel XE#2446]) +11 other tests skip [119]: 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 [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2446]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_pm_rpm@system-suspend-modeset.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_12390/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][123] ([Intel XE#1489]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/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][124] ([Intel XE#1489]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/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][125] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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_12390/shard-lnl-1/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_12390/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][128] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][129] ([Intel XE#3414] / [Intel XE#3904]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2413]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#1435]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#362]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][133] ([Intel XE#2450]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1499]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#756]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt at kms_writeback@writeback-pixel-formats.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_12390/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]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2905]) +6 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/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_12390/shard-lnl-8/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]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-5/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_12390/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][142] ([Intel XE#2364]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/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_12390/shard-dg2-436/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_balancer@twice-virtual-basic: - shard-dg2-set2: [PASS][144] -> [SKIP][145] ([Intel XE#1130]) +472 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_exec_balancer@twice-virtual-basic.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_exec_balancer@twice-virtual-basic.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2322]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/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][147] ([Intel XE#1392]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-3/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@no-exec-bindexecqueue-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#1130]) +30 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_exec_basic@no-exec-bindexecqueue-rebind.html * igt at xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#288]) +4 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt at xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html * igt at xe_exec_threads@threads-hang-userptr-invalidate: - shard-bmg: [PASS][150] -> [SKIP][151] ([Intel XE#1130]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_exec_threads@threads-hang-userptr-invalidate.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt at xe_exec_threads@threads-hang-userptr-invalidate.html * igt at xe_live_ktest@xe_bo: - shard-dg2-set2: [PASS][152] -> [SKIP][153] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_live_ktest@xe_bo.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_live_ktest@xe_bo.html - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1192]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-3/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-dg2-set2: [PASS][155] -> [SKIP][156] ([Intel XE#2229]) [155]: 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 [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][157] ([Intel XE#378]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][158] ([Intel XE#2541] / [Intel XE#3573]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-436/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_12390/shard-lnl-3/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_12390/shard-bmg-5/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_12390/shard-lnl-6/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_12390/shard-lnl-6/igt at xe_pm@s4-d3cold-basic-exec.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_12390/shard-bmg-8/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_12390/shard-lnl-4/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_12390/shard-dg2-435/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_12390/shard-lnl-1/igt at xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-c-dp-2: - shard-bmg: [INCOMPLETE][167] -> [PASS][168] +2 other tests pass [167]: 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 [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/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 ab-dp2-hdmi-a3: - shard-bmg: [FAIL][169] ([Intel XE#2882]) -> [PASS][170] +2 other tests pass [169]: 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 [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/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][171] ([Intel XE#3321]) -> [PASS][172] [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 ad-dp2-hdmi-a3.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][173] ([Intel XE#301]) -> [PASS][174] [173]: 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 [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][175] -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][177] -> [PASS][178] +1 other test pass [177]: 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 [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][179] ([Intel XE#718]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][181] ([Intel XE#3313]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt at kms_sequence@get-forked-busy.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][183] -> [PASS][184] [183]: 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 [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [FAIL][185] ([Intel XE#2883]) -> [PASS][186] +1 other test pass [185]: 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 [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][187] ([Intel XE#1473]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-434/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][189] ([Intel XE#3865]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-8/igt at xe_gt_freq@freq_suspend.html * igt at xe_pm_residency@gt-c6-freeze: - shard-bmg: [INCOMPLETE][191] ([Intel XE#3088]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-5/igt at xe_pm_residency@gt-c6-freeze.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][193] ([Intel XE#958]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_pm_residency@toggle-gt-c6.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-6/igt at xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt at kms_async_flips@crc: - shard-bmg: [INCOMPLETE][195] ([Intel XE#3781]) -> [INCOMPLETE][196] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][197] ([Intel XE#3781]) -> [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_async_flips@crc-atomic.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_async_flips@crc-atomic.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][199] ([Intel XE#873]) -> [SKIP][200] ([Intel XE#2423] / [i915#2575]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_async_flips@invalid-async-flip.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2-set2: [SKIP][201] ([Intel XE#316]) -> [SKIP][202] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@4-tiled-64bpp-rotate-270.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_big_fb@4-tiled-64bpp-rotate-270.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][203] ([Intel XE#316]) -> [SKIP][204] ([Intel XE#2136]) +9 other tests skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][205] ([Intel XE#1124]) -> [SKIP][206] ([Intel XE#2136]) +21 other tests skip [205]: 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 [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][207] ([Intel XE#1124]) -> [SKIP][208] ([Intel XE#2136] / [Intel XE#2351]) +14 other tests skip [207]: 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 [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][209] ([Intel XE#619]) -> [SKIP][210] ([Intel XE#2136] / [Intel XE#2351]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_big_fb@yf-tiled-addfb.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][211] ([Intel XE#2191]) -> [SKIP][212] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [211]: 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 [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: [SKIP][213] ([Intel XE#367]) -> [SKIP][214] ([Intel XE#2423] / [i915#2575]) +9 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: [SKIP][215] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][216] ([Intel XE#2136]) +30 other tests skip [215]: 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 [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/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][217] ([Intel XE#2907]) -> [SKIP][218] ([Intel XE#2136]) +3 other tests skip [217]: 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 [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc: - shard-dg2-set2: [SKIP][219] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][220] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [219]: 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 [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][221] ([Intel XE#3442]) -> [SKIP][222] ([Intel XE#2136]) [221]: 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 [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][223] ([Intel XE#314]) -> [SKIP][224] ([Intel XE#2136] / [Intel XE#2351]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_cdclk@mode-transition-all-outputs.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][225] ([Intel XE#306]) -> [SKIP][226] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_chamelium_color@ctm-limited-range.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: [SKIP][227] ([Intel XE#373]) -> [SKIP][228] ([Intel XE#2423] / [i915#2575]) +28 other tests skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][229] ([Intel XE#307]) -> [SKIP][230] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_content_protection@dp-mst-lic-type-0.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@lic-type-0: - shard-dg2-set2: [FAIL][231] ([Intel XE#1178]) -> [SKIP][232] ([Intel XE#2423] / [i915#2575]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_content_protection@lic-type-0.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@uevent: - shard-dg2-set2: [FAIL][233] ([Intel XE#1188]) -> [SKIP][234] ([Intel XE#2423] / [i915#2575]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_content_protection@uevent.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][235] ([Intel XE#308]) -> [SKIP][236] ([Intel XE#2423] / [i915#2575]) +7 other tests skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x170.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][237] ([Intel XE#323]) -> [SKIP][238] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [237]: 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 [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][239] ([Intel XE#776]) -> [SKIP][240] ([Intel XE#2136]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_fbcon_fbt@psr-suspend.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@dp-mst: - shard-dg2-set2: [SKIP][241] ([Intel XE#1137]) -> [SKIP][242] ([Intel XE#2423] / [i915#2575]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_feature_discovery@dp-mst.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][243] ([Intel XE#455]) -> [SKIP][244] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][245] ([Intel XE#455]) -> [SKIP][246] ([Intel XE#2136]) +9 other tests skip [245]: 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 [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][247] ([i915#5274]) -> [SKIP][248] ([Intel XE#2423] / [i915#2575]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_force_connector_basic@prune-stale-modes.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][249] ([Intel XE#651]) -> [SKIP][250] ([Intel XE#2136] / [Intel XE#2351]) +31 other tests skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-suspend.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][251] ([Intel XE#877]) -> [FAIL][252] ([Intel XE#2333]) [251]: 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 [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-modesetfrombusy: - shard-bmg: [FAIL][253] ([Intel XE#2333]) -> [SKIP][254] ([Intel XE#2136] / [Intel XE#2231]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-modesetfrombusy.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-modesetfrombusy.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][255] ([Intel XE#658]) -> [SKIP][256] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-tiling-y.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: [SKIP][257] ([Intel XE#651]) -> [SKIP][258] ([Intel XE#2136]) +55 other tests skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2-set2: [SKIP][259] ([Intel XE#653]) -> [SKIP][260] ([Intel XE#2136] / [Intel XE#2351]) +29 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][261] ([Intel XE#1158]) -> [SKIP][262] ([Intel XE#2136]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][263] ([Intel XE#653]) -> [SKIP][264] ([Intel XE#2136]) +60 other tests skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-bmg: [SKIP][265] ([Intel XE#2313]) -> [SKIP][266] ([Intel XE#2136] / [Intel XE#2231]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-rgb565-draw-render.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][267] ([Intel XE#605]) -> [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_getfb@getfb-reject-ccs.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_histogram@algo-color: - shard-dg2-set2: [SKIP][269] ([Intel XE#3897]) -> [SKIP][270] ([Intel XE#2423] / [i915#2575]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_histogram@algo-color.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_histogram@algo-color.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][271] ([Intel XE#346]) -> [SKIP][272] ([Intel XE#2136]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_joiner@basic-big-joiner.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][273] ([Intel XE#2927]) -> [SKIP][274] ([Intel XE#2136]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_joiner@basic-ultra-joiner.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: [SKIP][275] ([Intel XE#2925]) -> [SKIP][276] ([Intel XE#2136]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][277] ([Intel XE#361]) -> [SKIP][278] ([Intel XE#2423] / [i915#2575]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][279] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][280] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [279]: 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 [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][281] ([Intel XE#2938]) -> [SKIP][282] ([Intel XE#2136]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_pm_backlight@brightness-with-dpms.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][283] ([Intel XE#870]) -> [SKIP][284] ([Intel XE#2136]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_backlight@fade-with-suspend.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: [SKIP][285] ([Intel XE#1129]) -> [SKIP][286] ([Intel XE#2136]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_dc@dc5-psr.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@deep-pkgc: - shard-dg2-set2: [SKIP][287] ([Intel XE#908]) -> [SKIP][288] ([Intel XE#2136]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_dc@deep-pkgc.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_pm_dc@deep-pkgc.html * igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][289] ([Intel XE#1489]) -> [SKIP][290] ([Intel XE#2136]) +22 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2-set2: [SKIP][291] ([Intel XE#1122]) -> [SKIP][292] ([Intel XE#2136]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr2_su@page_flip-p010.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][293] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][294] ([Intel XE#2136]) +28 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr@fbc-psr2-sprite-plane-move.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_psr@fbc-psr2-sprite-plane-move.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][295] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][296] ([Intel XE#2136] / [Intel XE#2351]) +13 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr@psr-dpms.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_psr@psr-dpms.html * igt at kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][297] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][298] ([Intel XE#2351]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr@psr-sprite-plane-onoff.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: [SKIP][299] ([Intel XE#2939]) -> [SKIP][300] ([Intel XE#2136] / [Intel XE#2351]) [299]: 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 [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][301] ([Intel XE#2939]) -> [SKIP][302] ([Intel XE#2136]) [301]: 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 [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@bad-pixel-format: - shard-dg2-set2: [SKIP][303] ([Intel XE#3414]) -> [SKIP][304] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_rotation_crc@bad-pixel-format.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][305] ([Intel XE#1127]) -> [SKIP][306] ([Intel XE#2423] / [i915#2575]) +1 other test skip [305]: 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 [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-dg2-set2: [SKIP][307] ([Intel XE#455]) -> [SKIP][308] ([Intel XE#2423] / [i915#2575]) +21 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_scaling_modes@scaling-mode-full-aspect.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][309] ([Intel XE#362]) -> [SKIP][310] ([Intel XE#2423] / [i915#2575]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@lobf: - shard-dg2-set2: [SKIP][311] ([Intel XE#2168]) -> [SKIP][312] ([Intel XE#2423] / [i915#2575]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_vrr@lobf.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: [SKIP][313] ([Intel XE#756]) -> [SKIP][314] ([Intel XE#2423] / [i915#2575]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_writeback@writeback-fb-id-xrgb2101010.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][315] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][316] ([Intel XE#1130]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_compute_preempt@compute-preempt-many.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: [SKIP][317] ([Intel XE#1123]) -> [SKIP][318] ([Intel XE#1130]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_copy_basic@mem-copy-linear-0x369.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_copy_basic@mem-copy-linear-0x369.html * igt at xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][319] ([Intel XE#1126]) -> [SKIP][320] ([Intel XE#1130]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0xfffe.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0xfffe.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-dg2-set2: [FAIL][321] ([Intel XE#3869]) -> [SKIP][322] ([Intel XE#1130]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_drm_fdinfo@utilization-others-full-load.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][323] ([Intel XE#2905]) -> [SKIP][324] ([Intel XE#1130]) +31 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_eudebug@basic-close.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_eudebug@basic-close.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: [SKIP][325] ([Intel XE#3889]) -> [SKIP][326] ([Intel XE#1130]) +3 other tests skip [325]: 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 [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/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][327] ([Intel XE#1600]) -> [SKIP][328] ([Intel XE#1130]) [327]: 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 [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_evict@evict-beng-large-multi-vm-cm.html * igt at xe_evict@evict-threads-large: - shard-bmg: [TIMEOUT][329] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][330] ([Intel XE#1000]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_evict@evict-threads-large.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-bmg-3/igt at xe_evict@evict-threads-large.html * igt at xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: [SKIP][331] ([Intel XE#288]) -> [SKIP][332] ([Intel XE#1130]) +77 other tests skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_exec_fault_mode@once-invalid-userptr-fault.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_exec_fault_mode@once-invalid-userptr-fault.html * igt at xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-dg2-set2: [SKIP][333] ([Intel XE#2360]) -> [SKIP][334] ([Intel XE#1130]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt at xe_oa@mi-rpc: - shard-dg2-set2: [SKIP][335] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][336] ([Intel XE#1130]) +20 other tests skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_oa@mi-rpc.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_oa@mi-rpc.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][337] ([Intel XE#979]) -> [SKIP][338] ([Intel XE#1130]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_pat@pat-index-xelpg.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@read: - shard-dg2-set2: [FAIL][339] ([Intel XE#1173]) -> [SKIP][340] ([Intel XE#1061]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_peer2peer@read.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_peer2peer@read.html * igt at xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][341] ([Intel XE#2284]) -> [SKIP][342] ([Intel XE#1130]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_pm@d3cold-mocs.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: [SKIP][343] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][344] ([Intel XE#1130]) +2 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_pm@s2idle-d3cold-basic-exec.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][345] ([Intel XE#1607] / [Intel XE#1794]) -> [ABORT][346] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_query@multigpu-query-oa-units: - shard-dg2-set2: [SKIP][347] ([Intel XE#944]) -> [SKIP][348] ([Intel XE#1130]) +7 other tests skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_query@multigpu-query-oa-units.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_query@multigpu-query-oa-units.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][349] ([Intel XE#3342]) -> [SKIP][350] ([Intel XE#1130]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_sriov_flr@flr-vf1-clear.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/shard-dg2-466/igt at xe_sriov_flr@flr-vf1-clear.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [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#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#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#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#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#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#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#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#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#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#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#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#2958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2958 [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#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [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#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#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#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#3663]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3663 [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#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#3897]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3897 [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#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [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#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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [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_12390 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2437-3241e60971d2944662d23a791a01a7c5cdc4230f IGTPW_12390: 3d76579e0610ecd7ce7d37ccc3f5118deac9d2c6 @ 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-2437-3241e60971d2944662d23a791a01a7c5cdc4230f: 3241e60971d2944662d23a791a01a7c5cdc4230f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12390/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 6 12:41:41 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 12:41:41 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Remove_redundant_hotplug_de?= =?utf-8?q?tection_assertion?= In-Reply-To: <20250106094259.931356-1-ramanaidu.naladala@intel.com> References: <20250106094259.931356-1-ramanaidu.naladala@intel.com> Message-ID: <173616730114.205352.10106100881026963547@b555e5b46a47> == Series Details == Series: Remove redundant hotplug detection assertion URL : https://patchwork.freedesktop.org/series/143141/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12391_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-adlp-7 Known issues ------------ Here are the changes found in XEIGTPW_12391_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2252]) +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/bat-bmg-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-bmg-1: NOTRUN -> [SKIP][2] ([Intel XE#2252]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/bat-bmg-1/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - bat-lnl-1: NOTRUN -> [SKIP][3] ([Intel XE#373]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/bat-lnl-1/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-pvc-2: NOTRUN -> [SKIP][4] ([Intel XE#1024]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/bat-pvc-2/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-dg2-oem2: NOTRUN -> [SKIP][5] ([Intel XE#373]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/bat-dg2-oem2/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-atsm-2: NOTRUN -> [SKIP][6] ([Intel XE#1024]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/bat-atsm-2/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - bat-adlp-vf: NOTRUN -> [SKIP][7] ([Intel XE#2463]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/bat-adlp-vf/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - bat-lnl-2: NOTRUN -> [SKIP][8] ([Intel XE#373]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/bat-lnl-2/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2463]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2463 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12391 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2439-f6006dc6f9bab1458984ed52c07b4d4a6bd30e5f IGTPW_12391: b30c905319556f0f67860479cd2d1f5c6586bab5 @ 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-2439-f6006dc6f9bab1458984ed52c07b4d4a6bd30e5f: f6006dc6f9bab1458984ed52c07b4d4a6bd30e5f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 6 13:05:23 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 13:05:23 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/kms=5Fhistogram=3A_Ad?= =?utf-8?q?d_check_for_ghe_api_call?= In-Reply-To: <20250106095154.243459-1-mohammed.thasleem@intel.com> References: <20250106095154.243459-1-mohammed.thasleem@intel.com> Message-ID: <173616872329.205352.10131787629464517835@b555e5b46a47> == Series Details == Series: tests/kms_histogram: Add check for ghe api call URL : https://patchwork.freedesktop.org/series/143142/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12392_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-adlp-7 Known issues ------------ Here are the changes found in XEIGTPW_12392_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_12392/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_12392/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_12392/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_12392 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2439-f6006dc6f9bab1458984ed52c07b4d4a6bd30e5f IGTPW_12392: bde46610a2c68df5fd154cbefd26bf4a506e1a6e @ 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-2439-f6006dc6f9bab1458984ed52c07b4d4a6bd30e5f: f6006dc6f9bab1458984ed52c07b4d4a6bd30e5f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 6 14:58:43 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 14:58:43 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_series_starting_with_=5Bi?= =?utf-8?q?-g-t=2C1/8=5D_tests/intel/xe=5Fdrm=5Ffdinfo=3A_Do_not_end_cork_no?= =?utf-8?q?t_started_=28rev2=29?= In-Reply-To: <20250104071548.737612-1-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> Message-ID: <173617552348.205352.331153249197386291@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,1/8] tests/intel/xe_drm_fdinfo: Do not end cork not started (rev2) URL : https://patchwork.freedesktop.org/series/143108/ State : success == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12393 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/index.html Participating hosts (40 -> 37) ------------------------------ Missing (3): bat-atsm-1 fi-snb-2520m fi-bsw-nick Known issues ------------ Here are the changes found in IGTPW_12393 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at runner@aborted: - fi-kbl-x1275: NOTRUN -> [FAIL][1] ([i915#13462]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/fi-kbl-x1275/igt at runner@aborted.html - bat-adlp-11: NOTRUN -> [FAIL][2] ([i915#13462]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-adlp-11/igt at runner@aborted.html - fi-hsw-4770: NOTRUN -> [FAIL][3] ([i915#13462]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/fi-hsw-4770/igt at runner@aborted.html - fi-cfl-8109u: NOTRUN -> [FAIL][4] ([i915#13462]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/fi-cfl-8109u/igt at runner@aborted.html - fi-kbl-8809g: NOTRUN -> [FAIL][5] ([i915#13462]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/fi-kbl-8809g/igt at runner@aborted.html - fi-ivb-3770: NOTRUN -> [FAIL][6] ([i915#13462]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/fi-ivb-3770/igt at runner@aborted.html - bat-mtlp-8: NOTRUN -> [FAIL][7] ([i915#13462]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-mtlp-8/igt at runner@aborted.html - bat-dg1-6: NOTRUN -> [FAIL][8] ([i915#13462]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-dg1-6/igt at runner@aborted.html - fi-elk-e7500: NOTRUN -> [FAIL][9] ([i915#13462]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/fi-elk-e7500/igt at runner@aborted.html - bat-dg2-8: NOTRUN -> [FAIL][10] ([i915#13462]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-dg2-8/igt at runner@aborted.html - fi-kbl-guc: NOTRUN -> [FAIL][11] ([i915#13462]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/fi-kbl-guc/igt at runner@aborted.html - bat-adls-6: NOTRUN -> [FAIL][12] ([i915#13462]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-adls-6/igt at runner@aborted.html - fi-ilk-650: NOTRUN -> [FAIL][13] ([i915#13462]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/fi-ilk-650/igt at runner@aborted.html - bat-jsl-1: NOTRUN -> [FAIL][14] ([i915#13462]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-jsl-1/igt at runner@aborted.html - fi-tgl-1115g4: NOTRUN -> [FAIL][15] ([i915#13462]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/fi-tgl-1115g4/igt at runner@aborted.html - fi-blb-e6850: NOTRUN -> [FAIL][16] ([i915#13462]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/fi-blb-e6850/igt at runner@aborted.html - bat-mtlp-6: NOTRUN -> [FAIL][17] ([i915#13462]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-mtlp-6/igt at runner@aborted.html - bat-arlh-3: NOTRUN -> [FAIL][18] ([i915#13462]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-arlh-3/igt at runner@aborted.html - fi-pnv-d510: NOTRUN -> [FAIL][19] ([i915#13462]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/fi-pnv-d510/igt at runner@aborted.html - bat-dg1-7: NOTRUN -> [FAIL][20] ([i915#13462]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-dg1-7/igt at runner@aborted.html - bat-adlp-9: NOTRUN -> [FAIL][21] ([i915#13462]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-adlp-9/igt at runner@aborted.html - bat-twl-2: NOTRUN -> [FAIL][22] ([i915#13462]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-twl-2/igt at runner@aborted.html - bat-dg2-11: NOTRUN -> [FAIL][23] ([i915#13462]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-dg2-11/igt at runner@aborted.html - bat-rpls-4: NOTRUN -> [FAIL][24] ([i915#13462]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-rpls-4/igt at runner@aborted.html - fi-kbl-7567u: NOTRUN -> [FAIL][25] ([i915#13462]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/fi-kbl-7567u/igt at runner@aborted.html - fi-cfl-8700k: NOTRUN -> [FAIL][26] ([i915#13462]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/fi-cfl-8700k/igt at runner@aborted.html - bat-dg2-14: NOTRUN -> [FAIL][27] ([i915#13462]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-dg2-14/igt at runner@aborted.html - bat-kbl-2: NOTRUN -> [FAIL][28] ([i915#13462]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-kbl-2/igt at runner@aborted.html - bat-arls-5: NOTRUN -> [FAIL][29] ([i915#13462]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-arls-5/igt at runner@aborted.html - bat-rplp-1: NOTRUN -> [FAIL][30] ([i915#13462]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-rplp-1/igt at runner@aborted.html - bat-arlh-2: NOTRUN -> [FAIL][31] ([i915#13462]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-arlh-2/igt at runner@aborted.html - fi-rkl-11600: NOTRUN -> [FAIL][32] ([i915#13462]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/fi-rkl-11600/igt at runner@aborted.html - fi-cfl-guc: NOTRUN -> [FAIL][33] ([i915#13462]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/fi-cfl-guc/igt at runner@aborted.html - bat-dg2-13: NOTRUN -> [FAIL][34] ([i915#13462]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-dg2-13/igt at runner@aborted.html - bat-jsl-3: NOTRUN -> [FAIL][35] ([i915#13462]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/bat-jsl-3/igt at runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#13462]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13462 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12393 * Linux: CI_DRM_15892 -> CI_DRM_15908 CI-20190529: 20190529 CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15908: f06efdfad9d0e9f5cb74404ac98e1a5b3b246567 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12393: 5ff4f2c7478a332586c48137da1a34f34ba5337d @ 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_12393/index.html From patchwork at emeril.freedesktop.org Mon Jan 6 15:05:44 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 15:05:44 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_series_starting_with_=5Bi-g?= =?utf-8?q?-t=2C1/8=5D_tests/intel/xe=5Fdrm=5Ffdinfo=3A_Do_not_end_cork_not_?= =?utf-8?q?started_=28rev2=29?= In-Reply-To: <20250104071548.737612-1-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> Message-ID: <173617594442.263390.7467012079639709067@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,1/8] tests/intel/xe_drm_fdinfo: Do not end cork not started (rev2) URL : https://patchwork.freedesktop.org/series/143108/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12393_BAT ==================================================== Summary ------- **WARNING** Minor unknown changes coming with XEIGTPW_12393_BAT need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12393_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_12393_BAT: ### IGT changes ### #### Warnings #### * igt at xe_gt_freq@freq_fixed_idle: - bat-pvc-2: [SKIP][1] ([Intel XE#1021]) -> [SKIP][2] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-pvc-2/igt at xe_gt_freq@freq_fixed_idle.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/bat-pvc-2/igt at xe_gt_freq@freq_fixed_idle.html Known issues ------------ Here are the changes found in XEIGTPW_12393_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo: - bat-pvc-2: [PASS][3] -> [SKIP][4] ([Intel XE#1192]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-pvc-2/igt at xe_live_ktest@xe_bo.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/bat-pvc-2/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_dma_buf: - bat-bmg-2: [PASS][5] -> [SKIP][6] ([Intel XE#1192]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-bmg-2/igt at xe_live_ktest@xe_dma_buf.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/bat-bmg-2/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_live_ktest@xe_migrate: - bat-bmg-1: [PASS][7] -> [SKIP][8] ([Intel XE#1192]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-bmg-1/igt at xe_live_ktest@xe_migrate.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/bat-bmg-1/igt at xe_live_ktest@xe_migrate.html - bat-dg2-oem2: [PASS][9] -> [SKIP][10] ([Intel XE#1192]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-dg2-oem2/igt at xe_live_ktest@xe_migrate.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/bat-dg2-oem2/igt at xe_live_ktest@xe_migrate.html - bat-atsm-2: [PASS][11] -> [SKIP][12] ([Intel XE#1192]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-atsm-2/igt at xe_live_ktest@xe_migrate.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/bat-atsm-2/igt at xe_live_ktest@xe_migrate.html - bat-adlp-vf: [PASS][13] -> [SKIP][14] ([Intel XE#1192]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][15] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][16] ([Intel XE#1192]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [Intel XE#1021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1021 [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_12393 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2440-f06efdfad9d0e9f5cb74404ac98e1a5b3b246567 IGTPW_12393: 5ff4f2c7478a332586c48137da1a34f34ba5337d @ 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-2440-f06efdfad9d0e9f5cb74404ac98e1a5b3b246567: f06efdfad9d0e9f5cb74404ac98e1a5b3b246567 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From jonathan.cavitt at intel.com Mon Jan 6 15:08:54 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Mon, 6 Jan 2025 15:08:54 +0000 Subject: [PATCH i-g-t 1/8] tests/intel/xe_drm_fdinfo: Do not end cork not started In-Reply-To: <20250104071548.737612-1-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> Message-ID: -----Original Message----- From: De Marchi, Lucas Sent: Friday, January 3, 2025 11:16 PM To: igt-dev at lists.freedesktop.org Cc: De Marchi, Lucas ; Cavitt, Jonathan ; Gurram, Pravalika Subject: [PATCH i-g-t 1/8] tests/intel/xe_drm_fdinfo: Do not end cork not started > > 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]); > + This also needs to be applied to utilization_all_full_load. Also: https://patchwork.freedesktop.org/series/143066/ -Jonathan Cavitt > read_engine_cycles(fd, pceu2); > > xe_for_each_engine_class(class) { > -- > 2.47.0 > > From tejas.upadhyay at intel.com Mon Jan 6 15:14:37 2025 From: tejas.upadhyay at intel.com (Tejas Upadhyay) Date: Mon, 6 Jan 2025 20:44:37 +0530 Subject: [PATCH V7 0/4] Add pci_membarrier test in xe_mmap Message-ID: <20250106151441.2598949-1-tejas.upadhyay@intel.com> Series adds, 1. Remove all local defines which are landed from upstream kernel include. Keeping include in igt_gt.h as its common header for all such defines. 2. New flag in mmap_offset ioctl to provide query support for special offset. 3. Adds pci_membarrier subtests xe_mmap test Note: Similar drm-uapi change made here is under review in KMD as well V7: - Modify parallel test to update random number every test - Update cross client value check V6: - Modify parallel test to check only diff cross client value V5: - Add pci-membarrier-parallel subtest V4: - Check if pci memory barrier is supported Tejas Upadhyay (4): lib/i915_drm_local: Remove macros added via merged kernel include/drm-uapi-experimental: Move i915_drm_local.h to drm-uapi-experimental include/intel_drm_local.h: Add DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER tests/xe/mmap: add tests for pci mem barrier .../drm-uapi-experimental/intel_drm_local.h | 29 +++ lib/i915/gem_scheduler.c | 1 - lib/i915/i915_drm_local.h | 6 - lib/i915/intel_memory_region.h | 1 - lib/igt_gt.h | 2 +- tests/intel/xe_mmap.c | 171 ++++++++++++++++++ tools/i915-perf/i915_perf_recorder.c | 2 - 7 files changed, 201 insertions(+), 11 deletions(-) create mode 100644 include/drm-uapi-experimental/intel_drm_local.h -- 2.34.1 From tejas.upadhyay at intel.com Mon Jan 6 15:14:38 2025 From: tejas.upadhyay at intel.com (Tejas Upadhyay) Date: Mon, 6 Jan 2025 20:44:38 +0530 Subject: [PATCH V7 1/4] lib/i915_drm_local: Remove macros added via merged kernel In-Reply-To: <20250106151441.2598949-1-tejas.upadhyay@intel.com> References: <20250106151441.2598949-1-tejas.upadhyay@intel.com> Message-ID: <20250106151441.2598949-2-tejas.upadhyay@intel.com> The uapi on the kernel side is merged, I915_ENGINE_CLASS_COMPUTE, DRM_I915_PERF_PROP_OA_ENGINE_CLASS, DRM_I915_QUERY_GEOMETRY_SUBSLICES and DRM_I915_PERF_PROP_OA_ENGINE_INSTANCE is part of drm-next, remove this. Reviewed-by: Matthew Auld Signed-off-by: Tejas Upadhyay --- lib/i915/i915_drm_local.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/i915/i915_drm_local.h b/lib/i915/i915_drm_local.h index af0176500..dd646aedf 100644 --- a/lib/i915/i915_drm_local.h +++ b/lib/i915/i915_drm_local.h @@ -19,12 +19,6 @@ extern "C" { * or local_ prefix and without any #ifndef's. Attempt should be made to * clean these up when kernel uapi headers are sync'd. */ -#define I915_ENGINE_CLASS_COMPUTE 4 - -#define DRM_I915_QUERY_GEOMETRY_SUBSLICES 6 - -#define DRM_I915_PERF_PROP_OA_ENGINE_CLASS 9 -#define DRM_I915_PERF_PROP_OA_ENGINE_INSTANCE 10 #if defined(__cplusplus) } -- 2.34.1 From tejas.upadhyay at intel.com Mon Jan 6 15:14:39 2025 From: tejas.upadhyay at intel.com (Tejas Upadhyay) Date: Mon, 6 Jan 2025 20:44:39 +0530 Subject: [PATCH V7 2/4] include/drm-uapi-experimental: Move i915_drm_local.h to drm-uapi-experimental In-Reply-To: <20250106151441.2598949-1-tejas.upadhyay@intel.com> References: <20250106151441.2598949-1-tejas.upadhyay@intel.com> Message-ID: <20250106151441.2598949-3-tejas.upadhyay@intel.com> i915_drm_local.h is for temporary local addition of defines before KMD is merged upstream and defines replaced with it. We have similar local defines requirement for xe as well for some cases. So for common use move i915_drm_local.h to drm-uapi-experimental/ and rename it to intel_drm_local.h V4(MAuld) - Update copyright content V2(MAuld) - Remove include as it is empty now - Add details in commit message Reviewed-by: Matthew Auld Signed-off-by: Tejas Upadhyay --- .../drm-uapi-experimental/intel_drm_local.h | 27 +++++++++++++++++++ lib/i915/gem_scheduler.c | 1 - lib/i915/intel_memory_region.h | 1 - lib/igt_gt.h | 2 +- tools/i915-perf/i915_perf_recorder.c | 2 -- 5 files changed, 28 insertions(+), 5 deletions(-) create mode 100644 include/drm-uapi-experimental/intel_drm_local.h diff --git a/include/drm-uapi-experimental/intel_drm_local.h b/include/drm-uapi-experimental/intel_drm_local.h new file mode 100644 index 000000000..b48c9e219 --- /dev/null +++ b/include/drm-uapi-experimental/intel_drm_local.h @@ -0,0 +1,27 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright ? 2024 Intel Corporation + */ +#ifndef _INTEL_DRM_LOCAL_H_ +#define _INTEL_DRM_LOCAL_H_ + +#if defined(__cplusplus) +extern "C" { +#endif + +/* + * It is necessary on occasion to add uapi declarations to IGT before they + * appear in imported kernel uapi headers. This header is provided for this + * purpose. + + * Early uapi declarations should be added here exactly as they are + * expected to appear in the kernel uapi headers, i.e. without the LOCAL_ + * or local_ prefix and without any #ifndef's. Attempt should be made to + * clean these up when kernel uapi headers are sync'd. + */ + +#if defined(__cplusplus) +} +#endif + +#endif /* _INTEL_DRM_LOCAL_H_ */ diff --git a/lib/i915/gem_scheduler.c b/lib/i915/gem_scheduler.c index 0087df902..e80c775af 100644 --- a/lib/i915/gem_scheduler.c +++ b/lib/i915/gem_scheduler.c @@ -28,7 +28,6 @@ #include "igt_core.h" #include "ioctl_wrappers.h" -#include "i915/i915_drm_local.h" #include "i915/gem_scheduler.h" #include "i915/gem_submission.h" diff --git a/lib/i915/intel_memory_region.h b/lib/i915/intel_memory_region.h index 9e24bd8fb..4641b18c1 100644 --- a/lib/i915/intel_memory_region.h +++ b/lib/i915/intel_memory_region.h @@ -22,7 +22,6 @@ */ #include "i915_drm.h" #include "igt_collection.h" -#include "i915_drm_local.h" #ifndef INTEL_MEMORY_REGION_H #define INTEL_MEMORY_REGION_H diff --git a/lib/igt_gt.h b/lib/igt_gt.h index d3213123d..82ed22be7 100644 --- a/lib/igt_gt.h +++ b/lib/igt_gt.h @@ -24,11 +24,11 @@ #ifndef IGT_GT_H #define IGT_GT_H +#include "drm-uapi-experimental/intel_drm_local.h" #include "igt_debugfs.h" #include "igt_dummyload.h" #include "igt_core.h" -#include "i915/i915_drm_local.h" #include "i915_drm.h" struct pci_device; diff --git a/tools/i915-perf/i915_perf_recorder.c b/tools/i915-perf/i915_perf_recorder.c index ca4354832..3f3692dc8 100644 --- a/tools/i915-perf/i915_perf_recorder.c +++ b/tools/i915-perf/i915_perf_recorder.c @@ -44,8 +44,6 @@ #include -#include "i915/i915_drm_local.h" - #include "igt_core.h" #include "intel_chipset.h" #include "i915/perf.h" -- 2.34.1 From tejas.upadhyay at intel.com Mon Jan 6 15:14:40 2025 From: tejas.upadhyay at intel.com (Tejas Upadhyay) Date: Mon, 6 Jan 2025 20:44:40 +0530 Subject: [PATCH V7 3/4] include/intel_drm_local.h: Add DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER In-Reply-To: <20250106151441.2598949-1-tejas.upadhyay@intel.com> References: <20250106151441.2598949-1-tejas.upadhyay@intel.com> Message-ID: <20250106151441.2598949-4-tejas.upadhyay@intel.com> For now dump into intel_drm_local.h. Once the uapi on the kernel side is merged, and is part of drm-next, we can sync the kernel headers and remove this. Reviewed-by: Matthew Auld Signed-off-by: Tejas Upadhyay --- include/drm-uapi-experimental/intel_drm_local.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/drm-uapi-experimental/intel_drm_local.h b/include/drm-uapi-experimental/intel_drm_local.h index b48c9e219..40e8dcc43 100644 --- a/include/drm-uapi-experimental/intel_drm_local.h +++ b/include/drm-uapi-experimental/intel_drm_local.h @@ -20,6 +20,8 @@ extern "C" { * clean these up when kernel uapi headers are sync'd. */ +#define DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER (1 << 0) + #if defined(__cplusplus) } #endif -- 2.34.1 From tejas.upadhyay at intel.com Mon Jan 6 15:14:41 2025 From: tejas.upadhyay at intel.com (Tejas Upadhyay) Date: Mon, 6 Jan 2025 20:44:41 +0530 Subject: [PATCH V7 4/4] tests/xe/mmap: add tests for pci mem barrier In-Reply-To: <20250106151441.2598949-1-tejas.upadhyay@intel.com> References: <20250106151441.2598949-1-tejas.upadhyay@intel.com> Message-ID: <20250106151441.2598949-5-tejas.upadhyay@intel.com> We want to make sure that mmap do direct mapping of physical page at doorbell space and whole page is accessible in order to use pci memory barrier effect effectively. Following subtests are added, ./build/tests/xe_mmap --r pci-membarrier ./build/tests/xe_mmap --r pci-membarrier-parallel ./build/tests/xe_mmap --r pci-membarrier-bad-pagesize ./build/tests/xe_mmap --r pci-membarrier-bad-object V7(MAuld): In parallel test : - check values with 1 client write and other read in loop - Modify seed and update random number at every test V6(MAuld): - checking differnet cross client value is enough in parallel test V5: - Add pci-membarrier-parallel test V3(MAuld): - Check if pci memory barrier is supported V2(MAuld) - use do_ioctl and replace igt_subtest_f with igt_subtest - Remove unused define Signed-off-by: Tejas Upadhyay --- tests/intel/xe_mmap.c | 171 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 171 insertions(+) diff --git a/tests/intel/xe_mmap.c b/tests/intel/xe_mmap.c index d818cc2f8..9de7e03c6 100644 --- a/tests/intel/xe_mmap.c +++ b/tests/intel/xe_mmap.c @@ -64,6 +64,117 @@ test_mmap(int fd, uint32_t placement, uint32_t flags) gem_close(fd, bo); } +#define PAGE_SIZE 4096 + +/** + * SUBTEST: pci-membarrier + * Description: create pci memory barrier with write on defined mmap offset. + * Test category: functionality test + * + */ +static void test_pci_membarrier(int xe) +{ + uint64_t flags = MAP_SHARED; + unsigned int prot = PROT_WRITE; + uint32_t *ptr; + uint64_t size = PAGE_SIZE; + struct timespec tv; + struct drm_xe_gem_mmap_offset mmo = { + .handle = 0, + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, + }; + + do_ioctl(xe, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo); + ptr = mmap(NULL, size, prot, flags, xe, mmo.offset); + igt_assert(ptr != MAP_FAILED); + + /* Check whole page for any errors, also check as + * we should not read written values back + */ + for (int i = 0; i < size / sizeof(*ptr); i++) { + /* It is expected unconfigured doorbell space + * will return read value 0xdeadbeef + */ + igt_assert_eq_u32(READ_ONCE(ptr[i]), 0xdeadbeef); + + igt_gettime(&tv); + ptr[i] = i; + if (READ_ONCE(ptr[i]) == i) { + while (READ_ONCE(ptr[i]) == i) + ; + igt_info("fd:%d value retained for %"PRId64"ns pos:%d\n", + xe, igt_nsec_elapsed(&tv), i); + } + igt_assert_neq(READ_ONCE(ptr[i]), i); + } + + munmap(ptr, size); +} + +/** + * SUBTEST: pci-membarrier-parallel + * Description: create parallel pci memory barrier with write on defined mmap offset. + * Test category: functionality test + * + */ +static void test_pci_membarrier_parallel(int xe, int child, unsigned int i) +{ + uint64_t flags = MAP_SHARED; + unsigned int prot = PROT_WRITE; + uint32_t *ptr; + uint64_t size = PAGE_SIZE; + struct drm_xe_gem_mmap_offset mmo = { + .handle = 0, + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, + }; + int value; + + do_ioctl(xe, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo); + ptr = mmap(NULL, size, prot, flags, xe, mmo.offset); + igt_assert(ptr != MAP_FAILED); + + /* It is expected unconfigured doorbell space + * will return read value 0xdeadbeef + */ + igt_assert_eq_u32(READ_ONCE(ptr[i]), 0xdeadbeef); + + igt_until_timeout(5) { + /* Check clients should not be able to see each other */ + if (child != -1) { + value = i + 1; + igt_assert_neq(READ_ONCE(ptr[i]), i); + } else { + value = i; + igt_assert_neq(READ_ONCE(ptr[i]), i + 1); + } + + WRITE_ONCE(ptr[i], value); + } + igt_assert_eq_u32(READ_ONCE(ptr[i]), 0xdeadbeef); + + munmap(ptr, size); +} + +/** + * SUBTEST: pci-membarrier-bad-pagesize + * Description: Test mmap offset with bad pagesize for pci membarrier. + * Test category: negative test + * + */ +static void test_bad_pagesize_for_pcimem(int fd) +{ + uint32_t *map; + uint64_t page_size = PAGE_SIZE * 2; + struct drm_xe_gem_mmap_offset mmo = { + .handle = 0, + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, + }; + + do_ioctl(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo); + map = mmap(NULL, page_size, PROT_WRITE, MAP_SHARED, fd, mmo.offset); + igt_assert(map == MAP_FAILED); +} + /** * SUBTEST: bad-flags * Description: Test mmap offset with bad flags. @@ -126,6 +237,25 @@ static void test_bad_object(int fd) do_ioctl_err(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo, ENOENT); } +/** + * SUBTEST: pci-membarrier-bad-object + * Description: Test mmap offset with bad object for pci mem barrier. + * Test category: negative test + * + */ +static void test_bad_object_for_pcimem(int fd) +{ + uint64_t size = xe_get_default_alignment(fd); + struct drm_xe_gem_mmap_offset mmo = { + .handle = xe_bo_create(fd, 0, size, + vram_if_possible(fd, 0), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM), + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, + }; + + do_ioctl_err(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo, EINVAL); +} + static jmp_buf jmp; __noreturn static void sigtrap(int sig) @@ -260,6 +390,16 @@ static void test_cpu_caching(int fd) assert_caching(fd, system_memory(fd), 0, DRM_XE_GEM_CPU_CACHING_WC + 1, true); } +static bool is_pci_membarrier_supported(int fd) +{ + struct drm_xe_gem_mmap_offset mmo = { + .handle = 0, + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, + }; + + return (igt_ioctl(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo) == 0); +} + igt_main { int fd; @@ -278,6 +418,32 @@ igt_main test_mmap(fd, vram_memory(fd, 0) | system_memory(fd), DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + igt_subtest("pci-membarrier") { + igt_require(is_pci_membarrier_supported(fd)); + test_pci_membarrier(fd); + } + + igt_subtest("pci-membarrier-parallel") { + int xe = drm_open_driver(DRIVER_XE); + unsigned int i; + uint32_t *ptr; + + igt_require(is_pci_membarrier_supported(fd)); + srand(time(0)); + i = rand() % (PAGE_SIZE / sizeof(*ptr)); + igt_fork(child, 1) + test_pci_membarrier_parallel(xe, child, i); + test_pci_membarrier_parallel(fd, -1, i); + igt_waitchildren(); + + close(xe); + } + + igt_subtest("pci-membarrier-bad-pagesize") { + igt_require(is_pci_membarrier_supported(fd)); + test_bad_pagesize_for_pcimem(fd); + } + igt_subtest("bad-flags") test_bad_flags(fd); @@ -287,6 +453,11 @@ igt_main igt_subtest("bad-object") test_bad_object(fd); + igt_subtest("pci-membarrier-bad-object") { + igt_require(is_pci_membarrier_supported(fd)); + test_bad_object_for_pcimem(fd); + } + igt_subtest("small-bar") { igt_require(xe_visible_vram_size(fd, 0)); igt_require(xe_visible_vram_size(fd, 0) < xe_vram_size(fd, 0)); -- 2.34.1 From patchwork at emeril.freedesktop.org Mon Jan 6 15:48:27 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 15:48:27 -0000 Subject: =?utf-8?q?=E2=9C=97_GitLab=2EPipeline=3A_warning_for_Add_pci=5Fmembarrier_te?= =?utf-8?q?st_in_xe=5Fmmap_=28rev8=29?= In-Reply-To: <20250106151441.2598949-1-tejas.upadhyay@intel.com> References: <20250106151441.2598949-1-tejas.upadhyay@intel.com> Message-ID: <173617850717.278991.10328751801491992642@b555e5b46a47> == Series Details == Series: Add pci_membarrier test in xe_mmap (rev8) URL : https://patchwork.freedesktop.org/series/141296/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1340320 for the overview. test:verify-blacklists has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/68923857): Removing build/ Removing lib/i915/perf-configs/__pycache__/ Removing lib/xe/oa-configs/__pycache__/ Removing scripts/__pycache__/ Skipping Git submodules setup section_end:1736178116:get_sources section_start:1736178116:download_artifacts Downloading artifacts Downloading artifacts for build:tests-fedora (68923843)... Downloading artifacts from coordinator... ok host=gitlab.freedesktop.org id=68923843 responseStatus=200 OK token=glcbt-64 section_end:1736178124:download_artifacts section_start:1736178124: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-5b3a3f40864395417cbd202512fd61577b461e47 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora at sha256:17d64607d998df2bf29a56b88922d3a598e6f1daa3b51ece2a892c2f293daf83 ... section_end:1736178127:step_script section_start:1736178127:cleanup_file_variables Cleaning up project directory and file based variables section_end:1736178128: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/1340320 From patchwork at emeril.freedesktop.org Mon Jan 6 16:16:18 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 16:16:18 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Add_pci=5Fmembarrier_test?= =?utf-8?q?_in_xe=5Fmmap_=28rev8=29?= In-Reply-To: <20250106151441.2598949-1-tejas.upadhyay@intel.com> References: <20250106151441.2598949-1-tejas.upadhyay@intel.com> Message-ID: <173618017839.278991.17827344886416117438@b555e5b46a47> == Series Details == Series: Add pci_membarrier test in xe_mmap (rev8) URL : https://patchwork.freedesktop.org/series/141296/ State : success == Summary == CI Bug Log - changes from IGT_8174 -> IGTPW_12394 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/index.html Participating hosts (40 -> 37) ------------------------------ Missing (3): bat-atsm-1 fi-snb-2520m fi-bsw-nick Known issues ------------ Here are the changes found in IGTPW_12394 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at runner@aborted: - fi-kbl-x1275: NOTRUN -> [FAIL][1] ([i915#13462]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/fi-kbl-x1275/igt at runner@aborted.html - bat-adlp-11: NOTRUN -> [FAIL][2] ([i915#13462]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-adlp-11/igt at runner@aborted.html - fi-hsw-4770: NOTRUN -> [FAIL][3] ([i915#13462]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/fi-hsw-4770/igt at runner@aborted.html - fi-cfl-8109u: NOTRUN -> [FAIL][4] ([i915#13462]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/fi-cfl-8109u/igt at runner@aborted.html - fi-kbl-8809g: NOTRUN -> [FAIL][5] ([i915#13462]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/fi-kbl-8809g/igt at runner@aborted.html - fi-ivb-3770: NOTRUN -> [FAIL][6] ([i915#13462]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/fi-ivb-3770/igt at runner@aborted.html - bat-mtlp-8: NOTRUN -> [FAIL][7] ([i915#13462]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-mtlp-8/igt at runner@aborted.html - bat-dg1-6: NOTRUN -> [FAIL][8] ([i915#13462]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-dg1-6/igt at runner@aborted.html - fi-elk-e7500: NOTRUN -> [FAIL][9] ([i915#13462]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/fi-elk-e7500/igt at runner@aborted.html - bat-dg2-8: NOTRUN -> [FAIL][10] ([i915#13462]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-dg2-8/igt at runner@aborted.html - fi-kbl-guc: NOTRUN -> [FAIL][11] ([i915#13462]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/fi-kbl-guc/igt at runner@aborted.html - bat-adls-6: NOTRUN -> [FAIL][12] ([i915#13462]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-adls-6/igt at runner@aborted.html - fi-ilk-650: NOTRUN -> [FAIL][13] ([i915#13462]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/fi-ilk-650/igt at runner@aborted.html - bat-jsl-1: NOTRUN -> [FAIL][14] ([i915#13462]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-jsl-1/igt at runner@aborted.html - fi-tgl-1115g4: NOTRUN -> [FAIL][15] ([i915#13462]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/fi-tgl-1115g4/igt at runner@aborted.html - fi-blb-e6850: NOTRUN -> [FAIL][16] ([i915#13462]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/fi-blb-e6850/igt at runner@aborted.html - bat-mtlp-6: NOTRUN -> [FAIL][17] ([i915#13462]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-mtlp-6/igt at runner@aborted.html - bat-arlh-3: NOTRUN -> [FAIL][18] ([i915#13462]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-arlh-3/igt at runner@aborted.html - fi-pnv-d510: NOTRUN -> [FAIL][19] ([i915#13350]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/fi-pnv-d510/igt at runner@aborted.html - bat-dg1-7: NOTRUN -> [FAIL][20] ([i915#13462]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-dg1-7/igt at runner@aborted.html - bat-adlp-9: NOTRUN -> [FAIL][21] ([i915#13462]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-adlp-9/igt at runner@aborted.html - bat-twl-2: NOTRUN -> [FAIL][22] ([i915#13462]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-twl-2/igt at runner@aborted.html - bat-dg2-11: NOTRUN -> [FAIL][23] ([i915#13462]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-dg2-11/igt at runner@aborted.html - bat-rpls-4: NOTRUN -> [FAIL][24] ([i915#13462]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-rpls-4/igt at runner@aborted.html - fi-kbl-7567u: NOTRUN -> [FAIL][25] ([i915#13462]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/fi-kbl-7567u/igt at runner@aborted.html - fi-cfl-8700k: NOTRUN -> [FAIL][26] ([i915#13462]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/fi-cfl-8700k/igt at runner@aborted.html - bat-dg2-14: NOTRUN -> [FAIL][27] ([i915#13462]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-dg2-14/igt at runner@aborted.html - bat-kbl-2: NOTRUN -> [FAIL][28] ([i915#13462]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-kbl-2/igt at runner@aborted.html - bat-arls-5: NOTRUN -> [FAIL][29] ([i915#13462]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-arls-5/igt at runner@aborted.html - bat-rplp-1: NOTRUN -> [FAIL][30] ([i915#13462]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-rplp-1/igt at runner@aborted.html - bat-arlh-2: NOTRUN -> [FAIL][31] ([i915#13462]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-arlh-2/igt at runner@aborted.html - fi-rkl-11600: NOTRUN -> [FAIL][32] ([i915#13462]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/fi-rkl-11600/igt at runner@aborted.html - fi-cfl-guc: NOTRUN -> [FAIL][33] ([i915#13462]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/fi-cfl-guc/igt at runner@aborted.html - bat-dg2-13: NOTRUN -> [FAIL][34] ([i915#13462]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-dg2-13/igt at runner@aborted.html - bat-jsl-3: NOTRUN -> [FAIL][35] ([i915#13462]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/bat-jsl-3/igt at runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350 [i915#13462]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13462 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12394 * Linux: CI_DRM_15892 -> CI_DRM_15908 CI-20190529: 20190529 CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15908: f06efdfad9d0e9f5cb74404ac98e1a5b3b246567 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12394: 5b3a3f40864395417cbd202512fd61577b461e47 @ 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_12394/index.html From patchwork at emeril.freedesktop.org Mon Jan 6 16:23:05 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 16:23:05 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Add_pci=5Fmembarrier_test_i?= =?utf-8?q?n_xe=5Fmmap_=28rev8=29?= In-Reply-To: <20250106151441.2598949-1-tejas.upadhyay@intel.com> References: <20250106151441.2598949-1-tejas.upadhyay@intel.com> Message-ID: <173618058540.278991.7030163311815978963@b555e5b46a47> == Series Details == Series: Add pci_membarrier test in xe_mmap (rev8) URL : https://patchwork.freedesktop.org/series/141296/ State : success == Summary == CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12394_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-adlp-7 Known issues ------------ Here are the changes found in XEIGTPW_12394_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo: - bat-pvc-2: [PASS][1] -> [SKIP][2] ([Intel XE#1192]) +2 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-pvc-2/igt at xe_live_ktest@xe_bo.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/bat-pvc-2/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_dma_buf: - bat-bmg-2: [PASS][3] -> [SKIP][4] ([Intel XE#1192]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-bmg-2/igt at xe_live_ktest@xe_dma_buf.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/bat-bmg-2/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_live_ktest@xe_migrate: - bat-bmg-1: [PASS][5] -> [SKIP][6] ([Intel XE#1192]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-bmg-1/igt at xe_live_ktest@xe_migrate.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/bat-bmg-1/igt at xe_live_ktest@xe_migrate.html - bat-dg2-oem2: [PASS][7] -> [SKIP][8] ([Intel XE#1192]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-dg2-oem2/igt at xe_live_ktest@xe_migrate.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/bat-dg2-oem2/igt at xe_live_ktest@xe_migrate.html - bat-atsm-2: [PASS][9] -> [SKIP][10] ([Intel XE#1192]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-atsm-2/igt at xe_live_ktest@xe_migrate.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/bat-atsm-2/igt at xe_live_ktest@xe_migrate.html - bat-adlp-vf: [PASS][11] -> [SKIP][12] ([Intel XE#1192]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][13] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][14] ([Intel XE#1192]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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_12394 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2440-f06efdfad9d0e9f5cb74404ac98e1a5b3b246567 IGTPW_12394: 5b3a3f40864395417cbd202512fd61577b461e47 @ 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-2440-f06efdfad9d0e9f5cb74404ac98e1a5b3b246567: f06efdfad9d0e9f5cb74404ac98e1a5b3b246567 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 6 16:28:21 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 16:28:21 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EFull=3A_success_for_Remove_redundant_hotplug?= =?utf-8?q?_detection_assertion?= In-Reply-To: <20250106094259.931356-1-ramanaidu.naladala@intel.com> References: <20250106094259.931356-1-ramanaidu.naladala@intel.com> Message-ID: <173618090110.278991.6034238205156540620@b555e5b46a47> == Series Details == Series: Remove redundant hotplug detection assertion URL : https://patchwork.freedesktop.org/series/143141/ State : success == Summary == CI Bug Log - changes from CI_DRM_15908_full -> IGTPW_12391_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/index.html Participating hosts (12 -> 10) ------------------------------ Missing (2): pig-kbl-iris shard-glk-0 Known issues ------------ Here are the changes found in IGTPW_12391_full that come from known issues: ### IGT changes ### #### Possible fixes #### * igt at i915_module_load@load: - shard-glk: ([PASS][1], [PASS][2], [DMESG-WARN][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25]) ([i915#118]) -> ([PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk5/igt at i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk6/igt at i915_module_load@load.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk5/igt at i915_module_load@load.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk2/igt at i915_module_load@load.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk1/igt at i915_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk3/igt at i915_module_load@load.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk4/igt at i915_module_load@load.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk1/igt at i915_module_load@load.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk3/igt at i915_module_load@load.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk5/igt at i915_module_load@load.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk3/igt at i915_module_load@load.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk2/igt at i915_module_load@load.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk1/igt at i915_module_load@load.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk2/igt at i915_module_load@load.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk1/igt at i915_module_load@load.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk7/igt at i915_module_load@load.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk8/igt at i915_module_load@load.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk7/igt at i915_module_load@load.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk6/igt at i915_module_load@load.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk9/igt at i915_module_load@load.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk7/igt at i915_module_load@load.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk9/igt at i915_module_load@load.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk6/igt at i915_module_load@load.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk7/igt at i915_module_load@load.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk9/igt at i915_module_load@load.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk6/igt at i915_module_load@load.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk7/igt at i915_module_load@load.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk5/igt at i915_module_load@load.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk1/igt at i915_module_load@load.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk2/igt at i915_module_load@load.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk4/igt at i915_module_load@load.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk1/igt at i915_module_load@load.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk7/igt at i915_module_load@load.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk2/igt at i915_module_load@load.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk1/igt at i915_module_load@load.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk7/igt at i915_module_load@load.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk8/igt at i915_module_load@load.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk6/igt at i915_module_load@load.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk5/igt at i915_module_load@load.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk8/igt at i915_module_load@load.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk4/igt at i915_module_load@load.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk3/igt at i915_module_load@load.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk8/igt at i915_module_load@load.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk9/igt at i915_module_load@load.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk6/igt at i915_module_load@load.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk3/igt at i915_module_load@load.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk5/igt at i915_module_load@load.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk9/igt at i915_module_load@load.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk3/igt at i915_module_load@load.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/shard-glk9/igt at i915_module_load@load.html [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12391 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_15908: f06efdfad9d0e9f5cb74404ac98e1a5b3b246567 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12391: b30c905319556f0f67860479cd2d1f5c6586bab5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12391/index.html From riana.tauro at intel.com Mon Jan 6 16:38:06 2025 From: riana.tauro at intel.com (Riana Tauro) Date: Mon, 6 Jan 2025 22:08:06 +0530 Subject: [PATCH i-g-t] Add single engine busyness stats in GPUTOP In-Reply-To: <20250103065304.45781-1-soham.purkait@intel.com> References: <20250103065304.45781-1-soham.purkait@intel.com> Message-ID: <498db3f0-dc81-4eb9-ba5a-5d57e0b2097d@intel.com> Hi Soham On 1/3/2025 12:23 PM, Soham Purkait wrote: > Add single engine busyness support in GPUTOP. This will use the PMU interface to display the busyness of each engine instances. The approach has changed in rev3 https://patchwork.freedesktop.org/series/143138/ Please check if it works with the latest version. > > 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" Alphabetical > + > +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; > +// }; Please remove comment if not required Also we don't use //. Comments should be enclosed in /* */ > + > +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; > + > + extra lines > + 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) indentation. should match open paranthesis Same for all functions > +{ > + 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) indentation > +{ > + > + 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; > + > + > + Extra lines > + 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"; > + } > +} why caps? > + > + > +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; > + Follow https://www.kernel.org/doc/html/v4.10/process/coding-style.html#placing-braces-and-spaces > + 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); space after comma > + > + 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) Remove comment and extra space > + 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); > + > + Extra line > 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; Remove all comments, extra lines and indentation across file. Thanks Riana Tauro > -} > +} > \ 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, From patchwork at emeril.freedesktop.org Mon Jan 6 16:47:15 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 16:47:15 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EFull=3A_success_for_tests/kms=5Fhistogram=3A?= =?utf-8?q?_Add_check_for_ghe_api_call?= In-Reply-To: <20250106095154.243459-1-mohammed.thasleem@intel.com> References: <20250106095154.243459-1-mohammed.thasleem@intel.com> Message-ID: <173618203560.263390.18383042244266910160@b555e5b46a47> == Series Details == Series: tests/kms_histogram: Add check for ghe api call URL : https://patchwork.freedesktop.org/series/143142/ State : success == Summary == CI Bug Log - changes from CI_DRM_15908_full -> IGTPW_12392_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/index.html Participating hosts (12 -> 10) ------------------------------ Missing (2): pig-kbl-iris shard-glk-0 Known issues ------------ Here are the changes found in IGTPW_12392_full that come from known issues: ### IGT changes ### #### Possible fixes #### * igt at i915_module_load@load: - shard-glk: ([PASS][1], [PASS][2], [DMESG-WARN][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25]) ([i915#118]) -> ([PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk5/igt at i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk6/igt at i915_module_load@load.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk5/igt at i915_module_load@load.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk2/igt at i915_module_load@load.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk1/igt at i915_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk3/igt at i915_module_load@load.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk4/igt at i915_module_load@load.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk1/igt at i915_module_load@load.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk3/igt at i915_module_load@load.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk5/igt at i915_module_load@load.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk3/igt at i915_module_load@load.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk2/igt at i915_module_load@load.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk1/igt at i915_module_load@load.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk2/igt at i915_module_load@load.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk1/igt at i915_module_load@load.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk7/igt at i915_module_load@load.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk8/igt at i915_module_load@load.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk7/igt at i915_module_load@load.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk6/igt at i915_module_load@load.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk9/igt at i915_module_load@load.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk7/igt at i915_module_load@load.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk9/igt at i915_module_load@load.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk6/igt at i915_module_load@load.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk7/igt at i915_module_load@load.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk9/igt at i915_module_load@load.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk4/igt at i915_module_load@load.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk6/igt at i915_module_load@load.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk9/igt at i915_module_load@load.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk3/igt at i915_module_load@load.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk5/igt at i915_module_load@load.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk3/igt at i915_module_load@load.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk7/igt at i915_module_load@load.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk2/igt at i915_module_load@load.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk9/igt at i915_module_load@load.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk1/igt at i915_module_load@load.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk6/igt at i915_module_load@load.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk3/igt at i915_module_load@load.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk8/igt at i915_module_load@load.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk2/igt at i915_module_load@load.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk8/igt at i915_module_load@load.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk1/igt at i915_module_load@load.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk7/igt at i915_module_load@load.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk4/igt at i915_module_load@load.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk6/igt at i915_module_load@load.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk9/igt at i915_module_load@load.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk5/igt at i915_module_load@load.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk2/igt at i915_module_load@load.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk1/igt at i915_module_load@load.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk5/igt at i915_module_load@load.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/shard-glk8/igt at i915_module_load@load.html [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12392 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_15908: f06efdfad9d0e9f5cb74404ac98e1a5b3b246567 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12392: bde46610a2c68df5fd154cbefd26bf4a506e1a6e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12392/index.html From patchwork at emeril.freedesktop.org Mon Jan 6 17:03:22 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 17:03:22 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EFull=3A_success_for_series_starting_with_=5B?= =?utf-8?q?i-g-t=2C1/8=5D_tests/intel/xe=5Fdrm=5Ffdinfo=3A_Do_not_end_cork_n?= =?utf-8?q?ot_started_=28rev2=29?= In-Reply-To: <20250104071548.737612-1-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> Message-ID: <173618300295.278991.17936082051409714872@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,1/8] tests/intel/xe_drm_fdinfo: Do not end cork not started (rev2) URL : https://patchwork.freedesktop.org/series/143108/ State : success == Summary == CI Bug Log - changes from CI_DRM_15908_full -> IGTPW_12393_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/index.html Participating hosts (12 -> 10) ------------------------------ Missing (2): pig-kbl-iris shard-glk-0 Known issues ------------ Here are the changes found in IGTPW_12393_full that come from known issues: ### IGT changes ### #### Possible fixes #### * igt at i915_module_load@load: - shard-glk: ([PASS][1], [PASS][2], [DMESG-WARN][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25]) ([i915#118]) -> ([PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk5/igt at i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk6/igt at i915_module_load@load.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk5/igt at i915_module_load@load.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk2/igt at i915_module_load@load.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk1/igt at i915_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk3/igt at i915_module_load@load.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk4/igt at i915_module_load@load.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk1/igt at i915_module_load@load.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk3/igt at i915_module_load@load.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk5/igt at i915_module_load@load.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk3/igt at i915_module_load@load.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk2/igt at i915_module_load@load.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk1/igt at i915_module_load@load.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk2/igt at i915_module_load@load.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk1/igt at i915_module_load@load.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk7/igt at i915_module_load@load.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk8/igt at i915_module_load@load.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk7/igt at i915_module_load@load.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk6/igt at i915_module_load@load.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk9/igt at i915_module_load@load.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk7/igt at i915_module_load@load.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk9/igt at i915_module_load@load.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk6/igt at i915_module_load@load.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk7/igt at i915_module_load@load.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk9/igt at i915_module_load@load.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk4/igt at i915_module_load@load.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk7/igt at i915_module_load@load.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk2/igt at i915_module_load@load.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk7/igt at i915_module_load@load.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk4/igt at i915_module_load@load.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk6/igt at i915_module_load@load.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk1/igt at i915_module_load@load.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk7/igt at i915_module_load@load.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk6/igt at i915_module_load@load.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk2/igt at i915_module_load@load.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk6/igt at i915_module_load@load.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk3/igt at i915_module_load@load.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk1/igt at i915_module_load@load.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk9/igt at i915_module_load@load.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk8/igt at i915_module_load@load.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk5/igt at i915_module_load@load.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk8/igt at i915_module_load@load.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk9/igt at i915_module_load@load.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk3/igt at i915_module_load@load.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk5/igt at i915_module_load@load.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk3/igt at i915_module_load@load.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk8/igt at i915_module_load@load.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk1/igt at i915_module_load@load.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk5/igt at i915_module_load@load.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/shard-glk9/igt at i915_module_load@load.html [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12393 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_15908: f06efdfad9d0e9f5cb74404ac98e1a5b3b246567 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12393: 5ff4f2c7478a332586c48137da1a34f34ba5337d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12393/index.html From lucas.demarchi at intel.com Mon Jan 6 17:13:14 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Mon, 6 Jan 2025 11:13:14 -0600 Subject: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api call In-Reply-To: <20250106095154.243459-1-mohammed.thasleem@intel.com> References: <20250106095154.243459-1-mohammed.thasleem@intel.com> Message-ID: On Mon, Jan 06, 2025 at 03:21:54PM +0530, Mohammed Thasleem wrote: >Check ghe algo for the function called by ghe igt while compiling. > >Signed-off-by: Mohammed Thasleem >--- > meson.build | 13 ++++++++++++- > 1 file changed, 12 insertions(+), 1 deletion(-) > >diff --git a/meson.build b/meson.build >index 8b2a2a64a..96f010fe2 100644 >--- a/meson.build >+++ b/meson.build >@@ -198,8 +198,19 @@ else > endif > > libghe = dependency('libghe', required : false) >+ > if libghe.found() >- config.set('HAVE_LIBGHE', 1) >+ >+ cc = meson.get_compiler('c') >+ >+ if cc.has_function('histogram_compute_generate_data_bin', dependencies: libghe) >+ message('libghe provides the required function') >+ config.set('HAVE_LIBGHE', 1) >+ else >+ warning('libghe does not provide the required function') >+ endif what's the a proper libghe that provide histogram_compute_generate_data_bin() and how were things tested? If there is libghe available, build is just broken. Ideally we'd have something like is done for other libraries. libghe = dependency('libghe', version : '>=0.2', required : false) However, looking at https://github.com/intel/ghe, there's no such function, which leads me to think this call is actually a typo to something else like set_histogram_data_bin()? Cc: Arun R Murthy Cc: Nemesa Garg >+else >+ warning('libghe not found') no warning should be added here, like it's not added for the multiple other libraries. Lucas De Marchi > endif > > build_info += 'Build Chamelium test: @0@'.format(chamelium.found()) >-- >2.25.1 > From lucas.demarchi at intel.com Mon Jan 6 17:20:42 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Mon, 6 Jan 2025 11:20:42 -0600 Subject: [PATCH] tests/intel/xe_drm_fdinfo: Do not end NULL xe_cork In-Reply-To: <20250102162540.81162-1-jonathan.cavitt@intel.com> References: <20250102162540.81162-1-jonathan.cavitt@intel.com> Message-ID: On Thu, Jan 02, 2025 at 04:25:40PM +0000, Jonathan Cavitt wrote: >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 Reviewed-by: Lucas De Marchi and pushed, thanks. Lucas De Marchi From patchwork at emeril.freedesktop.org Mon Jan 6 17:21:31 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 06 Jan 2025 17:21:31 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EFull=3A_success_for_Add_pci=5Fmembarrier_tes?= =?utf-8?q?t_in_xe=5Fmmap_=28rev8=29?= In-Reply-To: <20250106151441.2598949-1-tejas.upadhyay@intel.com> References: <20250106151441.2598949-1-tejas.upadhyay@intel.com> Message-ID: <173618409184.278991.14357801783344554567@b555e5b46a47> == Series Details == Series: Add pci_membarrier test in xe_mmap (rev8) URL : https://patchwork.freedesktop.org/series/141296/ State : success == Summary == CI Bug Log - changes from CI_DRM_15908_full -> IGTPW_12394_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/index.html Participating hosts (12 -> 10) ------------------------------ Missing (2): pig-kbl-iris shard-glk-0 Known issues ------------ Here are the changes found in IGTPW_12394_full that come from known issues: ### IGT changes ### #### Possible fixes #### * igt at i915_module_load@load: - shard-glk: ([PASS][1], [PASS][2], [DMESG-WARN][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25]) ([i915#118]) -> ([PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk5/igt at i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk6/igt at i915_module_load@load.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk5/igt at i915_module_load@load.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk2/igt at i915_module_load@load.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk1/igt at i915_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk3/igt at i915_module_load@load.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk4/igt at i915_module_load@load.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk1/igt at i915_module_load@load.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk3/igt at i915_module_load@load.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk5/igt at i915_module_load@load.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk3/igt at i915_module_load@load.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk2/igt at i915_module_load@load.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk1/igt at i915_module_load@load.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk2/igt at i915_module_load@load.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk1/igt at i915_module_load@load.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk7/igt at i915_module_load@load.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk8/igt at i915_module_load@load.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk7/igt at i915_module_load@load.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk6/igt at i915_module_load@load.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk9/igt at i915_module_load@load.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk7/igt at i915_module_load@load.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk9/igt at i915_module_load@load.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk6/igt at i915_module_load@load.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk7/igt at i915_module_load@load.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15908/shard-glk9/igt at i915_module_load@load.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk3/igt at i915_module_load@load.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk6/igt at i915_module_load@load.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk6/igt at i915_module_load@load.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk1/igt at i915_module_load@load.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk4/igt at i915_module_load@load.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk8/igt at i915_module_load@load.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk1/igt at i915_module_load@load.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk9/igt at i915_module_load@load.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk3/igt at i915_module_load@load.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk5/igt at i915_module_load@load.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk3/igt at i915_module_load@load.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk1/igt at i915_module_load@load.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk9/igt at i915_module_load@load.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk6/igt at i915_module_load@load.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk7/igt at i915_module_load@load.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk4/igt at i915_module_load@load.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk5/igt at i915_module_load@load.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk2/igt at i915_module_load@load.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk8/igt at i915_module_load@load.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk4/igt at i915_module_load@load.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk9/igt at i915_module_load@load.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk7/igt at i915_module_load@load.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk2/igt at i915_module_load@load.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk5/igt at i915_module_load@load.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/shard-glk8/igt at i915_module_load@load.html [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8174 -> IGTPW_12394 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_15908: f06efdfad9d0e9f5cb74404ac98e1a5b3b246567 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12394: 5b3a3f40864395417cbd202512fd61577b461e47 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12394/index.html From lucas.demarchi at intel.com Mon Jan 6 17:22:09 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Mon, 6 Jan 2025 11:22:09 -0600 Subject: [PATCH i-g-t 1/8] tests/intel/xe_drm_fdinfo: Do not end cork not started In-Reply-To: References: <20250104071548.737612-1-lucas.demarchi@intel.com> Message-ID: <7xrjfxnws3dsb52s5ajxmy2pr2wjmqo66f6lzkyy24htzv2fwd@att3l3srvkeo> On Mon, Jan 06, 2025 at 03:08:54PM +0000, Cavitt, Jonathan wrote: >-----Original Message----- >From: De Marchi, Lucas >Sent: Friday, January 3, 2025 11:16 PM >To: igt-dev at lists.freedesktop.org >Cc: De Marchi, Lucas ; Cavitt, Jonathan ; Gurram, Pravalika >Subject: [PATCH i-g-t 1/8] tests/intel/xe_drm_fdinfo: Do not end cork not started >> >> 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]); >> + > >This also needs to be applied to utilization_all_full_load. >Also: https://patchwork.freedesktop.org/series/143066/ Awesome. Reviewed and applied your more complete version. thanks Lucas De Marchi >-Jonathan Cavitt > >> read_engine_cycles(fd, pceu2); >> >> xe_for_each_engine_class(class) { >> -- >> 2.47.0 >> >> From lucas.demarchi at intel.com Mon Jan 6 17:42:32 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Mon, 6 Jan 2025 11:42:32 -0600 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: <20250104224429.0d3d00de@windsurf> References: <20250103222628.4069004-1-thomas.petazzoni@bootlin.com> <20250104224429.0d3d00de@windsurf> Message-ID: On Sat, Jan 04, 2025 at 10:44:29PM +0100, Thomas Petazzoni wrote: >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? ugh... but the soname is about linking to the library, which is unrelated to linking. I'd rather wait on that discussion to settle. > >> 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. agreed, that would be the next best alternative Lucas De Marchi > >Best regards, > >Thomas >-- >Thomas Petazzoni, co-owner and CEO, Bootlin >Embedded Linux and Kernel engineering and training >https://bootlin.com From lucas.demarchi at intel.com Mon Jan 6 21:28:49 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Mon, 6 Jan 2025 13:28:49 -0800 Subject: [PATCH i-g-t v3 1/3] lib/igt_kmod: fix check to confirm correct driver unload In-Reply-To: <20241220190440.2543689-1-daniele.ceraolospurio@intel.com> References: <20241220190440.2543689-1-daniele.ceraolospurio@intel.com> Message-ID: <173619891521.1204290.7371929389483252935.b4-ty@intel.com> On Fri, 20 Dec 2024 11:04:38 -0800, Daniele Ceraolo Spurio wrote: > The driver variable is a string, so we need to pass it in as a variable > for the driver name instead of stringifying it. > > Applied, thanks! [1/3] lib/igt_kmod: fix check to confirm correct driver unload commit: 41fe1911ecd58017c17178591b19c369b72e2c6a [2/3] lib/igt_kmod: Drop errno checking from igt_kmod_unbind commit: ae85f3d05a3f6940e5f6870cfa90c278f963dee6 [3/3] lib/igt_kmod: Do not explicitly unload intel mei driver commit: 5e65135d3d7cf5298a58bcd6137c77205704bcf9 Best regards, -- Lucas De Marchi From jonathan.cavitt at intel.com Mon Jan 6 22:58:10 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Mon, 6 Jan 2025 22:58:10 +0000 Subject: [PATCH i-g-t 2/8] lib/xe/xe_gt: Fix header guards and boilerplate In-Reply-To: <20250104071548.737612-2-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> <20250104071548.737612-2-lucas.demarchi@intel.com> Message-ID: -----Original Message----- From: igt-dev On Behalf Of Lucas De Marchi Sent: Friday, January 3, 2025 11:16 PM To: igt-dev at lists.freedesktop.org Cc: De Marchi, Lucas Subject: [PATCH i-g-t 2/8] lib/xe/xe_gt: Fix header guards and boilerplate > > Add proper header guard and remove author from comment: authorship is > maintained in git, not as comment. > > Signed-off-by: Lucas De Marchi LGTM. Reviewed-by: Jonathan Cavitt -Jonathan Cavitt > --- > 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 (c) 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 (c) 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 jonathan.cavitt at intel.com Mon Jan 6 22:58:15 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Mon, 6 Jan 2025 22:58:15 +0000 Subject: [PATCH i-g-t 3/8] lib/xe: Move functions from xe_util to xe_gt In-Reply-To: <20250104071548.737612-3-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> <20250104071548.737612-3-lucas.demarchi@intel.com> Message-ID: -----Original Message----- From: igt-dev On Behalf Of Lucas De Marchi Sent: Friday, January 3, 2025 11:16 PM To: igt-dev at lists.freedesktop.org Cc: De Marchi, Lucas Subject: [PATCH i-g-t 3/8] lib/xe: Move functions from xe_util to xe_gt > > Some functions are clearly gt-related, so move them to xe_gt. > > Signed-off-by: Lucas De Marchi LGTM, though at some point in the future, we should probably take a closer look at the test files that have been impacted by this change and check if xe_util.h is still a required includes for them. Reviewed-by: Jonathan Cavitt -Jonathan Cavitt > --- > 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 jonathan.cavitt at intel.com Mon Jan 6 22:58:18 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Mon, 6 Jan 2025 22:58:18 +0000 Subject: [PATCH i-g-t 4/8] lib/xe: Rename xe_is_gt_in_c6() In-Reply-To: <20250104071548.737612-4-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> <20250104071548.737612-4-lucas.demarchi@intel.com> Message-ID: -----Original Message----- From: igt-dev On Behalf Of Lucas De Marchi Sent: Friday, January 3, 2025 11:16 PM To: igt-dev at lists.freedesktop.org Cc: De Marchi, Lucas Subject: [PATCH i-g-t 4/8] lib/xe: Rename xe_is_gt_in_c6() > > Use xe_gt_ as namespace. > > Signed-off-by: Lucas De Marchi LGTM. Reviewed-by: Jonathan Cavitt -Jonathan Cavitt > --- > 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 jonathan.cavitt at intel.com Mon Jan 6 22:58:26 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Mon, 6 Jan 2025 22:58:26 +0000 Subject: [PATCH i-g-t 6/8] lib/xe/xe_spin: Move declarations around In-Reply-To: <20250104071548.737612-6-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> <20250104071548.737612-6-lucas.demarchi@intel.com> Message-ID: -----Original Message----- From: igt-dev On Behalf Of Lucas De Marchi Sent: Friday, January 3, 2025 11:16 PM To: igt-dev at lists.freedesktop.org Cc: De Marchi, Lucas Subject: [PATCH i-g-t 6/8] lib/xe/xe_spin: Move declarations around > > 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 Okay, I think I get it. We're bundling the various functions declared in xe_spin.h by their purpose/interaction with the various structures, yeah? That makes sense to me. And even if my understanding of the purpose of this patch is wrong, I don't see any harm in applying it, so: Reviewed-by: Jonathan Cavitt -Jonathan Cavitt > --- > 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 jonathan.cavitt at intel.com Mon Jan 6 22:58:23 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Mon, 6 Jan 2025 22:58:23 +0000 Subject: [PATCH i-g-t 5/8] lib/xe: Split nsec to ticks abstraction In-Reply-To: <20250104071548.737612-5-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> <20250104071548.737612-5-lucas.demarchi@intel.com> Message-ID: -----Original Message----- From: igt-dev On Behalf Of Lucas De Marchi Sent: Friday, January 3, 2025 11:16 PM To: igt-dev at lists.freedesktop.org Cc: De Marchi, Lucas Subject: [PATCH i-g-t 5/8] lib/xe: Split nsec to ticks abstraction > > 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 I only have a single minor nit below, but otherwise: Reviewed-by: Jonathan Cavitt > --- > 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 Nit: This change (correcting the comment style for the xe_spin_opts declaration) might be better suited for the next patch in this series, as we're already cleaning up the other abstractions in the xe_spin.h file at that time. But either way works for me. -Jonathan Cavitt > * @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 jonathan.cavitt at intel.com Mon Jan 6 22:58:30 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Mon, 6 Jan 2025 22:58:30 +0000 Subject: [PATCH i-g-t 7/8] treewide: s/ctx/cork/ when referring to xe_cork In-Reply-To: <20250104071548.737612-7-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> <20250104071548.737612-7-lucas.demarchi@intel.com> Message-ID: -----Original Message----- From: igt-dev On Behalf Of Lucas De Marchi Sent: Friday, January 3, 2025 11:16 PM To: igt-dev at lists.freedesktop.org Cc: De Marchi, Lucas Subject: [PATCH i-g-t 7/8] treewide: s/ctx/cork/ when referring to xe_cork > > 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 LGTM. Reviewed-by: Jonathan Cavitt By the way, this RB also applies to the inevitable rebase that this will require after commit c982ba23a3 ("tests/intel/xe_drm_fdinfo: Do not end NULL xe_cork") landed. -Jonathan Cavitt > --- > 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 jonathan.cavitt at intel.com Mon Jan 6 22:58:34 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Mon, 6 Jan 2025 22:58:34 +0000 Subject: [PATCH i-g-t 8/8] tests/intel/xe_drm_fdinfo: Stop asserting on usage percentage In-Reply-To: <20250104071548.737612-8-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> <20250104071548.737612-8-lucas.demarchi@intel.com> Message-ID: -----Original Message----- From: igt-dev On Behalf Of Lucas De Marchi Sent: Friday, January 3, 2025 11:16 PM To: igt-dev at lists.freedesktop.org Cc: De Marchi, Lucas ; Nerlige Ramappa, Umesh Subject: [PATCH i-g-t 8/8] tests/intel/xe_drm_fdinfo: Stop asserting on usage percentage > > 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 There's a few nits/questions below, but I trust that everything is in order, so nothing below is particularly blocking. If I did manage to catch something that needs fixing, then of course that should be fixed, but otherwise: Reviewed-by: Jonathan Cavitt > --- > 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 (c) 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; Nit: There's probably an argument to be made that we didn't need to modify the calculation here because the end result is still the same and it loses a (presumably) helpful comment, but I won't block on it. Also, is this percentage correct given the test modifications? Maybe we should be dividing by spin_stamp + 1 instead, since that's what we're using to calculate the percentage later? > + 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 Nit: s/percentage/Percentage > */ > - igt_assert_lt_double(95.0, percent); > - igt_assert_lt_double(percent, 105.0); > + percent = fabs((num - spin_stamp) * 100.0) / (spin_stamp + 1); Nit: Shouldn't we also be dividing by width here? I'm just asking because that's what we were doing before, and it looks like spin_stamp is being used here as a stand-in for the "den" variable in the earlier percent calculation. > + 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 patchwork at emeril.freedesktop.org Tue Jan 7 00:57:44 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 07 Jan 2025 00:57:44 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Remove_redundant_hotplug_d?= =?utf-8?q?etection_assertion?= In-Reply-To: <20250106094259.931356-1-ramanaidu.naladala@intel.com> References: <20250106094259.931356-1-ramanaidu.naladala@intel.com> Message-ID: <173621146444.536913.16648221282828831649@b555e5b46a47> == Series Details == Series: Remove redundant hotplug detection assertion URL : https://patchwork.freedesktop.org/series/143141/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12391_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12391_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12391_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_12391_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@flip-vs-suspend-interruptible at a-dp4: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible at a-dp4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible at a-dp4.html * igt at kms_flip@flip-vs-suspend at b-dp2: - shard-bmg: [PASS][3] -> [INCOMPLETE][4] [3]: 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 [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-7/igt at kms_flip@flip-vs-suspend at b-dp2.html * igt at kms_pm_rpm@i2c: - shard-dg2-set2: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_pm_rpm@i2c.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-435/igt at kms_pm_rpm@i2c.html * igt at kms_vblank@ts-continuation-suspend: - shard-bmg: [PASS][7] -> [FAIL][8] +5 other tests fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_vblank@ts-continuation-suspend.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-5/igt at kms_vblank@ts-continuation-suspend.html * igt at xe_pm@s3-vm-bind-userptr: - shard-bmg: NOTRUN -> [FAIL][9] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at xe_pm@s3-vm-bind-userptr.html * igt at xe_pm@s4-mocs: - shard-lnl: [PASS][10] -> [FAIL][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt at xe_pm@s4-mocs.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-1/igt at xe_pm@s4-mocs.html Known issues ------------ Here are the changes found in XEIGTPW_12391_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getversion@basic: - shard-dg2-set2: [PASS][12] -> [FAIL][13] ([Intel XE#3440]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at core_getversion@basic.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at core_getversion@basic.html * igt at core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#1885]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at core_hotunplug@hotunplug-rescan.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at core_hotunplug@hotunplug-rescan.html * igt at core_setmaster@master-drop-set-root: - shard-dg2-set2: NOTRUN -> [FAIL][16] ([Intel XE#3249]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-435/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@info: - shard-dg2-set2: [PASS][17] -> [SKIP][18] ([Intel XE#2134]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at fbdev@info.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at fbdev@info.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [PASS][19] -> [FAIL][20] ([Intel XE#3701] / [Intel XE#3718] / [Intel XE#827]) [19]: 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 [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][21] -> [FAIL][22] ([Intel XE#3802]) [21]: 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 [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-b-dp-2.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [PASS][23] -> [FAIL][24] ([Intel XE#3719]) +3 other tests fail [23]: 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 [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][25] ([Intel XE#3279]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-8/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][26] ([Intel XE#3658]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-2/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_12391/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][28] ([Intel XE#1428]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-1/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][29] ([Intel XE#1124]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-434/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][30] ([Intel XE#1124]) +8 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][31] ([Intel XE#1124]) +6 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][32] ([Intel XE#2314] / [Intel XE#2894]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-5/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#367]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-8/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][34] ([Intel XE#2887]) +8 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][35] -> [INCOMPLETE][36] ([Intel XE#3862]) [35]: 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 [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-7/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][37] ([Intel XE#3432]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#787]) +20 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-436/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs at pipe-b-dp-4.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2887]) +8 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-8/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][41] ([Intel XE#306]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][42] ([Intel XE#2252]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-5/igt at kms_chamelium_hpd@common-hpd-after-suspend.html - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#373]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-435/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#373]) +5 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-6/igt at kms_chamelium_hpd@hdmi-hpd.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_12391/shard-lnl-1/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_12391/shard-bmg-5/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#3278]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-2/igt at kms_content_protection@uevent.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_12391/shard-lnl-8/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_12391/shard-bmg-3/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_12391/shard-lnl-3/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2320]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-5/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#455]) +5 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-435/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][53] ([Intel XE#309]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-1/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursor-vs-flip-varying-size: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#3007]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_cursor_legacy@cursor-vs-flip-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][55] -> [FAIL][56] ([Intel XE#1475]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-2/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][57] ([Intel XE#2286]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][58] ([Intel XE#2141]) +2 other tests fail [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-8/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#3383]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-4/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_dp_linktrain_fallback@dp-fallback.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#2423] / [i915#2575]) +24 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [PASS][63] -> [FAIL][64] ([Intel XE#2882] / [Intel XE#3288]) +1 other test fail [63]: 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 [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][65] -> [FAIL][66] ([Intel XE#3321]) +2 other tests fail [65]: 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 [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-436/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][67] -> [FAIL][68] ([Intel XE#301]) +7 other tests fail [67]: 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 [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][69] ([Intel XE#1421]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-2/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [PASS][70] -> [INCOMPLETE][71] ([Intel XE#2597]) +1 other test incomplete [70]: 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 [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-5/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-suspend at bc-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][72] ([Intel XE#2635]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend at bc-dp2-hdmi-a3.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [PASS][73] -> [FAIL][74] ([Intel XE#2882]) +2 other tests fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_flip@2x-wf_vblank-ts-check.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-5/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@flip-vs-expired-vblank at b-dp4: - shard-dg2-set2: [PASS][75] -> [FAIL][76] ([Intel XE#301] / [Intel XE#3321]) +1 other test 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 b-dp4.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank at b-dp4.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][77] ([Intel XE#2597]) +2 other tests incomplete [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][78] ([Intel XE#3664]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-5/igt at kms_flip@flip-vs-suspend-interruptible at b-dp2.html * igt at kms_flip@wf_vblank-ts-check at a-edp1: - shard-lnl: [PASS][79] -> [FAIL][80] ([Intel XE#886]) +3 other tests fail [79]: 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 [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-6/igt at kms_flip@wf_vblank-ts-check at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [PASS][81] -> [SKIP][82] ([Intel XE#2136]) +63 other tests skip [81]: 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 [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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-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_12391/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][84] ([Intel XE#1401] / [Intel XE#1745]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][85] ([Intel XE#1401]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][86] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][87] ([Intel XE#1397]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][88] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][89] ([Intel XE#2311]) +15 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][90] ([Intel XE#651]) +7 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][91] -> [SKIP][92] ([Intel XE#2136] / [Intel XE#2351]) +26 other tests skip [91]: 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 [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][93] ([Intel XE#2333]) +9 other tests fail [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#656]) +21 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-4/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][96] ([Intel XE#651]) +4 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2352]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][98] ([Intel XE#2313]) +26 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1469]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-3/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][100] ([Intel XE#653]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][101] ([Intel XE#1503]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-2/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#3898]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#346]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-6/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#2927]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-1/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-bmg: NOTRUN -> [INCOMPLETE][105] ([Intel XE#3663]) +1 other test incomplete [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_plane_scaling@intel-max-src-size: - shard-bmg: [PASS][106] -> [SKIP][107] ([Intel XE#3007]) +15 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_plane_scaling@intel-max-src-size.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][108] ([Intel XE#2763]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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-b: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2763]) +5 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-436/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][110] ([Intel XE#2763]) +14 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-436/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][112] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2499]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-7/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][114] -> [SKIP][115] ([Intel XE#2446]) +9 other tests skip [114]: 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 [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2446]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_pm_rpm@system-suspend-modeset.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_12391/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][118] ([Intel XE#1489]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][119] ([Intel XE#1489]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/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][120] ([Intel XE#2136]) +18 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_psr@fbc-psr2-primary-render.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_12391/shard-lnl-4/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]) +7 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-8/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]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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_12391/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][125] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [PASS][126] -> [SKIP][127] ([Intel XE#2423] / [i915#2575]) +236 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_rotation_crc@sprite-rotation-180.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_rotation_crc@sprite-rotation-180.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_12391/shard-bmg-8/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#362]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-2/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2450]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-5/igt at kms_tv_load_detect@load-detect.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_12391/shard-bmg-3/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_12391/shard-lnl-5/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#756]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-435/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#756]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/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_12391/shard-dg2-434/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at testdisplay: - shard-dg2-set2: [PASS][136] -> [SKIP][137] ([Intel XE#2423]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at testdisplay.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at testdisplay.html * igt at xe_ccs@suspend-resume: - shard-bmg: [PASS][138] -> [INCOMPLETE][139] ([Intel XE#3918]) +1 other test incomplete [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_ccs@suspend-resume.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-8/igt at xe_ccs@suspend-resume.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: NOTRUN -> [FAIL][140] ([Intel XE#3869]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-2/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_drm_fdinfo@utilization-others-idle: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1130]) +31 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at xe_drm_fdinfo@utilization-others-idle.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2905]) +6 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-7/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-bind-discovery: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#2905]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-discovery.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#2905]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][145] ([Intel XE#688]) +7 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][146] ([Intel XE#2364]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-5/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_basic@many-null-rebind: - shard-dg2-set2: [PASS][147] -> [SKIP][148] ([Intel XE#1130]) +430 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_exec_basic@many-null-rebind.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-435/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][149] ([Intel XE#1392]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-4/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][150] ([Intel XE#2322]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-8/igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt at xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#288]) +5 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-prefetch.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1192]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-1/igt at xe_live_ktest@xe_bo.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#378]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-2/igt at xe_module_load@force-load.html * igt at xe_module_load@reload-no-display: - shard-dg2-set2: [PASS][154] -> [FAIL][155] ([Intel XE#3546]) +1 other test fail [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_module_load@reload-no-display.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at xe_module_load@reload-no-display.html * igt at xe_oa@syncs-syncobj-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#2541] / [Intel XE#3573]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-434/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_12391/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#1130]) +9 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/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_12391/shard-lnl-4/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]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-5/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#579]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-436/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#944]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-7/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#944]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-4/igt at xe_query@multigpu-query-invalid-extension.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_12391/shard-lnl-3/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@bind-once: - shard-bmg: [PASS][165] -> [SKIP][166] ([Intel XE#1130]) +34 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_vm@bind-once.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at xe_vm@bind-once.html #### Possible fixes #### * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][167] ([Intel XE#301]) -> [PASS][168] +2 other tests 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.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-434/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][169] ([Intel XE#2882]) -> [PASS][170] +1 other test pass [169]: 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 [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/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][171] -> [PASS][172] +1 other test pass [171]: 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 [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][173] ([Intel XE#1035]) -> [PASS][174] +1 other test pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_plane@plane-panning-bottom-right-suspend.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][175] ([Intel XE#3313]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-5/igt at kms_sequence@get-forked-busy.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][177] -> [PASS][178] [177]: 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 [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][179] ([Intel XE#2883]) -> [PASS][180] +1 other test pass [179]: 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 [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-4/igt at kms_setmode@basic at pipe-b-edp-1.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_12391/shard-dg2-435/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_12391/shard-bmg-5/igt at xe_gt_freq@freq_suspend.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_12391/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][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_12391/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][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_12391/shard-lnl-6/igt at xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][191] ([Intel XE#623]) -> [SKIP][192] ([Intel XE#2423] / [i915#2575]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][193] ([Intel XE#3781]) -> [SKIP][194] ([Intel XE#2423] / [i915#2575]) +1 other test skip [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_12391/shard-dg2-466/igt at kms_async_flips@crc-atomic.html - shard-bmg: [INCOMPLETE][195] ([Intel XE#3781]) -> [INCOMPLETE][196] ([Intel XE#3781] / [Intel XE#3946]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc-atomic.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-5/igt at kms_async_flips@crc-atomic.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][197] ([Intel XE#873]) -> [SKIP][198] ([Intel XE#2423] / [i915#2575]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_async_flips@invalid-async-flip.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][199] ([Intel XE#3768]) -> [SKIP][200] ([Intel XE#2423] / [i915#2575]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_async_flips@invalid-async-flip-atomic.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-bmg: [SKIP][201] ([Intel XE#2327]) -> [SKIP][202] ([Intel XE#2136] / [Intel XE#2231]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][203] ([Intel XE#316]) -> [SKIP][204] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@linear-16bpp-rotate-90.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][205] ([Intel XE#316]) -> [SKIP][206] ([Intel XE#2136]) +7 other tests skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: [SKIP][207] ([Intel XE#1124]) -> [SKIP][208] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [207]: 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 [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][209] ([Intel XE#610]) -> [SKIP][210] ([Intel XE#2136]) [209]: 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 [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][211] ([Intel XE#1124]) -> [SKIP][212] ([Intel XE#2136]) +19 other tests skip [211]: 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 [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][213] ([Intel XE#1124]) -> [SKIP][214] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip [213]: 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 [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][215] ([Intel XE#619]) -> [SKIP][216] ([Intel XE#2136] / [Intel XE#2351]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_big_fb@yf-tiled-addfb.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][217] ([Intel XE#367]) -> [SKIP][218] ([Intel XE#2423] / [i915#2575]) +10 other tests skip [217]: 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 [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][219] ([Intel XE#2191]) -> [SKIP][220] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: [SKIP][221] ([Intel XE#367]) -> [SKIP][222] ([Intel XE#3007]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][223] ([Intel XE#2907]) -> [SKIP][224] ([Intel XE#2136]) +3 other tests skip [223]: 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 [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs: - shard-dg2-set2: [SKIP][225] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][226] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][227] ([Intel XE#2887]) -> [SKIP][228] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][229] ([Intel XE#3432]) -> [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_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-bmg: [SKIP][231] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][232] ([Intel XE#2136] / [Intel XE#2231]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][233] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][234] ([Intel XE#2136]) +26 other tests skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][235] ([Intel XE#314]) -> [SKIP][236] ([Intel XE#2136] / [Intel XE#2351]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_cdclk@mode-transition-all-outputs.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@plane-scaling: - shard-bmg: [SKIP][237] ([Intel XE#2724]) -> [SKIP][238] ([Intel XE#2136] / [Intel XE#2231]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_cdclk@plane-scaling.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][239] ([Intel XE#306]) -> [SKIP][240] ([Intel XE#2423] / [i915#2575]) +6 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_chamelium_color@gamma.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_chamelium_color@gamma.html * igt at kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-bmg: [SKIP][241] ([Intel XE#2252]) -> [SKIP][242] ([Intel XE#3007]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_chamelium_frames@hdmi-cmp-planar-formats.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][243] ([Intel XE#373]) -> [SKIP][244] ([Intel XE#2423] / [i915#2575]) +26 other tests skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_chamelium_hpd@vga-hpd.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_content_protection@atomic: - shard-bmg: [FAIL][245] ([Intel XE#1178]) -> [SKIP][246] ([Intel XE#3007]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_content_protection@atomic.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][247] ([Intel XE#307]) -> [SKIP][248] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_content_protection@dp-mst-lic-type-0.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@lic-type-0: - shard-dg2-set2: [FAIL][249] ([Intel XE#1178]) -> [SKIP][250] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_content_protection@lic-type-0.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_content_protection@lic-type-0.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][251] ([Intel XE#2320]) -> [SKIP][252] ([Intel XE#3007]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_cursor_crc@cursor-offscreen-128x42.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][253] ([Intel XE#308]) -> [SKIP][254] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_cursor_crc@cursor-offscreen-512x512.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-bmg: [SKIP][255] ([Intel XE#2321]) -> [SKIP][256] ([Intel XE#3007]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_cursor_crc@cursor-onscreen-512x512.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][257] ([Intel XE#323]) -> [SKIP][258] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [257]: 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 [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-bmg: [SKIP][259] ([Intel XE#2286]) -> [SKIP][260] ([Intel XE#3007]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_fbcon_fbt@psr: - 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-436/igt at kms_fbcon_fbt@psr.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@display-3x: - shard-dg2-set2: [SKIP][263] ([Intel XE#703]) -> [SKIP][264] ([Intel XE#2423] / [i915#2575]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_feature_discovery@display-3x.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2-set2: [SKIP][265] ([Intel XE#1137]) -> [SKIP][266] ([Intel XE#2423] / [i915#2575]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_feature_discovery@dp-mst.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][267] ([Intel XE#1135]) -> [SKIP][268] ([Intel XE#2423] / [i915#2575]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_feature_discovery@psr1.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][269] ([Intel XE#2882]) -> [SKIP][270] ([Intel XE#3007]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][271] ([Intel XE#455]) -> [SKIP][272] ([Intel XE#2136]) +12 other tests skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: [SKIP][273] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][274] ([Intel XE#2136] / [Intel XE#2231]) [273]: 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 [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][275] ([Intel XE#455]) -> [SKIP][276] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][277] ([Intel XE#2311]) -> [SKIP][278] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][279] ([Intel XE#877]) -> [FAIL][280] ([Intel XE#2333]) [279]: 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 [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-7/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][281] ([Intel XE#2333]) -> [SKIP][282] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [281]: 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 [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][283] ([Intel XE#651]) -> [SKIP][284] ([Intel XE#2136] / [Intel XE#2351]) +29 other tests skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: [SKIP][285] ([Intel XE#651]) -> [SKIP][286] ([Intel XE#2136]) +50 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][287] ([Intel XE#2313]) -> [SKIP][288] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: [SKIP][289] ([Intel XE#658]) -> [SKIP][290] ([Intel XE#2136] / [Intel XE#2351]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][291] ([Intel XE#1158]) -> [SKIP][292] ([Intel XE#2136]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][293] ([Intel XE#653]) -> [SKIP][294] ([Intel XE#2136] / [Intel XE#2351]) +16 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_12391/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][295] ([Intel XE#653]) -> [SKIP][296] ([Intel XE#2136]) +65 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-slowdraw.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][297] -> [SKIP][298] ([Intel XE#2423] / [i915#2575]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-435/igt at kms_hdr@bpc-switch.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][299] ([Intel XE#346]) -> [SKIP][300] ([Intel XE#2136]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_joiner@basic-big-joiner.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][301] ([Intel XE#2927]) -> [SKIP][302] ([Intel XE#2136]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_joiner@basic-ultra-joiner.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][303] ([Intel XE#361]) -> [SKIP][304] ([Intel XE#2423] / [i915#2575]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2-set2: [SKIP][305] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][306] ([Intel XE#2423] / [i915#2575]) +1 other test skip [305]: 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 [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-bmg: [SKIP][307] ([Intel XE#2763]) -> [SKIP][308] ([Intel XE#3007]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][309] ([Intel XE#2938]) -> [SKIP][310] ([Intel XE#2136]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_pm_backlight@brightness-with-dpms.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade: - shard-dg2-set2: [SKIP][311] ([Intel XE#870]) -> [SKIP][312] ([Intel XE#2136]) +3 other tests skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_pm_backlight@fade.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_pm_backlight@fade.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_12391/shard-dg2-466/igt at kms_pm_dc@dc6-psr.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][315] ([Intel XE#1489]) -> [SKIP][316] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][317] ([Intel XE#1489]) -> [SKIP][318] ([Intel XE#2136]) +20 other tests skip [317]: 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 [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][319] ([Intel XE#1122]) -> [SKIP][320] ([Intel XE#2136]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr2_su@page_flip-p010.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-bmg: [SKIP][321] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][322] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_psr@fbc-pr-cursor-plane-onoff.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-psr-sprite-plane-move: - shard-dg2-set2: [SKIP][323] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][324] ([Intel XE#2136] / [Intel XE#2351]) +11 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr@fbc-psr-sprite-plane-move.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][325] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][326] ([Intel XE#2136]) +28 other tests skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr@fbc-psr2-sprite-plane-move.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_psr@fbc-psr2-sprite-plane-move.html * igt at kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][327] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][328] ([Intel XE#2351]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr@psr-sprite-plane-onoff.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][329] ([Intel XE#2414]) -> [SKIP][330] ([Intel XE#2136] / [Intel XE#2231]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2-set2: [SKIP][331] ([Intel XE#2939]) -> [SKIP][332] ([Intel XE#2136] / [Intel XE#2351]) [331]: 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 [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-435/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][333] ([Intel XE#2939]) -> [SKIP][334] ([Intel XE#2136]) [333]: 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 [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][335] ([Intel XE#1127]) -> [SKIP][336] ([Intel XE#2423] / [i915#2575]) [335]: 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 [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: [SKIP][337] ([Intel XE#3414]) -> [SKIP][338] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_rotation_crc@sprite-rotation-270.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][339] ([Intel XE#362]) -> [FAIL][340] ([Intel XE#1729]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][341] ([Intel XE#330]) -> [SKIP][342] ([Intel XE#2423] / [i915#2575]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_tv_load_detect@load-detect.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][343] ([Intel XE#455]) -> [SKIP][344] ([Intel XE#2423] / [i915#2575]) +16 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_12391/shard-dg2-466/igt at kms_vrr@flip-dpms.html * igt at xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][345] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][346] ([Intel XE#1130]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_compute_preempt@compute-preempt.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at xe_compute_preempt@compute-preempt.html * igt at xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: [SKIP][347] ([Intel XE#1123]) -> [SKIP][348] ([Intel XE#1130]) +2 other tests skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_copy_basic@mem-copy-linear-0xfffe.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at xe_copy_basic@mem-copy-linear-0xfffe.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][349] ([Intel XE#1126]) -> [SKIP][350] ([Intel XE#1130]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0xfd.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][351] ([Intel XE#3889]) -> [SKIP][352] ([Intel XE#1130]) +2 other tests skip [351]: 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 [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html - shard-bmg: [SKIP][353] ([Intel XE#3889]) -> [SKIP][354] ([Intel XE#1130]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug_online@reset-with-attention: - shard-bmg: [SKIP][355] ([Intel XE#2905]) -> [SKIP][356] ([Intel XE#1130]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_eudebug_online@reset-with-attention.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at xe_eudebug_online@reset-with-attention.html * igt at xe_evict@evict-beng-large-multi-vm-cm: - shard-bmg: [FAIL][357] ([Intel XE#2364]) -> [SKIP][358] ([Intel XE#1130]) [357]: 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 [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at xe_evict@evict-beng-large-multi-vm-cm.html - shard-dg2-set2: [FAIL][359] ([Intel XE#1600]) -> [SKIP][360] ([Intel XE#1130]) [359]: 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 [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-435/igt at xe_evict@evict-beng-large-multi-vm-cm.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][361] ([Intel XE#1473]) -> [FAIL][362] ([Intel XE#1000]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_evict@evict-beng-mixed-threads-large.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-8/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][363] ([Intel XE#1473]) -> [SKIP][364] ([Intel XE#1130]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_evict@evict-threads-large: - shard-bmg: [TIMEOUT][365] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][366] ([Intel XE#1000]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_evict@evict-threads-large.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-once-null-defer-bind: - shard-bmg: [SKIP][367] ([Intel XE#2322]) -> [SKIP][368] ([Intel XE#1130]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_exec_basic@multigpu-once-null-defer-bind.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-bmg-3/igt at xe_exec_basic@multigpu-once-null-defer-bind.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][369] ([Intel XE#288]) -> [SKIP][370] ([Intel XE#1130]) +70 other tests skip [369]: 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 [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/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][371] ([Intel XE#2360]) -> [SKIP][372] ([Intel XE#1130]) +1 other test skip [371]: 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 [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: [SKIP][373] ([Intel XE#2905]) -> [SKIP][374] ([Intel XE#1130]) +28 other tests skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_exec_sip_eudebug@breakpoint-writesip.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][375] ([Intel XE#560]) -> [SKIP][376] ([Intel XE#1130]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_media_fill@media-fill.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at xe_media_fill@media-fill.html * igt at xe_mmap@small-bar: - shard-dg2-set2: [SKIP][377] ([Intel XE#512]) -> [SKIP][378] ([Intel XE#1130]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_mmap@small-bar.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at xe_mmap@small-bar.html * igt at xe_oa@non-privileged-map-oa-buffer: - shard-dg2-set2: [SKIP][379] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][380] ([Intel XE#1130]) +17 other tests skip [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_oa@non-privileged-map-oa-buffer.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at xe_oa@non-privileged-map-oa-buffer.html * igt at xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][381] ([Intel XE#1337]) -> [SKIP][382] ([Intel XE#1130]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_pat@display-vs-wb-transient.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at xe_pat@display-vs-wb-transient.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][383] ([Intel XE#977]) -> [SKIP][384] ([Intel XE#1130]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_pat@pat-index-xe2.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][385] ([Intel XE#979]) -> [SKIP][386] ([Intel XE#1130]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_pat@pat-index-xelpg.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@write: - shard-dg2-set2: [FAIL][387] ([Intel XE#1173]) -> [SKIP][388] ([Intel XE#1061]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_peer2peer@write.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-basic-exec: - shard-dg2-set2: [SKIP][389] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][390] ([Intel XE#1130]) +3 other tests skip [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_pm@d3cold-basic-exec.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at xe_pm@d3cold-basic-exec.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][391] ([Intel XE#1607] / [Intel XE#1794]) -> [ABORT][392] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_query@multigpu-query-invalid-extension: - shard-dg2-set2: [SKIP][393] ([Intel XE#944]) -> [SKIP][394] ([Intel XE#1130]) +5 other tests skip [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_query@multigpu-query-invalid-extension.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/shard-dg2-466/igt at xe_query@multigpu-query-invalid-extension.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#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#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#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [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#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#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#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#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#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#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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [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#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#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [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#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#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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [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#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#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#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#3664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3664 [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#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#3802]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3802 [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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [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#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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_12391 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2439-f6006dc6f9bab1458984ed52c07b4d4a6bd30e5f IGTPW_12391: b30c905319556f0f67860479cd2d1f5c6586bab5 @ 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-2439-f6006dc6f9bab1458984ed52c07b4d4a6bd30e5f: f6006dc6f9bab1458984ed52c07b4d4a6bd30e5f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12391/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 7 02:47:27 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 07 Jan 2025 02:47:27 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/kms=5Fhistogram=3A_A?= =?utf-8?q?dd_check_for_ghe_api_call?= In-Reply-To: <20250106095154.243459-1-mohammed.thasleem@intel.com> References: <20250106095154.243459-1-mohammed.thasleem@intel.com> Message-ID: <173621804783.579025.4625443205458260835@b555e5b46a47> == Series Details == Series: tests/kms_histogram: Add check for ghe api call URL : https://patchwork.freedesktop.org/series/143142/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12392_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12392_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12392_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_12392_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] -> [INCOMPLETE][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_12392/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-b-dp-2.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible at ac-dp2-hdmi-a3: - shard-bmg: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip@2x-plain-flip-ts-check-interruptible at ac-dp2-hdmi-a3.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-3/igt at kms_flip@2x-plain-flip-ts-check-interruptible at ac-dp2-hdmi-a3.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3: - shard-bmg: NOTRUN -> [FAIL][5] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3.html * igt at kms_psr@psr2-primary-blt at edp-1: - shard-lnl: [PASS][6] -> [FAIL][7] +1 other test fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt at kms_psr@psr2-primary-blt at edp-1.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-1/igt at kms_psr@psr2-primary-blt at edp-1.html Known issues ------------ Here are the changes found in XEIGTPW_12392_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getversion@all-cards: - shard-dg2-set2: [PASS][8] -> [FAIL][9] ([Intel XE#3440]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at core_getversion@all-cards.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at core_getversion@all-cards.html * igt at core_hotunplug@unbind-rebind: - shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#1885]) +4 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at core_hotunplug@unbind-rebind.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at core_hotunplug@unbind-rebind.html * igt at core_setmaster@master-drop-set-root: - shard-dg2-set2: NOTRUN -> [FAIL][12] ([Intel XE#3249]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@read: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#2134]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at fbdev@read.html * igt at fbdev@write: - shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#2134]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at fbdev@write.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/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_12392/shard-lnl-8/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [PASS][17] -> [FAIL][18] ([Intel XE#3701] / [Intel XE#3718] / [Intel XE#827]) [17]: 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 [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-3/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-d-dp-2: - shard-bmg: [PASS][19] -> [FAIL][20] ([Intel XE#3746]) [19]: 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-d-dp-2.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-3/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-d-dp-2.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_12392/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][23] ([Intel XE#2423] / [i915#2575]) +19 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][24] ([Intel XE#3279]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-1/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [PASS][25] -> [SKIP][26] ([Intel XE#2423] / [i915#2575]) +239 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt at kms_big_fb@4-tiled-8bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_big_fb@4-tiled-8bpp-rotate-180.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_12392/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@x-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1407]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-8/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][30] ([Intel XE#1124]) +7 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-8/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1428]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-2/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +5 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-8/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1124]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-435/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-1-displays-3840x2160p: - shard-bmg: [PASS][34] -> [SKIP][35] ([Intel XE#3007]) +8 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_bw@connected-linear-tiling-1-displays-3840x2160p.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_bw@connected-linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2314] / [Intel XE#2894]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-5/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#367]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-6/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#367]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-3/igt at kms_bw@linear-tiling-4-displays-2560x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2887]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-1/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][40] ([Intel XE#3432]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-3/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-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_12392/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc 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][42] ([Intel XE#787]) +44 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2887]) +9 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][44] ([Intel XE#373]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-436/igt at kms_chamelium_audio@dp-audio.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#306]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][46] ([Intel XE#2252]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-5/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#373]) +5 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-3/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_color@deep-color: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#3007]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_color@deep-color.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#307]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-1/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2341]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#3278]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-6/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#2321]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-2/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2321]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-8/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1424]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][55] ([Intel XE#455]) +5 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][56] ([Intel XE#2320]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-3/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2-set2: [PASS][57] -> [INCOMPLETE][58] ([Intel XE#3226]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-434/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.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_12392/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][60] -> [DMESG-WARN][61] ([Intel XE#877]) [60]: 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 [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.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_12392/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_12392/shard-lnl-8/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dp_aux_dev: - shard-dg2-set2: [PASS][64] -> [SKIP][65] ([Intel XE#2423]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_dp_aux_dev.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_dp_aux_dev.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_12392/shard-bmg-7/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [PASS][67] -> [FAIL][68] ([Intel XE#2882] / [Intel XE#3288]) +1 other test 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 ab-dp2-hdmi-a3.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-3/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 bd-dp2-hdmi-a3: - shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#3288] / [Intel XE#3321]) +1 other test fail [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 bd-dp2-hdmi-a3.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][71] ([Intel XE#1421]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-6/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][72] -> [FAIL][73] ([Intel XE#2882]) +6 other tests fail [72]: 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 [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-3/igt at kms_flip@2x-plain-flip-ts-check-interruptible.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_12392/shard-bmg-7/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend at b-dp2: - shard-bmg: [PASS][75] -> [FAIL][76] ([Intel XE#3879]) [75]: 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 [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-5/igt at kms_flip@flip-vs-suspend at b-dp2.html * igt at kms_flip@flip-vs-suspend at d-dp2: - shard-bmg: [PASS][77] -> [INCOMPLETE][78] ([Intel XE#2597]) [77]: 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 [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-5/igt at kms_flip@flip-vs-suspend at d-dp2.html * igt at kms_flip@plain-flip-ts-check at b-edp1: - shard-lnl: [PASS][79] -> [FAIL][80] ([Intel XE#886]) +2 other tests fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_flip@plain-flip-ts-check at b-edp1.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-6/igt at kms_flip@plain-flip-ts-check at b-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2293]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][82] ([Intel XE#1401] / [Intel XE#1745]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][83] ([Intel XE#1401]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][84] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][85] ([Intel XE#1397]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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-xtile-to-32bpp-xtile-upscaling: - shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#2136] / [Intel XE#2231]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.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]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@basic: - shard-dg2-set2: [PASS][89] -> [SKIP][90] ([Intel XE#2351]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_frontbuffer_tracking@basic.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_frontbuffer_tracking@basic.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#651]) +7 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][92] ([Intel XE#2311]) +16 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][93] -> [SKIP][94] ([Intel XE#2136] / [Intel XE#2351]) +28 other tests skip [93]: 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 [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][95] ([Intel XE#2333]) +7 other tests fail [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2-set2: [PASS][96] -> [SKIP][97] ([Intel XE#2136]) +72 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2352]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/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][99] ([Intel XE#651]) +6 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][100] ([Intel XE#656]) +21 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][101] ([Intel XE#2313]) +24 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-5/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_12392/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][103] ([Intel XE#653]) +5 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][104] ([Intel XE#1503]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-8/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#3898]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-3/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_12392/shard-lnl-5/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2927]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-5/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][108] ([Intel XE#2763]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][109] ([Intel XE#2763]) +14 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][111] ([Intel XE#2763]) +5 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][112] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2499]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-8/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2-set2: [PASS][114] -> [SKIP][115] ([Intel XE#2446]) +6 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_pm_rpm@dpms-mode-unset-lpsp.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_12392/shard-bmg-3/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][117] ([Intel XE#1489]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][118] ([Intel XE#2136]) +18 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1406]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-2/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-8/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr2-basic: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-435/igt at kms_psr@psr2-basic.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_12392/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][123] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][124] ([Intel XE#3414]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][125] ([Intel XE#2413]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-3/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_12392/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][127] ([Intel XE#362]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-1/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2450]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-3/igt at kms_tv_load_detect@load-detect.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_12392/shard-lnl-3/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_12392/shard-bmg-3/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_12392/shard-lnl-1/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_12392/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_12392/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_12392/shard-dg2-435/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_ccs@suspend-resume: - shard-bmg: [PASS][136] -> [INCOMPLETE][137] ([Intel XE#3918]) +1 other test incomplete [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_ccs@suspend-resume.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-5/igt at xe_ccs@suspend-resume.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: NOTRUN -> [FAIL][138] ([Intel XE#3869]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][139] ([Intel XE#2905]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-434/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2905]) +4 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-8/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#3889]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-2/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#2905]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][143] ([Intel XE#688]) +7 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-3/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][144] ([Intel XE#1392]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-6/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]) +3 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@no-exec-bindexecqueue-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#1130]) +32 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_exec_basic@no-exec-bindexecqueue-rebind.html * igt at xe_exec_fault_mode@invalid-va: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#288]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-436/igt at xe_exec_fault_mode@invalid-va.html * igt at xe_exec_threads@threads-fd-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#1130]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at xe_exec_threads@threads-fd-userptr-invalidate.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#1192]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-5/igt at xe_live_ktest@xe_bo.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#378]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-6/igt at xe_module_load@force-load.html * igt at xe_module_load@reload: - shard-dg2-set2: [PASS][151] -> [FAIL][152] ([Intel XE#3546]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_module_load@reload.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_module_load@reload.html - shard-bmg: [PASS][153] -> [FAIL][154] ([Intel XE#3546]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_module_load@reload.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-8/igt at xe_module_load@reload.html * igt at xe_oa@syncs-syncobj-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-434/igt at xe_oa@syncs-syncobj-cfg.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#1420] / [Intel XE#2838]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-4/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2284]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-3/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#584]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-8/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-6/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#944]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-5/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#944]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-5/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#3342]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-4/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@munmap-style-unbind-many-either-side-partial: - shard-dg2-set2: [PASS][163] -> [SKIP][164] ([Intel XE#1130]) +454 other tests skip [163]: 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 [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_vm@munmap-style-unbind-many-either-side-partial.html * igt at xe_vm@munmap-style-unbind-userptr-many-either-side-full: - shard-bmg: [PASS][165] -> [SKIP][166] ([Intel XE#1130]) +17 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_vm@munmap-style-unbind-userptr-many-either-side-full.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at xe_vm@munmap-style-unbind-userptr-many-either-side-full.html #### Possible fixes #### * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][167] ([Intel XE#877]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.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_12392/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_12392/shard-dg2-434/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][173] ([Intel XE#2882]) -> [PASS][174] +1 other test pass [173]: 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 [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][175] -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-435/igt at kms_hdr@bpc-switch.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_12392/shard-bmg-3/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][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-dp-4.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-435/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][181] ([Intel XE#3313]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-5/igt at kms_sequence@get-forked-busy.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [FAIL][183] ([Intel XE#899]) -> [PASS][184] [183]: 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 [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-3/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][185] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][186] [185]: 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 [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][187] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-1/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm_residency@gt-c6-freeze: - shard-bmg: [INCOMPLETE][189] ([Intel XE#3088]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][191] -> [PASS][192] +1 other test pass [191]: 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 [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][193] ([Intel XE#958]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_pm_residency@toggle-gt-c6.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-6/igt at xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][195] ([Intel XE#2233]) -> [SKIP][196] ([Intel XE#3007]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-dg2-set2: [SKIP][197] ([Intel XE#623]) -> [SKIP][198] ([Intel XE#2423] / [i915#2575]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-436/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * 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_12392/shard-bmg-3/igt at kms_async_flips@crc.html - shard-dg2-set2: [INCOMPLETE][201] ([Intel XE#3781]) -> [SKIP][202] ([Intel XE#2423] / [i915#2575]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_async_flips@crc.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/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]) [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_12392/shard-dg2-435/igt at kms_async_flips@crc-atomic.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][205] ([Intel XE#873]) -> [SKIP][206] ([Intel XE#2423] / [i915#2575]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_async_flips@invalid-async-flip.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][207] ([Intel XE#316]) -> [SKIP][208] ([Intel XE#2136]) +7 other tests skip [207]: 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 [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][209] ([Intel XE#316]) -> [SKIP][210] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@linear-16bpp-rotate-90.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][211] ([Intel XE#610]) -> [SKIP][212] ([Intel XE#2136]) +1 other test skip [211]: 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 [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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-0-hflip: - shard-dg2-set2: [SKIP][213] ([Intel XE#1124]) -> [SKIP][214] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip [213]: 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 [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][215] ([Intel XE#1124]) -> [SKIP][216] ([Intel XE#2136]) +17 other tests skip [215]: 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 [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-270: - shard-bmg: [SKIP][217] ([Intel XE#1124]) -> [SKIP][218] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_big_fb@yf-tiled-64bpp-rotate-270.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_big_fb@yf-tiled-64bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][219] ([Intel XE#619]) -> [SKIP][220] ([Intel XE#2136] / [Intel XE#2351]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_big_fb@yf-tiled-addfb.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb.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]) +10 other tests skip [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_12392/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][223] ([Intel XE#2191]) -> [SKIP][224] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [223]: 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 [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-bmg: [SKIP][225] ([Intel XE#367]) -> [SKIP][226] ([Intel XE#3007]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: [SKIP][227] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][228] ([Intel XE#2136]) +30 other tests skip [227]: 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 [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][229] ([Intel XE#2887]) -> [SKIP][230] ([Intel XE#2136] / [Intel XE#2231]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][231] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][232] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][233] ([Intel XE#3442]) -> [SKIP][234] ([Intel XE#2136]) [233]: 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 [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][235] ([Intel XE#3432]) -> [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_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][237] ([Intel XE#2907]) -> [SKIP][238] ([Intel XE#2136]) +3 other tests skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][239] ([Intel XE#306]) -> [SKIP][240] ([Intel XE#2423] / [i915#2575]) +7 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_chamelium_color@ctm-limited-range.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: [SKIP][241] ([Intel XE#2252]) -> [SKIP][242] ([Intel XE#3007]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][243] ([Intel XE#373]) -> [SKIP][244] ([Intel XE#2423] / [i915#2575]) +27 other tests skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_chamelium_hpd@vga-hpd.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][245] ([Intel XE#307]) -> [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-466/igt at kms_content_protection@dp-mst-lic-type-0.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@legacy: - shard-dg2-set2: [FAIL][247] ([Intel XE#1178]) -> [SKIP][248] ([Intel XE#2423] / [i915#2575]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_content_protection@legacy.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_content_protection@legacy.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: [SKIP][249] ([Intel XE#308]) -> [SKIP][250] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_cursor_crc@cursor-onscreen-512x512.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][251] ([Intel XE#323]) -> [SKIP][252] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [251]: 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 [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][253] ([Intel XE#776]) -> [SKIP][254] ([Intel XE#2136]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_fbcon_fbt@psr.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][255] ([Intel XE#701]) -> [SKIP][256] ([Intel XE#2423] / [i915#2575]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_feature_discovery@chamelium.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][257] ([Intel XE#1138]) -> [SKIP][258] ([Intel XE#2423] / [i915#2575]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_feature_discovery@display-4x.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2-set2: [SKIP][259] ([Intel XE#1137]) -> [SKIP][260] ([Intel XE#2423] / [i915#2575]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_feature_discovery@dp-mst.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr2: - shard-dg2-set2: [SKIP][261] ([Intel XE#1135]) -> [SKIP][262] ([Intel XE#2423] / [i915#2575]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_feature_discovery@psr2.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_feature_discovery@psr2.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][263] ([Intel XE#301]) -> [SKIP][264] ([Intel XE#2423] / [i915#2575]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][265] ([Intel XE#455]) -> [SKIP][266] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][267] ([Intel XE#455]) -> [SKIP][268] ([Intel XE#2136]) +10 other tests skip [267]: 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 [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][269] ([Intel XE#2311]) -> [SKIP][270] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][271] ([Intel XE#651]) -> [SKIP][272] ([Intel XE#2136]) +65 other tests skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][273] ([Intel XE#651]) -> [SKIP][274] ([Intel XE#2136] / [Intel XE#2351]) +23 other tests skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-suspend.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][275] ([Intel XE#877]) -> [FAIL][276] ([Intel XE#2333]) [275]: 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 [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][277] ([Intel XE#658]) -> [SKIP][278] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][279] ([Intel XE#653]) -> [SKIP][280] ([Intel XE#2136]) +66 other tests skip [279]: 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 [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][281] ([Intel XE#2313]) -> [SKIP][282] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][283] ([Intel XE#653]) -> [SKIP][284] ([Intel XE#2136] / [Intel XE#2351]) +21 other tests skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][285] ([Intel XE#1158]) -> [SKIP][286] ([Intel XE#2136]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][287] ([Intel XE#605]) -> [SKIP][288] ([Intel XE#2423] / [i915#2575]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_getfb@getfb-reject-ccs.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][289] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][290] ([Intel XE#3007]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_hdr@brightness-with-hdr.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][291] ([Intel XE#455]) -> [SKIP][292] ([Intel XE#2423] / [i915#2575]) +21 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_hdr@invalid-hdr.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][293] ([Intel XE#346]) -> [SKIP][294] ([Intel XE#2136]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_joiner@basic-big-joiner.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][295] ([Intel XE#2927]) -> [SKIP][296] ([Intel XE#2136]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_joiner@basic-ultra-joiner.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_plane_cursor@primary: - shard-dg2-set2: [FAIL][297] ([Intel XE#616]) -> [SKIP][298] ([Intel XE#2423] / [i915#2575]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_plane_cursor@primary.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_plane_cursor@primary.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2-set2: [SKIP][299] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][300] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [299]: 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 [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][301] ([Intel XE#870]) -> [SKIP][302] ([Intel XE#2136]) +2 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_backlight@fade-with-suspend.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: [SKIP][303] ([Intel XE#1129]) -> [SKIP][304] ([Intel XE#2136]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_dc@dc5-psr.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][305] ([Intel XE#3309]) -> [SKIP][306] ([Intel XE#2136]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_pm_dc@dc5-retention-flops.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][307] ([Intel XE#1129]) -> [SKIP][308] ([Intel XE#2136] / [Intel XE#2351]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_dc@dc6-psr.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][309] ([Intel XE#1489]) -> [SKIP][310] ([Intel XE#2136]) +23 other tests skip [309]: 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 [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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-p010: - shard-dg2-set2: [SKIP][311] ([Intel XE#1122]) -> [SKIP][312] ([Intel XE#2136]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr2_su@page_flip-p010.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: [SKIP][313] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][314] ([Intel XE#2136]) +31 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html * igt at kms_psr@pr-cursor-plane-onoff: - shard-bmg: [SKIP][315] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][316] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_psr@pr-cursor-plane-onoff.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at kms_psr@pr-cursor-plane-onoff.html * igt at kms_psr@psr-cursor-plane-move: - shard-dg2-set2: [SKIP][317] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][318] ([Intel XE#2351]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr@psr-cursor-plane-move.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-436/igt at kms_psr@psr-cursor-plane-move.html * igt at kms_psr@psr-dpms: - 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@psr-dpms.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_psr@psr-dpms.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: [SKIP][321] ([Intel XE#2939]) -> [SKIP][322] ([Intel XE#2136] / [Intel XE#2351]) [321]: 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 [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][323] ([Intel XE#2939]) -> [SKIP][324] ([Intel XE#2136]) [323]: 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 [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2-set2: [SKIP][325] ([Intel XE#3414]) -> [SKIP][326] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_rotation_crc@bad-tiling.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][327] ([Intel XE#1127]) -> [SKIP][328] ([Intel XE#2423] / [i915#2575]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][329] -> [FAIL][330] ([Intel XE#2883]) [329]: 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 [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-lnl-3/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][331] ([Intel XE#362]) -> [SKIP][332] ([Intel XE#2423] / [i915#2575]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][333] ([Intel XE#1500]) -> [SKIP][334] ([Intel XE#2423] / [i915#2575]) [333]: 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 [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: [SKIP][335] ([Intel XE#756]) -> [SKIP][336] ([Intel XE#2423] / [i915#2575]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_writeback@writeback-fb-id.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at kms_writeback@writeback-fb-id.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][337] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][338] ([Intel XE#1130]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_compute_preempt@compute-threadgroup-preempt.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/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][339] ([Intel XE#1123]) -> [SKIP][340] ([Intel XE#1130]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_copy_basic@mem-copy-linear-0x3fff.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_copy_basic@mem-copy-linear-0x3fff.html * igt at xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][341] ([Intel XE#1126]) -> [SKIP][342] ([Intel XE#1130]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0xfffe.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0xfffe.html * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-dg2-set2: [FAIL][343] ([Intel XE#3869]) -> [SKIP][344] ([Intel XE#1130]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_drm_fdinfo@utilization-others-full-load.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][345] ([Intel XE#2905]) -> [SKIP][346] ([Intel XE#1130]) +31 other tests skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_eudebug@basic-close.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_eudebug@basic-close.html * igt at xe_eudebug@basic-vm-bind-extended: - 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-5/igt at xe_eudebug@basic-vm-bind-extended.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-extended.html * igt at xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [FAIL][349] ([Intel XE#1600]) -> [SKIP][350] ([Intel XE#1130]) [349]: 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 [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/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][351] ([Intel XE#1473]) -> [SKIP][352] ([Intel XE#1130]) +2 other tests skip [351]: 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 [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind: - 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-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][355] ([Intel XE#288]) -> [SKIP][356] ([Intel XE#1130]) +68 other tests skip [355]: 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 [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][357] ([Intel XE#2360]) -> [SKIP][358] ([Intel XE#1130]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][359] ([Intel XE#2459] / [Intel XE#2596]) -> [SKIP][360] ([Intel XE#1130]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_media_fill@media-fill.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at xe_media_fill@media-fill.html - shard-dg2-set2: [SKIP][361] ([Intel XE#560]) -> [SKIP][362] ([Intel XE#1130]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_media_fill@media-fill.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-436/igt at xe_media_fill@media-fill.html * igt at xe_mmap@small-bar: - shard-dg2-set2: [SKIP][363] ([Intel XE#512]) -> [SKIP][364] ([Intel XE#1130]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_mmap@small-bar.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_mmap@small-bar.html * igt at xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: [SKIP][365] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][366] ([Intel XE#1130]) +21 other tests skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_oa@oa-unit-exclusive-stream-sample-oa.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt at xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][367] ([Intel XE#1337]) -> [SKIP][368] ([Intel XE#1130]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_pat@display-vs-wb-transient.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_pat@display-vs-wb-transient.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][369] ([Intel XE#977]) -> [SKIP][370] ([Intel XE#1130]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_pat@pat-index-xe2.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][371] ([Intel XE#979]) -> [SKIP][372] ([Intel XE#1130]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_pat@pat-index-xelpg.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@read: - shard-dg2-set2: [FAIL][373] ([Intel XE#1173]) -> [SKIP][374] ([Intel XE#1061]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_peer2peer@read.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_peer2peer@read.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: [SKIP][375] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][376] ([Intel XE#1130]) +3 other tests skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_pm@d3cold-mmap-vram.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-436/igt at xe_pm@d3cold-mmap-vram.html - shard-bmg: [SKIP][377] ([Intel XE#2284]) -> [SKIP][378] ([Intel XE#1130]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm@d3cold-mmap-vram.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_query@multigpu-query-oa-units: - shard-dg2-set2: [SKIP][379] ([Intel XE#944]) -> [SKIP][380] ([Intel XE#1130]) +6 other tests skip [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_query@multigpu-query-oa-units.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-dg2-466/igt at xe_query@multigpu-query-oa-units.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][381] ([Intel XE#944]) -> [SKIP][382] ([Intel XE#1130]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_query@multigpu-query-uc-fw-version-huc.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/shard-bmg-7/igt at xe_query@multigpu-query-uc-fw-version-huc.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_12392/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#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#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [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#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#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#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#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#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#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#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#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [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#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [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#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#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#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#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#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#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#3746]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3746 [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#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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [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#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#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [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_12392 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2439-f6006dc6f9bab1458984ed52c07b4d4a6bd30e5f IGTPW_12392: bde46610a2c68df5fd154cbefd26bf4a506e1a6e @ 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-2439-f6006dc6f9bab1458984ed52c07b4d4a6bd30e5f: f6006dc6f9bab1458984ed52c07b4d4a6bd30e5f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12392/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 7 06:07:54 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 07 Jan 2025 06:07:54 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_series_starting_with_=5Bi-?= =?utf-8?q?g-t=2C1/8=5D_tests/intel/xe=5Fdrm=5Ffdinfo=3A_Do_not_end_cork_not?= =?utf-8?q?_started_=28rev2=29?= In-Reply-To: <20250104071548.737612-1-lucas.demarchi@intel.com> References: <20250104071548.737612-1-lucas.demarchi@intel.com> Message-ID: <173623007486.669421.2842257406323921411@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,1/8] tests/intel/xe_drm_fdinfo: Do not end cork not started (rev2) URL : https://patchwork.freedesktop.org/series/143108/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12393_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12393_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12393_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_12393_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@flip-vs-suspend at c-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 c-dp2.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-5/igt at kms_flip@flip-vs-suspend at c-dp2.html * igt at xe_drm_fdinfo@parallel-utilization-single-full-load-isolation: - shard-bmg: [PASS][3] -> [FAIL][4] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_drm_fdinfo@parallel-utilization-single-full-load-isolation.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-8/igt at xe_drm_fdinfo@parallel-utilization-single-full-load-isolation.html - shard-dg2-set2: [PASS][5] -> [FAIL][6] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_drm_fdinfo@parallel-utilization-single-full-load-isolation.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-434/igt at xe_drm_fdinfo@parallel-utilization-single-full-load-isolation.html #### Warnings #### * igt at xe_drm_fdinfo@utilization-others-full-load: - shard-dg2-set2: [FAIL][7] ([Intel XE#3869]) -> [FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_drm_fdinfo@utilization-others-full-load.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-435/igt at xe_drm_fdinfo@utilization-others-full-load.html Known issues ------------ Here are the changes found in XEIGTPW_12393_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getstats: - shard-dg2-set2: [PASS][9] -> [SKIP][10] ([Intel XE#2423]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at core_getstats.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at core_getstats.html * igt at core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [PASS][11] -> [SKIP][12] ([Intel XE#1885]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at core_hotunplug@hotunplug-rescan.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at core_hotunplug@hotunplug-rescan.html * igt at core_setmaster@master-drop-set-root: - shard-dg2-set2: NOTRUN -> [FAIL][13] ([Intel XE#3249]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@read: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#2134]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at fbdev@read.html * igt at fbdev@write: - shard-dg2-set2: [PASS][15] -> [SKIP][16] ([Intel XE#2134]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at fbdev@write.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at fbdev@write.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3157]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-2/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][18] -> [FAIL][19] ([Intel XE#3719]) +3 other tests fail [18]: 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 [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][20] ([Intel XE#2423] / [i915#2575]) +17 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][21] ([Intel XE#3279]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][22] ([Intel XE#316]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][23] ([Intel XE#3658]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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@linear-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1407]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-2/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1428]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-6/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-435/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +8 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][28] ([Intel XE#1124]) +4 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-5/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][29] ([Intel XE#2314] / [Intel XE#2894]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.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_12393/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][31] ([Intel XE#367]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-1/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][32] ([Intel XE#2887]) +7 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-3/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-b-hdmi-a-3: - shard-bmg: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#3862]) [33]: 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 [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][35] ([Intel XE#3432]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][36] ([Intel XE#455] / [Intel XE#787]) +18 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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]) +58 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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-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_12393/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][39] ([Intel XE#373]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-436/igt at kms_chamelium_audio@dp-audio.html * igt at kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#306]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][41] ([Intel XE#2252]) +5 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#373]) +5 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-4/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#307]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-6/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#3007]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#3278]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-1/igt at kms_content_protection@uevent.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_12393/shard-lnl-6/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_12393/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1424]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][49] ([Intel XE#455]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][50] ([Intel XE#2320]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-5/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2-set2: [PASS][51] -> [INCOMPLETE][52] ([Intel XE#3226]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-436/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#309]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-1/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][54] -> [DMESG-WARN][55] ([Intel XE#877]) +1 other test dmesg-warn [54]: 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 [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-8/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][56] ([Intel XE#2286]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][57] ([Intel XE#2141]) +2 other tests fail [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#3383]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-2/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2244]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-3/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [PASS][60] -> [FAIL][61] ([Intel XE#2882] / [Intel XE#3288]) +1 other test fail [60]: 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 [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-3/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 bd-dp2-hdmi-a3: - shard-bmg: [PASS][62] -> [FAIL][63] ([Intel XE#3288] / [Intel XE#3321]) +1 other test fail [62]: 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 [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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-expired-vblank at ac-dp2-hdmi-a3: - shard-bmg: [PASS][64] -> [FAIL][65] ([Intel XE#3321]) [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_12393/shard-bmg-8/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_12393/shard-lnl-4/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#3007]) +11 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_flip@2x-plain-flip-fb-recreate.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@busy-flip: - shard-dg2-set2: [PASS][69] -> [SKIP][70] ([Intel XE#2423] / [i915#2575]) +225 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_flip@busy-flip.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_flip@busy-flip.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][71] ([Intel XE#301]) +3 other tests fail [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-435/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][72] -> [FAIL][73] ([Intel XE#301]) [72]: 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 [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][74] ([Intel XE#2597]) +1 other test incomplete [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend at a-dp2: - shard-bmg: [PASS][75] -> [FAIL][76] ([Intel XE#3879]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@flip-vs-suspend at a-dp2.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-5/igt at kms_flip@flip-vs-suspend at a-dp2.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [PASS][77] -> [SKIP][78] ([Intel XE#2136]) +75 other tests skip [77]: 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 [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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-xtile-to-64bpp-xtile-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2293]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][81] ([Intel XE#1401] / [Intel XE#1745]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][82] ([Intel XE#1401]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][83] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][84] ([Intel XE#1397]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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-linear-to-32bpp-linear-downscaling: - shard-bmg: [PASS][85] -> [SKIP][86] ([Intel XE#2136] / [Intel XE#2231]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-5/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][88] ([Intel XE#2311]) +11 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][89] ([Intel XE#651]) +7 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-6/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][90] ([Intel XE#651]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-434/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][91] ([Intel XE#2333]) +8 other tests fail [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#2136] / [Intel XE#2351]) +24 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2352]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-8/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][95] ([Intel XE#656]) +20 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][96] ([Intel XE#2313]) +23 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1469]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][99] ([Intel XE#653]) +6 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][100] ([Intel XE#1503]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-3/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_12393/shard-bmg-8/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_12393/shard-lnl-3/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_12393/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_12393/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][105] -> [FAIL][106] ([Intel XE#616]) +1 other test fail [105]: 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 [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-436/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][107] ([Intel XE#2763]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-2/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_12393/shard-bmg-3/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][109] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-436/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]) +5 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][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_12393/shard-lnl-6/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#908]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-436/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_12393/shard-bmg-3/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]) +8 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_12393/shard-dg2-466/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@universal-planes-dpms: - shard-bmg: [PASS][117] -> [SKIP][118] ([Intel XE#2446]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_pm_rpm@universal-planes-dpms.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_pm_rpm@universal-planes-dpms.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#2893]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][120] ([Intel XE#1489]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][121] ([Intel XE#1489]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][122] ([Intel XE#2136]) +21 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1406]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-2/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-3/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2850] / [Intel XE#929]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-435/igt at kms_psr@psr-primary-render.html * igt at kms_rotation_crc@primary-rotation-270: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#3414] / [Intel XE#3904]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-4/igt at kms_rotation_crc@primary-rotation-270.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_12393/shard-bmg-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2413]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-8/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#1435]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][130] ([Intel XE#362]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-3/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][131] -> [FAIL][132] ([Intel XE#2159]) +1 other test fail [131]: 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 [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-1/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#1499]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-8/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1499]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-8/igt at kms_vrr@seamless-rr-switch-drrs.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_12393/shard-dg2-436/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_ccs@suspend-resume: - shard-bmg: [PASS][136] -> [INCOMPLETE][137] ([Intel XE#3918]) +1 other test incomplete [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_ccs@suspend-resume.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-5/igt at xe_ccs@suspend-resume.html * igt at xe_drm_fdinfo@utilization-single-full-load-isolation: - shard-bmg: [PASS][138] -> [SKIP][139] ([Intel XE#1130]) +25 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_drm_fdinfo@utilization-single-full-load-isolation.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at xe_drm_fdinfo@utilization-single-full-load-isolation.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#3889]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-3/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-discovery: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2905]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-discovery.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#2905]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-6/igt at xe_eudebug_online@single-step.html * igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-vram: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2905]) +5 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/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][144] ([Intel XE#688]) +7 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][145] ([Intel XE#2364]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-8/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-dg2-set2: [PASS][146] -> [SKIP][147] ([Intel XE#1130]) +417 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.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_12393/shard-lnl-6/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]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-8/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@no-exec-null-defer-bind: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#1130]) +7 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at xe_exec_basic@no-exec-null-defer-bind.html * igt at xe_exec_fault_mode@many-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#288]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-435/igt at xe_exec_fault_mode@many-invalid-userptr-fault.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1192]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-6/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#1192]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-8/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_live_ktest@xe_migrate: - shard-dg2-set2: [PASS][154] -> [SKIP][155] ([Intel XE#1192]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_live_ktest@xe_migrate.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_live_ktest@xe_migrate.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [PASS][156] -> [SKIP][157] ([Intel XE#1192]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_live_ktest@xe_mocs.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-3/igt at xe_live_ktest@xe_mocs.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#378]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-6/igt at xe_module_load@force-load.html * igt at xe_module_load@reload-no-display: - shard-dg2-set2: [PASS][159] -> [FAIL][160] ([Intel XE#3546]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_module_load@reload-no-display.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_module_load@reload-no-display.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-434/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#1420] / [Intel XE#2838]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-1/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2284]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#584]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-8/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-2/igt at xe_pm@s4-d3cold-basic-exec.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_12393/shard-bmg-8/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#944]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-6/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#944]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-436/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#3342]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-2/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@invalid-extensions: - shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#1130]) +36 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_vm@invalid-extensions.html #### Possible fixes #### * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][171] ([Intel XE#3321]) -> [PASS][172] +1 other test 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 ad-dp2-hdmi-a3.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][173] ([Intel XE#301]) -> [PASS][174] [173]: 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 [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][175] ([Intel XE#2049] / [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.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][177] ([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 at c-dp4.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][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_12393/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][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_12393/shard-dg2-436/igt at kms_hdr@bpc-switch.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][183] ([Intel XE#361]) -> [PASS][184] [183]: 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 [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][185] ([Intel XE#718]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-8/igt at kms_pm_dc@dc5-dpms.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_12393/shard-bmg-7/igt at kms_sequence@get-forked-busy.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_12393/shard-lnl-4/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at xe_module_load@load: - shard-lnl: ([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], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [SKIP][213], [PASS][214], [PASS][215], [PASS][216]) ([Intel XE#378]) -> ([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], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/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-1/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/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-8/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/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-4/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/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-6/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/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/IGTPW_12393/shard-lnl-8/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-4/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-8/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-4/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-1/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-6/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-2/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-5/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-2/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-2/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-1/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-1/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-8/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-5/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-3/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-3/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-3/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-5/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-2/igt at xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-4/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-4/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-6/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-6/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-6/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-3/igt at xe_module_load@load.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][242] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-3/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm_residency@gt-c6-freeze: - shard-bmg: [INCOMPLETE][244] ([Intel XE#3088]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][246] -> [PASS][247] +1 other test pass [246]: 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 [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-8/igt at xe_pm_residency@gt-c6-freeze at gt1.html #### Warnings #### * igt at kms_async_flips@crc: - shard-bmg: [INCOMPLETE][248] ([Intel XE#3781]) -> [INCOMPLETE][249] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_async_flips@crc.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-8/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][250] ([Intel XE#3781]) -> [INCOMPLETE][251] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_async_flips@crc-atomic.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-434/igt at kms_async_flips@crc-atomic.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][252] ([Intel XE#873]) -> [SKIP][253] ([Intel XE#2423] / [i915#2575]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_async_flips@invalid-async-flip.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][254] ([Intel XE#316]) -> [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-466/igt at kms_big_fb@linear-16bpp-rotate-90.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@linear-64bpp-rotate-270: - shard-bmg: [SKIP][256] ([Intel XE#2327]) -> [SKIP][257] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_big_fb@linear-64bpp-rotate-270.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_big_fb@linear-64bpp-rotate-270.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][258] ([Intel XE#316]) -> [SKIP][259] ([Intel XE#2136]) +7 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-435/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-dg2-set2: [SKIP][260] ([Intel XE#619]) -> [SKIP][261] ([Intel XE#2136] / [Intel XE#2351]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@y-tiled-addfb.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][262] ([Intel XE#1124]) -> [SKIP][263] ([Intel XE#2136] / [Intel XE#2351]) +11 other tests skip [262]: 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 [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][264] ([Intel XE#607]) -> [SKIP][265] ([Intel XE#2136]) [264]: 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 [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][266] ([Intel XE#1124]) -> [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_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][268] ([Intel XE#1124]) -> [SKIP][269] ([Intel XE#2136]) +18 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: [SKIP][270] ([Intel XE#367]) -> [SKIP][271] ([Intel XE#2423] / [i915#2575]) +10 other tests skip [270]: 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 [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][272] ([Intel XE#2191]) -> [SKIP][273] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][274] ([Intel XE#2907]) -> [SKIP][275] ([Intel XE#2136]) +4 other tests skip [274]: 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 [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][276] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][277] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][278] ([Intel XE#3442]) -> [SKIP][279] ([Intel XE#2136]) [278]: 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 [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][280] ([Intel XE#2887]) -> [SKIP][281] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][282] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][283] ([Intel XE#2136]) +24 other tests skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][284] ([Intel XE#314]) -> [SKIP][285] ([Intel XE#2136] / [Intel XE#2351]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_cdclk@mode-transition-all-outputs.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-negative: - shard-bmg: [SKIP][286] ([Intel XE#2325]) -> [SKIP][287] ([Intel XE#3007]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_chamelium_color@ctm-negative.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][288] ([Intel XE#306]) -> [SKIP][289] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_chamelium_color@gamma.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_chamelium_color@gamma.html * igt at kms_chamelium_frames@hdmi-cmp-planes-random: - shard-bmg: [SKIP][290] ([Intel XE#2252]) -> [SKIP][291] ([Intel XE#3007]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_chamelium_frames@hdmi-cmp-planes-random.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_chamelium_frames@hdmi-cmp-planes-random.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: [SKIP][292] ([Intel XE#373]) -> [SKIP][293] ([Intel XE#2423] / [i915#2575]) +28 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_content_protection@atomic-dpms: - shard-dg2-set2: [FAIL][294] ([Intel XE#1178]) -> [SKIP][295] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_content_protection@atomic-dpms.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][296] ([Intel XE#307]) -> [SKIP][297] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_content_protection@dp-mst-lic-type-0.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: [SKIP][298] ([Intel XE#2320]) -> [SKIP][299] ([Intel XE#3007]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_cursor_crc@cursor-sliding-256x85.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: [SKIP][300] ([Intel XE#308]) -> [SKIP][301] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_cursor_crc@cursor-sliding-512x170.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][302] ([Intel XE#323]) -> [SKIP][303] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [302]: 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 [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-bmg: [SKIP][304] ([Intel XE#2286]) -> [SKIP][305] ([Intel XE#3007]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: [SKIP][306] ([Intel XE#455]) -> [SKIP][307] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_dsc@dsc-with-bpc-formats.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-formats: - shard-bmg: [SKIP][308] ([Intel XE#2244]) -> [SKIP][309] ([Intel XE#2136] / [Intel XE#2231]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_dsc@dsc-with-formats.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_dsc@dsc-with-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][310] ([Intel XE#455]) -> [SKIP][311] ([Intel XE#2136]) +9 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][312] ([Intel XE#701]) -> [SKIP][313] ([Intel XE#2423] / [i915#2575]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_feature_discovery@chamelium.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-dg2-set2: [SKIP][314] ([Intel XE#703]) -> [SKIP][315] ([Intel XE#2423] / [i915#2575]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_feature_discovery@display-3x.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_feature_discovery@display-3x.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-bmg: [SKIP][316] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][317] ([Intel XE#2136] / [Intel XE#2231]) [316]: 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 [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][318] ([Intel XE#651]) -> [SKIP][319] ([Intel XE#2136] / [Intel XE#2351]) +26 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-suspend.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][320] ([Intel XE#877]) -> [FAIL][321] ([Intel XE#2333]) [320]: 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 [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][322] ([Intel XE#2333]) -> [SKIP][323] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: [SKIP][324] ([Intel XE#651]) -> [SKIP][325] ([Intel XE#2136]) +49 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear: - shard-bmg: [SKIP][326] ([Intel XE#2311]) -> [SKIP][327] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][328] ([Intel XE#658]) -> [SKIP][329] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][330] ([Intel XE#653]) -> [SKIP][331] ([Intel XE#2136] / [Intel XE#2351]) +20 other tests skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][332] ([Intel XE#1158]) -> [SKIP][333] ([Intel XE#2136]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][334] ([Intel XE#2313]) -> [SKIP][335] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][336] ([Intel XE#653]) -> [SKIP][337] ([Intel XE#2136]) +60 other tests skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-slowdraw.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][338] ([Intel XE#605]) -> [SKIP][339] ([Intel XE#2423] / [i915#2575]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_getfb@getfb-reject-ccs.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3: - shard-bmg: [FAIL][340] -> [INCOMPLETE][341] ([Intel XE#3966]) +1 other test incomplete [340]: 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 [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][342] ([Intel XE#346]) -> [SKIP][343] ([Intel XE#2136]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_joiner@basic-big-joiner.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][344] ([Intel XE#2927]) -> [SKIP][345] ([Intel XE#2136]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_joiner@basic-ultra-joiner.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: [SKIP][346] ([Intel XE#2925]) -> [SKIP][347] ([Intel XE#2136]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@legacy: - shard-bmg: [SKIP][348] ([Intel XE#2486]) -> [SKIP][349] ([Intel XE#3007]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_panel_fitting@legacy.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_panel_fitting@legacy.html * igt at kms_plane_cursor@primary: - shard-dg2-set2: [FAIL][350] ([Intel XE#616]) -> [SKIP][351] ([Intel XE#2423] / [i915#2575]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_plane_cursor@primary.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][352] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][353] ([Intel XE#2423] / [i915#2575]) +1 other test skip [352]: 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 [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][354] ([Intel XE#2938]) -> [SKIP][355] ([Intel XE#2136]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_pm_backlight@brightness-with-dpms.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade: - shard-dg2-set2: [SKIP][356] ([Intel XE#870]) -> [SKIP][357] ([Intel XE#2136]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_pm_backlight@fade.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: [SKIP][358] ([Intel XE#1122]) -> [SKIP][359] ([Intel XE#2136] / [Intel XE#2351]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_pm_dc@dc3co-vpb-simulation.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][360] ([Intel XE#3309]) -> [SKIP][361] ([Intel XE#2136]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_pm_dc@dc5-retention-flops.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][362] ([Intel XE#1129]) -> [SKIP][363] ([Intel XE#2136] / [Intel XE#2351]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_dc@dc6-psr.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@modeset-lpsp: - shard-bmg: [SKIP][364] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][365] ([Intel XE#2446]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][366] ([Intel XE#1489]) -> [SKIP][367] ([Intel XE#2136]) +22 other tests skip [366]: 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 [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][368] ([Intel XE#1489]) -> [SKIP][369] ([Intel XE#2136] / [Intel XE#2231]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][370] ([Intel XE#1122]) -> [SKIP][371] ([Intel XE#2136]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr2_su@page_flip-nv12.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][372] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][373] ([Intel XE#2136]) +26 other tests skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr@fbc-psr2-sprite-plane-move.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_psr@fbc-psr2-sprite-plane-move.html * igt at kms_psr@fbc-psr2-suspend: - shard-bmg: [SKIP][374] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][375] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_psr@fbc-psr2-suspend.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_psr@fbc-psr2-suspend.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][376] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][377] ([Intel XE#2136] / [Intel XE#2351]) +11 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr@psr-dpms.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_psr@psr-dpms.html * igt at kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][378] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][379] ([Intel XE#2351]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_psr@psr-sprite-plane-onoff.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2-set2: [SKIP][380] ([Intel XE#3414]) -> [SKIP][381] ([Intel XE#2423] / [i915#2575]) +6 other tests skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_rotation_crc@bad-tiling.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-rotation-90: - shard-bmg: [SKIP][382] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][383] ([Intel XE#3007]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_rotation_crc@primary-rotation-90.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][384] ([Intel XE#1127]) -> [SKIP][385] ([Intel XE#2423] / [i915#2575]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][386] -> [FAIL][387] ([Intel XE#2883]) [386]: 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 [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-lnl-2/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][388] ([Intel XE#362]) -> [FAIL][389] ([Intel XE#1729]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][390] ([Intel XE#1500]) -> [SKIP][391] ([Intel XE#2423] / [i915#2575]) [390]: 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 [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/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][392] ([Intel XE#330]) -> [SKIP][393] ([Intel XE#2423] / [i915#2575]) [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_tv_load_detect@load-detect.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-435/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][394] ([Intel XE#455]) -> [SKIP][395] ([Intel XE#2423] / [i915#2575]) +22 other tests skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_vrr@flip-dpms.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_vrr@flip-dpms.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg2-set2: [SKIP][396] ([Intel XE#756]) -> [SKIP][397] ([Intel XE#2423] / [i915#2575]) +1 other test skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_writeback@writeback-invalid-parameters.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at kms_writeback@writeback-invalid-parameters.html * igt at xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: [SKIP][398] ([Intel XE#1123]) -> [SKIP][399] ([Intel XE#1130]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_copy_basic@mem-copy-linear-0xfffe.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-435/igt at xe_copy_basic@mem-copy-linear-0xfffe.html * igt at xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][400] ([Intel XE#1126]) -> [SKIP][401] ([Intel XE#1130]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_copy_basic@mem-set-linear-0x3fff.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0x3fff.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-dg2-set2: [SKIP][402] ([Intel XE#3889]) -> [SKIP][403] ([Intel XE#1130]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@breakpoint-not-in-debug-mode: - shard-bmg: [SKIP][404] ([Intel XE#2905]) -> [SKIP][405] ([Intel XE#1130]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_eudebug_online@breakpoint-not-in-debug-mode.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at xe_eudebug_online@breakpoint-not-in-debug-mode.html * igt at xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [FAIL][406] ([Intel XE#1600]) -> [SKIP][407] ([Intel XE#1130]) [406]: 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 [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/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][408] ([Intel XE#1473]) -> [SKIP][409] ([Intel XE#1130]) [408]: 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 [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/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][410] ([Intel XE#1473] / [Intel XE#402]) -> [INCOMPLETE][411] ([Intel XE#1473] / [Intel XE#402]) [410]: 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 [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [TIMEOUT][412] ([Intel XE#1473]) -> [FAIL][413] ([Intel XE#1000]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_evict@evict-beng-threads-large.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-bmg: [TIMEOUT][414] ([Intel XE#1473]) -> [INCOMPLETE][415] ([Intel XE#1473]) +1 other test incomplete [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_evict@evict-mixed-many-threads-large.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-8/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [TIMEOUT][416] ([Intel XE#1473] / [Intel XE#2472]) -> [INCOMPLETE][417] ([Intel XE#1473]) +2 other tests incomplete [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_evict@evict-mixed-many-threads-small.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-8/igt at xe_evict@evict-mixed-many-threads-small.html - shard-dg2-set2: [TIMEOUT][418] ([Intel XE#1473]) -> [INCOMPLETE][419] ([Intel XE#1473]) +1 other test incomplete [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-434/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr: - shard-bmg: [SKIP][420] ([Intel XE#2322]) -> [SKIP][421] ([Intel XE#1130]) +1 other test skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-bmg-7/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html * igt at xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: [SKIP][422] ([Intel XE#288]) -> [SKIP][423] ([Intel XE#1130]) +65 other tests skip [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_exec_fault_mode@twice-invalid-fault.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_exec_fault_mode@twice-invalid-fault.html * igt at xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: [SKIP][424] ([Intel XE#2360]) -> [SKIP][425] ([Intel XE#1130]) +2 other tests skip [424]: 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 [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: [SKIP][426] ([Intel XE#2905]) -> [SKIP][427] ([Intel XE#1130]) +31 other tests skip [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_exec_sip_eudebug@breakpoint-writesip.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][428] ([Intel XE#255]) -> [SKIP][429] ([Intel XE#1130]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_huc_copy@huc_copy.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_huc_copy@huc_copy.html * igt at xe_live_ktest@xe_eudebug: - shard-dg2-set2: [SKIP][430] ([Intel XE#455]) -> [SKIP][431] ([Intel XE#1192]) [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_live_ktest@xe_eudebug.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-435/igt at xe_live_ktest@xe_eudebug.html * igt at xe_live_ktest@xe_mocs: - shard-dg2-set2: [FAIL][432] ([Intel XE#1999]) -> [SKIP][433] ([Intel XE#1192]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_live_ktest@xe_mocs.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-434/igt at xe_live_ktest@xe_mocs.html * igt at xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: [SKIP][434] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][435] ([Intel XE#1130]) +20 other tests skip [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_oa@oa-unit-exclusive-stream-sample-oa.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-435/igt at xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][436] ([Intel XE#979]) -> [SKIP][437] ([Intel XE#1130]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_pat@pat-index-xelpg.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@read: - shard-dg2-set2: [FAIL][438] ([Intel XE#1173]) -> [SKIP][439] ([Intel XE#1061]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_peer2peer@read.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_peer2peer@read.html * igt at xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][440] ([Intel XE#2284]) -> [SKIP][441] ([Intel XE#1130]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_pm@d3cold-mocs.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: [SKIP][442] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][443] ([Intel XE#1130]) +2 other tests skip [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_pm@s2idle-d3cold-basic-exec.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_query@multigpu-query-oa-units: - shard-dg2-set2: [SKIP][444] ([Intel XE#944]) -> [SKIP][445] ([Intel XE#1130]) +5 other tests skip [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_query@multigpu-query-oa-units.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_query@multigpu-query-oa-units.html * igt at xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: [SKIP][446] ([Intel XE#3342]) -> [SKIP][447] ([Intel XE#1130]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_sriov_flr@flr-each-isolation.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_sriov_flr@flr-each-isolation.html * igt at xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][448] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][449] ([Intel XE#1130]) [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_wedged@wedged-mode-toggle.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/shard-dg2-466/igt at xe_wedged@wedged-mode-toggle.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#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#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#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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [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#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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [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#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#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#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#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#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#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#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#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#3966]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3966 [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#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#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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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_12393 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2440-f06efdfad9d0e9f5cb74404ac98e1a5b3b246567 IGTPW_12393: 5ff4f2c7478a332586c48137da1a34f34ba5337d @ 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-2440-f06efdfad9d0e9f5cb74404ac98e1a5b3b246567: f06efdfad9d0e9f5cb74404ac98e1a5b3b246567 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12393/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From luca at coelho.fi Tue Jan 7 06:43:42 2025 From: luca at coelho.fi (Luca Coelho) Date: Tue, 07 Jan 2025 08:43:42 +0200 Subject: [PATCH i-g-t v2] lib/igt_kms: Backup connector modes before sorting In-Reply-To: <20250103153333.4253-1-santhosh.reddy.guddati@intel.com> References: <20250103153333.4253-1-santhosh.reddy.guddati@intel.com> Message-ID: On Fri, 2025-01-03 at 21:03 +0530, Santhosh Reddy Guddati wrote: > 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 > --- Looks good. Reviewed-by: Luca Coelho -- Cheers, Luca. From mohammed.thasleem at intel.com Tue Jan 7 07:53:33 2025 From: mohammed.thasleem at intel.com (Thasleem, Mohammed) Date: Tue, 7 Jan 2025 07:53:33 +0000 Subject: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api call In-Reply-To: References: <20250106095154.243459-1-mohammed.thasleem@intel.com> Message-ID: @De Marchi, Lucas, As per the internal discussion we have updated the api name in IGT and accordingly we have merged. @Garg, Nemesa , What is ETA to do the same changes in GHE lib? FYI @Murthy, Arun R -----Original Message----- From: De Marchi, Lucas Sent: Monday, January 6, 2025 10:43 PM To: Thasleem, Mohammed Cc: igt-dev at lists.freedesktop.org; Murthy, Arun R ; Garg, Nemesa ; Kamil Konieczny Subject: Re: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api call On Mon, Jan 06, 2025 at 03:21:54PM +0530, Mohammed Thasleem wrote: >Check ghe algo for the function called by ghe igt while compiling. > >Signed-off-by: Mohammed Thasleem >--- > meson.build | 13 ++++++++++++- > 1 file changed, 12 insertions(+), 1 deletion(-) > >diff --git a/meson.build b/meson.build >index 8b2a2a64a..96f010fe2 100644 >--- a/meson.build >+++ b/meson.build >@@ -198,8 +198,19 @@ else > endif > > libghe = dependency('libghe', required : false) >+ > if libghe.found() >- config.set('HAVE_LIBGHE', 1) >+ >+ cc = meson.get_compiler('c') >+ >+ if cc.has_function('histogram_compute_generate_data_bin', dependencies: libghe) >+ message('libghe provides the required function') >+ config.set('HAVE_LIBGHE', 1) >+ else >+ warning('libghe does not provide the required function') >+ endif what's the a proper libghe that provide histogram_compute_generate_data_bin() and how were things tested? If there is libghe available, build is just broken. Ideally we'd have something like is done for other libraries. libghe = dependency('libghe', version : '>=0.2', required : false) However, looking at https://github.com/intel/ghe, there's no such function, which leads me to think this call is actually a typo to something else like set_histogram_data_bin()? Cc: Arun R Murthy Cc: Nemesa Garg >+else >+ warning('libghe not found') no warning should be added here, like it's not added for the multiple other libraries. Lucas De Marchi > endif > > build_info += 'Build Chamelium test: @0@'.format(chamelium.found()) >-- >2.25.1 > From patchwork at emeril.freedesktop.org Tue Jan 7 07:57:57 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 07 Jan 2025 07:57:57 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Add_pci=5Fmembarrier_test_?= =?utf-8?q?in_xe=5Fmmap_=28rev8=29?= In-Reply-To: <20250106151441.2598949-1-tejas.upadhyay@intel.com> References: <20250106151441.2598949-1-tejas.upadhyay@intel.com> Message-ID: <173623667726.718445.17395845820509186099@b555e5b46a47> == Series Details == Series: Add pci_membarrier test in xe_mmap (rev8) URL : https://patchwork.freedesktop.org/series/141296/ State : failure == Summary == CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12394_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12394_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12394_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_12394_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@2x-flip-vs-suspend-interruptible at ad-dp2-hdmi-a3: - 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@2x-flip-vs-suspend-interruptible at ad-dp2-hdmi-a3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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 c-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-3/igt at kms_flip@flip-vs-suspend-interruptible at c-hdmi-a3.html * igt at kms_vblank@accuracy-idle: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][4] +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-435/igt at kms_vblank@accuracy-idle.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_12394/shard-bmg-5/igt at kms_vblank@ts-continuation-suspend.html * igt at xe_mmap@pci-membarrier (NEW): - shard-lnl: NOTRUN -> [SKIP][7] +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-5/igt at xe_mmap@pci-membarrier.html * igt at xe_mmap@pci-membarrier-parallel (NEW): - shard-bmg: NOTRUN -> [SKIP][8] +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at xe_mmap@pci-membarrier-parallel.html - shard-dg2-set2: NOTRUN -> [SKIP][9] +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-436/igt at xe_mmap@pci-membarrier-parallel.html New tests --------- New tests have been introduced between XEIGT_8174_full and XEIGTPW_12394_full: ### New IGT tests (4) ### * igt at xe_mmap@pci-membarrier: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_mmap@pci-membarrier-bad-object: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_mmap@pci-membarrier-bad-pagesize: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_mmap@pci-membarrier-parallel: - Statuses : 3 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12394_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getversion@all-cards: - shard-dg2-set2: [PASS][10] -> [FAIL][11] ([Intel XE#3440]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at core_getversion@all-cards.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at core_getversion@all-cards.html * igt at core_hotunplug@hotrebind: - shard-bmg: [PASS][12] -> [SKIP][13] ([Intel XE#1885]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at core_hotunplug@hotrebind.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at core_hotunplug@hotrebind.html * igt at core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#1885]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at core_hotunplug@hotunplug-rescan.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at core_hotunplug@hotunplug-rescan.html * igt at core_setmaster@master-drop-set-root: - shard-dg2-set2: NOTRUN -> [FAIL][16] ([Intel XE#3249]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at core_setmaster@master-drop-set-root.html * igt at core_setmaster@master-drop-set-user: - shard-dg2-set2: [PASS][17] -> [FAIL][18] ([Intel XE#3249]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at core_setmaster@master-drop-set-user.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at core_setmaster@master-drop-set-user.html * igt at fbdev@info: - shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#2134]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at fbdev@info.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at fbdev@info.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#3157]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][22] -> [FAIL][23] ([Intel XE#3719]) +3 other tests fail [22]: 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 [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][24] ([Intel XE#2423] / [i915#2575]) +22 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_atomic@plane-invalid-params-fence.html * igt at kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [PASS][25] -> [SKIP][26] ([Intel XE#2423] / [i915#2575]) +216 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#316]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-435/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][28] -> [SKIP][29] ([Intel XE#2136]) +63 other tests skip [28]: 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 [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][30] ([Intel XE#3658]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [PASS][31] -> [SKIP][32] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1407]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-2/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1428]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-1/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2136] / [Intel XE#2231]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1124]) +7 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][37] ([Intel XE#1124]) +5 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#1124]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-435/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#367]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][40] ([Intel XE#367]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][41] ([Intel XE#367]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][42] ([Intel XE#2887]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][43] ([Intel XE#787]) +55 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][44] ([Intel XE#3432]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][45] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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-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_12394/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][47] ([Intel XE#373]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-436/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_12394/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]) +6 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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_12394/shard-lnl-5/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_12394/shard-lnl-6/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_12394/shard-bmg-7/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#3278]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-8/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_12394/shard-lnl-5/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_12394/shard-bmg-8/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1424]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-8/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2320]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][58] ([Intel XE#309]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-4/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@flip-vs-cursor-crc-atomic: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#3007]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_cursor_legacy@flip-vs-cursor-crc-atomic.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [PASS][60] -> [FAIL][61] ([Intel XE#1475]) [60]: 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 [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-1/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][62] ([Intel XE#2286]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][63] ([Intel XE#2141]) +2 other tests fail [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-5/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_12394/shard-lnl-1/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_12394/shard-bmg-5/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [PASS][66] -> [FAIL][67] ([Intel XE#2882]) +3 other tests fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-3/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#2882] / [Intel XE#3288]) +1 other test fail [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 ab-dp2-hdmi-a3.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1421]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-8/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [PASS][71] -> [INCOMPLETE][72] ([Intel XE#2597]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-3/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][73] -> [FAIL][74] ([Intel XE#3664]) [73]: 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 [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-3/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank at b-dp4: - shard-dg2-set2: [PASS][75] -> [FAIL][76] ([Intel XE#301] / [Intel XE#3321]) +1 other test 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 b-dp4.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][77] -> [FAIL][78] ([Intel XE#301]) +2 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_12394/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][79] ([Intel XE#2597]) +2 other tests incomplete [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][80] ([Intel XE#3879]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-3/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible at b-dp2: - shard-bmg: NOTRUN -> [FAIL][81] ([Intel XE#3664]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-3/igt at kms_flip@flip-vs-suspend-interruptible at b-dp2.html * igt at kms_flip@plain-flip-ts-check at b-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-5/igt at kms_flip@plain-flip-ts-check at b-edp1.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-1/igt at kms_flip@plain-flip-ts-check at b-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_12394/shard-bmg-3/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_12394/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][86] ([Intel XE#1401]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][87] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][88] ([Intel XE#1397]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][89] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-3/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_12394/shard-dg2-434/igt at kms_frontbuffer_tracking@basic.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/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][93] ([Intel XE#651]) +4 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-2/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_12394/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][95] -> [SKIP][96] ([Intel XE#2136] / [Intel XE#2351]) +29 other tests skip [95]: 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 [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.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_12394/shard-bmg-5/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]) +7 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-434/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]) +20 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-4/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]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2313]) +23 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-5/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][102] ([Intel XE#653]) +7 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_getfb@getfb-handle-protection: - shard-bmg: [PASS][103] -> [SKIP][104] ([Intel XE#3007]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_getfb@getfb-handle-protection.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_getfb@getfb-handle-protection.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_12394/shard-bmg-3/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_12394/shard-lnl-1/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2927]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-4/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2927]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][109] ([Intel XE#2763]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][110] ([Intel XE#2763]) +14 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-3/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][112] ([Intel XE#2763]) +8 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][113] ([Intel XE#908]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-436/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][114] -> [SKIP][115] ([Intel XE#2446]) +8 other tests skip [114]: 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 [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2446]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_pm_rpm@system-suspend-modeset.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_12394/shard-lnl-1/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]) +4 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/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][119] ([Intel XE#1489]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-435/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][120] ([Intel XE#2136]) +14 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_psr@fbc-psr2-primary-render.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_12394/shard-lnl-5/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]) +7 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-3/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2850] / [Intel XE#929]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][124] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][125] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][126] ([Intel XE#3414]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-434/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#455]) +6 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-435/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_12394/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][129] ([Intel XE#362]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-5/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2450]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-3/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][131] -> [FAIL][132] ([Intel XE#2159]) +1 other test fail [131]: 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 [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-1/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#1499]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1499]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-8/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#756]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-5/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#1091] / [Intel XE#2849]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-436/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at testdisplay: - shard-dg2-set2: [PASS][137] -> [SKIP][138] ([Intel XE#2423]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at testdisplay.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at testdisplay.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_12394/shard-lnl-8/igt at xe_drm_fdinfo@utilization-others-full-load.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2905]) +5 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-5/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#3889]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-8/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@breakpoint-not-in-debug-mode: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#2905]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-434/igt at xe_eudebug_online@breakpoint-not-in-debug-mode.html * igt at xe_eudebug_online@single-step: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#2905]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][144] ([Intel XE#688]) +5 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][145] ([Intel XE#2364]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/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_12394/shard-dg2-435/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_basic@many-execqueues-many-vm-bindexecqueue: - shard-bmg: [PASS][147] -> [SKIP][148] ([Intel XE#1130]) +13 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at xe_exec_basic@many-execqueues-many-vm-bindexecqueue.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at xe_exec_basic@many-execqueues-many-vm-bindexecqueue.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#1392]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-6/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][150] ([Intel XE#2322]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-5/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@no-exec-bindexecqueue-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#1130]) +29 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_exec_basic@no-exec-bindexecqueue-rebind.html * igt at xe_exec_basic@twice-null-rebind: - shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#1130]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at xe_exec_basic@twice-null-rebind.html * igt at xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#288]) +6 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-435/igt at xe_exec_fault_mode@twice-userptr-prefetch.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#1192]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-8/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_live_ktest@xe_migrate: - shard-dg2-set2: [PASS][155] -> [SKIP][156] ([Intel XE#1192]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_live_ktest@xe_migrate.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-434/igt at xe_live_ktest@xe_migrate.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [PASS][157] -> [SKIP][158] ([Intel XE#1192]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at xe_live_ktest@xe_mocs.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at xe_live_ktest@xe_mocs.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#378]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-4/igt at xe_module_load@force-load.html * igt at xe_module_load@reload-no-display: - shard-dg2-set2: [PASS][160] -> [FAIL][161] ([Intel XE#3546]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_module_load@reload-no-display.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_module_load@reload-no-display.html * igt at xe_oa@syncs-syncobj-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#2541] / [Intel XE#3573]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-436/igt at xe_oa@syncs-syncobj-cfg.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#1420] / [Intel XE#2838]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-5/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#584]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-4/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-basic-exec: - shard-lnl: [PASS][165] -> [ABORT][166] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt at xe_pm@s4-basic-exec.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-2/igt at xe_pm@s4-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_12394/shard-lnl-2/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#579]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-435/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#944]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#944]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-1/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#944]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-434/igt at xe_query@multigpu-query-topology.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_12394/shard-lnl-4/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@munmap-style-unbind-many-either-side-partial: - shard-dg2-set2: [PASS][173] -> [SKIP][174] ([Intel XE#1130]) +405 other tests skip [173]: 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 [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_vm@munmap-style-unbind-many-either-side-partial.html #### Possible fixes #### * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][175] ([Intel XE#2882]) -> [PASS][176] +2 other tests pass [175]: 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 [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-5/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][177] ([Intel XE#3321]) -> [PASS][178] [177]: 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 [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_hdr@bpc-switch: - shard-dg2-set2: [INCOMPLETE][179] -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_hdr@bpc-switch.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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][181] -> [PASS][182] +1 other test pass [181]: 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 [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-8/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][183] ([Intel XE#718]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html * igt at kms_sequence@get-forked-busy: - shard-bmg: [INCOMPLETE][185] ([Intel XE#3313]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_sequence@get-forked-busy.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-3/igt at kms_sequence@get-forked-busy.html * igt at kms_setmode@basic at pipe-a-edp-1: - shard-lnl: [FAIL][187] -> [PASS][188] [187]: 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 [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-5/igt at kms_setmode@basic at pipe-a-edp-1.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [FAIL][189] ([Intel XE#2883]) -> [PASS][190] +1 other test pass [189]: 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 [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-5/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][191] ([Intel XE#899]) -> [PASS][192] [191]: 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 [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-lnl-2/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][193] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][194] [193]: 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 [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-434/igt at xe_evict@evict-beng-mixed-many-threads-small.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_12394/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][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_12394/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][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_12394/shard-lnl-6/igt at xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][201] ([Intel XE#623]) -> [SKIP][202] ([Intel XE#2423] / [i915#2575]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@crc: - shard-bmg: [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-bmg-3/igt at kms_async_flips@crc.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-8/igt at kms_async_flips@crc.html - shard-dg2-set2: [INCOMPLETE][205] ([Intel XE#3781]) -> [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@crc.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_async_flips@crc.html * igt at kms_async_flips@crc-atomic: - shard-dg2-set2: [INCOMPLETE][207] ([Intel XE#3781]) -> [INCOMPLETE][208] ([Intel XE#3781] / [Intel XE#3946]) [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_12394/shard-dg2-435/igt at kms_async_flips@crc-atomic.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][209] ([Intel XE#873]) -> [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_async_flips@invalid-async-flip.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][211] ([Intel XE#3768]) -> [SKIP][212] ([Intel XE#2423] / [i915#2575]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_async_flips@invalid-async-flip-atomic.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][213] ([Intel XE#316]) -> [SKIP][214] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@linear-16bpp-rotate-90.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][215] ([Intel XE#316]) -> [SKIP][216] ([Intel XE#2136]) +8 other tests skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-8bpp-rotate-90: - shard-bmg: [SKIP][217] ([Intel XE#2327]) -> [SKIP][218] ([Intel XE#2136] / [Intel XE#2231]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt at kms_big_fb@x-tiled-8bpp-rotate-90.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_big_fb@x-tiled-8bpp-rotate-90.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_12394/shard-dg2-466/igt at kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][221] ([Intel XE#1124]) -> [SKIP][222] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: [SKIP][223] ([Intel XE#367]) -> [SKIP][224] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [223]: 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 [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][225] ([Intel XE#2191]) -> [SKIP][226] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][227] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][228] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [227]: 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 [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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-lnl-ccs: - shard-bmg: [SKIP][229] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][230] ([Intel XE#2136] / [Intel XE#2231]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-dg2-set2: [SKIP][231] ([Intel XE#2907]) -> [SKIP][232] ([Intel XE#2136]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-434/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][233] ([Intel XE#2887]) -> [SKIP][234] ([Intel XE#2136] / [Intel XE#2231]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][235] ([Intel XE#3442]) -> [SKIP][236] ([Intel XE#2136]) [235]: 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 [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][237] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][238] ([Intel XE#2136]) +30 other tests skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg2-set2: [SKIP][239] ([Intel XE#306]) -> [SKIP][240] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_chamelium_color@ctm-0-50.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_hpd@common-hpd-after-hibernate: - shard-bmg: [SKIP][241] ([Intel XE#2252]) -> [SKIP][242] ([Intel XE#3007]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_chamelium_hpd@common-hpd-after-hibernate.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_chamelium_hpd@common-hpd-after-hibernate.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][243] ([Intel XE#373]) -> [SKIP][244] ([Intel XE#2423] / [i915#2575]) +25 other tests skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_chamelium_hpd@vga-hpd.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_content_protection@lic-type-0: - shard-dg2-set2: [FAIL][245] ([Intel XE#1178]) -> [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-436/igt at kms_content_protection@lic-type-0.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_content_protection@lic-type-0.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][247] ([Intel XE#308]) -> [SKIP][248] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x170.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-256x85: - shard-bmg: [SKIP][249] ([Intel XE#2320]) -> [SKIP][250] ([Intel XE#3007]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_cursor_crc@cursor-random-256x85.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_cursor_crc@cursor-random-256x85.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-dg2-set2: [SKIP][251] ([Intel XE#455]) -> [SKIP][252] ([Intel XE#2423] / [i915#2575]) +19 other tests skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_cursor_crc@cursor-sliding-max-size.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_cursor_crc@cursor-sliding-max-size.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2-set2: [SKIP][253] ([Intel XE#323]) -> [SKIP][254] ([Intel XE#2423] / [i915#2575]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg2-set2: [SKIP][255] ([Intel XE#307]) -> [SKIP][256] ([Intel XE#2423] / [i915#2575]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_display_modes@mst-extended-mode-negative.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dsc@dsc-basic: - shard-dg2-set2: [SKIP][257] ([Intel XE#455]) -> [SKIP][258] ([Intel XE#2351]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_dsc@dsc-basic.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_dsc@dsc-basic.html * igt at kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][259] ([Intel XE#776]) -> [SKIP][260] ([Intel XE#2136]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_fbcon_fbt@psr-suspend.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][261] ([Intel XE#1138]) -> [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_feature_discovery@display-4x.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][263] ([Intel XE#1135]) -> [SKIP][264] ([Intel XE#2423] / [i915#2575]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_feature_discovery@psr1.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_feature_discovery@psr1.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][265] ([Intel XE#301]) -> [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_flip@flip-vs-expired-vblank-interruptible.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][267] ([Intel XE#2049] / [Intel XE#2597]) -> [SKIP][268] ([Intel XE#2423] / [i915#2575]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: [SKIP][269] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][270] ([Intel XE#2136] / [Intel XE#2231]) [269]: 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 [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][271] ([Intel XE#455]) -> [SKIP][272] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][273] ([Intel XE#455]) -> [SKIP][274] ([Intel XE#2136]) +9 other tests skip [273]: 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 [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][275] ([i915#5274]) -> [SKIP][276] ([Intel XE#2423] / [i915#2575]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_force_connector_basic@prune-stale-modes.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][277] ([Intel XE#651]) -> [SKIP][278] ([Intel XE#2136] / [Intel XE#2351]) +24 other tests skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: [SKIP][279] ([Intel XE#2311]) -> [SKIP][280] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][281] ([Intel XE#877]) -> [FAIL][282] ([Intel XE#2333]) [281]: 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 [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - shard-bmg: [FAIL][283] ([Intel XE#2333]) -> [SKIP][284] ([Intel XE#2136] / [Intel XE#2231]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][285] ([Intel XE#658]) -> [SKIP][286] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-tiling-y.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: [SKIP][287] ([Intel XE#651]) -> [SKIP][288] ([Intel XE#2136]) +54 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-dg2-set2: [SKIP][289] ([Intel XE#653]) -> [SKIP][290] ([Intel XE#2136]) +56 other tests skip [289]: 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 [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][291] ([Intel XE#2313]) -> [SKIP][292] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - 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@fbcpsr-tiling-4.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][295] ([Intel XE#1158]) -> [SKIP][296] ([Intel XE#2136]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][297] ([Intel XE#605]) -> [SKIP][298] ([Intel XE#2423] / [i915#2575]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_getfb@getfb-reject-ccs.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][299] ([Intel XE#346]) -> [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-big-joiner.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: [SKIP][301] ([Intel XE#2925]) -> [SKIP][302] ([Intel XE#2136]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_joiner@basic-force-ultra-joiner.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_joiner@basic-force-ultra-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_12394/shard-dg2-466/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][305] ([Intel XE#361]) -> [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_plane_scaling@intel-max-src-size.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - 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-434/igt at kms_plane_scaling@planes-downscale-factor-0-25.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-75: - shard-bmg: [SKIP][309] ([Intel XE#2763]) -> [SKIP][310] ([Intel XE#3007]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_plane_scaling@planes-downscale-factor-0-75.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_plane_scaling@planes-downscale-factor-0-75.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][311] ([Intel XE#2938]) -> [SKIP][312] ([Intel XE#2136]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at kms_pm_backlight@brightness-with-dpms.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade: - shard-bmg: [SKIP][313] ([Intel XE#870]) -> [SKIP][314] ([Intel XE#2136] / [Intel XE#2231]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt at kms_pm_backlight@fade.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_pm_backlight@fade.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][315] ([Intel XE#870]) -> [SKIP][316] ([Intel XE#2136]) +2 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_backlight@fade-with-suspend.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][317] ([Intel XE#3309]) -> [SKIP][318] ([Intel XE#2136]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_pm_dc@dc5-retention-flops.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@deep-pkgc: - shard-dg2-set2: [SKIP][319] ([Intel XE#908]) -> [SKIP][320] ([Intel XE#2136]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_pm_dc@deep-pkgc.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_pm_dc@deep-pkgc.html * igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][321] ([Intel XE#1489]) -> [SKIP][322] ([Intel XE#2136]) +20 other tests skip [321]: 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 [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/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-bmg: [SKIP][323] ([Intel XE#2387]) -> [SKIP][324] ([Intel XE#2136] / [Intel XE#2231]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_psr2_su@page_flip-p010.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_psr2_su@page_flip-p010.html - shard-dg2-set2: [SKIP][325] ([Intel XE#1122]) -> [SKIP][326] ([Intel XE#2136]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr2_su@page_flip-p010.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-434/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-no-drrs: - shard-bmg: [SKIP][327] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][328] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at kms_psr@fbc-pr-no-drrs.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][329] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][330] ([Intel XE#2136] / [Intel XE#2351]) +12 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr@fbc-psr-sprite-plane-onoff.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_psr@fbc-psr-sprite-plane-onoff.html * igt at kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: [SKIP][331] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][332] ([Intel XE#2136]) +24 other tests skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html * igt at kms_psr@psr-primary-page-flip: - shard-dg2-set2: [SKIP][333] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][334] ([Intel XE#2351]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_psr@psr-primary-page-flip.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: [SKIP][335] ([Intel XE#2939]) -> [SKIP][336] ([Intel XE#2136] / [Intel XE#2351]) [335]: 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 [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@bad-pixel-format: - shard-dg2-set2: [SKIP][337] ([Intel XE#3414]) -> [SKIP][338] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_rotation_crc@bad-pixel-format.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][339] ([Intel XE#1127]) -> [SKIP][340] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][341] ([Intel XE#362]) -> [FAIL][342] ([Intel XE#1729]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][343] ([Intel XE#330]) -> [SKIP][344] ([Intel XE#2423] / [i915#2575]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_tv_load_detect@load-detect.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@lobf: - shard-dg2-set2: [SKIP][345] ([Intel XE#2168]) -> [SKIP][346] ([Intel XE#2423] / [i915#2575]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at kms_vrr@lobf.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_vrr@lobf.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-bmg: [SKIP][347] ([Intel XE#1499]) -> [SKIP][348] ([Intel XE#3007]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at kms_vrr@seamless-rr-switch-vrr.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: [SKIP][349] ([Intel XE#756]) -> [SKIP][350] ([Intel XE#2423] / [i915#2575]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at kms_writeback@writeback-fb-id.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at kms_writeback@writeback-fb-id.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][351] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][352] ([Intel XE#2423] / [i915#2575]) [351]: 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 [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][353] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][354] ([Intel XE#1130]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_compute_preempt@compute-preempt-many.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: [SKIP][355] ([Intel XE#1123]) -> [SKIP][356] ([Intel XE#1130]) +2 other tests skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_copy_basic@mem-copy-linear-0xfffe.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_copy_basic@mem-copy-linear-0xfffe.html * igt at xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][357] ([Intel XE#1126]) -> [SKIP][358] ([Intel XE#1130]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0xfffe.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0xfffe.html * igt at xe_eudebug@basic-vm-bind-ufence: - shard-bmg: [SKIP][359] ([Intel XE#2905]) -> [SKIP][360] ([Intel XE#1130]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-ufence.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-ufence.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: [SKIP][361] ([Intel XE#3889]) -> [SKIP][362] ([Intel XE#1130]) +2 other tests skip [361]: 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 [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][363] ([Intel XE#1473]) -> [SKIP][364] ([Intel XE#1130]) +1 other test skip [363]: 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 [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][365] ([Intel XE#1473]) -> [INCOMPLETE][366] ([Intel XE#1473]) +3 other tests incomplete [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_evict@evict-beng-mixed-threads-large.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-3/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [TIMEOUT][367] ([Intel XE#1473]) -> [FAIL][368] ([Intel XE#1000]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_evict@evict-beng-threads-large.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-5/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [TIMEOUT][369] ([Intel XE#1473] / [Intel XE#2472]) -> [INCOMPLETE][370] ([Intel XE#1473]) +1 other test incomplete [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_evict@evict-mixed-many-threads-small.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at xe_evict@evict-mixed-many-threads-small.html - shard-dg2-set2: [TIMEOUT][371] ([Intel XE#1473]) -> [INCOMPLETE][372] ([Intel XE#1473]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_evict@evict-threads-large: - shard-bmg: [TIMEOUT][373] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][374] ([Intel XE#1000]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_evict@evict-threads-large.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-5/igt at xe_evict@evict-threads-large.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][375] ([Intel XE#288]) -> [SKIP][376] ([Intel XE#1130]) +68 other tests skip [375]: 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 [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: [SKIP][377] ([Intel XE#2905]) -> [SKIP][378] ([Intel XE#1130]) +25 other tests skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_exec_sip_eudebug@breakpoint-writesip.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][379] ([Intel XE#3865]) -> [SKIP][380] ([Intel XE#1130]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt at xe_gt_freq@freq_suspend.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at xe_gt_freq@freq_suspend.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][381] ([Intel XE#2833]) -> [SKIP][382] ([Intel XE#1192]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt at xe_live_ktest@xe_eudebug.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-3/igt at xe_live_ktest@xe_eudebug.html - shard-dg2-set2: [SKIP][383] ([Intel XE#455]) -> [SKIP][384] ([Intel XE#1192]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_live_ktest@xe_eudebug.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_live_ktest@xe_eudebug.html * igt at xe_live_ktest@xe_mocs: - shard-dg2-set2: [FAIL][385] ([Intel XE#1999]) -> [SKIP][386] ([Intel XE#1192]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_live_ktest@xe_mocs.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-436/igt at xe_live_ktest@xe_mocs.html * igt at xe_mmap@small-bar: - shard-dg2-set2: [SKIP][387] ([Intel XE#512]) -> [SKIP][388] ([Intel XE#1130]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_mmap@small-bar.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_mmap@small-bar.html * igt at xe_oa@syncs-userptr-wait-cfg: - shard-dg2-set2: [SKIP][389] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][390] ([Intel XE#1130]) +19 other tests skip [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_oa@syncs-userptr-wait-cfg.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_oa@syncs-userptr-wait-cfg.html * igt at xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][391] ([Intel XE#1337]) -> [SKIP][392] ([Intel XE#1130]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt at xe_pat@display-vs-wb-transient.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_pat@display-vs-wb-transient.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][393] ([Intel XE#977]) -> [SKIP][394] ([Intel XE#1130]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_pat@pat-index-xe2.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][395] ([Intel XE#1420]) -> [SKIP][396] ([Intel XE#1130]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_pat@pat-index-xehpc.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at xe_pat@pat-index-xehpc.html - shard-dg2-set2: [SKIP][397] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][398] ([Intel XE#1130]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_pat@pat-index-xehpc.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-434/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][399] ([Intel XE#2284]) -> [SKIP][400] ([Intel XE#1130]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_pm@d3cold-mocs.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: [SKIP][401] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][402] ([Intel XE#1130]) +3 other tests skip [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_pm@s2idle-d3cold-basic-exec.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-bmg: [SKIP][403] ([Intel XE#2284]) -> [SKIP][404] ([Intel XE#1130]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt at xe_pm@s3-d3cold-basic-exec.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-bmg-7/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][405] ([Intel XE#944]) -> [SKIP][406] ([Intel XE#1130]) +9 other tests skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt at xe_query@multigpu-query-engines.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_query@multigpu-query-engines.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][407] ([Intel XE#3342]) -> [SKIP][408] ([Intel XE#1130]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt at xe_sriov_flr@flr-vf1-clear.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][409] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][410] ([Intel XE#1130]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt at xe_wedged@wedged-mode-toggle.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/shard-dg2-466/igt at xe_wedged@wedged-mode-toggle.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#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#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#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [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#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [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#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#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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#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#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [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#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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#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#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#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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [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#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#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [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#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#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#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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [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#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#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#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [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 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8174 -> IGTPW_12394 * Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2440-f06efdfad9d0e9f5cb74404ac98e1a5b3b246567 IGTPW_12394: 5b3a3f40864395417cbd202512fd61577b461e47 @ 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-2440-f06efdfad9d0e9f5cb74404ac98e1a5b3b246567: f06efdfad9d0e9f5cb74404ac98e1a5b3b246567 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12394/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From karthik.b.s at intel.com Tue Jan 7 08:33:13 2025 From: karthik.b.s at intel.com (Karthik B S) Date: Tue, 7 Jan 2025 14:03:13 +0530 Subject: [PATCH i-g-t v2] lib/igt_kms: Backup connector modes before sorting In-Reply-To: <20250103153333.4253-1-santhosh.reddy.guddati@intel.com> References: <20250103153333.4253-1-santhosh.reddy.guddati@intel.com> Message-ID: <89a83e9d-c7c2-44f2-9b19-21218aa57902@intel.com> On 1/3/2025 9:03 PM, Santhosh Reddy Guddati wrote: > 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 Reviewed-by: Karthik B S > --- > 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; > } > From mcgrof at kernel.org Fri Jan 3 18:54:20 2025 From: mcgrof at kernel.org (Luis Chamberlain) Date: Fri, 3 Jan 2025 10:54:20 -0800 Subject: [PATCH i-g-t 2/2] lib/igt_kmod: Do not explicitly unload intel mei driver In-Reply-To: References: <20241218233830.2444510-1-daniele.ceraolospurio@intel.com> <20241218233830.2444510-2-daniele.ceraolospurio@intel.com> Message-ID: On Thu, Dec 19, 2024 at 02:20:45PM -0600, Lucas De Marchi wrote: > On Wed, Dec 18, 2024 at 03:38:30PM -0800, Daniele Ceraolo Spurio wrote: > > The mei driver is a child of i915 on discrete, but not on integrated. > > This means we want to unplug it before removing i915 in the former case > > but not in the latter. Therefore, instead of manually unloading the mei > > driver, we can unbind i915 and leave it to the kernel to unplug all the > > dependencies. This also means that we don't need to explicitly disable > > the vtcon anymore. > > > > The other 2 dependencies are left untouched: > > - intel_ips uses symbol_get, so the automatic dependency detection won't > > unload it. > > and it shouldn't - that's a hack and from the linux-modules perspective > we'd like to drop symbol_get() users. Btw, symbol_get/symbol_put only > guarantees the module can't be removed (since there's code in the kernel > that can still call into them). Totally. Also if CONFIG_TRIM_UNUSED_KSYMS=y is used, you may end up with nulls in places where perhaps you did not expect. symbol_get() and friends are currently used as hacks and we should slowly transform users to use a proper API and dependencies. > It doesn't mean the hardware can't go > away (hotplugged or unbound from the driver). The module should be > prepared for that. At the very least, it should handle errors from the > function and release the symbols, but it's probably a candidate for a > component driver. Indeed, one way is to set a simple regstration mechanism, if the resource is not registered then request_module() can be used. Luis From nemesa.garg at intel.com Tue Jan 7 09:15:32 2025 From: nemesa.garg at intel.com (Garg, Nemesa) Date: Tue, 7 Jan 2025 09:15:32 +0000 Subject: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api call In-Reply-To: References: <20250106095154.243459-1-mohammed.thasleem@intel.com> Message-ID: I have updated the ghe lib and changes are merged. > -----Original Message----- > From: Thasleem, Mohammed > Sent: Tuesday, January 7, 2025 1:24 PM > To: De Marchi, Lucas ; Garg, Nemesa > ; Murthy, Arun R > Cc: igt-dev at lists.freedesktop.org; Kamil Konieczny > ; Kurmi, Suresh Kumar > ; Lattannavar, Sameer > > Subject: RE: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api call > > @De Marchi, Lucas, As per the internal discussion we have updated the api > name in IGT and accordingly we have merged. > > @Garg, Nemesa , What is ETA to do the same changes in GHE lib? > > FYI @Murthy, Arun R > > > -----Original Message----- > From: De Marchi, Lucas > Sent: Monday, January 6, 2025 10:43 PM > To: Thasleem, Mohammed > Cc: igt-dev at lists.freedesktop.org; Murthy, Arun R > ; Garg, Nemesa ; Kamil > Konieczny > Subject: Re: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api call > > On Mon, Jan 06, 2025 at 03:21:54PM +0530, Mohammed Thasleem wrote: > >Check ghe algo for the function called by ghe igt while compiling. > > > >Signed-off-by: Mohammed Thasleem > >--- > > meson.build | 13 ++++++++++++- > > 1 file changed, 12 insertions(+), 1 deletion(-) > > > >diff --git a/meson.build b/meson.build > >index 8b2a2a64a..96f010fe2 100644 > >--- a/meson.build > >+++ b/meson.build > >@@ -198,8 +198,19 @@ else > > endif > > > > libghe = dependency('libghe', required : false) > >+ > > if libghe.found() > >- config.set('HAVE_LIBGHE', 1) > >+ > >+ cc = meson.get_compiler('c') > >+ > >+ if cc.has_function('histogram_compute_generate_data_bin', > dependencies: libghe) > >+ message('libghe provides the required function') > >+ config.set('HAVE_LIBGHE', 1) > >+ else > >+ warning('libghe does not provide the required function') > >+ endif > > what's the a proper libghe that provide > histogram_compute_generate_data_bin() > and how were things tested? If there is libghe available, build is just broken. > > Ideally we'd have something like is done for other libraries. > > libghe = dependency('libghe', version : '>=0.2', required : false) > > However, looking at https://github.com/intel/ghe, there's no such function, > which leads me to think this call is actually a typo to something else like > set_histogram_data_bin()? > > Cc: Arun R Murthy > Cc: Nemesa Garg > > >+else > >+ warning('libghe not found') > > no warning should be added here, like it's not added for the multiple other > libraries. > > Lucas De Marchi > > > endif > > > > build_info += 'Build Chamelium test: @0@'.format(chamelium.found()) > >-- > >2.25.1 > > From luca at coelho.fi Tue Jan 7 09:29:02 2025 From: luca at coelho.fi (Luca Coelho) Date: Tue, 07 Jan 2025 11:29:02 +0200 Subject: [PATCH i-g-t v2] lib/igt_kms: Backup connector modes before sorting In-Reply-To: References: <20250103153333.4253-1-santhosh.reddy.guddati@intel.com> Message-ID: On Tue, 2025-01-07 at 08:43 +0200, Luca Coelho wrote: > On Fri, 2025-01-03 at 21:03 +0530, Santhosh Reddy Guddati wrote: > > 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. I just realized that the commit message is not correct anymore. Please fix that if you haven't merged this yet. -- Luca. > > 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 > > --- > > Looks good. > > Reviewed-by: Luca Coelho > > -- > Cheers, > Luca. From lukasz.laguna at intel.com Tue Jan 7 11:52:06 2025 From: lukasz.laguna at intel.com (Laguna, Lukasz) Date: Tue, 7 Jan 2025 12:52:06 +0100 Subject: [PATCH i-g-t 5/5] tests/xe_sriov_auto_provisioning: Add tests for SR-IOV auto-provisioning In-Reply-To: <925fea09-6f3d-45e5-8b3c-8c6138c399cc@linux.intel.com> References: <20241218120056.779962-1-marcin.bernatowicz@linux.intel.com> <20241218120056.779962-6-marcin.bernatowicz@linux.intel.com> <925fea09-6f3d-45e5-8b3c-8c6138c399cc@linux.intel.com> Message-ID: <010ce8e5-9e1a-4403-b611-25cf92b9c72c@intel.com> On 12/19/2024 16:54, Bernatowicz, Marcin wrote: > > > On 12/19/2024 3:48 PM, Laguna, Lukasz wrote: >> On 12/18/2024 13:00, Marcin Bernatowicz wrote: >>> Added subtests validating below scenarios: >>> - auto-provisioned resources are allocated by PF driver in fairly >>> manner, >>> - auto-provisioned resources are released once VFs are disabled, >>> - verify that ranges of auto-provisioned resources are exclusive. >>> >>> The tests rely on ggtt_provisioned, lmem_provisioned, >>> contexts_provisioned and doorbells_provisioned debugfs attributes. >>> >>> Signed-off-by: Marcin Bernatowicz >>> Cc: Adam Miszczak >>> Cc: Jakub Kolakowski >>> Cc: Lukasz Laguna >>> Cc: Micha? Wajdeczko >>> Cc: Micha? Winiarski >>> Cc: Narasimha C V >>> Cc: Piotr Pi?rkowski >>> Cc: Satyanarayana K V P >>> Cc: Tomasz Lis >>> --- >>> ? tests/intel/xe_sriov_auto_provisioning.c | 399 >>> +++++++++++++++++++++++ >>> ? tests/meson.build??????????????????????? |?? 1 + >>> ? 2 files changed, 400 insertions(+) >>> ? create mode 100644 tests/intel/xe_sriov_auto_provisioning.c >>> >>> diff --git a/tests/intel/xe_sriov_auto_provisioning.c b/tests/intel/ >>> xe_sriov_auto_provisioning.c >>> new file mode 100644 >>> index 000000000..a5ae60525 >>> --- /dev/null >>> +++ b/tests/intel/xe_sriov_auto_provisioning.c >>> @@ -0,0 +1,399 @@ >>> +// SPDX-License-Identifier: MIT >>> +/* >>> + * Copyright(c) 2023 Intel Corporation. All rights reserved. >>> + */ >>> + >>> +#include >>> + >>> +#include "drmtest.h" >>> +#include "igt_core.h" >>> +#include "igt_sriov_device.h" >>> +#include "igt_sysfs.h" >>> +#include "xe/xe_sriov_debugfs.h" >>> +#include "xe/xe_sriov_provisioning.h" >>> +#include "xe/xe_query.h" >>> + >>> +/** >>> + * TEST: xe_sriov_auto_provisioning >>> + * Category: Core >>> + * Mega feature: SR-IOV >>> + * Sub-category: provisioning >>> + * Functionality: auto-provisioning >>> + * Run type: FULL >>> + * Description: Examine behavior of SR-IOV auto-provisioning >>> + * >>> + * SUBTEST: auto-provisioning-fair >> >> As we have auto_provisioning in the test name then maybe subtest >> named "fair" would be sufficient? > > maybe fair-allocation ? Yeah, sounds better. > >> >>> + * Description: >>> + *?? Verify that auto-provisioned resources are allocated by PF >>> driver in fairly manner >>> + * >>> + * SUBTEST: auto-provisioned-resources-released-on-vfs-disabling >> >> Similar to the above, maybe "resources-releasing-on-vfs-disabling"? > > ok > >> >>> + * Description: >>> + *?? Verify that auto-provisioned resources are released once VFs >>> are disabled >>> + * >>> + * SUBTEST: exclusive-ranges >>> + * Description: >>> + *?? Verify that ranges of auto-provisioned resources are exclusive >>> + */ >>> + >>> +IGT_TEST_DESCRIPTION("Xe tests for SR-IOV auto-provisioning"); >>> + >>> +static int compare_ranges_by_vf_id(const void *a, const void *b) >>> +{ >>> +??? const struct xe_sriov_provisioned_range *range_a = a; >>> +??? const struct xe_sriov_provisioned_range *range_b = b; >>> + >>> +??? return (range_a->vf_id - range_b->vf_id); >>> +} >>> + >>> +static int validate_vf_ids(enum xe_sriov_shared_res res, >>> +?????????????? struct xe_sriov_provisioned_range *ranges, >>> +?????????????? unsigned int nr_ranges, unsigned int num_vfs) >>> +{ >>> +??? unsigned int current_vf_id = 0; >>> + >>> +??? igt_assert(num_vfs); >>> + >>> +??? if (igt_debug_on_f(nr_ranges == 0, >>> +?????????????? "%s: No VF ranges\n", >>> +?????????????? xe_sriov_debugfs_provisioned_attr_name(res))) >>> +??????? return -ENOENT; >>> + >>> +??? igt_assert(ranges); >>> +??? qsort(ranges, nr_ranges, sizeof(ranges[0]), >>> compare_ranges_by_vf_id); >>> + >>> +??? for (unsigned int i = 0; i < nr_ranges; i++) { >>> +??????? unsigned int vf_id = ranges[i].vf_id; >>> + >>> +??????? /* Skip duplicates */ >>> +??????? if (vf_id == current_vf_id) >>> +??????????? continue; >>> + >>> +??????? if (igt_debug_on_f(vf_id < 1 || vf_id > num_vfs, >>> +?????????????????? "%s: Out of range VF%u\n", >>> + xe_sriov_debugfs_provisioned_attr_name(res), vf_id)) >>> +??????????? return -ERANGE; >>> + >>> +??????? if (igt_debug_on_f(vf_id > current_vf_id + 1, >>> +?????????????????? "%s: Missing VF%u\n", >>> + xe_sriov_debugfs_provisioned_attr_name(res), >>> +?????????????????? current_vf_id + 1)) >>> +??????????? return -ESRCH; >>> + >>> +??????? current_vf_id = vf_id; >>> +??? } >>> + >>> +??? if (igt_debug_on_f(current_vf_id != num_vfs, >>> +?????????????? "%s: Missing VF%u\n", >>> +?????????????? xe_sriov_debugfs_provisioned_attr_name(res), num_vfs)) >>> +??????? return -ESRCH; >>> + >>> +??? return 0; >>> +} >>> + >>> +/* Expects ranges sorted by VF IDs */ >>> +static int validate_fair_allocation(enum xe_sriov_shared_res res, >>> +??????????????????? struct xe_sriov_provisioned_range *ranges, >>> +??????????????????? unsigned int nr_ranges) >>> +{ >>> +??? uint64_t expected_allocation = 0; >>> +??? uint64_t current_allocation = 0; >>> +??? unsigned int current_vf_id; >>> + >>> +??? igt_assert(nr_ranges); >>> +??? current_vf_id = ranges[0].vf_id; >>> + >>> +??? for (unsigned int i = 0; i <= nr_ranges; i++) { >>> +??????? if (i == nr_ranges || ranges[i].vf_id != current_vf_id) { >>> +??????????? /* Check allocation consistency for the previous VF ID */ >>> +??????????? if (expected_allocation == 0) >>> +??????????????? expected_allocation = current_allocation; >>> +??????????? else if (igt_debug_on_f(current_allocation != >>> expected_allocation, >>> +??????????????????????? "%s: Allocation mismatch, expected=%lu >>> VF%u=%lu\n", >>> + xe_sriov_debugfs_provisioned_attr_name(res), >>> +??????????????????????? expected_allocation, current_vf_id, >>> +??????????????????????? current_allocation)) >>> +??????????????? return -1; >>> + >>> +??????????? /* Reset for the new VF ID (if not at the end) */ >>> +??????????? if (i < nr_ranges) { >>> +??????????????? current_vf_id = ranges[i].vf_id; >>> +??????????????? current_allocation = 0; >>> +??????????? } >>> +??????? } >>> + >>> +??????? /* Accumulate allocation for the current VF ID */ >>> +??????? if (i < nr_ranges) >>> +??????????? current_allocation += ranges[i].end - ranges[i].start + 1; >>> +??? } >>> + >>> +??? return 0; >>> +} >>> + >> >> Handling cases where one VF can have more than one range of resource >> adds extra complexity to the test logic. I started wondering if we >> should consider such case as valid. Maybe we should assert earlier >> instead? > > You mean "+=" complexity ? > > current_allocation += ranges[i].end - ranges[i].start + 1; > > vs > > current_allocation = ranges[i].end - ranges[i].start + 1; > > > and > > /* Skip duplicates */ > if (vf_id == current_vf_id) > ????continue; > > vs > > if (vf_id == current_vf_id) > ????return err; > > in validate_vf_ids ? > I though that some conditions and operations are introduced because of the support of multiple ranges, but that was my misunderstanding. When I looked on this again, it's fine. > Maybe we can move the validate_vf_ids to the lib > or after agree no duplicate ids/gaps allowed return sorted by VF id > entries from read function ? > >> >>> +static int check_fair_allocation(int pf_fd, unsigned int num_vfs, >>> unsigned int gt_id, >>> +???????????????? enum xe_sriov_shared_res res) >>> +{ >>> +??? struct xe_sriov_provisioned_range *ranges; >>> +??? unsigned int nr_ranges; >>> +??? int ret; >>> + >>> +??? ret = xe_sriov_pf_debugfs_read_provisioned_ranges(pf_fd, res, >>> gt_id, &ranges, &nr_ranges); >>> +??? if (igt_debug_on_f(ret, "Failed read %s on GT%u (%d)\n", >>> +?????????????? xe_sriov_debugfs_provisioned_attr_name(res), gt_id, >>> ret)) >>> +??????? return ret; >>> + >>> +??? ret = validate_vf_ids(res, ranges, nr_ranges, num_vfs); >>> +??? if (ret) { >>> +??????? free(ranges); >>> +??????? return ret; >>> +??? } >>> + >>> +??? ret = validate_fair_allocation(res, ranges, nr_ranges); >>> +??? if (ret) { >>> +??????? free(ranges); >>> +??????? return ret; >>> +??? } >>> + >>> +??? free(ranges); >>> + >>> +??? return 0; >>> +} >>> + >>> +static void auto_provisioning_fair(int pf_fd, unsigned int num_vfs) >>> +{ >>> +??? enum xe_sriov_shared_res res; >>> +??? unsigned int gt; >>> +??? int fails = 0; >>> + >>> +??? igt_sriov_disable_driver_autoprobe(pf_fd); >>> +??? igt_sriov_enable_vfs(pf_fd, num_vfs); >>> + >>> +??? xe_for_each_gt(pf_fd, gt) { >>> +??????? xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) { >> >> I was OK with not defining dynamic subtest per GT to reduce the test >> execution time, but I had mixed feelings about not having separate >> subtests per resource. >> But the more I think about it, the more I'm convinced to your >> approach. For manual reproduction with specific resource we can >> define some test option taking the resource we want to validate (no >> need to implement it now, we can add it when needed). > > I don't have a strong opinion on this. The dynamic subtest logic > remains unchanged from the original version, except for the last > exclusive-ranges subtest, which was adjusted for consistency. We may > have fewer subtests/statistics, but each subtest should correctly > report if any resource "misbehaves". > > Thanks for review, > marcin >> >>> +??????????? if (igt_debug_on_f(check_fair_allocation(pf_fd, >>> num_vfs, gt, res), >>> +?????????????????????? "%s fair allocation failed on gt%u\n", >>> +?????????????????????? xe_sriov_shared_res_to_string(res), gt)) >>> +??????????????? fails++; >>> +??????? } >>> +??? } >>> + >>> +??? igt_sriov_disable_vfs(pf_fd); >>> + >>> +??? igt_fail_on_f(fails, "fair allocation failed\n"); >>> +} >>> + >>> +static void auto_provisioning_release(int pf_fd, unsigned int num_vfs) >>> +{ >>> +??? struct xe_sriov_provisioned_range *ranges; >>> +??? unsigned int nr_ranges; >>> +??? enum xe_sriov_shared_res res; >>> +??? unsigned int gt; >>> +??? int fails = 0; >>> + >>> +??? igt_sriov_disable_driver_autoprobe(pf_fd); >>> +??? igt_sriov_enable_vfs(pf_fd, num_vfs); >>> + >>> +??? xe_for_each_gt(pf_fd, gt) { >>> +??????? xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) { >>> +??????????? if >>> (igt_warn_on_f(xe_sriov_pf_debugfs_read_provisioned_ranges(pf_fd, res, >>> +????????????????????????????????????????????? gt, >>> +????????????????????????????????????????????? &ranges, >>> + &nr_ranges), >>> +????????????????????? "Failed read %s on gt%u\n", >>> + xe_sriov_debugfs_provisioned_attr_name(res), gt)) { >>> +??????????????? continue; >>> +??????????? } >>> + >>> +??????????? igt_warn_on_f(validate_vf_ids(res, ranges, nr_ranges, >>> num_vfs), >>> +????????????????????? "%s: VF IDs validation failed on gt%u\n", >>> + xe_sriov_debugfs_provisioned_attr_name(res), gt); >>> +??????????? free(ranges); >>> +??????? } >>> +??? } >>> + >>> +??? igt_sriov_disable_vfs(pf_fd); >>> + >>> +??? xe_for_each_gt(pf_fd, gt) { >>> +??????? xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) { >>> +??????????? if >>> (igt_debug_on_f(xe_sriov_pf_debugfs_read_provisioned_ranges(pf_fd, res, >>> +?????????????????????????????????????????????? gt, >>> +?????????????????????????????????????????????? &ranges, >>> + &nr_ranges), >>> +?????????????????????? "Failed read %s on gt%u\n", >>> + xe_sriov_debugfs_provisioned_attr_name(res), gt)) { >>> +??????????????? fails++; >>> +??????????????? continue; >>> +??????????? } >>> + >>> +??????????? if (igt_debug_on_f(nr_ranges, >>> +?????????????????????? "%s contains unexpected ranges on gt%u\n", >>> + xe_sriov_debugfs_provisioned_attr_name(res), gt)) { >>> +??????????????? fails++; >>> +??????????????? for (unsigned int i = 0; i < nr_ranges; i++) { >>> +??????????????????? igt_debug((res == XE_SRIOV_SHARED_RES_GGTT) ? >>> +??????????????????????????? "%s:VF%u: %lx-%lx\n" : >>> +??????????????????????????? "%s:VF%u %lu-%lu\n", >>> +????????????????????????? xe_sriov_shared_res_to_string(res), >>> +????????????????????????? ranges[i].vf_id, ranges[i].start, >>> ranges[i].end); >>> +??????????????? } >>> +??????????? } >>> +??????????? free(ranges); >>> +??????? } >>> +??? } >>> + >>> +??? igt_fail_on_f(fails, "shared resource release check failed\n"); >>> +} >>> + >>> +static int compare_ranges_by_start(const void *a, const void *b) >>> +{ >>> +??? const struct xe_sriov_provisioned_range *range_a = a; >>> +??? const struct xe_sriov_provisioned_range *range_b = b; >>> + >>> +??? if (range_a->start < range_b->start) >>> +??????? return -1; >>> +??? if (range_a->start > range_b->start) >>> +??????? return 1; >>> +??? return 0; >>> +} >>> + >>> +static int check_no_overlap(int pf_fd, unsigned int num_vfs, >>> unsigned int gt_id, >>> +??????????????? enum xe_sriov_shared_res res) >>> +{ >>> +??? struct xe_sriov_provisioned_range *ranges; >>> +??? unsigned int nr_ranges; >>> +??? int ret; >>> + >>> +??? ret = xe_sriov_pf_debugfs_read_provisioned_ranges(pf_fd, res, >>> gt_id, &ranges, &nr_ranges); >>> +??? if (ret) >>> +??????? return ret; >>> + >>> +??? ret = validate_vf_ids(res, ranges, nr_ranges, num_vfs); >>> +??? if (ret) { >>> +??????? free(ranges); >>> +??????? return ret; >>> +??? } >>> + >>> +??? igt_assert(ranges); >>> +??? qsort(ranges, nr_ranges, sizeof(ranges[0]), >>> compare_ranges_by_start); >>> + >>> +??? for (unsigned int i = 0; i < nr_ranges - 1; i++) >>> +??????? if (ranges[i].end >= ranges[i + 1].start) { >>> +??????????? igt_debug((res == XE_SRIOV_SHARED_RES_GGTT) ? >>> +????????????????? "Overlapping ranges: VF%u [%lx-%lx] and VF%u >>> [%lx- %lx]\n" : >>> +????????????????? "Overlapping ranges: VF%u [%lu-%lu] and VF%u >>> [%lu- %lu]\n", >>> +????????????????? ranges[i].vf_id, ranges[i].start, ranges[i].end, >>> +????????????????? ranges[i + 1].vf_id, ranges[i + 1].start, >>> ranges[i + 1].end); >>> +??????????? free(ranges); >>> +??????????? return -1; >>> +??????? } >>> + >>> +??? free(ranges); >>> + >>> +??? return 0; >>> +} >>> + >>> +static void auto_provisioning_exclusive_ranges(int pf_fd, unsigned >>> int num_vfs) >>> +{ >>> +??? enum xe_sriov_shared_res res; >>> +??? unsigned int gt; >>> +??? int fails = 0; >>> + >>> +??? igt_sriov_disable_driver_autoprobe(pf_fd); >>> +??? igt_sriov_enable_vfs(pf_fd, num_vfs); >>> + >>> +??? xe_for_each_gt(pf_fd, gt) { >>> +??????? xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) { >>> +??????????? if (res == XE_SRIOV_SHARED_RES_LMEM) >>> +??????????????? /* >>> +???????????????? * lmem_provisioned is not applicable for this test, >>> +???????????????? * as it does not expose ranges >>> +???????????????? */ >>> +??????????????? continue; >>> + >>> +??????????? if (igt_debug_on_f(check_no_overlap(pf_fd, num_vfs, gt, >>> res), >>> +?????????????????????? "%s overlap check failed on gt%u\n", >>> +?????????????????????? xe_sriov_shared_res_to_string(res), gt)) >>> +??????????????? fails++; >>> +??????? } >>> +??? } >>> + >>> +??? igt_sriov_disable_vfs(pf_fd); >>> + >>> +??? igt_fail_on_f(fails, "exclusive ranges check failed\n"); >>> +} >>> + >>> +igt_main >>> +{ >>> +??? enum xe_sriov_shared_res res; >>> +??? unsigned int gt; >>> +??? bool autoprobe; >>> +??? int pf_fd; >>> + >>> +??? igt_fixture { >>> +??????? struct xe_sriov_provisioned_range *ranges; >>> +??????? unsigned int nr_ranges; >>> +??????? int ret; >>> + >>> +??????? pf_fd = drm_open_driver(DRIVER_XE); >>> +??????? igt_require(igt_sriov_is_pf(pf_fd)); >>> +??????? igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0); >>> + >>> +??????? xe_for_each_gt(pf_fd, gt) { >>> +??????????? xe_sriov_for_each_provisionable_shared_res(res, pf_fd, >>> gt) { >>> +??????????????? ret = >>> xe_sriov_pf_debugfs_read_provisioned_ranges(pf_fd, res, gt, >>> +????????????????????????????????????????? &ranges, >>> +????????????????????????????????????????? &nr_ranges); >>> +??????????????? igt_skip_on_f(ret, "Failed read %s on gt%u (%d)\n", >>> + xe_sriov_debugfs_provisioned_attr_name(res), >>> +????????????????????????? gt, ret); >>> +??????????????? igt_skip_on_f(nr_ranges != 0, "Unexpected %s >>> content on gt%u\n", >>> + xe_sriov_debugfs_provisioned_attr_name(res), gt); >>> +??????????? } >>> +??????? } >>> +??????? autoprobe = igt_sriov_is_driver_autoprobe_enabled(pf_fd); >>> +??? } >>> + >>> +??? igt_describe("Verify that auto-provisioned resources are >>> allocated by PF driver in fairly manner"); >>> +??? igt_subtest_with_dynamic("auto-provisioning-fair") { >>> +??????? for_random_sriov_num_vfs(pf_fd, num_vfs) { >>> +??????????? igt_dynamic_f("numvfs-random") { >>> +??????????????? igt_debug("numvfs=%u\n", num_vfs); >>> +??????????????? auto_provisioning_fair(pf_fd, num_vfs); >>> +??????????? } >>> +??????? } >>> +??? } >>> + >>> +??? igt_describe("Verify that auto-provisioned resources are >>> released once VFs are disabled"); >>> + igt_subtest_with_dynamic("auto-provisioned-resources-released-on- >>> vfs-disabling") { >>> +??????? for_random_sriov_num_vfs(pf_fd, num_vfs) { >>> +??????????? igt_dynamic_f("numvfs-random") { >>> +??????????????? igt_debug("numvfs=%u\n", num_vfs); >>> +??????????????? auto_provisioning_release(pf_fd, num_vfs); >>> +??????????? } >>> +??????? } >>> +??? } >>> + >>> +??? igt_describe("Verify that ranges of auto-provisioned resources >>> are exclusive"); >>> +??? igt_subtest_with_dynamic_f("exclusive-ranges") { >>> +??????? unsigned int total_vfs = igt_sriov_get_total_vfs(pf_fd); >>> + >>> +??????? igt_skip_on(total_vfs < 2); >>> + >>> +??????? for_random_sriov_vf_in_range(pf_fd, 2, total_vfs, num_vfs) { >>> +??????????? igt_dynamic_f("numvfs-random") { >>> +??????????????? igt_debug("numvfs=%u\n", num_vfs); >>> +??????????????? auto_provisioning_exclusive_ranges(pf_fd, num_vfs); >>> +??????????? } >>> +??????? } >>> +??? } >>> + >>> +??? igt_fixture { >>> +??????? igt_sriov_disable_vfs(pf_fd); >>> +??????? /* abort to avoid execution of next tests with enabled VFs */ >>> +??????? igt_abort_on_f(igt_sriov_get_enabled_vfs(pf_fd) > 0, >>> "Failed to disable VF(s)"); >>> +??????? autoprobe ? igt_sriov_enable_driver_autoprobe(pf_fd) : >>> +??????????????? igt_sriov_disable_driver_autoprobe(pf_fd); >>> +??????? igt_abort_on_f(autoprobe != >>> igt_sriov_is_driver_autoprobe_enabled(pf_fd), >>> +?????????????????? "Failed to restore sriov_drivers_autoprobe >>> value\n"); >>> +??????? drm_close_driver(pf_fd); >>> +??? } >>> +} >>> diff --git a/tests/meson.build b/tests/meson.build >>> index 2724c7a9a..01076f401 100644 >>> --- a/tests/meson.build >>> +++ b/tests/meson.build >>> @@ -315,6 +315,7 @@ intel_xe_progs = [ >>> ????? 'xe_vm', >>> ????? 'xe_waitfence', >>> ????? 'xe_spin_batch', >>> +??? 'xe_sriov_auto_provisioning', >>> ????? 'xe_sriov_flr', >>> ????? 'xe_sysfs_defaults', >>> ????? 'xe_sysfs_preempt_timeout', > From matthew.auld at intel.com Tue Jan 7 13:35:41 2025 From: matthew.auld at intel.com (Matthew Auld) Date: Tue, 7 Jan 2025 13:35:41 +0000 Subject: [PATCH V7 4/4] tests/xe/mmap: add tests for pci mem barrier In-Reply-To: <20250106151441.2598949-5-tejas.upadhyay@intel.com> References: <20250106151441.2598949-1-tejas.upadhyay@intel.com> <20250106151441.2598949-5-tejas.upadhyay@intel.com> Message-ID: <610855ba-d86b-4a95-87c0-6c45616c3604@intel.com> On 06/01/2025 15:14, Tejas Upadhyay wrote: > We want to make sure that mmap do direct mapping of physical > page at doorbell space and whole page is accessible in order > to use pci memory barrier effect effectively. > > Following subtests are added, > ./build/tests/xe_mmap --r pci-membarrier > ./build/tests/xe_mmap --r pci-membarrier-parallel > ./build/tests/xe_mmap --r pci-membarrier-bad-pagesize > ./build/tests/xe_mmap --r pci-membarrier-bad-object > > V7(MAuld): > In parallel test : > - check values with 1 client write and other read in loop > - Modify seed and update random number at every test > V6(MAuld): > - checking differnet cross client value is enough in parallel test > V5: > - Add pci-membarrier-parallel test > V3(MAuld): > - Check if pci memory barrier is supported > V2(MAuld) > - use do_ioctl and replace igt_subtest_f with igt_subtest > - Remove unused define > > Signed-off-by: Tejas Upadhyay > --- > tests/intel/xe_mmap.c | 171 ++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 171 insertions(+) > > diff --git a/tests/intel/xe_mmap.c b/tests/intel/xe_mmap.c > index d818cc2f8..9de7e03c6 100644 > --- a/tests/intel/xe_mmap.c > +++ b/tests/intel/xe_mmap.c > @@ -64,6 +64,117 @@ test_mmap(int fd, uint32_t placement, uint32_t flags) > gem_close(fd, bo); > } > > +#define PAGE_SIZE 4096 > + > +/** > + * SUBTEST: pci-membarrier > + * Description: create pci memory barrier with write on defined mmap offset. > + * Test category: functionality test > + * > + */ > +static void test_pci_membarrier(int xe) > +{ > + uint64_t flags = MAP_SHARED; > + unsigned int prot = PROT_WRITE; > + uint32_t *ptr; > + uint64_t size = PAGE_SIZE; > + struct timespec tv; > + struct drm_xe_gem_mmap_offset mmo = { > + .handle = 0, > + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, > + }; > + > + do_ioctl(xe, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo); > + ptr = mmap(NULL, size, prot, flags, xe, mmo.offset); > + igt_assert(ptr != MAP_FAILED); > + > + /* Check whole page for any errors, also check as > + * we should not read written values back > + */ > + for (int i = 0; i < size / sizeof(*ptr); i++) { > + /* It is expected unconfigured doorbell space > + * will return read value 0xdeadbeef > + */ > + igt_assert_eq_u32(READ_ONCE(ptr[i]), 0xdeadbeef); > + > + igt_gettime(&tv); > + ptr[i] = i; > + if (READ_ONCE(ptr[i]) == i) { > + while (READ_ONCE(ptr[i]) == i) > + ; > + igt_info("fd:%d value retained for %"PRId64"ns pos:%d\n", > + xe, igt_nsec_elapsed(&tv), i); > + } > + igt_assert_neq(READ_ONCE(ptr[i]), i); > + } > + > + munmap(ptr, size); > +} > + > +/** > + * SUBTEST: pci-membarrier-parallel > + * Description: create parallel pci memory barrier with write on defined mmap offset. > + * Test category: functionality test > + * > + */ > +static void test_pci_membarrier_parallel(int xe, int child, unsigned int i) > +{ > + uint64_t flags = MAP_SHARED; > + unsigned int prot = PROT_WRITE; > + uint32_t *ptr; > + uint64_t size = PAGE_SIZE; > + struct drm_xe_gem_mmap_offset mmo = { > + .handle = 0, > + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, > + }; > + int value; > + > + do_ioctl(xe, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo); > + ptr = mmap(NULL, size, prot, flags, xe, mmo.offset); > + igt_assert(ptr != MAP_FAILED); > + > + /* It is expected unconfigured doorbell space > + * will return read value 0xdeadbeef > + */ > + igt_assert_eq_u32(READ_ONCE(ptr[i]), 0xdeadbeef); > + > + igt_until_timeout(5) { > + /* Check clients should not be able to see each other */ > + if (child != -1) { > + value = i + 1; > + igt_assert_neq(READ_ONCE(ptr[i]), i); > + } else { > + value = i; > + igt_assert_neq(READ_ONCE(ptr[i]), i + 1); > + } > + > + WRITE_ONCE(ptr[i], value); > + } > + igt_assert_eq_u32(READ_ONCE(ptr[i]), 0xdeadbeef); Does this need the retry loop as per above? > + > + munmap(ptr, size); > +} > + > +/** > + * SUBTEST: pci-membarrier-bad-pagesize > + * Description: Test mmap offset with bad pagesize for pci membarrier. > + * Test category: negative test > + * > + */ > +static void test_bad_pagesize_for_pcimem(int fd) > +{ > + uint32_t *map; > + uint64_t page_size = PAGE_SIZE * 2; > + struct drm_xe_gem_mmap_offset mmo = { > + .handle = 0, > + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, > + }; > + > + do_ioctl(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo); > + map = mmap(NULL, page_size, PROT_WRITE, MAP_SHARED, fd, mmo.offset); > + igt_assert(map == MAP_FAILED); > +} > + > /** > * SUBTEST: bad-flags > * Description: Test mmap offset with bad flags. > @@ -126,6 +237,25 @@ static void test_bad_object(int fd) > do_ioctl_err(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo, ENOENT); > } > > +/** > + * SUBTEST: pci-membarrier-bad-object > + * Description: Test mmap offset with bad object for pci mem barrier. > + * Test category: negative test > + * > + */ > +static void test_bad_object_for_pcimem(int fd) > +{ > + uint64_t size = xe_get_default_alignment(fd); > + struct drm_xe_gem_mmap_offset mmo = { > + .handle = xe_bo_create(fd, 0, size, > + vram_if_possible(fd, 0), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM), > + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, > + }; > + > + do_ioctl_err(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo, EINVAL); > +} > + > static jmp_buf jmp; > > __noreturn static void sigtrap(int sig) > @@ -260,6 +390,16 @@ static void test_cpu_caching(int fd) > assert_caching(fd, system_memory(fd), 0, DRM_XE_GEM_CPU_CACHING_WC + 1, true); > } > > +static bool is_pci_membarrier_supported(int fd) > +{ > + struct drm_xe_gem_mmap_offset mmo = { > + .handle = 0, > + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, > + }; > + > + return (igt_ioctl(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo) == 0); > +} > + > igt_main > { > int fd; > @@ -278,6 +418,32 @@ igt_main > test_mmap(fd, vram_memory(fd, 0) | system_memory(fd), > DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > > + igt_subtest("pci-membarrier") { > + igt_require(is_pci_membarrier_supported(fd)); > + test_pci_membarrier(fd); > + } > + > + igt_subtest("pci-membarrier-parallel") { > + int xe = drm_open_driver(DRIVER_XE); Move this below the require? Otherwise, Reviewed-by: Matthew Auld > + unsigned int i; > + uint32_t *ptr; > +> + igt_require(is_pci_membarrier_supported(fd)); > + srand(time(0)); > + i = rand() % (PAGE_SIZE / sizeof(*ptr)); > + igt_fork(child, 1) > + test_pci_membarrier_parallel(xe, child, i); > + test_pci_membarrier_parallel(fd, -1, i); > + igt_waitchildren(); > + > + close(xe); > + } > + > + igt_subtest("pci-membarrier-bad-pagesize") { > + igt_require(is_pci_membarrier_supported(fd)); > + test_bad_pagesize_for_pcimem(fd); > + } > + > igt_subtest("bad-flags") > test_bad_flags(fd); > > @@ -287,6 +453,11 @@ igt_main > igt_subtest("bad-object") > test_bad_object(fd); > > + igt_subtest("pci-membarrier-bad-object") { > + igt_require(is_pci_membarrier_supported(fd)); > + test_bad_object_for_pcimem(fd); > + } > + > igt_subtest("small-bar") { > igt_require(xe_visible_vram_size(fd, 0)); > igt_require(xe_visible_vram_size(fd, 0) < xe_vram_size(fd, 0)); From tejas.upadhyay at intel.com Tue Jan 7 13:40:22 2025 From: tejas.upadhyay at intel.com (Upadhyay, Tejas) Date: Tue, 7 Jan 2025 13:40:22 +0000 Subject: [PATCH V7 4/4] tests/xe/mmap: add tests for pci mem barrier In-Reply-To: <610855ba-d86b-4a95-87c0-6c45616c3604@intel.com> References: <20250106151441.2598949-1-tejas.upadhyay@intel.com> <20250106151441.2598949-5-tejas.upadhyay@intel.com> <610855ba-d86b-4a95-87c0-6c45616c3604@intel.com> Message-ID: > -----Original Message----- > From: Auld, Matthew > Sent: Tuesday, January 7, 2025 7:06 PM > To: Upadhyay, Tejas ; igt- > dev at lists.freedesktop.org; intel-xe at lists.freedesktop.org > Subject: Re: [PATCH V7 4/4] tests/xe/mmap: add tests for pci mem barrier > > On 06/01/2025 15:14, Tejas Upadhyay wrote: > > We want to make sure that mmap do direct mapping of physical page at > > doorbell space and whole page is accessible in order to use pci memory > > barrier effect effectively. > > > > Following subtests are added, > > ./build/tests/xe_mmap --r pci-membarrier ./build/tests/xe_mmap --r > > pci-membarrier-parallel ./build/tests/xe_mmap --r > > pci-membarrier-bad-pagesize ./build/tests/xe_mmap --r > > pci-membarrier-bad-object > > > > V7(MAuld): > > In parallel test : > > - check values with 1 client write and other read in loop > > - Modify seed and update random number at every test > > V6(MAuld): > > - checking differnet cross client value is enough in parallel test > > V5: > > - Add pci-membarrier-parallel test > > V3(MAuld): > > - Check if pci memory barrier is supported > > V2(MAuld) > > - use do_ioctl and replace igt_subtest_f with igt_subtest > > - Remove unused define > > > > Signed-off-by: Tejas Upadhyay > > --- > > tests/intel/xe_mmap.c | 171 > ++++++++++++++++++++++++++++++++++++++++++ > > 1 file changed, 171 insertions(+) > > > > diff --git a/tests/intel/xe_mmap.c b/tests/intel/xe_mmap.c index > > d818cc2f8..9de7e03c6 100644 > > --- a/tests/intel/xe_mmap.c > > +++ b/tests/intel/xe_mmap.c > > @@ -64,6 +64,117 @@ test_mmap(int fd, uint32_t placement, uint32_t > flags) > > gem_close(fd, bo); > > } > > > > +#define PAGE_SIZE 4096 > > + > > +/** > > + * SUBTEST: pci-membarrier > > + * Description: create pci memory barrier with write on defined mmap > offset. > > + * Test category: functionality test > > + * > > + */ > > +static void test_pci_membarrier(int xe) { > > + uint64_t flags = MAP_SHARED; > > + unsigned int prot = PROT_WRITE; > > + uint32_t *ptr; > > + uint64_t size = PAGE_SIZE; > > + struct timespec tv; > > + struct drm_xe_gem_mmap_offset mmo = { > > + .handle = 0, > > + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, > > + }; > > + > > + do_ioctl(xe, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo); > > + ptr = mmap(NULL, size, prot, flags, xe, mmo.offset); > > + igt_assert(ptr != MAP_FAILED); > > + > > + /* Check whole page for any errors, also check as > > + * we should not read written values back > > + */ > > + for (int i = 0; i < size / sizeof(*ptr); i++) { > > + /* It is expected unconfigured doorbell space > > + * will return read value 0xdeadbeef > > + */ > > + igt_assert_eq_u32(READ_ONCE(ptr[i]), 0xdeadbeef); > > + > > + igt_gettime(&tv); > > + ptr[i] = i; > > + if (READ_ONCE(ptr[i]) == i) { > > + while (READ_ONCE(ptr[i]) == i) > > + ; > > + igt_info("fd:%d value retained for %"PRId64"ns > pos:%d\n", > > + xe, igt_nsec_elapsed(&tv), i); > > + } > > + igt_assert_neq(READ_ONCE(ptr[i]), i); > > + } > > + > > + munmap(ptr, size); > > +} > > + > > +/** > > + * SUBTEST: pci-membarrier-parallel > > + * Description: create parallel pci memory barrier with write on defined > mmap offset. > > + * Test category: functionality test > > + * > > + */ > > +static void test_pci_membarrier_parallel(int xe, int child, unsigned > > +int i) { > > + uint64_t flags = MAP_SHARED; > > + unsigned int prot = PROT_WRITE; > > + uint32_t *ptr; > > + uint64_t size = PAGE_SIZE; > > + struct drm_xe_gem_mmap_offset mmo = { > > + .handle = 0, > > + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, > > + }; > > + int value; > > + > > + do_ioctl(xe, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo); > > + ptr = mmap(NULL, size, prot, flags, xe, mmo.offset); > > + igt_assert(ptr != MAP_FAILED); > > + > > + /* It is expected unconfigured doorbell space > > + * will return read value 0xdeadbeef > > + */ > > + igt_assert_eq_u32(READ_ONCE(ptr[i]), 0xdeadbeef); > > + > > + igt_until_timeout(5) { > > + /* Check clients should not be able to see each other */ > > + if (child != -1) { > > + value = i + 1; > > + igt_assert_neq(READ_ONCE(ptr[i]), i); > > + } else { > > + value = i; > > + igt_assert_neq(READ_ONCE(ptr[i]), i + 1); > > + } > > + > > + WRITE_ONCE(ptr[i], value); > > + } > > + igt_assert_eq_u32(READ_ONCE(ptr[i]), 0xdeadbeef); > > Does this need the retry loop as per above? Just making sure, after all we have written, we are not reading back anything else than 0xdeadbeef. > > > + > > + munmap(ptr, size); > > +} > > + > > +/** > > + * SUBTEST: pci-membarrier-bad-pagesize > > + * Description: Test mmap offset with bad pagesize for pci membarrier. > > + * Test category: negative test > > + * > > + */ > > +static void test_bad_pagesize_for_pcimem(int fd) { > > + uint32_t *map; > > + uint64_t page_size = PAGE_SIZE * 2; > > + struct drm_xe_gem_mmap_offset mmo = { > > + .handle = 0, > > + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, > > + }; > > + > > + do_ioctl(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo); > > + map = mmap(NULL, page_size, PROT_WRITE, MAP_SHARED, fd, > mmo.offset); > > + igt_assert(map == MAP_FAILED); > > +} > > + > > /** > > * SUBTEST: bad-flags > > * Description: Test mmap offset with bad flags. > > @@ -126,6 +237,25 @@ static void test_bad_object(int fd) > > do_ioctl_err(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo, > ENOENT); > > } > > > > +/** > > + * SUBTEST: pci-membarrier-bad-object > > + * Description: Test mmap offset with bad object for pci mem barrier. > > + * Test category: negative test > > + * > > + */ > > +static void test_bad_object_for_pcimem(int fd) { > > + uint64_t size = xe_get_default_alignment(fd); > > + struct drm_xe_gem_mmap_offset mmo = { > > + .handle = xe_bo_create(fd, 0, size, > > + vram_if_possible(fd, 0), > > + > DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM), > > + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, > > + }; > > + > > + do_ioctl_err(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo, > EINVAL); } > > + > > static jmp_buf jmp; > > > > __noreturn static void sigtrap(int sig) @@ -260,6 +390,16 @@ static > > void test_cpu_caching(int fd) > > assert_caching(fd, system_memory(fd), 0, > DRM_XE_GEM_CPU_CACHING_WC + 1, true); > > } > > > > +static bool is_pci_membarrier_supported(int fd) { > > + struct drm_xe_gem_mmap_offset mmo = { > > + .handle = 0, > > + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, > > + }; > > + > > + return (igt_ioctl(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo) == > 0); } > > + > > igt_main > > { > > int fd; > > @@ -278,6 +418,32 @@ igt_main > > test_mmap(fd, vram_memory(fd, 0) | system_memory(fd), > > > DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > > > > + igt_subtest("pci-membarrier") { > > + igt_require(is_pci_membarrier_supported(fd)); > > + test_pci_membarrier(fd); > > + } > > + > > + igt_subtest("pci-membarrier-parallel") { > > + int xe = drm_open_driver(DRIVER_XE); > > Move this below the require? Sure, will move. Tejas > > Otherwise, > Reviewed-by: Matthew Auld > > > + unsigned int i; > > + uint32_t *ptr; > > +> + igt_require(is_pci_membarrier_supported(fd)); > > + srand(time(0)); > > + i = rand() % (PAGE_SIZE / sizeof(*ptr)); > > + igt_fork(child, 1) > > + test_pci_membarrier_parallel(xe, child, i); > > + test_pci_membarrier_parallel(fd, -1, i); > > + igt_waitchildren(); > > + > > + close(xe); > > + } > > + > > + igt_subtest("pci-membarrier-bad-pagesize") { > > + igt_require(is_pci_membarrier_supported(fd)); > > + test_bad_pagesize_for_pcimem(fd); > > + } > > + > > igt_subtest("bad-flags") > > test_bad_flags(fd); > > > > @@ -287,6 +453,11 @@ igt_main > > igt_subtest("bad-object") > > test_bad_object(fd); > > > > + igt_subtest("pci-membarrier-bad-object") { > > + igt_require(is_pci_membarrier_supported(fd)); > > + test_bad_object_for_pcimem(fd); > > + } > > + > > igt_subtest("small-bar") { > > igt_require(xe_visible_vram_size(fd, 0)); > > igt_require(xe_visible_vram_size(fd, 0) < xe_vram_size(fd, 0)); From tejas.upadhyay at intel.com Tue Jan 7 14:00:19 2025 From: tejas.upadhyay at intel.com (Tejas Upadhyay) Date: Tue, 7 Jan 2025 19:30:19 +0530 Subject: [PATCH V8 0/4] Add pci_membarrier test in xe_mmap Message-ID: <20250107140023.2940684-1-tejas.upadhyay@intel.com> Series adds, 1. Remove all local defines which are landed from upstream kernel include. Keeping include in igt_gt.h as its common header for all such defines. 2. New flag in mmap_offset ioctl to provide query support for special offset. 3. Adds pci_membarrier subtests xe_mmap test Note: Similar drm-uapi change made here is under review in KMD as well V8: - Move open driver below igt_require V7: - Modify parallel test to update random number every test - Update cross client value check V6: - Modify parallel test to check only diff cross client value V5: - Add pci-membarrier-parallel subtest V4: - Check if pci memory barrier is supported Tejas Upadhyay (4): lib/i915_drm_local: Remove macros added via merged kernel include/drm-uapi-experimental: Move i915_drm_local.h to drm-uapi-experimental include/intel_drm_local.h: Add DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER tests/xe/mmap: add tests for pci mem barrier .../drm-uapi-experimental/intel_drm_local.h | 29 +++ lib/i915/gem_scheduler.c | 1 - lib/i915/i915_drm_local.h | 6 - lib/i915/intel_memory_region.h | 1 - lib/igt_gt.h | 2 +- tests/intel/xe_mmap.c | 172 ++++++++++++++++++ tools/i915-perf/i915_perf_recorder.c | 2 - 7 files changed, 202 insertions(+), 11 deletions(-) create mode 100644 include/drm-uapi-experimental/intel_drm_local.h -- 2.34.1 From tejas.upadhyay at intel.com Tue Jan 7 14:00:20 2025 From: tejas.upadhyay at intel.com (Tejas Upadhyay) Date: Tue, 7 Jan 2025 19:30:20 +0530 Subject: [PATCH V8 1/4] lib/i915_drm_local: Remove macros added via merged kernel In-Reply-To: <20250107140023.2940684-1-tejas.upadhyay@intel.com> References: <20250107140023.2940684-1-tejas.upadhyay@intel.com> Message-ID: <20250107140023.2940684-2-tejas.upadhyay@intel.com> The uapi on the kernel side is merged, I915_ENGINE_CLASS_COMPUTE, DRM_I915_PERF_PROP_OA_ENGINE_CLASS, DRM_I915_QUERY_GEOMETRY_SUBSLICES and DRM_I915_PERF_PROP_OA_ENGINE_INSTANCE is part of drm-next, remove this. Reviewed-by: Matthew Auld Signed-off-by: Tejas Upadhyay --- lib/i915/i915_drm_local.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/i915/i915_drm_local.h b/lib/i915/i915_drm_local.h index af0176500..dd646aedf 100644 --- a/lib/i915/i915_drm_local.h +++ b/lib/i915/i915_drm_local.h @@ -19,12 +19,6 @@ extern "C" { * or local_ prefix and without any #ifndef's. Attempt should be made to * clean these up when kernel uapi headers are sync'd. */ -#define I915_ENGINE_CLASS_COMPUTE 4 - -#define DRM_I915_QUERY_GEOMETRY_SUBSLICES 6 - -#define DRM_I915_PERF_PROP_OA_ENGINE_CLASS 9 -#define DRM_I915_PERF_PROP_OA_ENGINE_INSTANCE 10 #if defined(__cplusplus) } -- 2.34.1 From tejas.upadhyay at intel.com Tue Jan 7 14:00:21 2025 From: tejas.upadhyay at intel.com (Tejas Upadhyay) Date: Tue, 7 Jan 2025 19:30:21 +0530 Subject: [PATCH V8 2/4] include/drm-uapi-experimental: Move i915_drm_local.h to drm-uapi-experimental In-Reply-To: <20250107140023.2940684-1-tejas.upadhyay@intel.com> References: <20250107140023.2940684-1-tejas.upadhyay@intel.com> Message-ID: <20250107140023.2940684-3-tejas.upadhyay@intel.com> i915_drm_local.h is for temporary local addition of defines before KMD is merged upstream and defines replaced with it. We have similar local defines requirement for xe as well for some cases. So for common use move i915_drm_local.h to drm-uapi-experimental/ and rename it to intel_drm_local.h V4(MAuld) - Update copyright content V2(MAuld) - Remove include as it is empty now - Add details in commit message Reviewed-by: Matthew Auld Signed-off-by: Tejas Upadhyay --- .../drm-uapi-experimental/intel_drm_local.h | 27 +++++++++++++++++++ lib/i915/gem_scheduler.c | 1 - lib/i915/intel_memory_region.h | 1 - lib/igt_gt.h | 2 +- tools/i915-perf/i915_perf_recorder.c | 2 -- 5 files changed, 28 insertions(+), 5 deletions(-) create mode 100644 include/drm-uapi-experimental/intel_drm_local.h diff --git a/include/drm-uapi-experimental/intel_drm_local.h b/include/drm-uapi-experimental/intel_drm_local.h new file mode 100644 index 000000000..b48c9e219 --- /dev/null +++ b/include/drm-uapi-experimental/intel_drm_local.h @@ -0,0 +1,27 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright ? 2024 Intel Corporation + */ +#ifndef _INTEL_DRM_LOCAL_H_ +#define _INTEL_DRM_LOCAL_H_ + +#if defined(__cplusplus) +extern "C" { +#endif + +/* + * It is necessary on occasion to add uapi declarations to IGT before they + * appear in imported kernel uapi headers. This header is provided for this + * purpose. + + * Early uapi declarations should be added here exactly as they are + * expected to appear in the kernel uapi headers, i.e. without the LOCAL_ + * or local_ prefix and without any #ifndef's. Attempt should be made to + * clean these up when kernel uapi headers are sync'd. + */ + +#if defined(__cplusplus) +} +#endif + +#endif /* _INTEL_DRM_LOCAL_H_ */ diff --git a/lib/i915/gem_scheduler.c b/lib/i915/gem_scheduler.c index 0087df902..e80c775af 100644 --- a/lib/i915/gem_scheduler.c +++ b/lib/i915/gem_scheduler.c @@ -28,7 +28,6 @@ #include "igt_core.h" #include "ioctl_wrappers.h" -#include "i915/i915_drm_local.h" #include "i915/gem_scheduler.h" #include "i915/gem_submission.h" diff --git a/lib/i915/intel_memory_region.h b/lib/i915/intel_memory_region.h index 9e24bd8fb..4641b18c1 100644 --- a/lib/i915/intel_memory_region.h +++ b/lib/i915/intel_memory_region.h @@ -22,7 +22,6 @@ */ #include "i915_drm.h" #include "igt_collection.h" -#include "i915_drm_local.h" #ifndef INTEL_MEMORY_REGION_H #define INTEL_MEMORY_REGION_H diff --git a/lib/igt_gt.h b/lib/igt_gt.h index d3213123d..82ed22be7 100644 --- a/lib/igt_gt.h +++ b/lib/igt_gt.h @@ -24,11 +24,11 @@ #ifndef IGT_GT_H #define IGT_GT_H +#include "drm-uapi-experimental/intel_drm_local.h" #include "igt_debugfs.h" #include "igt_dummyload.h" #include "igt_core.h" -#include "i915/i915_drm_local.h" #include "i915_drm.h" struct pci_device; diff --git a/tools/i915-perf/i915_perf_recorder.c b/tools/i915-perf/i915_perf_recorder.c index ca4354832..3f3692dc8 100644 --- a/tools/i915-perf/i915_perf_recorder.c +++ b/tools/i915-perf/i915_perf_recorder.c @@ -44,8 +44,6 @@ #include -#include "i915/i915_drm_local.h" - #include "igt_core.h" #include "intel_chipset.h" #include "i915/perf.h" -- 2.34.1 From tejas.upadhyay at intel.com Tue Jan 7 14:00:22 2025 From: tejas.upadhyay at intel.com (Tejas Upadhyay) Date: Tue, 7 Jan 2025 19:30:22 +0530 Subject: [PATCH V8 3/4] include/intel_drm_local.h: Add DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER In-Reply-To: <20250107140023.2940684-1-tejas.upadhyay@intel.com> References: <20250107140023.2940684-1-tejas.upadhyay@intel.com> Message-ID: <20250107140023.2940684-4-tejas.upadhyay@intel.com> For now dump into intel_drm_local.h. Once the uapi on the kernel side is merged, and is part of drm-next, we can sync the kernel headers and remove this. Reviewed-by: Matthew Auld Signed-off-by: Tejas Upadhyay --- include/drm-uapi-experimental/intel_drm_local.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/drm-uapi-experimental/intel_drm_local.h b/include/drm-uapi-experimental/intel_drm_local.h index b48c9e219..40e8dcc43 100644 --- a/include/drm-uapi-experimental/intel_drm_local.h +++ b/include/drm-uapi-experimental/intel_drm_local.h @@ -20,6 +20,8 @@ extern "C" { * clean these up when kernel uapi headers are sync'd. */ +#define DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER (1 << 0) + #if defined(__cplusplus) } #endif -- 2.34.1 From tejas.upadhyay at intel.com Tue Jan 7 14:00:23 2025 From: tejas.upadhyay at intel.com (Tejas Upadhyay) Date: Tue, 7 Jan 2025 19:30:23 +0530 Subject: [PATCH V8 4/4] tests/xe/mmap: add tests for pci mem barrier In-Reply-To: <20250107140023.2940684-1-tejas.upadhyay@intel.com> References: <20250107140023.2940684-1-tejas.upadhyay@intel.com> Message-ID: <20250107140023.2940684-5-tejas.upadhyay@intel.com> We want to make sure that mmap do direct mapping of physical page at doorbell space and whole page is accessible in order to use pci memory barrier effect effectively. Following subtests are added, ./build/tests/xe_mmap --r pci-membarrier ./build/tests/xe_mmap --r pci-membarrier-parallel ./build/tests/xe_mmap --r pci-membarrier-bad-pagesize ./build/tests/xe_mmap --r pci-membarrier-bad-object V8(MAuld): - Move open driver below igt_require V7(MAuld): In parallel test : - check values with 1 client write and other read in loop - Modify seed and update random number at every test V6(MAuld): - checking differnet cross client value is enough in parallel test V5: - Add pci-membarrier-parallel test V3(MAuld): - Check if pci memory barrier is supported V2(MAuld) - use do_ioctl and replace igt_subtest_f with igt_subtest - Remove unused define Reviewed-by: Matthew Auld Signed-off-by: Tejas Upadhyay --- tests/intel/xe_mmap.c | 172 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 172 insertions(+) diff --git a/tests/intel/xe_mmap.c b/tests/intel/xe_mmap.c index d818cc2f8..72dc16fc7 100644 --- a/tests/intel/xe_mmap.c +++ b/tests/intel/xe_mmap.c @@ -64,6 +64,117 @@ test_mmap(int fd, uint32_t placement, uint32_t flags) gem_close(fd, bo); } +#define PAGE_SIZE 4096 + +/** + * SUBTEST: pci-membarrier + * Description: create pci memory barrier with write on defined mmap offset. + * Test category: functionality test + * + */ +static void test_pci_membarrier(int xe) +{ + uint64_t flags = MAP_SHARED; + unsigned int prot = PROT_WRITE; + uint32_t *ptr; + uint64_t size = PAGE_SIZE; + struct timespec tv; + struct drm_xe_gem_mmap_offset mmo = { + .handle = 0, + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, + }; + + do_ioctl(xe, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo); + ptr = mmap(NULL, size, prot, flags, xe, mmo.offset); + igt_assert(ptr != MAP_FAILED); + + /* Check whole page for any errors, also check as + * we should not read written values back + */ + for (int i = 0; i < size / sizeof(*ptr); i++) { + /* It is expected unconfigured doorbell space + * will return read value 0xdeadbeef + */ + igt_assert_eq_u32(READ_ONCE(ptr[i]), 0xdeadbeef); + + igt_gettime(&tv); + ptr[i] = i; + if (READ_ONCE(ptr[i]) == i) { + while (READ_ONCE(ptr[i]) == i) + ; + igt_info("fd:%d value retained for %"PRId64"ns pos:%d\n", + xe, igt_nsec_elapsed(&tv), i); + } + igt_assert_neq(READ_ONCE(ptr[i]), i); + } + + munmap(ptr, size); +} + +/** + * SUBTEST: pci-membarrier-parallel + * Description: create parallel pci memory barrier with write on defined mmap offset. + * Test category: functionality test + * + */ +static void test_pci_membarrier_parallel(int xe, int child, unsigned int i) +{ + uint64_t flags = MAP_SHARED; + unsigned int prot = PROT_WRITE; + uint32_t *ptr; + uint64_t size = PAGE_SIZE; + struct drm_xe_gem_mmap_offset mmo = { + .handle = 0, + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, + }; + int value; + + do_ioctl(xe, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo); + ptr = mmap(NULL, size, prot, flags, xe, mmo.offset); + igt_assert(ptr != MAP_FAILED); + + /* It is expected unconfigured doorbell space + * will return read value 0xdeadbeef + */ + igt_assert_eq_u32(READ_ONCE(ptr[i]), 0xdeadbeef); + + igt_until_timeout(5) { + /* Check clients should not be able to see each other */ + if (child != -1) { + value = i + 1; + igt_assert_neq(READ_ONCE(ptr[i]), i); + } else { + value = i; + igt_assert_neq(READ_ONCE(ptr[i]), i + 1); + } + + WRITE_ONCE(ptr[i], value); + } + igt_assert_eq_u32(READ_ONCE(ptr[i]), 0xdeadbeef); + + munmap(ptr, size); +} + +/** + * SUBTEST: pci-membarrier-bad-pagesize + * Description: Test mmap offset with bad pagesize for pci membarrier. + * Test category: negative test + * + */ +static void test_bad_pagesize_for_pcimem(int fd) +{ + uint32_t *map; + uint64_t page_size = PAGE_SIZE * 2; + struct drm_xe_gem_mmap_offset mmo = { + .handle = 0, + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, + }; + + do_ioctl(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo); + map = mmap(NULL, page_size, PROT_WRITE, MAP_SHARED, fd, mmo.offset); + igt_assert(map == MAP_FAILED); +} + /** * SUBTEST: bad-flags * Description: Test mmap offset with bad flags. @@ -126,6 +237,25 @@ static void test_bad_object(int fd) do_ioctl_err(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo, ENOENT); } +/** + * SUBTEST: pci-membarrier-bad-object + * Description: Test mmap offset with bad object for pci mem barrier. + * Test category: negative test + * + */ +static void test_bad_object_for_pcimem(int fd) +{ + uint64_t size = xe_get_default_alignment(fd); + struct drm_xe_gem_mmap_offset mmo = { + .handle = xe_bo_create(fd, 0, size, + vram_if_possible(fd, 0), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM), + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, + }; + + do_ioctl_err(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo, EINVAL); +} + static jmp_buf jmp; __noreturn static void sigtrap(int sig) @@ -260,6 +390,16 @@ static void test_cpu_caching(int fd) assert_caching(fd, system_memory(fd), 0, DRM_XE_GEM_CPU_CACHING_WC + 1, true); } +static bool is_pci_membarrier_supported(int fd) +{ + struct drm_xe_gem_mmap_offset mmo = { + .handle = 0, + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, + }; + + return (igt_ioctl(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo) == 0); +} + igt_main { int fd; @@ -278,6 +418,33 @@ igt_main test_mmap(fd, vram_memory(fd, 0) | system_memory(fd), DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + igt_subtest("pci-membarrier") { + igt_require(is_pci_membarrier_supported(fd)); + test_pci_membarrier(fd); + } + + igt_subtest("pci-membarrier-parallel") { + int xe; + unsigned int i; + uint32_t *ptr; + + igt_require(is_pci_membarrier_supported(fd)); + xe = drm_open_driver(DRIVER_XE); + srand(time(0)); + i = rand() % (PAGE_SIZE / sizeof(*ptr)); + igt_fork(child, 1) + test_pci_membarrier_parallel(xe, child, i); + test_pci_membarrier_parallel(fd, -1, i); + igt_waitchildren(); + + close(xe); + } + + igt_subtest("pci-membarrier-bad-pagesize") { + igt_require(is_pci_membarrier_supported(fd)); + test_bad_pagesize_for_pcimem(fd); + } + igt_subtest("bad-flags") test_bad_flags(fd); @@ -287,6 +454,11 @@ igt_main igt_subtest("bad-object") test_bad_object(fd); + igt_subtest("pci-membarrier-bad-object") { + igt_require(is_pci_membarrier_supported(fd)); + test_bad_object_for_pcimem(fd); + } + igt_subtest("small-bar") { igt_require(xe_visible_vram_size(fd, 0)); igt_require(xe_visible_vram_size(fd, 0) < xe_vram_size(fd, 0)); -- 2.34.1 From lucas.demarchi at intel.com Tue Jan 7 14:28:30 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Tue, 7 Jan 2025 08:28:30 -0600 Subject: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api call In-Reply-To: References: <20250106095154.243459-1-mohammed.thasleem@intel.com> Message-ID: On Tue, Jan 07, 2025 at 09:15:32AM +0000, Garg, Nemesa wrote: >I have updated the ghe lib and changes are merged. https://github.com/intel/ghe/commit/8fc0c8f825244af5d6f552df7c1df1589e20604d so the new version will break the API. What's the next version that will have this changed? If we are keeping the new name, we should check for the new version. Lucas De Marchi > >> -----Original Message----- >> From: Thasleem, Mohammed >> Sent: Tuesday, January 7, 2025 1:24 PM >> To: De Marchi, Lucas ; Garg, Nemesa >> ; Murthy, Arun R >> Cc: igt-dev at lists.freedesktop.org; Kamil Konieczny >> ; Kurmi, Suresh Kumar >> ; Lattannavar, Sameer >> >> Subject: RE: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api call >> >> @De Marchi, Lucas, As per the internal discussion we have updated the api >> name in IGT and accordingly we have merged. >> >> @Garg, Nemesa , What is ETA to do the same changes in GHE lib? >> >> FYI @Murthy, Arun R >> >> >> -----Original Message----- >> From: De Marchi, Lucas >> Sent: Monday, January 6, 2025 10:43 PM >> To: Thasleem, Mohammed >> Cc: igt-dev at lists.freedesktop.org; Murthy, Arun R >> ; Garg, Nemesa ; Kamil >> Konieczny >> Subject: Re: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api call >> >> On Mon, Jan 06, 2025 at 03:21:54PM +0530, Mohammed Thasleem wrote: >> >Check ghe algo for the function called by ghe igt while compiling. >> > >> >Signed-off-by: Mohammed Thasleem >> >--- >> > meson.build | 13 ++++++++++++- >> > 1 file changed, 12 insertions(+), 1 deletion(-) >> > >> >diff --git a/meson.build b/meson.build >> >index 8b2a2a64a..96f010fe2 100644 >> >--- a/meson.build >> >+++ b/meson.build >> >@@ -198,8 +198,19 @@ else >> > endif >> > >> > libghe = dependency('libghe', required : false) >> >+ >> > if libghe.found() >> >- config.set('HAVE_LIBGHE', 1) >> >+ >> >+ cc = meson.get_compiler('c') >> >+ >> >+ if cc.has_function('histogram_compute_generate_data_bin', >> dependencies: libghe) >> >+ message('libghe provides the required function') >> >+ config.set('HAVE_LIBGHE', 1) >> >+ else >> >+ warning('libghe does not provide the required function') >> >+ endif >> >> what's the a proper libghe that provide >> histogram_compute_generate_data_bin() >> and how were things tested? If there is libghe available, build is just broken. >> >> Ideally we'd have something like is done for other libraries. >> >> libghe = dependency('libghe', version : '>=0.2', required : false) >> >> However, looking at https://github.com/intel/ghe, there's no such function, >> which leads me to think this call is actually a typo to something else like >> set_histogram_data_bin()? >> >> Cc: Arun R Murthy >> Cc: Nemesa Garg >> >> >+else >> >+ warning('libghe not found') >> >> no warning should be added here, like it's not added for the multiple other >> libraries. >> >> Lucas De Marchi >> >> > endif >> > >> > build_info += 'Build Chamelium test: @0@'.format(chamelium.found()) >> >-- >> >2.25.1 >> > From zhanjun.dong at intel.com Tue Jan 7 15:41:02 2025 From: zhanjun.dong at intel.com (Dong, Zhanjun) Date: Tue, 7 Jan 2025 10:41:02 -0500 Subject: [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test In-Reply-To: References: <20241206225911.465603-1-zhanjun.dong@intel.com> Message-ID: <142ea0a6-f881-4df0-8d0f-32557d8dec80@intel.com> On 2024-12-12 2:54 p.m., Teres Alexis, Alan Previn wrote: > > Zhanjun, per offline chats with Kamil looks like we need to expand the > igt_fixture sections before and after the igt_subtest section and > save the per-engine-timeouts in the initial fixture and restore > the per-engine-timeouts in the later fixture because the fixture > section is not bypassed during an assert. That's what i understood. > That said, we will need another rev of this. Good point! the per-engine-timeouts should be restored to original value no matter of assert being triggered or not. Although the save/restore for single vs multiple GPU might be different, I will take care of it in next rev. Regards, Zhanjun Dong > > On Wed, 2024-12-11 at 14:08 -0800, Teres Alexis, Alan Previn wrote: >> Just re-RB-ing after the recent addition for the change to set engine execution time manually before running the tests >> on each engine in order to limit the execution time of this test: >> >> Reviewed-by: Alan Previn >> >> >> On Fri, 2024-12-06 at 14:59 -0800, Dong, Zhanjun wrote: >>> Submit cmds to the GPU that result in a GuC engine reset and check that >>> devcoredump register dump is generated, by the GuC, and includes the >>> full register range. >>> >>> Signed-off-by: Zhanjun Dong >>> Cc: Alan Previn >>> Cc: Kamil Konieczny >>> --- >>> Changes from prior revs: >>> ?v9:-? Reduced job timeout to 2 seconds to speedup test >>> ?????? Add info print to show test is running on single/multiple GPU >>> ?v8:-? Move change list below --- >>.. From patchwork at emeril.freedesktop.org Tue Jan 7 16:06:01 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 07 Jan 2025 16:06:01 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Add_pci=5Fmembarrier_test?= =?utf-8?q?_in_xe=5Fmmap_=28rev9=29?= In-Reply-To: <20250107140023.2940684-1-tejas.upadhyay@intel.com> References: <20250107140023.2940684-1-tejas.upadhyay@intel.com> Message-ID: <173626596123.941393.13165727757625324269@b555e5b46a47> == Series Details == Series: Add pci_membarrier test in xe_mmap (rev9) URL : https://patchwork.freedesktop.org/series/141296/ State : success == Summary == CI Bug Log - changes from IGT_8179 -> IGTPW_12395 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/index.html Participating hosts (38 -> 36) ------------------------------ Missing (2): bat-rplp-1 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12395 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-jsl-3: [PASS][1] -> [INCOMPLETE][2] ([i915#13241]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/bat-jsl-3/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/bat-jsl-3/igt at i915_selftest@live.html * igt at i915_selftest@live at execlists: - bat-jsl-3: [PASS][3] -> [INCOMPLETE][4] ([i915#12445] / [i915#13241]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/bat-jsl-3/igt at i915_selftest@live at execlists.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/bat-jsl-3/igt at i915_selftest@live at execlists.html * igt at runner@aborted: - fi-pnv-d510: NOTRUN -> [FAIL][5] ([i915#13350]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/fi-pnv-d510/igt at runner@aborted.html #### Possible fixes #### * igt at i915_selftest@live at gt_pm: - bat-jsl-1: [DMESG-FAIL][6] ([i915#13132]) -> [PASS][7] +1 other test pass [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/bat-jsl-1/igt at i915_selftest@live at gt_pm.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/bat-jsl-1/igt at i915_selftest@live at gt_pm.html * igt at i915_selftest@live at workarounds: - bat-arls-5: [DMESG-FAIL][8] ([i915#13393]) -> [PASS][9] +1 other test pass [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/bat-arls-5/igt at i915_selftest@live at workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/bat-arls-5/igt at i915_selftest@live at workarounds.html [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#13132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13132 [i915#13241]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13241 [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_8179 -> IGTPW_12395 * Linux: CI_DRM_15915 -> CI_DRM_15916 CI-20190529: 20190529 CI_DRM_15915: 89042e0bb417f4d67280e1d7fa9bbcca51734571 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15916: bde58d6ae1762f088585e76d78b5f0efb87154e6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12395: 4bae3651422fbd2fb6d8516b0b5685f3c84772f9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 7 16:17:11 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 07 Jan 2025 16:17:11 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Add_pci=5Fmembarrier_test_i?= =?utf-8?q?n_xe=5Fmmap_=28rev9=29?= In-Reply-To: <20250107140023.2940684-1-tejas.upadhyay@intel.com> References: <20250107140023.2940684-1-tejas.upadhyay@intel.com> Message-ID: <173626663126.924974.6664522988307578500@b555e5b46a47> == Series Details == Series: Add pci_membarrier test in xe_mmap (rev9) URL : https://patchwork.freedesktop.org/series/141296/ State : success == Summary == CI Bug Log - changes from XEIGT_8179_BAT -> XEIGTPW_12395_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12395_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_intel_bb@render at render-ymajor-256: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3958]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/bat-adlp-vf/igt at xe_intel_bb@render at render-ymajor-256.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/bat-adlp-vf/igt at xe_intel_bb@render at render-ymajor-256.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/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_8179 -> IGTPW_12395 * Linux: xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571 -> xe-2448-bde58d6ae1762f088585e76d78b5f0efb87154e6 IGTPW_12395: 4bae3651422fbd2fb6d8516b0b5685f3c84772f9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571: 89042e0bb417f4d67280e1d7fa9bbcca51734571 xe-2448-bde58d6ae1762f088585e76d78b5f0efb87154e6: bde58d6ae1762f088585e76d78b5f0efb87154e6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From lucas.demarchi at intel.com Tue Jan 7 17:57:52 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Tue, 7 Jan 2025 11:57:52 -0600 Subject: [PATCH i-g-t 3/8] lib/xe: Move functions from xe_util to xe_gt In-Reply-To: References: <20250104071548.737612-1-lucas.demarchi@intel.com> <20250104071548.737612-3-lucas.demarchi@intel.com> Message-ID: <2ayla6lr6xwinaok7qujbkmnhzqcdwrx2g6tztncanbfj6pc37@xbymfqopfpt6> On Mon, Jan 06, 2025 at 10:58:15PM +0000, Cavitt, Jonathan wrote: >-----Original Message----- >From: igt-dev On Behalf Of Lucas De Marchi >Sent: Friday, January 3, 2025 11:16 PM >To: igt-dev at lists.freedesktop.org >Cc: De Marchi, Lucas >Subject: [PATCH i-g-t 3/8] lib/xe: Move functions from xe_util to xe_gt >> >> Some functions are clearly gt-related, so move them to xe_gt. >> >> Signed-off-by: Lucas De Marchi > >LGTM, though at some point in the future, we should probably take a closer look at >the test files that have been impacted by this change and check if xe_util.h is still a >required includes for them. good idea. I went ahead and did that. I will include it in v2. Since we only include xe_util.h from *.c, that's easy: $ git grep -l xe_util.h | xargs sed -i '/xe_util\.h/d' $ meson compile --ninja-args "-k 2000" -C build 2>/dev/null | grep -e "^FAILED:.*\.c\.o" FAILED: tests/xe_copy_basic.p/intel_xe_copy_basic.c.o FAILED: lib/libigt-xe_xe_util_c.a.p/xe_xe_util.c.o FAILED: lib/libigt-intel_allocator_c.a.p/intel_allocator.c.o FAILED: tests/xe_peer2peer.p/intel_xe_peer2peer.c.o FAILED: tests/xe_exercise_blt.p/intel_xe_exercise_blt.c.o FAILED: tests/xe_exec_store.p/intel_xe_exec_store.c.o FAILED: tests/xe_ccs.p/intel_xe_ccs.c.o FAILED: tests/xe_pat.p/intel_xe_pat.c.o FAILED: lib/libigt-intel_blt_c.a.p/intel_blt.c.o Then remove the changes for the ones that failed, and make sure we have .o for the ones that succeeded (i.e. they are not guarded by build flags). >Reviewed-by: Jonathan Cavitt thanks Lucas De Marchi >-Jonathan Cavitt > >> --- >> 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 Tue Jan 7 18:05:17 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Tue, 7 Jan 2025 12:05:17 -0600 Subject: [PATCH i-g-t 6/8] lib/xe/xe_spin: Move declarations around In-Reply-To: References: <20250104071548.737612-1-lucas.demarchi@intel.com> <20250104071548.737612-6-lucas.demarchi@intel.com> Message-ID: <574ldsai4kfqovydkwuod3rzjlpp5mfxefdhptwybk34arpakt@bjhvamwtwxap> On Mon, Jan 06, 2025 at 10:58:26PM +0000, Cavitt, Jonathan wrote: >-----Original Message----- >From: igt-dev On Behalf Of Lucas De Marchi >Sent: Friday, January 3, 2025 11:16 PM >To: igt-dev at lists.freedesktop.org >Cc: De Marchi, Lucas >Subject: [PATCH i-g-t 6/8] lib/xe/xe_spin: Move declarations around >> >> 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 > >Okay, I think I get it. We're bundling the various functions declared in xe_spin.h >by their purpose/interaction with the various structures, yeah? That makes sense >to me. yes. We could also use separate headers for each of them, but they are so related and in a small number that I felt it's ok to leave in the same header. >And even if my understanding of the purpose of this patch is wrong, I don't see >any harm in applying it, so: >Reviewed-by: Jonathan Cavitt thanks Lucas De Marchi From patchwork at emeril.freedesktop.org Tue Jan 7 18:18:01 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 07 Jan 2025 18:18:01 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_Add_pci=5Fmembarrier_tes?= =?utf-8?q?t_in_xe=5Fmmap_=28rev9=29?= In-Reply-To: <20250107140023.2940684-1-tejas.upadhyay@intel.com> References: <20250107140023.2940684-1-tejas.upadhyay@intel.com> Message-ID: <173627388178.1001743.33406801999666391@b555e5b46a47> == Series Details == Series: Add pci_membarrier test in xe_mmap (rev9) URL : https://patchwork.freedesktop.org/series/141296/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15916_full -> IGTPW_12395_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12395_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12395_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_12395/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_12395_full: ### IGT changes ### #### Possible regressions #### * igt at gem_ctx_create@basic-files: - shard-snb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-snb7/igt at gem_ctx_create@basic-files.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-snb5/igt at gem_ctx_create@basic-files.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk8/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][4] +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-5/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs at pipe-a-hdmi-a-2.html * igt at perf_pmu@module-unload: - shard-tglu: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-tglu-7/igt at perf_pmu@module-unload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-7/igt at perf_pmu@module-unload.html Known issues ------------ Here are the changes found in IGTPW_12395_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#8411]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-2/igt at api_intel_bb@object-reloc-keep-cache.html - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-11/igt at api_intel_bb@object-reloc-keep-cache.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-7/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-10/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy at vcs1: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +6 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-13/igt at drm_fdinfo@busy at vcs1.html * igt at drm_fdinfo@isolation: - shard-rkl: [PASS][12] -> [DMESG-WARN][13] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-rkl-7/igt at drm_fdinfo@isolation.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-5/igt at drm_fdinfo@isolation.html * igt at drm_fdinfo@virtual-busy: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-7/igt at drm_fdinfo@virtual-busy.html - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-10/igt at drm_fdinfo@virtual-busy.html * igt at gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#3936]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-11/igt at gem_busy@semaphore.html * igt at gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-6/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-18/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_ccs@suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#7697]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-1/igt at gem_close_race@multigpu-basic-process.html * igt at gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#7697]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-2/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][23] ([i915#12353]) +1 other test incomplete [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk2/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#8555]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-17/igt at gem_ctx_persistence@heartbeat-hostile.html - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-3/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][26] ([i915#1099]) +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-snb5/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-17/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_12395/shard-dg2-2/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#280]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-4/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@hibernate: - shard-dg1: [PASS][30] -> [ABORT][31] ([i915#7975] / [i915#8213]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg1-12/igt at gem_eio@hibernate.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-14/igt at gem_eio@hibernate.html * igt at gem_eio@kms: - shard-dg2: NOTRUN -> [FAIL][32] ([i915#5784]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-5/igt at gem_eio@kms.html * igt at gem_eio@reset-stress: - shard-dg2: NOTRUN -> [FAIL][33] ([i915#12543] / [i915#5784]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-3/igt at gem_eio@reset-stress.html * igt at gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][34] ([i915#8898]) +1 other test fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-snb4/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4771]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-11/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][36] ([i915#4525]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt at gem_exec_balancer@parallel-out-fence: - shard-tglu: NOTRUN -> [SKIP][37] ([i915#4525]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-6/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_capture@capture-invisible: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#6334]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-14/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_endless@dispatch: - shard-dg2: [PASS][39] -> [TIMEOUT][40] ([i915#3778] / [i915#7016]) +1 other test timeout [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg2-5/igt at gem_exec_endless@dispatch.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-6/igt at gem_exec_endless@dispatch.html * igt at gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-11/igt at gem_exec_fence@submit3.html * igt at gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-18/igt at gem_exec_flush@basic-batch-kernel-default-wb.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-5/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-6/igt at gem_exec_flush@basic-wb-pro-default.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3281]) +12 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-18/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +11 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-2/igt at gem_exec_reloc@basic-wc-read-noreloc.html * igt at gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3281]) +8 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-7/igt at gem_exec_reloc@basic-write-gtt.html * igt at gem_exec_reloc@basic-write-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3281]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-4/igt at gem_exec_reloc@basic-write-wc-noreloc.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-17/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-5/igt at gem_exec_schedule@reorder-wide.html * igt at gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#2190]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@massive: - shard-tglu-1: NOTRUN -> [SKIP][52] ([i915#4613]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at gem_lmem_swapping@massive.html * igt at gem_lmem_swapping@massive-random: - shard-glk: NOTRUN -> [SKIP][53] ([i915#4613]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk9/igt at gem_lmem_swapping@massive-random.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-1/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@random: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4613]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-3/igt at gem_lmem_swapping@random.html * igt at gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-4/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#12193]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/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][58] ([i915#4565]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-17/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#8289]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-6/igt at gem_media_fill@media-fill.html * igt at gem_mmap_gtt@basic-read: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4077]) +9 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-8/igt at gem_mmap_gtt@basic-read.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][61] -> [ABORT][62] ([i915#10729]) +1 other test abort [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-mtlp-5/igt at gem_mmap_offset@clear-via-pagefault.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-7/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-4/igt at gem_mmap_wc@invalid-flags.html * igt at gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +8 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-13/igt at gem_mmap_wc@write-read.html * igt at gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-1/igt at gem_partial_pwrite_pread@write.html * igt at gem_partial_pwrite_pread@writes-after-reads-display: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3282]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-5/igt at gem_partial_pwrite_pread@writes-after-reads-display.html * igt at gem_pread@self: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#3282]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-18/igt at gem_pread@self.html * igt at gem_pxp@display-protected-crc: - shard-rkl: NOTRUN -> [TIMEOUT][68] ([i915#12917] / [i915#12964]) +5 other tests timeout [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-4/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][69] ([i915#12964]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-4/igt at gem_pxp@fail-invalid-protected-context.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][70] ([i915#13398]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-10/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-2/igt at gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4270]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-14/igt at gem_pxp@verify-pxp-stale-ctx-execution.html * igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#5190] / [i915#8428]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-7/igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4079]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-18/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_set_tiling_vs_gtt: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4079]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-5/igt at gem_set_tiling_vs_gtt.html * igt at gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4885]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-1/igt at gem_softpin@evict-snoop.html * igt at gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4077]) +11 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-14/igt at gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][78] ([i915#13263] / [i915#13449]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk6/igt at gem_tiled_swapping@non-threaded.html * igt at gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4879]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-2/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-1/igt at gem_userptr_blits@coherency-unsync.html - shard-tglu-1: NOTRUN -> [SKIP][81] ([i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at gem_userptr_blits@coherency-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-3/igt at gem_userptr_blits@dmabuf-sync.html - shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#3323]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at gem_userptr_blits@dmabuf-sync.html - shard-dg1: NOTRUN -> [SKIP][84] ([i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-12/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#3282] / [i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-1/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4880]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-1/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3297]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-5/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][88] ([i915#3297]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-10/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][89] +8 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-4/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#2856]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-2/igt at gen9_exec_parse@allowed-all.html * igt at gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-4/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@bb-oversize: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-8/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#2527]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-12/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@bb-start-out: - shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#2527] / [i915#2856]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at gen9_exec_parse@bb-start-out.html * igt at gen9_exec_parse@shadow-peek: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#2527]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-2/igt at gen9_exec_parse@shadow-peek.html * igt at i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#8399]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-3/igt at i915_pm_freq_api@freq-basic-api.html * igt at i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#8399]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-1/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#6590]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at i915_pm_freq_mult@media-freq at gt0.html - shard-dg1: NOTRUN -> [SKIP][99] ([i915#6590]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-12/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#11681]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-4/igt at i915_pm_rps@thresholds.html * igt at i915_pm_rps@thresholds-park at gt0: - shard-glk: NOTRUN -> [DMESG-WARN][101] ([i915#118]) +1 other test dmesg-warn [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk6/igt at i915_pm_rps@thresholds-park at gt0.html * igt at i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#4387]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-14/igt at i915_pm_sseu@full-enable.html * igt at i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][103] ([i915#9311]) +1 other test dmesg-warn [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-snb2/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][104] ([i915#9311]) +1 other test dmesg-warn [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-7/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: [PASS][105] -> [INCOMPLETE][106] ([i915#4817]) +1 other test incomplete [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-glk4/igt at i915_suspend@fence-restore-tiled2untiled.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk7/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][107] ([i915#4817]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk4/igt at i915_suspend@forcewake.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#5190]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-7/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#12454] / [i915#12712]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-8/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#12454] / [i915#12712]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-4/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-rkl: NOTRUN -> [SKIP][111] ([i915#12454] / [i915#12712]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-4/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_addfb_basic@tile-pitch-mismatch: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4212]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-2/igt at kms_addfb_basic@tile-pitch-mismatch.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][113] ([i915#12761] / [i915#1982]) +1 other test incomplete [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk9/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-3-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#8709]) +7 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/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-atomic at pipe-b-hdmi-a-2-y-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#8709]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-1/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-atomic at pipe-b-hdmi-a-3-4-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#8709]) +23 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-7/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-3-4-rc-ccs.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#12967] / [i915#6228]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-4/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#9531]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/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-rkl: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-2/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#5286]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/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-0-hflip: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#5286]) +5 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5286]) +5 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-13/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#5286]) +5 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-9/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3638]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-12/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@x-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][125] +4 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-7/igt at kms_big_fb@x-tiled-16bpp-rotate-270.html - shard-rkl: NOTRUN -> [SKIP][126] ([i915#3638]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-1/igt at kms_big_fb@x-tiled-16bpp-rotate-270.html * igt at kms_big_fb@x-tiled-64bpp-rotate-0: - shard-mtlp: [PASS][127] -> [FAIL][128] ([i915#5138]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-mtlp-3/igt at kms_big_fb@x-tiled-64bpp-rotate-0.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-2/igt at kms_big_fb@x-tiled-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6187]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-3/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][130] ([i915#4538] / [i915#5190]) +10 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/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-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][131] +20 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-4/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538]) +6 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-18/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs at pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#6095]) +64 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-3/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#12313]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-3/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#6095]) +34 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#6095]) +79 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-4/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#10307] / [i915#6095]) +189 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs at pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#6095]) +163 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-18/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs at pipe-c-hdmi-a-4.html * igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-8/igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs at pipe-d-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_12395/shard-tglu-4/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#12805]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#6095]) +13 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-4/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html - shard-glk: NOTRUN -> [INCOMPLETE][143] ([i915#12796]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk8/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: [PASS][144] -> [INCOMPLETE][145] ([i915#12796]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-glk2/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk2/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#12313]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/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-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#12313]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#6095]) +14 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-5/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#12313]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-12/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#11616] / [i915#7213]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-3/igt at kms_cdclk@mode-transition.html - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3742]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-2/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#3742]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-17/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#7213]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-3/igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3.html * igt at kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#3742]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#4087]) +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-1/igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3.html * igt at kms_chamelium_edid@dp-mode-timings: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#7828]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-2/igt at kms_chamelium_edid@dp-mode-timings.html * igt at kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#7828]) +5 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-7/igt at kms_chamelium_frames@vga-frame-dump.html * igt at kms_chamelium_hpd@hdmi-hpd-storm: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#7828]) +9 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-4/igt at kms_chamelium_hpd@hdmi-hpd-storm.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#7828]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html - shard-dg1: NOTRUN -> [SKIP][160] ([i915#7828]) +7 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-12/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#7828]) +5 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-6/igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt at kms_content_protection@atomic-dpms: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#7116] / [i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-17/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#6944] / [i915#9424]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#3299]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-1/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#3116] / [i915#3299]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#3116]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-1/igt at kms_content_protection@dp-mst-type-1.html - shard-tglu: NOTRUN -> [SKIP][167] ([i915#3116] / [i915#3299]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-6/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#7118] / [i915#9424]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-7/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#9424]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-6/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#6944] / [i915#9424]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-4/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][171] ([i915#7173]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-10/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#7118] / [i915#9424]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-5/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-rkl: [PASS][173] -> [DMESG-WARN][174] ([i915#12964]) +29 other tests dmesg-warn [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-rkl-7/igt at kms_cursor_crc@cursor-offscreen-256x85.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-3/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3555]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-1/igt at kms_cursor_crc@cursor-offscreen-32x10.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#3555]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-12/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#13049]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-6/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#13049]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-14/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#13049]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-3/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#9809]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-4/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#13046] / [i915#5354]) +4 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-4/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-snb: [PASS][182] -> [SKIP][183] [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-snb5/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-snb5/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@cursora-vs-flipa-toggle: - shard-rkl: NOTRUN -> [DMESG-WARN][184] ([i915#12917] / [i915#12964]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-1/igt at kms_cursor_legacy@cursora-vs-flipa-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][185] +25 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-18/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: [PASS][186] -> [FAIL][187] ([i915#2346]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-snb4/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][188] ([i915#9067]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-3/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][189] ([i915#4103]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][190] ([i915#4103]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#8588]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-3/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#1257]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-18/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#12402]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-17/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#8812]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-7/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-basic: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#3840]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-12/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#3840]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#3840]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-4/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3840] / [i915#9053]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-2/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#2065] / [i915#4854]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#1839]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-10/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#1839]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-7/igt at kms_feature_discovery@display-4x.html - shard-dg2: NOTRUN -> [SKIP][202] ([i915#1839]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-5/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#658]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-7/igt at kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][204] ([i915#658]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-4/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-absolute-wf_vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3637]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-3/igt at kms_flip@2x-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#9934]) +5 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-11/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#9934]) +6 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-2/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#3637]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3637]) +7 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-9/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#9934]) +11 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-17/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@blocking-wf_vblank at a-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][211] ([i915#11989]) +1 other test fail [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-6/igt at kms_flip@blocking-wf_vblank at a-hdmi-a3.html * igt at kms_flip@blocking-wf_vblank at c-hdmi-a1: - shard-tglu: [PASS][212] -> [FAIL][213] ([i915#11989]) +3 other tests fail [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-tglu-6/igt at kms_flip@blocking-wf_vblank at c-hdmi-a1.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-10/igt at kms_flip@blocking-wf_vblank at c-hdmi-a1.html * igt at kms_flip@wf_vblank-ts-check: - shard-rkl: [PASS][214] -> [FAIL][215] ([i915#11989]) +1 other test fail [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-rkl-6/igt at kms_flip@wf_vblank-ts-check.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-1/igt at kms_flip@wf_vblank-ts-check.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/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][217] ([i915#2587] / [i915#2672]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/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-downscaling: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555] / [i915#8813]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#8813]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-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-rkl: NOTRUN -> [SKIP][220] ([i915#2672]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-3/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-32bpp-ytileccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#2587] / [i915#2672] / [i915#3555]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-10/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-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#2587] / [i915#2672]) +4 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-2/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-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#2672] / [i915#3555]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][224] ([i915#2672] / [i915#3555]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#2672] / [i915#3555]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-10/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-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#2672]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-10/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#2672] / [i915#3555]) +4 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-14/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-dg1: NOTRUN -> [SKIP][228] ([i915#2587] / [i915#2672]) +4 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-14/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#8708]) +20 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#1825]) +33 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2: [PASS][231] -> [FAIL][232] ([i915#6880]) +1 other test fail [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg2-6/igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#5439]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-1/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][234] ([i915#5439]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-4/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#8708]) +17 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-13/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][236] +33 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#5354]) +30 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#9766]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-11/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#3458]) +23 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-12/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#1825]) +5 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#3458]) +19 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-11/igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#3023]) +20 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-4/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt at kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8228]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-3/igt at kms_hdr@bpc-switch-dpms.html - shard-dg1: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8228]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-17/igt at kms_hdr@bpc-switch-dpms.html - shard-tglu: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#8228]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-7/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8228]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-3/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-dg2: [PASS][247] -> [SKIP][248] ([i915#3555] / [i915#8228]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg2-10/igt at kms_hdr@static-toggle.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-4/igt at kms_hdr@static-toggle.html * igt at kms_histogram@algo-basic: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#13389]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-3/igt at kms_histogram@algo-basic.html - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#13389]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-6/igt at kms_histogram@algo-basic.html - shard-dg1: NOTRUN -> [SKIP][251] ([i915#13389]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-17/igt at kms_histogram@algo-basic.html * igt at kms_histogram@global-basic: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#13388]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-3/igt at kms_histogram@global-basic.html - shard-dg2: NOTRUN -> [SKIP][253] ([i915#13388]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-1/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#12388]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-17/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#12394]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-8/igt at kms_joiner@basic-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][256] ([i915#12394]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-7/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#12339]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-17/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#1839]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-12/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#6301]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#6301]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-12/igt at kms_panel_fitting@legacy.html * igt at kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8806]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-8/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#12247] / [i915#9423]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#12247]) +7 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#12247]) +13 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-6/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#3555]) +3 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-3/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation at pipe-b: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#12247]) +3 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-3/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation at pipe-b.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-a: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#12247]) +4 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-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-tglu-1: NOTRUN -> [SKIP][268] ([i915#12247]) +4 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg1: NOTRUN -> [SKIP][269] ([i915#12247]) +13 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-12/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-dg1: NOTRUN -> [SKIP][270] ([i915#12247] / [i915#6953]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-14/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#12247] / [i915#6953]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-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-dg2: NOTRUN -> [SKIP][272] ([i915#12247] / [i915#3555] / [i915#9423]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-5/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#5354]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-2/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#5354]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-17/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#3828]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-8/igt at kms_pm_dc@dc5-retention-flops.html - shard-rkl: NOTRUN -> [SKIP][276] ([i915#3828]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-3/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#5978]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-3/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#9685]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-6/igt at kms_pm_dc@dc6-psr.html - shard-rkl: NOTRUN -> [SKIP][279] ([i915#9685]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-5/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][280] -> [SKIP][281] ([i915#4281]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-tglu-4/igt at kms_pm_dc@dc9-dpms.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-8/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#3828]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-3/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#8430]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][284] -> [SKIP][285] ([i915#9519]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg2-4/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/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: NOTRUN -> [SKIP][286] ([i915#9519]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-4/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-tglu: NOTRUN -> [SKIP][287] ([i915#9519]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-7/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-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_15916/shard-rkl-4/igt at kms_pm_rpm@modeset-lpsp.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-1/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-rkl: [PASS][290] -> [SKIP][291] ([i915#12916]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-rkl-3/igt at kms_pm_rpm@system-suspend-modeset.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-3/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-vgem: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#6524]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-18/igt at kms_prime@basic-crc-vgem.html * igt at kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#6524]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#9808]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-2/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#11520]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#11520]) +7 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-5/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][297] ([i915#11520]) +8 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-2/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#12316]) +3 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-2/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area at pipe-b-edp-1.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][299] ([i915#11520]) +10 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-snb2/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][300] ([i915#11520]) +10 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk4/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#11520]) +9 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-6/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#11520]) +8 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-12/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#9683]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-18/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-no-drrs: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#1072] / [i915#9732]) +15 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-1/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#9732]) +20 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-8/igt at kms_psr@fbc-psr-no-drrs.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#9732]) +7 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_psr@pr-basic: - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#9688]) +4 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-1/igt at kms_psr@pr-basic.html * igt at kms_psr@psr-primary-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#1072] / [i915#9732]) +22 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-5/igt at kms_psr@psr-primary-mmap-cpu.html * igt at kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#1072] / [i915#9732]) +18 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-12/igt at kms_psr@psr-sprite-mmap-cpu.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][310] +268 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk3/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#12755] / [i915#5190]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#12755]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-8/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_scaling_modes@scaling-mode-center: - shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#3555]) +2 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#3555]) +7 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-9/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][315] ([i915#5465]) +2 other tests fail [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-snb4/igt at kms_setmode@basic.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-mtlp: [PASS][316] -> [FAIL][317] ([i915#5465]) +2 other tests fail [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-mtlp-8/igt at kms_setmode@basic at pipe-b-edp-1.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-6/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_vblank@accuracy-idle at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][318] ([i915#12964]) +20 other tests dmesg-warn [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-1/igt at kms_vblank@accuracy-idle at pipe-a-hdmi-a-2.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][319] ([i915#12276]) +1 other test incomplete [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk5/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@max-min: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#9906]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-7/igt at kms_vrr@max-min.html - shard-rkl: NOTRUN -> [SKIP][321] ([i915#9906]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-4/igt at kms_vrr@max-min.html * igt at kms_vrr@negative-basic: - shard-mtlp: [PASS][322] -> [FAIL][323] ([i915#10393]) +1 other test fail [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-mtlp-1/igt at kms_vrr@negative-basic.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-5/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#2437]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-7/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#2437] / [i915#9412]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][326] ([i915#2437]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-12/igt at kms_writeback@writeback-invalid-parameters.html - shard-tglu: NOTRUN -> [SKIP][327] ([i915#2437]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-2/igt at kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][328] ([i915#2437]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk5/igt at kms_writeback@writeback-invalid-parameters.html - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#2437]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-2/igt at kms_writeback@writeback-invalid-parameters.html - shard-dg2: NOTRUN -> [SKIP][330] ([i915#2437]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-11/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][331] ([i915#2437] / [i915#9412]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-6/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@gen12-group-concurrent-oa-buffer-read: - shard-tglu: [PASS][332] -> [FAIL][333] ([i915#10538]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-tglu-4/igt at perf@gen12-group-concurrent-oa-buffer-read.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-4/igt at perf@gen12-group-concurrent-oa-buffer-read.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#2436]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-2/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#7387]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-7/igt at perf@global-sseu-config.html - shard-dg2: NOTRUN -> [SKIP][336] ([i915#7387]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-10/igt at perf@global-sseu-config.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][337] +468 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-snb5/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: NOTRUN -> [FAIL][338] ([i915#4349]) +4 other tests fail [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-4/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@cpu-hotplug: - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#8850]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-1/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][340] ([i915#13341]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk8/igt at perf_pmu@rc6-suspend.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][341] ([i915#8516]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-9/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at perf_pmu@render-node-busy: - shard-dg1: [PASS][342] -> [FAIL][343] ([i915#4349]) +5 other tests fail [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg1-14/igt at perf_pmu@render-node-busy.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-13/igt at perf_pmu@render-node-busy.html * igt at perf_pmu@render-node-busy at bcs0: - shard-mtlp: [PASS][344] -> [FAIL][345] ([i915#4349]) +2 other tests fail [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-mtlp-5/igt at perf_pmu@render-node-busy at bcs0.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-3/igt at perf_pmu@render-node-busy at bcs0.html * igt at prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#3708] / [i915#4077]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-1/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][347] ([i915#3708]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-14/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][348] ([i915#3708]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-5/igt at prime_vgem@fence-read-hang.html * igt at prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][349] +79 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-4/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#9917]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-7/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-random: - shard-tglu: NOTRUN -> [FAIL][351] ([i915#12910]) +8 other tests fail [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-6/igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-random.html * igt at tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][352] ([i915#4818]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-14/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at gem_create@create-clear at smem0: - shard-dg2: [INCOMPLETE][353] -> [PASS][354] +1 other test pass [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg2-2/igt at gem_create@create-clear at smem0.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-5/igt at gem_create@create-clear at smem0.html * igt at gem_eio@reset-stress: - shard-dg1: [FAIL][355] ([i915#12543] / [i915#5784]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg1-17/igt at gem_eio@reset-stress.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-18/igt at gem_eio@reset-stress.html * igt at gem_exec_balancer@individual: - shard-dg1: [FAIL][357] -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg1-12/igt at gem_exec_balancer@individual.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-17/igt at gem_exec_balancer@individual.html * igt at gem_exec_schedule@preemptive-hang: - shard-rkl: [DMESG-WARN][359] ([i915#12964]) -> [PASS][360] +30 other tests pass [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-rkl-7/igt at gem_exec_schedule@preemptive-hang.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-1/igt at gem_exec_schedule@preemptive-hang.html * igt at gem_exec_schedule@wide: - shard-tglu: [INCOMPLETE][361] ([i915#13391]) -> [PASS][362] +1 other test pass [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-tglu-4/igt at gem_exec_schedule@wide.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-3/igt at gem_exec_schedule@wide.html * igt at i915_pm_rc6_residency@rc6-idle: - shard-dg1: [FAIL][363] ([i915#3591]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-14/igt at i915_pm_rc6_residency@rc6-idle.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0: - shard-dg1: [FAIL][365] ([i915#12739] / [i915#3591]) -> [PASS][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-14/igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [DMESG-FAIL][367] ([i915#13393]) -> [PASS][368] +1 other test pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-mtlp-4/igt at i915_selftest@live at workarounds.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-3/igt at i915_selftest@live at workarounds.html * igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1: - shard-tglu: [FAIL][369] ([i915#11808]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-tglu-6/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-9/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][371] ([i915#5138]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-mtlp-4/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-6/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [FAIL][373] ([i915#2346]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: [FAIL][375] ([i915#11989]) -> [PASS][376] +1 other test pass [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-snb5/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-snb2/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1: - shard-tglu: [FAIL][377] ([i915#11989]) -> [PASS][378] +3 other tests pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-tglu-9/igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-tglu-6/igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate at a-edp1: - shard-mtlp: [FAIL][379] ([i915#11989]) -> [PASS][380] +4 other tests pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-mtlp-6/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-6/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html * igt at kms_flip@plain-flip-ts-check at a-hdmi-a1: - shard-glk: [DMESG-WARN][381] ([i915#118]) -> [PASS][382] +2 other tests pass [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-glk8/igt at kms_flip@plain-flip-ts-check at a-hdmi-a1.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk8/igt at kms_flip@plain-flip-ts-check at a-hdmi-a1.html * igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [FAIL][383] ([i915#6880]) -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg2-6/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt at kms_hdr@bpc-switch-suspend: - shard-dg2: [SKIP][385] ([i915#3555] / [i915#8228]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg2-3/igt at kms_hdr@bpc-switch-suspend.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-10/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][387] ([i915#9519]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg2-11/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-8/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: [INCOMPLETE][389] ([i915#10553]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-glk5/igt at kms_pm_rpm@system-suspend-modeset.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk5/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_universal_plane@cursor-fb-leak: - shard-dg1: [FAIL][391] ([i915#9196]) -> [PASS][392] +1 other test pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg1-13/igt at kms_universal_plane@cursor-fb-leak.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-12/igt at kms_universal_plane@cursor-fb-leak.html * igt at perf_pmu@busy-double-start: - shard-mtlp: [FAIL][393] ([i915#4349]) -> [PASS][394] +4 other tests pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-mtlp-3/igt at perf_pmu@busy-double-start.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-8/igt at perf_pmu@busy-double-start.html * igt at perf_pmu@frequency at gt0: - shard-dg2: [FAIL][395] ([i915#12549] / [i915#6806]) -> [PASS][396] +1 other test pass [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg2-6/igt at perf_pmu@frequency at gt0.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-3/igt at perf_pmu@frequency at gt0.html - shard-dg1: [FAIL][397] ([i915#12549] / [i915#6806]) -> [PASS][398] +1 other test pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg1-14/igt at perf_pmu@frequency at gt0.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-18/igt at perf_pmu@frequency at gt0.html #### Warnings #### * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [DMESG-WARN][399] ([i915#5493]) -> [TIMEOUT][400] ([i915#5493]) +1 other test timeout [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg1-17/igt at gem_lmem_swapping@smem-oom at lmem0.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-13/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: [TIMEOUT][401] ([i915#12917] / [i915#12964]) -> [SKIP][402] ([i915#4270]) +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-rkl-1/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-7/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html * igt at gem_pxp@reject-modify-context-protection-on: - shard-rkl: [SKIP][403] ([i915#4270]) -> [TIMEOUT][404] ([i915#12917] / [i915#12964]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-rkl-1/igt at gem_pxp@reject-modify-context-protection-on.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-7/igt at gem_pxp@reject-modify-context-protection-on.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][405] ([i915#13447]) -> [ABORT][406] ([i915#10887] / [i915#9820]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg2-8/igt at i915_module_load@reload-with-fault-injection.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-2/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_selftest@mock: - shard-glk: [DMESG-WARN][407] ([i915#1982] / [i915#9311]) -> [DMESG-WARN][408] ([i915#9311]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-glk5/igt at i915_selftest@mock.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk4/igt at i915_selftest@mock.html * igt at kms_content_protection@srm: - shard-dg2: [SKIP][409] ([i915#7118]) -> [TIMEOUT][410] ([i915#7173]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg2-11/igt at kms_content_protection@srm.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-10/igt at kms_content_protection@srm.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][411] ([i915#12745] / [i915#1982] / [i915#4839]) -> [INCOMPLETE][412] ([i915#12745] / [i915#4839]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-glk4/igt at kms_flip@flip-vs-suspend-interruptible.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk6/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1: - shard-glk: [INCOMPLETE][413] ([i915#12745] / [i915#1982]) -> [INCOMPLETE][414] ([i915#12745]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-glk4/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-glk6/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2: [SKIP][415] ([i915#3458]) -> [SKIP][416] ([i915#10433] / [i915#3458]) +3 other tests skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg2-10/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html - shard-dg1: [SKIP][417] ([i915#3458]) -> [SKIP][418] ([i915#3458] / [i915#4423]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg1-12/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][419] ([i915#10433] / [i915#3458]) -> [SKIP][420] ([i915#3458]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-10/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html * igt at kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][421] ([i915#12713]) -> [SKIP][422] ([i915#1187] / [i915#12713]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-mtlp-2/igt at kms_hdr@brightness-with-hdr.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-mtlp-1/igt at kms_hdr@brightness-with-hdr.html - shard-dg2: [SKIP][423] ([i915#12713]) -> [SKIP][424] ([i915#13331]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg2-5/igt at kms_hdr@brightness-with-hdr.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg2-10/igt at kms_hdr@brightness-with-hdr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][425] ([i915#9340]) -> [SKIP][426] ([i915#3828]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-rkl-5/igt at kms_pm_lpsp@kms-lpsp.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-rkl-4/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_vrr@max-min: - shard-dg1: [SKIP][427] ([i915#4423] / [i915#9906]) -> [SKIP][428] ([i915#9906]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15916/shard-dg1-12/igt at kms_vrr@max-min.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/shard-dg1-13/igt at kms_vrr@max-min.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [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#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11823 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [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/ke == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12395/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From swati2.sharma at intel.com Tue Jan 7 18:57:05 2025 From: swati2.sharma at intel.com (Swati Sharma) Date: Wed, 8 Jan 2025 00:27:05 +0530 Subject: [PATCH i-g-t 0/4] Add dsc+bigjoiner subtest Message-ID: <20250107185709.116756-1-swati2.sharma@intel.com> New subtest is added to validate dsc + big/ultra joiner use cases. Swati Sharma (4): lib/igt_kms: Add igt_get_joined_pipes_name() lib/igt_kms: Add igt_is_(big|ultra)_joiner_supported_by_source() tests/intel/kms_dsc_helper: Add helper func() tests/intel/kms_dsc: Add force dsc and joiner test cases lib/igt_kms.c | 64 ++++++++++++ lib/igt_kms.h | 3 + tests/intel/kms_dsc.c | 192 ++++++++++++++++++++++------------- tests/intel/kms_dsc_helper.c | 46 +++++++++ tests/intel/kms_dsc_helper.h | 2 + tests/intel/kms_joiner.c | 8 +- 6 files changed, 238 insertions(+), 77 deletions(-) -- 2.25.1 From swati2.sharma at intel.com Tue Jan 7 18:57:06 2025 From: swati2.sharma at intel.com (Swati Sharma) Date: Wed, 8 Jan 2025 00:27:06 +0530 Subject: [PATCH i-g-t 1/4] lib/igt_kms: Add igt_get_joined_pipes_name() In-Reply-To: <20250107185709.116756-1-swati2.sharma@intel.com> References: <20250107185709.116756-1-swati2.sharma@intel.com> Message-ID: <20250107185709.116756-2-swati2.sharma@intel.com> Add function to transform the enum into a string. Signed-off-by: Swati Sharma --- lib/igt_kms.c | 23 +++++++++++++++++++++++ lib/igt_kms.h | 1 + 2 files changed, 24 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index a67d17c4f..8ee8741d9 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -61,6 +61,7 @@ #include "igt_device.h" #include "igt_sysfs.h" #include "sw_sync.h" +#include "xe/xe_query.h" #ifdef HAVE_CHAMELIUM #include "igt_chamelium.h" #endif @@ -1803,6 +1804,28 @@ bool kmstest_force_connector_joiner(int drm_fd, drmModeConnector *connector, int return true; } +/** + * igt_get_joined_pipes_name: + * @val: forced value + * + * Simple function to transform the enum into a string. + */ +const char *igt_get_joined_pipes_name(enum joined_pipes val) +{ + switch (val) { + case JOINED_PIPES_DEFAULT: + return ""; + case JOINED_PIPES_NONE: + return "-none"; + case JOINED_PIPES_BIG_JOINER: + return "-big-joiner"; + case JOINED_PIPES_ULTRA_JOINER: + return "-ultra-joiner"; + default: + igt_assert(false); + } +} + /** * kmstest_force_edid: * @drm_fd: drm file descriptor diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 1e2a927ab..c4d76bdcb 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1275,5 +1275,6 @@ int igt_get_dp_pending_retrain(int drm_fd, igt_output_t *output); void igt_reset_link_params(int drm_fd, igt_output_t *output); int igt_backlight_read(int *result, const char *fname, igt_backlight_context_t *context); int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *context); +const char *igt_get_joined_pipes_name(enum joined_pipes val); #endif /* __IGT_KMS_H__ */ -- 2.25.1 From swati2.sharma at intel.com Tue Jan 7 18:57:07 2025 From: swati2.sharma at intel.com (Swati Sharma) Date: Wed, 8 Jan 2025 00:27:07 +0530 Subject: [PATCH i-g-t 2/4] lib/igt_kms: Add igt_is_(big|ultra)_joiner_supported_by_source() In-Reply-To: <20250107185709.116756-1-swati2.sharma@intel.com> References: <20250107185709.116756-1-swati2.sharma@intel.com> Message-ID: <20250107185709.116756-3-swati2.sharma@intel.com> Add func() returning true/false if platform supports big/ultra joiner and use corresponding func() in related binaries. Signed-off-by: Swati Sharma --- lib/igt_kms.c | 41 ++++++++++++++++++++++++++++++++++++++++ lib/igt_kms.h | 2 ++ tests/intel/kms_joiner.c | 8 +++----- 3 files changed, 46 insertions(+), 5 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 8ee8741d9..6640a6a58 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -7301,3 +7301,44 @@ int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *c return 0; } + +/** + * igt_is_bigjoiner_supported_by_source: + * @drm_fd: drm file descriptor + * + * Returns: True if bigjoiner is supported by platform, false otherwise + */ +bool igt_is_bigjoiner_supported_by_source(int drm_fd) +{ + int disp_ver; + disp_ver = intel_display_ver(intel_get_drm_devid(drm_fd)); + + if (disp_ver < 12) { + igt_info("Bigjoiner is not supported on D11 and older platforms\n"); + return false; + } + + return true; +} + +/** + * igt_is_ultrajoiner_supported_by_source: + * @drm_fd: drm file descriptor + * + * Returns: True if ultrajoiner is supported by platform, false otherwise + */ +bool igt_is_ultrajoiner_supported_by_source(int drm_fd) +{ + bool is_dgfx; + int disp_ver; + + is_dgfx = is_xe_device(drm_fd) ? xe_has_vram(drm_fd) : gem_has_lmem(drm_fd); + disp_ver = intel_display_ver(intel_get_drm_devid(drm_fd)); + + if ((is_dgfx && disp_ver == 14) || (disp_ver > 14)) { + igt_info("Ultrajoiner is supported on igfx with D14+ and on dgfx with D14\n"); + return true; + } + + return false; +} diff --git a/lib/igt_kms.h b/lib/igt_kms.h index c4d76bdcb..e8a296c18 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1257,6 +1257,8 @@ bool igt_has_force_joiner_debugfs(int drmfd, char *conn_name); bool is_joiner_mode(int drm_fd, igt_output_t *output); bool igt_check_force_joiner_status(int drmfd, char *connector_name); bool igt_check_bigjoiner_support(igt_display_t *display); +bool igt_is_bigjoiner_supported_by_source(int drm_fd); +bool igt_is_ultrajoiner_supported_by_source(int drm_fd); bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode); bool intel_pipe_output_combo_valid(igt_display_t *display); bool igt_check_output_is_dp_mst(igt_output_t *output); diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c index 418ff26a6..2b72aa786 100644 --- a/tests/intel/kms_joiner.c +++ b/tests/intel/kms_joiner.c @@ -411,8 +411,8 @@ static void test_ultra_joiner(data_t *data, bool invalid_pipe, bool two_display, igt_main { - bool ultra_joiner_supported, is_dgfx; - int i, j, display_ver; + bool ultra_joiner_supported; + int i, j; igt_output_t *output; drmModeModeInfo mode; data_t data; @@ -434,9 +434,7 @@ igt_main igt_require(data.display.is_atomic); max_dotclock = igt_get_max_dotclock(data.drm_fd); - is_dgfx = is_xe_device(data.drm_fd) ? xe_has_vram(data.drm_fd) : gem_has_lmem(data.drm_fd); - display_ver = intel_display_ver(intel_get_drm_devid(data.drm_fd)); - if ((is_dgfx && display_ver == 14) || (display_ver > 14)) + if (igt_is_ultrajoiner_supported_by_source(data.drm_fd)) ultra_joiner_supported = true; for_each_connected_output(&data.display, output) { -- 2.25.1 From swati2.sharma at intel.com Tue Jan 7 18:57:08 2025 From: swati2.sharma at intel.com (Swati Sharma) Date: Wed, 8 Jan 2025 00:27:08 +0530 Subject: [PATCH i-g-t 3/4] tests/intel/kms_dsc_helper: Add helper func() In-Reply-To: <20250107185709.116756-1-swati2.sharma@intel.com> References: <20250107185709.116756-1-swati2.sharma@intel.com> Message-ID: <20250107185709.116756-4-swati2.sharma@intel.com> Add (big|ultra) joiner helper functions. Signed-off-by: Swati Sharma --- tests/intel/kms_dsc_helper.c | 46 ++++++++++++++++++++++++++++++++++++ tests/intel/kms_dsc_helper.h | 2 ++ 2 files changed, 48 insertions(+) diff --git a/tests/intel/kms_dsc_helper.c b/tests/intel/kms_dsc_helper.c index cea4304e4..8543498a7 100644 --- a/tests/intel/kms_dsc_helper.c +++ b/tests/intel/kms_dsc_helper.c @@ -201,3 +201,49 @@ bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *outp return true; } + +bool check_bigjoiner_constraints(int disp_ver, int n_pipes, int drmfd, igt_output_t *output) +{ + if (!igt_is_bigjoiner_supported_by_source(drmfd)) + return false; + + if (n_pipes < 2) { + igt_info("Bigjoiner requires minimum 2 pipes\n"); + return false; + } + + if (igt_get_dsc_sink_max_slice_count(drmfd, output->name) < 4) { + igt_info("Output %s doesn't support minimum 4 slice count\n", igt_output_name(output)); + return false; + } + + if (!igt_has_force_joiner_debugfs(drmfd, output->name)) { + igt_info("Output %s doesn't support force_joiner debugfs\n", igt_output_name(output)); + return false; + } + + return true; +} + +bool check_ultrajoiner_constraints(int disp_ver, int n_pipes, int drmfd, igt_output_t *output) +{ + if (!igt_is_ultrajoiner_supported_by_source(drmfd)) + return false; + + if (n_pipes < 4) { + igt_info("Ultrajoiner requires minimum 4 pipes\n"); + return false; + } + + if (igt_get_dsc_sink_max_slice_count(drmfd, output->name) < 8) { + igt_info("Output %s doesn't support minimum 8 slice count\n", igt_output_name(output)); + return false; + } + + if (!igt_has_force_joiner_debugfs(drmfd, output->name)) { + igt_info("Output %s doesn't support force_joiner debugfs\n", igt_output_name(output)); + return false; + } + + return true; +} diff --git a/tests/intel/kms_dsc_helper.h b/tests/intel/kms_dsc_helper.h index 4dbd88fe7..a24696640 100644 --- a/tests/intel/kms_dsc_helper.h +++ b/tests/intel/kms_dsc_helper.h @@ -38,5 +38,7 @@ void force_dsc_fractional_bpp_enable(int drmfd, igt_output_t *output); void save_force_dsc_fractional_bpp_en(int drmfd, igt_output_t *output); void restore_force_dsc_fractional_bpp_en(void); bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *output); +bool check_bigjoiner_constraints(int disp_ver, int n_pipes, int drmfd, igt_output_t *output); +bool check_ultrajoiner_constraints(int disp_ver, int n_pipes, int drmfd, igt_output_t *output); #endif -- 2.25.1 From swati2.sharma at intel.com Tue Jan 7 18:57:09 2025 From: swati2.sharma at intel.com (Swati Sharma) Date: Wed, 8 Jan 2025 00:27:09 +0530 Subject: [PATCH i-g-t 4/4] tests/intel/kms_dsc: Add force dsc and joiner test cases In-Reply-To: <20250107185709.116756-1-swati2.sharma@intel.com> References: <20250107185709.116756-1-swati2.sharma@intel.com> Message-ID: <20250107185709.116756-5-swati2.sharma@intel.com> Add test cases where we are validating force dsc and force joiner. Signed-off-by: Swati Sharma --- tests/intel/kms_dsc.c | 192 ++++++++++++++++++++++++++---------------- 1 file changed, 120 insertions(+), 72 deletions(-) diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c index 5508e7a9e..b88a4875e 100644 --- a/tests/intel/kms_dsc.c +++ b/tests/intel/kms_dsc.c @@ -57,7 +57,27 @@ * @with-output-formats-with-bpc: DSC with output formats with certain input BPC for the connector * @fractional-bpp: DSC with fractional bpp with default parameters * @fractional-bpp-with-bpc: DSC with fractional bpp with certain input BPC for the connector - */ + * + * SUBTEST: dsc-%s-%s + * Description: Tests Display Stream Compression functionality if supported by a + * connector by forcing %arg[1] and %arg[2] on all connectors that support it + * + * arg[1]: + * + * @basic: DSC with default parameters + * @with-bpc: DSC with certain input BPC for the connector + * @with-bpc-formats: DSC with certain input BPC for the connector and diff formats + * @with-formats: DSC with default parameters and creating fb with diff formats + * @with-output-formats: DSC with output formats + * @with-output-formats-with-bpc: DSC with output formats with certain input BPC for the connector + * @fractional-bpp: DSC with fractional bpp with default parameters + * @fractional-bpp-with-bpc: DSC with fractional bpp with certain input BPC for the connector + * + * arg[2]: + * + * @big-joiner: big joiner + * @ultra-joiner: ultra joiner +*/ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); @@ -83,11 +103,13 @@ typedef struct { int disp_ver; enum pipe pipe; bool limited; + int joined_pipes; } data_t; static int output_format_list[] = {DSC_FORMAT_YCBCR420, DSC_FORMAT_YCBCR444}; static int format_list[] = {DRM_FORMAT_XYUV8888, DRM_FORMAT_XRGB2101010, DRM_FORMAT_XRGB16161616F, DRM_FORMAT_YUYV}; static uint32_t bpc_list[] = {8, 10, 12}; +static int joiner_tests[] = {JOINED_PIPES_DEFAULT, JOINED_PIPES_BIG_JOINER, JOINED_PIPES_ULTRA_JOINER}; static inline void manual(const char *expected) { @@ -149,6 +171,7 @@ static void update_display(data_t *data, uint32_t test_type) int current_bpc = 0; igt_plane_t *primary; drmModeModeInfo *mode; + bool status; igt_output_t *output = data->output; igt_display_t *display = &data->display; drmModeConnector *connector = output->config.connector; @@ -161,6 +184,11 @@ static void update_display(data_t *data, uint32_t test_type) save_force_dsc_en(data->drm_fd, data->output); force_dsc_enable(data->drm_fd, data->output); + if (data->joined_pipes == JOINED_PIPES_BIG_JOINER || data->joined_pipes == JOINED_PIPES_ULTRA_JOINER) { + status = kmstest_force_connector_joiner(data->drm_fd, connector, data->joined_pipes); + igt_assert_f(status, "Failed to toggle force joiner\n"); + } + if (test_type & TEST_DSC_BPC) { igt_debug("Trying to set input BPC to %d\n", data->input_bpc); force_dsc_enable_bpc(data->drm_fd, data->output, data->input_bpc); @@ -260,17 +288,22 @@ reset: static void test_dsc(data_t *data, uint32_t test_type, int bpc, unsigned int plane_format, - enum dsc_output_format output_format) + enum dsc_output_format output_format, + int joined_pipes) { igt_display_t *display = &data->display; igt_output_t *output; enum pipe pipe; + int n_pipes = 0; char name[3][LEN] = { {0}, {0}, {0}, }; + for_each_pipe(display, pipe) + n_pipes++; + igt_require(check_gen11_bpc_constraint(data->drm_fd, data->input_bpc)); for_each_pipe_with_valid_output(display, pipe, output) { @@ -279,6 +312,7 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, data->input_bpc = bpc; data->output = output; data->pipe = pipe; + data->joined_pipes = joined_pipes; if (!is_dsc_supported_by_sink(data->drm_fd, data->output) || !check_gen11_dp_constraint(data->drm_fd, data->output, data->pipe)) @@ -299,6 +333,16 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, data->drm_fd, data->output))) continue; + if (((joined_pipes == JOINED_PIPES_BIG_JOINER) && (data->pipe == n_pipes - 1)) || + ((joined_pipes == JOINED_PIPES_BIG_JOINER) && (!check_bigjoiner_constraints(data->disp_ver, n_pipes, + data->drm_fd, data->output)))) + continue; + + if (((joined_pipes == JOINED_PIPES_ULTRA_JOINER) && (data->pipe == n_pipes - 1)) || + ((joined_pipes == JOINED_PIPES_ULTRA_JOINER) && (!check_ultrajoiner_constraints(data->disp_ver, n_pipes, + data->drm_fd, data->output)))) + continue; + if (test_type & TEST_DSC_OUTPUT_FORMAT) snprintf(&name[0][0], LEN, "-%s", kmstest_dsc_output_format_str(data->output_format)); if (test_type & TEST_DSC_FORMAT) @@ -348,85 +392,89 @@ igt_main_args("l", NULL, help_str, opt_handler, &data) igt_require(is_dsc_supported_by_source(data.drm_fd)); } - igt_describe("Tests basic display stream compression functionality if supported " - "by a connector by forcing DSC on all connectors that support it " - "with default parameters"); - igt_subtest_with_dynamic("dsc-basic") - test_dsc(&data, TEST_DSC_BASIC, DEFAULT_BPC, - DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB); - - igt_describe("Tests basic display stream compression functionality if supported " - "by a connector by forcing DSC on all connectors that support it " - "with default parameters and creating fb with diff formats"); - igt_subtest_with_dynamic("dsc-with-formats") { - for (int k = 0; k < ARRAY_SIZE(format_list); k++) - test_dsc(&data, TEST_DSC_FORMAT, DEFAULT_BPC, - format_list[k], DSC_FORMAT_RGB); - } - igt_describe("Tests basic display stream compression functionality if supported " - "by a connector by forcing DSC on all connectors that support it " - "with certain input BPC for the connector"); - igt_subtest_with_dynamic("dsc-with-bpc") { - for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) - test_dsc(&data, TEST_DSC_BPC, bpc_list[j], - DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB); - } + for (int i = 0; i < ARRAY_SIZE(joiner_tests) ; i++) { + igt_describe("Tests basic display stream compression functionality if supported " + "by a connector by forcing DSC on all connectors that support it " + "with default parameters"); + igt_subtest_with_dynamic_f("dsc-basic%s", igt_get_joined_pipes_name(joiner_tests[i])) { + test_dsc(&data, TEST_DSC_BASIC, DEFAULT_BPC, + DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB, joiner_tests[i]); + } - igt_describe("Tests basic display stream compression functionality if supported " - "by a connector by forcing DSC on all connectors that support it " - "with certain input BPC for the connector with diff formats"); - igt_subtest_with_dynamic("dsc-with-bpc-formats") { - for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) { - for (int k = 0; k < ARRAY_SIZE(format_list); k++) { - test_dsc(&data, TEST_DSC_BPC | TEST_DSC_FORMAT, - bpc_list[j], format_list[k], - DSC_FORMAT_RGB); - } + igt_describe("Tests basic display stream compression functionality if supported " + "by a connector by forcing DSC on all connectors that support it " + "with default parameters and creating fb with diff formats"); + igt_subtest_with_dynamic_f("dsc-with-formats%s", igt_get_joined_pipes_name(joiner_tests[i])) { + for (int k = 0; k < ARRAY_SIZE(format_list); k++) + test_dsc(&data, TEST_DSC_FORMAT, DEFAULT_BPC, + format_list[k], DSC_FORMAT_RGB, joiner_tests[i]); } - } - igt_describe("Tests basic display stream compression functionality if supported " - "by a connector by forcing DSC and output format on all connectors " - "that support it"); - igt_subtest_with_dynamic("dsc-with-output-formats") { - for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) - test_dsc(&data, TEST_DSC_OUTPUT_FORMAT, DEFAULT_BPC, - DRM_FORMAT_XRGB8888, - output_format_list[k]); - } + igt_describe("Tests basic display stream compression functionality if supported " + "by a connector by forcing DSC on all connectors that support it " + "with certain input BPC for the connector"); + igt_subtest_with_dynamic_f("dsc-with-bpc%s", igt_get_joined_pipes_name(joiner_tests[i])) { + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) + test_dsc(&data, TEST_DSC_BPC, bpc_list[j], + DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB, joiner_tests[i]); + } - igt_describe("Tests basic display stream compression functionality if supported " - "by a connector by forcing DSC and output format on all connectors " - "that support it with certain input BPC for the connector"); - igt_subtest_with_dynamic("dsc-with-output-formats-with-bpc") { - for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) { + igt_describe("Tests basic display stream compression functionality if supported " + "by a connector by forcing DSC on all connectors that support it " + "with certain input BPC for the connector with diff formats"); + igt_subtest_with_dynamic_f("dsc-with-bpc-formats%s", igt_get_joined_pipes_name(joiner_tests[i])) { for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) { - test_dsc(&data, TEST_DSC_OUTPUT_FORMAT | TEST_DSC_BPC, - bpc_list[j], DRM_FORMAT_XRGB8888, - output_format_list[k]); + for (int k = 0; k < ARRAY_SIZE(format_list); k++) { + test_dsc(&data, TEST_DSC_BPC | TEST_DSC_FORMAT, + bpc_list[j], format_list[k], + DSC_FORMAT_RGB, joiner_tests[i]); + } } } - } - igt_describe("Tests fractional compressed bpp functionality if supported " - "by a connector by forcing fractional_bpp on all connectors that support it " - "with default parameter. While finding the optimum compressed bpp, driver will " - "skip over the compressed bpps with integer values. It will go ahead with DSC, " - "iff compressed bpp is fractional, failing in which, it will fail the commit."); - igt_subtest_with_dynamic("dsc-fractional-bpp") - test_dsc(&data, TEST_DSC_FRACTIONAL_BPP, - DEFAULT_BPC, DRM_FORMAT_XRGB8888, - DSC_FORMAT_RGB); - - igt_describe("Tests fractional compressed bpp functionality if supported " - "by a connector by forcing fractional_bpp on all connectors that support it " - "with certain input BPC for the connector."); - igt_subtest_with_dynamic("dsc-fractional-bpp-with-bpc") { - for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) - test_dsc(&data, TEST_DSC_FRACTIONAL_BPP | TEST_DSC_BPC, - bpc_list[j], DRM_FORMAT_XRGB8888, - DSC_FORMAT_RGB); + igt_describe("Tests basic display stream compression functionality if supported " + "by a connector by forcing DSC and output format on all connectors " + "that support it"); + igt_subtest_with_dynamic_f("dsc-with-output-formats%s", igt_get_joined_pipes_name(joiner_tests[i])) { + for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) + test_dsc(&data, TEST_DSC_OUTPUT_FORMAT, DEFAULT_BPC, + DRM_FORMAT_XRGB8888, + output_format_list[k], joiner_tests[i]); + } + + igt_describe("Tests basic display stream compression functionality if supported " + "by a connector by forcing DSC and output format on all connectors " + "that support it with certain input BPC for the connector"); + igt_subtest_with_dynamic_f("dsc-with-output-formats-with-bpc%s", igt_get_joined_pipes_name(joiner_tests[i])) { + for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) { + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) { + test_dsc(&data, TEST_DSC_OUTPUT_FORMAT | TEST_DSC_BPC, + bpc_list[j], DRM_FORMAT_XRGB8888, + output_format_list[k], joiner_tests[i]); + } + } + } + + igt_describe("Tests fractional compressed bpp functionality if supported " + "by a connector by forcing fractional_bpp on all connectors that support it " + "with default parameter. While finding the optimum compressed bpp, driver will " + "skip over the compressed bpps with integer values. It will go ahead with DSC, " + "iff compressed bpp is fractional, failing in which, it will fail the commit."); + igt_subtest_with_dynamic_f("dsc-fractional-bpp%s", igt_get_joined_pipes_name(joiner_tests[i])) + test_dsc(&data, TEST_DSC_FRACTIONAL_BPP, + DEFAULT_BPC, DRM_FORMAT_XRGB8888, + DSC_FORMAT_RGB, joiner_tests[i]); + + igt_describe("Tests fractional compressed bpp functionality if supported " + "by a connector by forcing fractional_bpp on all connectors that support it " + "with certain input BPC for the connector."); + igt_subtest_with_dynamic_f("dsc-fractional-bpp-with-bpc%s", igt_get_joined_pipes_name(joiner_tests[i])) { + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) + test_dsc(&data, TEST_DSC_FRACTIONAL_BPP | TEST_DSC_BPC, + bpc_list[j], DRM_FORMAT_XRGB8888, + DSC_FORMAT_RGB, joiner_tests[i]); + } } igt_fixture { -- 2.25.1 From lucas.demarchi at intel.com Tue Jan 7 19:06:54 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Tue, 7 Jan 2025 13:06:54 -0600 Subject: [PATCH i-g-t 8/8] tests/intel/xe_drm_fdinfo: Stop asserting on usage percentage In-Reply-To: References: <20250104071548.737612-1-lucas.demarchi@intel.com> <20250104071548.737612-8-lucas.demarchi@intel.com> Message-ID: On Mon, Jan 06, 2025 at 10:58:34PM +0000, Cavitt, Jonathan wrote: >-----Original Message----- >From: igt-dev On Behalf Of Lucas De Marchi >Sent: Friday, January 3, 2025 11:16 PM >To: igt-dev at lists.freedesktop.org >Cc: De Marchi, Lucas ; Nerlige Ramappa, Umesh >Subject: [PATCH i-g-t 8/8] tests/intel/xe_drm_fdinfo: Stop asserting on usage percentage >> >> 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 > >There's a few nits/questions below, but I trust that everything is in >order, so nothing below is particularly blocking. If I did manage to >catch something that needs fixing, then of course that should be >fixed, but otherwise: >Reviewed-by: Jonathan Cavitt > >> --- >> 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 (c) 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; > >Nit: >There's probably an argument to be made that we didn't need to modify >the calculation here because the end result is still the same and it loses >a (presumably) helpful comment, but I won't block on it. ok, adding that back > >Also, is this percentage correct given the test modifications? >Maybe we should be dividing by spin_stamp + 1 instead, since that's what >we're using to calculate the percentage later? nah.. there are 2 percentages here. This one I decided to leave as a debug print... it's still useful to check we are ~100% utilization. I just don't want the test to assert that anymore as it's noisy when there are things disrupting the test execution. > >> + 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 > >Nit: >s/percentage/Percentage > >> */ >> - igt_assert_lt_double(95.0, percent); >> - igt_assert_lt_double(percent, 105.0); >> + percent = fabs((num - spin_stamp) * 100.0) / (spin_stamp + 1); > >Nit: >Shouldn't we also be dividing by width here? I'm just asking because that's actually spin_stamp should be multiplied by width, which should also fix the errors reported by CI - I happened to test it only on machines that had 1 CCS so didn't reproduce any issue on virtual/parallel. My bad. I'm adding a fix and sending as v2. thanks Lucas De Marchi >what we were doing before, and it looks like spin_stamp is being used here >as a stand-in for the "den" variable in the earlier percent calculation. > >> + 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 kamil.konieczny at linux.intel.com Tue Jan 7 19:54:47 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Tue, 7 Jan 2025 20:54:47 +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: <20250103222628.4069004-1-thomas.petazzoni@bootlin.com> References: <20250103222628.4069004-1-thomas.petazzoni@bootlin.com> Message-ID: <20250107195447.v5fvx2jbg2jduyxa@kamilkon-desk.igk.intel.com> Hi Thomas, On 2025-01-03 at 23:26:28 +0100, Thomas Petazzoni wrote: I have few small nits (could be addressed at merge) and one question to Jim. In subject, you do not need to cite file extensions, so better: [PATCH i-g-t] lib/igt_aux: 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. Please do not use dots '.' nor commas ',' at end of links, so better: 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: Same here, no ',' so better: https://gitlab.com/procps-ng/procps/-/issues/366 but in the mean time, the build of igt-gpu-tools breaks with: And last question to Jim, do we really need an ABI break in lib? Why not just make new macro PIDS_VAL3 with three params? And change old one to drop 4th param? > > ../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. > +cc Cc: DeX77 Cc: Jim Warner Regards, Kamil > 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 ramanaidu.naladala at intel.com Tue Jan 7 20:06:09 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Wed, 8 Jan 2025 01:36:09 +0530 Subject: [PATCH i-g-t v2 0/5] Update image assets Message-ID: <20250107200614.963199-1-ramanaidu.naladala@intel.com> Update image assets and improve file handling. Naladala Ramanaidu (5): data: Move PNG images to new data directory runner/settings: Constify absolute_path parameter runner/settings: Add function to set IGT_RUNNER_DATA environment variable lib/igt_core: Enhance __igt_fopen_data to support additional directories HAX patch do not merge {tests => data}/1080p-left.png | Bin {tests => data}/1080p-right.png | Bin data/meson.build | 11 + {tests => data}/pass.png | Bin lib/igt_core.c | 31 ++- lib/igt_core.h | 6 +- lib/meson.build | 1 + meson.build | 2 + runner/runner.c | 8 + runner/settings.c | 11 +- runner/settings.h | 3 +- tests/intel-ci/fast-feedback.testlist | 168 +------------- tests/intel-ci/xe-fast-feedback.testlist | 273 +---------------------- tests/meson.build | 6 - 14 files changed, 54 insertions(+), 466 deletions(-) rename {tests => data}/1080p-left.png (100%) rename {tests => data}/1080p-right.png (100%) create mode 100644 data/meson.build rename {tests => data}/pass.png (100%) -- 2.43.0 From ramanaidu.naladala at intel.com Tue Jan 7 20:06:10 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Wed, 8 Jan 2025 01:36:10 +0530 Subject: [PATCH i-g-t v2 1/5] data: Move PNG images to new data directory In-Reply-To: <20250107200614.963199-1-ramanaidu.naladala@intel.com> References: <20250107200614.963199-1-ramanaidu.naladala@intel.com> Message-ID: <20250107200614.963199-2-ramanaidu.naladala@intel.com> Placing png images inside "tests/" directory seems wrong, as these are not source files. These images should ideally be in a directory with other non-exec files, so creating a new "data/" directory to store such non-exec files. v2: Update commit message subject (Kamil) Signed-off-by: Naladala Ramanaidu Signed-off-by: Swati Sharma --- {tests => data}/1080p-left.png | Bin {tests => data}/1080p-right.png | Bin data/meson.build | 11 +++++++++++ {tests => data}/pass.png | Bin lib/meson.build | 1 + meson.build | 2 ++ tests/meson.build | 6 ------ 7 files changed, 14 insertions(+), 6 deletions(-) rename {tests => data}/1080p-left.png (100%) rename {tests => data}/1080p-right.png (100%) create mode 100644 data/meson.build rename {tests => data}/pass.png (100%) diff --git a/tests/1080p-left.png b/data/1080p-left.png similarity index 100% rename from tests/1080p-left.png rename to data/1080p-left.png diff --git a/tests/1080p-right.png b/data/1080p-right.png similarity index 100% rename from tests/1080p-right.png rename to data/1080p-right.png diff --git a/data/meson.build b/data/meson.build new file mode 100644 index 000000000..9490d20ac --- /dev/null +++ b/data/meson.build @@ -0,0 +1,11 @@ +image_files = [ + '1080p-left.png', + '1080p-right.png', + 'pass.png', +] + +foreach img : image_files + configure_file(output:img, input:img, copy:true) +endforeach + +install_data(sources : image_files, install_dir : datadir) diff --git a/tests/pass.png b/data/pass.png similarity index 100% rename from tests/pass.png rename to data/pass.png diff --git a/lib/meson.build b/lib/meson.build index 1704ed1e1..afa09ae02 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -240,6 +240,7 @@ foreach f: lib_sources '-DIGT_DATADIR="@0@"'.format(join_paths(prefix, datadir)), '-DIGT_SRCDIR="@0@"'.format(srcdir), '-DIGT_LOG_DOMAIN="@0@"'.format(f.split('.')[0]), + '-DIGT_IMGDIR="@0@"'.format(imgdir), ]) lib_intermediates += lib diff --git a/meson.build b/meson.build index 8b2a2a64a..6779465b3 100644 --- a/meson.build +++ b/meson.build @@ -293,6 +293,7 @@ vmwgfxdir = join_paths(libexecdir, 'vmwgfx') mandir = get_option('mandir') pkgconfigdir = join_paths(libdir, 'pkgconfig') python3 = find_program('python3', required : true) +imgdir = join_paths(build_root, 'data') if get_option('use_rpath') # Set up runpath for the test executables towards libigt.so. @@ -388,6 +389,7 @@ endif subdir('overlay') subdir('man') subdir('docs') +subdir('data') message('Build options') message('=============') diff --git a/tests/meson.build b/tests/meson.build index 89bba6454..a8d875d36 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -510,11 +510,5 @@ if not meson.is_cross_build() output : 'gem_stress.testlist') endif -image_files = [ - '1080p-left.png', - '1080p-right.png', - 'pass.png', -] -install_data(sources : image_files, install_dir : datadir) subdir('intel-ci') -- 2.43.0 From ramanaidu.naladala at intel.com Tue Jan 7 20:06:11 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Wed, 8 Jan 2025 01:36:11 +0530 Subject: [PATCH i-g-t v2 2/5] runner/settings: Constify absolute_path parameter In-Reply-To: <20250107200614.963199-1-ramanaidu.naladala@intel.com> References: <20250107200614.963199-1-ramanaidu.naladala@intel.com> Message-ID: <20250107200614.963199-3-ramanaidu.naladala@intel.com> Modified absolute_path to use const char* for input, updating the corresponding declaration. This ensures the input path remains unmodified, enhancing code safety and clarity. v2: Update commit subject. (kmail) Signed-off-by: Naladala Ramanaidu --- runner/settings.c | 2 +- runner/settings.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runner/settings.c b/runner/settings.c index 92fd42ea6..bea0c3059 100644 --- a/runner/settings.c +++ b/runner/settings.c @@ -567,7 +567,7 @@ static char *_basename(const char *path) return tmpname; } -char *absolute_path(char *path) +char *absolute_path(const char *path) { char *result = NULL; char *base, *dir; diff --git a/runner/settings.h b/runner/settings.h index f69f09778..7e6cd11e2 100644 --- a/runner/settings.h +++ b/runner/settings.h @@ -136,7 +136,7 @@ bool parse_options(int argc, char **argv, bool validate_settings(struct settings *settings); /* TODO: Better place for this */ -char *absolute_path(char *path); +char *absolute_path(const char *path); /** * serialize_settings: -- 2.43.0 From ramanaidu.naladala at intel.com Tue Jan 7 20:06:12 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Wed, 8 Jan 2025 01:36:12 +0530 Subject: [PATCH i-g-t v2 3/5] runner/settings: Add function to set IGT_RUNNER_DATA environment variable In-Reply-To: <20250107200614.963199-1-ramanaidu.naladala@intel.com> References: <20250107200614.963199-1-ramanaidu.naladala@intel.com> Message-ID: <20250107200614.963199-4-ramanaidu.naladala@intel.com> Introduced set_runner_datadir() to set the IGT_RUNNER_DATA environment variable. This function uses absolute_path() to convert the relative path "../share/igt-gpu-tools" to an absolute path. Update the runner/runner code to call set_runner_datadir() and handle errors appropriately. v2: Fix review comments. (Kamil) Signed-off-by: Naladala Ramanaidu --- runner/runner.c | 8 ++++++++ runner/settings.c | 9 +++++++++ runner/settings.h | 1 + 3 files changed, 18 insertions(+) diff --git a/runner/runner.c b/runner/runner.c index 4855ad641..950eb5662 100644 --- a/runner/runner.c +++ b/runner/runner.c @@ -12,8 +12,13 @@ int main(int argc, char **argv) struct job_list job_list; struct execute_state state; int exitcode = 0; + int data_flag = 0; init_settings(&settings); + data_flag = set_runner_datadir(); + if (data_flag) + fprintf(stderr, "Data dir path not set\n"); + init_job_list(&job_list); if (!parse_options(argc, argv, &settings)) { @@ -49,6 +54,9 @@ int main(int argc, char **argv) exitcode = 1; } + if (!data_flag) + unsetenv("IGT_RUNNER_DATA"); + printf("Done.\n"); return exitcode; } diff --git a/runner/settings.c b/runner/settings.c index bea0c3059..c8220be32 100644 --- a/runner/settings.c +++ b/runner/settings.c @@ -589,6 +589,15 @@ char *absolute_path(const char *path) return result; } +int set_runner_datadir(void) +{ + const char *datapath = "../share/igt-gpu-tools"; + char *abpath; + + abpath = absolute_path(datapath); + return setenv("IGT_RUNNER_DATA", abpath, 1); +} + static char *bin_path(char *fname) { char *path, *p; diff --git a/runner/settings.h b/runner/settings.h index 7e6cd11e2..5926817b6 100644 --- a/runner/settings.h +++ b/runner/settings.h @@ -150,5 +150,6 @@ bool serialize_settings(struct settings *settings); bool read_settings_from_file(struct settings *settings, FILE* f); bool read_settings_from_dir(struct settings *settings, int dirfd); +int set_runner_datadir(void); #endif -- 2.43.0 From ramanaidu.naladala at intel.com Tue Jan 7 20:06:13 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Wed, 8 Jan 2025 01:36:13 +0530 Subject: [PATCH i-g-t v2 4/5] lib/igt_core: Enhance __igt_fopen_data to support additional directories In-Reply-To: <20250107200614.963199-1-ramanaidu.naladala@intel.com> References: <20250107200614.963199-1-ramanaidu.naladala@intel.com> Message-ID: <20250107200614.963199-5-ramanaidu.naladala@intel.com> Add an additional parameter for the image directory. Refactor the function to use an array of directories to iterate through, reducing redundancy. Include a check for the "IGT_RUNNER_DATA" environment variable. v2: Fix review comments. (Santhosh, Kamil) Signed-off-by: Naladala Ramanaidu Signed-off-by: Swati Sharma --- lib/igt_core.c | 31 +++++++++++++++---------------- lib/igt_core.h | 6 +++--- 2 files changed, 18 insertions(+), 19 deletions(-) diff --git a/lib/igt_core.c b/lib/igt_core.c index 407f7b551..cd43d276a 100644 --- a/lib/igt_core.c +++ b/lib/igt_core.c @@ -3305,27 +3305,26 @@ void igt_reset_timeout(void) igt_set_timeout(0, NULL); } -FILE *__igt_fopen_data(const char* igt_srcdir, const char* igt_datadir, - const char* filename) +FILE *__igt_fopen_data(const char *igt_srcdir, const char *igt_datadir, + const char *igt_imgdir, const char *filename) { char path[PATH_MAX]; FILE *fp; - - snprintf(path, sizeof(path), "%s/%s", igt_datadir, filename); - fp = fopen(path, "r"); - if (!fp) { - snprintf(path, sizeof(path), "%s/%s", igt_srcdir, filename); - fp = fopen(path, "r"); - } - if (!fp) { - snprintf(path, sizeof(path), "./%s", filename); - fp = fopen(path, "r"); + size_t i; + const char *dirs[] = {igt_datadir, igt_srcdir, igt_imgdir, + getenv("IGT_RUNNER_DATA"), "./data"}; + + for (i = 0; i < ARRAY_SIZE(dirs); i++) { + if (dirs[i]) { + snprintf(path, sizeof(path), "%s/%s", dirs[i], filename); + fp = fopen(path, "r"); + if (fp) + return fp; + } } - if (!fp) - igt_critical("Could not open data file \"%s\": %m\n", filename); - - return fp; + igt_critical("Could not open data file \"%s\": %m\n", filename); + return NULL; } static void log_output(int *fd, enum igt_log_level level) diff --git a/lib/igt_core.h b/lib/igt_core.h index f0ba1a381..05134a104 100644 --- a/lib/igt_core.h +++ b/lib/igt_core.h @@ -1456,8 +1456,8 @@ static inline uint32_t igt_seconds_elapsed(struct timespec *start) void igt_reset_timeout(void); -FILE *__igt_fopen_data(const char* igt_srcdir, const char* igt_datadir, - const char* filename); +FILE *__igt_fopen_data(const char *igt_srcdir, const char *igt_datadir, + const char *igt_imgdir, const char *filename); /** * igt_fopen_data: * @filename: filename to open. @@ -1466,7 +1466,7 @@ FILE *__igt_fopen_data(const char* igt_srcdir, const char* igt_datadir, * then from build directory, and finally from current directory. */ #define igt_fopen_data(filename) \ - __igt_fopen_data(IGT_SRCDIR, IGT_DATADIR, filename) + __igt_fopen_data(IGT_SRCDIR, IGT_DATADIR, IGT_IMGDIR, filename) int igt_system(const char *command); int igt_system_quiet(const char *command); -- 2.43.0 From ramanaidu.naladala at intel.com Tue Jan 7 20:06:14 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Wed, 8 Jan 2025 01:36:14 +0530 Subject: [PATCH i-g-t v2 5/5] HAX patch do not merge In-Reply-To: <20250107200614.963199-1-ramanaidu.naladala@intel.com> References: <20250107200614.963199-1-ramanaidu.naladala@intel.com> Message-ID: <20250107200614.963199-6-ramanaidu.naladala@intel.com> HAX patch do not merge Signed-off-by: Naladala Ramanaidu --- tests/intel-ci/fast-feedback.testlist | 168 +------------- tests/intel-ci/xe-fast-feedback.testlist | 273 +---------------------- 2 files changed, 2 insertions(+), 439 deletions(-) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index be0965110..d8fae0172 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -2,170 +2,4 @@ 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_3d diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index 0234d3e72..c1c1f735e 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -1,275 +1,4 @@ # 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_3d -- 2.43.0 From jonathan.cavitt at intel.com Tue Jan 7 20:17:52 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Tue, 7 Jan 2025 20:17:52 +0000 Subject: [PATCH RFC i-g-t] lib/igt_kmemleak: library to interact with kmemleak In-Reply-To: <20241216184642.133454-1-peter.senna@linux.intel.com> References: <20241216184642.133454-1-peter.senna@linux.intel.com> Message-ID: -----Original Message----- From: igt-dev On Behalf Of Peter Senna Tschudin Sent: Monday, December 16, 2024 10:47 AM To: igt-dev at lists.freedesktop.org Cc: Senna, Peter ; Gandi, Ramadevi ; Knop, Ryszard ; Lattannavar, Sameer ; De Marchi, Lucas ; Saarinen, Jani ; Piecielska, Katarzyna ; Roper, Matthew D ; gregory.f.germano at intel.com; Taylor, Clinton A ; Vivekanandan, Balasubramani ; Yu, Jianshui ; Peter Senna Tschudin Subject: [PATCH RFC i-g-t] lib/igt_kmemleak: library to interact with kmemleak > > From: Peter Senna Tschudin > > Adds a simple library for interacting with kmemleak ispired by > 'tests/amdgpu/amd_mem_leak.c'. Also adds unit testing for the > library. > > To use the library include "igt_kmemleak.h" and: > 1. igt_kmemleak_init(NULL) /* Returns true if kmemleak is active */ > 2. igt_kmemleak_clear() > 3. /* Run your test */ > 4. igt_kmemleak_scan() > 5. if (igt_kmemleak_found_leaks()) > igt_kmemleak_cp_leaks_file(*dst) > > CC: ramadevi.gandi at intel.com > CC: ryszard.knop at intel.com > CC: sameer.lattannavar at intel.com > CC: lucas.demarchi at intel.com > CC: jani.saarinen at intel.com > CC: katarzyna.piecielska at intel.com > CC: matthew.d.roper at intel.com > CC: gregory.f.germano at intel.com > CC: clinton.a.taylor at intel.com > CC: balasubramani.vivekanandan at intel.com > CC: jianshui.yu at intel.com > Signed-off-by: Peter Senna Tschudin I'm not particularly well-versed in kmemleak, but nothing about this patch seems out of the ordinary. Though I can still offer some small style-related suggestions. Also, do you want a reviewed-by for this? I'd give one right now but I don't think I should be Acking RFC patches. > --- > lib/igt_kmemleak.c | 154 +++++++++++++++++++++ > lib/igt_kmemleak.h | 69 ++++++++++ > lib/meson.build | 1 + > lib/tests/igt_kmemleak.c | 291 +++++++++++++++++++++++++++++++++++++++ > lib/tests/meson.build | 1 + > 5 files changed, 516 insertions(+) > create mode 100644 lib/igt_kmemleak.c > create mode 100644 lib/igt_kmemleak.h > create mode 100644 lib/tests/igt_kmemleak.c > > diff --git a/lib/igt_kmemleak.c b/lib/igt_kmemleak.c > new file mode 100644 > index 000000000..02ee0361d > --- /dev/null > +++ b/lib/igt_kmemleak.c > @@ -0,0 +1,154 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright ? 2024 Intel Corporation > + */ > + > +#include > +#include > +#include > +#include > +#include > + > +#include "igt_core.h" > +#include "igt_device_scan.h" > +#include "igt_kmemleak.h" > +#include "igt_kmod.h" > +#include "igt_list.h" > + > +/* We can change the path for unit testing, see igt_kmemleak_init() */ > +static char igt_kmemleak_file[256] = "/sys/kernel/debug/kmemleak"; > + > +/** > + * igt_kmemeak_init: > + * @igt_kmemleak_file: update the path to kmemleak file to enable unit testing > + * > + * Check if kmemleak is enabled in the kernel, if debugfs is mounted and > + * if kmemleak file is present and readable. > + * > + * Returns: true if kmemleak is enabled, false otherwise. > + */ > +bool igt_kmemleak_init(const char *unit_test_kmemleak_file) > +{ > + FILE *fp; > + > + if (unit_test_kmemleak_file) > + snprintf(igt_kmemleak_file, > + sizeof(igt_kmemleak_file), > + "%s", > + unit_test_kmemleak_file); > + > + fp = fopen(igt_kmemleak_file, "r"); > + if (!fp) > + return false; > + > + fclose(fp); > + return true; > +} > + > +/** > + * igt_kmemeak_cmd: > + * @cmd: command to send to kmemleak > + * > + * Send a command to kmemleak. > + * > + * Returns: true if sending the command was successful, false otherwise. > + */ > +bool igt_kmemleak_cmd(const char *cmd) > +{ > + FILE *fp; > + > + fp = fopen(igt_kmemleak_file, "r+"); > + if (!fp) > + return false; > + > + if (fwrite(cmd, 1, strlen(cmd), fp) != strlen(cmd)) { > + fclose(fp); > + return false; > + } Maybe we can reduce the number of fclose calls by capturing the fwrite return value: """ bool igt_kmemleak_cmd(const char *cmd) { FILE *fp; size_t wlen; fp = fopen(igt_kmemleak_file, "r+"); if (!fp) return false; wlen = fwrite(cmd, 1, strlen(cmd), fp); fclose(fp); return wlen == strlen(cmd); } """ Though that's not strictly necessary here. > + > + fclose(fp); > + return true; > +} > + > +/** > + * igt_kmemeak_scan: > + * > + * Trigger an immediate scan on kmemleak. > + * > + * Returns: true if sending the command to scan was successful, false otherwise. > + */ > +bool igt_kmemleak_scan(void) > +{ > + return igt_kmemleak_cmd("scan"); > +} > + > +/** > + * igt_kmemeak_clear: > + * > + * Trigger an immediate clear on kmemleak. > + * > + * Returns: true if sending the command to clear was successful, false > + * otherwise. > + */ > +bool igt_kmemleak_clear(void) > +{ > + return igt_kmemleak_cmd("clear"); > +} > + > +/** > + * igt_kmemeak_found_leaks: > + * > + * Check if kmemleak found any leaks. > + * > + * Returns: true if kmemleak found any leaks, false otherwise. > + */ > +bool igt_kmemleak_found_leaks(void) > +{ > + FILE *fp; > + char buf[1]; > + > + fp = fopen(igt_kmemleak_file, "r"); > + if (!fp) > + return false; > + > + if (fread(buf, 1, 1, fp) <= 0) { > + fclose(fp); > + return false; > + } Same comment as with igt_kmemleak_cmd above: """ bool igt_kmemleak_found_leak(void) { FILE *fp; char buf[1]; size_t rlen; fp = fopen(igt_kmemleak_file, "r"); if (!fp) return false; rlen = fread(buf, 1, 1, fp); fclose(fp); return rlen > 0; } """ Though, again, this isn't strictly necessary. > + > + /* fread() did read 1 char */ > + fclose(fp); > + return true; > +} > + > +/** > + * igt_kmemeak_cp_leaks_file: > + * @dst: path of destination file including the file name > + * > + * Copy kmemleak file to dst. > + * > + * Returns: true if copy was successful, false otherwise > + */ > +bool igt_kmemleak_cp_leaks_file(const char *dst) > +{ > + FILE *src, *dest; > + char buf[1024]; > + size_t n; > + > + src = fopen(igt_kmemleak_file, "r"); > + if (!src) > + return false; > + > + dest = fopen(dst, "w"); > + if (!dest) { > + fclose(src); > + return false; > + } > + > + while ((n = fread(buf, 1, sizeof(buf), src)) > 0) > + fwrite(buf, 1, n, dest); > + > + fclose(src); > + fclose(dest); I think these two fclose calls should swap places for style reasons, but it's also not particularly important. > + return true; > +} > diff --git a/lib/igt_kmemleak.h b/lib/igt_kmemleak.h > new file mode 100644 > index 000000000..a65f31810 > --- /dev/null > +++ b/lib/igt_kmemleak.h > @@ -0,0 +1,69 @@ > +/* SPDX-License-Identifier: MIT > + * Copyright ? 2024 Intel Corporation > + */ > + > +#ifndef IGT_KMEMLEAK_H > +#define IGT_KMEMLEAK_H > + > +#include > + > +/** > + * igt_kmemeak_init: > + * @igt_kmemleak_file: update the path to kmemleak file to enable unit testing > + * > + * Check if kmemleak is enabled in the kernel, if debugfs is mounted and > + * if kmemleak file is present and readable. > + * > + * Returns: true if kmemleak is enabled, false otherwise. > + */ I don't think we need comments like this for both the implementation and the header file. The former should be sufficient. > +bool igt_kmemleak_init(const char *unit_test_kmemleak_file); > + > +/** > + * igt_kmemeak_cmd: > + * @cmd: command to send to kmemleak > + * > + * Send a command to kmemleak. > + * > + * Returns: true if sending the command was successful, false otherwise. > + */ > +bool igt_kmemleak_cmd(const char *cmd); > + > +/** > + * igt_kmemeak_scan: > + * > + * Trigger an immediate scan on kmemleak. > + * > + * Returns: true if sending the command to scan was successful, false otherwise. > + */ > +bool igt_kmemleak_scan(void); > + > +/** > + * igt_kmemeak_clear: > + * > + * Trigger an immediate clear on kmemleak. > + * > + * Returns: true if sending the command to clear was successful, false > + * otherwise. > + */ > +bool igt_kmemleak_clear(void); > + > +/** > + * igt_kmemeak_found_leaks: > + * > + * Check if kmemleak found any leaks. > + * > + * Returns: true if kmemleak found any leaks, false otherwise. > + */ > +bool igt_kmemleak_found_leaks(void); > + > +/** > + * igt_kmemeak_cp_leaks_file: > + * @dst: path of destination file including the file name > + * > + * Copy kmemleak file to dst. > + * > + * Returns: true if copy was successful, false otherwise > + */ > +bool igt_kmemleak_cp_leaks_file(const char *dst); > + > +#endif /* IGT_KMEMLEAK_H */ > diff --git a/lib/meson.build b/lib/meson.build > index 640513e6c..24423ef37 100644 > --- a/lib/meson.build > +++ b/lib/meson.build > @@ -96,6 +96,7 @@ lib_sources = [ > 'igt_dummyload.c', > 'igt_store.c', > 'uwildmat/uwildmat.c', > + 'igt_kmemleak.c', > 'igt_kmod.c', > 'igt_ktap.c', > 'igt_panfrost.c', > diff --git a/lib/tests/igt_kmemleak.c b/lib/tests/igt_kmemleak.c > new file mode 100644 > index 000000000..f5bf5ca07 > --- /dev/null > +++ b/lib/tests/igt_kmemleak.c > @@ -0,0 +1,291 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright ? 2024 Intel Corporation > + */ > + > +#include > +#include > +#include > +#include > + > +#include "igt_core.h" > +#include "igt_kmemleak.h" > + > +const char *kmemleak_file_example = > +"unreferenced object 0xffff888102a2e638 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 00 00 00 00 00 00 00 00 0d 01 a2 00 00 00 00 00 ................\n" > +" f0 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" > +" backtrace (crc 2df71a7e):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2ed18 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 38 e6 a2 02 81 88 ff ff 0d 11 2d 00 00 00 00 00 8.........-.....\n" > +" f2 7c 03 00 00 c9 ff ff 58 ea a2 02 81 88 ff ff .|......X.......\n" > +" backtrace (crc ec2a8bdc):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2ea58 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 38 e6 a2 02 81 88 ff ff 0d 01 a0 00 00 00 00 00 8...............\n" > +" f6 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" > +" backtrace (crc f911c0d1):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e428 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 58 ea a2 02 81 88 ff ff 0d 01 35 00 00 00 00 00 X.........5.....\n" > +" fc 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" > +" backtrace (crc cb8aaffd):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e008 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 28 e4 a2 02 81 88 ff ff 0d 01 2d 00 00 00 00 00 (.........-.....\n" > +" fc 7c 03 00 00 c9 ff ff c8 e2 a2 02 81 88 ff ff .|..............\n" > +" backtrace (crc 7f883e78):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_get_next_namepath+0x1f5/0x390\n" > +" [] acpi_ps_parse_loop+0x4a5/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e2c8 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 28 e4 a2 02 81 88 ff ff 0d 01 73 00 00 00 00 00 (.........s.....\n" > +" 00 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" > +" backtrace (crc 338c016):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e378 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" c8 e2 a2 02 81 88 ff ff 0d 01 0d 00 00 00 00 00 ................\n" > +" 01 7d 03 00 00 c9 ff ff 98 e7 a2 02 81 88 ff ff .}..............\n" > +" backtrace (crc 665fb8a7):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e798 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 7c8 e2 a2 02 81 88 ff ff 0d 01 98 00 00 00 00 00 ................\n" > +" 1b 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" > +" backtrace (crc b7a23a1c):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e0b8 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 98 e7 a2 02 81 88 ff ff 0d 01 2d 00 00 00 00 00 ..........-.....\n" > +" 1c 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" > +" backtrace (crc 14d67a9c):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170\n"; > + > +static unsigned long crc32_file(int fd) > +{ > + unsigned long crc; > + char buf[1024]; > + ssize_t n; > + > + crc = crc32(0, Z_NULL, 0); > + while ((n = read(fd, buf, sizeof(buf))) > 0) > + crc = crc32(crc, (const Bytef *)buf, n); > + > + return crc; > +} > + > +static void test_igt_kmemleak_cp_leaks_file(void) > +{ > + char dst_file_path[256] = "/tmp/igt_kmemleak_dstfile_XXXXXX"; > + int fd; > + unsigned long crc; > + > + fd = mkstemp(dst_file_path); > + close(fd); > + > + igt_assert(igt_kmemleak_cp_leaks_file(dst_file_path)); > + > + /* Test that both files have the same size */ > + fd = open(dst_file_path, O_RDONLY); > + igt_assert(fd >= 0); > + igt_assert(lseek(fd, 0, SEEK_END) == strlen(kmemleak_file_example)); > + close(fd); > + > + /* Test that both files have the same content */ > + crc = crc32(0, Z_NULL, 0); > + crc = crc32(crc, > + (const Bytef *)kmemleak_file_example, > + strlen(kmemleak_file_example)); > + > + fd = open(dst_file_path, O_RDONLY); > + igt_assert(fd >= 0); > + igt_info(" dst_file: %s\n", dst_file_path); > + close(fd); > +} > + > +static void test_empty_file(void) > +{ > + char tmp_file_path[256] = "/tmp/igt_kmemleak_test_XXXXXX"; > + int fd; > + > + fd = mkstemp(tmp_file_path); > + igt_assert(fd >= 0); > + close(fd); > + > + /* Set the path for the unit testing file */ > + igt_assert(igt_kmemleak_init(tmp_file_path)); > + igt_assert(!igt_kmemleak_found_leaks()); > +} > + > +static void test_non_empty_file(void) > +{ > + char tmp_file_path[256] = "/tmp/igt_kmemleak_test_XXXXXX"; > + int fd; > + > + fd = mkstemp(tmp_file_path); > + igt_assert(fd >= 0); > + write(fd, kmemleak_file_example, strlen(kmemleak_file_example)); > + > + /* Set the path for the unit testing file */ > + igt_assert(igt_kmemleak_init(tmp_file_path)); > + > + /* Test igt_kmemleak_found_leaks() that should return true */ > + igt_assert(igt_kmemleak_found_leaks()); test_empty_file and test_non_empty_file could probably be consolidated into a single "test_file" or "test_kmemleak_file" test with a Boolean determining if we want to write to the test file or not: """ static void test_kmemleak_file(bool write) { char tmp_file_path[256] = "/tmp/igt_kmemleak_test_XXXXXX"; int fd = mkstemp(tmp_file_path); igt_assert(fd >= 0); if (write) write(fd, kmemleak_file_example, strlen(kmemleak_file_example)); /* Set the path for the unit testing file */ igt_assert(igt_kmemleak_init(tmp_file_path)); /* Test igt_kmemleak_found_leaks() returns true if written */ igt_assert(igt_kmemleak_found_leaks() == write); close(fd); } ... igt_simple_main { test_kmemleak_file(false); test_kmemleak_file(true); test_igt_kmemleak_cp_leaks_file(); } """ > +} > + > +igt_simple_main > +{ > + test_empty_file(); > + test_non_empty_file(); > + test_igt_kmemleak_cp_leaks_file(); It might be better to separate these out into their own subtests: """ igt_subtest_f("empty-file") test_empty_file(); igt_subtest_f("non-empty-file") test_non_empty_file(); igt_subtest_f("cp-leaks-file") test_igt_kmemleak_cp_leaks_file(); """ Though looking at it a bit closer, I see that test_igt_kmemleak_cp_leaks_file depends on the completion of test_non_empty_file to run properly? Maybe we should separate the test out into chunks? Let me try prototyping it here: """ --- Original file up to end of crc32_file function is unchanged --- static void init_kmemleak_file(bool write) { --- Same as test_kmemleak_file from earlier suggestion --- } static void test_kmemleak_cp_leaks_file(void) { char dst_file_path[256] = "/tmp/igt_kmemleak_dstfile_XXXXXX"; int fd; unsigned long crc; init_kmemleak_file(true); fd = mkstemp(dst_file_path); --- Rest of test is unchanged after this point --- } igt_main { igt_subtest_f("empty") init_kmemleak_file(false); igt_subtest_f("non-empty") init_kmemleak_file(true); igt_subtest_f("cp-leaks-file") test_kmemleak_cp_leaks_file(); } """ -Jonathan Cavitt > +} > diff --git a/lib/tests/meson.build b/lib/tests/meson.build > index df8092638..bcbea9ba4 100644 > --- a/lib/tests/meson.build > +++ b/lib/tests/meson.build > @@ -15,6 +15,7 @@ lib_tests = [ > 'igt_ktap_parser', > 'igt_list_only', > 'igt_invalid_subtest_name', > + 'igt_kmemleak', > 'igt_nesting', > 'igt_no_exit', > 'igt_runnercomms_packets', > -- > 2.34.1 > > From lucas.demarchi at intel.com Tue Jan 7 20:26:08 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Tue, 7 Jan 2025 12:26:08 -0800 Subject: [PATCH i-g-t v2 1/8] lib/xe/xe_gt: Fix header guards and boilerplate Message-ID: <20250107202615.1306306-1-lucas.demarchi@intel.com> Add proper header guard and remove author from comment: authorship is maintained in git, not as comment. Reviewed-by: Jonathan Cavitt 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 Tue Jan 7 20:26:09 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Tue, 7 Jan 2025 12:26:09 -0800 Subject: [PATCH i-g-t v2 2/8] lib/xe: Move functions from xe_util to xe_gt In-Reply-To: <20250107202615.1306306-1-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> Message-ID: <20250107202615.1306306-2-lucas.demarchi@intel.com> Some functions are clearly gt-related, so move them to xe_gt. Reviewed-by: Jonathan Cavitt 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 | 3 +- tests/intel/xe_exec_balancer.c | 2 +- tests/intel/xe_exec_reset.c | 2 +- tests/intel/xe_exec_threads.c | 2 +- tests/intel/xe_gt_freq.c | 2 +- tests/intel/xe_pm_residency.c | 3 +- 10 files changed, 83 insertions(+), 80 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 0d1cbfe59..6144caafc 100644 --- a/tests/intel/xe_drm_fdinfo.c +++ b/tests/intel/xe_drm_fdinfo.c @@ -8,11 +8,12 @@ #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" -#include "xe/xe_util.h" /** * TEST: xe drm fdinfo diff --git a/tests/intel/xe_exec_balancer.c b/tests/intel/xe_exec_balancer.c index 1e552e9ef..bc15cc0f8 100644 --- a/tests/intel/xe_exec_balancer.c +++ b/tests/intel/xe_exec_balancer.c @@ -19,10 +19,10 @@ #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" -#include "xe/xe_util.h" #include /** diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c index a3eaf8bbf..e2557f345 100644 --- a/tests/intel/xe_exec_reset.c +++ b/tests/intel/xe_exec_reset.c @@ -21,8 +21,8 @@ #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 #define SYNC_OBJ_SIGNALED (0x1 << 0) diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c index 661117bed..be5549c84 100644 --- a/tests/intel/xe_exec_threads.c +++ b/tests/intel/xe_exec_threads.c @@ -21,8 +21,8 @@ #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 #define MAX_N_EXEC_QUEUES 16 diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c index de4d111ea..a4791071f 100644 --- a/tests/intel/xe_gt_freq.c +++ b/tests/intel/xe_gt_freq.c @@ -17,10 +17,10 @@ #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" -#include "xe/xe_util.h" #include #include diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c index d4b26b231..8a9e2c89e 100644 --- a/tests/intel/xe_pm_residency.c +++ b/tests/intel/xe_pm_residency.c @@ -21,9 +21,10 @@ #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" #define NUM_REPS 16 /* No of Repetitions */ #define SLEEP_DURATION 3 /* in seconds */ -- 2.47.0 From lucas.demarchi at intel.com Tue Jan 7 20:26:11 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Tue, 7 Jan 2025 12:26:11 -0800 Subject: [PATCH i-g-t v2 4/8] lib/xe: Split nsec to ticks abstraction In-Reply-To: <20250107202615.1306306-1-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> Message-ID: <20250107202615.1306306-4-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. Reviewed-by: Jonathan Cavitt Signed-off-by: Lucas De Marchi --- benchmarks/gem_wsim.c | 8 +++--- lib/xe/xe_spin.c | 47 +++++++++------------------------ lib/xe/xe_spin.h | 5 ++-- 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, 64 insertions(+), 43 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..f104fbaf5 100644 --- a/lib/xe/xe_spin.h +++ b/lib/xe/xe_spin.h @@ -15,8 +15,6 @@ #include "xe_query.h" #include "lib/igt_dummyload.h" -#define XE_SPIN_MAX_CTX_TICKS (UINT32_MAX - 1000) - /** struct xe_spin_opts * * @addr: offset of spinner within vm @@ -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 Tue Jan 7 20:26:13 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Tue, 7 Jan 2025 12:26:13 -0800 Subject: [PATCH i-g-t v2 6/8] treewide: s/ctx/cork/ when referring to xe_cork In-Reply-To: <20250107202615.1306306-1-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> Message-ID: <20250107202615.1306306-6-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. Reviewed-by: Jonathan Cavitt Signed-off-by: Lucas De Marchi --- lib/xe/xe_spin.c | 158 ++++++++++++++++++------------------ tests/intel/xe_drm_fdinfo.c | 76 ++++++++--------- tests/intel/xe_spin_batch.c | 14 ++-- tests/intel/xe_vm.c | 12 +-- 4 files changed, 130 insertions(+), 130 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 6144caafc..39519fa52 100644 --- a/tests/intel/xe_drm_fdinfo.c +++ b/tests/intel/xe_drm_fdinfo.c @@ -409,7 +409,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; @@ -419,8 +419,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]); @@ -429,7 +429,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) @@ -448,8 +448,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); } @@ -459,19 +459,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); @@ -485,17 +485,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) { @@ -505,7 +505,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); } @@ -514,7 +514,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; @@ -525,17 +525,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,27 +569,27 @@ 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) { - 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); 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); @@ -616,7 +616,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; @@ -642,8 +642,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]); @@ -652,7 +652,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) @@ -672,8 +672,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 Tue Jan 7 20:26:15 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Tue, 7 Jan 2025 12:26:15 -0800 Subject: [PATCH i-g-t v2 8/8] tests/intel/xe_drm_fdinfo: Also test target class with others-* In-Reply-To: <20250107202615.1306306-1-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> Message-ID: <20250107202615.1306306-8-lucas.demarchi@intel.com> Like is done for others-idle, also check the target class in others-full-load. Start printing the target class as debug so it's easy to check what should be compared to 0 versus what should be compared to full load. Signed-off-by: Lucas De Marchi --- tests/intel/xe_drm_fdinfo.c | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c index f9eca25ed..7330b4330 100644 --- a/tests/intel/xe_drm_fdinfo.c +++ b/tests/intel/xe_drm_fdinfo.c @@ -423,6 +423,8 @@ utilization_single(int fd, struct drm_xe_engine_class_instance *hwe, unsigned in uint32_t vm; int new_fd; + igt_debug("Target class: %s\n", engine_map[hwe->engine_class]); + if (flags & TEST_ISOLATION) new_fd = drm_reopen_driver(fd); @@ -475,6 +477,8 @@ utilization_single_destroy_queue(int fd, struct drm_xe_engine_class_instance *hw uint32_t timestamp; uint32_t vm; + igt_debug("Target class: %s\n", engine_map[hwe->engine_class]); + vm = xe_vm_create(fd, 0, 0); cork = xe_cork_create_opts(fd, hwe, vm, 1, 1); xe_cork_sync_start(fd, cork); @@ -504,6 +508,8 @@ utilization_others_idle(int fd, struct drm_xe_engine_class_instance *hwe) uint32_t vm; int class; + igt_debug("Target class: %s\n", engine_map[hwe->engine_class]); + vm = xe_vm_create(fd, 0, 0); cork = xe_cork_create_opts(fd, hwe, vm, 1, 1); xe_cork_sync_start(fd, cork); @@ -535,6 +541,8 @@ utilization_others_full_load(int fd, struct drm_xe_engine_class_instance *hwe) uint32_t vm; int class; + igt_debug("Target class: %s\n", engine_map[hwe->engine_class]); + vm = xe_vm_create(fd, 0, 0); /* spin on one hwe per class except the target class hwes */ @@ -543,6 +551,7 @@ utilization_others_full_load(int fd, struct drm_xe_engine_class_instance *hwe) if (_class == hwe->engine_class || cork[_class]) continue; + cork[_class] = xe_cork_create_opts(fd, _hwe, vm, 1, 1); xe_cork_sync_start(fd, cork[_class]); } @@ -560,12 +569,12 @@ 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 (!cork[class]) - continue; - - check_results(pceu1, pceu2, class, 1, cork[class]->spin->timestamp, + check_results(pceu1, pceu2, class, 1, + cork[class] ? cork[class]->spin->timestamp : 0, expected_load); - xe_cork_destroy(fd, cork[class]); + + if (cork[class]) + xe_cork_destroy(fd, cork[class]); } xe_vm_destroy(fd, vm); @@ -649,6 +658,8 @@ utilization_multi(int fd, int gt, int class, unsigned int flags) if (num_placements < 2) return; + igt_debug("Target class: %s\n", engine_map[class]); + if (parallel) { width = num_placements; num_placements = 1; -- 2.47.0 From lucas.demarchi at intel.com Tue Jan 7 20:26:10 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Tue, 7 Jan 2025 12:26:10 -0800 Subject: [PATCH i-g-t v2 3/8] lib/xe: Rename xe_is_gt_in_c6() In-Reply-To: <20250107202615.1306306-1-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> Message-ID: <20250107202615.1306306-3-lucas.demarchi@intel.com> Use xe_gt_ as namespace. Reviewed-by: Jonathan Cavitt 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 a4791071f..1fb6d2b53 100644 --- a/tests/intel/xe_gt_freq.c +++ b/tests/intel/xe_gt_freq.c @@ -199,7 +199,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 { @@ -214,7 +214,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 { @@ -233,7 +233,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); } @@ -264,7 +264,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 { @@ -465,7 +465,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); } @@ -483,7 +483,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 8a9e2c89e..06f4a0bc6 100644 --- a/tests/intel/xe_pm_residency.c +++ b/tests/intel/xe_pm_residency.c @@ -209,7 +209,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) { /* @@ -299,7 +299,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) @@ -308,7 +308,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) @@ -405,7 +405,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 Tue Jan 7 20:26:12 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Tue, 7 Jan 2025 12:26:12 -0800 Subject: [PATCH i-g-t v2 5/8] lib/xe/xe_spin: Move declarations around In-Reply-To: <20250107202615.1306306-1-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> Message-ID: <20250107202615.1306306-5-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. Reviewed-by: Jonathan Cavitt Signed-off-by: Lucas De Marchi --- lib/xe/xe_spin.c | 2 +- lib/xe/xe_spin.h | 58 +++++++++++++++++++++++++++--------------------- 2 files changed, 34 insertions(+), 26 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 f104fbaf5..7c95996c3 100644 --- a/lib/xe/xe_spin.h +++ b/lib/xe/xe_spin.h @@ -15,8 +15,17 @@ #include "xe_query.h" #include "lib/igt_dummyload.h" -/** struct xe_spin_opts - * +/* 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 * @preempt: allow spinner to be preempted or not * @ctx_ticks: number of ticks after which spinner is stopped, applied if > 0 @@ -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 Tue Jan 7 20:26:14 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Tue, 7 Jan 2025 12:26:14 -0800 Subject: [PATCH i-g-t v2 7/8] tests/intel/xe_drm_fdinfo: Stop asserting on usage percentage In-Reply-To: <20250107202615.1306306-1-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> Message-ID: <20250107202615.1306306-7-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. v2: - Fix parallel tests due to not checking width and other minor nits (Jonathan Cavitt) - Fix negative delta computation Cc: Umesh Nerlige Ramappa Signed-off-by: Lucas De Marchi --- tests/intel/xe_drm_fdinfo.c | 53 ++++++++++++++++++++++++++----------- 1 file changed, 37 insertions(+), 16 deletions(-) diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c index 39519fa52..f9eca25ed 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" @@ -370,36 +372,43 @@ 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; + uint64_t den, num; igt_debug("%s: sample 1: cycles %"PRIu64", total_cycles %"PRIu64"\n", engine_map[class], s1[class].cycles, s1[class].total_cycles); igt_debug("%s: sample 2: cycles %"PRIu64", total_cycles %"PRIu64"\n", engine_map[class], s2[class].cycles, s2[class].total_cycles); + igt_debug("spin_stamp: %u width: %d\n", spin_stamp, width); 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 */ + /* For parallel submission scale the busyness with width */ percent /= width; - igt_debug("%s: percent: %f\n", engine_map[class], percent); + igt_debug("%s: percent: %.2f%%\n", engine_map[class], percent); switch (expected_load) { case EXPECTED_LOAD_IDLE: igt_assert_eq(num, 0); break; case EXPECTED_LOAD_FULL: + /* For parallel submission scale the busyness with width */ + spin_stamp *= width; + /* - * 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((int64_t)(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; } } @@ -437,14 +446,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); } @@ -460,6 +472,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); @@ -471,13 +484,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 @@ -502,7 +517,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 +563,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]); } @@ -588,7 +605,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]); } @@ -660,14 +679,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 jonathan.cavitt at intel.com Tue Jan 7 20:39:43 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Tue, 7 Jan 2025 20:39:43 +0000 Subject: [PATCH i-g-t v2 7/8] tests/intel/xe_drm_fdinfo: Stop asserting on usage percentage In-Reply-To: <20250107202615.1306306-7-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> <20250107202615.1306306-7-lucas.demarchi@intel.com> Message-ID: -----Original Message----- From: De Marchi, Lucas Sent: Tuesday, January 7, 2025 12:26 PM To: igt-dev at lists.freedesktop.org Cc: Cavitt, Jonathan ; De Marchi, Lucas ; Nerlige Ramappa, Umesh Subject: [PATCH i-g-t v2 7/8] tests/intel/xe_drm_fdinfo: Stop asserting on usage percentage > > 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. > > v2: > - Fix parallel tests due to not checking width and other minor nits > (Jonathan Cavitt) > - Fix negative delta computation > > Cc: Umesh Nerlige Ramappa > Signed-off-by: Lucas De Marchi LGTM. Reviewed-by: Jonathan Cavitt -Jonathan Cavitt > --- > tests/intel/xe_drm_fdinfo.c | 53 ++++++++++++++++++++++++++----------- > 1 file changed, 37 insertions(+), 16 deletions(-) > > diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c > index 39519fa52..f9eca25ed 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" > @@ -370,36 +372,43 @@ 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; > + uint64_t den, num; > > igt_debug("%s: sample 1: cycles %"PRIu64", total_cycles %"PRIu64"\n", > engine_map[class], s1[class].cycles, s1[class].total_cycles); > igt_debug("%s: sample 2: cycles %"PRIu64", total_cycles %"PRIu64"\n", > engine_map[class], s2[class].cycles, s2[class].total_cycles); > + igt_debug("spin_stamp: %u width: %d\n", spin_stamp, width); > > 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 */ > + /* For parallel submission scale the busyness with width */ > percent /= width; > > - igt_debug("%s: percent: %f\n", engine_map[class], percent); > + igt_debug("%s: percent: %.2f%%\n", engine_map[class], percent); > > switch (expected_load) { > case EXPECTED_LOAD_IDLE: > igt_assert_eq(num, 0); > break; > case EXPECTED_LOAD_FULL: > + /* For parallel submission scale the busyness with width */ > + spin_stamp *= width; > + > /* > - * 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((int64_t)(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; > } > } > @@ -437,14 +446,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); > } > > @@ -460,6 +472,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); > @@ -471,13 +484,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 > @@ -502,7 +517,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 +563,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]); > } > > @@ -588,7 +605,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]); > } > > @@ -660,14 +679,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 jonathan.cavitt at intel.com Tue Jan 7 20:40:59 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Tue, 7 Jan 2025 20:40:59 +0000 Subject: [PATCH i-g-t v2 8/8] tests/intel/xe_drm_fdinfo: Also test target class with others-* In-Reply-To: <20250107202615.1306306-8-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> <20250107202615.1306306-8-lucas.demarchi@intel.com> Message-ID: -----Original Message----- From: De Marchi, Lucas Sent: Tuesday, January 7, 2025 12:26 PM To: igt-dev at lists.freedesktop.org Cc: Cavitt, Jonathan ; De Marchi, Lucas Subject: [PATCH i-g-t v2 8/8] tests/intel/xe_drm_fdinfo: Also test target class with others-* > > Like is done for others-idle, also check the target class in > others-full-load. Start printing the target class as debug so it's easy > to check what should be compared to 0 versus what should be compared to > full load. > > Signed-off-by: Lucas De Marchi LGTM. Reviewed-by: Jonathan Cavitt -Jonathan Cavitt > --- > tests/intel/xe_drm_fdinfo.c | 21 ++++++++++++++++----- > 1 file changed, 16 insertions(+), 5 deletions(-) > > diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c > index f9eca25ed..7330b4330 100644 > --- a/tests/intel/xe_drm_fdinfo.c > +++ b/tests/intel/xe_drm_fdinfo.c > @@ -423,6 +423,8 @@ utilization_single(int fd, struct drm_xe_engine_class_instance *hwe, unsigned in > uint32_t vm; > int new_fd; > > + igt_debug("Target class: %s\n", engine_map[hwe->engine_class]); > + > if (flags & TEST_ISOLATION) > new_fd = drm_reopen_driver(fd); > > @@ -475,6 +477,8 @@ utilization_single_destroy_queue(int fd, struct drm_xe_engine_class_instance *hw > uint32_t timestamp; > uint32_t vm; > > + igt_debug("Target class: %s\n", engine_map[hwe->engine_class]); > + > vm = xe_vm_create(fd, 0, 0); > cork = xe_cork_create_opts(fd, hwe, vm, 1, 1); > xe_cork_sync_start(fd, cork); > @@ -504,6 +508,8 @@ utilization_others_idle(int fd, struct drm_xe_engine_class_instance *hwe) > uint32_t vm; > int class; > > + igt_debug("Target class: %s\n", engine_map[hwe->engine_class]); > + > vm = xe_vm_create(fd, 0, 0); > cork = xe_cork_create_opts(fd, hwe, vm, 1, 1); > xe_cork_sync_start(fd, cork); > @@ -535,6 +541,8 @@ utilization_others_full_load(int fd, struct drm_xe_engine_class_instance *hwe) > uint32_t vm; > int class; > > + igt_debug("Target class: %s\n", engine_map[hwe->engine_class]); > + > vm = xe_vm_create(fd, 0, 0); > > /* spin on one hwe per class except the target class hwes */ > @@ -543,6 +551,7 @@ utilization_others_full_load(int fd, struct drm_xe_engine_class_instance *hwe) > > if (_class == hwe->engine_class || cork[_class]) > continue; > + > cork[_class] = xe_cork_create_opts(fd, _hwe, vm, 1, 1); > xe_cork_sync_start(fd, cork[_class]); > } > @@ -560,12 +569,12 @@ 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 (!cork[class]) > - continue; > - > - check_results(pceu1, pceu2, class, 1, cork[class]->spin->timestamp, > + check_results(pceu1, pceu2, class, 1, > + cork[class] ? cork[class]->spin->timestamp : 0, > expected_load); > - xe_cork_destroy(fd, cork[class]); > + > + if (cork[class]) > + xe_cork_destroy(fd, cork[class]); > } > > xe_vm_destroy(fd, vm); > @@ -649,6 +658,8 @@ utilization_multi(int fd, int gt, int class, unsigned int flags) > if (num_placements < 2) > return; > > + igt_debug("Target class: %s\n", engine_map[class]); > + > if (parallel) { > width = num_placements; > num_placements = 1; > -- > 2.47.0 > > From ramanaidu.naladala at intel.com Tue Jan 7 20:54:31 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Wed, 8 Jan 2025 02:24:31 +0530 Subject: [PATCH i-g-t v2 0/3] Remove redundant hotplug detection assertion Message-ID: <20250107205434.969797-1-ramanaidu.naladala@intel.com> Remove Hotplug assertion from chamelium edid test. Naladala Ramanaidu (3): tests/chamelium/kms_chamelium_edid: Remove unnecessary hotplug detection in EDID test tests/chamelium/kms_chamelium_edid: Add connector check before plug HAX patch do not merge tests/chamelium/kms_chamelium_edid.c | 6 +- tests/intel-ci/fast-feedback.testlist | 171 +------------- tests/intel-ci/xe-fast-feedback.testlist | 276 +---------------------- 3 files changed, 12 insertions(+), 441 deletions(-) -- 2.43.0 From ramanaidu.naladala at intel.com Tue Jan 7 20:54:32 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Wed, 8 Jan 2025 02:24:32 +0530 Subject: [PATCH i-g-t v2 1/3] tests/chamelium/kms_chamelium_edid: Remove unnecessary hotplug detection in EDID test In-Reply-To: <20250107205434.969797-1-ramanaidu.naladala@intel.com> References: <20250107205434.969797-1-ramanaidu.naladala@intel.com> Message-ID: <20250107205434.969797-2-ramanaidu.naladala@intel.com> Remove redundant hotplug detection assertion from test_suspend_resume_edid_change. Hotplug detection is unnecessary after modeset disable. Signed-off-by: Naladala Ramanaidu --- tests/chamelium/kms_chamelium_edid.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/chamelium/kms_chamelium_edid.c b/tests/chamelium/kms_chamelium_edid.c index e572a6468..ff2a19e48 100644 --- a/tests/chamelium/kms_chamelium_edid.c +++ b/tests/chamelium/kms_chamelium_edid.c @@ -419,8 +419,6 @@ static void test_suspend_resume_edid_change(chamelium_data_t *data, chamelium_reset_state(&data->display, data->chamelium, port, data->ports, data->port_count); - /* Catch the event and flush all remaining ones. */ - igt_assert(igt_hotplug_detected(mon, CHAMELIUM_HOTPLUG_TIMEOUT)); igt_flush_uevents(mon); /* First plug in the port */ -- 2.43.0 From ramanaidu.naladala at intel.com Tue Jan 7 20:54:33 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Wed, 8 Jan 2025 02:24:33 +0530 Subject: [PATCH i-g-t v2 2/3] tests/chamelium/kms_chamelium_edid: Add connector check before plug In-Reply-To: <20250107205434.969797-1-ramanaidu.naladala@intel.com> References: <20250107205434.969797-1-ramanaidu.naladala@intel.com> Message-ID: <20250107205434.969797-3-ramanaidu.naladala@intel.com> Add a check to reprobe the connector before plugging it back in. This ensures the connector is in the disconnected state before plugging it back in. Signed-off-by: Naladala Ramanaidu --- tests/chamelium/kms_chamelium_edid.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/chamelium/kms_chamelium_edid.c b/tests/chamelium/kms_chamelium_edid.c index ff2a19e48..649b89678 100644 --- a/tests/chamelium/kms_chamelium_edid.c +++ b/tests/chamelium/kms_chamelium_edid.c @@ -423,6 +423,10 @@ static void test_suspend_resume_edid_change(chamelium_data_t *data, /* First plug in the port */ chamelium_set_edid(data, port, edid); + + igt_assert(chamelium_reprobe_connector(&data->display, data->chamelium, + port) == DRM_MODE_DISCONNECTED); + chamelium_plug(data->chamelium, port); igt_assert(igt_hotplug_detected(mon, CHAMELIUM_HOTPLUG_TIMEOUT)); -- 2.43.0 From ramanaidu.naladala at intel.com Tue Jan 7 20:54:34 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Wed, 8 Jan 2025 02:24:34 +0530 Subject: [PATCH i-g-t v2 3/3] HAX patch do not merge In-Reply-To: <20250107205434.969797-1-ramanaidu.naladala@intel.com> References: <20250107205434.969797-1-ramanaidu.naladala@intel.com> Message-ID: <20250107205434.969797-4-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..3259b7b38 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_chamelium_edid@dp-edid-change-during-suspend +igt at kms_chamelium_edid@dp-edid-change-during-hibernate +igt at kms_chamelium_edid@hdmi-edid-change-during-suspend +igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index 0234d3e72..8fb01dca6 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_chamelium_edid@dp-edid-change-during-suspend +igt at kms_chamelium_edid@dp-edid-change-during-hibernate +igt at kms_chamelium_edid@hdmi-edid-change-during-suspend +igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate -- 2.43.0 From patchwork at emeril.freedesktop.org Tue Jan 7 22:56:42 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 07 Jan 2025 22:56:42 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EBAT=3A_failure_for_Add_dsc+bigjoiner_subtest_?= =?utf-8?q?=28rev4=29?= In-Reply-To: <20250107185709.116756-1-swati2.sharma@intel.com> References: <20250107185709.116756-1-swati2.sharma@intel.com> Message-ID: <173629060252.1001743.15541564029108518095@b555e5b46a47> == Series Details == Series: Add dsc+bigjoiner subtest (rev4) URL : https://patchwork.freedesktop.org/series/128266/ State : failure == Summary == CI Bug Log - changes from XEIGT_8179_BAT -> XEIGTPW_12396_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12396_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12396_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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12396_BAT: ### IGT changes ### #### Possible regressions #### * igt at xe_exec_basic@twice-bindexecqueue-userptr-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-userptr-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-userptr-rebind.html Known issues ------------ Here are the changes found in XEIGTPW_12396_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_exec_balancer@twice-cm-virtual-rebind: - bat-adlp-vf: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#3958]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/bat-adlp-vf/igt at xe_exec_balancer@twice-cm-virtual-rebind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/bat-adlp-vf/igt at xe_exec_balancer@twice-cm-virtual-rebind.html * igt at xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [PASS][5] -> [DMESG-FAIL][6] ([Intel XE#3868]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html #### Possible fixes #### * igt at xe_intel_bb@render at render-ymajor-256: - bat-adlp-vf: [DMESG-WARN][7] ([Intel XE#3958]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/bat-adlp-vf/igt at xe_intel_bb@render at render-ymajor-256.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/bat-adlp-vf/igt at xe_intel_bb@render at render-ymajor-256.html [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868 [Intel XE#3958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3958 Build changes ------------- * IGT: IGT_8179 -> IGTPW_12396 * Linux: xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571 -> xe-2451-dbd476153d41352ad6022088be16301051b9bce7 IGTPW_12396: 6f3ec890d8aa7505c2a20cfd76b6ecea3ae25590 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571: 89042e0bb417f4d67280e1d7fa9bbcca51734571 xe-2451-dbd476153d41352ad6022088be16301051b9bce7: dbd476153d41352ad6022088be16301051b9bce7 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 7 22:57:13 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 07 Jan 2025 22:57:13 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Add_dsc+bigjoiner_subtest?= =?utf-8?q?_=28rev4=29?= In-Reply-To: <20250107185709.116756-1-swati2.sharma@intel.com> References: <20250107185709.116756-1-swati2.sharma@intel.com> Message-ID: <173629063344.1074563.12996994198762771193@b555e5b46a47> == Series Details == Series: Add dsc+bigjoiner subtest (rev4) URL : https://patchwork.freedesktop.org/series/128266/ State : success == Summary == CI Bug Log - changes from IGT_8179 -> IGTPW_12396 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12396 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt at i915_selftest@live: - bat-twl-2: [INCOMPLETE][1] ([i915#9413]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/bat-twl-2/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/bat-twl-2/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_lrc: - bat-twl-2: [INCOMPLETE][3] ([i915#12445] / [i915#9413]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/bat-twl-2/igt at i915_selftest@live at gt_lrc.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/bat-twl-2/igt at i915_selftest@live at gt_lrc.html * igt at i915_selftest@live at gt_pm: - bat-jsl-1: [DMESG-FAIL][5] ([i915#13132]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/bat-jsl-1/igt at i915_selftest@live at gt_pm.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/bat-jsl-1/igt at i915_selftest@live at gt_pm.html * igt at i915_selftest@live at workarounds: - bat-arls-5: [DMESG-FAIL][7] ([i915#13393]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/bat-arls-5/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/bat-arls-5/igt at i915_selftest@live at workarounds.html [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#13132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13132 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8179 -> IGTPW_12396 * Linux: CI_DRM_15915 -> CI_DRM_15919 CI-20190529: 20190529 CI_DRM_15915: 89042e0bb417f4d67280e1d7fa9bbcca51734571 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15919: dbd476153d41352ad6022088be16301051b9bce7 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12396: 6f3ec890d8aa7505c2a20cfd76b6ecea3ae25590 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 7 23:16:23 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 07 Jan 2025 23:16:23 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_Update_image_assets_=28re?= =?utf-8?q?v3=29?= In-Reply-To: <20250107200614.963199-1-ramanaidu.naladala@intel.com> References: <20250107200614.963199-1-ramanaidu.naladala@intel.com> Message-ID: <173629178315.1074563.5355463227084493104@b555e5b46a47> == Series Details == Series: Update image assets (rev3) URL : https://patchwork.freedesktop.org/series/141539/ State : failure == Summary == CI Bug Log - changes from IGT_8179 -> IGTPW_12397 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12397 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12397, 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_12397/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12397: ### IGT changes ### #### Possible regressions #### * igt at kms_3d: - bat-rplp-1: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/bat-rplp-1/igt at kms_3d.html - bat-adlp-11: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/bat-adlp-11/igt at kms_3d.html Known issues ------------ Here are the changes found in IGTPW_12397 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_3d: - fi-blb-e6850: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/fi-blb-e6850/igt at kms_3d.html - bat-arlh-2: NOTRUN -> [SKIP][4] ([i915#11346]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/bat-arlh-2/igt at kms_3d.html * igt at runner@aborted: - fi-pnv-d510: NOTRUN -> [FAIL][5] ([i915#13350]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/fi-pnv-d510/igt at runner@aborted.html [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8179 -> IGTPW_12397 * Linux: CI_DRM_15915 -> CI_DRM_15919 CI-20190529: 20190529 CI_DRM_15915: 89042e0bb417f4d67280e1d7fa9bbcca51734571 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15919: dbd476153d41352ad6022088be16301051b9bce7 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12397: d4aedc2fc073d7761e5bff52b7486f9184fb49ba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 7 23:17:34 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 07 Jan 2025 23:17:34 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Update_image_assets_=28rev3?= =?utf-8?q?=29?= In-Reply-To: <20250107200614.963199-1-ramanaidu.naladala@intel.com> References: <20250107200614.963199-1-ramanaidu.naladala@intel.com> Message-ID: <173629185429.1074563.11083104785254056162@b555e5b46a47> == Series Details == Series: Update image assets (rev3) URL : https://patchwork.freedesktop.org/series/141539/ State : success == Summary == CI Bug Log - changes from XEIGT_8179_BAT -> XEIGTPW_12397_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12397_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_3d: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#540]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/bat-adlp-vf/igt at kms_3d.html - bat-lnl-1: NOTRUN -> [SKIP][2] ([Intel XE#1465]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/bat-lnl-1/igt at kms_3d.html - bat-pvc-2: NOTRUN -> [SKIP][3] ([Intel XE#540]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/bat-pvc-2/igt at kms_3d.html - bat-atsm-2: NOTRUN -> [SKIP][4] ([Intel XE#540]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/bat-atsm-2/igt at kms_3d.html - bat-lnl-2: NOTRUN -> [SKIP][5] ([Intel XE#1465]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/bat-lnl-2/igt at kms_3d.html [Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465 [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540 Build changes ------------- * IGT: IGT_8179 -> IGTPW_12397 * Linux: xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571 -> xe-2451-dbd476153d41352ad6022088be16301051b9bce7 IGTPW_12397: d4aedc2fc073d7761e5bff52b7486f9184fb49ba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571: 89042e0bb417f4d67280e1d7fa9bbcca51734571 xe-2451-dbd476153d41352ad6022088be16301051b9bce7: dbd476153d41352ad6022088be16301051b9bce7 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From zhanjun.dong at intel.com Wed Jan 8 00:04:10 2025 From: zhanjun.dong at intel.com (Zhanjun Dong) Date: Tue, 7 Jan 2025 16:04:10 -0800 Subject: [PATCH i-g-t v10] tests/intel/xe_exec_capture: Add xe_exec_capture test Message-ID: <20250108000410.469269-1-zhanjun.dong@intel.com> Submit cmds to GPU to cause engine reset, check generated devcoredump register dump, check against expected values or within the range. Signed-off-by: Zhanjun Dong --- Changes from prior revs: v10:- Move job timeout save/restore out of subtest, to avoid being bypassed by failed assertion Save/restore job timeout for each engine class Remove testing on multiple GPUs, to be put back after further discussion. v9:- Reduced job timeout to 2 seconds to speedup test Add info print to show test is running on single/multiple GPU v8:- Move change list below --- v7:- Fix typo and removed unused macros v6:- Adjust start_line to start from 0 Use 7 bit engine_cid, start with random number Add ioerror detect on fgets Reorgnize the regular expression Remove unnecessary radom seed init v5:- Detect devcoredump matches the testing engine Engine will run with random cid v4:- Support runs on multiple GPU Load all devcoredump content to buffer Alloc line buffer dynamic vs static global memory Changed to igt_assert_f to provide more info if failed v3:- Remove call to bash and awk Add regular express parse Detect devcoredump through card index Add devcoredump removal check v2:- Fix CI.build error Add multiple GPU card support --- tests/intel/xe_exec_capture.c | 519 ++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 520 insertions(+) create mode 100644 tests/intel/xe_exec_capture.c diff --git a/tests/intel/xe_exec_capture.c b/tests/intel/xe_exec_capture.c new file mode 100644 index 000000000..b0642b406 --- /dev/null +++ b/tests/intel/xe_exec_capture.c @@ -0,0 +1,519 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright ? 2024 Intel Corporation + */ + +/** + * TEST: Basic tests for GuC based register capture + * Category: Core + * Mega feature: General Core features + * Sub-category: CMD submission + * Functionality: Debug + * Test category: functionality test + */ + +#include +#include +#include +#include +#include + +#include "igt.h" +#include "igt_device.h" +#include "igt_sysfs.h" +#include "lib/igt_syncobj.h" +#include "lib/intel_reg.h" +#include "linux_scaffold.h" +#include "xe_drm.h" +#include "xe/xe_ioctl.h" +#include "xe/xe_query.h" +#include "xe/xe_spin.h" + +#define MAX_N_EXECQUEUES 16 +#define CAPTURE_JOB_TIMEOUT 2000 +#define JOB_TIMOUT_ENTRY "job_timeout_ms" + +#define BASE_ADDRESS 0x1a0000 +#define ADDRESS_SHIFT 39 +#define CID_ADDRESS_MASK 0x7F +/* Batch buffer element count, in number of dwords(u32) */ +#define BATCH_DW_COUNT 16 + +#define MAX_TEMP_LEN 80 +#define MAX_SYSFS_PATH_LEN 128 +#define MAX_LINES 4096 +/* Max line buffer size (includes last '\0') */ +#define MAX_LINE_LEN 1024 +#define MAIN_BUF_SIZE (MAX_LINES * MAX_LINE_LEN * sizeof(char)) +/* + * Devcoredump might have long line this test don't care. + * This buffer size used when load dump content + */ +#define LINE_BUF_SIZE (64 * 1024) + +#define DUMP_PATH "/sys/class/drm/card%d/device/devcoredump/data" +#define START_TAG "**** Job ****" +#define END_TAG "**** VM state ****" + +/* Optional Space */ +#define SPC_O "[ \t]*" +/* Required Space */ +#define SPC "[ \t]+" +/* Optional Non-Space */ +#define NSPC_O "([^ \t]*)" +/* Required Non-Space */ +#define NSPC "([^ \t]+)" +#define BEG "^" SPC_O +#define REQ_FIELD NSPC SPC +#define REQ_FIELD_LAST NSPC SPC_O +#define OPT_FIELD NSPC_O SPC_O +#define END SPC_O "$" + +#define REGEX_NON_SPACE_GROUPS BEG REQ_FIELD REQ_FIELD_LAST OPT_FIELD OPT_FIELD OPT_FIELD END +#define REGEX_NON_SPACE_GROUPS_COUNT 6 + +#define INDEX_KEY 1 +#define INDEX_VALUE 2 +#define INDEX_ENGINE_PHYSICAL 2 +#define INDEX_ENGINE_NAME 1 +#define INDEX_ENGINE_INSTANCE 4 + +static u64 +xe_sysfs_get_job_timeout_ms(int fd, struct drm_xe_engine_class_instance *eci) +{ + int engine_fd = -1; + u64 ret; + + engine_fd = xe_sysfs_engine_open(fd, eci->gt_id, eci->engine_class); + ret = igt_sysfs_get_u64(engine_fd, JOB_TIMOUT_ENTRY); + close(engine_fd); + + return ret; +} + +static void xe_sysfs_set_job_timeout_ms(int fd, struct drm_xe_engine_class_instance *eci, + u64 timeout) +{ + int engine_fd = -1; + + engine_fd = xe_sysfs_engine_open(fd, eci->gt_id, eci->engine_class); + igt_sysfs_set_u64(engine_fd, JOB_TIMOUT_ENTRY, timeout); + close(engine_fd); +} + +static char *safe_strncpy(char *dst, const char *src, int n) +{ + char *s; + + igt_assert(n > 0); + igt_assert(dst && src); + + s = strncpy(dst, src, n - 1); + s[n - 1] = '\0'; + + return s; +} + +static const char *xe_engine_class_name(u32 engine_class) +{ + switch (engine_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: + igt_warn("Engine class 0x%x unknown\n", engine_class); + return "unknown"; + } +} + +static void +test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci, int n_exec_queues, int n_execs, + unsigned int flags, u64 addr) +{ + u32 vm; + struct drm_xe_sync sync[2] = { + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, }, + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, }, + }; + struct drm_xe_exec exec = { + .num_batch_buffer = 1, + .num_syncs = 2, + .syncs = to_user_pointer(sync), + }; + u32 exec_queues[MAX_N_EXECQUEUES]; + u32 syncobjs[MAX_N_EXECQUEUES]; + size_t bo_size; + u32 bo = 0; + struct { + struct xe_spin spin; + u32 batch[BATCH_DW_COUNT]; + u64 pad; + u32 data; + } *data; + struct xe_spin_opts spin_opts = { .preempt = false }; + int i, b; + + igt_assert_lte(n_exec_queues, MAX_N_EXECQUEUES); + + vm = xe_vm_create(fd, 0, 0); + bo_size = sizeof(*data) * n_execs; + bo_size = xe_bb_size(fd, bo_size); + + bo = xe_bo_create(fd, vm, bo_size, + vram_if_possible(fd, eci->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + data = xe_bo_map(fd, bo, bo_size); + + for (i = 0; i < n_exec_queues; i++) { + exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0); + syncobjs[i] = syncobj_create(fd, 0); + }; + + sync[0].handle = syncobj_create(fd, 0); + xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1); + + for (i = 0; i < n_execs; i++) { + u64 base_addr = addr; + u64 batch_offset = (char *)&data[i].batch - (char *)data; + u64 batch_addr = base_addr + batch_offset; + u64 spin_offset = (char *)&data[i].spin - (char *)data; + u64 sdi_offset = (char *)&data[i].data - (char *)data; + u64 sdi_addr = base_addr + sdi_offset; + u64 exec_addr; + int e = i % n_exec_queues; + + if (!i) { + spin_opts.addr = base_addr + spin_offset; + xe_spin_init(&data[i].spin, &spin_opts); + exec_addr = spin_opts.addr; + } else { + b = 0; + data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4; + data[i].batch[b++] = sdi_addr; + data[i].batch[b++] = sdi_addr >> 32; + data[i].batch[b++] = 0xc0ffee; + data[i].batch[b++] = MI_BATCH_BUFFER_END; + igt_assert(b <= ARRAY_SIZE(data[i].batch)); + + exec_addr = batch_addr; + } + + sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL; + sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL; + sync[1].handle = syncobjs[e]; + + exec.exec_queue_id = exec_queues[e]; + exec.address = exec_addr; + if (e != i) + syncobj_reset(fd, &syncobjs[e], 1); + xe_exec(fd, &exec); + } + + for (i = 0; i < n_exec_queues && n_execs; i++) + igt_assert(syncobj_wait(fd, &syncobjs[i], 1, INT64_MAX, 0, + NULL)); + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL)); + + sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL; + xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1); + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL)); + + syncobj_destroy(fd, sync[0].handle); + for (i = 0; i < n_exec_queues; i++) { + syncobj_destroy(fd, syncobjs[i]); + xe_exec_queue_destroy(fd, exec_queues[i]); + } + + munmap(data, bo_size); + gem_close(fd, bo); + xe_vm_destroy(fd, vm); +} + +static char **alloc_lines_buffer(void) +{ + int i; + char **lines = (char **)malloc(MAX_LINES * sizeof(char *)); + char *main_buf = (char *)malloc(MAIN_BUF_SIZE); + + igt_assert_f(lines, "Out of memory.\n"); + igt_assert_f(main_buf, "Out of memory.\n"); + + /* set string array pointers */ + for (i = 0; i < MAX_LINES; i++) + lines[i] = main_buf + i * MAX_LINE_LEN; + + return lines; +} + +static char *get_devcoredump_path(int card_id, char *buf) +{ + sprintf(buf, DUMP_PATH, card_id); + return buf; +} + +static int load_all(FILE *fd, char **lines, char *buf) +{ + int start_line = 0, i = 0; + bool skip = true; + + memset(lines[0], 0, MAIN_BUF_SIZE); + while (!feof(fd) && i < MAX_LINES) { + /* + * Devcoredump might have long lines, load up to + * LINE_BUF_SIZE for a single line + */ + if (!fgets(buf, LINE_BUF_SIZE, fd)) + if (ferror(fd) != 0) { + igt_warn("Failed to read devcoredump file, error: %d\n", + ferror(fd)); + break; + } + + if (skip) { + start_line++; + /* Skip all lines before START_TAG */ + if (strncmp(START_TAG, buf, strlen(START_TAG))) + continue; + else + skip = false; + } + + /* Only save up to MAX_LINE_LEN to buffer */ + safe_strncpy(lines[i++], buf, MAX_LINE_LEN); + + /* Stop on END_TAG */ + if (!strncmp(END_TAG, buf, strlen(END_TAG))) + break; + } + return start_line; +} + +static int access_devcoredump(char *path, char **lines, char *line_buf) +{ + int start_line = -1; + FILE *fd = fopen(path, "r"); + + if (!fd) + return false; + + igt_debug("Devcoredump found: %s\n", path); + + /* Clear memory before load file */ + if (lines) + start_line = load_all(fd, lines, line_buf); + + fclose(fd); + return start_line; +} + +static bool rm_devcoredump(char *path) +{ + int fd = open(path, O_WRONLY); + + if (fd != -1) { + igt_debug("Clearing devcoredump.\n"); + write(fd, "0", 1); + close(fd); + return true; + } + + return false; +} + +static char +*get_coredump_item(regex_t *regex, char **lines, const char *tag, int tag_index, int target_index) +{ + int i; + regmatch_t match[REGEX_NON_SPACE_GROUPS_COUNT]; + + for (i = 0; i < MAX_LINES; i++) { + char *line = lines[i]; + + /* Skip lines without tag */ + if (!strstr(line, tag)) + continue; + + if ((regexec(regex, line, REGEX_NON_SPACE_GROUPS_COUNT, match, 0)) == 0) { + char *key = NULL, *value = NULL; + + if (match[tag_index].rm_so >= 0) { + key = &line[match[tag_index].rm_so]; + line[match[tag_index].rm_eo] = '\0'; + } + if (match[target_index].rm_so >= 0) { + value = &line[match[target_index].rm_so]; + line[match[target_index].rm_eo] = '\0'; + } + + if (key && value && strcmp(tag, key) == 0) + return value; + /* if key != tag, keep searching and loop to next line */ + } + } + + return NULL; +} + +static void +check_item_u64(regex_t *regex, char **lines, const char *tag, u64 addr_lo, u64 addr_hi) +{ + u64 result; + char *output; + + igt_assert_f((output = get_coredump_item(regex, lines, tag, INDEX_KEY, INDEX_VALUE)), + "Target not found:%s\n", tag); + result = strtoul(output, NULL, 16); + igt_debug("Compare %s %s vs [0x%lX-0x%lX]\n", tag, output, addr_lo, addr_hi); + igt_assert_f((addr_lo <= result) && (result <= addr_hi), + "value %lX out of range[0x%lX-0x%lX]\n", result, addr_lo, addr_hi); +} + +static void +check_item_str(regex_t *regex, char **lines, const char *tag, int tag_index, int target_index, + const char *target, bool up_to_target_len) +{ + char buf[MAX_TEMP_LEN] = {0}; + char *output; + int code; + + igt_assert_f(output = get_coredump_item(regex, lines, tag, tag_index, target_index), + "Target not found:%s\n", tag); + + if (up_to_target_len) { + igt_assert_f(strlen(target) < MAX_TEMP_LEN, "Target too long.\n"); + safe_strncpy(buf, output, MAX_TEMP_LEN); + buf[strlen(target)] = 0; + output = buf; + } + code = strncmp(output, target, strlen(target)); + igt_debug("From tag '%s' found %s vs %s\n", tag, output, target); + igt_assert_f(code == 0, "Expected value:%s, received:%s\n", target, output); +} + +/** + * SUBTEST: reset + * Description: Reset GuC, check devcoredump output values + */ +static void test_card(int fd) +{ + struct drm_xe_engine_class_instance *hwe; + regex_t regex; + int start_line; + int engine_cid = rand(); + char **lines; + char *single_line_buf = (char *)malloc(LINE_BUF_SIZE); + char temp[MAX_TEMP_LEN]; + char path[MAX_SYSFS_PATH_LEN]; + + igt_assert_f(single_line_buf, "Out of memory.\n"); + + regcomp(®ex, REGEX_NON_SPACE_GROUPS, REG_EXTENDED | REG_NEWLINE); + get_devcoredump_path(igt_device_get_card_index(fd), path); + lines = alloc_lines_buffer(); + + /* clear old devcoredump, if any */ + rm_devcoredump(path); + + xe_for_each_engine(fd, hwe) { + /* + * To test devcoredump register data, the test batch address is + * used to compare with the dump, address bit 40 to 46 act as + * context id, which start with an random number, increased 1 + * per engine. By this way, the address is unique for each + * engine, and start with an random number on each run. + */ + const u64 addr = BASE_ADDRESS | ((u64)(engine_cid++ % CID_ADDRESS_MASK) << + ADDRESS_SHIFT); + + igt_debug("Running on engine class: %x instance: %x\n", hwe->engine_class, + hwe->engine_instance); + + test_legacy_mode(fd, hwe, 1, 1, 0, addr); + /* Wait 1 sec for devcoredump complete */ + sleep(1); + + /* assert devcoredump created */ + igt_assert_f((start_line = access_devcoredump(path, lines, single_line_buf)) > 0, + "Devcoredump not exist, errno=%d.\n", errno); + + sprintf(temp, "instance=%d", hwe->engine_instance); + check_item_str(®ex, lines, "(physical),", INDEX_ENGINE_PHYSICAL, + INDEX_ENGINE_INSTANCE, temp, false); + check_item_str(®ex, lines, "(physical),", INDEX_ENGINE_PHYSICAL, + INDEX_ENGINE_NAME, xe_engine_class_name(hwe->engine_class), true); + + check_item_str(®ex, lines, "Capture_source:", INDEX_KEY, INDEX_VALUE, + "GuC", false); + check_item_u64(®ex, lines, "ACTHD:", addr, + addr + BATCH_DW_COUNT * sizeof(u32)); + check_item_u64(®ex, lines, "RING_BBADDR:", addr, + addr + BATCH_DW_COUNT * sizeof(u32)); + + /* clear devcoredump */ + rm_devcoredump(path); + sleep(1); + /* Assert devcoredump removed */ + igt_assert_f(!access_devcoredump(path, NULL, NULL), "Devcoredump not removed\n"); + } + /* Free lines buffer */ + free(lines); + free(single_line_buf); + regfree(®ex); +} + +igt_main +{ + int xe; + struct drm_xe_engine_class_instance *hwe; + u64 timeouts[DRM_XE_ENGINE_CLASS_VM_BIND] = {0}; + + igt_fixture { + xe = drm_open_driver(DRIVER_XE); + xe_for_each_engine(xe, hwe) { + /* Skip kernel only classes */ + if (hwe->engine_class >= DRM_XE_ENGINE_CLASS_VM_BIND) + continue; + /* Skip classes already set */ + if (timeouts[hwe->engine_class]) + continue; + /* Save original timeout value */ + timeouts[hwe->engine_class] = xe_sysfs_get_job_timeout_ms(xe, hwe); + /* Reduce timeout value to speedup test */ + xe_sysfs_set_job_timeout_ms(xe, hwe, CAPTURE_JOB_TIMEOUT); + + igt_debug("Reduced %s class timeout from %ld to %d\n", + xe_engine_class_name(hwe->engine_class), + timeouts[hwe->engine_class], CAPTURE_JOB_TIMEOUT); + } + } + + igt_subtest("reset") + test_card(xe); + + igt_fixture { + xe_for_each_engine(xe, hwe) { + /* Skip kernel only classes */ + if (hwe->engine_class >= DRM_XE_ENGINE_CLASS_VM_BIND) + continue; + /* Skip classes already set */ + if (timeouts[hwe->engine_class] == 0) + continue; + /* Restore original timeout value */ + xe_sysfs_set_job_timeout_ms(xe, hwe, timeouts[hwe->engine_class]); + igt_debug("Restored %s class timeout to %ld\n", + xe_engine_class_name(hwe->engine_class), + timeouts[hwe->engine_class]); + + timeouts[hwe->engine_class] = 0; + } + + drm_close_driver(xe); + } +} diff --git a/tests/meson.build b/tests/meson.build index 89bba6454..895d911f8 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -286,6 +286,7 @@ intel_xe_progs = [ 'xe_exec_atomic', 'xe_exec_balancer', 'xe_exec_basic', + 'xe_exec_capture', 'xe_exec_compute_mode', 'xe_exec_fault_mode', 'xe_exec_mix_modes', -- 2.34.1 From patchwork at emeril.freedesktop.org Wed Jan 8 01:21:49 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 08 Jan 2025 01:21:49 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EBAT=3A_failure_for_series_starting_with_=5Bi-g?= =?utf-8?q?-t=2Cv2=2C1/8=5D_lib/xe/xe=5Fgt=3A_Fix_header_guards_and_boilerpl?= =?utf-8?q?ate?= In-Reply-To: <20250107202615.1306306-1-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> Message-ID: <173629930981.1135626.3717544648525585611@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v2,1/8] lib/xe/xe_gt: Fix header guards and boilerplate URL : https://patchwork.freedesktop.org/series/143204/ State : failure == Summary == CI Bug Log - changes from XEIGT_8179_BAT -> XEIGTPW_12398_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12398_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12398_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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12398_BAT: ### IGT changes ### #### Possible regressions #### * igt at xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/bat-adlp-vf/igt at xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/bat-adlp-vf/igt at xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind.html #### Warnings #### * igt at xe_gt_freq@freq_fixed_idle: - bat-pvc-2: [SKIP][3] ([Intel XE#1021]) -> [SKIP][4] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/bat-pvc-2/igt at xe_gt_freq@freq_fixed_idle.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/bat-pvc-2/igt at xe_gt_freq@freq_fixed_idle.html Known issues ------------ Here are the changes found in XEIGTPW_12398_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt at xe_intel_bb@render at render-ymajor-256: - bat-adlp-vf: [DMESG-WARN][5] ([Intel XE#3958]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/bat-adlp-vf/igt at xe_intel_bb@render at render-ymajor-256.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/bat-adlp-vf/igt at xe_intel_bb@render at render-ymajor-256.html [Intel XE#1021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1021 [Intel XE#3958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3958 Build changes ------------- * IGT: IGT_8179 -> IGTPW_12398 * Linux: xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571 -> xe-2452-8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 IGTPW_12398: bf13da2a3201323521295aa183f36e8841b344b2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571: 89042e0bb417f4d67280e1d7fa9bbcca51734571 xe-2452-8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5: 8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Wed Jan 8 01:23:20 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 08 Jan 2025 01:23:20 -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/8=5D_lib/xe/xe=5Fgt=3A_Fix_header_guards_and_boiler?= =?utf-8?q?plate?= In-Reply-To: <20250107202615.1306306-1-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> Message-ID: <173629940089.1135626.5709854489245318353@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v2,1/8] lib/xe/xe_gt: Fix header guards and boilerplate URL : https://patchwork.freedesktop.org/series/143204/ State : failure == Summary == CI Bug Log - changes from IGT_8179 -> IGTPW_12398 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12398 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12398, 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_12398/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12398: ### IGT changes ### #### Possible regressions #### * igt at i915_selftest@live: - fi-hsw-4770: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/fi-hsw-4770/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12398/fi-hsw-4770/igt at i915_selftest@live.html Known issues ------------ Here are the changes found in IGTPW_12398 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live at gt_mocs: - bat-twl-2: NOTRUN -> [ABORT][3] ([i915#12919]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12398/bat-twl-2/igt at i915_selftest@live at gt_mocs.html * igt at i915_selftest@live at ring_submission: - fi-cfl-8109u: [PASS][4] -> [DMESG-WARN][5] ([i915#11621]) +132 other tests dmesg-warn [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/fi-cfl-8109u/igt at i915_selftest@live at ring_submission.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12398/fi-cfl-8109u/igt at i915_selftest@live at ring_submission.html #### Possible fixes #### * igt at i915_selftest@live at gt_lrc: - bat-twl-2: [INCOMPLETE][6] ([i915#12445] / [i915#9413]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/bat-twl-2/igt at i915_selftest@live at gt_lrc.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12398/bat-twl-2/igt at i915_selftest@live at gt_lrc.html * igt at i915_selftest@live at gt_pm: - bat-jsl-1: [DMESG-FAIL][8] ([i915#13132]) -> [PASS][9] +1 other test pass [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/bat-jsl-1/igt at i915_selftest@live at gt_pm.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12398/bat-jsl-1/igt at i915_selftest@live at gt_pm.html * igt at i915_selftest@live at workarounds: - bat-arls-5: [DMESG-FAIL][10] ([i915#13393]) -> [PASS][11] +1 other test pass [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/bat-arls-5/igt at i915_selftest@live at workarounds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12398/bat-arls-5/igt at i915_selftest@live at workarounds.html #### Warnings #### * igt at i915_selftest@live: - bat-twl-2: [INCOMPLETE][12] ([i915#9413]) -> [ABORT][13] ([i915#12919] / [i915#13397]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/bat-twl-2/igt at i915_selftest@live.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12398/bat-twl-2/igt at i915_selftest@live.html [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13132 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [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_8179 -> IGTPW_12398 * Linux: CI_DRM_15915 -> CI_DRM_15920 CI-20190529: 20190529 CI_DRM_15915: 89042e0bb417f4d67280e1d7fa9bbcca51734571 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15920: 8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12398: bf13da2a3201323521295aa183f36e8841b344b2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12398/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Wed Jan 8 01:40:28 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 08 Jan 2025 01:40:28 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_Remove_redundant_hotplug_?= =?utf-8?q?detection_assertion_=28rev2=29?= In-Reply-To: <20250107205434.969797-1-ramanaidu.naladala@intel.com> References: <20250107205434.969797-1-ramanaidu.naladala@intel.com> Message-ID: <173630042890.1135633.11787104860185965473@b555e5b46a47> == Series Details == Series: Remove redundant hotplug detection assertion (rev2) URL : https://patchwork.freedesktop.org/series/143141/ State : failure == Summary == CI Bug Log - changes from IGT_8179 -> IGTPW_12399 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12399 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12399, 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_12399/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12399: ### IGT changes ### #### Possible regressions #### * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - bat-adlp-9: NOTRUN -> [SKIP][1] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-adlp-9/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-twl-2: NOTRUN -> [SKIP][2] +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-twl-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-dg2-11: NOTRUN -> [SKIP][3] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-dg2-11/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-rpls-4: NOTRUN -> [SKIP][4] +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-rpls-4/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-dg2-14: NOTRUN -> [SKIP][5] +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-dg2-14/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-arls-5: NOTRUN -> [SKIP][6] +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-arls-5/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-rplp-1: NOTRUN -> [SKIP][7] +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-rplp-1/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - fi-rkl-11600: NOTRUN -> [SKIP][8] +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-rkl-11600/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-jsl-3: NOTRUN -> [SKIP][9] +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-jsl-3/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-adlp-11: NOTRUN -> [SKIP][10] +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-adlp-11/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - bat-mtlp-8: NOTRUN -> [SKIP][11] +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-mtlp-8/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-dg2-8: NOTRUN -> [SKIP][12] +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-dg2-8/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-adls-6: NOTRUN -> [SKIP][13] +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-adls-6/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-jsl-1: NOTRUN -> [SKIP][14] +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-jsl-1/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - fi-tgl-1115g4: NOTRUN -> [SKIP][15] +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-tgl-1115g4/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-arlh-3: NOTRUN -> [SKIP][16] +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-arlh-3/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-dg1-7: NOTRUN -> [SKIP][17] +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-dg1-7/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - {bat-mtlp-9}: NOTRUN -> [SKIP][18] +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-mtlp-9/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - {bat-arls-6}: NOTRUN -> [SKIP][19] +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-arls-6/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html Known issues ------------ Here are the changes found in IGTPW_12399 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_module_load@load: - fi-cfl-8109u: [PASS][20] -> [DMESG-WARN][21] ([i915#11621]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/fi-cfl-8109u/igt at i915_module_load@load.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-cfl-8109u/igt at i915_module_load@load.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - fi-kbl-7567u: NOTRUN -> [SKIP][22] +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-kbl-7567u/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - fi-cfl-8700k: NOTRUN -> [SKIP][23] +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-cfl-8700k/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - fi-kbl-8809g: NOTRUN -> [SKIP][24] +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-kbl-8809g/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-kbl-2: NOTRUN -> [SKIP][25] +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-kbl-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-arlh-2: NOTRUN -> [SKIP][26] ([i915#11346]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-arlh-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - fi-kbl-guc: NOTRUN -> [SKIP][27] +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-kbl-guc/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-adls-6: NOTRUN -> [SKIP][28] ([i915#7828]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-adls-6/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - fi-ilk-650: NOTRUN -> [SKIP][29] +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-ilk-650/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-jsl-1: NOTRUN -> [SKIP][30] ([i915#7828]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-jsl-1/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - fi-tgl-1115g4: NOTRUN -> [SKIP][31] ([i915#7828]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-tgl-1115g4/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - fi-cfl-guc: NOTRUN -> [SKIP][32] +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-cfl-guc/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-mtlp-6: NOTRUN -> [SKIP][33] ([i915#7828] / [i915#9792]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-mtlp-6/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-adlp-9: NOTRUN -> [SKIP][34] ([i915#7828]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-adlp-9/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-arls-5: NOTRUN -> [SKIP][35] ([i915#7828]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-arls-5/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-arlh-2: NOTRUN -> [SKIP][36] ([i915#11151] / [i915#11346]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-arlh-2/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - fi-rkl-11600: NOTRUN -> [SKIP][37] ([i915#7828]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-rkl-11600/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - fi-ivb-3770: NOTRUN -> [SKIP][38] +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-ivb-3770/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-dg1-6: NOTRUN -> [SKIP][39] ([i915#12311]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-dg1-6/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - fi-elk-e7500: NOTRUN -> [SKIP][40] +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-elk-e7500/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - fi-blb-e6850: NOTRUN -> [SKIP][41] +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-blb-e6850/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-mtlp-6: NOTRUN -> [SKIP][42] ([i915#9792]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-mtlp-6/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - bat-arlh-3: NOTRUN -> [SKIP][43] ([i915#11151]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-arlh-3/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-dg1-7: NOTRUN -> [SKIP][44] ([i915#7828]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-dg1-7/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-jsl-3: NOTRUN -> [SKIP][45] ([i915#7828]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-jsl-3/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-twl-2: NOTRUN -> [SKIP][46] ([i915#11151]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-twl-2/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-dg2-11: NOTRUN -> [SKIP][47] ([i915#7828]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-dg2-11/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - fi-kbl-x1275: NOTRUN -> [SKIP][48] +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-kbl-x1275/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - fi-hsw-4770: NOTRUN -> [SKIP][49] +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-hsw-4770/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-rpls-4: NOTRUN -> [SKIP][50] ([i915#7828]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-rpls-4/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - fi-cfl-8109u: NOTRUN -> [SKIP][51] +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/fi-cfl-8109u/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-dg2-14: NOTRUN -> [SKIP][52] ([i915#7828]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-dg2-14/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-dg2-8: NOTRUN -> [SKIP][53] ([i915#7828]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-dg2-8/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-rplp-1: NOTRUN -> [SKIP][54] ([i915#7828]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-rplp-1/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-adlp-11: NOTRUN -> [SKIP][55] ([i915#7828]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-adlp-11/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-mtlp-8: NOTRUN -> [SKIP][56] ([i915#7828]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-mtlp-8/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-dg1-6: NOTRUN -> [SKIP][57] ([i915#12311] / [i915#7828]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/bat-dg1-6/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8179 -> IGTPW_12399 * Linux: CI_DRM_15915 -> CI_DRM_15920 CI-20190529: 20190529 CI_DRM_15915: 89042e0bb417f4d67280e1d7fa9bbcca51734571 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15920: 8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12399: 4a988bee49dc8aa63788fc23ca223ff62aec856c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12399/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Wed Jan 8 01:43:38 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 08 Jan 2025 01:43:38 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Remove_redundant_hotplug_de?= =?utf-8?q?tection_assertion_=28rev2=29?= In-Reply-To: <20250107205434.969797-1-ramanaidu.naladala@intel.com> References: <20250107205434.969797-1-ramanaidu.naladala@intel.com> Message-ID: <173630061849.1135633.8334849004238606193@b555e5b46a47> == Series Details == Series: Remove redundant hotplug detection assertion (rev2) URL : https://patchwork.freedesktop.org/series/143141/ State : success == Summary == CI Bug Log - changes from XEIGT_8179_BAT -> XEIGTPW_12399_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12399_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2252]) +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/bat-bmg-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-bmg-1: NOTRUN -> [SKIP][2] ([Intel XE#2252]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/bat-bmg-1/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - bat-lnl-1: NOTRUN -> [SKIP][3] ([Intel XE#373]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/bat-lnl-1/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-pvc-2: NOTRUN -> [SKIP][4] ([Intel XE#1024]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/bat-pvc-2/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-dg2-oem2: NOTRUN -> [SKIP][5] ([Intel XE#373]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/bat-dg2-oem2/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-atsm-2: NOTRUN -> [SKIP][6] ([Intel XE#1024]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/bat-atsm-2/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - bat-adlp-vf: NOTRUN -> [SKIP][7] ([Intel XE#2463]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/bat-adlp-vf/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - bat-lnl-2: NOTRUN -> [SKIP][8] ([Intel XE#373]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/bat-lnl-2/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2463]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2463 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 Build changes ------------- * IGT: IGT_8179 -> IGTPW_12399 * Linux: xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571 -> xe-2452-8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 IGTPW_12399: 4a988bee49dc8aa63788fc23ca223ff62aec856c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571: 89042e0bb417f4d67280e1d7fa9bbcca51734571 xe-2452-8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5: 8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Wed Jan 8 02:08:02 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 08 Jan 2025 02:08:02 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EBAT=3A_failure_for_tests/intel/xe=5Fexec=5Fcap?= =?utf-8?q?ture=3A_Add_xe=5Fexec=5Fcapture_test_=28rev9=29?= In-Reply-To: <20250108000410.469269-1-zhanjun.dong@intel.com> References: <20250108000410.469269-1-zhanjun.dong@intel.com> Message-ID: <173630208278.1135626.2022906240108273177@b555e5b46a47> == Series Details == Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev9) URL : https://patchwork.freedesktop.org/series/140007/ State : failure == Summary == CI Bug Log - changes from XEIGT_8179_BAT -> XEIGTPW_12400_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12400_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12400_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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12400_BAT: ### IGT changes ### #### Possible regressions #### * igt at xe_exec_basic@twice-userptr-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/bat-adlp-vf/igt at xe_exec_basic@twice-userptr-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/bat-adlp-vf/igt at xe_exec_basic@twice-userptr-rebind.html Known issues ------------ Here are the changes found in XEIGTPW_12400_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_exec_balancer@twice-parallel-userptr-rebind: - bat-adlp-vf: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#3958]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/bat-adlp-vf/igt at xe_exec_balancer@twice-parallel-userptr-rebind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/bat-adlp-vf/igt at xe_exec_balancer@twice-parallel-userptr-rebind.html #### Possible fixes #### * igt at xe_intel_bb@render at render-ymajor-256: - bat-adlp-vf: [DMESG-WARN][5] ([Intel XE#3958]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/bat-adlp-vf/igt at xe_intel_bb@render at render-ymajor-256.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/bat-adlp-vf/igt at xe_intel_bb@render at render-ymajor-256.html [Intel XE#3958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3958 Build changes ------------- * IGT: IGT_8179 -> IGTPW_12400 * Linux: xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571 -> xe-2452-8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 IGTPW_12400: 12400 IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571: 89042e0bb417f4d67280e1d7fa9bbcca51734571 xe-2452-8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5: 8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Wed Jan 8 02:10:42 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 08 Jan 2025 02:10:42 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fexec=5Fc?= =?utf-8?q?apture=3A_Add_xe=5Fexec=5Fcapture_test_=28rev9=29?= In-Reply-To: <20250108000410.469269-1-zhanjun.dong@intel.com> References: <20250108000410.469269-1-zhanjun.dong@intel.com> Message-ID: <173630224240.1135633.13485325885571991305@b555e5b46a47> == Series Details == Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev9) URL : https://patchwork.freedesktop.org/series/140007/ State : success == Summary == CI Bug Log - changes from IGT_8179 -> IGTPW_12400 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12400 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_pm_rpm@module-reload: - fi-cfl-8109u: [PASS][1] -> [DMESG-WARN][2] ([i915#11621] / [i915#1982]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/fi-cfl-8109u/igt at i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/fi-cfl-8109u/igt at i915_pm_rpm@module-reload.html * igt at i915_selftest@live: - bat-mtlp-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#13393]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/bat-mtlp-8/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/bat-mtlp-8/igt at i915_selftest@live.html * igt at i915_selftest@live at ring_submission: - fi-cfl-8109u: [PASS][5] -> [DMESG-WARN][6] ([i915#11621]) +131 other tests dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/fi-cfl-8109u/igt at i915_selftest@live at ring_submission.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/fi-cfl-8109u/igt at i915_selftest@live at ring_submission.html #### Possible fixes #### * igt at i915_selftest@live at gt_pm: - bat-jsl-1: [DMESG-FAIL][7] ([i915#13132]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8179/bat-jsl-1/igt at i915_selftest@live at gt_pm.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/bat-jsl-1/igt at i915_selftest@live at gt_pm.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#13132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13132 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8179 -> IGTPW_12400 * Linux: CI_DRM_15915 -> CI_DRM_15920 CI-20190529: 20190529 CI_DRM_15915: 89042e0bb417f4d67280e1d7fa9bbcca51734571 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15920: 8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12400: 12400 IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From balasubramani.vivekanandan at intel.com Wed Jan 8 05:23:27 2025 From: balasubramani.vivekanandan at intel.com (Vivekanandan, Balasubramani) Date: Wed, 8 Jan 2025 10:53:27 +0530 Subject: [PATCH RFC i-g-t] lib/igt_kmemleak: library to interact with kmemleak In-Reply-To: References: <20241216184642.133454-1-peter.senna@linux.intel.com> Message-ID: On 08.01.2025 01:47, Cavitt, Jonathan wrote: > -----Original Message----- > From: igt-dev On Behalf Of Peter Senna Tschudin > Sent: Monday, December 16, 2024 10:47 AM > To: igt-dev at lists.freedesktop.org > Cc: Senna, Peter ; Gandi, Ramadevi ; Knop, Ryszard ; Lattannavar, Sameer ; De Marchi, Lucas ; Saarinen, Jani ; Piecielska, Katarzyna ; Roper, Matthew D ; gregory.f.germano at intel.com; Taylor, Clinton A ; Vivekanandan, Balasubramani ; Yu, Jianshui ; Peter Senna Tschudin > Subject: [PATCH RFC i-g-t] lib/igt_kmemleak: library to interact with kmemleak > > > > From: Peter Senna Tschudin > > > > Adds a simple library for interacting with kmemleak ispired by > > 'tests/amdgpu/amd_mem_leak.c'. Also adds unit testing for the > > library. > > > > To use the library include "igt_kmemleak.h" and: > > 1. igt_kmemleak_init(NULL) /* Returns true if kmemleak is active */ > > 2. igt_kmemleak_clear() > > 3. /* Run your test */ > > 4. igt_kmemleak_scan() > > 5. if (igt_kmemleak_found_leaks()) > > igt_kmemleak_cp_leaks_file(*dst) > > > > CC: ramadevi.gandi at intel.com > > CC: ryszard.knop at intel.com > > CC: sameer.lattannavar at intel.com > > CC: lucas.demarchi at intel.com > > CC: jani.saarinen at intel.com > > CC: katarzyna.piecielska at intel.com > > CC: matthew.d.roper at intel.com > > CC: gregory.f.germano at intel.com > > CC: clinton.a.taylor at intel.com > > CC: balasubramani.vivekanandan at intel.com > > CC: jianshui.yu at intel.com > > Signed-off-by: Peter Senna Tschudin > > I'm not particularly well-versed in kmemleak, but nothing about this patch seems out of the > ordinary. Though I can still offer some small style-related suggestions. > Also, do you want a reviewed-by for this? I'd give one right now but I don't think I should be > Acking RFC patches. > > > --- > > lib/igt_kmemleak.c | 154 +++++++++++++++++++++ > > lib/igt_kmemleak.h | 69 ++++++++++ > > lib/meson.build | 1 + > > lib/tests/igt_kmemleak.c | 291 +++++++++++++++++++++++++++++++++++++++ > > lib/tests/meson.build | 1 + > > 5 files changed, 516 insertions(+) > > create mode 100644 lib/igt_kmemleak.c > > create mode 100644 lib/igt_kmemleak.h > > create mode 100644 lib/tests/igt_kmemleak.c > > > > diff --git a/lib/igt_kmemleak.c b/lib/igt_kmemleak.c > > new file mode 100644 > > index 000000000..02ee0361d > > --- /dev/null > > +++ b/lib/igt_kmemleak.c > > @@ -0,0 +1,154 @@ > > +// SPDX-License-Identifier: MIT > > +/* > > + * Copyright ? 2024 Intel Corporation > > + */ > > + > > +#include > > +#include > > +#include > > +#include > > +#include > > + > > +#include "igt_core.h" > > +#include "igt_device_scan.h" > > +#include "igt_kmemleak.h" > > +#include "igt_kmod.h" > > +#include "igt_list.h" > > + > > +/* We can change the path for unit testing, see igt_kmemleak_init() */ > > +static char igt_kmemleak_file[256] = "/sys/kernel/debug/kmemleak"; > > + > > +/** > > + * igt_kmemeak_init: > > + * @igt_kmemleak_file: update the path to kmemleak file to enable unit testing > > + * > > + * Check if kmemleak is enabled in the kernel, if debugfs is mounted and > > + * if kmemleak file is present and readable. > > + * > > + * Returns: true if kmemleak is enabled, false otherwise. > > + */ > > +bool igt_kmemleak_init(const char *unit_test_kmemleak_file) > > +{ > > + FILE *fp; > > + > > + if (unit_test_kmemleak_file) > > + snprintf(igt_kmemleak_file, > > + sizeof(igt_kmemleak_file), > > + "%s", > > + unit_test_kmemleak_file); > > + > > + fp = fopen(igt_kmemleak_file, "r"); > > + if (!fp) > > + return false; > > + > > + fclose(fp); > > + return true; > > +} > > + > > +/** > > + * igt_kmemeak_cmd: > > + * @cmd: command to send to kmemleak > > + * > > + * Send a command to kmemleak. > > + * > > + * Returns: true if sending the command was successful, false otherwise. > > + */ > > +bool igt_kmemleak_cmd(const char *cmd) > > +{ > > + FILE *fp; > > + > > + fp = fopen(igt_kmemleak_file, "r+"); > > + if (!fp) > > + return false; > > + > > + if (fwrite(cmd, 1, strlen(cmd), fp) != strlen(cmd)) { > > + fclose(fp); > > + return false; > > + } > > Maybe we can reduce the number of fclose calls by capturing the fwrite return value: > """ > bool igt_kmemleak_cmd(const char *cmd) > { > FILE *fp; > size_t wlen; > > fp = fopen(igt_kmemleak_file, "r+"); > if (!fp) > return false; > > wlen = fwrite(cmd, 1, strlen(cmd), fp); > fclose(fp); > > return wlen == strlen(cmd); > } > """ > Though that's not strictly necessary here. > > > + > > + fclose(fp); > > + return true; > > +} > > + > > +/** > > + * igt_kmemeak_scan: > > + * > > + * Trigger an immediate scan on kmemleak. > > + * > > + * Returns: true if sending the command to scan was successful, false otherwise. > > + */ > > +bool igt_kmemleak_scan(void) > > +{ > > + return igt_kmemleak_cmd("scan"); > > +} > > + > > +/** > > + * igt_kmemeak_clear: > > + * > > + * Trigger an immediate clear on kmemleak. > > + * > > + * Returns: true if sending the command to clear was successful, false > > + * otherwise. > > + */ > > +bool igt_kmemleak_clear(void) > > +{ > > + return igt_kmemleak_cmd("clear"); > > +} > > + > > +/** > > + * igt_kmemeak_found_leaks: > > + * > > + * Check if kmemleak found any leaks. > > + * > > + * Returns: true if kmemleak found any leaks, false otherwise. > > + */ > > +bool igt_kmemleak_found_leaks(void) > > +{ > > + FILE *fp; > > + char buf[1]; > > + > > + fp = fopen(igt_kmemleak_file, "r"); > > + if (!fp) > > + return false; > > + > > + if (fread(buf, 1, 1, fp) <= 0) { > > + fclose(fp); > > + return false; > > + } > > Same comment as with igt_kmemleak_cmd above: > """ > bool igt_kmemleak_found_leak(void) > { > FILE *fp; > char buf[1]; > size_t rlen; > > fp = fopen(igt_kmemleak_file, "r"); > if (!fp) > return false; > > rlen = fread(buf, 1, 1, fp); > fclose(fp); > > return rlen > 0; > } > """ > Though, again, this isn't strictly necessary. > > > + > > + /* fread() did read 1 char */ > > + fclose(fp); > > + return true; > > +} > > + > > +/** > > + * igt_kmemeak_cp_leaks_file: > > + * @dst: path of destination file including the file name > > + * > > + * Copy kmemleak file to dst. > > + * > > + * Returns: true if copy was successful, false otherwise > > + */ > > +bool igt_kmemleak_cp_leaks_file(const char *dst) > > +{ > > + FILE *src, *dest; > > + char buf[1024]; > > + size_t n; > > + > > + src = fopen(igt_kmemleak_file, "r"); > > + if (!src) > > + return false; > > + > > + dest = fopen(dst, "w"); > > + if (!dest) { > > + fclose(src); > > + return false; > > + } > > + > > + while ((n = fread(buf, 1, sizeof(buf), src)) > 0) > > + fwrite(buf, 1, n, dest); > > + > > + fclose(src); > > + fclose(dest); > > I think these two fclose calls should swap places for style reasons, but it's also > not particularly important. > > > + return true; > > +} > > diff --git a/lib/igt_kmemleak.h b/lib/igt_kmemleak.h > > new file mode 100644 > > index 000000000..a65f31810 > > --- /dev/null > > +++ b/lib/igt_kmemleak.h > > @@ -0,0 +1,69 @@ > > +/* SPDX-License-Identifier: MIT > > + * Copyright ? 2024 Intel Corporation > > + */ > > + > > +#ifndef IGT_KMEMLEAK_H > > +#define IGT_KMEMLEAK_H > > + > > +#include > > + > > +/** > > + * igt_kmemeak_init: > > + * @igt_kmemleak_file: update the path to kmemleak file to enable unit testing > > + * > > + * Check if kmemleak is enabled in the kernel, if debugfs is mounted and > > + * if kmemleak file is present and readable. > > + * > > + * Returns: true if kmemleak is enabled, false otherwise. > > + */ > > I don't think we need comments like this for both the implementation > and the header file. The former should be sufficient. > > > +bool igt_kmemleak_init(const char *unit_test_kmemleak_file); > > + > > +/** > > + * igt_kmemeak_cmd: > > + * @cmd: command to send to kmemleak > > + * > > + * Send a command to kmemleak. > > + * > > + * Returns: true if sending the command was successful, false otherwise. > > + */ > > +bool igt_kmemleak_cmd(const char *cmd); > > + > > +/** > > + * igt_kmemeak_scan: > > + * > > + * Trigger an immediate scan on kmemleak. > > + * > > + * Returns: true if sending the command to scan was successful, false otherwise. > > + */ > > +bool igt_kmemleak_scan(void); > > + > > +/** > > + * igt_kmemeak_clear: > > + * > > + * Trigger an immediate clear on kmemleak. > > + * > > + * Returns: true if sending the command to clear was successful, false > > + * otherwise. > > + */ > > +bool igt_kmemleak_clear(void); > > + > > +/** > > + * igt_kmemeak_found_leaks: > > + * > > + * Check if kmemleak found any leaks. > > + * > > + * Returns: true if kmemleak found any leaks, false otherwise. > > + */ > > +bool igt_kmemleak_found_leaks(void); > > + > > +/** > > + * igt_kmemeak_cp_leaks_file: > > + * @dst: path of destination file including the file name > > + * > > + * Copy kmemleak file to dst. > > + * > > + * Returns: true if copy was successful, false otherwise > > + */ > > +bool igt_kmemleak_cp_leaks_file(const char *dst); > > + > > +#endif /* IGT_KMEMLEAK_H */ > > diff --git a/lib/meson.build b/lib/meson.build > > index 640513e6c..24423ef37 100644 > > --- a/lib/meson.build > > +++ b/lib/meson.build > > @@ -96,6 +96,7 @@ lib_sources = [ > > 'igt_dummyload.c', > > 'igt_store.c', > > 'uwildmat/uwildmat.c', > > + 'igt_kmemleak.c', > > 'igt_kmod.c', > > 'igt_ktap.c', > > 'igt_panfrost.c', > > diff --git a/lib/tests/igt_kmemleak.c b/lib/tests/igt_kmemleak.c > > new file mode 100644 > > index 000000000..f5bf5ca07 > > --- /dev/null > > +++ b/lib/tests/igt_kmemleak.c > > @@ -0,0 +1,291 @@ > > +// SPDX-License-Identifier: MIT > > +/* > > + * Copyright ? 2024 Intel Corporation > > + */ > > + > > +#include > > +#include > > +#include > > +#include > > + > > +#include "igt_core.h" > > +#include "igt_kmemleak.h" > > + > > +const char *kmemleak_file_example = > > +"unreferenced object 0xffff888102a2e638 (size 80):\n" > > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > > +" hex dump (first 32 bytes):\n" > > +" 00 00 00 00 00 00 00 00 0d 01 a2 00 00 00 00 00 ................\n" > > +" f0 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" > > +" backtrace (crc 2df71a7e):\n" > > +" [] kmemleak_alloc+0x4b/0x80\n" > > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > > +" [] acpi_ps_create_op+0x1c0/0x400\n" > > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > > +" [] acpi_ps_execute_method+0x152/0x380\n" > > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > > +" [] acpi_evaluate_object+0x206/0x490\n" > > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > > +" [] acpi_scan_init+0x119/0x290\n" > > +" [] acpi_init+0x23a/0x590\n" > > +" [] do_one_initcall+0x61/0x3d0\n" > > +" [] kernel_init_freeable+0x3e2/0x680\n" > > +" [] kernel_init+0x1b/0x170" > > +"unreferenced object 0xffff888102a2ed18 (size 80):\n" > > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > > +" hex dump (first 32 bytes):\n" > > +" 38 e6 a2 02 81 88 ff ff 0d 11 2d 00 00 00 00 00 8.........-.....\n" > > +" f2 7c 03 00 00 c9 ff ff 58 ea a2 02 81 88 ff ff .|......X.......\n" > > +" backtrace (crc ec2a8bdc):\n" > > +" [] kmemleak_alloc+0x4b/0x80\n" > > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > > +" [] acpi_ps_create_op+0x1c0/0x400\n" > > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > > +" [] acpi_ps_execute_method+0x152/0x380\n" > > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > > +" [] acpi_evaluate_object+0x206/0x490\n" > > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > > +" [] acpi_scan_init+0x119/0x290\n" > > +" [] acpi_init+0x23a/0x590\n" > > +" [] do_one_initcall+0x61/0x3d0\n" > > +" [] kernel_init_freeable+0x3e2/0x680\n" > > +" [] kernel_init+0x1b/0x170" > > +"unreferenced object 0xffff888102a2ea58 (size 80):\n" > > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > > +" hex dump (first 32 bytes):\n" > > +" 38 e6 a2 02 81 88 ff ff 0d 01 a0 00 00 00 00 00 8...............\n" > > +" f6 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" > > +" backtrace (crc f911c0d1):\n" > > +" [] kmemleak_alloc+0x4b/0x80\n" > > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > > +" [] acpi_ps_create_op+0x1c0/0x400\n" > > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > > +" [] acpi_ps_execute_method+0x152/0x380\n" > > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > > +" [] acpi_evaluate_object+0x206/0x490\n" > > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > > +" [] acpi_scan_init+0x119/0x290\n" > > +" [] acpi_init+0x23a/0x590\n" > > +" [] do_one_initcall+0x61/0x3d0\n" > > +" [] kernel_init_freeable+0x3e2/0x680\n" > > +" [] kernel_init+0x1b/0x170" > > +"unreferenced object 0xffff888102a2e428 (size 80):\n" > > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > > +" hex dump (first 32 bytes):\n" > > +" 58 ea a2 02 81 88 ff ff 0d 01 35 00 00 00 00 00 X.........5.....\n" > > +" fc 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" > > +" backtrace (crc cb8aaffd):\n" > > +" [] kmemleak_alloc+0x4b/0x80\n" > > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > > +" [] acpi_ps_create_op+0x1c0/0x400\n" > > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > > +" [] acpi_ps_execute_method+0x152/0x380\n" > > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > > +" [] acpi_evaluate_object+0x206/0x490\n" > > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > > +" [] acpi_scan_init+0x119/0x290\n" > > +" [] acpi_init+0x23a/0x590\n" > > +" [] do_one_initcall+0x61/0x3d0\n" > > +" [] kernel_init_freeable+0x3e2/0x680\n" > > +" [] kernel_init+0x1b/0x170" > > +"unreferenced object 0xffff888102a2e008 (size 80):\n" > > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > > +" hex dump (first 32 bytes):\n" > > +" 28 e4 a2 02 81 88 ff ff 0d 01 2d 00 00 00 00 00 (.........-.....\n" > > +" fc 7c 03 00 00 c9 ff ff c8 e2 a2 02 81 88 ff ff .|..............\n" > > +" backtrace (crc 7f883e78):\n" > > +" [] kmemleak_alloc+0x4b/0x80\n" > > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > > +" [] acpi_ps_get_next_namepath+0x1f5/0x390\n" > > +" [] acpi_ps_parse_loop+0x4a5/0xa60\n" > > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > > +" [] acpi_ps_execute_method+0x152/0x380\n" > > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > > +" [] acpi_evaluate_object+0x206/0x490\n" > > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > > +" [] acpi_scan_init+0x119/0x290\n" > > +" [] acpi_init+0x23a/0x590\n" > > +" [] do_one_initcall+0x61/0x3d0\n" > > +" [] kernel_init_freeable+0x3e2/0x680\n" > > +" [] kernel_init+0x1b/0x170" > > +"unreferenced object 0xffff888102a2e2c8 (size 80):\n" > > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > > +" hex dump (first 32 bytes):\n" > > +" 28 e4 a2 02 81 88 ff ff 0d 01 73 00 00 00 00 00 (.........s.....\n" > > +" 00 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" > > +" backtrace (crc 338c016):\n" > > +" [] kmemleak_alloc+0x4b/0x80\n" > > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > > +" [] acpi_ps_create_op+0x1c0/0x400\n" > > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > > +" [] acpi_ps_execute_method+0x152/0x380\n" > > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > > +" [] acpi_evaluate_object+0x206/0x490\n" > > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > > +" [] acpi_scan_init+0x119/0x290\n" > > +" [] acpi_init+0x23a/0x590\n" > > +" [] do_one_initcall+0x61/0x3d0\n" > > +" [] kernel_init_freeable+0x3e2/0x680\n" > > +" [] kernel_init+0x1b/0x170" > > +"unreferenced object 0xffff888102a2e378 (size 80):\n" > > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > > +" hex dump (first 32 bytes):\n" > > +" c8 e2 a2 02 81 88 ff ff 0d 01 0d 00 00 00 00 00 ................\n" > > +" 01 7d 03 00 00 c9 ff ff 98 e7 a2 02 81 88 ff ff .}..............\n" > > +" backtrace (crc 665fb8a7):\n" > > +" [] kmemleak_alloc+0x4b/0x80\n" > > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > > +" [] acpi_ps_create_op+0x1c0/0x400\n" > > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > > +" [] acpi_ps_execute_method+0x152/0x380\n" > > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > > +" [] acpi_evaluate_object+0x206/0x490\n" > > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > > +" [] acpi_scan_init+0x119/0x290\n" > > +" [] acpi_init+0x23a/0x590\n" > > +" [] do_one_initcall+0x61/0x3d0\n" > > +" [] kernel_init_freeable+0x3e2/0x680\n" > > +" [] kernel_init+0x1b/0x170" > > +"unreferenced object 0xffff888102a2e798 (size 80):\n" > > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > > +" hex dump (first 32 bytes):\n" > > +" 7c8 e2 a2 02 81 88 ff ff 0d 01 98 00 00 00 00 00 ................\n" > > +" 1b 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" > > +" backtrace (crc b7a23a1c):\n" > > +" [] kmemleak_alloc+0x4b/0x80\n" > > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > > +" [] acpi_ps_create_op+0x1c0/0x400\n" > > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > > +" [] acpi_ps_execute_method+0x152/0x380\n" > > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > > +" [] acpi_evaluate_object+0x206/0x490\n" > > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > > +" [] acpi_scan_init+0x119/0x290\n" > > +" [] acpi_init+0x23a/0x590\n" > > +" [] do_one_initcall+0x61/0x3d0\n" > > +" [] kernel_init_freeable+0x3e2/0x680\n" > > +" [] kernel_init+0x1b/0x170" > > +"unreferenced object 0xffff888102a2e0b8 (size 80):\n" > > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > > +" hex dump (first 32 bytes):\n" > > +" 98 e7 a2 02 81 88 ff ff 0d 01 2d 00 00 00 00 00 ..........-.....\n" > > +" 1c 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" > > +" backtrace (crc 14d67a9c):\n" > > +" [] kmemleak_alloc+0x4b/0x80\n" > > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > > +" [] acpi_ps_create_op+0x1c0/0x400\n" > > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > > +" [] acpi_ps_execute_method+0x152/0x380\n" > > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > > +" [] acpi_evaluate_object+0x206/0x490\n" > > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > > +" [] acpi_scan_init+0x119/0x290\n" > > +" [] acpi_init+0x23a/0x590\n" > > +" [] do_one_initcall+0x61/0x3d0\n" > > +" [] kernel_init_freeable+0x3e2/0x680\n" > > +" [] kernel_init+0x1b/0x170\n"; > > + > > +static unsigned long crc32_file(int fd) > > +{ > > + unsigned long crc; > > + char buf[1024]; > > + ssize_t n; > > + > > + crc = crc32(0, Z_NULL, 0); > > + while ((n = read(fd, buf, sizeof(buf))) > 0) > > + crc = crc32(crc, (const Bytef *)buf, n); > > + > > + return crc; > > +} > > + > > +static void test_igt_kmemleak_cp_leaks_file(void) > > +{ > > + char dst_file_path[256] = "/tmp/igt_kmemleak_dstfile_XXXXXX"; > > + int fd; > > + unsigned long crc; > > + > > + fd = mkstemp(dst_file_path); > > + close(fd); > > + > > + igt_assert(igt_kmemleak_cp_leaks_file(dst_file_path)); > > + > > + /* Test that both files have the same size */ > > + fd = open(dst_file_path, O_RDONLY); > > + igt_assert(fd >= 0); > > + igt_assert(lseek(fd, 0, SEEK_END) == strlen(kmemleak_file_example)); > > + close(fd); > > + > > + /* Test that both files have the same content */ > > + crc = crc32(0, Z_NULL, 0); > > + crc = crc32(crc, > > + (const Bytef *)kmemleak_file_example, > > + strlen(kmemleak_file_example)); Did you miss the changes to compare the CRC? Regards, Bala > > + > > + fd = open(dst_file_path, O_RDONLY); > > + igt_assert(fd >= 0); > > + igt_info(" dst_file: %s\n", dst_file_path); > > + close(fd); > > +} > > + > > +static void test_empty_file(void) > > +{ > > + char tmp_file_path[256] = "/tmp/igt_kmemleak_test_XXXXXX"; > > + int fd; > > + > > + fd = mkstemp(tmp_file_path); > > + igt_assert(fd >= 0); > > + close(fd); > > + > > + /* Set the path for the unit testing file */ > > + igt_assert(igt_kmemleak_init(tmp_file_path)); > > + igt_assert(!igt_kmemleak_found_leaks()); > > +} > > + > > +static void test_non_empty_file(void) > > +{ > > + char tmp_file_path[256] = "/tmp/igt_kmemleak_test_XXXXXX"; > > + int fd; > > + > > + fd = mkstemp(tmp_file_path); > > + igt_assert(fd >= 0); > > + write(fd, kmemleak_file_example, strlen(kmemleak_file_example)); > > + > > + /* Set the path for the unit testing file */ > > + igt_assert(igt_kmemleak_init(tmp_file_path)); > > + > > + /* Test igt_kmemleak_found_leaks() that should return true */ > > + igt_assert(igt_kmemleak_found_leaks()); > > test_empty_file and test_non_empty_file could probably be consolidated into a single > "test_file" or "test_kmemleak_file" test with a Boolean determining if we want to write > to the test file or not: > """ > static void test_kmemleak_file(bool write) > { > char tmp_file_path[256] = "/tmp/igt_kmemleak_test_XXXXXX"; > int fd = mkstemp(tmp_file_path); > igt_assert(fd >= 0); > > if (write) > write(fd, kmemleak_file_example, strlen(kmemleak_file_example)); > > /* Set the path for the unit testing file */ > igt_assert(igt_kmemleak_init(tmp_file_path)); > > /* Test igt_kmemleak_found_leaks() returns true if written */ > igt_assert(igt_kmemleak_found_leaks() == write); > > close(fd); > } > ... > igt_simple_main > { > test_kmemleak_file(false); > test_kmemleak_file(true); > test_igt_kmemleak_cp_leaks_file(); > } > """ > > > +} > > + > > +igt_simple_main > > +{ > > + test_empty_file(); > > + test_non_empty_file(); > > + test_igt_kmemleak_cp_leaks_file(); > > It might be better to separate these out into their own subtests: > """ > igt_subtest_f("empty-file") > test_empty_file(); > igt_subtest_f("non-empty-file") > test_non_empty_file(); > igt_subtest_f("cp-leaks-file") > test_igt_kmemleak_cp_leaks_file(); > """ > > Though looking at it a bit closer, I see that test_igt_kmemleak_cp_leaks_file depends > on the completion of test_non_empty_file to run properly? Maybe we should separate > the test out into chunks? > > Let me try prototyping it here: > """ > --- Original file up to end of crc32_file function is unchanged --- > > static void init_kmemleak_file(bool write) > { > --- Same as test_kmemleak_file from earlier suggestion --- > } > > static void test_kmemleak_cp_leaks_file(void) > { > char dst_file_path[256] = "/tmp/igt_kmemleak_dstfile_XXXXXX"; > int fd; > unsigned long crc; > > init_kmemleak_file(true); > > fd = mkstemp(dst_file_path); > --- Rest of test is unchanged after this point --- > } > > igt_main > { > igt_subtest_f("empty") > init_kmemleak_file(false); > igt_subtest_f("non-empty") > init_kmemleak_file(true); > igt_subtest_f("cp-leaks-file") > test_kmemleak_cp_leaks_file(); > } > """ > > -Jonathan Cavitt > > > +} > > diff --git a/lib/tests/meson.build b/lib/tests/meson.build > > index df8092638..bcbea9ba4 100644 > > --- a/lib/tests/meson.build > > +++ b/lib/tests/meson.build > > @@ -15,6 +15,7 @@ lib_tests = [ > > 'igt_ktap_parser', > > 'igt_list_only', > > 'igt_invalid_subtest_name', > > + 'igt_kmemleak', > > 'igt_nesting', > > 'igt_no_exit', > > 'igt_runnercomms_packets', > > -- > > 2.34.1 > > > > From patchwork at emeril.freedesktop.org Wed Jan 8 06:21:14 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 08 Jan 2025 06:21:14 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_Add_dsc+bigjoiner_subtes?= =?utf-8?q?t_=28rev4=29?= In-Reply-To: <20250107185709.116756-1-swati2.sharma@intel.com> References: <20250107185709.116756-1-swati2.sharma@intel.com> Message-ID: <173631727462.1201715.568813258798768097@b555e5b46a47> == Series Details == Series: Add dsc+bigjoiner subtest (rev4) URL : https://patchwork.freedesktop.org/series/128266/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15919_full -> IGTPW_12396_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12396_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12396_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_12396/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_12396_full: ### IGT changes ### #### Possible regressions #### * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-glk4/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html * {igt at kms_dsc@dsc-basic-ultra-joiner} (NEW): - shard-tglu-1: NOTRUN -> [SKIP][2] +2 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_dsc@dsc-basic-ultra-joiner.html * {igt at kms_dsc@dsc-fractional-bpp-big-joiner} (NEW): - shard-tglu: NOTRUN -> [SKIP][3] +10 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-3/igt at kms_dsc@dsc-fractional-bpp-big-joiner.html * {igt at kms_dsc@dsc-fractional-bpp-with-bpc-ultra-joiner} (NEW): - {shard-dg2-9}: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-9/igt at kms_dsc@dsc-fractional-bpp-with-bpc-ultra-joiner.html * {igt at kms_dsc@dsc-with-bpc-ultra-joiner} (NEW): - shard-dg1: NOTRUN -> [SKIP][5] +12 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at kms_dsc@dsc-with-bpc-ultra-joiner.html * {igt at kms_dsc@dsc-with-formats-ultra-joiner} (NEW): - shard-mtlp: NOTRUN -> [SKIP][6] +15 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-4/igt at kms_dsc@dsc-with-formats-ultra-joiner.html * {igt at kms_dsc@dsc-with-output-formats-big-joiner} (NEW): - shard-dg2: NOTRUN -> [SKIP][7] +12 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-8/igt at kms_dsc@dsc-with-output-formats-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][8] +13 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-4/igt at kms_dsc@dsc-with-output-formats-big-joiner.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-tglu: [PASS][9] -> [ABORT][10] +2 other tests abort [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-tglu-4/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-2/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html New tests --------- New tests have been introduced between CI_DRM_15919_full and IGTPW_12396_full: ### New IGT tests (16) ### * igt at kms_dsc@dsc-basic-big-joiner: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt at kms_dsc@dsc-basic-ultra-joiner: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt at kms_dsc@dsc-fractional-bpp-big-joiner: - Statuses : 4 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-fractional-bpp-ultra-joiner: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_dsc@dsc-fractional-bpp-with-bpc-big-joiner: - Statuses : 4 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-fractional-bpp-with-bpc-ultra-joiner: - Statuses : 5 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-with-bpc-big-joiner: - Statuses : 7 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-with-bpc-formats-big-joiner: - Statuses : 5 skip(s) - Exec time: [0.00, 0.01] s * igt at kms_dsc@dsc-with-bpc-formats-ultra-joiner: - Statuses : 7 skip(s) - Exec time: [0.0, 0.01] s * igt at kms_dsc@dsc-with-bpc-ultra-joiner: - Statuses : 7 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-with-formats-big-joiner: - Statuses : 6 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-with-formats-ultra-joiner: - Statuses : 4 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-with-output-formats-big-joiner: - Statuses : 6 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-with-output-formats-ultra-joiner: - Statuses : 3 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-with-output-formats-with-bpc-big-joiner: - Statuses : 4 skip(s) - Exec time: [0.00] s * igt at kms_dsc@dsc-with-output-formats-with-bpc-ultra-joiner: - Statuses : 6 skip(s) - Exec time: [0.0, 0.00] s Known issues ------------ Here are the changes found in IGTPW_12396_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#8411]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-4/igt at api_intel_bb@object-reloc-keep-cache.html - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8411]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at api_intel_bb@object-reloc-keep-cache.html - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8411]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-11/igt at api_intel_bb@object-reloc-keep-cache.html * igt at debugfs_test@basic-hwmon: - shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#9318]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at debugfs_test@basic-hwmon.html * igt at device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#11078]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-6/igt at device_reset@cold-reset-bound.html * igt at device_reset@unbind-cold-reset-rebind: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#11078]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8414]) +16 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-11/igt at drm_fdinfo@most-busy-check-all at bcs0.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_12396/shard-dg1-12/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-5/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#13008]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-1/igt at gem_ccs@large-ctrl-surf-copy.html - shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#13008]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][22] -> [INCOMPLETE][23] ([i915#12392] / [i915#7297]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-10/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-6/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html * igt at gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#7697]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-1/igt at gem_close_race@multigpu-basic-process.html - shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#7697]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-17/igt at gem_close_race@multigpu-basic-process.html * igt at gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#7697]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-10/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-set-pat: - shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#8562]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][29] ([i915#1099]) +4 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-snb7/igt at gem_ctx_persistence@engines-queued.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#8555]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-4/igt at gem_ctx_persistence@heartbeat-hostile.html - shard-dg1: NOTRUN -> [SKIP][31] ([i915#8555]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at gem_ctx_persistence@heartbeat-hostile.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#8555]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-2/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-10/igt at gem_ctx_sseu@invalid-args.html * igt at gem_eio@kms: - shard-tglu-1: NOTRUN -> [DMESG-WARN][34] ([i915#13363]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at gem_eio@kms.html - shard-dg1: NOTRUN -> [FAIL][35] ([i915#5784]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-17/igt at gem_eio@kms.html * igt at gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4771]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-11/igt at gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4771]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4036]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-8/igt at gem_exec_balancer@invalid-bonds.html - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4036]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu-1: NOTRUN -> [SKIP][40] ([i915#4525]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_balancer@parallel-out-fence: - shard-tglu: NOTRUN -> [SKIP][41] ([i915#4525]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-4/igt at gem_exec_balancer@parallel-out-fence.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_12396/shard-rkl-5/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4812]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-5/igt at gem_exec_fence@submit3.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_12396/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][45] ([i915#3539]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-2/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-6/igt at gem_exec_flush@basic-wb-pro-default.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-17/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +13 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-17/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +10 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-11/igt at gem_exec_reloc@basic-write-gtt.html * igt at gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +14 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-1/igt at gem_exec_reloc@basic-write-read.html * igt at gem_exec_reloc@basic-write-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-5/igt at gem_exec_reloc@basic-write-wc-noreloc.html * igt at gem_exec_schedule@preempt-queue-chain: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4812]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-17/igt at gem_exec_schedule@preempt-queue-chain.html * igt at gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#7276]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-2/igt at gem_exec_schedule@semaphore-power.html - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-5/igt at gem_exec_schedule@semaphore-power.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_12396/shard-rkl-7/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4860]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-11/igt at gem_fenced_exec_thrash@2-spare-fences.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613] / [i915#7582]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-2/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-random: - shard-glk: NOTRUN -> [SKIP][58] ([i915#4613]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-glk2/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-1/igt at gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at gem_lmem_swapping@parallel-random-verify-ccs.html - shard-dg1: NOTRUN -> [SKIP][61] ([i915#12193]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-17/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@parallel-random-verify-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4565]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-17/igt at gem_lmem_swapping@parallel-random-verify-ccs at lmem0.html * igt at gem_lmem_swapping@random: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-1/igt at gem_lmem_swapping@random.html * igt at gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-8/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#8289]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-5/igt at gem_media_fill@media-fill.html * igt at gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4077]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-1/igt at gem_mmap_gtt@big-bo-tiledy.html * igt at gem_mmap_gtt@close-race: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4077]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-14/igt at gem_mmap_gtt@close-race.html * igt at gem_mmap_gtt@fault-concurrent-y: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4077]) +6 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-10/igt at gem_mmap_gtt@fault-concurrent-y.html * igt at gem_mmap_wc@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at gem_mmap_wc@fault-concurrent.html * igt at gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-11/igt at gem_mmap_wc@invalid-flags.html * igt at gem_mmap_wc@write-prefaulted: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4083]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-3/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) +5 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-3/igt at gem_partial_pwrite_pread@write.html * igt at gem_partial_pwrite_pread@write-uncached: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3282]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-4/igt at gem_partial_pwrite_pread@write-uncached.html * igt at gem_pwrite@basic-self: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#3282]) +6 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at gem_pwrite@basic-self.html * igt at gem_pxp@create-regular-context-2: - shard-rkl: NOTRUN -> [TIMEOUT][75] ([i915#12917] / [i915#12964]) +1 other test timeout [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-7/igt at gem_pxp@create-regular-context-2.html * igt at gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4270]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-10/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#13398]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#13398]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-10/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4270]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at gem_pxp@reject-modify-context-protection-off-3.html * igt at gem_render_copy@yf-tiled-ccs-to-linear: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#8428]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-4/igt at gem_render_copy@yf-tiled-ccs-to-linear.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#5190] / [i915#8428]) +10 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-1/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4079]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-7/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][83] ([i915#13263] / [i915#13449]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-snb7/igt at gem_tiled_swapping@non-threaded.html - shard-glk: NOTRUN -> [ABORT][84] ([i915#13263] / [i915#13449]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-glk2/igt at gem_tiled_swapping@non-threaded.html * igt at gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4879]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at gem_unfence_active_buffers.html - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4879]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-6/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-3/igt at gem_userptr_blits@coherency-unsync.html - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/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_12396/shard-tglu-8/igt at gem_userptr_blits@dmabuf-sync.html - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-6/igt at gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#3323]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-3/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3282] / [i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-11/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-2/igt at gem_userptr_blits@readonly-pwrite-unsync.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_12396/shard-dg1-13/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#3297]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-5/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#3297]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_workarounds@suspend-resume-fd: - shard-glk: NOTRUN -> [INCOMPLETE][97] ([i915#13356]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-glk2/igt at gem_workarounds@suspend-resume-fd.html * igt at gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-3/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#2856]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-4/igt at gen9_exec_parse@batch-without-end.html * igt at gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#2527]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at gen9_exec_parse@bb-large.html * igt at gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#2527]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-6/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#2856]) +6 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-3/igt at gen9_exec_parse@shadow-peek.html * igt at i915_module_load@load: - shard-dg1: ([PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124]) -> ([PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [DMESG-WARN][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145]) ([i915#4423]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-14/igt at i915_module_load@load.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-13/igt at i915_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt at i915_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-14/igt at i915_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-17/igt at i915_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-17/igt at i915_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt at i915_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-12/igt at i915_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-14/igt at i915_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-13/igt at i915_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-12/igt at i915_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-13/igt at i915_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-17/igt at i915_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt at i915_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt at i915_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-12/igt at i915_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-12/igt at i915_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-14/igt at i915_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-13/igt at i915_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-17/igt at i915_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-12/igt at i915_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at i915_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-17/igt at i915_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at i915_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-17/igt at i915_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-14/igt at i915_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-14/igt at i915_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at i915_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-17/igt at i915_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at i915_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-17/igt at i915_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at i915_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at i915_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at i915_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-14/igt at i915_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at i915_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-14/igt at i915_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at i915_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at i915_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at i915_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at i915_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at i915_module_load@load.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu: NOTRUN -> [ABORT][146] ([i915#12817] / [i915#9820]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-6/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#6412]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at i915_module_load@resize-bar.html * igt at i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#8399]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-2/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_freq_api@freq-reset-multiple: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#8399]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at i915_pm_freq_api@freq-reset-multiple.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#11681] / [i915#6621]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at i915_pm_rps@basic-api.html * igt at i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#7984]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-5/igt at i915_power@sanity.html * igt at i915_selftest@mock at memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][152] ([i915#9311]) +1 other test dmesg-warn [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-7/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: [PASS][153] -> [INCOMPLETE][154] ([i915#4817]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-glk1/igt at i915_suspend@fence-restore-tiled2untiled.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-glk7/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][155] ([i915#4817]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-glk5/igt at i915_suspend@forcewake.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#5190]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-3/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#4212]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-4/igt at kms_addfb_basic@framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#12454] / [i915#12712]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-7/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#12454] / [i915#12712]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-6/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-hdmi-a-1-y-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#8709]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/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][161] ([i915#8709]) +15 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/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-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#8709]) +11 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-4/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@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#12967] / [i915#6228]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-11/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#1769] / [i915#3555]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][165] ([i915#1769] / [i915#3555]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-6/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg1: [PASS][166] -> [FAIL][167] ([i915#5956]) +2 other tests fail [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt at kms_atomic_transition@plane-toggle-modeset-transition.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at kms_atomic_transition@plane-toggle-modeset-transition.html * igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][168] ([i915#5956]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-hdmi-a-3.html * igt at kms_big_fb@4-tiled-16bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#5286]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-7/igt at kms_big_fb@4-tiled-16bpp-rotate-90.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#4538] / [i915#5286]) +5 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#5286]) +6 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-6/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-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#5286]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/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-rkl: NOTRUN -> [SKIP][173] ([i915#3638]) +4 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-3/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#4538] / [i915#5190]) +12 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-5/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#3638]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at kms_big_fb@y-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#6187]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-5/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][177] +9 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-8/igt at kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#4538]) +4 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-17/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#6095]) +54 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-7/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#6095]) +24 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-8/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc at pipe-c-edp-1.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs at pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#10307] / [i915#6095]) +169 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-10/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs at pipe-b-dp-4.html * igt at kms_ccs@bad-pixel-format-y-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-8/igt at kms_ccs@bad-pixel-format-y-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#12805]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-6/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][184] ([i915#12796]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-glk4/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#6095]) +20 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-10/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-b-dp-4.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: NOTRUN -> [DMESG-FAIL][186] ([i915#12964]) +3 other tests dmesg-fail [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-2/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: [PASS][187] -> [INCOMPLETE][188] ([i915#12796]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-glk9/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-glk6/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.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][189] ([i915#6095]) +39 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/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@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#12313]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][191] ([i915#12313]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-10/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-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#6095]) +74 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs at pipe-a-hdmi-a-2.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#12313]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-4/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#6095]) +175 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-3.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#12313]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#3742]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-1/igt at kms_cdclk@mode-transition.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#7828]) +6 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-6/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@dp-mode-timings: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#7828]) +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-4/igt at kms_chamelium_edid@dp-mode-timings.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#7828]) +7 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-1/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#7828]) +10 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-1/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_frames@vga-frame-dump: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#7828]) +9 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at kms_chamelium_frames@vga-frame-dump.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#7828]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#9979]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-10/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3299]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-1/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3116]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-4/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#7118] / [i915#9424]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-7/igt at kms_content_protection@legacy.html - shard-dg1: NOTRUN -> [SKIP][208] ([i915#7116] / [i915#9424]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#9424]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-1/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#6944] / [i915#9424]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-9/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#6944]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-1/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#7118] / [i915#9424]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-7/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3555]) +5 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-5/igt at kms_cursor_crc@cursor-offscreen-32x10.html * igt at kms_cursor_crc@cursor-onscreen-256x256: - shard-rkl: [PASS][214] -> [DMESG-WARN][215] ([i915#12964]) +40 other tests dmesg-warn [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-5/igt at kms_cursor_crc@cursor-onscreen-256x256.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-3/igt at kms_cursor_crc@cursor-onscreen-256x256.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#13049]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-3/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#13049]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-3/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [PASS][218] -> [DMESG-WARN][219] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-3/igt at kms_cursor_crc@cursor-onscreen-64x21.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-4/igt at kms_cursor_crc@cursor-onscreen-64x21.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#3555]) +6 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-4/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#3555]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#13049]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8814]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-7/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-sliding-128x128 at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][224] ([i915#12964]) +25 other tests dmesg-warn [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/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-rkl: NOTRUN -> [SKIP][225] ([i915#13049]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-4/igt at kms_cursor_crc@cursor-sliding-512x170.html - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#13049]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#13049]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-9/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#9809]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-1/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][229] +21 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-7/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#13046] / [i915#5354]) +7 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-1/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#4103]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#4103] / [i915#4213]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#4103]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#8588]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-6/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#8812]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-3/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#3840]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-2/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#3840] / [i915#9688]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-3/igt at kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][238] ([i915#3840]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-7/igt at kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][239] ([i915#3840]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-17/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#3840]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-14/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#3840]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-2/igt at kms_dsc@dsc-with-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#3840] / [i915#9053]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-7/igt at kms_dsc@dsc-with-output-formats-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][243] ([i915#3840] / [i915#9053]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-10/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#1839]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-2/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#9337]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-1/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#658]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-5/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#658]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-14/igt at kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][248] ([i915#658]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-7/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-absolute-wf_vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#3637]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-2/igt at kms_flip@2x-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#9934]) +8 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-5/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-dg1: NOTRUN -> [SKIP][251] ([i915#9934]) +4 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#3637]) +5 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-6/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#9934]) +5 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-11/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#3637]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#8381]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-5/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@wf_vblank-ts-check: - shard-rkl: [PASS][256] -> [FAIL][257] ([i915#11989]) +2 other tests fail [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-3/igt at kms_flip@wf_vblank-ts-check.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-5/igt at kms_flip@wf_vblank-ts-check.html - shard-snb: [PASS][258] -> [FAIL][259] ([i915#11989]) +1 other test fail [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-snb4/igt at kms_flip@wf_vblank-ts-check.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-snb7/igt at kms_flip@wf_vblank-ts-check.html * igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1: - shard-tglu: [PASS][260] -> [FAIL][261] ([i915#11989]) +2 other tests fail [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-tglu-8/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-9/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-3/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-tglu: NOTRUN -> [SKIP][263] ([i915#2587] / [i915#2672]) +5 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-6/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-32bpp-yftileccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#2672] / [i915#3555]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#2587] / [i915#2672]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/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-yftileccs-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#3555] / [i915#8813]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html - shard-dg2: NOTRUN -> [SKIP][267] ([i915#2672] / [i915#3555]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#2672] / [i915#8813]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-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-dg2: NOTRUN -> [SKIP][269] ([i915#2672]) +3 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-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-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-7/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html - shard-tglu: NOTRUN -> [SKIP][271] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-10/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][272] ([i915#2672] / [i915#3555]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/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][273] ([i915#2587] / [i915#2672]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/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-4tiledg2rcccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#2672] / [i915#3555]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#2672]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling: - shard-dg1: [PASS][276] -> [DMESG-WARN][277] ([i915#4423]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-14/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [FAIL][278] ([i915#6880]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][279] +39 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-14/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#8708]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-snb: [PASS][281] -> [SKIP][282] +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#8708]) +12 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#5439]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-6/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][285] ([i915#5439]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-8/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#3458]) +17 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#3458]) +19 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-11/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#8708]) +21 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#1825]) +8 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][290] +56 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#3023]) +22 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-4/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][292] ([i915#1825]) +32 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][293] +437 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-snb5/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-pwrite: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#5354]) +31 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-11/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt at kms_getfb@getfb-handle-not-fb: - shard-dg1: NOTRUN -> [DMESG-WARN][295] ([i915#4423]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at kms_getfb@getfb-handle-not-fb.html * igt at kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#3555] / [i915#8228]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-5/igt at kms_hdr@bpc-switch-dpms.html - shard-dg1: NOTRUN -> [SKIP][297] ([i915#3555] / [i915#8228]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-14/igt at kms_hdr@bpc-switch-dpms.html - shard-tglu: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8228]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-9/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@static-swap: - shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8228]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_hdr@static-swap.html - shard-dg2: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#8228]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-11/igt at kms_hdr@static-swap.html * igt at kms_histogram@algo-basic: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#13389]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-4/igt at kms_histogram@algo-basic.html - shard-dg2: NOTRUN -> [SKIP][302] ([i915#13389]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-3/igt at kms_histogram@algo-basic.html - shard-rkl: NOTRUN -> [SKIP][303] ([i915#13389]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-1/igt at kms_histogram@algo-basic.html - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#13389]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#13389]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-17/igt at kms_histogram@algo-color.html * igt at kms_histogram@global-basic: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#13388]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-6/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][307] ([i915#12388]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#12394]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-4/igt at kms_joiner@basic-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][309] ([i915#12394]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-4/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#12339]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-1/igt at kms_joiner@basic-ultra-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#12339]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#1839]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#6301]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-1/igt at kms_panel_fitting@atomic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#6301]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][315] +6 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-3/igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][316] ([i915#13026]) +1 other test incomplete [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-glk8/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#3555]) +4 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-1/igt at kms_plane_multiple@tiling-yf.html - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#3555]) +2 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][319] ([i915#3555] / [i915#8806]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-3/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#12247]) +8 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][321] ([i915#12247]) +13 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation at pipe-b: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#12247]) +4 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-1/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation at pipe-b.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-a: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#12247]) +4 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-1/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][324] ([i915#12247]) +8 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/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-dg1: NOTRUN -> [SKIP][325] ([i915#12247] / [i915#6953]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#12247] / [i915#6953] / [i915#9423]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-6/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][327] ([i915#12247] / [i915#6953]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-3/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][328] ([i915#12247]) +7 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-6/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#12247] / [i915#3555]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-dg2: NOTRUN -> [SKIP][330] ([i915#12247] / [i915#3555] / [i915#9423]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-10/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#5354]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-6/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#12343]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-5/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][333] ([i915#5354]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-14/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#9685]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-3/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#3361]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-1/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#3828]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-6/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][337] ([i915#9519]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-10/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][338] -> [SKIP][339] ([i915#9519]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-1/igt at kms_pm_rpm@dpms-non-lpsp.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-4/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][340] -> [SKIP][341] ([i915#9519]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-7/igt at kms_pm_rpm@modeset-lpsp-stress.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-3/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][342] ([i915#9519]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#6524] / [i915#6805]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-1/igt at kms_prime@basic-crc-vgem.html * igt at kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][344] ([i915#6524]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][345] ([i915#9808]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-2/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#11520]) +7 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-2/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][347] ([i915#12316]) +3 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-3/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area at pipe-b-edp-1.html * igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][348] ([i915#11520]) +6 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-glk6/igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#11520]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-snb: NOTRUN -> [SKIP][350] ([i915#11520]) +11 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-snb4/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][351] ([i915#11520]) +5 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-8/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][352] ([i915#11520]) +7 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-17/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#11520]) +10 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-2/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][354] ([i915#9683]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-14/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#9683]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-8/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#1072] / [i915#9732]) +23 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-7/igt at kms_psr@fbc-pr-cursor-plane-onoff.html - shard-dg1: NOTRUN -> [SKIP][357] ([i915#1072] / [i915#9732]) +15 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][358] ([i915#9732]) +19 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-8/igt at kms_psr@fbc-psr-no-drrs.html * igt at kms_psr@fbc-psr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#1072] / [i915#9732]) +23 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-7/igt at kms_psr@fbc-psr-primary-page-flip.html * igt at kms_psr@pr-basic: - shard-mtlp: NOTRUN -> [SKIP][360] ([i915#9688]) +4 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-4/igt at kms_psr@pr-basic.html * igt at kms_psr@psr-sprite-plane-move: - shard-tglu-1: NOTRUN -> [SKIP][361] ([i915#9732]) +9 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_psr@psr-sprite-plane-move.html * igt at kms_psr@psr2-primary-mmap-gtt at edp-1: - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#4077] / [i915#9688]) +1 other test skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-3/igt at kms_psr@psr2-primary-mmap-gtt at edp-1.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][363] +229 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-glk9/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][364] ([i915#9685]) +2 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-13/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#9685]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][366] ([i915#5289]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#12755] / [i915#5190]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][368] ([i915#5289]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-dg1: NOTRUN -> [SKIP][369] ([i915#5289]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-mtlp: NOTRUN -> [SKIP][370] ([i915#12755]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][371] ([i915#12755]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-10/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][372] ([i915#5465]) +2 other tests fail [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-snb4/igt at kms_setmode@basic.html * igt at kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][373] ([IGT#160] / [i915#6493]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][374] ([i915#10959]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-glk5/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#8623]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@query-forked-hang: - shard-rkl: NOTRUN -> [DMESG-WARN][376] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-5/igt at kms_vblank@query-forked-hang.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][377] ([i915#12276]) +1 other test incomplete [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-glk7/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@max-min: - shard-rkl: NOTRUN -> [SKIP][378] ([i915#9906]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-2/igt at kms_vrr@max-min.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][379] ([i915#9906]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-4/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#2437]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-7/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][381] ([i915#2437] / [i915#9412]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-7/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][382] ([i915#2437]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-2/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][383] ([i915#2437]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-12/igt at kms_writeback@writeback-invalid-parameters.html - shard-tglu: NOTRUN -> [SKIP][384] ([i915#2437]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-7/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][385] ([i915#2437] / [i915#9412]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-8/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][386] ([i915#7387]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-2/igt at perf@global-sseu-config.html * igt at perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][387] ([i915#7387]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-7/igt at perf@global-sseu-config-invalid.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: NOTRUN -> [FAIL][388] ([i915#4349]) +4 other tests fail [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-10/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@most-busy-idle-check-all at vcs0: - shard-mtlp: [PASS][389] -> [FAIL][390] ([i915#11943]) +5 other tests fail [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-1/igt at perf_pmu@most-busy-idle-check-all at vcs0.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-1/igt at perf_pmu@most-busy-idle-check-all at vcs0.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][391] ([i915#8516]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-5/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][392] ([i915#8516]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-9/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at perf_pmu@render-node-busy-idle at vcs1: - shard-mtlp: [PASS][393] -> [FAIL][394] ([i915#4349]) +1 other test fail [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-4/igt at perf_pmu@render-node-busy-idle at vcs1.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-1/igt at perf_pmu@render-node-busy-idle at vcs1.html * igt at prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][395] ([i915#3708] / [i915#4077]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-2/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][396] ([i915#3708]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-17/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][397] ([i915#3708]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-3/igt at prime_vgem@fence-read-hang.html * igt at prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][398] +66 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-6/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][399] ([i915#12910]) +9 other tests fail [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-1/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-dg1: NOTRUN -> [SKIP][400] ([i915#9917]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at sriov_basic@enable-vfs-autoprobe-on.html #### Possible fixes #### * igt at gem_create@create-clear at smem0: - shard-dg2: [INCOMPLETE][401] -> [PASS][402] +1 other test pass [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-3/igt at gem_create@create-clear at smem0.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-8/igt at gem_create@create-clear at smem0.html * igt at gem_exec_balancer@full-late-pulse: - shard-mtlp: [FAIL][403] ([i915#13364]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-4/igt at gem_exec_balancer@full-late-pulse.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-4/igt at gem_exec_balancer@full-late-pulse.html * igt at gem_exec_schedule@preemptive-hang: - shard-rkl: [DMESG-WARN][405] ([i915#12964]) -> [PASS][406] +35 other tests pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-5/igt at gem_exec_schedule@preemptive-hang.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-7/igt at gem_exec_schedule@preemptive-hang.html * igt at gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][407] -> [PASS][408] [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-tglu-9/igt at gem_tiled_swapping@non-threaded.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-9/igt at gem_tiled_swapping@non-threaded.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [DMESG-FAIL][409] ([i915#13393]) -> [PASS][410] +1 other test pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-7/igt at i915_selftest@live at workarounds.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-3/igt at i915_selftest@live at workarounds.html * igt at i915_suspend@debugfs-reader: - shard-rkl: [DMESG-FAIL][411] ([i915#12964]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-1/igt at i915_suspend@debugfs-reader.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-4/igt at i915_suspend@debugfs-reader.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1: - shard-glk: [FAIL][413] ([i915#10991] / [i915#13335]) -> [PASS][414] +1 other test pass [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-glk3/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-glk4/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][415] ([i915#5138]) -> [PASS][416] [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: [FAIL][417] ([i915#11989]) -> [PASS][418] +1 other test pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-snb5/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-snb4/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1: - shard-tglu: [FAIL][419] ([i915#11989]) -> [PASS][420] +3 other tests pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-tglu-10/igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-10/igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate at a-edp1: - shard-mtlp: [FAIL][421] ([i915#11989]) -> [PASS][422] +2 other tests pass [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-6/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-mtlp-2/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats at pipe-a: - shard-rkl: [DMESG-WARN][423] ([i915#12964] / [i915#1982]) -> [PASS][424] +1 other test pass [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-2/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats at pipe-a.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-5/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats at pipe-a.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][425] ([i915#4281]) -> [PASS][426] [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-tglu-8/igt at kms_pm_dc@dc9-dpms.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-tglu-6/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][427] ([i915#9519]) -> [PASS][428] [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-1/igt at kms_pm_rpm@modeset-lpsp.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-rkl-7/igt at kms_pm_rpm@modeset-lpsp.html * igt at perf_pmu@busy-idle at ccs0: - shard-dg2: [FAIL][429] ([i915#4349]) -> [PASS][430] +1 other test pass [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-4/igt at perf_pmu@busy-idle at ccs0.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg2-4/igt at perf_pmu@busy-idle at ccs0.html * igt at perf_pmu@busy-idle at vecs0: - shard-dg1: [FAIL][431] ([i915#4349]) -> [PASS][432] +1 other test pass [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-17/igt at perf_pmu@busy-idle at vecs0.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-18/igt at perf_pmu@busy-idle at vecs0.html * igt at syncobj_timeline@invalid-query-zero-handles: - shard-dg1: [DMESG-WARN][433] ([i915#4423]) -> [PASS][434] +3 other tests pass [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt at syncobj_timeline@invalid-query-zero-handles.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/shard-dg1-14/igt at syncobj_timeline@invalid-query-zero-handles.html #### Wa == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12396/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From pravalika.gurram at intel.com Wed Jan 8 06:28:26 2025 From: pravalika.gurram at intel.com (Pravalika Gurram) Date: Wed, 8 Jan 2025 11:58:26 +0530 Subject: [PATCH v2] tests/intel: Enhance the wedged_mode sysfs support Message-ID: <20250108062826.908027-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 Reviewed-by: Jonathan Cavitt --- tests/intel/xe_debugfs.c | 2 +- tests/intel/xe_wedged.c | 12 ++++++++++++ 2 files changed, 13 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..844ab2809 100644 --- a/tests/intel/xe_wedged.c +++ b/tests/intel/xe_wedged.c @@ -203,11 +203,16 @@ simple_hang(int fd, struct drm_xe_sync *sync) * SUBTEST: wedged-mode-toggle * Description: Test wedged.mode=1 after testing wedged.mode=2 */ +/** + * SUBTEST: basic-wedged-read + * Description: Read wedged debugfs + */ 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); @@ -279,6 +284,13 @@ igt_main igt_assert_eq(simple_ioctl(fd), 0); } + igt_subtest_f("basic-wedged-read") { + igt_require(igt_debugfs_exists(fd, "wedged_mode", O_RDONLY)); + + igt_debugfs_read(fd, "wedged_mode", str); + igt_assert_f(str[0] != '\0', "Failed to read wedged_mode from debugfs!\n"); + } + igt_fixture { if (igt_debugfs_exists(fd, "fail_gt_reset/probability", O_RDWR)) { igt_debugfs_write(fd, "fail_gt_reset/probability", "0"); -- 2.34.1 From pranay.samala at intel.com Wed Jan 8 06:59:58 2025 From: pranay.samala at intel.com (Samala, Pranay) Date: Wed, 8 Jan 2025 06:59:58 +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: > -----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 LGTM. Reviewed-by: 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 Wed Jan 8 07:23:45 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 08 Jan 2025 07:23:45 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_tests/intel=3A_Enhance_th?= =?utf-8?q?e_wedged=5Fmode_sysfs_support_=28rev2=29?= In-Reply-To: <20250108062826.908027-1-pravalika.gurram@intel.com> References: <20250108062826.908027-1-pravalika.gurram@intel.com> Message-ID: <173632102590.1218235.6949724799269368774@b555e5b46a47> == Series Details == Series: tests/intel: Enhance the wedged_mode sysfs support (rev2) URL : https://patchwork.freedesktop.org/series/143094/ State : failure == Summary == CI Bug Log - changes from IGT_8179 -> IGTPW_12401 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12401 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12401, 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_12401/index.html Participating hosts (38 -> 8) ------------------------------ ERROR: It appears as if the changes made in IGTPW_12401 prevented too many machines from booting. Missing (30): fi-rkl-11600 fi-snb-2520m fi-pnv-d510 bat-adls-6 fi-blb-e6850 bat-mtlp-9 bat-dg2-8 fi-ilk-650 fi-hsw-4770 fi-ivb-3770 bat-rpls-4 bat-jsl-3 bat-rplp-1 fi-elk-e7500 bat-dg2-11 bat-arls-5 bat-twl-2 fi-kbl-7567u bat-dg1-7 bat-arlh-3 bat-adlp-9 fi-cfl-8700k bat-arls-6 bat-mtlp-8 bat-jsl-1 fi-tgl-1115g4 fi-cfl-guc fi-cfl-8109u bat-dg2-14 bat-dg2-13 Changes ------- No changes found Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8179 -> IGTPW_12401 * Linux: CI_DRM_15915 -> CI_DRM_15920 CI-20190529: 20190529 CI_DRM_15915: 89042e0bb417f4d67280e1d7fa9bbcca51734571 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15920: 8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12401: 34cf1ce01867ff540a0c4fee759df7e3ca3ed92d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12401/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Wed Jan 8 07:26:45 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 08 Jan 2025 07:26:45 -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_=28rev2=29?= In-Reply-To: <20250108062826.908027-1-pravalika.gurram@intel.com> References: <20250108062826.908027-1-pravalika.gurram@intel.com> Message-ID: <173632120503.1218407.9435522277537132037@b555e5b46a47> == Series Details == Series: tests/intel: Enhance the wedged_mode sysfs support (rev2) URL : https://patchwork.freedesktop.org/series/143094/ State : success == Summary == CI Bug Log - changes from XEIGT_8179_BAT -> XEIGTPW_12401_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12401_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_intel_bb@render at render-ymajor-256: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3958]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/bat-adlp-vf/igt at xe_intel_bb@render at render-ymajor-256.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/bat-adlp-vf/igt at xe_intel_bb@render at render-ymajor-256.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/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_8179 -> IGTPW_12401 * Linux: xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571 -> xe-2452-8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 IGTPW_12401: 34cf1ce01867ff540a0c4fee759df7e3ca3ed92d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571: 89042e0bb417f4d67280e1d7fa9bbcca51734571 xe-2452-8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5: 8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Wed Jan 8 11:10:52 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 08 Jan 2025 11:10:52 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fexec=5F?= =?utf-8?q?capture=3A_Add_xe=5Fexec=5Fcapture_test_=28rev9=29?= In-Reply-To: <20250108000410.469269-1-zhanjun.dong@intel.com> References: <20250108000410.469269-1-zhanjun.dong@intel.com> Message-ID: <173633465288.1270401.11003731517256838878@b555e5b46a47> == Series Details == Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev9) URL : https://patchwork.freedesktop.org/series/140007/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15920_full -> IGTPW_12400_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12400_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12400_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_12400/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_12400_full: ### IGT changes ### #### Possible regressions #### * igt at gem_tiled_swapping@non-threaded: - shard-rkl: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-5/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@nohangcheck: - shard-dg1: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg1-17/igt at gem_userptr_blits@nohangcheck.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-17/igt at gem_userptr_blits@nohangcheck.html Known issues ------------ Here are the changes found in IGTPW_12400_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#6230]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-4/igt at api_intel_bb@crc32.html * igt at api_intel_bb@object-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at api_intel_bb@object-reloc-keep-cache.html * igt at dmabuf@all-tests at dma_fence_chain: - shard-rkl: [PASS][6] -> [DMESG-WARN][7] ([i915#12964]) +31 other tests dmesg-warn [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-rkl-1/igt at dmabuf@all-tests at dma_fence_chain.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-4/igt at dmabuf@all-tests at dma_fence_chain.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +23 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-5/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at drm_fdinfo@virtual-busy: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-13/igt at drm_fdinfo@virtual-busy.html * igt at gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-10/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-copy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-6/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg2: [PASS][13] -> [INCOMPLETE][14] ([i915#7297]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-8/igt at gem_ccs@suspend-resume.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-1/igt at gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-17/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][16] -> [INCOMPLETE][17] ([i915#12392] / [i915#7297]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-8/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-1/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html * igt at gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][18] ([i915#13427]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-5/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#8562]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-7/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_freq@sysfs: - shard-dg2: [PASS][20] -> [FAIL][21] ([i915#9561]) +1 other test fail [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-4/igt at gem_ctx_freq@sysfs.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-11/igt at gem_ctx_freq@sysfs.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][22] ([i915#12353]) +1 other test incomplete [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk6/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][23] ([i915#1099]) +6 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-snb5/igt at gem_ctx_persistence@engines-mixed-process.html * igt at gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-3/igt at gem_ctx_persistence@hang.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-3/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_eio@hibernate: - shard-dg1: [PASS][26] -> [ABORT][27] ([i915#7975] / [i915#8213]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg1-18/igt at gem_eio@hibernate.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-14/igt at gem_eio@hibernate.html * igt at gem_eio@kms: - shard-dg1: NOTRUN -> [FAIL][28] ([i915#5784]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-17/igt at gem_eio@kms.html * igt at gem_exec_balancer@bonded-false-hang: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#4812]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-13/igt at gem_exec_balancer@bonded-false-hang.html * igt at gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#4771]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-6/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4036]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-3/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel: - shard-tglu: NOTRUN -> [SKIP][32] ([i915#4525]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-2/igt at gem_exec_balancer@parallel.html * igt at gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-5/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_endless@dispatch: - shard-dg2: [PASS][34] -> [TIMEOUT][35] ([i915#3778] / [i915#7016]) +1 other test timeout [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-2/igt at gem_exec_endless@dispatch.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-6/igt at gem_exec_endless@dispatch.html * igt at gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-2/igt at gem_exec_fence@submit3.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-6/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-10/igt at gem_exec_flush@basic-wb-pro-default.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-13/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_reloc@basic-gtt-read-active: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +6 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-10/igt at gem_exec_reloc@basic-gtt-read-active.html * igt at gem_exec_reloc@basic-gtt-wc-active: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#3281]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-6/igt at gem_exec_reloc@basic-gtt-wc-active.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +5 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#3281]) +8 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-3/igt at gem_exec_reloc@basic-wc-read-noreloc.html * igt at gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-5/igt at gem_exec_schedule@preempt-queue-contexts.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4860]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-7/igt at gem_fence_thrash@bo-write-verify-y.html * igt at gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4860]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at gem_fenced_exec_thrash@no-spare-fences.html * igt at gem_lmem_swapping@heavy-verify-multi: - shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at gem_lmem_swapping@heavy-verify-multi.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-10/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-dg1: NOTRUN -> [SKIP][49] ([i915#12193]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4565]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at gem_lmem_swapping@heavy-verify-multi-ccs at lmem0.html * igt at gem_lmem_swapping@massive-random: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-2/igt at gem_lmem_swapping@massive-random.html * igt at gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][52] ([i915#4613]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk8/igt at gem_lmem_swapping@random.html - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-2/igt at gem_lmem_swapping@random.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: [PASS][54] -> [TIMEOUT][55] ([i915#5493]) +1 other test timeout [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-4/igt at gem_lmem_swapping@smem-oom at lmem0.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-6/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#8289]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-2/igt at gem_media_fill@media-fill.html * igt at gem_mmap_gtt@basic-read: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4077]) +6 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-8/igt at gem_mmap_gtt@basic-read.html * igt at gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4077]) +10 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-14/igt at gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt at gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4083]) +5 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-11/igt at gem_mmap_wc@close.html * igt at gem_mmap_wc@invalid-flags: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-13/igt at gem_mmap_wc@invalid-flags.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#3282]) +6 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-12/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-4/igt at gem_partial_pwrite_pread@writes-after-reads-display.html * igt at gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-3/igt at gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt at gem_pxp@create-valid-protected-context: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-8/igt at gem_pxp@create-valid-protected-context.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#13398]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4270]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at gem_pxp@reject-modify-context-protection-off-3.html * igt at gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [TIMEOUT][67] ([i915#12917] / [i915#12964]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-3/igt at gem_pxp@reject-modify-context-protection-on.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#5190] / [i915#8428]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-5/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4079]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-13/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_set_tiling_vs_gtt: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4079]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-7/igt at gem_set_tiling_vs_gtt.html * igt at gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4885]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-2/igt at gem_softpin@evict-snoop.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][72] ([i915#13263] / [i915#13449]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-snb5/igt at gem_tiled_swapping@non-threaded.html - shard-glk: NOTRUN -> [ABORT][73] ([i915#13263] / [i915#13449]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk1/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3297]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-1/igt at gem_userptr_blits@coherency-sync.html * igt at gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-8/igt at gem_userptr_blits@coherency-unsync.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-3/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#3323]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-6/igt at gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][78] ([i915#3323]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk4/igt at gem_userptr_blits@dmabuf-sync.html - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-8/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3282] / [i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-11/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#4880]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-2/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4958]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-17/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#3297]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_workarounds@suspend-resume: - shard-glk: [PASS][84] -> [INCOMPLETE][85] ([i915#13356]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-glk9/igt at gem_workarounds@suspend-resume.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk7/igt at gem_workarounds@suspend-resume.html * igt at gem_workarounds@suspend-resume-context: - shard-glk: NOTRUN -> [INCOMPLETE][86] ([i915#13356]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk1/igt at gem_workarounds@suspend-resume-context.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][87] +10 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-1/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@allowed-all: - 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_12400/shard-tglu-1/igt at gen9_exec_parse@allowed-all.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#2527]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-14/igt at gen9_exec_parse@allowed-all.html * igt at gen9_exec_parse@allowed-single: - shard-glk: NOTRUN -> [ABORT][90] ([i915#5566]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk8/igt at gen9_exec_parse@allowed-single.html * igt at gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#2527]) +6 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-1/igt at gen9_exec_parse@bb-oversize.html - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-8/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#2856]) +5 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-8/igt at gen9_exec_parse@shadow-peek.html * igt at gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#2527] / [i915#2856]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-10/igt at gen9_exec_parse@unaligned-jump.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][95] -> [ABORT][96] ([i915#9820]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-rkl-1/igt at i915_module_load@reload-with-fault-injection.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-1/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#8399]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-3/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: [PASS][98] -> [INCOMPLETE][99] ([i915#12797]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-glk6/igt at i915_pm_rpm@system-suspend-execbuf.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk5/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#11681] / [i915#6621]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-13/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#11681]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-5/igt at i915_pm_rps@thresholds.html * igt at i915_pm_sseu@full-enable: - shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#4387]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at i915_pm_sseu@full-enable.html * igt at i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#6245]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-3/igt at i915_query@hwconfig_table.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#5723]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-4/igt at i915_query@test-query-geometry-subslices.html - shard-dg1: NOTRUN -> [SKIP][105] ([i915#5723]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-17/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [PASS][106] -> [DMESG-FAIL][107] ([i915#13393]) +1 other test dmesg-fail [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-mtlp-8/igt at i915_selftest@live at workarounds.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-7/igt at i915_selftest@live at workarounds.html * igt at i915_selftest@mock at memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][108] ([i915#9311]) +1 other test dmesg-warn [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-8/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][109] ([i915#4817]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk7/igt at i915_suspend@forcewake.html * igt at i915_suspend@sysfs-reader: - shard-glk: [PASS][110] -> [INCOMPLETE][111] ([i915#4817]) +1 other test incomplete [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-glk8/igt at i915_suspend@sysfs-reader.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk2/igt at i915_suspend@sysfs-reader.html * igt at intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#7707]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-5/igt at intel_hwmon@hwmon-read.html - shard-tglu: NOTRUN -> [SKIP][113] ([i915#7707]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-6/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4212]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-7/igt at kms_addfb_basic@framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#12454] / [i915#12712]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-7/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-d-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#8709]) +7 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-6/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-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#8709]) +11 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-6/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-3-4-mc-ccs.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#12967] / [i915#6228]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-8/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-2/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][120] ([i915#1769]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-snb2/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#5286]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-3/igt at kms_big_fb@4-tiled-16bpp-rotate-180.html - shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#5286]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_big_fb@4-tiled-16bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5286]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/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-tglu: NOTRUN -> [SKIP][124] ([i915#5286]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-4/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@linear-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3638]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-5/igt at kms_big_fb@linear-8bpp-rotate-90.html * igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-0: - shard-dg1: [PASS][126] -> [DMESG-WARN][127] ([i915#4423]) +1 other test dmesg-warn [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg1-18/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-17/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@x-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][128] +4 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-3/igt at kms_big_fb@x-tiled-16bpp-rotate-270.html * igt at kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#3638]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-12/igt at kms_big_fb@y-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#5190]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-7/igt at kms_big_fb@y-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6187]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-5/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5190]) +7 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-2/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-13/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#10307] / [i915#10434] / [i915#6095]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-8/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6095]) +19 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-3/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc at pipe-c-edp-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#12313]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-2/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][137] ([i915#12313]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-6/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#6095]) +58 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/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-y-tiled-ccs at pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#6095]) +165 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-8/igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#6095]) +74 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-9/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-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#12313]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-13/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#12805]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-1/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][143] ([i915#12796]) +1 other test incomplete [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk3/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 at pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#6095]) +13 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-11/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs at pipe-a-hdmi-a-2.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: [PASS][145] -> [INCOMPLETE][146] ([i915#12796]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-glk4/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk3/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#6095]) +34 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#12313]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-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-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#6095]) +148 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-13/igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_cdclk@mode-transition: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#11616] / [i915#7213]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-3/igt at kms_cdclk@mode-transition.html - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3742]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-1/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#7213]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-3/igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3.html * igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#4087]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-4/igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1.html * igt at kms_chamelium_audio@dp-audio-edid: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#7828]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-4/igt at kms_chamelium_audio@dp-audio-edid.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#7828]) +7 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-12/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_edid@dp-mode-timings: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#7828]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-8/igt at kms_chamelium_edid@dp-mode-timings.html * igt at kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#7828]) +5 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-2/igt at kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#7828]) +9 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-7/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@vga-hpd-fast: - shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#7828]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_chamelium_hpd@vga-hpd-fast.html * igt at kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#9979]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-10/igt at kms_color@deep-color.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3299]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-5/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-11/igt at kms_content_protection@lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][163] ([i915#9424]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-13/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#6944] / [i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#9424]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-5/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][166] ([i915#7173]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-10/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#7118] / [i915#9424]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-3/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-256x256: - shard-rkl: [PASS][168] -> [DMESG-WARN][169] ([i915#12917] / [i915#12964]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-rkl-4/igt at kms_cursor_crc@cursor-offscreen-256x256.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-2/igt at kms_cursor_crc@cursor-offscreen-256x256.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#13049]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-2/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#13049]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#13049]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-5/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#3555]) +7 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-2/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#8814]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-1/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-sliding-32x10: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#3555]) +3 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-17/igt at kms_cursor_crc@cursor-sliding-32x10.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#13049]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-4/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-snb: [PASS][177] -> [SKIP][178] [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-snb7/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-snb7/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#9809]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-7/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#4103]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-4/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#4103]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-4/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#13046] / [i915#5354]) +4 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-11/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#9067]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-10/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][184] ([i915#9067]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-1/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-dg1: NOTRUN -> [SKIP][185] ([i915#4103] / [i915#4213]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-12/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][186] ([i915#9833]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][187] ([i915#12170]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][188] ([i915#11968]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#9723]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#8588]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-9/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#12402]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_dsc@dsc-with-formats: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at kms_dsc@dsc-with-formats.html * igt at kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-2/igt at kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-4/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@psr: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#3469]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#3469]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#1839]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-8/igt at kms_feature_discovery@display-2x.html - shard-rkl: NOTRUN -> [SKIP][198] ([i915#1839]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-2/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#1839]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#658]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][201] ([i915#658]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-10/igt at kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][202] ([i915#658]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-1/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-absolute-wf_vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#3637]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-8/igt at kms_flip@2x-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#3637]) +7 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-3/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#9934]) +4 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-17/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#3637]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#9934]) +6 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-7/igt at kms_flip@2x-flip-vs-panning-interruptible.html - shard-rkl: NOTRUN -> [SKIP][208] ([i915#9934]) +6 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-4/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank at a-hdmi-a1: - shard-tglu: [PASS][209] -> [FAIL][210] ([i915#11989]) +1 other test fail [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-tglu-9/igt at kms_flip@flip-vs-absolute-wf_vblank at a-hdmi-a1.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-9/igt at kms_flip@flip-vs-absolute-wf_vblank at a-hdmi-a1.html * igt at kms_flip@flip-vs-absolute-wf_vblank at b-vga1: - shard-snb: [PASS][211] -> [FAIL][212] ([i915#11989]) +2 other tests fail [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-snb7/igt at kms_flip@flip-vs-absolute-wf_vblank at b-vga1.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-snb2/igt at kms_flip@flip-vs-absolute-wf_vblank at b-vga1.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#8381]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-13/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-rkl: [PASS][214] -> [DMESG-FAIL][215] ([i915#12964]) +1 other test dmesg-fail [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-rkl-1/igt at kms_flip@flip-vs-suspend.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-3/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-3/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-tglu: NOTRUN -> [SKIP][217] ([i915#2587] / [i915#2672]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-3/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-4tile-to-64bpp-4tile-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#2672]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-7/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-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#2672]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-5/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555] / [i915#8813]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#2672] / [i915#8813]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#2672] / [i915#3555] / [i915#5190]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-2/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#2672] / [i915#3555]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/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][224] ([i915#2587] / [i915#2672]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/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][225] ([i915#2672] / [i915#3555]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-17/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][226] ([i915#2587] / [i915#2672]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-17/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: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#2672] / [i915#3555]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555]) +2 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#8708]) +11 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#8708]) +22 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][231] +43 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#8708]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#3023]) +14 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-1/igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][234] +15 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#5354]) +29 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#1825]) +30 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#9766]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-2/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][238] ([i915#9766]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-8/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#3458]) +17 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-dg1: NOTRUN -> [SKIP][240] +39 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-12/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#1825]) +5 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#3458]) +10 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-12/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][243] +73 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-2/igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt at kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8228]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-3/igt at kms_hdr@bpc-switch-dpms.html - shard-tglu: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#8228]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-4/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@brightness-with-hdr: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#12713]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8228]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-3/igt at kms_hdr@static-swap.html * igt at kms_histogram@algo-basic: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#13389]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-5/igt at kms_histogram@algo-basic.html - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#13389]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_histogram@algo-basic.html * igt at kms_histogram@global-basic: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#13388]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-17/igt at kms_histogram@global-basic.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#10656]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#12339]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-3/igt at kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][253] ([i915#12339]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-13/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#1839]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1: - shard-glk: [PASS][255] -> [INCOMPLETE][256] ([i915#12756]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-glk2/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk4/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#3555]) +4 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-5/igt at kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8806]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-7/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#13046] / [i915#5354] / [i915#9423]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-11/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-b: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#12247]) +9 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-2/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-b.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#12247] / [i915#6953]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-5/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#12247] / [i915#9423]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-2/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#12247]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-2/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 at pipe-b: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#12247]) +8 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-5/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-dg1: NOTRUN -> [SKIP][265] ([i915#12247] / [i915#3555]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][266] ([i915#12247] / [i915#3555]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-5/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][267] ([i915#12247]) +3 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-a.html * igt at kms_pm_backlight@bad-brightness: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#9812]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-7/igt at kms_pm_backlight@bad-brightness.html - shard-rkl: NOTRUN -> [SKIP][269] ([i915#5354]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-4/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#9812]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#9685]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-17/igt at kms_pm_dc@dc5-psr.html - shard-tglu: NOTRUN -> [SKIP][272] ([i915#9685]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-4/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#9685]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-1/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#9519]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-2/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#9519]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-3/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#6524]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-2/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#6524]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-12/igt at kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][278] ([i915#6524]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-2/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][279] ([i915#11520]) +12 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-snb5/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#11520]) +6 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-3/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][281] ([i915#11520]) +5 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk4/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#11520]) +8 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-2/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-dg1: NOTRUN -> [SKIP][283] ([i915#11520]) +7 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-13/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#9808]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-4/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#12316]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-4/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area at pipe-b-edp-1.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][286] ([i915#11520]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-4/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#11520]) +4 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#9683]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-4/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#9732]) +24 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-2/igt at kms_psr@fbc-psr-no-drrs.html * igt at kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][290] ([i915#1072] / [i915#9732]) +19 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-17/igt at kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt at kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#1072] / [i915#9732]) +16 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-3/igt at kms_psr@fbc-psr2-sprite-render.html - shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#9732]) +11 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_psr@fbc-psr2-sprite-render.html * igt at kms_psr@pr-basic: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#9688]) +4 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-2/igt at kms_psr@pr-basic.html * igt at kms_psr@psr-primary-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#1072] / [i915#9732]) +19 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-11/igt at kms_psr@psr-primary-mmap-cpu.html * igt at kms_psr@psr-sprite-blt: - shard-snb: NOTRUN -> [SKIP][295] +488 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-snb2/igt at kms_psr@psr-sprite-blt.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][296] +241 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk8/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#5289]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#12755] / [i915#5190]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-6/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#5289]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#5289]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-10/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#12755]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-2/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][302] ([i915#13179]) +1 other test abort [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][303] ([i915#5465]) +2 other tests fail [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-snb5/igt at kms_setmode@basic.html * igt at kms_setmode@invalid-clone-exclusive-crtc: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#3555]) +3 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-6/igt at kms_setmode@invalid-clone-exclusive-crtc.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#3555]) +2 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#8623]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-17/igt at kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][307] ([i915#8623]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-4/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#8623]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-9/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@ts-continuation-idle-hang: - shard-rkl: NOTRUN -> [DMESG-WARN][309] ([i915#12964]) +9 other tests dmesg-warn [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-2/igt at kms_vblank@ts-continuation-idle-hang.html * igt at kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][310] ([i915#9906]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-4/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#11920]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-4/igt at kms_vrr@lobf.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#9906]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-5/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#9906]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-2/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#2437] / [i915#9412]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-8/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#2437] / [i915#9412]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-5/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#2437]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at kms_writeback@writeback-invalid-parameters.html - shard-dg1: NOTRUN -> [SKIP][317] ([i915#2437]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-12/igt at kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][318] ([i915#2437]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk9/igt at kms_writeback@writeback-invalid-parameters.html - shard-mtlp: NOTRUN -> [SKIP][319] ([i915#2437]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-5/igt at kms_writeback@writeback-invalid-parameters.html - shard-dg2: NOTRUN -> [SKIP][320] ([i915#2437]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-11/igt at kms_writeback@writeback-invalid-parameters.html - shard-rkl: NOTRUN -> [SKIP][321] ([i915#2437]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-3/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#2437] / [i915#9412]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-2/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#7387]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-7/igt at perf@global-sseu-config.html - shard-dg2: NOTRUN -> [SKIP][324] ([i915#7387]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-11/igt at perf@global-sseu-config.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#2434]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-2/igt at perf@mi-rpc.html * igt at perf_pmu@busy-idle-check-all: - shard-dg1: [PASS][326] -> [FAIL][327] ([i915#4349]) +3 other tests fail [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg1-12/igt at perf_pmu@busy-idle-check-all.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at perf_pmu@busy-idle-check-all.html * igt at perf_pmu@busy-idle-check-all at vcs0: - shard-mtlp: [PASS][328] -> [FAIL][329] ([i915#4349]) +1 other test fail [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-mtlp-8/igt at perf_pmu@busy-idle-check-all at vcs0.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-6/igt at perf_pmu@busy-idle-check-all at vcs0.html * igt at perf_pmu@busy-idle-check-all at vecs1: - shard-dg2: [PASS][330] -> [FAIL][331] ([i915#4349]) +1 other test fail [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-4/igt at perf_pmu@busy-idle-check-all at vecs1.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-5/igt at perf_pmu@busy-idle-check-all at vecs1.html * igt at perf_pmu@frequency at gt0: - shard-dg1: NOTRUN -> [FAIL][332] ([i915#12549] / [i915#6806]) +1 other test fail [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-14/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@most-busy-idle-check-all at bcs0: - shard-dg1: [PASS][333] -> [FAIL][334] ([i915#11943]) +2 other tests fail [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg1-18/igt at perf_pmu@most-busy-idle-check-all at bcs0.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at perf_pmu@most-busy-idle-check-all at bcs0.html * igt at perf_pmu@most-busy-idle-check-all at vcs0: - shard-mtlp: [PASS][335] -> [FAIL][336] ([i915#11943]) +6 other tests fail [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-mtlp-6/igt at perf_pmu@most-busy-idle-check-all at vcs0.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-6/igt at perf_pmu@most-busy-idle-check-all at vcs0.html * igt at perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#8516]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-10/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#8516]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-1/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_busy@hang: - shard-rkl: NOTRUN -> [DMESG-WARN][339] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-5/igt at prime_busy@hang.html * igt at prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][340] ([i915#3708]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at prime_vgem@basic-fence-flip.html * igt at prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#3708] / [i915#4077]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-5/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#3708]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-8/igt at prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][343] ([i915#3708]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-2/igt at prime_vgem@fence-read-hang.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#9917]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-5/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-dg1: NOTRUN -> [SKIP][345] ([i915#9917]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at sriov_basic@enable-vfs-autoprobe-on.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1: - shard-tglu: NOTRUN -> [FAIL][346] ([i915#12910]) +19 other tests fail [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-7/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1.html #### Possible fixes #### * igt at gem_create@create-clear at smem0: - shard-dg2: [INCOMPLETE][347] -> [PASS][348] +1 other test pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-5/igt at gem_create@create-clear at smem0.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-4/igt at gem_create@create-clear at smem0.html * igt at gem_ctx_shared@q-smoketest: - shard-tglu: [INCOMPLETE][349] -> [PASS][350] +1 other test pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-tglu-6/igt at gem_ctx_shared@q-smoketest.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-9/igt at gem_ctx_shared@q-smoketest.html * igt at i915_pm_freq_api@freq-suspend at gt0: - shard-dg2: [INCOMPLETE][351] ([i915#12455]) -> [PASS][352] +1 other test pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-7/igt at i915_pm_freq_api@freq-suspend at gt0.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-2/igt at i915_pm_freq_api@freq-suspend at gt0.html * igt at i915_suspend@debugfs-reader: - shard-rkl: [DMESG-FAIL][353] ([i915#12964]) -> [PASS][354] +1 other test pass [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-rkl-3/igt at i915_suspend@debugfs-reader.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-2/igt at i915_suspend@debugfs-reader.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-dg2: [FAIL][355] ([i915#13320]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-11/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-11/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-hdmi-a-2: - shard-dg2: [FAIL][357] -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-11/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-hdmi-a-2.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-11/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-hdmi-a-2.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-glk: [FAIL][359] ([i915#11989]) -> [PASS][360] +1 other test pass [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-glk1/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk8/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-rkl: [FAIL][361] ([i915#11989]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-rkl-5/igt at kms_flip@flip-vs-blocking-wf-vblank.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-4/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1: - shard-mtlp: [FAIL][363] ([i915#11989]) -> [PASS][364] +1 other test pass [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-mtlp-2/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-5/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html * igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [FAIL][365] ([i915#6880]) -> [PASS][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-1/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt at kms_plane_scaling@intel-max-src-size: - shard-tglu: [FAIL][367] ([i915#8292]) -> [PASS][368] +1 other test pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-tglu-3/igt at kms_plane_scaling@intel-max-src-size.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-2/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][369] ([i915#9519]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-8/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-11/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_rotation_crc@primary-rotation-90: - shard-rkl: [DMESG-WARN][371] ([i915#12964]) -> [PASS][372] +28 other tests pass [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-rkl-3/igt at kms_rotation_crc@primary-rotation-90.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-3/igt at kms_rotation_crc@primary-rotation-90.html * igt at perf_pmu@busy-accuracy-98 at rcs0: - shard-tglu: [FAIL][373] ([i915#4349]) -> [PASS][374] +2 other tests pass [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-tglu-10/igt at perf_pmu@busy-accuracy-98 at rcs0.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-3/igt at perf_pmu@busy-accuracy-98 at rcs0.html * igt at perf_pmu@busy-idle-check-all at vecs0: - shard-mtlp: [FAIL][375] ([i915#4349]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-mtlp-8/igt at perf_pmu@busy-idle-check-all at vecs0.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-6/igt at perf_pmu@busy-idle-check-all at vecs0.html * igt at perf_pmu@busy-idle at ccs0: - shard-dg2: [FAIL][377] ([i915#4349]) -> [PASS][378] +1 other test pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-5/igt at perf_pmu@busy-idle at ccs0.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-1/igt at perf_pmu@busy-idle at ccs0.html #### Warnings #### * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [TIMEOUT][379] ([i915#5493]) -> [DMESG-WARN][380] ([i915#5493]) +1 other test dmesg-warn [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg1-12/igt at gem_lmem_swapping@smem-oom at lmem0.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-17/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_pxp@create-valid-protected-context: - shard-rkl: [TIMEOUT][381] ([i915#12964]) -> [SKIP][382] ([i915#4270]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-rkl-1/igt at gem_pxp@create-valid-protected-context.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-3/igt at gem_pxp@create-valid-protected-context.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: [SKIP][383] ([i915#4270]) -> [TIMEOUT][384] ([i915#12917] / [i915#12964]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-rkl-5/igt at gem_pxp@verify-pxp-stale-ctx-execution.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-4/igt at gem_pxp@verify-pxp-stale-ctx-execution.html * igt at i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][385] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][386] ([i915#10131] / [i915#10887]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-mtlp-8/igt at i915_module_load@reload-with-fault-injection.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-mtlp-2/igt at i915_module_load@reload-with-fault-injection.html - shard-dg2: [DMESG-WARN][387] ([i915#13447]) -> [ABORT][388] ([i915#9820]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-11/igt at i915_module_load@reload-with-fault-injection.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-3/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rc6_residency@rc6-idle: - shard-tglu: [FAIL][389] -> [WARN][390] ([i915#2681]) +1 other test warn [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-tglu-6/igt at i915_pm_rc6_residency@rc6-idle.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-tglu-10/igt at i915_pm_rc6_residency@rc6-idle.html * igt at kms_content_protection@mei-interface: - shard-dg1: [SKIP][391] ([i915#9433]) -> [SKIP][392] ([i915#9424]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg1-13/igt at kms_content_protection@mei-interface.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-18/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-dg2: [SKIP][393] ([i915#7118]) -> [TIMEOUT][394] ([i915#7173]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-3/igt at kms_content_protection@srm.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-10/igt at kms_content_protection@srm.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg1: [SKIP][395] ([i915#3840]) -> [SKIP][396] ([i915#3840] / [i915#4423]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg1-18/igt at kms_dsc@dsc-fractional-bpp.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-17/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_flip@flip-vs-suspend: - shard-glk: [INCOMPLETE][397] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][398] ([i915#12745] / [i915#1982] / [i915#4839]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-glk3/igt at kms_flip@flip-vs-suspend.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk2/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-glk: [INCOMPLETE][399] ([i915#12745]) -> [INCOMPLETE][400] ([i915#12745] / [i915#1982]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-glk3/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk2/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-glk: [ABORT][401] -> [SKIP][402] +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-glk7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-glk6/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][403] ([i915#3458]) -> [SKIP][404] ([i915#10433] / [i915#3458]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: [SKIP][405] ([i915#12713]) -> [SKIP][406] ([i915#13331]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg2-6/igt at kms_hdr@brightness-with-hdr.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg2-10/igt at kms_hdr@brightness-with-hdr.html - shard-dg1: [SKIP][407] ([i915#12713]) -> [SKIP][408] ([i915#1187] / [i915#12713]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-dg1-12/igt at kms_hdr@brightness-with-hdr.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-dg1-13/igt at kms_hdr@brightness-with-hdr.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][409] ([i915#3361]) -> [SKIP][410] ([i915#4281]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-rkl-6/igt at kms_pm_dc@dc9-dpms.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-5/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][411] ([i915#12916]) -> [SKIP][412] ([i915#9519]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15920/shard-rkl-7/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/shard-rkl-2/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943 [i915#11968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11968 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12170]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12170 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [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#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455 [i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549 [i915#12591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12591 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13263]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13263 [i915#13320]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13320 [i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13388 [i915#13389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13389 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427 [i915#13447]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13447 [i915#13449]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13449 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12400/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From mohammed.thasleem at intel.com Wed Jan 8 12:46:37 2025 From: mohammed.thasleem at intel.com (Mohammed Thasleem) Date: Wed, 8 Jan 2025 18:16:37 +0530 Subject: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api call Message-ID: <20250108124637.291978-1-mohammed.thasleem@intel.com> Check ghe algo for the function called by ghe igt while compiling. v2: Update version check and remove warning message. (Lucas) Print messae at api else check. (Kamil) Signed-off-by: Mohammed Thasleem --- meson.build | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/meson.build b/meson.build index 8b2a2a64a..6370887d6 100644 --- a/meson.build +++ b/meson.build @@ -199,7 +199,17 @@ endif libghe = dependency('libghe', required : false) if libghe.found() + if libghe.version().version_compare('>=0.2.0') + + cc = meson.get_compiler('c') + + if cc.has_function('histogram_compute_generate_data_bin', dependencies: libghe) + message('libghe provides the required function') config.set('HAVE_LIBGHE', 1) + else + message ('libghe API changed') + endif + endif endif build_info += 'Build Chamelium test: @0@'.format(chamelium.found()) -- 2.43.0 From mohammed.thasleem at intel.com Wed Jan 8 12:50:01 2025 From: mohammed.thasleem at intel.com (Thasleem, Mohammed) Date: Wed, 8 Jan 2025 12:50:01 +0000 Subject: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api call In-Reply-To: References: <20250106095154.243459-1-mohammed.thasleem@intel.com> Message-ID: @Garg, Nemesa, Thanks for the update. Please updated the version, will add checks for the same. -----Original Message----- From: De Marchi, Lucas Sent: Tuesday, January 7, 2025 7:59 PM To: Garg, Nemesa Cc: Thasleem, Mohammed ; Murthy, Arun R ; igt-dev at lists.freedesktop.org; Kamil Konieczny ; Kurmi, Suresh Kumar ; Lattannavar, Sameer Subject: Re: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api call On Tue, Jan 07, 2025 at 09:15:32AM +0000, Garg, Nemesa wrote: >I have updated the ghe lib and changes are merged. https://github.com/intel/ghe/commit/8fc0c8f825244af5d6f552df7c1df1589e20604d so the new version will break the API. What's the next version that will have this changed? If we are keeping the new name, we should check for the new version. Lucas De Marchi > >> -----Original Message----- >> From: Thasleem, Mohammed >> Sent: Tuesday, January 7, 2025 1:24 PM >> To: De Marchi, Lucas ; Garg, Nemesa >> ; Murthy, Arun R >> Cc: igt-dev at lists.freedesktop.org; Kamil Konieczny >> ; Kurmi, Suresh Kumar >> ; Lattannavar, Sameer >> >> Subject: RE: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api >> call >> >> @De Marchi, Lucas, As per the internal discussion we have updated the >> api name in IGT and accordingly we have merged. >> >> @Garg, Nemesa , What is ETA to do the same changes in GHE lib? >> >> FYI @Murthy, Arun R >> >> >> -----Original Message----- >> From: De Marchi, Lucas >> Sent: Monday, January 6, 2025 10:43 PM >> To: Thasleem, Mohammed >> Cc: igt-dev at lists.freedesktop.org; Murthy, Arun R >> ; Garg, Nemesa ; >> Kamil Konieczny >> Subject: Re: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api >> call >> >> On Mon, Jan 06, 2025 at 03:21:54PM +0530, Mohammed Thasleem wrote: >> >Check ghe algo for the function called by ghe igt while compiling. >> > >> >Signed-off-by: Mohammed Thasleem >> >--- >> > meson.build | 13 ++++++++++++- >> > 1 file changed, 12 insertions(+), 1 deletion(-) >> > >> >diff --git a/meson.build b/meson.build index 8b2a2a64a..96f010fe2 >> >100644 >> >--- a/meson.build >> >+++ b/meson.build >> >@@ -198,8 +198,19 @@ else >> > endif >> > >> > libghe = dependency('libghe', required : false) >> >+ >> > if libghe.found() >> >- config.set('HAVE_LIBGHE', 1) >> >+ >> >+ cc = meson.get_compiler('c') >> >+ >> >+ if cc.has_function('histogram_compute_generate_data_bin', >> dependencies: libghe) >> >+ message('libghe provides the required function') >> >+ config.set('HAVE_LIBGHE', 1) >> >+ else >> >+ warning('libghe does not provide the required function') >> >+ endif >> >> what's the a proper libghe that provide >> histogram_compute_generate_data_bin() >> and how were things tested? If there is libghe available, build is just broken. >> >> Ideally we'd have something like is done for other libraries. >> >> libghe = dependency('libghe', version : '>=0.2', required : false) >> >> However, looking at https://github.com/intel/ghe, there's no such >> function, which leads me to think this call is actually a typo to >> something else like set_histogram_data_bin()? >> >> Cc: Arun R Murthy >> Cc: Nemesa Garg >> >> >+else >> >+ warning('libghe not found') >> >> no warning should be added here, like it's not added for the multiple >> other libraries. >> >> Lucas De Marchi >> >> > endif >> > >> > build_info += 'Build Chamelium test: @0@'.format(chamelium.found()) >> >-- >> >2.25.1 >> > From lucas.demarchi at intel.com Wed Jan 8 14:17:11 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Wed, 8 Jan 2025 08:17:11 -0600 Subject: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api call In-Reply-To: <20250108124637.291978-1-mohammed.thasleem@intel.com> References: <20250108124637.291978-1-mohammed.thasleem@intel.com> Message-ID: On Wed, Jan 08, 2025 at 06:16:37PM +0530, Mohammed Thasleem wrote: >Check ghe algo for the function called by ghe igt while compiling. > >v2: Update version check and remove warning message. (Lucas) > Print messae at api else check. (Kamil) > >Signed-off-by: Mohammed Thasleem >--- > meson.build | 10 ++++++++++ > 1 file changed, 10 insertions(+) > >diff --git a/meson.build b/meson.build >index 8b2a2a64a..6370887d6 100644 >--- a/meson.build >+++ b/meson.build >@@ -199,7 +199,17 @@ endif > > libghe = dependency('libghe', required : false) this should be: libghe = dependency('libghe', version : '>=0.2.0', required : false) to be inline with how other dependencies are declared. No need to special case this one. The output will be like this: ... Run-time dependency xmlrpc found: NO (tried pkgconfig and cmake) Run-time dependency xmlrpc_util found: NO (tried pkgconfig and cmake) Run-time dependency xmlrpc_client found: NO (tried pkgconfig and cmake) Program xmlrpc-c-config found: NO Run-time dependency gsl found: NO (tried pkgconfig and cmake) Run-time dependency alsa found: NO (tried pkgconfig and cmake) Run-time dependency libcurl found: YES 8.5.0 Run-time dependency libghe found: NO (tried pkgconfig and cmake) Run-time dependency threads found: YES ... This is the diff on top I used: diff --git a/meson.build b/meson.build index 6370887d6..0130f7205 100644 --- a/meson.build +++ b/meson.build @@ -197,19 +197,9 @@ else chamelium = disabler() endif -libghe = dependency('libghe', required : false) +libghe = dependency('libghe', version : '>=0.2.0', required : false) if libghe.found() - if libghe.version().version_compare('>=0.2.0') - - cc = meson.get_compiler('c') - - if cc.has_function('histogram_compute_generate_data_bin', dependencies: libghe) - message('libghe provides the required function') - config.set('HAVE_LIBGHE', 1) - else - message ('libghe API changed') - endif - endif + config.set('HAVE_LIBGHE', 1) endif build_info += 'Build Chamelium test: @0@'.format(chamelium.found()) Lucas De Marchi From jeevan.b at intel.com Wed Jan 8 14:56:57 2025 From: jeevan.b at intel.com (B, Jeevan) Date: Wed, 8 Jan 2025 14:56:57 +0000 Subject: [PATCH i-g-t 3/4] tests/kms_feature_discovery: Add tests for UHBR/non-UHBR over SST/MST In-Reply-To: <20241231141518.765212-4-kunal1.joshi@intel.com> References: <20241231141518.765212-1-kunal1.joshi@intel.com> <20241231141518.765212-4-kunal1.joshi@intel.com> Message-ID: > -----Original Message----- > From: igt-dev On Behalf Of Kunal > Joshi > Sent: Tuesday, December 31, 2024 7:45 PM > To: igt-dev at lists.freedesktop.org > Cc: Joshi, Kunal1 > Subject: [PATCH i-g-t 3/4] tests/kms_feature_discovery: Add tests for > UHBR/non-UHBR over SST/MST > > This patch introduces subtests in kms_feature_discovery.c to validate both > UHBR and non-UHBR link rates over SST and MST configurations. It adds four > new subtests (uhbr-sst, uhbr-mst, non-uhbr-sst, non-uhbr-mst) that check if > the link rates match the expected UHBR or non-UHBR capability and whether > the outputs are MST or SST. The new test logic integrates with recently > introduced helpers (kms_joiner_helper and kms_mst_helper) for display setup > and pipe assignment. The meson build script is also updated to compile these > helper sources for kms_feature_discovery. > > Signed-off-by: Kunal Joshi > --- > tests/kms_feature_discovery.c | 171 > ++++++++++++++++++++++++++++++++++ > tests/meson.build | 4 + > 2 files changed, 175 insertions(+) > > diff --git a/tests/kms_feature_discovery.c b/tests/kms_feature_discovery.c > index 5bca9ad76..150c10fba 100644 > --- a/tests/kms_feature_discovery.c > +++ b/tests/kms_feature_discovery.c > @@ -42,6 +42,8 @@ > #include "igt_psr.h" > #include "igt_sysfs.h" > #include "igt_types.h" > +#include "intel/kms_joiner_helper.h" > +#include "intel/kms_mst_helper.h" > > /** > * SUBTEST: display > @@ -71,10 +73,158 @@ > * Test category: functionality test > * > * arg[1].values: 1, 2, 3, 4 > + * > + * SUBTEST: uhbr-sst > + * Description: Test we can drive UHBR rates over SST. > + * Functionality: feature_discovery, uhbr, sst > + * Test category: functionality test > + * > + * SUBTEST: uhbr-mst > + * Description: Test we can drive UHBR rates over MST. > + * Functionality: feature_discovery, uhbr, mst > + * Test category: functionality test > + * > + * SUBTEST: non-uhbr-sst > + * Description: Test we can drive non-UHBR rates over SST. > + * Functionality: feature_discovery, sst > + * Test category: functionality test > + * > + * SUBTEST: non-uhbr-mst > + * Description: Test we can drive non-UHBR rates over MST. > + * Functionality: feature_discovery, mst > + * Test category: functionality test > */ > > static igt_display_t display; > > +static void setup_planes_fbs(int fd, igt_output_t *outputs[], > + int output_count, drmModeModeInfo * mode[], > + struct igt_fb fbs[], struct igt_plane *primarys[]) { > + int i; > + > + for (i = 0; i < output_count; i++) { > + mode[i] = igt_output_get_mode(outputs[i]); > + igt_info("Mode %dx%d@%d on output %s\n", > + mode[i]->hdisplay, mode[i]->vdisplay, > + mode[i]->vrefresh, > + igt_output_name(outputs[i])); > + primarys[i] = igt_output_get_plane_type(outputs[i], > + DRM_PLANE_TYPE_PRIMARY); > + igt_create_color_fb(fd, mode[i]->hdisplay, > + mode[i]->vdisplay, > + DRM_FORMAT_XRGB8888, > + DRM_FORMAT_MOD_LINEAR, > + 0.0, 1.0, 0.0, > + &fbs[i]); > + igt_plane_set_fb(primarys[i], &fbs[i]); > + } > +} > + > +static bool fit_modes_in_bw(void) > +{ > + bool found; > + int ret; > + > + ret = igt_display_try_commit_atomic(&display, > + DRM_MODE_ATOMIC_TEST_ONLY | > + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > + if (ret != 0) { > + found = > igt_override_all_active_output_modes_to_fit_bw(&display); > + igt_require_f(found, > + "No valid mode combo found for > modeset\n"); > + } > + return true; > +} > + > +static void do_modeset(int fd, igt_output_t *output, > + bool mst, bool uhbr) > +{ > + int output_count = 0, n_pipes = 0, i; > + uint32_t master_pipes_mask = 0, valid_pipes_mask = 0, > used_pipes_mask = 0; > + igt_output_t *outputs[IGT_MAX_PIPES]; > + drmModeModeInfo * modes[IGT_MAX_PIPES]; > + struct igt_fb fbs[IGT_MAX_PIPES]; > + struct igt_plane *primarys[IGT_MAX_PIPES]; > + > + for_each_pipe(&display, i) { > + n_pipes++; > + valid_pipes_mask = valid_pipes_mask | BIT(i); > + } > + > + if (mst) > + igt_assert_f(igt_find_all_mst_output_in_topology(fd, > + &display, > + output, > + outputs, > + &output_count), > + "Unable to find mst outputs\n"); > + else > + outputs[output_count++] = output; > + > + igt_assert_f(output_count > 0, "Require at least 1 output\n"); > + igt_set_all_master_pipes_for_platform(&display, > &master_pipes_mask); > + igt_assert_f(igt_assign_pipes_for_outputs(fd, outputs, > + output_count, n_pipes, > + &used_pipes_mask, > + master_pipes_mask, > + valid_pipes_mask), > + "Unable to assign pipes for outputs\n"); > + igt_assert_f(fit_modes_in_bw(), "Unable to fit modes in bw\n"); > + setup_planes_fbs(fd, outputs, output_count, modes, fbs, primarys); > + igt_display_commit2(&display, COMMIT_ATOMIC); } > + > +static bool run_link_rate_test(int fd, igt_output_t *output, > + bool mst, bool uhbr) > +{ > + bool is_uhbr, is_output_mst; > + > + igt_display_reset(&display); > + igt_reset_link_params(fd, output); > + > + is_output_mst = igt_check_output_is_dp_mst(output); > + is_uhbr = igt_get_max_link_rate(fd, output) > 810000; > + > + if ((mst && !is_output_mst) || (!mst && is_output_mst)) { > + igt_info("Skipping %s as test expects %s output and output is > %s\n", output->name, > + mst ? "mst" : "sst", is_output_mst ? "mst" : > "sst"); > + return false; > + } > + > + if ((uhbr && !is_uhbr) || (!uhbr && is_uhbr)) { > + igt_info("Test expects %s but output %s is %s\n", > + uhbr ? "uhbr" : "non-uhbr", output->name, > + is_uhbr ? "uhbr" : "non-uhbr"); > + return false; > + } > + > + do_modeset(fd, output, mst, uhbr); > + > + if (uhbr) > + return igt_get_current_link_rate(fd, output) > 810000; > + else > + return igt_get_current_link_rate(fd, output) <= 810000; } Overall code looks good to me, one question if link rate is greater than 810000 its uhbr and less for non-uhbr case, do we have some bspec id where this is common for all platforms ?? Please mention in commit it there is one. Thanks Jeevan B > + > +static bool test_link_rate(int fd, bool mst, bool uhbr) { > + bool ran = false; > + igt_output_t *output; > + > + igt_skip_on_f(!is_intel_device(fd), > + "Test supported only on intel platforms\n"); > + > + for_each_connected_output(&display, output) { > + if (output->config.connector->connector_type == > DRM_MODE_CONNECTOR_DisplayPort) > + ran = ran | run_link_rate_test(fd, output, mst, uhbr); > + else > + igt_info("Skipping non DisplayPort output %s\n", > output->name); > + } > + > + return ran; > +} > + > IGT_TEST_DESCRIPTION("A metatest that checks for \"features\" presence. " > "The subtests here should only skip or pass, " > "anything else means we have a serious problem."); @@ - > 177,5 +327,26 @@ igt_main { > } > igt_require_f(ret == 0, "No DP-MST configuration > found.\n"); > } > + > + igt_describe("Test we can drive UHBR rates over SST"); > + igt_subtest("uhbr-sst") > + igt_require_f(test_link_rate(fd, false, true), > + "Didn't find any SST output with uhbr > rates"); > + > + igt_describe("Test we can drive UHBR rates over MST"); > + igt_subtest("uhbr-mst") > + igt_require_f(test_link_rate(fd, true, true), > + "Didn't find any MST output with > uhbr rates"); > + > + igt_describe("Test we can drive non uhbr rates over SST"); > + igt_subtest("non-uhbr-sst") > + igt_require_f(test_link_rate(fd, false, false), > + "Didn't find any SST output with non- > uhbr rates"); > + > + igt_describe("Test we can drive non uhbr rates over MST"); > + igt_subtest("non-uhbr-mst") > + igt_require_f(test_link_rate(fd, true, false), > + "Didn't find any MST output with > non-uhbr rates"); > + > } > } > diff --git a/tests/meson.build b/tests/meson.build index > ffbe1211e..db8919ebc 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -366,6 +366,10 @@ extra_sources = { > 'kms_chamelium_frames': [ join_paths ('chamelium', > 'kms_chamelium_helper.c') ], > 'kms_chamelium_hpd': [ join_paths ('chamelium', > 'kms_chamelium_helper.c') ], > 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ], > + 'kms_feature_discovery': [ > + join_paths ('intel', 'kms_joiner_helper.c'), > + join_paths ('intel', 'kms_mst_helper.c') > + ], > 'kms_joiner': [join_paths ('intel', 'kms_joiner_helper.c')], > 'kms_dp_linktrain_fallback': [join_paths ('intel', 'kms_mst_helper.c')], > 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ], > -- > 2.25.1 From mohammed.thasleem at intel.com Wed Jan 8 15:04:48 2025 From: mohammed.thasleem at intel.com (Mohammed Thasleem) Date: Wed, 8 Jan 2025 20:34:48 +0530 Subject: [PATCH i-g-t] tests/kms_histogram: Add check for ghe api call In-Reply-To: <20250108124637.291978-1-mohammed.thasleem@intel.com> References: <20250108124637.291978-1-mohammed.thasleem@intel.com> Message-ID: <20250108150448.329219-1-mohammed.thasleem@intel.com> Check ghe algo for the function called by ghe igt while compiling. v2: Update version check and remove warning message. (Lucas) Print messae at api else check. (Kamil) v3: Remove special case and update dependency declaration. (Lucas) Signed-off-by: Mohammed Thasleem --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 8b2a2a64a..3b6988cd6 100644 --- a/meson.build +++ b/meson.build @@ -197,9 +197,9 @@ else chamelium = disabler() endif -libghe = dependency('libghe', required : false) +libghe = dependency('libghe', version : '>=0.2.0', required : false) if libghe.found() - config.set('HAVE_LIBGHE', 1) + config.set('HAVE_LIBGHE', 1) endif build_info += 'Build Chamelium test: @0@'.format(chamelium.found()) -- 2.43.0 From mohammed.thasleem at intel.com Wed Jan 8 15:16:06 2025 From: mohammed.thasleem at intel.com (Mohammed Thasleem) Date: Wed, 8 Jan 2025 20:46:06 +0530 Subject: [PATCH i-g-t] tests/kms_histogram: Add check for libghe version In-Reply-To: <20250108150448.329219-1-mohammed.thasleem@intel.com> References: <20250108150448.329219-1-mohammed.thasleem@intel.com> Message-ID: <20250108151606.333202-1-mohammed.thasleem@intel.com> Update check for libghe version to avoid compilation issue. v2: Update version check and remove warning message. (Lucas) Print messae at api else check. (Kamil) v3: Remove special case and update dependency declaration. (Lucas) v4: Update subject and discription. Signed-off-by: Mohammed Thasleem --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 8b2a2a64a..3b6988cd6 100644 --- a/meson.build +++ b/meson.build @@ -197,9 +197,9 @@ else chamelium = disabler() endif -libghe = dependency('libghe', required : false) +libghe = dependency('libghe', version : '>=0.2.0', required : false) if libghe.found() - config.set('HAVE_LIBGHE', 1) + config.set('HAVE_LIBGHE', 1) endif build_info += 'Build Chamelium test: @0@'.format(chamelium.found()) -- 2.43.0 From lucas.demarchi at intel.com Wed Jan 8 15:20:54 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Wed, 8 Jan 2025 09:20:54 -0600 Subject: [PATCH i-g-t] tests/kms_histogram: Add check for libghe version In-Reply-To: <20250108151606.333202-1-mohammed.thasleem@intel.com> References: <20250108150448.329219-1-mohammed.thasleem@intel.com> <20250108151606.333202-1-mohammed.thasleem@intel.com> Message-ID: On Wed, Jan 08, 2025 at 08:46:06PM +0530, Mohammed Thasleem wrote: >Update check for libghe version to avoid compilation issue. > >v2: Update version check and remove warning message. (Lucas) > Print messae at api else check. (Kamil) >v3: Remove special case and update dependency declaration. (Lucas) >v4: Update subject and discription. > >Signed-off-by: Mohammed Thasleem >--- > meson.build | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/meson.build b/meson.build >index 8b2a2a64a..3b6988cd6 100644 >--- a/meson.build >+++ b/meson.build >@@ -197,9 +197,9 @@ else > chamelium = disabler() > endif > >-libghe = dependency('libghe', required : false) >+libghe = dependency('libghe', version : '>=0.2.0', required : false) > if libghe.found() >- config.set('HAVE_LIBGHE', 1) >+ config.set('HAVE_LIBGHE', 1) for some reason our meson.build doesn't follow the recommended formatting (spaces vs tabs). This was already wrong and didn?t improve here.... just leave it how it was. I will do that while merging this. Reviewed-by: Lucas De Marchi Lucas De Marchi From jeevan.b at intel.com Wed Jan 8 18:21:17 2025 From: jeevan.b at intel.com (B, Jeevan) Date: Wed, 8 Jan 2025 18:21:17 +0000 Subject: [PATCH i-g-t 1/4] lib/igt_kms: Add igt_get_joined_pipes_name() In-Reply-To: <20250107185709.116756-2-swati2.sharma@intel.com> References: <20250107185709.116756-1-swati2.sharma@intel.com> <20250107185709.116756-2-swati2.sharma@intel.com> Message-ID: > -----Original Message----- > From: igt-dev On Behalf Of Swati > Sharma > Sent: Wednesday, January 8, 2025 12:27 AM > To: igt-dev at lists.freedesktop.org > Cc: Nautiyal, Ankit K ; Sharma, Swati2 > > Subject: [PATCH i-g-t 1/4] lib/igt_kms: Add igt_get_joined_pipes_name() > > Add function to transform the enum into a string. > > Signed-off-by: Swati Sharma > --- > lib/igt_kms.c | 23 +++++++++++++++++++++++ lib/igt_kms.h | 1 + > 2 files changed, 24 insertions(+) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c index a67d17c4f..8ee8741d9 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -61,6 +61,7 @@ > #include "igt_device.h" > #include "igt_sysfs.h" > #include "sw_sync.h" > +#include "xe/xe_query.h" > #ifdef HAVE_CHAMELIUM > #include "igt_chamelium.h" > #endif > @@ -1803,6 +1804,28 @@ bool kmstest_force_connector_joiner(int drm_fd, > drmModeConnector *connector, int > return true; > } > > +/** > + * igt_get_joined_pipes_name: > + * @val: forced value > + * > + * Simple function to transform the enum into a string. Returns missing. Suggestion for description : * Turns a joined_pipes enum value into a readable string, useful for debugging and logs. * If an invalid value is passed, the program will stop with an assertion. > + */ > +const char *igt_get_joined_pipes_name(enum joined_pipes val) { > + switch (val) { > + case JOINED_PIPES_DEFAULT: > + return ""; > + case JOINED_PIPES_NONE: > + return "-none"; > + case JOINED_PIPES_BIG_JOINER: > + return "-big-joiner"; > + case JOINED_PIPES_ULTRA_JOINER: > + return "-ultra-joiner"; > + default: > + igt_assert(false); > + } > +} > + > /** > * kmstest_force_edid: > * @drm_fd: drm file descriptor > diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 1e2a927ab..c4d76bdcb > 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -1275,5 +1275,6 @@ int igt_get_dp_pending_retrain(int drm_fd, > igt_output_t *output); void igt_reset_link_params(int drm_fd, igt_output_t > *output); int igt_backlight_read(int *result, const char *fname, > igt_backlight_context_t *context); int igt_backlight_write(int value, const char > *fname, igt_backlight_context_t *context); > +const char *igt_get_joined_pipes_name(enum joined_pipes val); > > #endif /* __IGT_KMS_H__ */ > -- > 2.25.1 From patchwork at emeril.freedesktop.org Wed Jan 8 18:22:43 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 08 Jan 2025 18:22:43 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/kms=5Fhistogram=3A_?= =?utf-8?q?Add_check_for_ghe_api_call_=28rev4=29?= In-Reply-To: <20250108124637.291978-1-mohammed.thasleem@intel.com> References: <20250108124637.291978-1-mohammed.thasleem@intel.com> Message-ID: <173636056383.1370604.14256030870870842397@b555e5b46a47> == Series Details == Series: tests/kms_histogram: Add check for ghe api call (rev4) URL : https://patchwork.freedesktop.org/series/143142/ State : success == Summary == CI Bug Log - changes from IGT_8182 -> IGTPW_12402 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12402 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-mtlp-6: [PASS][1] -> [DMESG-FAIL][2] ([i915#13393]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-mtlp-6/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/bat-mtlp-6/igt at i915_selftest@live.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][3] ([i915#13393]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/bat-mtlp-9/igt at i915_selftest@live at workarounds.html - {bat-arls-6}: [DMESG-FAIL][5] ([i915#13393]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arls-6/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/bat-arls-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_8182 -> IGTPW_12402 CI-20190529: 20190529 CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12402: ef700e3de7d3a30f0341df89ee63ea0a6efec877 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From jonathan.cavitt at intel.com Wed Jan 8 18:23:23 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Wed, 8 Jan 2025 18:23:23 +0000 Subject: [PATCH i-g-t v10] tests/intel/xe_exec_capture: Add xe_exec_capture test In-Reply-To: <20250108000410.469269-1-zhanjun.dong@intel.com> References: <20250108000410.469269-1-zhanjun.dong@intel.com> Message-ID: -----Original Message----- From: igt-dev On Behalf Of Zhanjun Dong Sent: Tuesday, January 7, 2025 4:04 PM To: igt-dev at lists.freedesktop.org Cc: Dong, Zhanjun Subject: [PATCH i-g-t v10] tests/intel/xe_exec_capture: Add xe_exec_capture test > > Submit cmds to GPU to cause engine reset, check generated devcoredump > register dump, check against expected values or within the range. > > Signed-off-by: Zhanjun Dong > > --- > > Changes from prior revs: > v10:- Move job timeout save/restore out of subtest, to avoid being bypassed > by failed assertion > Save/restore job timeout for each engine class > Remove testing on multiple GPUs, to be put back after further discussion. > v9:- Reduced job timeout to 2 seconds to speedup test > Add info print to show test is running on single/multiple GPU > v8:- Move change list below --- > v7:- Fix typo and removed unused macros > v6:- Adjust start_line to start from 0 > Use 7 bit engine_cid, start with random number > Add ioerror detect on fgets > Reorgnize the regular expression > Remove unnecessary radom seed init > v5:- Detect devcoredump matches the testing engine > Engine will run with random cid > v4:- Support runs on multiple GPU > Load all devcoredump content to buffer > Alloc line buffer dynamic vs static global memory > Changed to igt_assert_f to provide more info if failed > v3:- Remove call to bash and awk > Add regular express parse > Detect devcoredump through card index > Add devcoredump removal check > v2:- Fix CI.build error > Add multiple GPU card support > --- > tests/intel/xe_exec_capture.c | 519 ++++++++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 2 files changed, 520 insertions(+) > create mode 100644 tests/intel/xe_exec_capture.c > > diff --git a/tests/intel/xe_exec_capture.c b/tests/intel/xe_exec_capture.c > new file mode 100644 > index 000000000..b0642b406 > --- /dev/null > +++ b/tests/intel/xe_exec_capture.c > @@ -0,0 +1,519 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright ? 2024 Intel Corporation > + */ > + > +/** > + * TEST: Basic tests for GuC based register capture > + * Category: Core > + * Mega feature: General Core features > + * Sub-category: CMD submission > + * Functionality: Debug > + * Test category: functionality test > + */ > + > +#include > +#include > +#include > +#include > +#include > + > +#include "igt.h" > +#include "igt_device.h" > +#include "igt_sysfs.h" > +#include "lib/igt_syncobj.h" > +#include "lib/intel_reg.h" > +#include "linux_scaffold.h" > +#include "xe_drm.h" > +#include "xe/xe_ioctl.h" > +#include "xe/xe_query.h" > +#include "xe/xe_spin.h" > + > +#define MAX_N_EXECQUEUES 16 > +#define CAPTURE_JOB_TIMEOUT 2000 > +#define JOB_TIMOUT_ENTRY "job_timeout_ms" > + > +#define BASE_ADDRESS 0x1a0000 > +#define ADDRESS_SHIFT 39 > +#define CID_ADDRESS_MASK 0x7F > +/* Batch buffer element count, in number of dwords(u32) */ > +#define BATCH_DW_COUNT 16 > + > +#define MAX_TEMP_LEN 80 > +#define MAX_SYSFS_PATH_LEN 128 > +#define MAX_LINES 4096 > +/* Max line buffer size (includes last '\0') */ > +#define MAX_LINE_LEN 1024 > +#define MAIN_BUF_SIZE (MAX_LINES * MAX_LINE_LEN * sizeof(char)) > +/* > + * Devcoredump might have long line this test don't care. > + * This buffer size used when load dump content > + */ > +#define LINE_BUF_SIZE (64 * 1024) > + > +#define DUMP_PATH "/sys/class/drm/card%d/device/devcoredump/data" > +#define START_TAG "**** Job ****" > +#define END_TAG "**** VM state ****" > + > +/* Optional Space */ > +#define SPC_O "[ \t]*" > +/* Required Space */ > +#define SPC "[ \t]+" > +/* Optional Non-Space */ > +#define NSPC_O "([^ \t]*)" > +/* Required Non-Space */ > +#define NSPC "([^ \t]+)" > +#define BEG "^" SPC_O > +#define REQ_FIELD NSPC SPC > +#define REQ_FIELD_LAST NSPC SPC_O > +#define OPT_FIELD NSPC_O SPC_O > +#define END SPC_O "$" > + > +#define REGEX_NON_SPACE_GROUPS BEG REQ_FIELD REQ_FIELD_LAST OPT_FIELD OPT_FIELD OPT_FIELD END > +#define REGEX_NON_SPACE_GROUPS_COUNT 6 > + > +#define INDEX_KEY 1 > +#define INDEX_VALUE 2 > +#define INDEX_ENGINE_PHYSICAL 2 > +#define INDEX_ENGINE_NAME 1 > +#define INDEX_ENGINE_INSTANCE 4 > + > +static u64 > +xe_sysfs_get_job_timeout_ms(int fd, struct drm_xe_engine_class_instance *eci) > +{ > + int engine_fd = -1; > + u64 ret; > + > + engine_fd = xe_sysfs_engine_open(fd, eci->gt_id, eci->engine_class); > + ret = igt_sysfs_get_u64(engine_fd, JOB_TIMOUT_ENTRY); > + close(engine_fd); > + > + return ret; > +} > + > +static void xe_sysfs_set_job_timeout_ms(int fd, struct drm_xe_engine_class_instance *eci, > + u64 timeout) > +{ > + int engine_fd = -1; > + > + engine_fd = xe_sysfs_engine_open(fd, eci->gt_id, eci->engine_class); > + igt_sysfs_set_u64(engine_fd, JOB_TIMOUT_ENTRY, timeout); > + close(engine_fd); > +} > + > +static char *safe_strncpy(char *dst, const char *src, int n) > +{ > + char *s; > + > + igt_assert(n > 0); > + igt_assert(dst && src); > + > + s = strncpy(dst, src, n - 1); > + s[n - 1] = '\0'; > + > + return s; > +} > + > +static const char *xe_engine_class_name(u32 engine_class) > +{ > + switch (engine_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: > + igt_warn("Engine class 0x%x unknown\n", engine_class); > + return "unknown"; > + } > +} > + > +static void > +test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci, int n_exec_queues, int n_execs, > + unsigned int flags, u64 addr) > +{ > + u32 vm; > + struct drm_xe_sync sync[2] = { > + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, }, > + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, }, > + }; > + struct drm_xe_exec exec = { > + .num_batch_buffer = 1, > + .num_syncs = 2, > + .syncs = to_user_pointer(sync), > + }; > + u32 exec_queues[MAX_N_EXECQUEUES]; > + u32 syncobjs[MAX_N_EXECQUEUES]; > + size_t bo_size; > + u32 bo = 0; > + struct { > + struct xe_spin spin; > + u32 batch[BATCH_DW_COUNT]; > + u64 pad; > + u32 data; > + } *data; > + struct xe_spin_opts spin_opts = { .preempt = false }; > + int i, b; > + > + igt_assert_lte(n_exec_queues, MAX_N_EXECQUEUES); > + > + vm = xe_vm_create(fd, 0, 0); > + bo_size = sizeof(*data) * n_execs; > + bo_size = xe_bb_size(fd, bo_size); > + > + bo = xe_bo_create(fd, vm, bo_size, > + vram_if_possible(fd, eci->gt_id), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > + data = xe_bo_map(fd, bo, bo_size); > + > + for (i = 0; i < n_exec_queues; i++) { > + exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0); > + syncobjs[i] = syncobj_create(fd, 0); > + }; > + > + sync[0].handle = syncobj_create(fd, 0); > + xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1); > + > + for (i = 0; i < n_execs; i++) { > + u64 base_addr = addr; > + u64 batch_offset = (char *)&data[i].batch - (char *)data; > + u64 batch_addr = base_addr + batch_offset; > + u64 spin_offset = (char *)&data[i].spin - (char *)data; > + u64 sdi_offset = (char *)&data[i].data - (char *)data; > + u64 sdi_addr = base_addr + sdi_offset; > + u64 exec_addr; > + int e = i % n_exec_queues; > + > + if (!i) { > + spin_opts.addr = base_addr + spin_offset; > + xe_spin_init(&data[i].spin, &spin_opts); > + exec_addr = spin_opts.addr; > + } else { > + b = 0; > + data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4; > + data[i].batch[b++] = sdi_addr; > + data[i].batch[b++] = sdi_addr >> 32; > + data[i].batch[b++] = 0xc0ffee; > + data[i].batch[b++] = MI_BATCH_BUFFER_END; > + igt_assert(b <= ARRAY_SIZE(data[i].batch)); > + > + exec_addr = batch_addr; > + } > + > + sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL; > + sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL; > + sync[1].handle = syncobjs[e]; > + > + exec.exec_queue_id = exec_queues[e]; > + exec.address = exec_addr; > + if (e != i) > + syncobj_reset(fd, &syncobjs[e], 1); > + xe_exec(fd, &exec); > + } > + > + for (i = 0; i < n_exec_queues && n_execs; i++) > + igt_assert(syncobj_wait(fd, &syncobjs[i], 1, INT64_MAX, 0, > + NULL)); > + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL)); > + > + sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL; > + xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1); > + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL)); > + > + syncobj_destroy(fd, sync[0].handle); > + for (i = 0; i < n_exec_queues; i++) { > + syncobj_destroy(fd, syncobjs[i]); > + xe_exec_queue_destroy(fd, exec_queues[i]); > + } > + > + munmap(data, bo_size); > + gem_close(fd, bo); > + xe_vm_destroy(fd, vm); > +} > + > +static char **alloc_lines_buffer(void) > +{ > + int i; > + char **lines = (char **)malloc(MAX_LINES * sizeof(char *)); > + char *main_buf = (char *)malloc(MAIN_BUF_SIZE); > + > + igt_assert_f(lines, "Out of memory.\n"); > + igt_assert_f(main_buf, "Out of memory.\n"); > + > + /* set string array pointers */ > + for (i = 0; i < MAX_LINES; i++) > + lines[i] = main_buf + i * MAX_LINE_LEN; > + > + return lines; > +} > + > +static char *get_devcoredump_path(int card_id, char *buf) > +{ > + sprintf(buf, DUMP_PATH, card_id); > + return buf; > +} > + > +static int load_all(FILE *fd, char **lines, char *buf) > +{ > + int start_line = 0, i = 0; > + bool skip = true; > + > + memset(lines[0], 0, MAIN_BUF_SIZE); > + while (!feof(fd) && i < MAX_LINES) { > + /* > + * Devcoredump might have long lines, load up to > + * LINE_BUF_SIZE for a single line > + */ > + if (!fgets(buf, LINE_BUF_SIZE, fd)) > + if (ferror(fd) != 0) { > + igt_warn("Failed to read devcoredump file, error: %d\n", > + ferror(fd)); > + break; > + } > + > + if (skip) { > + start_line++; > + /* Skip all lines before START_TAG */ > + if (strncmp(START_TAG, buf, strlen(START_TAG))) > + continue; > + else > + skip = false; > + } > + > + /* Only save up to MAX_LINE_LEN to buffer */ > + safe_strncpy(lines[i++], buf, MAX_LINE_LEN); > + > + /* Stop on END_TAG */ > + if (!strncmp(END_TAG, buf, strlen(END_TAG))) > + break; > + } > + return start_line; > +} > + > +static int access_devcoredump(char *path, char **lines, char *line_buf) > +{ > + int start_line = -1; > + FILE *fd = fopen(path, "r"); > + > + if (!fd) > + return false; > + > + igt_debug("Devcoredump found: %s\n", path); > + > + /* Clear memory before load file */ > + if (lines) > + start_line = load_all(fd, lines, line_buf); > + > + fclose(fd); > + return start_line; > +} > + > +static bool rm_devcoredump(char *path) > +{ > + int fd = open(path, O_WRONLY); > + > + if (fd != -1) { > + igt_debug("Clearing devcoredump.\n"); > + write(fd, "0", 1); > + close(fd); > + return true; > + } > + > + return false; > +} > + > +static char > +*get_coredump_item(regex_t *regex, char **lines, const char *tag, int tag_index, int target_index) > +{ > + int i; > + regmatch_t match[REGEX_NON_SPACE_GROUPS_COUNT]; > + > + for (i = 0; i < MAX_LINES; i++) { > + char *line = lines[i]; > + > + /* Skip lines without tag */ > + if (!strstr(line, tag)) > + continue; > + > + if ((regexec(regex, line, REGEX_NON_SPACE_GROUPS_COUNT, match, 0)) == 0) { > + char *key = NULL, *value = NULL; > + > + if (match[tag_index].rm_so >= 0) { > + key = &line[match[tag_index].rm_so]; > + line[match[tag_index].rm_eo] = '\0'; > + } > + if (match[target_index].rm_so >= 0) { > + value = &line[match[target_index].rm_so]; > + line[match[target_index].rm_eo] = '\0'; > + } > + > + if (key && value && strcmp(tag, key) == 0) > + return value; > + /* if key != tag, keep searching and loop to next line */ > + } > + } > + > + return NULL; > +} > + > +static void > +check_item_u64(regex_t *regex, char **lines, const char *tag, u64 addr_lo, u64 addr_hi) > +{ > + u64 result; > + char *output; > + > + igt_assert_f((output = get_coredump_item(regex, lines, tag, INDEX_KEY, INDEX_VALUE)), > + "Target not found:%s\n", tag); > + result = strtoul(output, NULL, 16); > + igt_debug("Compare %s %s vs [0x%lX-0x%lX]\n", tag, output, addr_lo, addr_hi); > + igt_assert_f((addr_lo <= result) && (result <= addr_hi), > + "value %lX out of range[0x%lX-0x%lX]\n", result, addr_lo, addr_hi); > +} > + > +static void > +check_item_str(regex_t *regex, char **lines, const char *tag, int tag_index, int target_index, > + const char *target, bool up_to_target_len) > +{ > + char buf[MAX_TEMP_LEN] = {0}; > + char *output; > + int code; > + > + igt_assert_f(output = get_coredump_item(regex, lines, tag, tag_index, target_index), > + "Target not found:%s\n", tag); > + > + if (up_to_target_len) { > + igt_assert_f(strlen(target) < MAX_TEMP_LEN, "Target too long.\n"); > + safe_strncpy(buf, output, MAX_TEMP_LEN); > + buf[strlen(target)] = 0; > + output = buf; > + } > + code = strncmp(output, target, strlen(target)); > + igt_debug("From tag '%s' found %s vs %s\n", tag, output, target); > + igt_assert_f(code == 0, "Expected value:%s, received:%s\n", target, output); > +} > + > +/** > + * SUBTEST: reset > + * Description: Reset GuC, check devcoredump output values > + */ > +static void test_card(int fd) > +{ > + struct drm_xe_engine_class_instance *hwe; > + regex_t regex; > + int start_line; > + int engine_cid = rand(); > + char **lines; > + char *single_line_buf = (char *)malloc(LINE_BUF_SIZE); > + char temp[MAX_TEMP_LEN]; > + char path[MAX_SYSFS_PATH_LEN]; > + > + igt_assert_f(single_line_buf, "Out of memory.\n"); > + > + regcomp(®ex, REGEX_NON_SPACE_GROUPS, REG_EXTENDED | REG_NEWLINE); > + get_devcoredump_path(igt_device_get_card_index(fd), path); > + lines = alloc_lines_buffer(); > + > + /* clear old devcoredump, if any */ > + rm_devcoredump(path); > + > + xe_for_each_engine(fd, hwe) { > + /* > + * To test devcoredump register data, the test batch address is > + * used to compare with the dump, address bit 40 to 46 act as > + * context id, which start with an random number, increased 1 > + * per engine. By this way, the address is unique for each > + * engine, and start with an random number on each run. > + */ > + const u64 addr = BASE_ADDRESS | ((u64)(engine_cid++ % CID_ADDRESS_MASK) << > + ADDRESS_SHIFT); > + > + igt_debug("Running on engine class: %x instance: %x\n", hwe->engine_class, > + hwe->engine_instance); > + > + test_legacy_mode(fd, hwe, 1, 1, 0, addr); > + /* Wait 1 sec for devcoredump complete */ > + sleep(1); > + > + /* assert devcoredump created */ > + igt_assert_f((start_line = access_devcoredump(path, lines, single_line_buf)) > 0, > + "Devcoredump not exist, errno=%d.\n", errno); > + > + sprintf(temp, "instance=%d", hwe->engine_instance); > + check_item_str(®ex, lines, "(physical),", INDEX_ENGINE_PHYSICAL, > + INDEX_ENGINE_INSTANCE, temp, false); > + check_item_str(®ex, lines, "(physical),", INDEX_ENGINE_PHYSICAL, > + INDEX_ENGINE_NAME, xe_engine_class_name(hwe->engine_class), true); > + > + check_item_str(®ex, lines, "Capture_source:", INDEX_KEY, INDEX_VALUE, > + "GuC", false); > + check_item_u64(®ex, lines, "ACTHD:", addr, > + addr + BATCH_DW_COUNT * sizeof(u32)); > + check_item_u64(®ex, lines, "RING_BBADDR:", addr, > + addr + BATCH_DW_COUNT * sizeof(u32)); > + > + /* clear devcoredump */ > + rm_devcoredump(path); > + sleep(1); > + /* Assert devcoredump removed */ > + igt_assert_f(!access_devcoredump(path, NULL, NULL), "Devcoredump not removed\n"); > + } > + /* Free lines buffer */ > + free(lines); > + free(single_line_buf); > + regfree(®ex); > +} > + > +igt_main > +{ > + int xe; > + struct drm_xe_engine_class_instance *hwe; > + u64 timeouts[DRM_XE_ENGINE_CLASS_VM_BIND] = {0}; > + > + igt_fixture { > + xe = drm_open_driver(DRIVER_XE); > + xe_for_each_engine(xe, hwe) { > + /* Skip kernel only classes */ > + if (hwe->engine_class >= DRM_XE_ENGINE_CLASS_VM_BIND) > + continue; > + /* Skip classes already set */ > + if (timeouts[hwe->engine_class]) > + continue; > + /* Save original timeout value */ > + timeouts[hwe->engine_class] = xe_sysfs_get_job_timeout_ms(xe, hwe); > + /* Reduce timeout value to speedup test */ > + xe_sysfs_set_job_timeout_ms(xe, hwe, CAPTURE_JOB_TIMEOUT); > + > + igt_debug("Reduced %s class timeout from %ld to %d\n", > + xe_engine_class_name(hwe->engine_class), > + timeouts[hwe->engine_class], CAPTURE_JOB_TIMEOUT); > + } > + } > + > + igt_subtest("reset") > + test_card(xe); > + > + igt_fixture { > + xe_for_each_engine(xe, hwe) { > + /* Skip kernel only classes */ > + if (hwe->engine_class >= DRM_XE_ENGINE_CLASS_VM_BIND) > + continue; > + /* Skip classes already set */ > + if (timeouts[hwe->engine_class] == 0) > + continue; > + /* Restore original timeout value */ > + xe_sysfs_set_job_timeout_ms(xe, hwe, timeouts[hwe->engine_class]); We should probably assert that we're correctly setting the timeout to the expected value after writing, and abort further IGT testing if the sysfs setting is improperly reset: """ xe_for_each_engine(xe, hwe) { u64 store, timeout; /* Skip kernel only classes */ if (hwe->engine_class >= DRM_XE_ENGINE_CLASS_VM_BIND) continue; timeout = timeouts[hwe->engine_class]); /* Skip classes already set */ if (!timeout) continue; /* Restore original timeout value */ xe_sysfs_set_job_timeout_ms(xe, hwe, timeout); /* Assert successful restore */ store = xe_sysfs_get_job_timeout_ms(xe, hwe); igt_abort_on_f(timeout != store, " job_timeout_ms not restored!\n"); timeouts[hwe->engine_class] = 0; } """ I recognize that igt_sysfs_set_u64 is internally performing an assert on the write, but we need to perform an abort here for the following reasons: 1) A failure to restore the job_timeout_ms value can cause spurious test failures later in IGT execution, which we need to abort to prevent. 2) The assert on the write only determines that the write occurred, not necessarily that it was entirely successful (I.E. if we attempt to write 100 ms into job_timeout_ms, we could get a partial write of only 10 ms or 1 ms and not catch it). I don't see any reason to block on this patch beyond this, however, so just add the necessary assert, and this is Reviewed-by: Jonathan Cavitt -Jonathan Cavitt > + igt_debug("Restored %s class timeout to %ld\n", > + xe_engine_class_name(hwe->engine_class), > + timeouts[hwe->engine_class]); > + > + timeouts[hwe->engine_class] = 0; > + } > + > + drm_close_driver(xe); > + } > +} > diff --git a/tests/meson.build b/tests/meson.build > index 89bba6454..895d911f8 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -286,6 +286,7 @@ intel_xe_progs = [ > 'xe_exec_atomic', > 'xe_exec_balancer', > 'xe_exec_basic', > + 'xe_exec_capture', > 'xe_exec_compute_mode', > 'xe_exec_fault_mode', > 'xe_exec_mix_modes', > -- > 2.34.1 > > From jeevan.b at intel.com Wed Jan 8 18:26:04 2025 From: jeevan.b at intel.com (B, Jeevan) Date: Wed, 8 Jan 2025 18:26:04 +0000 Subject: [PATCH i-g-t 2/4] lib/igt_kms: Add igt_is_(big|ultra)_joiner_supported_by_source() In-Reply-To: <20250107185709.116756-3-swati2.sharma@intel.com> References: <20250107185709.116756-1-swati2.sharma@intel.com> <20250107185709.116756-3-swati2.sharma@intel.com> Message-ID: > -----Original Message----- > From: igt-dev On Behalf Of Swati > Sharma > Sent: Wednesday, January 8, 2025 12:27 AM > To: igt-dev at lists.freedesktop.org > Cc: Nautiyal, Ankit K ; Sharma, Swati2 > > Subject: [PATCH i-g-t 2/4] lib/igt_kms: Add > igt_is_(big|ultra)_joiner_supported_by_source() > > Add func() returning true/false if platform supports big/ultra joiner and use > corresponding func() in related binaries. > > Signed-off-by: Swati Sharma > --- > lib/igt_kms.c | 41 ++++++++++++++++++++++++++++++++++++++++ > lib/igt_kms.h | 2 ++ > tests/intel/kms_joiner.c | 8 +++----- > 3 files changed, 46 insertions(+), 5 deletions(-) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 8ee8741d9..6640a6a58 > 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -7301,3 +7301,44 @@ int igt_backlight_write(int value, const char > *fname, igt_backlight_context_t *c > > return 0; > } > + > +/** > + * igt_is_bigjoiner_supported_by_source: > + * @drm_fd: drm file descriptor > + * > + * Returns: True if bigjoiner is supported by platform, false otherwise > +*/ bool igt_is_bigjoiner_supported_by_source(int drm_fd) { > + int disp_ver; > + disp_ver = intel_display_ver(intel_get_drm_devid(drm_fd)); > + > + if (disp_ver < 12) { > + igt_info("Bigjoiner is not supported on D11 and older > platforms\n"); > + return false; > + } > + > + return true; > +} > + > +/** > + * igt_is_ultrajoiner_supported_by_source: > + * @drm_fd: drm file descriptor > + * > + * Returns: True if ultrajoiner is supported by platform, false > +otherwise */ bool igt_is_ultrajoiner_supported_by_source(int drm_fd) { > + bool is_dgfx; > + int disp_ver; > + > + is_dgfx = is_xe_device(drm_fd) ? xe_has_vram(drm_fd) : > gem_has_lmem(drm_fd); > + disp_ver = intel_display_ver(intel_get_drm_devid(drm_fd)); > + > + if ((is_dgfx && disp_ver == 14) || (disp_ver > 14)) { > + igt_info("Ultrajoiner is supported on igfx with D14+ and on > dgfx with D14\n"); > + return true; > + } > + > + return false; > +} This should be moved inside joiner_helper.c which is been added in this patch. https://patchwork.freedesktop.org/series/143039/ > diff --git a/lib/igt_kms.h b/lib/igt_kms.h index c4d76bdcb..e8a296c18 > 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -1257,6 +1257,8 @@ bool igt_has_force_joiner_debugfs(int drmfd, char > *conn_name); bool is_joiner_mode(int drm_fd, igt_output_t *output); bool > igt_check_force_joiner_status(int drmfd, char *connector_name); bool > igt_check_bigjoiner_support(igt_display_t *display); > +bool igt_is_bigjoiner_supported_by_source(int drm_fd); bool > +igt_is_ultrajoiner_supported_by_source(int drm_fd); > bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo > *mode); bool intel_pipe_output_combo_valid(igt_display_t *display); bool > igt_check_output_is_dp_mst(igt_output_t *output); diff --git > a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c index > 418ff26a6..2b72aa786 100644 > --- a/tests/intel/kms_joiner.c > +++ b/tests/intel/kms_joiner.c > @@ -411,8 +411,8 @@ static void test_ultra_joiner(data_t *data, bool > invalid_pipe, bool two_display, > > igt_main > { > - bool ultra_joiner_supported, is_dgfx; > - int i, j, display_ver; > + bool ultra_joiner_supported; > + int i, j; > igt_output_t *output; > drmModeModeInfo mode; > data_t data; > @@ -434,9 +434,7 @@ igt_main > igt_require(data.display.is_atomic); > max_dotclock = igt_get_max_dotclock(data.drm_fd); > > - is_dgfx = is_xe_device(data.drm_fd) ? > xe_has_vram(data.drm_fd) : gem_has_lmem(data.drm_fd); > - display_ver = > intel_display_ver(intel_get_drm_devid(data.drm_fd)); > - if ((is_dgfx && display_ver == 14) || (display_ver > 14)) > + if (igt_is_ultrajoiner_supported_by_source(data.drm_fd)) > ultra_joiner_supported = true; > > for_each_connected_output(&data.display, output) { > -- > 2.25.1 From patchwork at emeril.freedesktop.org Wed Jan 8 19:10:37 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 08 Jan 2025 19:10:37 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/kms=5Fhistogram=3A_Ad?= =?utf-8?q?d_check_for_ghe_api_call_=28rev4=29?= In-Reply-To: <20250108124637.291978-1-mohammed.thasleem@intel.com> References: <20250108124637.291978-1-mohammed.thasleem@intel.com> Message-ID: <173636343753.1385272.17614410152220766554@b555e5b46a47> == Series Details == Series: tests/kms_histogram: Add check for ghe api call (rev4) URL : https://patchwork.freedesktop.org/series/143142/ State : success == Summary == CI Bug Log - changes from XEIGT_8182_BAT -> XEIGTPW_12402_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12402_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_intel_bb@intel-bb-blit-x: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3958]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/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_8182 -> IGTPW_12402 IGTPW_12402: ef700e3de7d3a30f0341df89ee63ea0a6efec877 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From mohammed.thasleem at intel.com Wed Jan 8 20:39:18 2025 From: mohammed.thasleem at intel.com (Mohammed Thasleem) Date: Thu, 9 Jan 2025 02:09:18 +0530 Subject: [PATCH i-g-t 1/2] tests/intel/kms_frontbuffer_tracking: Add skip condition for bmg platform Message-ID: <20250108203919.120910-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_frontbuffer_tracking.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c index 3d833864a..21bbaf61e 100644 --- a/tests/intel/kms_frontbuffer_tracking.c +++ b/tests/intel/kms_frontbuffer_tracking.c @@ -2755,6 +2755,10 @@ static void prepare_subtest_data(const struct test_mode *t, static void prepare_subtest_screens(const struct test_mode *t) { + /* FBC disabled: Wa_16023588340 */ + igt_skip_on_f((IS_BATTLEMAGE(drm.devid) && t->feature == FEATURE_FBC), + "FBC isn't supported on BMG\n"); + if (t->pipes == PIPE_DUAL) enable_both_screens_and_wait(t); else @@ -2799,6 +2803,10 @@ static void prepare_subtest(const struct test_mode *t, */ static void rte_subtest(const struct test_mode *t) { + /* FBC disabled: Wa_16023588340 */ + igt_skip_on_f((IS_BATTLEMAGE(drm.devid) && t->feature == FEATURE_FBC), + "FBC isn't supported on BMG\n"); + prepare_subtest_data(t, NULL); unset_all_crtcs(); @@ -4294,6 +4302,10 @@ igt_main_args("", long_options, help_str, opt_handler, NULL) t.flip = -1; t.tiling = opt.tiling; + /* FBC disabled: Wa_16023588340 */ + igt_skip_on_f((IS_BATTLEMAGE(drm.devid) && t.feature == FEATURE_FBC), + "FBC isn't supported on BMG\n"); + for_each_pipe(&drm.display, pipe) { if (pipe == default_pipe) { igt_info("pipe-%s: FBC validated in other subtest\n", kmstest_pipe_name(pipe)); -- 2.34.1 From mohammed.thasleem at intel.com Wed Jan 8 20:39:19 2025 From: mohammed.thasleem at intel.com (Mohammed Thasleem) Date: Thu, 9 Jan 2025 02:09:19 +0530 Subject: [PATCH i-g-t 2/2] HAX: DO NOT MERGE In-Reply-To: <20250108203919.120910-1-mohammed.thasleem@intel.com> References: <20250108203919.120910-1-mohammed.thasleem@intel.com> Message-ID: <20250108203919.120910-2-mohammed.thasleem@intel.com> Signed-off-by: Mohammed Thasleem --- tests/intel-ci/fast-feedback.testlist | 887 ++++++++++++++++---- tests/intel-ci/xe-fast-feedback.testlist | 994 ++++++++++++++++------- 2 files changed, 1442 insertions(+), 439 deletions(-) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index be0965110..8a9ac87a0 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -2,170 +2,725 @@ 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@fbc-1p-rte +igt at kms_frontbuffer_tracking@fbc-2p-rte +igt at kms_frontbuffer_tracking@psr-1p-rte +igt at kms_frontbuffer_tracking@psr-2p-rte +igt at kms_frontbuffer_tracking@fbcpsr-1p-rte +igt at kms_frontbuffer_tracking@fbcpsr-2p-rte +igt at kms_frontbuffer_tracking@drrs-1p-rte +igt at kms_frontbuffer_tracking@drrs-2p-rte +igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte +igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte +igt at kms_frontbuffer_tracking@plane-fbc-rte +igt at kms_frontbuffer_tracking@pipe-fbc-rte +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-render +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@psr-rgb565-draw-blt +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@psr-rgb565-draw-render +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary +igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary +igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbc-modesetfrombusy +igt at kms_frontbuffer_tracking@fbc-stridechange +igt at kms_frontbuffer_tracking@fbc-tiling-linear +igt at kms_frontbuffer_tracking@fbc-tiling-y +igt at kms_frontbuffer_tracking@fbc-tiling-4 +igt at kms_frontbuffer_tracking@fbc-suspend +igt at kms_frontbuffer_tracking@psr-modesetfrombusy +igt at kms_frontbuffer_tracking@psr-slowdraw +igt at kms_frontbuffer_tracking@psr-suspend +igt at kms_frontbuffer_tracking@fbcpsr-modesetfrombusy +igt at kms_frontbuffer_tracking@fbcpsr-stridechange +igt at kms_frontbuffer_tracking@fbcpsr-tiling-linear +igt at kms_frontbuffer_tracking@fbcpsr-tiling-y +igt at kms_frontbuffer_tracking@fbcpsr-tiling-4 +igt at kms_frontbuffer_tracking@fbcpsr-slowdraw +igt at kms_frontbuffer_tracking@fbcpsr-suspend +igt at kms_frontbuffer_tracking@drrs-modesetfrombusy +igt at kms_frontbuffer_tracking@drrs-slowdraw +igt at kms_frontbuffer_tracking@drrs-suspend +igt at kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy +igt at kms_frontbuffer_tracking@fbcdrrs-stridechange +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-4 +igt at kms_frontbuffer_tracking@fbcdrrs-slowdraw +igt at kms_frontbuffer_tracking@fbcdrrs-suspend 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 meta_test@fail-result diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index 8952faec5..165c4c85e 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -1,276 +1,724 @@ # 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@fbc-1p-rte +igt at kms_frontbuffer_tracking@fbc-2p-rte +igt at kms_frontbuffer_tracking@psr-1p-rte +igt at kms_frontbuffer_tracking@psr-2p-rte +igt at kms_frontbuffer_tracking@fbcpsr-1p-rte +igt at kms_frontbuffer_tracking@fbcpsr-2p-rte +igt at kms_frontbuffer_tracking@drrs-1p-rte +igt at kms_frontbuffer_tracking@drrs-2p-rte +igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte +igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte +igt at kms_frontbuffer_tracking@plane-fbc-rte +igt at kms_frontbuffer_tracking@pipe-fbc-rte +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-render +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@psr-rgb565-draw-blt +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@psr-rgb565-draw-render +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary +igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary +igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbc-modesetfrombusy +igt at kms_frontbuffer_tracking@fbc-stridechange +igt at kms_frontbuffer_tracking@fbc-tiling-linear +igt at kms_frontbuffer_tracking@fbc-tiling-y +igt at kms_frontbuffer_tracking@fbc-tiling-4 +igt at kms_frontbuffer_tracking@fbc-suspend +igt at kms_frontbuffer_tracking@psr-modesetfrombusy +igt at kms_frontbuffer_tracking@psr-slowdraw +igt at kms_frontbuffer_tracking@psr-suspend +igt at kms_frontbuffer_tracking@fbcpsr-modesetfrombusy +igt at kms_frontbuffer_tracking@fbcpsr-stridechange +igt at kms_frontbuffer_tracking@fbcpsr-tiling-linear +igt at kms_frontbuffer_tracking@fbcpsr-tiling-y +igt at kms_frontbuffer_tracking@fbcpsr-tiling-4 +igt at kms_frontbuffer_tracking@fbcpsr-slowdraw +igt at kms_frontbuffer_tracking@fbcpsr-suspend +igt at kms_frontbuffer_tracking@drrs-modesetfrombusy +igt at kms_frontbuffer_tracking@drrs-slowdraw +igt at kms_frontbuffer_tracking@drrs-suspend +igt at kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy +igt at kms_frontbuffer_tracking@fbcdrrs-stridechange +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-4 +igt at kms_frontbuffer_tracking@fbcdrrs-slowdraw +igt at kms_frontbuffer_tracking@fbcdrrs-suspend 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_pat@pat-index-xe3p-xpc -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 meta_test@fail-result -- 2.34.1 From lucas.demarchi at intel.com Wed Jan 8 20:52:51 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Wed, 8 Jan 2025 12:52:51 -0800 Subject: [PATCH i-g-t] Revert tests/kms_histogram: Fix build breakage Message-ID: <20250108205251.1645069-1-lucas.demarchi@intel.com> This reverts commits 8911eff2c6c0 ("tests/kms_histogram: Add check for libghe version") 6e93c2e807b3 ("tests/kms_histogram: Added IGT support to validate global histogram") Ths addition of libghe version check didn't really work as the released libghe exposes a 1.0.0 version: Run-time dependency libghe found: YES 1.0 Let's revert this and come back to that when there's a released libghe that works and doesn't keep changing the API. Cc: Kamil Konieczny Cc: Mohammed Thasleem Cc: Arun R Murthy Cc: Nemesa Garg Signed-off-by: Lucas De Marchi --- lib/igt_kms.c | 23 --- lib/igt_kms.h | 5 - meson.build | 5 - tests/kms_histogram.c | 349 ------------------------------------------ tests/meson.build | 2 - 5 files changed, 384 deletions(-) delete mode 100644 tests/kms_histogram.c diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 95e3059f7..9d21cce1e 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -714,9 +714,6 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { [IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR", [IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED", [IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER", - [IGT_CRTC_HISTOGRAM] = "HISTOGRAM_ENABLE", - [IGT_CRTC_GLOBAL_HISTOGRAM] = "HISTOGRAM_DATA", - [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "HISTOGRAM_IET", }; const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = { @@ -2618,9 +2615,6 @@ static void igt_pipe_reset(igt_pipe_t *pipe) if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_VRR_ENABLED)) igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_VRR_ENABLED, 0); - if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM)) - igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0); - pipe->out_fence_fd = -1; } @@ -5649,23 +5643,6 @@ bool igt_lease_change_detected(struct udev_monitor *mon, int timeout_secs) ARRAY_SIZE(props)); } -/** - * igt_global_histogram_event_detected: - * @mon: A udev monitor initialized with #igt_watch_uevents - * @timeout_secs: How long to wait for a lease change event to occur. - * - * Detect if a global Histogram event was received since we last checked the monitor. - * - * Returns: true if a sysfs global Histogram event was received, false if we timed out - */ -bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs) -{ - const char *props[1] = {"HISTOGRAM"}; - int expected_val = 1; - - return event_detected(mon, timeout_secs, props, &expected_val, ARRAY_SIZE(props)); -} - /** * igt_flush_uevents: * @mon: A udev monitor initialized with #igt_watch_uevents diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 1e2a927ab..8810123fb 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -165,9 +165,6 @@ enum igt_atomic_crtc_properties { IGT_CRTC_OUT_FENCE_PTR, IGT_CRTC_VRR_ENABLED, IGT_CRTC_SCALING_FILTER, - IGT_CRTC_HISTOGRAM, - IGT_CRTC_GLOBAL_HISTOGRAM, - IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR, IGT_NUM_CRTC_PROPS }; @@ -1143,8 +1140,6 @@ void igt_cleanup_uevents(struct udev_monitor *mon); bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, uint64_t modifier); bool igt_plane_has_format_mod(igt_plane_t *plane, uint32_t format, uint64_t modifier); -bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs); - /** * igt_vblank_after_eq: * @a: First vblank sequence number. diff --git a/meson.build b/meson.build index 5eda2d582..ed2a79d5a 100644 --- a/meson.build +++ b/meson.build @@ -197,11 +197,6 @@ else chamelium = disabler() endif -libghe = dependency('libghe', version : '>=0.2.0', required : false) -if libghe.found() - config.set('HAVE_LIBGHE', 1) -endif - build_info += 'Build Chamelium test: @0@'.format(chamelium.found()) pthreads = dependency('threads') diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c deleted file mode 100644 index 3d59304ba..000000000 --- a/tests/kms_histogram.c +++ /dev/null @@ -1,349 +0,0 @@ -// SPDX-License-Identifier: MIT -/* - * Copyright ? 2024 Intel Corporation - */ - -/** - * TEST: kms histogram - * Category: Display - * Description: Test to verify histogram features. - * Functionality: histogram - * Mega feature: Display - * Test category: functionality test - */ - -#include -#include -#include -#include -#include -#include - -#include "igt.h" -#include "igt_vec.h" -#ifdef HAVE_LIBGHE -#include "ghe.h" -#endif - -#define GLOBAL_HIST_DISABLE 0 -#define GLOBAL_HIST_ENABLE 1 -#define GLOBAL_HIST_DELAY 2 -#define FLIP_COUNT 20 - -/** - * SUBTEST: global-basic - * Description: Test to enable histogram, flip monochrome fbs, wait for - * histogram event and then read the histogram data - * - * SUBTEST: global-color - * Description: Test to enable histogram, flip color fbs, wait for - * histogram event and then read the histogram data - * - * SUBTEST: algo-basic - * Description: Test to enable histogram, flip monochrome fbs, wait for - * histogram event and then read the histogram data and enhance pixels by - * multiplying by a pixel factor using algo - * - * SUBTEST: algo-color - * Description: Test to enable histogram, flip color fbs, wait for histogram event - * and then read the histogram data and enhance pixels by multiplying - * by a pixel factor using algo - */ - -IGT_TEST_DESCRIPTION("This test will verify the display histogram."); - -typedef struct data { - igt_display_t display; - int drm_fd; - igt_fb_t fb[5]; -} data_t; - -typedef void (*test_t)(data_t*, enum pipe, igt_output_t*, drmModePropertyBlobRes*); - -static void enable_and_verify_global_histogram(data_t *data, enum pipe pipe) -{ - uint32_t global_hist_value; - - /* Enable global_hist */ - igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE); - igt_display_commit2(&data->display, COMMIT_ATOMIC); - - /* Verify if global_hist is enabled */ - global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM); - igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to enable global_hist\n"); -} - -static void disable_and_verify_global_histogram(data_t *data, enum pipe pipe) -{ - uint32_t global_hist_value; - - /* Disable global_hist */ - igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE); - igt_display_commit2(&data->display, COMMIT_ATOMIC); - - /* Verify if global_hist is disabled */ - global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM); - igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to disable global_hist\n"); -} - -static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t *output) -{ - igt_plane_t *plane; - - disable_and_verify_global_histogram(data, pipe); - - for_each_plane_on_pipe(&data->display, pipe, plane) - igt_plane_set_fb(plane, NULL); - igt_output_set_pipe(output, PIPE_NONE); - igt_display_commit2(&data->display, COMMIT_ATOMIC); - igt_remove_fb(data->display.drm_fd, &data->fb[0]); - igt_remove_fb(data->display.drm_fd, &data->fb[1]); - igt_remove_fb(data->display.drm_fd, &data->fb[2]); - igt_remove_fb(data->display.drm_fd, &data->fb[3]); - igt_remove_fb(data->display.drm_fd, &data->fb[4]); -} - -static drmModePropertyBlobRes *get_global_histogram_data(data_t *data, enum pipe pipe) -{ - uint64_t blob_id; - - blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe], - IGT_CRTC_GLOBAL_HISTOGRAM); - if (blob_id == 0) - return NULL; - - return drmModeGetPropertyBlob(data->drm_fd, blob_id); -} - -static void read_global_histogram(data_t *data, enum pipe pipe, - drmModePropertyBlobRes **hist_blob_ptr) -{ - uint32_t *histogram_ptr; - drmModePropertyBlobRes *global_hist_blob = NULL; - - igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global histogram blob.\n"); - do { - global_hist_blob = get_global_histogram_data(data, pipe); - } while (!global_hist_blob); - - igt_reset_timeout(); - - *hist_blob_ptr = global_hist_blob; - histogram_ptr = (uint32_t *)global_hist_blob->data; - for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr); i++) - igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++)); -} - -#ifdef HAVE_LIBGHE -static void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size) -{ - uint32_t i; - - for (i = 0; i < size; i++) { - /* Displaying IET LUT */ - igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i)); - } - - igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR, - dietfactor, size); -} - -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); - - return argsPtr; -} - -static void algo_image_enhancement_factor(data_t *data, enum pipe pipe, - igt_output_t *output, - drmModePropertyBlobRes *global_hist_blob) -{ - struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob, output); - - igt_assert(args); - igt_debug("Writing pixel factor blob.\n"); - - set_pixel_factor(&data->display.pipes[pipe], args->dietfactor, - ARRAY_SIZE(args->dietfactor)); - free(args); - - igt_display_commit2(&data->display, COMMIT_ATOMIC); -} -#endif - -static void create_monochrome_fbs(data_t *data, drmModeModeInfo *mode) -{ - /* TODO: Extend the tests for different formats/modifiers. */ - /* These frame buffers used to flip monochrome fbs to get histogram event. */ - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, - 0, 0, 0, &data->fb[0])); - - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, - 1, 1, 1, &data->fb[1])); -} - -static void create_color_fbs(data_t *data, drmModeModeInfo *mode) -{ - /* TODO: Extend the tests for different formats/modifiers. */ - /* These frame buffers used to flip color fbs to get histogram event. */ - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, - 0.5, 0, 0.5, &data->fb[0])); - - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, - 1, 0, 0, &data->fb[1])); - - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, - 0, 1, 0, &data->fb[2])); - - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, - 0, 0, 1, &data->fb[3])); - - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, - 1, 0, 1, &data->fb[4])); -} - -static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output, struct igt_fb *fb) -{ - igt_plane_set_fb(igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY), fb); - igt_display_commit2(&data->display, COMMIT_ATOMIC); -} - -static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t *output, bool color_fb) -{ - int i; - struct udev_monitor *mon = igt_watch_uevents(); - drmModeModeInfo *mode = igt_output_get_mode(output); - bool event_detected = false; - int fb_count = color_fb ? 5 : 2; - - if (color_fb) - create_color_fbs(data, mode); - else - create_monochrome_fbs(data, mode); - - flip_fb(data, pipe, output, &data->fb[0]); - enable_and_verify_global_histogram(data, pipe); - - igt_flush_uevents(mon); - for (i = 1; i <= FLIP_COUNT; i++) { - flip_fb(data, pipe, output, &data->fb[i % fb_count]); - - /* Check for histogram event on every flip and break the loop if detected. */ - if (igt_global_histogram_event_detected(mon, 0)) { - event_detected = true; - break; - } - } - - igt_cleanup_uevents(mon); - igt_assert_f(event_detected, "Histogram event not generated.\n"); -} - -static void run_global_histogram_pipeline(data_t *data, enum pipe pipe, igt_output_t *output, - bool color_fb, test_t test_pixel_factor) -{ - drmModePropertyBlobRes *global_hist_blob = NULL; - - prepare_pipe(data, pipe, output, color_fb); - - read_global_histogram(data, pipe, &global_hist_blob); - - if (test_pixel_factor) - test_pixel_factor(data, pipe, output, global_hist_blob); - - drmModeFreePropertyBlob(global_hist_blob); - cleanup_pipe(data, pipe, output); -} - -static void run_tests_for_global_histogram(data_t *data, bool color_fb, - test_t test_pixel_factor) -{ - enum pipe pipe; - igt_output_t *output; - - for_each_connected_output(&data->display, output) { - for_each_pipe(&data->display, pipe) { - if (!igt_pipe_obj_has_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM)) - continue; - - igt_display_reset(&data->display); - - igt_output_set_pipe(output, pipe); - if (!intel_pipe_output_combo_valid(&data->display)) - continue; - - igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) - run_global_histogram_pipeline(data, pipe, output, color_fb, test_pixel_factor); - } - } -} - -static void run_algo_test(data_t *data, bool color_fb) -{ -#ifdef HAVE_LIBGHE - run_tests_for_global_histogram(data, color_fb, algo_image_enhancement_factor); -#else - igt_skip("Histogram algorithm library not found.\n"); -#endif -} - -igt_main -{ - data_t data = {}; - - igt_fixture { - data.drm_fd = drm_open_driver_master(DRIVER_ANY); - kmstest_set_vt_graphics_mode(); - igt_display_require(&data.display, data.drm_fd); - igt_display_require_output(&data.display); - igt_require(data.display.is_atomic); - } - - igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram " - "event and then read the histogram data."); - igt_subtest_with_dynamic("global-basic") - run_tests_for_global_histogram(&data, false, NULL); - - igt_describe("Test to enable histogram, flip color fbs, wait for histogram event " - "and then read the histogram data."); - igt_subtest_with_dynamic("global-color") - run_tests_for_global_histogram(&data, true, NULL); - - igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram " - "event and then read the histogram data and enhance pixels by multiplying " - "by a pixel factor using algo."); - igt_subtest_with_dynamic("algo-basic") - run_algo_test(&data, false); - - igt_describe("Test to enable histogram, flip color fbs, wait for histogram event " - "and then read the histogram data and enhance pixels by multiplying " - "by a pixel factor using algo."); - igt_subtest_with_dynamic("algo-color") - run_algo_test(&data, true); - - igt_fixture { - igt_display_fini(&data.display); - drm_close_driver(data.drm_fd); - } -} diff --git a/tests/meson.build b/tests/meson.build index 89bba6454..2724c7a9a 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -37,7 +37,6 @@ test_progs = [ 'kms_getfb', 'kms_hdmi_inject', 'kms_hdr', - 'kms_histogram', 'kms_invalid_mode', 'kms_lease', 'kms_multipipe_modeset', @@ -381,7 +380,6 @@ extra_dependencies = { 'gem_eio': [ realtime ], 'gem_exec_balancer': [ lib_igt_perf ], 'gem_mmap_offset': [ libatomic ], - 'kms_histogram': [ libghe ], 'i915_pm_freq_mult': [ lib_igt_perf ], 'i915_pm_rc6_residency': [ lib_igt_perf ], 'perf': [ lib_igt_i915_perf ], -- 2.47.0 From patchwork at emeril.freedesktop.org Wed Jan 8 22:50:39 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 08 Jan 2025 22:50:39 -0000 Subject: =?utf-8?q?=E2=9C=97_Fi=2ECI=2EBUILD=3A_failure_for_series_starting_with_=5Bi?= =?utf-8?q?-g-t=2C1/2=5D_tests/intel/kms=5Ffrontbuffer=5Ftracking=3A_Add_ski?= =?utf-8?q?p_condition_for_bmg_platform?= In-Reply-To: <20250108203919.120910-1-mohammed.thasleem@intel.com> References: <20250108203919.120910-1-mohammed.thasleem@intel.com> Message-ID: <173637663915.1431162.16276709495230305314@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,1/2] tests/intel/kms_frontbuffer_tracking: Add skip condition for bmg platform URL : https://patchwork.freedesktop.org/series/143272/ State : failure == Summary == Applying: tests/intel/kms_frontbuffer_tracking: Add skip condition for bmg platform Applying: HAX: DO NOT MERGE Patch failed at 0002 HAX: DO NOT MERGE When you have resolved this problem, run "git am --continue". If you prefer to skip this patch, run "git am --skip" instead. To restore the original branch and stop patching, run "git am --abort". From stuart.summers at intel.com Wed Jan 8 22:54:24 2025 From: stuart.summers at intel.com (Stuart Summers) Date: Wed, 8 Jan 2025 22:54:24 +0000 Subject: [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes Message-ID: <20250108225424.95051-1-stuart.summers@intel.com> The test is submitting workloads in a tight loop and then destroying the exec queue for each of these. There is a potential that the GuC IDs could get used up during these submissions and before a GT reset goes through. If that happens, the subsequent submissions will essentially be "lost" in that they aren't submitted to GuC and just wait for a submission timeout to happen, at which point we do a reset_async in the driver. What seems to be happening however is these workloads are lingering beyond the completion of the xe_exec_reset test. Then when the reset_async eventually goes through, the submissions from a next test can also hang (or possibly because they too ran into the guc_id exhaustion case). Add an explicit vm_unbind before destroying the VM to give time for those submissions to complete before the test ends. https://gitlab.freedesktop.org/drm/xe/kernel/issues/4015 Signed-off-by: Stuart Summers --- tests/intel/xe_exec_reset.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c index a3eaf8bbf..ca5566d11 100644 --- a/tests/intel/xe_exec_reset.c +++ b/tests/intel/xe_exec_reset.c @@ -645,6 +645,8 @@ static void submit_jobs(struct gt_thread_data *t) xe_exec_queue_destroy(fd, exec.exec_queue_id); } + xe_vm_unbind_sync(fd, vm, 0, addr, bo_size); + munmap(data, bo_size); gem_close(fd, bo); xe_vm_destroy(fd, vm); -- 2.34.1 From kamil.konieczny at linux.intel.com Wed Jan 8 22:55:32 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Wed, 8 Jan 2025 23:55:32 +0100 Subject: [PATCH i-g-t] Revert tests/kms_histogram: Fix build breakage In-Reply-To: <20250108205251.1645069-1-lucas.demarchi@intel.com> References: <20250108205251.1645069-1-lucas.demarchi@intel.com> Message-ID: <20250108225532.xxxicdfjcwup7b76@kamilkon-desk.igk.intel.com> Hi Lucas, On 2025-01-08 at 12:52:51 -0800, Lucas De Marchi wrote: > This reverts commits > 8911eff2c6c0 ("tests/kms_histogram: Add check for libghe version") > 6e93c2e807b3 ("tests/kms_histogram: Added IGT support to validate global histogram") > > Ths addition of libghe version check didn't really work as the released > libghe exposes a 1.0.0 version: > > Run-time dependency libghe found: YES 1.0 This looks like improper package generation in our CI, we could go with revert or make more meson checks like in version 2 ("tests/kms_histogram: Add check for ghe api call") https://patchwork.freedesktop.org/series/143142/#rev2 in meson.build: cc = meson.get_compiler('c') if cc.has_function('histogram_compute_generate_data_bin', dependencies: libghe) config.set('HAVE_LIBGHE', 1) else message('libghe do not have the required function') endif Btw proper function name is present now in https://github.com/intel/ghe so I will resend v2 of above change with subject changed: meson: Add check for libghe histogram function Regards, Kamil > > Let's revert this and come back to that when there's a released libghe > that works and doesn't keep changing the API. > > Cc: Kamil Konieczny > Cc: Mohammed Thasleem > Cc: Arun R Murthy > Cc: Nemesa Garg > Signed-off-by: Lucas De Marchi > --- > lib/igt_kms.c | 23 --- > lib/igt_kms.h | 5 - > meson.build | 5 - > tests/kms_histogram.c | 349 ------------------------------------------ > tests/meson.build | 2 - > 5 files changed, 384 deletions(-) > delete mode 100644 tests/kms_histogram.c > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 95e3059f7..9d21cce1e 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -714,9 +714,6 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { > [IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR", > [IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED", > [IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER", > - [IGT_CRTC_HISTOGRAM] = "HISTOGRAM_ENABLE", > - [IGT_CRTC_GLOBAL_HISTOGRAM] = "HISTOGRAM_DATA", > - [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "HISTOGRAM_IET", > }; > > const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = { > @@ -2618,9 +2615,6 @@ static void igt_pipe_reset(igt_pipe_t *pipe) > if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_VRR_ENABLED)) > igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_VRR_ENABLED, 0); > > - if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM)) > - igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0); > - > pipe->out_fence_fd = -1; > } > > @@ -5649,23 +5643,6 @@ bool igt_lease_change_detected(struct udev_monitor *mon, int timeout_secs) > ARRAY_SIZE(props)); > } > > -/** > - * igt_global_histogram_event_detected: > - * @mon: A udev monitor initialized with #igt_watch_uevents > - * @timeout_secs: How long to wait for a lease change event to occur. > - * > - * Detect if a global Histogram event was received since we last checked the monitor. > - * > - * Returns: true if a sysfs global Histogram event was received, false if we timed out > - */ > -bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs) > -{ > - const char *props[1] = {"HISTOGRAM"}; > - int expected_val = 1; > - > - return event_detected(mon, timeout_secs, props, &expected_val, ARRAY_SIZE(props)); > -} > - > /** > * igt_flush_uevents: > * @mon: A udev monitor initialized with #igt_watch_uevents > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index 1e2a927ab..8810123fb 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -165,9 +165,6 @@ enum igt_atomic_crtc_properties { > IGT_CRTC_OUT_FENCE_PTR, > IGT_CRTC_VRR_ENABLED, > IGT_CRTC_SCALING_FILTER, > - IGT_CRTC_HISTOGRAM, > - IGT_CRTC_GLOBAL_HISTOGRAM, > - IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR, > IGT_NUM_CRTC_PROPS > }; > > @@ -1143,8 +1140,6 @@ void igt_cleanup_uevents(struct udev_monitor *mon); > bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, uint64_t modifier); > bool igt_plane_has_format_mod(igt_plane_t *plane, uint32_t format, uint64_t modifier); > > -bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs); > - > /** > * igt_vblank_after_eq: > * @a: First vblank sequence number. > diff --git a/meson.build b/meson.build > index 5eda2d582..ed2a79d5a 100644 > --- a/meson.build > +++ b/meson.build > @@ -197,11 +197,6 @@ else > chamelium = disabler() > endif > > -libghe = dependency('libghe', version : '>=0.2.0', required : false) > -if libghe.found() > - config.set('HAVE_LIBGHE', 1) > -endif > - > build_info += 'Build Chamelium test: @0@'.format(chamelium.found()) > > pthreads = dependency('threads') > diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c > deleted file mode 100644 > index 3d59304ba..000000000 > --- a/tests/kms_histogram.c > +++ /dev/null > @@ -1,349 +0,0 @@ > -// SPDX-License-Identifier: MIT > -/* > - * Copyright ? 2024 Intel Corporation > - */ > - > -/** > - * TEST: kms histogram > - * Category: Display > - * Description: Test to verify histogram features. > - * Functionality: histogram > - * Mega feature: Display > - * Test category: functionality test > - */ > - > -#include > -#include > -#include > -#include > -#include > -#include > - > -#include "igt.h" > -#include "igt_vec.h" > -#ifdef HAVE_LIBGHE > -#include "ghe.h" > -#endif > - > -#define GLOBAL_HIST_DISABLE 0 > -#define GLOBAL_HIST_ENABLE 1 > -#define GLOBAL_HIST_DELAY 2 > -#define FLIP_COUNT 20 > - > -/** > - * SUBTEST: global-basic > - * Description: Test to enable histogram, flip monochrome fbs, wait for > - * histogram event and then read the histogram data > - * > - * SUBTEST: global-color > - * Description: Test to enable histogram, flip color fbs, wait for > - * histogram event and then read the histogram data > - * > - * SUBTEST: algo-basic > - * Description: Test to enable histogram, flip monochrome fbs, wait for > - * histogram event and then read the histogram data and enhance pixels by > - * multiplying by a pixel factor using algo > - * > - * SUBTEST: algo-color > - * Description: Test to enable histogram, flip color fbs, wait for histogram event > - * and then read the histogram data and enhance pixels by multiplying > - * by a pixel factor using algo > - */ > - > -IGT_TEST_DESCRIPTION("This test will verify the display histogram."); > - > -typedef struct data { > - igt_display_t display; > - int drm_fd; > - igt_fb_t fb[5]; > -} data_t; > - > -typedef void (*test_t)(data_t*, enum pipe, igt_output_t*, drmModePropertyBlobRes*); > - > -static void enable_and_verify_global_histogram(data_t *data, enum pipe pipe) > -{ > - uint32_t global_hist_value; > - > - /* Enable global_hist */ > - igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE); > - igt_display_commit2(&data->display, COMMIT_ATOMIC); > - > - /* Verify if global_hist is enabled */ > - global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM); > - igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to enable global_hist\n"); > -} > - > -static void disable_and_verify_global_histogram(data_t *data, enum pipe pipe) > -{ > - uint32_t global_hist_value; > - > - /* Disable global_hist */ > - igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE); > - igt_display_commit2(&data->display, COMMIT_ATOMIC); > - > - /* Verify if global_hist is disabled */ > - global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM); > - igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to disable global_hist\n"); > -} > - > -static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t *output) > -{ > - igt_plane_t *plane; > - > - disable_and_verify_global_histogram(data, pipe); > - > - for_each_plane_on_pipe(&data->display, pipe, plane) > - igt_plane_set_fb(plane, NULL); > - igt_output_set_pipe(output, PIPE_NONE); > - igt_display_commit2(&data->display, COMMIT_ATOMIC); > - igt_remove_fb(data->display.drm_fd, &data->fb[0]); > - igt_remove_fb(data->display.drm_fd, &data->fb[1]); > - igt_remove_fb(data->display.drm_fd, &data->fb[2]); > - igt_remove_fb(data->display.drm_fd, &data->fb[3]); > - igt_remove_fb(data->display.drm_fd, &data->fb[4]); > -} > - > -static drmModePropertyBlobRes *get_global_histogram_data(data_t *data, enum pipe pipe) > -{ > - uint64_t blob_id; > - > - blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe], > - IGT_CRTC_GLOBAL_HISTOGRAM); > - if (blob_id == 0) > - return NULL; > - > - return drmModeGetPropertyBlob(data->drm_fd, blob_id); > -} > - > -static void read_global_histogram(data_t *data, enum pipe pipe, > - drmModePropertyBlobRes **hist_blob_ptr) > -{ > - uint32_t *histogram_ptr; > - drmModePropertyBlobRes *global_hist_blob = NULL; > - > - igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global histogram blob.\n"); > - do { > - global_hist_blob = get_global_histogram_data(data, pipe); > - } while (!global_hist_blob); > - > - igt_reset_timeout(); > - > - *hist_blob_ptr = global_hist_blob; > - histogram_ptr = (uint32_t *)global_hist_blob->data; > - for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr); i++) > - igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++)); > -} > - > -#ifdef HAVE_LIBGHE > -static void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size) > -{ > - uint32_t i; > - > - for (i = 0; i < size; i++) { > - /* Displaying IET LUT */ > - igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i)); > - } > - > - igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR, > - dietfactor, size); > -} > - > -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); > - > - return argsPtr; > -} > - > -static void algo_image_enhancement_factor(data_t *data, enum pipe pipe, > - igt_output_t *output, > - drmModePropertyBlobRes *global_hist_blob) > -{ > - struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob, output); > - > - igt_assert(args); > - igt_debug("Writing pixel factor blob.\n"); > - > - set_pixel_factor(&data->display.pipes[pipe], args->dietfactor, > - ARRAY_SIZE(args->dietfactor)); > - free(args); > - > - igt_display_commit2(&data->display, COMMIT_ATOMIC); > -} > -#endif > - > -static void create_monochrome_fbs(data_t *data, drmModeModeInfo *mode) > -{ > - /* TODO: Extend the tests for different formats/modifiers. */ > - /* These frame buffers used to flip monochrome fbs to get histogram event. */ > - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, > - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > - 0, 0, 0, &data->fb[0])); > - > - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, > - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > - 1, 1, 1, &data->fb[1])); > -} > - > -static void create_color_fbs(data_t *data, drmModeModeInfo *mode) > -{ > - /* TODO: Extend the tests for different formats/modifiers. */ > - /* These frame buffers used to flip color fbs to get histogram event. */ > - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, > - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > - 0.5, 0, 0.5, &data->fb[0])); > - > - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, > - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > - 1, 0, 0, &data->fb[1])); > - > - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, > - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > - 0, 1, 0, &data->fb[2])); > - > - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, > - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > - 0, 0, 1, &data->fb[3])); > - > - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, > - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > - 1, 0, 1, &data->fb[4])); > -} > - > -static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output, struct igt_fb *fb) > -{ > - igt_plane_set_fb(igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY), fb); > - igt_display_commit2(&data->display, COMMIT_ATOMIC); > -} > - > -static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t *output, bool color_fb) > -{ > - int i; > - struct udev_monitor *mon = igt_watch_uevents(); > - drmModeModeInfo *mode = igt_output_get_mode(output); > - bool event_detected = false; > - int fb_count = color_fb ? 5 : 2; > - > - if (color_fb) > - create_color_fbs(data, mode); > - else > - create_monochrome_fbs(data, mode); > - > - flip_fb(data, pipe, output, &data->fb[0]); > - enable_and_verify_global_histogram(data, pipe); > - > - igt_flush_uevents(mon); > - for (i = 1; i <= FLIP_COUNT; i++) { > - flip_fb(data, pipe, output, &data->fb[i % fb_count]); > - > - /* Check for histogram event on every flip and break the loop if detected. */ > - if (igt_global_histogram_event_detected(mon, 0)) { > - event_detected = true; > - break; > - } > - } > - > - igt_cleanup_uevents(mon); > - igt_assert_f(event_detected, "Histogram event not generated.\n"); > -} > - > -static void run_global_histogram_pipeline(data_t *data, enum pipe pipe, igt_output_t *output, > - bool color_fb, test_t test_pixel_factor) > -{ > - drmModePropertyBlobRes *global_hist_blob = NULL; > - > - prepare_pipe(data, pipe, output, color_fb); > - > - read_global_histogram(data, pipe, &global_hist_blob); > - > - if (test_pixel_factor) > - test_pixel_factor(data, pipe, output, global_hist_blob); > - > - drmModeFreePropertyBlob(global_hist_blob); > - cleanup_pipe(data, pipe, output); > -} > - > -static void run_tests_for_global_histogram(data_t *data, bool color_fb, > - test_t test_pixel_factor) > -{ > - enum pipe pipe; > - igt_output_t *output; > - > - for_each_connected_output(&data->display, output) { > - for_each_pipe(&data->display, pipe) { > - if (!igt_pipe_obj_has_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM)) > - continue; > - > - igt_display_reset(&data->display); > - > - igt_output_set_pipe(output, pipe); > - if (!intel_pipe_output_combo_valid(&data->display)) > - continue; > - > - igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) > - run_global_histogram_pipeline(data, pipe, output, color_fb, test_pixel_factor); > - } > - } > -} > - > -static void run_algo_test(data_t *data, bool color_fb) > -{ > -#ifdef HAVE_LIBGHE > - run_tests_for_global_histogram(data, color_fb, algo_image_enhancement_factor); > -#else > - igt_skip("Histogram algorithm library not found.\n"); > -#endif > -} > - > -igt_main > -{ > - data_t data = {}; > - > - igt_fixture { > - data.drm_fd = drm_open_driver_master(DRIVER_ANY); > - kmstest_set_vt_graphics_mode(); > - igt_display_require(&data.display, data.drm_fd); > - igt_display_require_output(&data.display); > - igt_require(data.display.is_atomic); > - } > - > - igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram " > - "event and then read the histogram data."); > - igt_subtest_with_dynamic("global-basic") > - run_tests_for_global_histogram(&data, false, NULL); > - > - igt_describe("Test to enable histogram, flip color fbs, wait for histogram event " > - "and then read the histogram data."); > - igt_subtest_with_dynamic("global-color") > - run_tests_for_global_histogram(&data, true, NULL); > - > - igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram " > - "event and then read the histogram data and enhance pixels by multiplying " > - "by a pixel factor using algo."); > - igt_subtest_with_dynamic("algo-basic") > - run_algo_test(&data, false); > - > - igt_describe("Test to enable histogram, flip color fbs, wait for histogram event " > - "and then read the histogram data and enhance pixels by multiplying " > - "by a pixel factor using algo."); > - igt_subtest_with_dynamic("algo-color") > - run_algo_test(&data, true); > - > - igt_fixture { > - igt_display_fini(&data.display); > - drm_close_driver(data.drm_fd); > - } > -} > diff --git a/tests/meson.build b/tests/meson.build > index 89bba6454..2724c7a9a 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -37,7 +37,6 @@ test_progs = [ > 'kms_getfb', > 'kms_hdmi_inject', > 'kms_hdr', > - 'kms_histogram', > 'kms_invalid_mode', > 'kms_lease', > 'kms_multipipe_modeset', > @@ -381,7 +380,6 @@ extra_dependencies = { > 'gem_eio': [ realtime ], > 'gem_exec_balancer': [ lib_igt_perf ], > 'gem_mmap_offset': [ libatomic ], > - 'kms_histogram': [ libghe ], > 'i915_pm_freq_mult': [ lib_igt_perf ], > 'i915_pm_rc6_residency': [ lib_igt_perf ], > 'perf': [ lib_igt_i915_perf ], > -- > 2.47.0 > From patchwork at emeril.freedesktop.org Wed Jan 8 22:58:13 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 08 Jan 2025 22:58:13 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Add_pci=5Fmembarrier_test_?= =?utf-8?q?in_xe=5Fmmap_=28rev9=29?= In-Reply-To: <20250107140023.2940684-1-tejas.upadhyay@intel.com> References: <20250107140023.2940684-1-tejas.upadhyay@intel.com> Message-ID: <173637709366.1434434.2798487701325931301@b555e5b46a47> == Series Details == Series: Add pci_membarrier test in xe_mmap (rev9) URL : https://patchwork.freedesktop.org/series/141296/ State : failure == Summary == CI Bug Log - changes from XEIGT_8179_full -> XEIGTPW_12395_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12395_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12395_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_12395_full: ### IGT changes ### #### Possible regressions #### * igt at kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_pm_rpm@basic-pci-d3-state.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_psr@fbc-psr2-dpms: - shard-lnl: [PASS][3] -> [FAIL][4] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-4/igt at kms_psr@fbc-psr2-dpms.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-6/igt at kms_psr@fbc-psr2-dpms.html * igt at xe_mmap@pci-membarrier (NEW): - shard-lnl: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-5/igt at xe_mmap@pci-membarrier.html * igt at xe_mmap@pci-membarrier-bad-object (NEW): - shard-bmg: NOTRUN -> [SKIP][6] +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at xe_mmap@pci-membarrier-bad-object.html * igt at xe_mmap@pci-membarrier-bad-pagesize (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][7] +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at xe_mmap@pci-membarrier-bad-pagesize.html New tests --------- New tests have been introduced between XEIGT_8179_full and XEIGTPW_12395_full: ### New IGT tests (4) ### * igt at xe_mmap@pci-membarrier: - Statuses : 3 skip(s) - Exec time: [0.0, 0.00] s * igt at xe_mmap@pci-membarrier-bad-object: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at xe_mmap@pci-membarrier-bad-pagesize: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at xe_mmap@pci-membarrier-parallel: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12395_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [PASS][8] -> [SKIP][9] ([Intel XE#1885]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at core_hotunplug@hotunplug-rescan.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at core_hotunplug@hotunplug-rescan.html * igt at core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#3453]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at core_setmaster@master-drop-set-shared-fd.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at core_setmaster@master-drop-set-shared-fd.html * igt at fbdev@info: - shard-dg2-set2: [PASS][12] -> [SKIP][13] ([Intel XE#2134]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at fbdev@info.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at fbdev@info.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1125]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-6/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1466]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-2/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#873]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#2423] / [i915#2575]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1407]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@x-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2327]) +4 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_big_fb@x-tiled-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2328]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#610]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +6 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-6/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +7 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2191]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-8/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2314] / [Intel XE#2894]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#367]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#367]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-8/igt at kms_bw@linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1512]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-6/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#787]) +125 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc at pipe-a-hdmi-a-6.html * igt at kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +6 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-8/igt at kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2669]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-3/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: NOTRUN -> [INCOMPLETE][32] ([Intel XE#3862]) +1 other test incomplete [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#3433]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-4/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#3432]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#3432]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-6/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-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_12395/shard-dg2-435/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +15 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2724]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-negative: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2325]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_frames@dp-crc-multiple: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_chamelium_frames@dp-crc-multiple.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#373]) +7 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-5/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2252]) +9 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][43] ([Intel XE#1178]) +3 other tests fail [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_content_protection@atomic.html * igt at kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#3278]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-3/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-type-1: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2390]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2320]) +8 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#2321]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-5/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2321]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-64x21: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1424]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-4/igt at kms_cursor_crc@cursor-rapid-movement-64x21.html * igt at kms_cursor_crc@cursor-sliding-64x64: - shard-dg2-set2: [PASS][50] -> [SKIP][51] ([Intel XE#2423] / [i915#2575]) +139 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_cursor_crc@cursor-sliding-64x64.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_cursor_crc@cursor-sliding-64x64.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#309]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-5/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#3007]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][55] ([Intel XE#877]) +3 other tests dmesg-warn [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/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: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2286]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-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-lnl: NOTRUN -> [SKIP][57] ([Intel XE#323]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#1508]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#1340]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-3.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([i915#3804]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6.html * igt at kms_dp_aux_dev: - shard-dg2-set2: [PASS][61] -> [SKIP][62] ([Intel XE#2423]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_dp_aux_dev.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_dp_aux_dev.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2244]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: NOTRUN -> [FAIL][64] ([Intel XE#1695]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@chamelium: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#701]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-6/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#1138]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_feature_discovery@display-4x.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][67] ([Intel XE#2882]) +3 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/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 ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][68] ([Intel XE#301]) +2 other tests fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/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-suspend at bc-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][69] ([Intel XE#2635]) +1 other test incomplete [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_flip@2x-flip-vs-suspend at bc-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1421]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-1/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@flip-vs-expired-vblank at a-dp2: - shard-bmg: [PASS][71] -> [FAIL][72] ([Intel XE#2882]) +1 other test fail [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html * igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a3: - shard-bmg: [PASS][73] -> [FAIL][74] ([Intel XE#3321]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a3.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][75] ([Intel XE#2597]) +1 other test incomplete [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_flip@flip-vs-suspend at a-hdmi-a3.html * igt at kms_flip@flip-vs-suspend at b-dp2: - shard-bmg: NOTRUN -> [FAIL][76] ([Intel XE#3879]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_flip@flip-vs-suspend at b-dp2.html * igt at kms_flip@plain-flip-ts-check: - shard-lnl: [PASS][77] -> [FAIL][78] ([Intel XE#3149] / [Intel XE#886]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-1/igt at kms_flip@plain-flip-ts-check.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-4/igt at kms_flip@plain-flip-ts-check.html * igt at kms_flip@plain-flip-ts-check at c-edp1: - shard-lnl: [PASS][79] -> [FAIL][80] ([Intel XE#886]) +2 other tests fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-1/igt at kms_flip@plain-flip-ts-check at c-edp1.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-4/igt at kms_flip@plain-flip-ts-check at c-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [PASS][81] -> [SKIP][82] ([Intel XE#2136]) +49 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/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-yftile-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#455]) +6 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1401]) +4 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2293]) +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1401] / [Intel XE#1745]) +4 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt at kms_frontbuffer_tracking@basic: - shard-dg2-set2: [PASS][88] -> [SKIP][89] ([Intel XE#2351]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@basic.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_frontbuffer_tracking@basic.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#651]) +9 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-3/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2311]) +29 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#2136] / [Intel XE#2351]) +19 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#656]) +25 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][95] ([Intel XE#2333]) +23 other tests fail [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#653]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2313]) +37 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2350]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [INCOMPLETE][99] ([Intel XE#3966]) +1 other test incomplete [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#356]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-5/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2486]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_panel_fitting@legacy.html * igt at kms_plane_scaling@intel-max-src-size: - shard-bmg: [PASS][102] -> [SKIP][103] ([Intel XE#2685] / [Intel XE#3307]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_plane_scaling@intel-max-src-size.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-a: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#2763]) +11 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-a.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2763]) +8 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/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-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2763]) +29 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2391]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][109] ([Intel XE#1430]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-3/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2499]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][111] -> [SKIP][112] ([Intel XE#2446]) +6 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#2893]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-1/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#1489]) +12 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2387]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-psr2-primary-page-flip at edp-1: - shard-lnl: [PASS][116] -> [FAIL][117] ([Intel XE#3924]) +1 other test fail [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-3/igt at kms_psr@fbc-psr2-primary-page-flip at edp-1.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-3/igt at kms_psr@fbc-psr2-primary-page-flip at edp-1.html * igt at kms_psr@pr-primary-page-flip: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1406]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-8/igt at kms_psr@pr-primary-page-flip.html * igt at kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2234] / [Intel XE#2850]) +16 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_psr@psr-basic.html * igt at kms_rotation_crc@primary-rotation-270: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2330]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#1127]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-434/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [PASS][123] -> [FAIL][124] ([Intel XE#2883]) +2 other tests fail [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at kms_setmode@basic at pipe-b-edp-1.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-8/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1435]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#1499]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1499]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-6/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-check-output: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#756]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#756]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-3/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#1091] / [Intel XE#2849]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_ccs@suspend-resume at tile4-compressed-compfmt0-system-vram01: - shard-bmg: [PASS][131] -> [FAIL][132] ([Intel XE#3981]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_ccs@suspend-resume at tile4-compressed-compfmt0-system-vram01.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at xe_ccs@suspend-resume at tile4-compressed-compfmt0-system-vram01.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01: - shard-bmg: NOTRUN -> [FAIL][133] ([Intel XE#3981]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html * igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1280] / [Intel XE#455]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2905]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2905]) +14 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#2905]) +5 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-8/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: NOTRUN -> [TIMEOUT][138] ([Intel XE#1473] / [Intel XE#2472]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at xe_evict@evict-mixed-threads-large.html * igt at xe_evict@evict-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_12395/shard-lnl-8/igt at xe_evict@evict-threads-small-multi-vm.html * igt at xe_exec_balancer@twice-cm-parallel-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#1130]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at xe_exec_balancer@twice-cm-parallel-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2322]) +10 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1392]) +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-8/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt at xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2459] / [Intel XE#2596]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at xe_media_fill@media-fill.html * igt at xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1416]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-4/igt at xe_mmap@vram.html * igt at xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2457]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at xe_module_load@force-load.html * igt at xe_module_load@reload-no-display: - shard-dg2-set2: [PASS][146] -> [FAIL][147] ([Intel XE#3546]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_module_load@reload-no-display.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at xe_module_load@reload-no-display.html * igt at xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2248]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][149] ([Intel XE#1173]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@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_12395/shard-lnl-6/igt at xe_pm@d3cold-basic-exec.html * igt at xe_pm@d3cold-mocs: - shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2284]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at xe_pm@d3cold-mocs.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: NOTRUN -> [FAIL][152] ([Intel XE#958]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-4/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-engines: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#944]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-8/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-gt-list: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#944]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at xe_query@multigpu-query-gt-list.html * igt at xe_vm@large-userptr-split-misaligned-binds-536870912: - shard-bmg: [PASS][155] -> [SKIP][156] ([Intel XE#1130]) +4 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_vm@large-userptr-split-misaligned-binds-536870912.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at xe_vm@large-userptr-split-misaligned-binds-536870912.html * igt at xe_vm@munmap-style-unbind-many-either-side-partial: - shard-dg2-set2: [PASS][157] -> [SKIP][158] ([Intel XE#1130]) +247 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_vm@munmap-style-unbind-many-either-side-partial.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at xe_vm@munmap-style-unbind-many-either-side-partial.html #### Possible fixes #### * igt at core_getversion@all-cards: - shard-dg2-set2: [FAIL][159] ([Intel XE#3440]) -> [PASS][160] [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_getversion@all-cards.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-434/igt at core_getversion@all-cards.html * igt at core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: [SKIP][161] ([Intel XE#1885]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_hotunplug@hotreplug-lateclose.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at core_hotunplug@hotreplug-lateclose.html * igt at fbdev@write: - shard-dg2-set2: [SKIP][163] ([Intel XE#2134]) -> [PASS][164] +1 other test pass [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at fbdev@write.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at fbdev@write.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [FAIL][165] ([Intel XE#3701] / [Intel XE#3718] / [Intel XE#827]) -> [PASS][166] [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-dp-2: - shard-bmg: [FAIL][167] ([Intel XE#3701]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-dp-2.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-dp-2.html * igt at kms_big_fb@4-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][169] ([Intel XE#2136]) -> [PASS][170] +38 other tests pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@4-tiled-64bpp-rotate-180.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_big_fb@4-tiled-64bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: [SKIP][171] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_cursor_crc@cursor-suspend: - shard-bmg: [INCOMPLETE][173] ([Intel XE#3878]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_cursor_crc@cursor-suspend.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-d-dp-2: - shard-bmg: [INCOMPLETE][175] -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_cursor_crc@cursor-suspend at pipe-d-dp-2.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_cursor_crc@cursor-suspend at pipe-d-dp-2.html * igt at kms_draw_crc@fill-fb: - shard-dg2-set2: [SKIP][177] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][178] +16 other tests pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_draw_crc@fill-fb.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-434/igt at kms_draw_crc@fill-fb.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [INCOMPLETE][179] ([Intel XE#2597]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-dp2-hdmi-a3.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-wf_vblank-ts-check at ac-dp2-hdmi-a3: - shard-bmg: [FAIL][181] ([Intel XE#2882]) -> [PASS][182] +2 other tests pass [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_flip@2x-wf_vblank-ts-check at ac-dp2-hdmi-a3.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_flip@2x-wf_vblank-ts-check at ac-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][183] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2: - shard-bmg: [FAIL][185] ([Intel XE#3288] / [Intel XE#3321]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html * igt at kms_lease@invalid-create-leases: - shard-dg2-set2: [SKIP][187] ([Intel XE#2423] / [i915#2575]) -> [PASS][188] +121 other tests pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_lease@invalid-create-leases.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-434/igt at kms_lease@invalid-create-leases.html * igt at kms_plane_lowres@tiling-4: - shard-bmg: [SKIP][189] ([Intel XE#3007]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_plane_lowres@tiling-4.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_plane_lowres@tiling-4.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [SKIP][191] ([Intel XE#2446]) -> [PASS][192] +6 other tests pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_rpm@system-suspend-modeset.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][193] ([Intel XE#899]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-4/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [FAIL][195] ([Intel XE#2159]) -> [PASS][196] +1 other test pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-5/igt at kms_vrr@cmrr at pipe-a-edp-1.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-lnl-6/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-vram01: - shard-bmg: [INCOMPLETE][197] ([Intel XE#2771] / [Intel XE#3918]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-vram01.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-vram01.html * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-dg2-set2: [SKIP][199] ([Intel XE#1130]) -> [PASS][200] +209 other tests pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt at xe_exec_balancer@once-virtual-basic: - shard-bmg: [SKIP][201] ([Intel XE#1130]) -> [PASS][202] +4 other tests pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_exec_balancer@once-virtual-basic.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at xe_exec_balancer@once-virtual-basic.html * igt at xe_module_load@load: - shard-bmg: ([PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [SKIP][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225]) ([Intel XE#2457]) -> ([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], [PASS][247], [PASS][248], [PASS][249]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at xe_module_load@load.html * igt at xe_module_load@reload: - shard-dg2-set2: [FAIL][250] ([Intel XE#3546]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_module_load@reload.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at xe_module_load@reload.html * igt at xe_pm_residency@gt-c6-freeze at gt1: - shard-bmg: [FAIL][252] ([Intel XE#4011]) -> [PASS][253] +1 other test pass [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_pm_residency@gt-c6-freeze at gt1.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at xe_pm_residency@gt-c6-freeze at gt1.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][254] ([Intel XE#873]) -> [SKIP][255] ([Intel XE#2423] / [i915#2575]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_async_flips@invalid-async-flip.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-16bpp-rotate-270: - shard-dg2-set2: [SKIP][256] ([Intel XE#316]) -> [SKIP][257] ([Intel XE#2136] / [Intel XE#2351]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@4-tiled-16bpp-rotate-270.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_big_fb@4-tiled-16bpp-rotate-270.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: [SKIP][258] ([Intel XE#316]) -> [SKIP][259] ([Intel XE#2136]) +3 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2-set2: [SKIP][260] ([Intel XE#2136]) -> [SKIP][261] ([Intel XE#316]) +4 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@x-tiled-16bpp-rotate-270.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_big_fb@x-tiled-16bpp-rotate-270.html * igt at kms_big_fb@y-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][262] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][263] ([Intel XE#1124]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_big_fb@y-tiled-16bpp-rotate-270.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_big_fb@y-tiled-16bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][264] ([Intel XE#1124]) -> [SKIP][265] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][266] ([Intel XE#1124]) -> [SKIP][267] ([Intel XE#2136]) +15 other tests skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@yf-tiled-32bpp-rotate-180.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][268] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][269] ([Intel XE#1124]) +6 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][270] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][271] ([Intel XE#619]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-434/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][272] ([Intel XE#2136]) -> [SKIP][273] ([Intel XE#607]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/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][274] ([Intel XE#610]) -> [SKIP][275] ([Intel XE#2136]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][276] ([Intel XE#2136]) -> [SKIP][277] ([Intel XE#1124]) +11 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: [SKIP][278] ([Intel XE#2423] / [i915#2575]) -> [SKIP][279] ([Intel XE#367]) +6 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: [SKIP][280] ([Intel XE#367]) -> [SKIP][281] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: [SKIP][282] ([Intel XE#2191]) -> [SKIP][283] ([Intel XE#2423] / [i915#2575]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: [SKIP][284] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][285] ([Intel XE#2136]) +20 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][286] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][287] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][288] ([Intel XE#2136]) -> [SKIP][289] ([Intel XE#3442]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][290] ([Intel XE#2907]) -> [SKIP][291] ([Intel XE#2136]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][292] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][293] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][294] ([Intel XE#2136]) -> [SKIP][295] ([Intel XE#455] / [Intel XE#787]) +14 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][296] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][297] ([Intel XE#2887]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html * igt at kms_chamelium_color@ctm-0-75: - shard-dg2-set2: [SKIP][298] ([Intel XE#306]) -> [SKIP][299] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_chamelium_color@ctm-0-75.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_chamelium_color@ctm-0-75.html * igt at kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][300] ([Intel XE#2423] / [i915#2575]) -> [SKIP][301] ([Intel XE#306]) +2 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_chamelium_color@ctm-limited-range.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: [SKIP][302] ([Intel XE#2423] / [i915#2575]) -> [SKIP][303] ([Intel XE#373]) +14 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_chamelium_hpd@hdmi-hpd.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][304] ([Intel XE#373]) -> [SKIP][305] ([Intel XE#2423] / [i915#2575]) +16 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_chamelium_hpd@vga-hpd.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_content_protection@dp-mst-type-0: - shard-dg2-set2: [SKIP][306] ([Intel XE#307]) -> [SKIP][307] ([Intel XE#2423] / [i915#2575]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_content_protection@dp-mst-type-0.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][308] ([Intel XE#2423] / [i915#2575]) -> [SKIP][309] ([Intel XE#307]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_content_protection@dp-mst-type-1.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-dg2-set2: [FAIL][310] ([Intel XE#1178]) -> [SKIP][311] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_content_protection@legacy.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-dg2-set2: [INCOMPLETE][312] ([Intel XE#2715]) -> [SKIP][313] ([Intel XE#2423] / [i915#2575]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_content_protection@lic-type-0.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_content_protection@lic-type-0.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][314] ([Intel XE#308]) -> [SKIP][315] ([Intel XE#2423] / [i915#2575]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_cursor_crc@cursor-onscreen-512x170.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: [SKIP][316] ([Intel XE#2423] / [i915#2575]) -> [SKIP][317] ([Intel XE#308]) +2 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x512.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: [SKIP][318] ([Intel XE#323]) -> [SKIP][319] ([Intel XE#2423] / [i915#2575]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/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-dg2-set2: [SKIP][320] ([Intel XE#2423] / [i915#2575]) -> [SKIP][321] ([Intel XE#323]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-434/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dsc@dsc-with-bpc: - shard-dg2-set2: [SKIP][322] ([Intel XE#455]) -> [SKIP][323] ([Intel XE#2136]) +8 other tests skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_dsc@dsc-with-bpc.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_dsc@dsc-with-bpc.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][324] ([Intel XE#2423] / [i915#2575]) -> [SKIP][325] ([Intel XE#701]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_feature_discovery@chamelium.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-434/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][326] ([Intel XE#1138]) -> [SKIP][327] ([Intel XE#2423] / [i915#2575]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_feature_discovery@display-4x.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2-set2: [SKIP][328] ([Intel XE#2423] / [i915#2575]) -> [SKIP][329] ([Intel XE#1137]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_feature_discovery@dp-mst.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][330] ([Intel XE#1135]) -> [SKIP][331] ([Intel XE#2423] / [i915#2575]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_feature_discovery@psr1.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-dg2-set2: [SKIP][332] ([Intel XE#2423] / [i915#2575]) -> [FAIL][333] ([Intel XE#301]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][334] ([Intel XE#301]) -> [SKIP][335] ([Intel XE#2423] / [i915#2575]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-suspend at a-dp2: - shard-bmg: [INCOMPLETE][336] -> [FAIL][337] ([Intel XE#3879]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_flip@flip-vs-suspend at a-dp2.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_flip@flip-vs-suspend at a-dp2.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][338] ([Intel XE#2136]) -> [SKIP][339] ([Intel XE#455]) +4 other tests skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][340] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][341] ([Intel XE#455]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/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-ytile-downscaling: - shard-dg2-set2: [SKIP][342] ([Intel XE#455]) -> [SKIP][343] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][344] ([Intel XE#2136]) -> [SKIP][345] ([Intel XE#651]) +25 other tests skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][346] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][347] ([Intel XE#2311]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][348] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][349] ([Intel XE#651]) +16 other tests skip [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-suspend.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][350] ([Intel XE#651]) -> [SKIP][351] ([Intel XE#2136]) +31 other tests skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][352] ([Intel XE#651]) -> [SKIP][353] ([Intel XE#2136] / [Intel XE#2351]) +19 other tests skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][354] ([Intel XE#653]) -> [SKIP][355] ([Intel XE#2136]) +32 other tests skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][356] ([Intel XE#653]) -> [SKIP][357] ([Intel XE#2136] / [Intel XE#2351]) +15 other tests skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-bmg: [SKIP][358] ([Intel XE#2313]) -> [SKIP][359] ([Intel XE#2136] / [Intel XE#2231]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move: - shard-dg2-set2: [SKIP][360] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][361] ([Intel XE#653]) +6 other tests skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][362] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][363] ([Intel XE#2313]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][364] ([Intel XE#2136]) -> [SKIP][365] ([Intel XE#653]) +33 other tests skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-slowdraw.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_histogram@algo-color: - shard-dg2-set2: [SKIP][366] ([Intel XE#2423] / [i915#2575]) -> [SKIP][367] ([Intel XE#3897]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_histogram@algo-color.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-434/igt at kms_histogram@algo-color.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][368] ([Intel XE#2136]) -> [SKIP][369] ([Intel XE#346]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_joiner@basic-big-joiner.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: [SKIP][370] ([Intel XE#346]) -> [SKIP][371] ([Intel XE#2136]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_joiner@invalid-modeset-big-joiner.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: [SKIP][372] ([Intel XE#2136]) -> [SKIP][373] ([Intel XE#2927]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_joiner@invalid-modeset-ultra-joiner.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg2-set2: [SKIP][374] ([Intel XE#2423] / [i915#2575]) -> [SKIP][375] ([Intel XE#455]) +9 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_panel_fitting@atomic-fastset.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][376] ([Intel XE#361]) -> [SKIP][377] ([Intel XE#2423] / [i915#2575]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/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][378] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][379] ([Intel XE#2423] / [i915#2575]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2-set2: [SKIP][380] ([Intel XE#2423] / [i915#2575]) -> [SKIP][381] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][382] ([Intel XE#870]) -> [SKIP][383] ([Intel XE#2136]) +2 other tests skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_pm_backlight@fade-with-suspend.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: [SKIP][384] ([Intel XE#1129]) -> [SKIP][385] ([Intel XE#2136]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_pm_dc@dc5-psr.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_pm_dc@dc5-psr.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: [SKIP][386] ([Intel XE#2136]) -> [SKIP][387] ([Intel XE#1489]) +9 other tests skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/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-fully-sf: - shard-dg2-set2: [SKIP][388] ([Intel XE#1489]) -> [SKIP][389] ([Intel XE#2136]) +13 other tests skip [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/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-p010: - shard-dg2-set2: [SKIP][390] ([Intel XE#1122]) -> [SKIP][391] ([Intel XE#2136]) +1 other test skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_psr2_su@page_flip-p010.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-cursor-blt: - shard-dg2-set2: [SKIP][392] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][393] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_psr@fbc-pr-cursor-blt.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_psr@fbc-pr-cursor-blt.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][394] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][395] ([Intel XE#2234] / [Intel XE#2850]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_psr@fbc-pr-sprite-blt.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_psr@fbc-pr-suspend: - shard-bmg: [SKIP][396] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][397] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_psr@fbc-pr-suspend.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_psr@fbc-pr-suspend.html * igt at kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][398] ([Intel XE#2136]) -> [SKIP][399] ([Intel XE#2850] / [Intel XE#929]) +16 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr@fbc-psr2-sprite-plane-move.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_psr@fbc-psr2-sprite-plane-move.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: [SKIP][400] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][401] ([Intel XE#2136]) +16 other tests skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@pr-dpms: - shard-dg2-set2: [SKIP][402] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][403] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr@pr-dpms.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_psr@pr-dpms.html * igt at kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][404] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][405] ([Intel XE#2351]) +1 other test skip [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_psr@psr-sprite-plane-onoff.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2-set2: [SKIP][406] ([Intel XE#2423] / [i915#2575]) -> [SKIP][407] ([Intel XE#3414]) +2 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_rotation_crc@bad-tiling.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][408] ([Intel XE#1127]) -> [SKIP][409] ([Intel XE#2423] / [i915#2575]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/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][410] ([Intel XE#3414]) -> [SKIP][411] ([Intel XE#2423] / [i915#2575]) +1 other test skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/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][412] ([Intel XE#2423] / [i915#2575]) -> [SKIP][413] ([Intel XE#1127]) +1 other test skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][414] ([Intel XE#1500]) -> [SKIP][415] ([Intel XE#2423] / [i915#2575]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/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][416] ([Intel XE#330]) -> [SKIP][417] ([Intel XE#2423] / [i915#2575]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_tv_load_detect@load-detect.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_tv_load_detect@load-detect.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-d-dp-2: - shard-bmg: [FAIL][418] -> [INCOMPLETE][419] ([Intel XE#3864]) +1 other test incomplete [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-d-dp-2.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-d-dp-2.html * igt at kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][420] ([Intel XE#455]) -> [SKIP][421] ([Intel XE#2423] / [i915#2575]) +14 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_vrr@flip-dpms.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@lobf: - shard-dg2-set2: [SKIP][422] ([Intel XE#2168]) -> [SKIP][423] ([Intel XE#2423] / [i915#2575]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_vrr@lobf.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg2-set2: [SKIP][424] ([Intel XE#756]) -> [SKIP][425] ([Intel XE#2423] / [i915#2575]) +1 other test skip [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_writeback@writeback-pixel-formats.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at kms_writeback@writeback-pixel-formats.html * igt at xe_ccs@suspend-resume: - shard-bmg: [INCOMPLETE][426] ([Intel XE#2771] / [Intel XE#3918]) -> [FAIL][427] ([Intel XE#3981]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_ccs@suspend-resume.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-5/igt at xe_ccs@suspend-resume.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][428] ([Intel XE#1130]) -> [SKIP][429] ([Intel XE#1280] / [Intel XE#455]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_compute_preempt@compute-threadgroup-preempt.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: [SKIP][430] ([Intel XE#1123]) -> [SKIP][431] ([Intel XE#1130]) +2 other tests skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_copy_basic@mem-copy-linear-0x3fff.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at xe_copy_basic@mem-copy-linear-0x3fff.html * igt at xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][432] ([Intel XE#1130]) -> [SKIP][433] ([Intel XE#1126]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0x3fff.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0x3fff.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][434] ([Intel XE#1126]) -> [SKIP][435] ([Intel XE#1130]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0xfd.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][436] ([Intel XE#2905]) -> [SKIP][437] ([Intel XE#1130]) +22 other tests skip [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_eudebug@basic-close.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at xe_eudebug@basic-close.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-dg2-set2: [SKIP][438] ([Intel XE#3889]) -> [SKIP][439] ([Intel XE#1130]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-bmg: [SKIP][440] ([Intel XE#1130]) -> [SKIP][441] ([Intel XE#3889]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@debugger-reopen: - shard-dg2-set2: [SKIP][442] ([Intel XE#1130]) -> [SKIP][443] ([Intel XE#2905]) +15 other tests skip [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_eudebug_online@debugger-reopen.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at xe_eudebug_online@debugger-reopen.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [SKIP][444] ([Intel XE#1130]) -> [INCOMPLETE][445] ([Intel XE#1473]) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_evict@evict-beng-mixed-many-threads-large.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-434/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_exec_compute_mode@many-userptr-rebind: - shard-dg2-set2: [FAIL][446] -> [SKIP][447] ([Intel XE#1130]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_exec_compute_mode@many-userptr-rebind.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at xe_exec_compute_mode@many-userptr-rebind.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: - shard-dg2-set2: [SKIP][448] ([Intel XE#288]) -> [SKIP][449] ([Intel XE#1130]) +41 other tests skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html * igt at xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: [SKIP][450] ([Intel XE#1130]) -> [SKIP][451] ([Intel XE#288]) +29 other tests skip [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_fault_mode@twice-invalid-fault.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at xe_exec_fault_mode@twice-invalid-fault.html * igt at xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: [SKIP][452] ([Intel XE#1130]) -> [SKIP][453] ([Intel XE#2360]) +1 other test skip [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][454] ([Intel XE#255]) -> [SKIP][455] ([Intel XE#1130]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_huc_copy@huc_copy.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at xe_huc_copy@huc_copy.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: [SKIP][456] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][457] ([Intel XE#1130]) +11 other tests skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_oa@closed-fd-and-unmapped-access.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_oa@mi-rpc: - shard-dg2-set2: [SKIP][458] ([Intel XE#1130]) -> [SKIP][459] ([Intel XE#2541] / [Intel XE#3573]) +9 other tests skip [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_oa@mi-rpc.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at xe_oa@mi-rpc.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][460] ([Intel XE#979]) -> [SKIP][461] ([Intel XE#1130]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_pat@pat-index-xelpg.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@read: - shard-dg2-set2: [SKIP][462] ([Intel XE#1061]) -> [FAIL][463] ([Intel XE#1173]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_peer2peer@read.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at xe_peer2peer@read.html * igt at xe_peer2peer@write: - shard-dg2-set2: [FAIL][464] ([Intel XE#1173]) -> [SKIP][465] ([Intel XE#1061]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_peer2peer@write.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-basic-exec: - shard-dg2-set2: [SKIP][466] ([Intel XE#1130]) -> [SKIP][467] ([Intel XE#2284] / [Intel XE#366]) +4 other tests skip [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_pm@d3cold-basic-exec.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-434/igt at xe_pm@d3cold-basic-exec.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: [SKIP][468] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][469] ([Intel XE#1130]) +1 other test skip [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_pm@s2idle-d3cold-basic-exec.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][470] ([Intel XE#1130]) -> [SKIP][471] ([Intel XE#944]) +2 other tests skip [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_query@multigpu-query-engines.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-436/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-oa-units: - shard-dg2-set2: [SKIP][472] ([Intel XE#944]) -> [SKIP][473] ([Intel XE#1130]) +5 other tests skip [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_query@multigpu-query-oa-units.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-466/igt at xe_query@multigpu-query-oa-units.html * igt at xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [SKIP][474] ([Intel XE#1130]) -> [ABORT][475] ([Intel XE#3075] / [Intel XE#3084]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_wedged@wedged-mode-toggle.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/shard-dg2-435/igt at xe_wedged@wedged-mode-toggle.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [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#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [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#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [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#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [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#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [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#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [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#2771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2771 [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#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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [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#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [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#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [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#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#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#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#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [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#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#3897]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3897 [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#3966]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3966 [Intel XE#3981]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3981 [Intel XE#4011]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4011 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [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#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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8179 -> IGTPW_12395 * Linux: xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571 -> xe-2448-bde58d6ae1762f088585e76d78b5f0efb87154e6 IGTPW_12395: 4bae3651422fbd2fb6d8516b0b5685f3c84772f9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571: 89042e0bb417f4d67280e1d7fa9bbcca51734571 xe-2448-bde58d6ae1762f088585e76d78b5f0efb87154e6: bde58d6ae1762f088585e76d78b5f0efb87154e6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12395/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Wed Jan 8 23:00:17 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Thu, 9 Jan 2025 00:00:17 +0100 Subject: [PATCH i-g-t] meson: Add check for libghe histogram function Message-ID: <20250108230017.212621-1-kamil.konieczny@linux.intel.com> From: Mohammed Thasleem From: Mohammed Thasleem Check libghe for the function needed by igt test at compiling. It should solve a problem when package version do not match values set in github repo. v1: Update subject and description, change message. (Kamil) Cc: Mohammed Thasleem Cc: Arun R Murthy Cc: Nemesa Garg Cc: Lucas De Marchi Signed-off-by: Mohammed Thasleem Signed-off-by: Kamil Konieczny --- meson.build | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/meson.build b/meson.build index 5eda2d582..7c42531d1 100644 --- a/meson.build +++ b/meson.build @@ -199,7 +199,13 @@ endif libghe = dependency('libghe', version : '>=0.2.0', required : false) if libghe.found() + cc = meson.get_compiler('c') + + if cc.has_function('histogram_compute_generate_data_bin', dependencies: libghe) config.set('HAVE_LIBGHE', 1) + else + message('libghe do not have the required function') + endif endif build_info += 'Build Chamelium test: @0@'.format(chamelium.found()) -- 2.47.1 From lucas.demarchi at intel.com Wed Jan 8 23:04:28 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Wed, 8 Jan 2025 17:04:28 -0600 Subject: [PATCH i-g-t] Revert tests/kms_histogram: Fix build breakage In-Reply-To: <20250108225532.xxxicdfjcwup7b76@kamilkon-desk.igk.intel.com> References: <20250108205251.1645069-1-lucas.demarchi@intel.com> <20250108225532.xxxicdfjcwup7b76@kamilkon-desk.igk.intel.com> Message-ID: <2qncdch2mrb3wkfedaywrdicoam5d5vk747kq2c3vrzvffq6k7@aoxjk6r7vske> On Wed, Jan 08, 2025 at 11:55:32PM +0100, Kamil Konieczny wrote: >Hi Lucas, >On 2025-01-08 at 12:52:51 -0800, Lucas De Marchi wrote: >> This reverts commits >> 8911eff2c6c0 ("tests/kms_histogram: Add check for libghe version") >> 6e93c2e807b3 ("tests/kms_histogram: Added IGT support to validate global histogram") >> >> Ths addition of libghe version check didn't really work as the released >> libghe exposes a 1.0.0 version: >> >> Run-time dependency libghe found: YES 1.0 > >This looks like improper package generation in our CI, >we could go with revert or make more meson checks like in version 2 >("tests/kms_histogram: Add check for ghe api call") >https://patchwork.freedesktop.org/series/143142/#rev2 > >in meson.build: > > cc = meson.get_compiler('c') > > if cc.has_function('histogram_compute_generate_data_bin', dependencies: libghe) no, that's not how we check for dependencies and should be done for things like libc only (that has multiple implementations). There shouldn't be a libghe 0.2.0 without that function. Imagine the mess that would be the build system if all libraries behaved like that. It's not CI packaging only... the libghe doesn't actually exports a .pc file so I think whoever packaged this used one from a template. > config.set('HAVE_LIBGHE', 1) > else > message('libghe do not have the required function') > endif > >Btw proper function name is present now in https://github.com/intel/ghe yet no releases... which also needs to be fixed. > >so I will resend v2 of above change with subject changed: > >meson: Add check for libghe histogram function I don't think that's proper. we can postpone applying this and just let the release in ghe to happen and package to be fixed as now we are not in rush to fix it anymore. Lucas De Marchi > >Regards, >Kamil > >> >> Let's revert this and come back to that when there's a released libghe >> that works and doesn't keep changing the API. >> >> Cc: Kamil Konieczny >> Cc: Mohammed Thasleem >> Cc: Arun R Murthy >> Cc: Nemesa Garg >> Signed-off-by: Lucas De Marchi >> --- >> lib/igt_kms.c | 23 --- >> lib/igt_kms.h | 5 - >> meson.build | 5 - >> tests/kms_histogram.c | 349 ------------------------------------------ >> tests/meson.build | 2 - >> 5 files changed, 384 deletions(-) >> delete mode 100644 tests/kms_histogram.c >> >> diff --git a/lib/igt_kms.c b/lib/igt_kms.c >> index 95e3059f7..9d21cce1e 100644 >> --- a/lib/igt_kms.c >> +++ b/lib/igt_kms.c >> @@ -714,9 +714,6 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { >> [IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR", >> [IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED", >> [IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER", >> - [IGT_CRTC_HISTOGRAM] = "HISTOGRAM_ENABLE", >> - [IGT_CRTC_GLOBAL_HISTOGRAM] = "HISTOGRAM_DATA", >> - [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "HISTOGRAM_IET", >> }; >> >> const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = { >> @@ -2618,9 +2615,6 @@ static void igt_pipe_reset(igt_pipe_t *pipe) >> if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_VRR_ENABLED)) >> igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_VRR_ENABLED, 0); >> >> - if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM)) >> - igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0); >> - >> pipe->out_fence_fd = -1; >> } >> >> @@ -5649,23 +5643,6 @@ bool igt_lease_change_detected(struct udev_monitor *mon, int timeout_secs) >> ARRAY_SIZE(props)); >> } >> >> -/** >> - * igt_global_histogram_event_detected: >> - * @mon: A udev monitor initialized with #igt_watch_uevents >> - * @timeout_secs: How long to wait for a lease change event to occur. >> - * >> - * Detect if a global Histogram event was received since we last checked the monitor. >> - * >> - * Returns: true if a sysfs global Histogram event was received, false if we timed out >> - */ >> -bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs) >> -{ >> - const char *props[1] = {"HISTOGRAM"}; >> - int expected_val = 1; >> - >> - return event_detected(mon, timeout_secs, props, &expected_val, ARRAY_SIZE(props)); >> -} >> - >> /** >> * igt_flush_uevents: >> * @mon: A udev monitor initialized with #igt_watch_uevents >> diff --git a/lib/igt_kms.h b/lib/igt_kms.h >> index 1e2a927ab..8810123fb 100644 >> --- a/lib/igt_kms.h >> +++ b/lib/igt_kms.h >> @@ -165,9 +165,6 @@ enum igt_atomic_crtc_properties { >> IGT_CRTC_OUT_FENCE_PTR, >> IGT_CRTC_VRR_ENABLED, >> IGT_CRTC_SCALING_FILTER, >> - IGT_CRTC_HISTOGRAM, >> - IGT_CRTC_GLOBAL_HISTOGRAM, >> - IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR, >> IGT_NUM_CRTC_PROPS >> }; >> >> @@ -1143,8 +1140,6 @@ void igt_cleanup_uevents(struct udev_monitor *mon); >> bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, uint64_t modifier); >> bool igt_plane_has_format_mod(igt_plane_t *plane, uint32_t format, uint64_t modifier); >> >> -bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs); >> - >> /** >> * igt_vblank_after_eq: >> * @a: First vblank sequence number. >> diff --git a/meson.build b/meson.build >> index 5eda2d582..ed2a79d5a 100644 >> --- a/meson.build >> +++ b/meson.build >> @@ -197,11 +197,6 @@ else >> chamelium = disabler() >> endif >> >> -libghe = dependency('libghe', version : '>=0.2.0', required : false) >> -if libghe.found() >> - config.set('HAVE_LIBGHE', 1) >> -endif >> - >> build_info += 'Build Chamelium test: @0@'.format(chamelium.found()) >> >> pthreads = dependency('threads') >> diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c >> deleted file mode 100644 >> index 3d59304ba..000000000 >> --- a/tests/kms_histogram.c >> +++ /dev/null >> @@ -1,349 +0,0 @@ >> -// SPDX-License-Identifier: MIT >> -/* >> - * Copyright ? 2024 Intel Corporation >> - */ >> - >> -/** >> - * TEST: kms histogram >> - * Category: Display >> - * Description: Test to verify histogram features. >> - * Functionality: histogram >> - * Mega feature: Display >> - * Test category: functionality test >> - */ >> - >> -#include >> -#include >> -#include >> -#include >> -#include >> -#include >> - >> -#include "igt.h" >> -#include "igt_vec.h" >> -#ifdef HAVE_LIBGHE >> -#include "ghe.h" >> -#endif >> - >> -#define GLOBAL_HIST_DISABLE 0 >> -#define GLOBAL_HIST_ENABLE 1 >> -#define GLOBAL_HIST_DELAY 2 >> -#define FLIP_COUNT 20 >> - >> -/** >> - * SUBTEST: global-basic >> - * Description: Test to enable histogram, flip monochrome fbs, wait for >> - * histogram event and then read the histogram data >> - * >> - * SUBTEST: global-color >> - * Description: Test to enable histogram, flip color fbs, wait for >> - * histogram event and then read the histogram data >> - * >> - * SUBTEST: algo-basic >> - * Description: Test to enable histogram, flip monochrome fbs, wait for >> - * histogram event and then read the histogram data and enhance pixels by >> - * multiplying by a pixel factor using algo >> - * >> - * SUBTEST: algo-color >> - * Description: Test to enable histogram, flip color fbs, wait for histogram event >> - * and then read the histogram data and enhance pixels by multiplying >> - * by a pixel factor using algo >> - */ >> - >> -IGT_TEST_DESCRIPTION("This test will verify the display histogram."); >> - >> -typedef struct data { >> - igt_display_t display; >> - int drm_fd; >> - igt_fb_t fb[5]; >> -} data_t; >> - >> -typedef void (*test_t)(data_t*, enum pipe, igt_output_t*, drmModePropertyBlobRes*); >> - >> -static void enable_and_verify_global_histogram(data_t *data, enum pipe pipe) >> -{ >> - uint32_t global_hist_value; >> - >> - /* Enable global_hist */ >> - igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE); >> - igt_display_commit2(&data->display, COMMIT_ATOMIC); >> - >> - /* Verify if global_hist is enabled */ >> - global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM); >> - igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to enable global_hist\n"); >> -} >> - >> -static void disable_and_verify_global_histogram(data_t *data, enum pipe pipe) >> -{ >> - uint32_t global_hist_value; >> - >> - /* Disable global_hist */ >> - igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE); >> - igt_display_commit2(&data->display, COMMIT_ATOMIC); >> - >> - /* Verify if global_hist is disabled */ >> - global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM); >> - igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to disable global_hist\n"); >> -} >> - >> -static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t *output) >> -{ >> - igt_plane_t *plane; >> - >> - disable_and_verify_global_histogram(data, pipe); >> - >> - for_each_plane_on_pipe(&data->display, pipe, plane) >> - igt_plane_set_fb(plane, NULL); >> - igt_output_set_pipe(output, PIPE_NONE); >> - igt_display_commit2(&data->display, COMMIT_ATOMIC); >> - igt_remove_fb(data->display.drm_fd, &data->fb[0]); >> - igt_remove_fb(data->display.drm_fd, &data->fb[1]); >> - igt_remove_fb(data->display.drm_fd, &data->fb[2]); >> - igt_remove_fb(data->display.drm_fd, &data->fb[3]); >> - igt_remove_fb(data->display.drm_fd, &data->fb[4]); >> -} >> - >> -static drmModePropertyBlobRes *get_global_histogram_data(data_t *data, enum pipe pipe) >> -{ >> - uint64_t blob_id; >> - >> - blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe], >> - IGT_CRTC_GLOBAL_HISTOGRAM); >> - if (blob_id == 0) >> - return NULL; >> - >> - return drmModeGetPropertyBlob(data->drm_fd, blob_id); >> -} >> - >> -static void read_global_histogram(data_t *data, enum pipe pipe, >> - drmModePropertyBlobRes **hist_blob_ptr) >> -{ >> - uint32_t *histogram_ptr; >> - drmModePropertyBlobRes *global_hist_blob = NULL; >> - >> - igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global histogram blob.\n"); >> - do { >> - global_hist_blob = get_global_histogram_data(data, pipe); >> - } while (!global_hist_blob); >> - >> - igt_reset_timeout(); >> - >> - *hist_blob_ptr = global_hist_blob; >> - histogram_ptr = (uint32_t *)global_hist_blob->data; >> - for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr); i++) >> - igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++)); >> -} >> - >> -#ifdef HAVE_LIBGHE >> -static void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size) >> -{ >> - uint32_t i; >> - >> - for (i = 0; i < size; i++) { >> - /* Displaying IET LUT */ >> - igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i)); >> - } >> - >> - igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR, >> - dietfactor, size); >> -} >> - >> -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); >> - >> - return argsPtr; >> -} >> - >> -static void algo_image_enhancement_factor(data_t *data, enum pipe pipe, >> - igt_output_t *output, >> - drmModePropertyBlobRes *global_hist_blob) >> -{ >> - struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob, output); >> - >> - igt_assert(args); >> - igt_debug("Writing pixel factor blob.\n"); >> - >> - set_pixel_factor(&data->display.pipes[pipe], args->dietfactor, >> - ARRAY_SIZE(args->dietfactor)); >> - free(args); >> - >> - igt_display_commit2(&data->display, COMMIT_ATOMIC); >> -} >> -#endif >> - >> -static void create_monochrome_fbs(data_t *data, drmModeModeInfo *mode) >> -{ >> - /* TODO: Extend the tests for different formats/modifiers. */ >> - /* These frame buffers used to flip monochrome fbs to get histogram event. */ >> - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, >> - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, >> - 0, 0, 0, &data->fb[0])); >> - >> - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, >> - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, >> - 1, 1, 1, &data->fb[1])); >> -} >> - >> -static void create_color_fbs(data_t *data, drmModeModeInfo *mode) >> -{ >> - /* TODO: Extend the tests for different formats/modifiers. */ >> - /* These frame buffers used to flip color fbs to get histogram event. */ >> - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, >> - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, >> - 0.5, 0, 0.5, &data->fb[0])); >> - >> - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, >> - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, >> - 1, 0, 0, &data->fb[1])); >> - >> - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, >> - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, >> - 0, 1, 0, &data->fb[2])); >> - >> - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, >> - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, >> - 0, 0, 1, &data->fb[3])); >> - >> - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, >> - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, >> - 1, 0, 1, &data->fb[4])); >> -} >> - >> -static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output, struct igt_fb *fb) >> -{ >> - igt_plane_set_fb(igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY), fb); >> - igt_display_commit2(&data->display, COMMIT_ATOMIC); >> -} >> - >> -static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t *output, bool color_fb) >> -{ >> - int i; >> - struct udev_monitor *mon = igt_watch_uevents(); >> - drmModeModeInfo *mode = igt_output_get_mode(output); >> - bool event_detected = false; >> - int fb_count = color_fb ? 5 : 2; >> - >> - if (color_fb) >> - create_color_fbs(data, mode); >> - else >> - create_monochrome_fbs(data, mode); >> - >> - flip_fb(data, pipe, output, &data->fb[0]); >> - enable_and_verify_global_histogram(data, pipe); >> - >> - igt_flush_uevents(mon); >> - for (i = 1; i <= FLIP_COUNT; i++) { >> - flip_fb(data, pipe, output, &data->fb[i % fb_count]); >> - >> - /* Check for histogram event on every flip and break the loop if detected. */ >> - if (igt_global_histogram_event_detected(mon, 0)) { >> - event_detected = true; >> - break; >> - } >> - } >> - >> - igt_cleanup_uevents(mon); >> - igt_assert_f(event_detected, "Histogram event not generated.\n"); >> -} >> - >> -static void run_global_histogram_pipeline(data_t *data, enum pipe pipe, igt_output_t *output, >> - bool color_fb, test_t test_pixel_factor) >> -{ >> - drmModePropertyBlobRes *global_hist_blob = NULL; >> - >> - prepare_pipe(data, pipe, output, color_fb); >> - >> - read_global_histogram(data, pipe, &global_hist_blob); >> - >> - if (test_pixel_factor) >> - test_pixel_factor(data, pipe, output, global_hist_blob); >> - >> - drmModeFreePropertyBlob(global_hist_blob); >> - cleanup_pipe(data, pipe, output); >> -} >> - >> -static void run_tests_for_global_histogram(data_t *data, bool color_fb, >> - test_t test_pixel_factor) >> -{ >> - enum pipe pipe; >> - igt_output_t *output; >> - >> - for_each_connected_output(&data->display, output) { >> - for_each_pipe(&data->display, pipe) { >> - if (!igt_pipe_obj_has_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM)) >> - continue; >> - >> - igt_display_reset(&data->display); >> - >> - igt_output_set_pipe(output, pipe); >> - if (!intel_pipe_output_combo_valid(&data->display)) >> - continue; >> - >> - igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) >> - run_global_histogram_pipeline(data, pipe, output, color_fb, test_pixel_factor); >> - } >> - } >> -} >> - >> -static void run_algo_test(data_t *data, bool color_fb) >> -{ >> -#ifdef HAVE_LIBGHE >> - run_tests_for_global_histogram(data, color_fb, algo_image_enhancement_factor); >> -#else >> - igt_skip("Histogram algorithm library not found.\n"); >> -#endif >> -} >> - >> -igt_main >> -{ >> - data_t data = {}; >> - >> - igt_fixture { >> - data.drm_fd = drm_open_driver_master(DRIVER_ANY); >> - kmstest_set_vt_graphics_mode(); >> - igt_display_require(&data.display, data.drm_fd); >> - igt_display_require_output(&data.display); >> - igt_require(data.display.is_atomic); >> - } >> - >> - igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram " >> - "event and then read the histogram data."); >> - igt_subtest_with_dynamic("global-basic") >> - run_tests_for_global_histogram(&data, false, NULL); >> - >> - igt_describe("Test to enable histogram, flip color fbs, wait for histogram event " >> - "and then read the histogram data."); >> - igt_subtest_with_dynamic("global-color") >> - run_tests_for_global_histogram(&data, true, NULL); >> - >> - igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram " >> - "event and then read the histogram data and enhance pixels by multiplying " >> - "by a pixel factor using algo."); >> - igt_subtest_with_dynamic("algo-basic") >> - run_algo_test(&data, false); >> - >> - igt_describe("Test to enable histogram, flip color fbs, wait for histogram event " >> - "and then read the histogram data and enhance pixels by multiplying " >> - "by a pixel factor using algo."); >> - igt_subtest_with_dynamic("algo-color") >> - run_algo_test(&data, true); >> - >> - igt_fixture { >> - igt_display_fini(&data.display); >> - drm_close_driver(data.drm_fd); >> - } >> -} >> diff --git a/tests/meson.build b/tests/meson.build >> index 89bba6454..2724c7a9a 100644 >> --- a/tests/meson.build >> +++ b/tests/meson.build >> @@ -37,7 +37,6 @@ test_progs = [ >> 'kms_getfb', >> 'kms_hdmi_inject', >> 'kms_hdr', >> - 'kms_histogram', >> 'kms_invalid_mode', >> 'kms_lease', >> 'kms_multipipe_modeset', >> @@ -381,7 +380,6 @@ extra_dependencies = { >> 'gem_eio': [ realtime ], >> 'gem_exec_balancer': [ lib_igt_perf ], >> 'gem_mmap_offset': [ libatomic ], >> - 'kms_histogram': [ libghe ], >> 'i915_pm_freq_mult': [ lib_igt_perf ], >> 'i915_pm_rc6_residency': [ lib_igt_perf ], >> 'perf': [ lib_igt_i915_perf ], >> -- >> 2.47.0 >> From jonathan.cavitt at intel.com Wed Jan 8 23:38:24 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Wed, 8 Jan 2025 23:38:24 +0000 Subject: [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes In-Reply-To: <20250108225424.95051-1-stuart.summers@intel.com> References: <20250108225424.95051-1-stuart.summers@intel.com> Message-ID: -----Original Message----- From: igt-dev On Behalf Of Stuart Summers Sent: Wednesday, January 8, 2025 2:54 PM Cc: igt-dev at lists.freedesktop.org; Summers, Stuart Subject: [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes > > The test is submitting workloads in a tight loop and then > destroying the exec queue for each of these. There is a > potential that the GuC IDs could get used up during these > submissions and before a GT reset goes through. If that > happens, the subsequent submissions will essentially be > "lost" in that they aren't submitted to GuC and just wait > for a submission timeout to happen, at which point we do > a reset_async in the driver. What seems to be happening > however is these workloads are lingering beyond the > completion of the xe_exec_reset test. Then when the > reset_async eventually goes through, the submissions > from a next test can also hang (or possibly because > they too ran into the guc_id exhaustion case). > > Add an explicit vm_unbind before destroying the VM > to give time for those submissions to complete > before the test ends. > > https://gitlab.freedesktop.org/drm/xe/kernel/issues/4015 I think this needs to be: Closes: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4015 But otherwise: Reviewed-by: Jonathan Cavitt Well, assuming this works, at least. I might be reading a bit too far into the commit message and kernel issue comment, but it seems you aren't too certain this will work? -Jonathan Cavitt > > Signed-off-by: Stuart Summers > --- > tests/intel/xe_exec_reset.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c > index a3eaf8bbf..ca5566d11 100644 > --- a/tests/intel/xe_exec_reset.c > +++ b/tests/intel/xe_exec_reset.c > @@ -645,6 +645,8 @@ static void submit_jobs(struct gt_thread_data *t) > xe_exec_queue_destroy(fd, exec.exec_queue_id); > } > > + xe_vm_unbind_sync(fd, vm, 0, addr, bo_size); > + > munmap(data, bo_size); > gem_close(fd, bo); > xe_vm_destroy(fd, vm); > -- > 2.34.1 > > From patchwork at emeril.freedesktop.org Wed Jan 8 23:40:00 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 08 Jan 2025 23:40:00 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Revert_tests/kms=5Fhistog?= =?utf-8?q?ram=3A_Fix_build_breakage?= In-Reply-To: <20250108205251.1645069-1-lucas.demarchi@intel.com> References: <20250108205251.1645069-1-lucas.demarchi@intel.com> Message-ID: <173637960067.1440527.9174882771905908319@b555e5b46a47> == Series Details == Series: Revert tests/kms_histogram: Fix build breakage URL : https://patchwork.freedesktop.org/series/143275/ State : success == Summary == CI Bug Log - changes from IGT_8182 -> IGTPW_12404 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12404 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_8182/bat-mtlp-8/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/bat-mtlp-8/igt at i915_selftest@live.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][3] ([i915#13393]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/bat-mtlp-9/igt at i915_selftest@live at workarounds.html - {bat-arls-6}: [DMESG-FAIL][5] ([i915#13393]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arls-6/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/bat-arls-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_8182 -> IGTPW_12404 * Linux: CI_DRM_15924 -> CI_DRM_15926 CI-20190529: 20190529 CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15926: 1f1bf8d241872eacfc18a8393862302b8aa8442d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12404: 186a34c8f13212101a860dc76122e2736e0a74f4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Wed Jan 8 23:42:52 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 08 Jan 2025 23:42:52 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Revert_tests/kms=5Fhistogra?= =?utf-8?q?m=3A_Fix_build_breakage?= In-Reply-To: <20250108205251.1645069-1-lucas.demarchi@intel.com> References: <20250108205251.1645069-1-lucas.demarchi@intel.com> Message-ID: <173637977299.1444701.14580718234768051697@b555e5b46a47> == Series Details == Series: Revert tests/kms_histogram: Fix build breakage URL : https://patchwork.freedesktop.org/series/143275/ State : success == Summary == CI Bug Log - changes from XEIGT_8182_BAT -> XEIGTPW_12404_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12404_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_intel_bb@intel-bb-blit-x: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3958]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/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_8182 -> IGTPW_12404 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2458-1f1bf8d241872eacfc18a8393862302b8aa8442d IGTPW_12404: 186a34c8f13212101a860dc76122e2736e0a74f4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2458-1f1bf8d241872eacfc18a8393862302b8aa8442d: 1f1bf8d241872eacfc18a8393862302b8aa8442d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From zhanjun.dong at intel.com Wed Jan 8 23:50:36 2025 From: zhanjun.dong at intel.com (Dong, Zhanjun) Date: Wed, 8 Jan 2025 18:50:36 -0500 Subject: [PATCH i-g-t v10] tests/intel/xe_exec_capture: Add xe_exec_capture test In-Reply-To: References: <20250108000410.469269-1-zhanjun.dong@intel.com> Message-ID: On 2025-01-08 1:23 p.m., Cavitt, Jonathan wrote: > -----Original Message----- > From: igt-dev On Behalf Of Zhanjun Dong > Sent: Tuesday, January 7, 2025 4:04 PM > To: igt-dev at lists.freedesktop.org > Cc: Dong, Zhanjun > Subject: [PATCH i-g-t v10] tests/intel/xe_exec_capture: Add xe_exec_capture test >> >> Submit cmds to GPU to cause engine reset, check generated devcoredump >> register dump, check against expected values or within the range. >> >> Signed-off-by: Zhanjun Dong >> >> --- >> >> Changes from prior revs: >> v10:- Move job timeout save/restore out of subtest, to avoid being bypassed >> by failed assertion >> Save/restore job timeout for each engine class >> Remove testing on multiple GPUs, to be put back after further discussion. >> v9:- Reduced job timeout to 2 seconds to speedup test >> Add info print to show test is running on single/multiple GPU >> v8:- Move change list below --- >> v7:- Fix typo and removed unused macros >> v6:- Adjust start_line to start from 0 >> Use 7 bit engine_cid, start with random number >> Add ioerror detect on fgets >> Reorgnize the regular expression >> Remove unnecessary radom seed init >> v5:- Detect devcoredump matches the testing engine >> Engine will run with random cid >> v4:- Support runs on multiple GPU >> Load all devcoredump content to buffer >> Alloc line buffer dynamic vs static global memory >> Changed to igt_assert_f to provide more info if failed >> v3:- Remove call to bash and awk >> Add regular express parse >> Detect devcoredump through card index >> Add devcoredump removal check >> v2:- Fix CI.build error >> Add multiple GPU card support >> --- >> tests/intel/xe_exec_capture.c | 519 ++++++++++++++++++++++++++++++++++ >> tests/meson.build | 1 + >> 2 files changed, 520 insertions(+) >> create mode 100644 tests/intel/xe_exec_capture.c >> >> diff --git a/tests/intel/xe_exec_capture.c b/tests/intel/xe_exec_capture.c >> new file mode 100644 >> index 000000000..b0642b406 >> --- /dev/null >> +++ b/tests/intel/xe_exec_capture.c >> @@ -0,0 +1,519 @@ >> +// SPDX-License-Identifier: MIT >> +/* >> + * Copyright ? 2024 Intel Corporation >> + */ >> + >> +/** >> + * TEST: Basic tests for GuC based register capture >> + * Category: Core >> + * Mega feature: General Core features >> + * Sub-category: CMD submission >> + * Functionality: Debug >> + * Test category: functionality test >> + */ >> + >> +#include >> +#include ... >> + >> +igt_main >> +{ >> + int xe; >> + struct drm_xe_engine_class_instance *hwe; >> + u64 timeouts[DRM_XE_ENGINE_CLASS_VM_BIND] = {0}; >> + >> + igt_fixture { >> + xe = drm_open_driver(DRIVER_XE); >> + xe_for_each_engine(xe, hwe) { >> + /* Skip kernel only classes */ >> + if (hwe->engine_class >= DRM_XE_ENGINE_CLASS_VM_BIND) >> + continue; >> + /* Skip classes already set */ >> + if (timeouts[hwe->engine_class]) >> + continue; >> + /* Save original timeout value */ >> + timeouts[hwe->engine_class] = xe_sysfs_get_job_timeout_ms(xe, hwe); >> + /* Reduce timeout value to speedup test */ >> + xe_sysfs_set_job_timeout_ms(xe, hwe, CAPTURE_JOB_TIMEOUT); >> + >> + igt_debug("Reduced %s class timeout from %ld to %d\n", >> + xe_engine_class_name(hwe->engine_class), >> + timeouts[hwe->engine_class], CAPTURE_JOB_TIMEOUT); >> + } >> + } >> + >> + igt_subtest("reset") >> + test_card(xe); >> + >> + igt_fixture { >> + xe_for_each_engine(xe, hwe) { >> + /* Skip kernel only classes */ >> + if (hwe->engine_class >= DRM_XE_ENGINE_CLASS_VM_BIND) >> + continue; >> + /* Skip classes already set */ >> + if (timeouts[hwe->engine_class] == 0) >> + continue; >> + /* Restore original timeout value */ >> + xe_sysfs_set_job_timeout_ms(xe, hwe, timeouts[hwe->engine_class]); > > We should probably assert that we're correctly setting the timeout to the expected > value after writing, and abort further IGT testing if the sysfs setting is improperly > reset: > > """ > xe_for_each_engine(xe, hwe) { > u64 store, timeout; > > /* Skip kernel only classes */ > if (hwe->engine_class >= DRM_XE_ENGINE_CLASS_VM_BIND) > continue; > > timeout = timeouts[hwe->engine_class]); > /* Skip classes already set */ > if (!timeout) > continue; > > /* Restore original timeout value */ > xe_sysfs_set_job_timeout_ms(xe, hwe, timeout); > > /* Assert successful restore */ > store = xe_sysfs_get_job_timeout_ms(xe, hwe); > igt_abort_on_f(timeout != store, > " job_timeout_ms not restored!\n"); > > timeouts[hwe->engine_class] = 0; > } > """ > > I recognize that igt_sysfs_set_u64 is internally performing an assert on the write, > but we need to perform an abort here for the following reasons: > 1) A failure to restore the job_timeout_ms value can cause spurious test failures > later in IGT execution, which we need to abort to prevent. > 2) The assert on the write only determines that the write occurred, not necessarily > that it was entirely successful (I.E. if we attempt to write 100 ms into job_timeout_ms, > we could get a partial write of only 10 ms or 1 ms and not catch it). Good point, it is important to abort the IGT test if restore failed, save us from debug on false alarm. > > I don't see any reason to block on this patch beyond this, however, so just add > the necessary assert, and this is > Reviewed-by: Jonathan Cavitt > -Jonathan Cavitt Thanks for review. I will post next rev as recommended. Regards, Zhanjun Dong > >> + igt_debug("Restored %s class timeout to %ld\n", >> + xe_engine_class_name(hwe->engine_class), >> + timeouts[hwe->engine_class]); >> + >> + timeouts[hwe->engine_class] = 0; >> + } >> + >> + drm_close_driver(xe); >> + } >> +} >> diff --git a/tests/meson.build b/tests/meson.build >> index 89bba6454..895d911f8 100644 >> --- a/tests/meson.build >> +++ b/tests/meson.build >> @@ -286,6 +286,7 @@ intel_xe_progs = [ >> 'xe_exec_atomic', >> 'xe_exec_balancer', >> 'xe_exec_basic', >> + 'xe_exec_capture', >> 'xe_exec_compute_mode', >> 'xe_exec_fault_mode', >> 'xe_exec_mix_modes', >> -- >> 2.34.1 >> >> From patchwork at emeril.freedesktop.org Thu Jan 9 00:21:05 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 00:21:05 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fexec=5Fres?= =?utf-8?q?et=3A_Add_a_vm=5Funbind_after_the_stress_test_completes?= In-Reply-To: <20250108225424.95051-1-stuart.summers@intel.com> References: <20250108225424.95051-1-stuart.summers@intel.com> Message-ID: <173638206547.1446444.7161916689474008696@b555e5b46a47> == Series Details == Series: tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes URL : https://patchwork.freedesktop.org/series/143285/ State : success == Summary == CI Bug Log - changes from XEIGT_8182_BAT -> XEIGTPW_12405_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12405_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_intel_bb@intel-bb-blit-x: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3958]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/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_8182 -> IGTPW_12405 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2458-1f1bf8d241872eacfc18a8393862302b8aa8442d IGTPW_12405: 7140501dc07d5da634f3184b506b4060129ffe3a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2458-1f1bf8d241872eacfc18a8393862302b8aa8442d: 1f1bf8d241872eacfc18a8393862302b8aa8442d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 00:31:21 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 00:31:21 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fexec=5Fr?= =?utf-8?q?eset=3A_Add_a_vm=5Funbind_after_the_stress_test_completes?= In-Reply-To: <20250108225424.95051-1-stuart.summers@intel.com> References: <20250108225424.95051-1-stuart.summers@intel.com> Message-ID: <173638268154.1458985.14182405680699721356@b555e5b46a47> == Series Details == Series: tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes URL : https://patchwork.freedesktop.org/series/143285/ State : success == Summary == CI Bug Log - changes from IGT_8182 -> IGTPW_12405 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12405 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-mtlp-6: [PASS][1] -> [DMESG-FAIL][2] ([i915#13393]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-mtlp-6/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/bat-mtlp-6/igt at i915_selftest@live.html * igt at i915_selftest@live at ring_submission: - fi-cfl-8109u: [PASS][3] -> [DMESG-WARN][4] ([i915#11621]) +33 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/fi-cfl-8109u/igt at i915_selftest@live at ring_submission.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/fi-cfl-8109u/igt at i915_selftest@live at ring_submission.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-arls-6}: [DMESG-FAIL][5] ([i915#13393]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arls-6/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/bat-arls-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#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8182 -> IGTPW_12405 * Linux: CI_DRM_15924 -> CI_DRM_15927 CI-20190529: 20190529 CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15927: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12405: 7140501dc07d5da634f3184b506b4060129ffe3a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From zhanjun.dong at intel.com Thu Jan 9 00:44:03 2025 From: zhanjun.dong at intel.com (Zhanjun Dong) Date: Wed, 8 Jan 2025 16:44:03 -0800 Subject: [PATCH i-g-t v11] tests/intel/xe_exec_capture: Add xe_exec_capture test Message-ID: <20250109004403.58162-1-zhanjun.dong@intel.com> Submit cmds to GPU to cause engine reset, check generated devcoredump register dump, check against expected values or within the range. Signed-off-by: Zhanjun Dong Reviewed-by: Jonathan Cavitt --- Changes from prior revs: v11:- Add assertion after jobtimeout restore, abort test if readout mismatched v10:- Move job timeout save/restore out of subtest, to avoid being bypassed by failed assertion Save/restore job timeout for each engine class Remove testing on multiple GPUs, to be put back after further discussion. v9:- Reduced job timeout to 2 seconds to speedup test Add info print to show test is running on single/multiple GPU v8:- Move change list below --- v7:- Fix typo and removed unused macros v6:- Adjust start_line to start from 0 Use 7 bit engine_cid, start with random number Add ioerror detect on fgets Reorgnize the regular expression Remove unnecessary radom seed init v5:- Detect devcoredump matches the testing engine Engine will run with random cid v4:- Support runs on multiple GPU Load all devcoredump content to buffer Alloc line buffer dynamic vs static global memory Changed to igt_assert_f to provide more info if failed v3:- Remove call to bash and awk Add regular express parse Detect devcoredump through card index Add devcoredump removal check v2:- Fix CI.build error Add multiple GPU card support --- tests/intel/xe_exec_capture.c | 529 ++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 530 insertions(+) create mode 100644 tests/intel/xe_exec_capture.c diff --git a/tests/intel/xe_exec_capture.c b/tests/intel/xe_exec_capture.c new file mode 100644 index 000000000..55ec3d4bd --- /dev/null +++ b/tests/intel/xe_exec_capture.c @@ -0,0 +1,529 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright ? 2024 Intel Corporation + */ + +/** + * TEST: Basic tests for GuC based register capture + * Category: Core + * Mega feature: General Core features + * Sub-category: CMD submission + * Functionality: Debug + * Test category: functionality test + */ + +#include +#include +#include +#include +#include + +#include "igt.h" +#include "igt_device.h" +#include "igt_sysfs.h" +#include "lib/igt_syncobj.h" +#include "lib/intel_reg.h" +#include "linux_scaffold.h" +#include "xe_drm.h" +#include "xe/xe_ioctl.h" +#include "xe/xe_query.h" +#include "xe/xe_spin.h" + +#define MAX_N_EXECQUEUES 16 +#define CAPTURE_JOB_TIMEOUT 2000 +#define JOB_TIMOUT_ENTRY "job_timeout_ms" + +#define BASE_ADDRESS 0x1a0000 +#define ADDRESS_SHIFT 39 +#define CID_ADDRESS_MASK 0x7F +/* Batch buffer element count, in number of dwords(u32) */ +#define BATCH_DW_COUNT 16 + +#define MAX_TEMP_LEN 80 +#define MAX_SYSFS_PATH_LEN 128 +#define MAX_LINES 4096 +/* Max line buffer size (includes last '\0') */ +#define MAX_LINE_LEN 1024 +#define MAIN_BUF_SIZE (MAX_LINES * MAX_LINE_LEN * sizeof(char)) +/* + * Devcoredump might have long line this test don't care. + * This buffer size used when load dump content + */ +#define LINE_BUF_SIZE (64 * 1024) + +#define DUMP_PATH "/sys/class/drm/card%d/device/devcoredump/data" +#define START_TAG "**** Job ****" +#define END_TAG "**** VM state ****" + +/* Optional Space */ +#define SPC_O "[ \t]*" +/* Required Space */ +#define SPC "[ \t]+" +/* Optional Non-Space */ +#define NSPC_O "([^ \t]*)" +/* Required Non-Space */ +#define NSPC "([^ \t]+)" +#define BEG "^" SPC_O +#define REQ_FIELD NSPC SPC +#define REQ_FIELD_LAST NSPC SPC_O +#define OPT_FIELD NSPC_O SPC_O +#define END SPC_O "$" + +#define REGEX_NON_SPACE_GROUPS BEG REQ_FIELD REQ_FIELD_LAST OPT_FIELD OPT_FIELD OPT_FIELD END +#define REGEX_NON_SPACE_GROUPS_COUNT 6 + +#define INDEX_KEY 1 +#define INDEX_VALUE 2 +#define INDEX_ENGINE_PHYSICAL 2 +#define INDEX_ENGINE_NAME 1 +#define INDEX_ENGINE_INSTANCE 4 + +static u64 +xe_sysfs_get_job_timeout_ms(int fd, struct drm_xe_engine_class_instance *eci) +{ + int engine_fd = -1; + u64 ret; + + engine_fd = xe_sysfs_engine_open(fd, eci->gt_id, eci->engine_class); + ret = igt_sysfs_get_u64(engine_fd, JOB_TIMOUT_ENTRY); + close(engine_fd); + + return ret; +} + +static void xe_sysfs_set_job_timeout_ms(int fd, struct drm_xe_engine_class_instance *eci, + u64 timeout) +{ + int engine_fd = -1; + + engine_fd = xe_sysfs_engine_open(fd, eci->gt_id, eci->engine_class); + igt_sysfs_set_u64(engine_fd, JOB_TIMOUT_ENTRY, timeout); + close(engine_fd); +} + +static char *safe_strncpy(char *dst, const char *src, int n) +{ + char *s; + + igt_assert(n > 0); + igt_assert(dst && src); + + s = strncpy(dst, src, n - 1); + s[n - 1] = '\0'; + + return s; +} + +static const char *xe_engine_class_name(u32 engine_class) +{ + switch (engine_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: + igt_warn("Engine class 0x%x unknown\n", engine_class); + return "unknown"; + } +} + +static void +test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci, int n_exec_queues, int n_execs, + unsigned int flags, u64 addr) +{ + u32 vm; + struct drm_xe_sync sync[2] = { + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, }, + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, }, + }; + struct drm_xe_exec exec = { + .num_batch_buffer = 1, + .num_syncs = 2, + .syncs = to_user_pointer(sync), + }; + u32 exec_queues[MAX_N_EXECQUEUES]; + u32 syncobjs[MAX_N_EXECQUEUES]; + size_t bo_size; + u32 bo = 0; + struct { + struct xe_spin spin; + u32 batch[BATCH_DW_COUNT]; + u64 pad; + u32 data; + } *data; + struct xe_spin_opts spin_opts = { .preempt = false }; + int i, b; + + igt_assert_lte(n_exec_queues, MAX_N_EXECQUEUES); + + vm = xe_vm_create(fd, 0, 0); + bo_size = sizeof(*data) * n_execs; + bo_size = xe_bb_size(fd, bo_size); + + bo = xe_bo_create(fd, vm, bo_size, + vram_if_possible(fd, eci->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + data = xe_bo_map(fd, bo, bo_size); + + for (i = 0; i < n_exec_queues; i++) { + exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0); + syncobjs[i] = syncobj_create(fd, 0); + }; + + sync[0].handle = syncobj_create(fd, 0); + xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1); + + for (i = 0; i < n_execs; i++) { + u64 base_addr = addr; + u64 batch_offset = (char *)&data[i].batch - (char *)data; + u64 batch_addr = base_addr + batch_offset; + u64 spin_offset = (char *)&data[i].spin - (char *)data; + u64 sdi_offset = (char *)&data[i].data - (char *)data; + u64 sdi_addr = base_addr + sdi_offset; + u64 exec_addr; + int e = i % n_exec_queues; + + if (!i) { + spin_opts.addr = base_addr + spin_offset; + xe_spin_init(&data[i].spin, &spin_opts); + exec_addr = spin_opts.addr; + } else { + b = 0; + data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4; + data[i].batch[b++] = sdi_addr; + data[i].batch[b++] = sdi_addr >> 32; + data[i].batch[b++] = 0xc0ffee; + data[i].batch[b++] = MI_BATCH_BUFFER_END; + igt_assert(b <= ARRAY_SIZE(data[i].batch)); + + exec_addr = batch_addr; + } + + sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL; + sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL; + sync[1].handle = syncobjs[e]; + + exec.exec_queue_id = exec_queues[e]; + exec.address = exec_addr; + if (e != i) + syncobj_reset(fd, &syncobjs[e], 1); + xe_exec(fd, &exec); + } + + for (i = 0; i < n_exec_queues && n_execs; i++) + igt_assert(syncobj_wait(fd, &syncobjs[i], 1, INT64_MAX, 0, + NULL)); + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL)); + + sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL; + xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1); + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL)); + + syncobj_destroy(fd, sync[0].handle); + for (i = 0; i < n_exec_queues; i++) { + syncobj_destroy(fd, syncobjs[i]); + xe_exec_queue_destroy(fd, exec_queues[i]); + } + + munmap(data, bo_size); + gem_close(fd, bo); + xe_vm_destroy(fd, vm); +} + +static char **alloc_lines_buffer(void) +{ + int i; + char **lines = (char **)malloc(MAX_LINES * sizeof(char *)); + char *main_buf = (char *)malloc(MAIN_BUF_SIZE); + + igt_assert_f(lines, "Out of memory.\n"); + igt_assert_f(main_buf, "Out of memory.\n"); + + /* set string array pointers */ + for (i = 0; i < MAX_LINES; i++) + lines[i] = main_buf + i * MAX_LINE_LEN; + + return lines; +} + +static char *get_devcoredump_path(int card_id, char *buf) +{ + sprintf(buf, DUMP_PATH, card_id); + return buf; +} + +static int load_all(FILE *fd, char **lines, char *buf) +{ + int start_line = 0, i = 0; + bool skip = true; + + memset(lines[0], 0, MAIN_BUF_SIZE); + while (!feof(fd) && i < MAX_LINES) { + /* + * Devcoredump might have long lines, load up to + * LINE_BUF_SIZE for a single line + */ + if (!fgets(buf, LINE_BUF_SIZE, fd)) + if (ferror(fd) != 0) { + igt_warn("Failed to read devcoredump file, error: %d\n", + ferror(fd)); + break; + } + + if (skip) { + start_line++; + /* Skip all lines before START_TAG */ + if (strncmp(START_TAG, buf, strlen(START_TAG))) + continue; + else + skip = false; + } + + /* Only save up to MAX_LINE_LEN to buffer */ + safe_strncpy(lines[i++], buf, MAX_LINE_LEN); + + /* Stop on END_TAG */ + if (!strncmp(END_TAG, buf, strlen(END_TAG))) + break; + } + return start_line; +} + +static int access_devcoredump(char *path, char **lines, char *line_buf) +{ + int start_line = -1; + FILE *fd = fopen(path, "r"); + + if (!fd) + return false; + + igt_debug("Devcoredump found: %s\n", path); + + /* Clear memory before load file */ + if (lines) + start_line = load_all(fd, lines, line_buf); + + fclose(fd); + return start_line; +} + +static bool rm_devcoredump(char *path) +{ + int fd = open(path, O_WRONLY); + + if (fd != -1) { + igt_debug("Clearing devcoredump.\n"); + write(fd, "0", 1); + close(fd); + return true; + } + + return false; +} + +static char +*get_coredump_item(regex_t *regex, char **lines, const char *tag, int tag_index, int target_index) +{ + int i; + regmatch_t match[REGEX_NON_SPACE_GROUPS_COUNT]; + + for (i = 0; i < MAX_LINES; i++) { + char *line = lines[i]; + + /* Skip lines without tag */ + if (!strstr(line, tag)) + continue; + + if ((regexec(regex, line, REGEX_NON_SPACE_GROUPS_COUNT, match, 0)) == 0) { + char *key = NULL, *value = NULL; + + if (match[tag_index].rm_so >= 0) { + key = &line[match[tag_index].rm_so]; + line[match[tag_index].rm_eo] = '\0'; + } + if (match[target_index].rm_so >= 0) { + value = &line[match[target_index].rm_so]; + line[match[target_index].rm_eo] = '\0'; + } + + if (key && value && strcmp(tag, key) == 0) + return value; + /* if key != tag, keep searching and loop to next line */ + } + } + + return NULL; +} + +static void +check_item_u64(regex_t *regex, char **lines, const char *tag, u64 addr_lo, u64 addr_hi) +{ + u64 result; + char *output; + + igt_assert_f((output = get_coredump_item(regex, lines, tag, INDEX_KEY, INDEX_VALUE)), + "Target not found:%s\n", tag); + result = strtoul(output, NULL, 16); + igt_debug("Compare %s %s vs [0x%lX-0x%lX]\n", tag, output, addr_lo, addr_hi); + igt_assert_f((addr_lo <= result) && (result <= addr_hi), + "value %lX out of range[0x%lX-0x%lX]\n", result, addr_lo, addr_hi); +} + +static void +check_item_str(regex_t *regex, char **lines, const char *tag, int tag_index, int target_index, + const char *target, bool up_to_target_len) +{ + char buf[MAX_TEMP_LEN] = {0}; + char *output; + int code; + + igt_assert_f(output = get_coredump_item(regex, lines, tag, tag_index, target_index), + "Target not found:%s\n", tag); + + if (up_to_target_len) { + igt_assert_f(strlen(target) < MAX_TEMP_LEN, "Target too long.\n"); + safe_strncpy(buf, output, MAX_TEMP_LEN); + buf[strlen(target)] = 0; + output = buf; + } + code = strncmp(output, target, strlen(target)); + igt_debug("From tag '%s' found %s vs %s\n", tag, output, target); + igt_assert_f(code == 0, "Expected value:%s, received:%s\n", target, output); +} + +/** + * SUBTEST: reset + * Description: Reset GuC, check devcoredump output values + */ +static void test_card(int fd) +{ + struct drm_xe_engine_class_instance *hwe; + regex_t regex; + int start_line; + int engine_cid = rand(); + char **lines; + char *single_line_buf = (char *)malloc(LINE_BUF_SIZE); + char temp[MAX_TEMP_LEN]; + char path[MAX_SYSFS_PATH_LEN]; + + igt_assert_f(single_line_buf, "Out of memory.\n"); + + regcomp(®ex, REGEX_NON_SPACE_GROUPS, REG_EXTENDED | REG_NEWLINE); + get_devcoredump_path(igt_device_get_card_index(fd), path); + lines = alloc_lines_buffer(); + + /* clear old devcoredump, if any */ + rm_devcoredump(path); + + xe_for_each_engine(fd, hwe) { + /* + * To test devcoredump register data, the test batch address is + * used to compare with the dump, address bit 40 to 46 act as + * context id, which start with an random number, increased 1 + * per engine. By this way, the address is unique for each + * engine, and start with an random number on each run. + */ + const u64 addr = BASE_ADDRESS | ((u64)(engine_cid++ % CID_ADDRESS_MASK) << + ADDRESS_SHIFT); + + igt_debug("Running on engine class: %x instance: %x\n", hwe->engine_class, + hwe->engine_instance); + + test_legacy_mode(fd, hwe, 1, 1, 0, addr); + /* Wait 1 sec for devcoredump complete */ + sleep(1); + + /* assert devcoredump created */ + igt_assert_f((start_line = access_devcoredump(path, lines, single_line_buf)) > 0, + "Devcoredump not exist, errno=%d.\n", errno); + + sprintf(temp, "instance=%d", hwe->engine_instance); + check_item_str(®ex, lines, "(physical),", INDEX_ENGINE_PHYSICAL, + INDEX_ENGINE_INSTANCE, temp, false); + check_item_str(®ex, lines, "(physical),", INDEX_ENGINE_PHYSICAL, + INDEX_ENGINE_NAME, xe_engine_class_name(hwe->engine_class), true); + + check_item_str(®ex, lines, "Capture_source:", INDEX_KEY, INDEX_VALUE, + "GuC", false); + check_item_u64(®ex, lines, "ACTHD:", addr, + addr + BATCH_DW_COUNT * sizeof(u32)); + check_item_u64(®ex, lines, "RING_BBADDR:", addr, + addr + BATCH_DW_COUNT * sizeof(u32)); + + /* clear devcoredump */ + rm_devcoredump(path); + sleep(1); + /* Assert devcoredump removed */ + igt_assert_f(!access_devcoredump(path, NULL, NULL), "Devcoredump not removed\n"); + } + /* Free lines buffer */ + free(lines); + free(single_line_buf); + regfree(®ex); +} + +igt_main +{ + int xe; + struct drm_xe_engine_class_instance *hwe; + u64 timeouts[DRM_XE_ENGINE_CLASS_VM_BIND] = {0}; + + igt_fixture { + xe = drm_open_driver(DRIVER_XE); + xe_for_each_engine(xe, hwe) { + /* Skip kernel only classes */ + if (hwe->engine_class >= DRM_XE_ENGINE_CLASS_VM_BIND) + continue; + /* Skip classes already set */ + if (timeouts[hwe->engine_class]) + continue; + /* Save original timeout value */ + timeouts[hwe->engine_class] = xe_sysfs_get_job_timeout_ms(xe, hwe); + /* Reduce timeout value to speedup test */ + xe_sysfs_set_job_timeout_ms(xe, hwe, CAPTURE_JOB_TIMEOUT); + + igt_debug("Reduced %s class timeout from %ld to %d\n", + xe_engine_class_name(hwe->engine_class), + timeouts[hwe->engine_class], CAPTURE_JOB_TIMEOUT); + } + } + + igt_subtest("reset") + test_card(xe); + + igt_fixture { + xe_for_each_engine(xe, hwe) { + u64 store, timeout; + + /* Skip kernel only classes */ + if (hwe->engine_class >= DRM_XE_ENGINE_CLASS_VM_BIND) + continue; + + timeout = timeouts[hwe->engine_class]; + /* Skip classes already set */ + if (!timeout) + continue; + + /* Restore original timeout value */ + xe_sysfs_set_job_timeout_ms(xe, hwe, timeout); + + /* Assert successful restore */ + store = xe_sysfs_get_job_timeout_ms(xe, hwe); + igt_abort_on_f(timeout != store, "job_timeout_ms not restored!\n"); + + igt_debug("Restored %s class timeout to %ld\n", + xe_engine_class_name(hwe->engine_class), + timeouts[hwe->engine_class]); + + timeouts[hwe->engine_class] = 0; + } + + drm_close_driver(xe); + } +} diff --git a/tests/meson.build b/tests/meson.build index 89bba6454..895d911f8 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -286,6 +286,7 @@ intel_xe_progs = [ 'xe_exec_atomic', 'xe_exec_balancer', 'xe_exec_basic', + 'xe_exec_capture', 'xe_exec_compute_mode', 'xe_exec_fault_mode', 'xe_exec_mix_modes', -- 2.34.1 From patchwork at emeril.freedesktop.org Thu Jan 9 00:58:32 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 00:58:32 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_meson=3A_Add_check_for_li?= =?utf-8?q?bghe_histogram_function?= In-Reply-To: <20250108230017.212621-1-kamil.konieczny@linux.intel.com> References: <20250108230017.212621-1-kamil.konieczny@linux.intel.com> Message-ID: <173638431253.1462883.16274317688985836555@b555e5b46a47> == Series Details == Series: meson: Add check for libghe histogram function URL : https://patchwork.freedesktop.org/series/143289/ State : success == Summary == CI Bug Log - changes from IGT_8182 -> IGTPW_12406 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12406 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live at ring_submission: - fi-cfl-8109u: [PASS][1] -> [DMESG-WARN][2] ([i915#11621]) +132 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/fi-cfl-8109u/igt at i915_selftest@live at ring_submission.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/fi-cfl-8109u/igt at i915_selftest@live at ring_submission.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][3] ([i915#13393]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/bat-mtlp-9/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#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8182 -> IGTPW_12406 * Linux: CI_DRM_15924 -> CI_DRM_15927 CI-20190529: 20190529 CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15927: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12406: c23565bd2be743399f6d643793682b058cb007d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 01:17:57 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 01:17:57 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_meson=3A_Add_check_for_libg?= =?utf-8?q?he_histogram_function?= In-Reply-To: <20250108230017.212621-1-kamil.konieczny@linux.intel.com> References: <20250108230017.212621-1-kamil.konieczny@linux.intel.com> Message-ID: <173638547797.1469099.981851084643438955@b555e5b46a47> == Series Details == Series: meson: Add check for libghe histogram function URL : https://patchwork.freedesktop.org/series/143289/ State : success == Summary == CI Bug Log - changes from XEIGT_8182_BAT -> XEIGTPW_12406_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12406_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3958]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html #### Possible fixes #### * igt at xe_intel_bb@intel-bb-blit-x: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3958]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html [Intel XE#3958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3958 Build changes ------------- * IGT: IGT_8182 -> IGTPW_12406 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12406: c23565bd2be743399f6d643793682b058cb007d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 01:40:11 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 01:40:11 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fexec=5Fcap?= =?utf-8?q?ture=3A_Add_xe=5Fexec=5Fcapture_test_=28rev10=29?= In-Reply-To: <20250109004403.58162-1-zhanjun.dong@intel.com> References: <20250109004403.58162-1-zhanjun.dong@intel.com> Message-ID: <173638681173.1469099.10555647898220707624@b555e5b46a47> == Series Details == Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev10) URL : https://patchwork.freedesktop.org/series/140007/ State : success == Summary == CI Bug Log - changes from XEIGT_8182_BAT -> XEIGTPW_12407_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12407_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_migrate_sanity_kunit: - bat-adlp-vf: NOTRUN -> [DMESG-FAIL][2] ([Intel XE#3958]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_migrate_sanity_kunit.html #### Possible fixes #### * igt at xe_intel_bb@intel-bb-blit-x: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3958]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html * igt at xe_live_ktest@xe_dma_buf: - bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_dma_buf.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/bat-adlp-vf/igt at xe_live_ktest@xe_dma_buf.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][9] ([Intel XE#1192]) -> [DMESG-FAIL][10] ([Intel XE#3958]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.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_8182 -> IGTPW_12407 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12407: 0afa7b205dd6a755ad29c432e9bcca2d0d552917 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 01:46:53 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 01:46:53 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_tests/intel/xe=5Fexec=5Fc?= =?utf-8?q?apture=3A_Add_xe=5Fexec=5Fcapture_test_=28rev10=29?= In-Reply-To: <20250109004403.58162-1-zhanjun.dong@intel.com> References: <20250109004403.58162-1-zhanjun.dong@intel.com> Message-ID: <173638721304.1474787.12996179438277855344@b555e5b46a47> == Series Details == Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev10) URL : https://patchwork.freedesktop.org/series/140007/ State : failure == Summary == CI Bug Log - changes from IGT_8182 -> IGTPW_12407 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12407 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12407, 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_12407/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12407: ### IGT changes ### #### Possible regressions #### * igt at i915_pm_rpm@module-reload: - bat-rpls-4: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-rpls-4/igt at i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12407/bat-rpls-4/igt at i915_pm_rpm@module-reload.html Known issues ------------ Here are the changes found in IGTPW_12407 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live at workarounds: - bat-arlh-2: [PASS][3] -> [DMESG-FAIL][4] ([i915#13393]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arlh-2/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12407/bat-arlh-2/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][5] ([i915#13393]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12407/bat-mtlp-9/igt at i915_selftest@live at workarounds.html - {bat-arls-6}: [DMESG-FAIL][7] ([i915#13393]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arls-6/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12407/bat-arls-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#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8182 -> IGTPW_12407 * Linux: CI_DRM_15924 -> CI_DRM_15927 CI-20190529: 20190529 CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15927: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12407: 0afa7b205dd6a755ad29c432e9bcca2d0d552917 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12407/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From ashutosh.dixit at intel.com Thu Jan 9 03:12:27 2025 From: ashutosh.dixit at intel.com (Dixit, Ashutosh) Date: Wed, 08 Jan 2025 19:12:27 -0800 Subject: [PATCH i-g-t v2 1/2] tests/intel/xe_oa: Remove unused function arguments In-Reply-To: <20250106034638.1746051-2-sai.teja.pottumuttu@intel.com> References: <20250106034638.1746051-1-sai.teja.pottumuttu@intel.com> <20250106034638.1746051-2-sai.teja.pottumuttu@intel.com> Message-ID: <85bjwgvfxg.wl-ashutosh.dixit@intel.com> On Sun, 05 Jan 2025 19:46:37 -0800, Sai Teja Pottumuttu wrote: > > The oa_exponent argument is unused in oa_report_is_periodic > function. Thus remove it. Reviewed-by: Ashutosh Dixit From ashutosh.dixit at intel.com Thu Jan 9 03:23:31 2025 From: ashutosh.dixit at intel.com (Ashutosh Dixit) Date: Wed, 8 Jan 2025 19:23:31 -0800 Subject: [PATCH i-g-t] drm-uapi/xe: Sync with OA uapi updates Message-ID: <20250109032331.2774067-1-ashutosh.dixit@intel.com> Align with kernel commit 5637797add2a ("drm/xe/oa/uapi: Expose an unblock after N reports OA property"). Signed-off-by: Ashutosh Dixit --- include/drm-uapi/xe_drm.h | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h index 56163eb913..08e263b3b2 100644 --- a/include/drm-uapi/xe_drm.h +++ b/include/drm-uapi/xe_drm.h @@ -134,7 +134,7 @@ extern "C" { * redefine the interface more easily than an ever growing struct of * increasing complexity, and for large parts of that interface to be * entirely optional. The downside is more pointer chasing; chasing across - * the __user boundary with pointers encapsulated inside u64. + * the boundary with pointers encapsulated inside u64. * * Example chaining: * @@ -1486,6 +1486,8 @@ struct drm_xe_oa_unit { __u64 capabilities; #define DRM_XE_OA_CAPS_BASE (1 << 0) #define DRM_XE_OA_CAPS_SYNCS (1 << 1) +#define DRM_XE_OA_CAPS_OA_BUFFER_SIZE (1 << 2) +#define DRM_XE_OA_CAPS_WAIT_NUM_REPORTS (1 << 3) /** @oa_timestamp_freq: OA timestamp freq */ __u64 oa_timestamp_freq; @@ -1651,6 +1653,20 @@ enum drm_xe_oa_property_id { * to the VM bind case. */ DRM_XE_OA_PROPERTY_SYNCS, + + /** + * @DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE: Size of OA buffer to be + * allocated by the driver in bytes. Supported sizes are powers of + * 2 from 128 KiB to 128 MiB. When not specified, a 16 MiB OA + * buffer is allocated by default. + */ + DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, + + /** + * @DRM_XE_OA_PROPERTY_WAIT_NUM_REPORTS: Number of reports to wait + * for before unblocking poll or read + */ + DRM_XE_OA_PROPERTY_WAIT_NUM_REPORTS, }; /** -- 2.47.1 From vitaly.prosyak at amd.com Thu Jan 9 03:32:22 2025 From: vitaly.prosyak at amd.com (vitaly.prosyak at amd.com) Date: Wed, 8 Jan 2025 22:32:22 -0500 Subject: [PATCH] lib/amdgpu: improve pci_unplug test Message-ID: <20250109033222.21861-1-vitaly.prosyak@amd.com> From: Vitaly Prosyak Replace the 1-second sleep with a semaphore for synchronization, using wait and post operations from the worker and main threads. This change results in cleaner code and ensures precise timing, so PCI unplug event is triggered as expected during job submissions. Cc: Jesse Zhang Cc: Christian Koenig Cc: Alexander Deucher Signed-off-by: Vitaly Prosyak --- lib/amdgpu/amd_pci_unplug.c | 10 +++++++--- lib/amdgpu/amd_pci_unplug.h | 3 +++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/amdgpu/amd_pci_unplug.c b/lib/amdgpu/amd_pci_unplug.c index 107e1cbbd..5155c9474 100644 --- a/lib/amdgpu/amd_pci_unplug.c +++ b/lib/amdgpu/amd_pci_unplug.c @@ -238,6 +238,8 @@ amdgpu_nop_cs(void *handle) ibs_request.ibs = &ib_info; ibs_request.resources = bo_list; + sem_post(&unplug->semaphore); + while (unplug->do_cs) amdgpu_cs_submit(context, 0, &ibs_request, 1); @@ -263,11 +265,12 @@ amdgpu_create_cs_thread(struct amd_pci_unplug *unplug) unplug->do_cs = true; - r = pthread_create(thread, NULL, &amdgpu_nop_cs, unplug); + r = sem_init(&unplug->semaphore, 0, 0); igt_assert_eq(r, 0); - /* Give thread enough time to start*/ - usleep(1000000); + r = pthread_create(thread, NULL, &amdgpu_nop_cs, unplug); + igt_assert_eq(r, 0); + sem_wait(&unplug->semaphore); return thread; } @@ -277,6 +280,7 @@ amdgpu_wait_cs_thread(struct amd_pci_unplug *unplug, pthread_t *thread) unplug->do_cs = false; pthread_join(*thread, NULL); + sem_destroy(&unplug->semaphore); free(thread); } diff --git a/lib/amdgpu/amd_pci_unplug.h b/lib/amdgpu/amd_pci_unplug.h index 35d4dce3a..3799a6ec9 100644 --- a/lib/amdgpu/amd_pci_unplug.h +++ b/lib/amdgpu/amd_pci_unplug.h @@ -24,6 +24,8 @@ #ifndef AMD_PCI_UNPLUG_H #define AMD_PCI_UNPLUG_H +#include + #include #include #include "amd_ip_blocks.h" @@ -42,6 +44,7 @@ struct amd_pci_unplug { amdgpu_device_handle device_handle; amdgpu_device_handle device_handle2; volatile bool do_cs; + sem_t semaphore; }; void -- 2.34.1 From Jesse.Zhang at amd.com Thu Jan 9 04:13:53 2025 From: Jesse.Zhang at amd.com (Zhang, Jesse(Jie)) Date: Thu, 9 Jan 2025 04:13:53 +0000 Subject: [PATCH] lib/amdgpu: improve pci_unplug test In-Reply-To: <20250109033222.21861-1-vitaly.prosyak@amd.com> References: <20250109033222.21861-1-vitaly.prosyak@amd.com> Message-ID: [AMD Official Use Only - AMD Internal Distribution Only] This patch is good for me, and Reviewed-by: "Jesse.zhang at amd.com" -----Original Message----- From: vitaly.prosyak at amd.com Sent: Thursday, January 9, 2025 11:32 AM To: igt-dev at lists.freedesktop.org Cc: Prosyak, Vitaly ; Zhang, Jesse(Jie) ; Koenig, Christian ; Deucher, Alexander Subject: [PATCH] lib/amdgpu: improve pci_unplug test From: Vitaly Prosyak Replace the 1-second sleep with a semaphore for synchronization, using wait and post operations from the worker and main threads. This change results in cleaner code and ensures precise timing, so PCI unplug event is triggered as expected during job submissions. Cc: Jesse Zhang Cc: Christian Koenig Cc: Alexander Deucher Signed-off-by: Vitaly Prosyak --- lib/amdgpu/amd_pci_unplug.c | 10 +++++++--- lib/amdgpu/amd_pci_unplug.h | 3 +++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/amdgpu/amd_pci_unplug.c b/lib/amdgpu/amd_pci_unplug.c index 107e1cbbd..5155c9474 100644 --- a/lib/amdgpu/amd_pci_unplug.c +++ b/lib/amdgpu/amd_pci_unplug.c @@ -238,6 +238,8 @@ amdgpu_nop_cs(void *handle) ibs_request.ibs = &ib_info; ibs_request.resources = bo_list; + sem_post(&unplug->semaphore); + while (unplug->do_cs) amdgpu_cs_submit(context, 0, &ibs_request, 1); @@ -263,11 +265,12 @@ amdgpu_create_cs_thread(struct amd_pci_unplug *unplug) unplug->do_cs = true; - r = pthread_create(thread, NULL, &amdgpu_nop_cs, unplug); + r = sem_init(&unplug->semaphore, 0, 0); igt_assert_eq(r, 0); - /* Give thread enough time to start*/ - usleep(1000000); + r = pthread_create(thread, NULL, &amdgpu_nop_cs, unplug); + igt_assert_eq(r, 0); + sem_wait(&unplug->semaphore); return thread; } @@ -277,6 +280,7 @@ amdgpu_wait_cs_thread(struct amd_pci_unplug *unplug, pthread_t *thread) unplug->do_cs = false; pthread_join(*thread, NULL); + sem_destroy(&unplug->semaphore); free(thread); } diff --git a/lib/amdgpu/amd_pci_unplug.h b/lib/amdgpu/amd_pci_unplug.h index 35d4dce3a..3799a6ec9 100644 --- a/lib/amdgpu/amd_pci_unplug.h +++ b/lib/amdgpu/amd_pci_unplug.h @@ -24,6 +24,8 @@ #ifndef AMD_PCI_UNPLUG_H #define AMD_PCI_UNPLUG_H +#include + #include #include #include "amd_ip_blocks.h" @@ -42,6 +44,7 @@ struct amd_pci_unplug { amdgpu_device_handle device_handle; amdgpu_device_handle device_handle2; volatile bool do_cs; + sem_t semaphore; }; void -- 2.34.1 From patchwork at emeril.freedesktop.org Thu Jan 9 04:22:47 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 04:22:47 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_drm-uapi/xe=3A_Sync_with_OA?= =?utf-8?q?_uapi_updates?= In-Reply-To: <20250109032331.2774067-1-ashutosh.dixit@intel.com> References: <20250109032331.2774067-1-ashutosh.dixit@intel.com> Message-ID: <173639656746.1506600.5814458041050270748@b555e5b46a47> == Series Details == Series: drm-uapi/xe: Sync with OA uapi updates URL : https://patchwork.freedesktop.org/series/143297/ State : success == Summary == CI Bug Log - changes from XEIGT_8182_BAT -> XEIGTPW_12408_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12408_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_pipe_crc_basic@hang-read-crc: - bat-bmg-1: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#877]) +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-bmg-1/igt at kms_pipe_crc_basic@hang-read-crc.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/bat-bmg-1/igt at kms_pipe_crc_basic@hang-read-crc.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][3] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][4] ([Intel XE#2229]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_intel_bb@intel-bb-blit-x: - bat-adlp-vf: [DMESG-WARN][5] ([Intel XE#3958]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][9] ([Intel XE#1192]) -> [SKIP][10] ([Intel XE#2229] / [Intel XE#455]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/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 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 Build changes ------------- * IGT: IGT_8182 -> IGTPW_12408 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12408: 8977a5326aa3b1f4ad89ff76c4f6198b0ed10d89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From sai.teja.pottumuttu at intel.com Thu Jan 9 04:26:18 2025 From: sai.teja.pottumuttu at intel.com (Pottumuttu, Sai Teja) Date: Thu, 9 Jan 2025 09:56:18 +0530 Subject: [PATCH i-g-t] drm-uapi/xe: Sync with OA uapi updates In-Reply-To: <20250109032331.2774067-1-ashutosh.dixit@intel.com> References: <20250109032331.2774067-1-ashutosh.dixit@intel.com> Message-ID: On 09-01-2025 08:53, Ashutosh Dixit wrote: > Align with kernel commit 5637797add2a ("drm/xe/oa/uapi: Expose an unblock > after N reports OA property"). > > Signed-off-by: Ashutosh Dixit > --- > include/drm-uapi/xe_drm.h | 18 +++++++++++++++++- > 1 file changed, 17 insertions(+), 1 deletion(-) > > diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h > index 56163eb913..08e263b3b2 100644 > --- a/include/drm-uapi/xe_drm.h > +++ b/include/drm-uapi/xe_drm.h > @@ -134,7 +134,7 @@ extern "C" { > * redefine the interface more easily than an ever growing struct of > * increasing complexity, and for large parts of that interface to be > * entirely optional. The downside is more pointer chasing; chasing across > - * the __user boundary with pointers encapsulated inside u64. > + * the boundary with pointers encapsulated inside u64. I think this line change doesn't exist in kernel. Was it intentionally changed here for some reason? With that addressed, Reviewed-by: Sai Teja Pottumuttu Thanks, Sai Teja > * > * Example chaining: > * > @@ -1486,6 +1486,8 @@ struct drm_xe_oa_unit { > __u64 capabilities; > #define DRM_XE_OA_CAPS_BASE (1 << 0) > #define DRM_XE_OA_CAPS_SYNCS (1 << 1) > +#define DRM_XE_OA_CAPS_OA_BUFFER_SIZE (1 << 2) > +#define DRM_XE_OA_CAPS_WAIT_NUM_REPORTS (1 << 3) > > /** @oa_timestamp_freq: OA timestamp freq */ > __u64 oa_timestamp_freq; > @@ -1651,6 +1653,20 @@ enum drm_xe_oa_property_id { > * to the VM bind case. > */ > DRM_XE_OA_PROPERTY_SYNCS, > + > + /** > + * @DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE: Size of OA buffer to be > + * allocated by the driver in bytes. Supported sizes are powers of > + * 2 from 128 KiB to 128 MiB. When not specified, a 16 MiB OA > + * buffer is allocated by default. > + */ > + DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, > + > + /** > + * @DRM_XE_OA_PROPERTY_WAIT_NUM_REPORTS: Number of reports to wait > + * for before unblocking poll or read > + */ > + DRM_XE_OA_PROPERTY_WAIT_NUM_REPORTS, > }; > > /** From patchwork at emeril.freedesktop.org Thu Jan 9 04:32:02 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 04:32:02 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_drm-uapi/xe=3A_Sync_with_?= =?utf-8?q?OA_uapi_updates?= In-Reply-To: <20250109032331.2774067-1-ashutosh.dixit@intel.com> References: <20250109032331.2774067-1-ashutosh.dixit@intel.com> Message-ID: <173639712212.1510823.18374464166778185264@b555e5b46a47> == Series Details == Series: drm-uapi/xe: Sync with OA uapi updates URL : https://patchwork.freedesktop.org/series/143297/ State : failure == Summary == CI Bug Log - changes from IGT_8182 -> IGTPW_12408 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12408 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12408, 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_12408/index.html Participating hosts (38 -> 36) ------------------------------ Missing (2): fi-snb-2520m bat-twl-2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12408: ### IGT changes ### #### Possible regressions #### * igt at dmabuf@all-tests at dma_fence_chain: - bat-jsl-3: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-jsl-3/igt at dmabuf@all-tests at dma_fence_chain.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12408/bat-jsl-3/igt at dmabuf@all-tests at dma_fence_chain.html Known issues ------------ Here are the changes found in IGTPW_12408 that come from known issues: ### IGT changes ### #### Issues hit #### * 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_8182/bat-arlh-3/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12408/bat-arlh-3/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][5] ([i915#13393]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12408/bat-mtlp-9/igt at i915_selftest@live at workarounds.html - {bat-arls-6}: [DMESG-FAIL][7] ([i915#13393]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arls-6/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12408/bat-arls-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_8182 -> IGTPW_12408 * Linux: CI_DRM_15924 -> CI_DRM_15927 CI-20190529: 20190529 CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15927: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12408: 8977a5326aa3b1f4ad89ff76c4f6198b0ed10d89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12408/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 04:48:09 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 04:48:09 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_lib/amdgpu=3A_improve_pci?= =?utf-8?q?=5Funplug_test?= In-Reply-To: <20250109033222.21861-1-vitaly.prosyak@amd.com> References: <20250109033222.21861-1-vitaly.prosyak@amd.com> Message-ID: <173639808940.1513530.3666692758172595275@b555e5b46a47> == Series Details == Series: lib/amdgpu: improve pci_unplug test URL : https://patchwork.freedesktop.org/series/143299/ State : success == Summary == CI Bug Log - changes from XEIGT_8182_BAT -> XEIGTPW_12409_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12409_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_intel_bb@intel-bb-blit-x: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3958]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/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_8182 -> IGTPW_12409 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12409: 12409 IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 04:59:14 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 04:59:14 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_lib/amdgpu=3A_improve_pci?= =?utf-8?q?=5Funplug_test?= In-Reply-To: <20250109033222.21861-1-vitaly.prosyak@amd.com> References: <20250109033222.21861-1-vitaly.prosyak@amd.com> Message-ID: <173639875427.1519988.9617094407886812658@b555e5b46a47> == Series Details == Series: lib/amdgpu: improve pci_unplug test URL : https://patchwork.freedesktop.org/series/143299/ State : success == Summary == CI Bug Log - changes from IGT_8182 -> IGTPW_12409 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12409 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_8182/bat-mtlp-8/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/bat-mtlp-8/igt at i915_selftest@live.html - bat-mtlp-6: [PASS][3] -> [DMESG-FAIL][4] ([i915#13393]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-mtlp-6/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/bat-mtlp-6/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-adlp-9: [PASS][5] -> [INCOMPLETE][6] ([i915#9413]) +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-adlp-9/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/bat-adlp-9/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-arls-6}: [DMESG-FAIL][7] ([i915#13393]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arls-6/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/bat-arls-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 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8182 -> IGTPW_12409 * Linux: CI_DRM_15924 -> CI_DRM_15927 CI-20190529: 20190529 CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15927: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12409: 12409 IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From ashutosh.dixit at intel.com Thu Jan 9 05:15:32 2025 From: ashutosh.dixit at intel.com (Dixit, Ashutosh) Date: Wed, 08 Jan 2025 21:15:32 -0800 Subject: [PATCH i-g-t] drm-uapi/xe: Sync with OA uapi updates In-Reply-To: References: <20250109032331.2774067-1-ashutosh.dixit@intel.com> Message-ID: <85a5c0va8b.wl-ashutosh.dixit@intel.com> On Wed, 08 Jan 2025 20:26:18 -0800, Pottumuttu, Sai Teja wrote: > > On 09-01-2025 08:53, Ashutosh Dixit wrote: > > Align with kernel commit 5637797add2a ("drm/xe/oa/uapi: Expose an unblock > > after N reports OA property"). > > > > Signed-off-by: Ashutosh Dixit > > --- > > include/drm-uapi/xe_drm.h | 18 +++++++++++++++++- > > 1 file changed, 17 insertions(+), 1 deletion(-) > > > > diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h > > index 56163eb913..08e263b3b2 100644 > > --- a/include/drm-uapi/xe_drm.h > > +++ b/include/drm-uapi/xe_drm.h > > @@ -134,7 +134,7 @@ extern "C" { > > * redefine the interface more easily than an ever growing struct of > > * increasing complexity, and for large parts of that interface to be > > * entirely optional. The downside is more pointer chasing; chasing across > > - * the __user boundary with pointers encapsulated inside u64. > > + * the boundary with pointers encapsulated inside u64. > > I think this line change doesn't exist in kernel. Was it intentionally > changed here for some reason? No, the file is automatically generated with 'make headers_install' in the kernel. 'make headers_install' will remove all '__user' tags, because __user only makes sense in the kernel, not in userspace. This seems to be the only instance of __user in xe_drm.h but there are many more instances of __user in i915_drm.h. You can see __user being removed by comparing i915_drm.h files between kernel and IGT. > > With that addressed, > Reviewed-by: Sai Teja Pottumuttu Thanks! > > Thanks, > Sai Teja > > > * > > * Example chaining: > > * > > @@ -1486,6 +1486,8 @@ struct drm_xe_oa_unit { > > __u64 capabilities; > > #define DRM_XE_OA_CAPS_BASE (1 << 0) > > #define DRM_XE_OA_CAPS_SYNCS (1 << 1) > > +#define DRM_XE_OA_CAPS_OA_BUFFER_SIZE (1 << 2) > > +#define DRM_XE_OA_CAPS_WAIT_NUM_REPORTS (1 << 3) > > /** @oa_timestamp_freq: OA timestamp freq */ > > __u64 oa_timestamp_freq; > > @@ -1651,6 +1653,20 @@ enum drm_xe_oa_property_id { > > * to the VM bind case. > > */ > > DRM_XE_OA_PROPERTY_SYNCS, > > + > > + /** > > + * @DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE: Size of OA buffer to be > > + * allocated by the driver in bytes. Supported sizes are powers of > > + * 2 from 128 KiB to 128 MiB. When not specified, a 16 MiB OA > > + * buffer is allocated by default. > > + */ > > + DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, > > + > > + /** > > + * @DRM_XE_OA_PROPERTY_WAIT_NUM_REPORTS: Number of reports to wait > > + * for before unblocking poll or read > > + */ > > + DRM_XE_OA_PROPERTY_WAIT_NUM_REPORTS, > > }; > > /** From patchwork at emeril.freedesktop.org Thu Jan 9 05:52:20 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 05:52:20 -0000 Subject: =?utf-8?q?=E2=9C=97_GitLab=2EPipeline=3A_warning_for_series_starting_with_?= =?utf-8?q?=5Bi-g-t=2Cv2=2C1/8=5D_lib/xe/xe=5Fgt=3A_Fix_header_guards_and_bo?= =?utf-8?q?ilerplate_=28rev2=29?= In-Reply-To: <20250107202615.1306306-1-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> Message-ID: <173640194009.1528348.6438162851710893205@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v2,1/8] lib/xe/xe_gt: Fix header guards and boilerplate (rev2) URL : https://patchwork.freedesktop.org/series/143204/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1342168 for the overview. build:tests-debian-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69079581): section_start:1736401482:get_sources Getting source from Git repository $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out a5cf41c9 as detached HEAD (ref is intel/IGTPW_12410)... Skipping Git submodules setup section_end:1736401486:get_sources section_start:1736401486:step_script Executing "step_script" stage of the job script Using docker image sha256:ca01fc804bb92e5df42a202dd7e0470610c6711c66a808525defcb8bbb774078 for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian:commit-a5cf41c94f7e4a65cd84e9b9d18f62d93d97e36c with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian at sha256:b9fe73c6ff5d68f5692fd18b9076735679c8bfa7ed393e752dd4927a2cdf9874 ... section_end:1736401489:step_script section_start:1736401489:cleanup_file_variables Cleaning up project directory and file based variables section_end:1736401490:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:ca01fc804bb92e5df42a202dd7e0470610c6711c66a808525defcb8bbb774078: image not known (docker.go:650:0s) build:tests-debian-meson-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69079585): Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out a5cf41c9 as detached HEAD (ref is intel/IGTPW_12410)... Removing build/ Removing lib/i915/perf-configs/__pycache__/ Removing lib/xe/oa-configs/__pycache__/ Removing scripts/__pycache__/ Skipping Git submodules setup section_end:1736401486:get_sources section_start:1736401486:step_script Executing "step_script" stage of the job script Using docker image sha256:cc55efdc667be826910d414a562c76ce1130a9c15255a0dd115431bc42f83448 for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-mips:commit-a5cf41c94f7e4a65cd84e9b9d18f62d93d97e36c with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-mips at sha256:c829c44880da4782b7a72626c259ac6904b4bd5f08601e66b3be889ca1c0cf79 ... section_end:1736401489:step_script section_start:1736401489:cleanup_file_variables Cleaning up project directory and file based variables section_end:1736401491:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:cc55efdc667be826910d414a562c76ce1130a9c15255a0dd115431bc42f83448: image not known (docker.go:650:0s) == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1342168 From mohammed.thasleem at intel.com Thu Jan 9 05:53:16 2025 From: mohammed.thasleem at intel.com (Mohammed Thasleem) Date: Thu, 9 Jan 2025 11:23:16 +0530 Subject: [PATCH i-g-t v2 1/2] tests/intel/kms_frontbuffer_tracking: Add skip condition for bmg platform Message-ID: <20250109055317.404538-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_frontbuffer_tracking.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c index e41ee0a80..2d47194dd 100644 --- a/tests/intel/kms_frontbuffer_tracking.c +++ b/tests/intel/kms_frontbuffer_tracking.c @@ -2756,6 +2756,10 @@ static void prepare_subtest_data(const struct test_mode *t, static void prepare_subtest_screens(const struct test_mode *t) { + /* FBC disabled: Wa_16023588340 */ + igt_skip_on_f((IS_BATTLEMAGE(drm.devid) && t->feature == FEATURE_FBC), + "FBC isn't supported on BMG\n"); + if (t->pipes == PIPE_DUAL) enable_both_screens_and_wait(t); else @@ -2800,6 +2804,10 @@ static void prepare_subtest(const struct test_mode *t, */ static void rte_subtest(const struct test_mode *t) { + /* FBC disabled: Wa_16023588340 */ + igt_skip_on_f((IS_BATTLEMAGE(drm.devid) && t->feature == FEATURE_FBC), + "FBC isn't supported on BMG\n"); + prepare_subtest_data(t, NULL); unset_all_crtcs(); @@ -4285,6 +4293,10 @@ igt_main_args("", long_options, help_str, opt_handler, NULL) t.flip = -1; t.tiling = opt.tiling; + /* FBC disabled: Wa_16023588340 */ + igt_skip_on_f((IS_BATTLEMAGE(drm.devid) && t.feature == FEATURE_FBC), + "FBC isn't supported on BMG\n"); + for_each_pipe(&drm.display, pipe) { if (pipe == default_pipe) { igt_info("pipe-%s: FBC validated in other subtest\n", kmstest_pipe_name(pipe)); -- 2.43.0 From mohammed.thasleem at intel.com Thu Jan 9 05:53:17 2025 From: mohammed.thasleem at intel.com (Mohammed Thasleem) Date: Thu, 9 Jan 2025 11:23:17 +0530 Subject: [PATCH i-g-t v2 2/2] HAX: DO NOT MERGE In-Reply-To: <20250109055317.404538-1-mohammed.thasleem@intel.com> References: <20250109055317.404538-1-mohammed.thasleem@intel.com> Message-ID: <20250109055317.404538-2-mohammed.thasleem@intel.com> Hax patch not for merge. Signed-off-by: Mohammed Thasleem --- tests/intel-ci/fast-feedback.testlist | 1612 ++++++++++++++++++++-- tests/intel-ci/xe-fast-feedback.testlist | 992 +++++++++---- 2 files changed, 2223 insertions(+), 381 deletions(-) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index be0965110..f9d0e4dc5 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -2,116 +2,726 @@ 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@fbc-1p-rte +igt at kms_frontbuffer_tracking@fbc-2p-rte +igt at kms_frontbuffer_tracking@psr-1p-rte +igt at kms_frontbuffer_tracking@psr-2p-rte +igt at kms_frontbuffer_tracking@fbcpsr-1p-rte +igt at kms_frontbuffer_tracking@fbcpsr-2p-rte +igt at kms_frontbuffer_tracking@drrs-1p-rte +igt at kms_frontbuffer_tracking@drrs-2p-rte +igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte +igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte +igt at kms_frontbuffer_tracking@plane-fbc-rte +igt at kms_frontbuffer_tracking@pipe-fbc-rte +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-render +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@psr-rgb565-draw-blt +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@psr-rgb565-draw-render +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary +igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary +igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbc-modesetfrombusy +igt at kms_frontbuffer_tracking@fbc-stridechange +igt at kms_frontbuffer_tracking@fbc-tiling-linear +igt at kms_frontbuffer_tracking@fbc-tiling-y +igt at kms_frontbuffer_tracking@fbc-tiling-4 +igt at kms_frontbuffer_tracking@fbc-suspend +igt at kms_frontbuffer_tracking@psr-modesetfrombusy +igt at kms_frontbuffer_tracking@psr-slowdraw +igt at kms_frontbuffer_tracking@psr-suspend +igt at kms_frontbuffer_tracking@fbcpsr-modesetfrombusy +igt at kms_frontbuffer_tracking@fbcpsr-stridechange +igt at kms_frontbuffer_tracking@fbcpsr-tiling-linear +igt at kms_frontbuffer_tracking@fbcpsr-tiling-y +igt at kms_frontbuffer_tracking@fbcpsr-tiling-4 +igt at kms_frontbuffer_tracking@fbcpsr-slowdraw +igt at kms_frontbuffer_tracking@fbcpsr-suspend +igt at kms_frontbuffer_tracking@drrs-modesetfrombusy +igt at kms_frontbuffer_tracking@drrs-slowdraw +igt at kms_frontbuffer_tracking@drrs-suspend +igt at kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy +igt at kms_frontbuffer_tracking@fbcdrrs-stridechange +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-4 +igt at kms_frontbuffer_tracking@fbcdrrs-slowdraw +igt at kms_frontbuffer_tracking@fbcdrrs-suspend igt at kms_frontbuffer_tracking@basic igt at kms_hdmi_inject@inject-audio igt at kms_pipe_crc_basic@compare-crc-sanitycheck-xr24 @@ -169,3 +779,785 @@ igt at i915_pm_rpm@module-reload # Kernel selftests igt at i915_selftest@live igt at dmabuf@all-tests +igt at meta_test@fail-result +iff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist +ndex 8952faec5..165c4c85e 100644 +-- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist +@ -1,276 +1,724 @@ +# 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@fbc-1p-rte +igt at kms_frontbuffer_tracking@fbc-2p-rte +igt at kms_frontbuffer_tracking@psr-1p-rte +igt at kms_frontbuffer_tracking@psr-2p-rte +igt at kms_frontbuffer_tracking@fbcpsr-1p-rte +igt at kms_frontbuffer_tracking@fbcpsr-2p-rte +igt at kms_frontbuffer_tracking@drrs-1p-rte +igt at kms_frontbuffer_tracking@drrs-2p-rte +igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte +igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte +igt at kms_frontbuffer_tracking@plane-fbc-rte +igt at kms_frontbuffer_tracking@pipe-fbc-rte +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-render +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@psr-rgb565-draw-blt +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@psr-rgb565-draw-render +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary +igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary +igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbc-modesetfrombusy +igt at kms_frontbuffer_tracking@fbc-stridechange +igt at kms_frontbuffer_tracking@fbc-tiling-linear +igt at kms_frontbuffer_tracking@fbc-tiling-y +igt at kms_frontbuffer_tracking@fbc-tiling-4 +igt at kms_frontbuffer_tracking@fbc-suspend +igt at kms_frontbuffer_tracking@psr-modesetfrombusy +igt at kms_frontbuffer_tracking@psr-slowdraw +igt at kms_frontbuffer_tracking@psr-suspend +igt at kms_frontbuffer_tracking@fbcpsr-modesetfrombusy +igt at kms_frontbuffer_tracking@fbcpsr-stridechange +igt at kms_frontbuffer_tracking@fbcpsr-tiling-linear +igt at kms_frontbuffer_tracking@fbcpsr-tiling-y +igt at kms_frontbuffer_tracking@fbcpsr-tiling-4 +igt at kms_frontbuffer_tracking@fbcpsr-slowdraw +igt at kms_frontbuffer_tracking@fbcpsr-suspend +igt at kms_frontbuffer_tracking@drrs-modesetfrombusy +igt at kms_frontbuffer_tracking@drrs-slowdraw +igt at kms_frontbuffer_tracking@drrs-suspend +igt at kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy +igt at kms_frontbuffer_tracking@fbcdrrs-stridechange +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-4 +igt at kms_frontbuffer_tracking@fbcdrrs-slowdraw +igt at kms_frontbuffer_tracking@fbcdrrs-suspend +igt at kms_frontbuffer_tracking@basic +igt at meta_test@fail-result diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index 0234d3e72..6e5b2b4c2 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -1,275 +1,725 @@ # 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@fbc-1p-rte +igt at kms_frontbuffer_tracking@fbc-2p-rte +igt at kms_frontbuffer_tracking@psr-1p-rte +igt at kms_frontbuffer_tracking@psr-2p-rte +igt at kms_frontbuffer_tracking@fbcpsr-1p-rte +igt at kms_frontbuffer_tracking@fbcpsr-2p-rte +igt at kms_frontbuffer_tracking@drrs-1p-rte +igt at kms_frontbuffer_tracking@drrs-2p-rte +igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte +igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte +igt at kms_frontbuffer_tracking@plane-fbc-rte +igt at kms_frontbuffer_tracking@pipe-fbc-rte +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-render +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@psr-rgb565-draw-blt +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@psr-rgb565-draw-render +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary +igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary +igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbc-modesetfrombusy +igt at kms_frontbuffer_tracking@fbc-stridechange +igt at kms_frontbuffer_tracking@fbc-tiling-linear +igt at kms_frontbuffer_tracking@fbc-tiling-y +igt at kms_frontbuffer_tracking@fbc-tiling-4 +igt at kms_frontbuffer_tracking@fbc-suspend +igt at kms_frontbuffer_tracking@psr-modesetfrombusy +igt at kms_frontbuffer_tracking@psr-slowdraw +igt at kms_frontbuffer_tracking@psr-suspend +igt at kms_frontbuffer_tracking@fbcpsr-modesetfrombusy +igt at kms_frontbuffer_tracking@fbcpsr-stridechange +igt at kms_frontbuffer_tracking@fbcpsr-tiling-linear +igt at kms_frontbuffer_tracking@fbcpsr-tiling-y +igt at kms_frontbuffer_tracking@fbcpsr-tiling-4 +igt at kms_frontbuffer_tracking@fbcpsr-slowdraw +igt at kms_frontbuffer_tracking@fbcpsr-suspend +igt at kms_frontbuffer_tracking@drrs-modesetfrombusy +igt at kms_frontbuffer_tracking@drrs-slowdraw +igt at kms_frontbuffer_tracking@drrs-suspend +igt at kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy +igt at kms_frontbuffer_tracking@fbcdrrs-stridechange +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-4 +igt at kms_frontbuffer_tracking@fbcdrrs-slowdraw +igt at kms_frontbuffer_tracking@fbcdrrs-suspend 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 meta_test@fail-result -- 2.43.0 From mohammed.thasleem at intel.com Thu Jan 9 05:56:51 2025 From: mohammed.thasleem at intel.com (Mohammed Thasleem) Date: Thu, 9 Jan 2025 11:26:51 +0530 Subject: [PATCH v3 1/2] tests/intel/kms_frontbuffer_tracking: Add skip condition for bmg platform Message-ID: <20250109055652.405793-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_frontbuffer_tracking.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c index e41ee0a80..2d47194dd 100644 --- a/tests/intel/kms_frontbuffer_tracking.c +++ b/tests/intel/kms_frontbuffer_tracking.c @@ -2756,6 +2756,10 @@ static void prepare_subtest_data(const struct test_mode *t, static void prepare_subtest_screens(const struct test_mode *t) { + /* FBC disabled: Wa_16023588340 */ + igt_skip_on_f((IS_BATTLEMAGE(drm.devid) && t->feature == FEATURE_FBC), + "FBC isn't supported on BMG\n"); + if (t->pipes == PIPE_DUAL) enable_both_screens_and_wait(t); else @@ -2800,6 +2804,10 @@ static void prepare_subtest(const struct test_mode *t, */ static void rte_subtest(const struct test_mode *t) { + /* FBC disabled: Wa_16023588340 */ + igt_skip_on_f((IS_BATTLEMAGE(drm.devid) && t->feature == FEATURE_FBC), + "FBC isn't supported on BMG\n"); + prepare_subtest_data(t, NULL); unset_all_crtcs(); @@ -4285,6 +4293,10 @@ igt_main_args("", long_options, help_str, opt_handler, NULL) t.flip = -1; t.tiling = opt.tiling; + /* FBC disabled: Wa_16023588340 */ + igt_skip_on_f((IS_BATTLEMAGE(drm.devid) && t.feature == FEATURE_FBC), + "FBC isn't supported on BMG\n"); + for_each_pipe(&drm.display, pipe) { if (pipe == default_pipe) { igt_info("pipe-%s: FBC validated in other subtest\n", kmstest_pipe_name(pipe)); -- 2.43.0 From mohammed.thasleem at intel.com Thu Jan 9 05:56:52 2025 From: mohammed.thasleem at intel.com (Mohammed Thasleem) Date: Thu, 9 Jan 2025 11:26:52 +0530 Subject: [PATCH v3 2/2] HAX: DO NOT MERGE In-Reply-To: <20250109055652.405793-1-mohammed.thasleem@intel.com> References: <20250109055652.405793-1-mohammed.thasleem@intel.com> Message-ID: <20250109055652.405793-2-mohammed.thasleem@intel.com> Hax patch not for merge. Signed-off-by: Mohammed Thasleem --- tests/intel-ci/fast-feedback.testlist | 1612 ++++++++++++++++++++-- tests/intel-ci/xe-fast-feedback.testlist | 992 +++++++++---- 2 files changed, 2223 insertions(+), 381 deletions(-) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index be0965110..596c8984c 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -2,116 +2,726 @@ 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@fbc-1p-rte +igt at kms_frontbuffer_tracking@fbc-2p-rte +igt at kms_frontbuffer_tracking@psr-1p-rte +igt at kms_frontbuffer_tracking@psr-2p-rte +igt at kms_frontbuffer_tracking@fbcpsr-1p-rte +igt at kms_frontbuffer_tracking@fbcpsr-2p-rte +igt at kms_frontbuffer_tracking@drrs-1p-rte +igt at kms_frontbuffer_tracking@drrs-2p-rte +igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte +igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte +igt at kms_frontbuffer_tracking@plane-fbc-rte +igt at kms_frontbuffer_tracking@pipe-fbc-rte +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-render +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@psr-rgb565-draw-blt +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@psr-rgb565-draw-render +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary +igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary +igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbc-modesetfrombusy +igt at kms_frontbuffer_tracking@fbc-stridechange +igt at kms_frontbuffer_tracking@fbc-tiling-linear +igt at kms_frontbuffer_tracking@fbc-tiling-y +igt at kms_frontbuffer_tracking@fbc-tiling-4 +igt at kms_frontbuffer_tracking@fbc-suspend +igt at kms_frontbuffer_tracking@psr-modesetfrombusy +igt at kms_frontbuffer_tracking@psr-slowdraw +igt at kms_frontbuffer_tracking@psr-suspend +igt at kms_frontbuffer_tracking@fbcpsr-modesetfrombusy +igt at kms_frontbuffer_tracking@fbcpsr-stridechange +igt at kms_frontbuffer_tracking@fbcpsr-tiling-linear +igt at kms_frontbuffer_tracking@fbcpsr-tiling-y +igt at kms_frontbuffer_tracking@fbcpsr-tiling-4 +igt at kms_frontbuffer_tracking@fbcpsr-slowdraw +igt at kms_frontbuffer_tracking@fbcpsr-suspend +igt at kms_frontbuffer_tracking@drrs-modesetfrombusy +igt at kms_frontbuffer_tracking@drrs-slowdraw +igt at kms_frontbuffer_tracking@drrs-suspend +igt at kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy +igt at kms_frontbuffer_tracking@fbcdrrs-stridechange +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-4 +igt at kms_frontbuffer_tracking@fbcdrrs-slowdraw +igt at kms_frontbuffer_tracking@fbcdrrs-suspend igt at kms_frontbuffer_tracking@basic igt at kms_hdmi_inject@inject-audio igt at kms_pipe_crc_basic@compare-crc-sanitycheck-xr24 @@ -169,3 +779,785 @@ igt at i915_pm_rpm@module-reload # Kernel selftests igt at i915_selftest@live igt at dmabuf@all-tests +igt at meta_test@fail-result +iff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist +ndex 8952faec5..165c4c85e 100644 +-- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist +@ -1,276 +1,724 @@ +# 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@fbc-1p-rte +igt at kms_frontbuffer_tracking@fbc-2p-rte +igt at kms_frontbuffer_tracking@psr-1p-rte +igt at kms_frontbuffer_tracking@psr-2p-rte +igt at kms_frontbuffer_tracking@fbcpsr-1p-rte +igt at kms_frontbuffer_tracking@fbcpsr-2p-rte +igt at kms_frontbuffer_tracking@drrs-1p-rte +igt at kms_frontbuffer_tracking@drrs-2p-rte +igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte +igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte +igt at kms_frontbuffer_tracking@plane-fbc-rte +igt at kms_frontbuffer_tracking@pipe-fbc-rte +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-render +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@psr-rgb565-draw-blt +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@psr-rgb565-draw-render +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary +igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary +igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbc-modesetfrombusy +igt at kms_frontbuffer_tracking@fbc-stridechange +igt at kms_frontbuffer_tracking@fbc-tiling-linear +igt at kms_frontbuffer_tracking@fbc-tiling-y +igt at kms_frontbuffer_tracking@fbc-tiling-4 +igt at kms_frontbuffer_tracking@fbc-suspend +igt at kms_frontbuffer_tracking@psr-modesetfrombusy +igt at kms_frontbuffer_tracking@psr-slowdraw +igt at kms_frontbuffer_tracking@psr-suspend +igt at kms_frontbuffer_tracking@fbcpsr-modesetfrombusy +igt at kms_frontbuffer_tracking@fbcpsr-stridechange +igt at kms_frontbuffer_tracking@fbcpsr-tiling-linear +igt at kms_frontbuffer_tracking@fbcpsr-tiling-y +igt at kms_frontbuffer_tracking@fbcpsr-tiling-4 +igt at kms_frontbuffer_tracking@fbcpsr-slowdraw +igt at kms_frontbuffer_tracking@fbcpsr-suspend +igt at kms_frontbuffer_tracking@drrs-modesetfrombusy +igt at kms_frontbuffer_tracking@drrs-slowdraw +igt at kms_frontbuffer_tracking@drrs-suspend +igt at kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy +igt at kms_frontbuffer_tracking@fbcdrrs-stridechange +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-4 +igt at kms_frontbuffer_tracking@fbcdrrs-slowdraw +igt at kms_frontbuffer_tracking@fbcdrrs-suspend +igt at kms_frontbuffer_tracking@basic +igt at meta_test@fail-result diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index 0234d3e72..6e5b2b4c2 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -1,275 +1,725 @@ # 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@fbc-1p-rte +igt at kms_frontbuffer_tracking@fbc-2p-rte +igt at kms_frontbuffer_tracking@psr-1p-rte +igt at kms_frontbuffer_tracking@psr-2p-rte +igt at kms_frontbuffer_tracking@fbcpsr-1p-rte +igt at kms_frontbuffer_tracking@fbcpsr-2p-rte +igt at kms_frontbuffer_tracking@drrs-1p-rte +igt at kms_frontbuffer_tracking@drrs-2p-rte +igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte +igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte +igt at kms_frontbuffer_tracking@plane-fbc-rte +igt at kms_frontbuffer_tracking@pipe-fbc-rte +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt +igt at kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-1p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-indfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-2p-shrfb-fliptrack-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff +igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen +igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw +igt at kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-farfromfence-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbc-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-render +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@psr-rgb565-draw-blt +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@psr-rgb565-draw-render +igt at kms_frontbuffer_tracking@psr-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render +igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-cpu +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-gtt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-pwrite +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt +igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render +igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render +igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary +igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary +igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary +igt at kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary +igt at kms_frontbuffer_tracking@fbc-modesetfrombusy +igt at kms_frontbuffer_tracking@fbc-stridechange +igt at kms_frontbuffer_tracking@fbc-tiling-linear +igt at kms_frontbuffer_tracking@fbc-tiling-y +igt at kms_frontbuffer_tracking@fbc-tiling-4 +igt at kms_frontbuffer_tracking@fbc-suspend +igt at kms_frontbuffer_tracking@psr-modesetfrombusy +igt at kms_frontbuffer_tracking@psr-slowdraw +igt at kms_frontbuffer_tracking@psr-suspend +igt at kms_frontbuffer_tracking@fbcpsr-modesetfrombusy +igt at kms_frontbuffer_tracking@fbcpsr-stridechange +igt at kms_frontbuffer_tracking@fbcpsr-tiling-linear +igt at kms_frontbuffer_tracking@fbcpsr-tiling-y +igt at kms_frontbuffer_tracking@fbcpsr-tiling-4 +igt at kms_frontbuffer_tracking@fbcpsr-slowdraw +igt at kms_frontbuffer_tracking@fbcpsr-suspend +igt at kms_frontbuffer_tracking@drrs-modesetfrombusy +igt at kms_frontbuffer_tracking@drrs-slowdraw +igt at kms_frontbuffer_tracking@drrs-suspend +igt at kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy +igt at kms_frontbuffer_tracking@fbcdrrs-stridechange +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y +igt at kms_frontbuffer_tracking@fbcdrrs-tiling-4 +igt at kms_frontbuffer_tracking@fbcdrrs-slowdraw +igt at kms_frontbuffer_tracking@fbcdrrs-suspend 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 meta_test@fail-result -- 2.43.0 From patchwork at emeril.freedesktop.org Thu Jan 9 06:15:48 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 06:15:48 -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/8=5D_lib/xe/xe=5Fgt=3A_Fix_header_guards_and_boilerpl?= =?utf-8?q?ate_=28rev2=29?= In-Reply-To: <20250107202615.1306306-1-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> Message-ID: <173640334835.1538219.10929803420133213811@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v2,1/8] lib/xe/xe_gt: Fix header guards and boilerplate (rev2) URL : https://patchwork.freedesktop.org/series/143204/ State : success == Summary == CI Bug Log - changes from XEIGT_8182_BAT -> XEIGTPW_12410_BAT ==================================================== Summary ------- **WARNING** Minor unknown changes coming with XEIGTPW_12410_BAT need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12410_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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12410_BAT: ### IGT changes ### #### Warnings #### * igt at xe_gt_freq@freq_fixed_idle: - bat-pvc-2: [SKIP][1] ([Intel XE#1021]) -> [SKIP][2] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-pvc-2/igt at xe_gt_freq@freq_fixed_idle.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/bat-pvc-2/igt at xe_gt_freq@freq_fixed_idle.html Known issues ------------ Here are the changes found in XEIGTPW_12410_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_intel_bb@blit-reloc: - bat-adlp-vf: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#3958]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_intel_bb@blit-reloc.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/bat-adlp-vf/igt at xe_intel_bb@blit-reloc.html #### Possible fixes #### * igt at xe_intel_bb@intel-bb-blit-x: - bat-adlp-vf: [DMESG-WARN][5] ([Intel XE#3958]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html [Intel XE#1021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1021 [Intel XE#3958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3958 Build changes ------------- * IGT: IGT_8182 -> IGTPW_12410 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12410: a5cf41c94f7e4a65cd84e9b9d18f62d93d97e36c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 06:24:54 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 06:24:54 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_series_starting_with_=5Bi?= =?utf-8?q?-g-t=2Cv2=2C1/8=5D_lib/xe/xe=5Fgt=3A_Fix_header_guards_and_boiler?= =?utf-8?q?plate_=28rev2=29?= In-Reply-To: <20250107202615.1306306-1-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> Message-ID: <173640389498.1538249.7583474626665798969@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v2,1/8] lib/xe/xe_gt: Fix header guards and boilerplate (rev2) URL : https://patchwork.freedesktop.org/series/143204/ State : success == Summary == CI Bug Log - changes from IGT_8182 -> IGTPW_12410 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12410 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at gem_ctx_create@basic-files: - fi-pnv-d510: NOTRUN -> [SKIP][1] +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/fi-pnv-d510/igt at gem_ctx_create@basic-files.html * igt at gem_exec_gttfill@basic: - fi-pnv-d510: NOTRUN -> [ABORT][2] ([i915#13169]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/fi-pnv-d510/igt at gem_exec_gttfill@basic.html #### Possible fixes #### * igt at i915_module_load@load: - fi-pnv-d510: [ABORT][3] ([i915#13203]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/fi-pnv-d510/igt at i915_module_load@load.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/fi-pnv-d510/igt at i915_module_load@load.html * igt at i915_selftest@live at gt_mocs: - bat-twl-2: [ABORT][5] ([i915#12919]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-twl-2/igt at i915_selftest@live at gt_mocs.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/bat-twl-2/igt at i915_selftest@live at gt_mocs.html * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][7] ([i915#13393]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/bat-mtlp-9/igt at i915_selftest@live at workarounds.html - {bat-arls-6}: [DMESG-FAIL][9] ([i915#13393]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arls-6/igt at i915_selftest@live at workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/bat-arls-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#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13169 [i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8182 -> IGTPW_12410 * Linux: CI_DRM_15924 -> CI_DRM_15927 CI-20190529: 20190529 CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15927: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12410: a5cf41c94f7e4a65cd84e9b9d18f62d93d97e36c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 07:12:00 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 07:12:00 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EBAT=3A_failure_for_series_starting_with_=5Bi-g?= =?utf-8?q?-t=2Cv2=2C1/2=5D_tests/intel/kms=5Ffrontbuffer=5Ftracking=3A_Add_?= =?utf-8?q?skip_condition_for_bmg_platform?= In-Reply-To: <20250109055317.404538-1-mohammed.thasleem@intel.com> References: <20250109055317.404538-1-mohammed.thasleem@intel.com> Message-ID: <173640672053.1548331.4511833144249364237@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v2,1/2] tests/intel/kms_frontbuffer_tracking: Add skip condition for bmg platform URL : https://patchwork.freedesktop.org/series/143303/ State : failure == Summary == CI Bug Log - changes from XEIGT_8182_BAT -> XEIGTPW_12411_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12411_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12411_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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12411_BAT: ### IGT changes ### #### Possible regressions #### * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - bat-dg2-oem2: NOTRUN -> [SKIP][1] +40 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-dg2-oem2/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - bat-bmg-1: NOTRUN -> [SKIP][2] +42 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-bmg-1/igt at kms_frontbuffer_tracking@fbc-tiling-4.html Known issues ------------ Here are the changes found in XEIGTPW_12411_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc: - bat-dg2-oem2: NOTRUN -> [SKIP][3] ([Intel XE#651]) +86 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-dg2-oem2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-modesetfrombusy: - bat-bmg-1: NOTRUN -> [SKIP][4] ([Intel XE#2311]) +86 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-bmg-1/igt at kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548]) +223 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-bmg-2/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - bat-lnl-2: NOTRUN -> [SKIP][6] ([Intel XE#2548]) +462 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-lnl-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render: - bat-lnl-1: NOTRUN -> [SKIP][7] ([Intel XE#651]) +73 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-lnl-1/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move: - bat-lnl-1: NOTRUN -> [SKIP][8] ([Intel XE#656]) +239 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-lnl-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - bat-dg2-oem2: NOTRUN -> [SKIP][9] ([Intel XE#658]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-dg2-oem2/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - bat-pvc-2: NOTRUN -> [SKIP][10] ([Intel XE#1024]) +432 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-pvc-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc: - bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#2548]) +238 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - bat-atsm-2: NOTRUN -> [SKIP][12] ([Intel XE#1024]) +432 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-atsm-2/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - bat-bmg-1: NOTRUN -> [SKIP][13] ([Intel XE#2352]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - bat-dg2-oem2: NOTRUN -> [SKIP][14] ([Intel XE#455]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-dg2-oem2/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - bat-bmg-1: NOTRUN -> [SKIP][15] ([Intel XE#2350]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-bmg-1/igt at kms_frontbuffer_tracking@plane-fbc-rte.html - bat-dg2-oem2: NOTRUN -> [SKIP][16] ([Intel XE#1158]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-dg2-oem2/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - bat-bmg-1: NOTRUN -> [SKIP][17] ([Intel XE#2313]) +86 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-bmg-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt: - bat-dg2-oem2: NOTRUN -> [SKIP][18] ([Intel XE#653]) +86 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-dg2-oem2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - bat-adlp-vf: NOTRUN -> [SKIP][19] ([Intel XE#2463]) +462 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-adlp-vf/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - bat-atsm-2: NOTRUN -> [SKIP][20] ([Intel XE#1024] / [Intel XE#783]) +29 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-atsm-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt: - bat-bmg-1: NOTRUN -> [SKIP][21] ([Intel XE#2312]) +238 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - bat-dg2-oem2: NOTRUN -> [SKIP][22] ([Intel XE#656]) +239 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-dg2-oem2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - bat-pvc-2: NOTRUN -> [SKIP][23] ([Intel XE#1024] / [Intel XE#783]) +29 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/bat-pvc-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434 [Intel XE#2463]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2463 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [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#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783 Build changes ------------- * IGT: IGT_8182 -> IGTPW_12411 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12411: dfd7f524e425fd4bb2f75a88c0796782eaf56063 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 07:41:42 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 07:41:42 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EBAT=3A_failure_for_series_starting_with_=5Bv3?= =?utf-8?q?=2C1/2=5D_tests/intel/kms=5Ffrontbuffer=5Ftracking=3A_Add_skip_co?= =?utf-8?q?ndition_for_bmg_platform?= In-Reply-To: <20250109055652.405793-1-mohammed.thasleem@intel.com> References: <20250109055652.405793-1-mohammed.thasleem@intel.com> Message-ID: <173640850253.1554218.1037212051754952126@b555e5b46a47> == Series Details == Series: series starting with [v3,1/2] tests/intel/kms_frontbuffer_tracking: Add skip condition for bmg platform URL : https://patchwork.freedesktop.org/series/143304/ State : failure == Summary == CI Bug Log - changes from XEIGT_8182_BAT -> XEIGTPW_12412_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12412_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12412_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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12412_BAT: ### IGT changes ### #### Possible regressions #### * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - bat-dg2-oem2: NOTRUN -> [SKIP][1] +40 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-dg2-oem2/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - bat-bmg-1: NOTRUN -> [SKIP][2] +42 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-bmg-1/igt at kms_frontbuffer_tracking@fbc-tiling-4.html Known issues ------------ Here are the changes found in XEIGTPW_12412_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc: - bat-dg2-oem2: NOTRUN -> [SKIP][3] ([Intel XE#651]) +86 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-dg2-oem2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-modesetfrombusy: - bat-bmg-1: NOTRUN -> [SKIP][4] ([Intel XE#2311]) +86 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-bmg-1/igt at kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548]) +223 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-bmg-2/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - bat-lnl-2: NOTRUN -> [SKIP][6] ([Intel XE#2548]) +462 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-lnl-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render: - bat-lnl-1: NOTRUN -> [SKIP][7] ([Intel XE#651]) +73 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-lnl-1/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move: - bat-lnl-1: NOTRUN -> [SKIP][8] ([Intel XE#656]) +239 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-lnl-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - bat-dg2-oem2: NOTRUN -> [SKIP][9] ([Intel XE#658]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-dg2-oem2/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - bat-pvc-2: NOTRUN -> [SKIP][10] ([Intel XE#1024]) +432 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-pvc-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc: - bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#2548]) +238 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - bat-atsm-2: NOTRUN -> [SKIP][12] ([Intel XE#1024]) +432 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-atsm-2/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - bat-bmg-1: NOTRUN -> [SKIP][13] ([Intel XE#2352]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - bat-dg2-oem2: NOTRUN -> [SKIP][14] ([Intel XE#455]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-dg2-oem2/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - bat-bmg-1: NOTRUN -> [SKIP][15] ([Intel XE#2350]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-bmg-1/igt at kms_frontbuffer_tracking@plane-fbc-rte.html - bat-dg2-oem2: NOTRUN -> [SKIP][16] ([Intel XE#1158]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-dg2-oem2/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - bat-bmg-1: NOTRUN -> [SKIP][17] ([Intel XE#2313]) +86 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-bmg-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt: - bat-dg2-oem2: NOTRUN -> [SKIP][18] ([Intel XE#653]) +86 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-dg2-oem2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - bat-adlp-vf: NOTRUN -> [SKIP][19] ([Intel XE#2463]) +462 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-adlp-vf/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - bat-atsm-2: NOTRUN -> [SKIP][20] ([Intel XE#1024] / [Intel XE#783]) +29 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-atsm-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt: - bat-bmg-1: NOTRUN -> [SKIP][21] ([Intel XE#2312]) +238 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - bat-dg2-oem2: NOTRUN -> [SKIP][22] ([Intel XE#656]) +239 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-dg2-oem2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - bat-pvc-2: NOTRUN -> [SKIP][23] ([Intel XE#1024] / [Intel XE#783]) +29 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/bat-pvc-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434 [Intel XE#2463]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2463 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [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#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783 Build changes ------------- * IGT: IGT_8182 -> IGTPW_12412 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12412: 12412 IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From pravalika.gurram at intel.com Thu Jan 9 07:39:29 2025 From: pravalika.gurram at intel.com (Pravalika Gurram) Date: Thu, 9 Jan 2025 13:09:29 +0530 Subject: [PATCH v2] tests/intel/xe_vm: Fixed documentation Message-ID: <20250109073929.913205-1-pravalika.gurram@intel.com> Each test should contain only one TEST field. Add the Functionality field in the subtest section to fix the warnings during the addition of subtests. Fixes: 4d630db8b8cf ("Check negative cases for vm_create/destroy ioctl") Cc: Katarzyna Piecielska Signed-off-by: Pravalika Gurram --- tests/intel/xe_vm.c | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c index b10269191..42a47ceac 100644 --- a/tests/intel/xe_vm.c +++ b/tests/intel/xe_vm.c @@ -2247,18 +2247,10 @@ static void bind_flag_invalid(int fd) xe_vm_destroy(fd, vm); } -/** - * TEST: Negative test for vm create/destroy ioctl - * Category: Core - * Mega feature: General Core features - * Sub-category: Synchronization - * Functionality: vm create - * Test category: negative test - */ - /** * SUBTEST: invalid-flag-%s * Description: function %arg[1] used in vm create IOCTL to make it fail + * Functionality: ioctl_input_validation * Functionality: fault * * arg[1]: @@ -2279,9 +2271,11 @@ static void invalid_flag(int fd, __u32 flags) /** * SUBTEST: invalid-extensions * Description: Check query with invalid extensions returns expected error code + * Functionality: ioctl_input_validation * * SUBTEST: vm-create-invalid-reserved * Description: Send query with invalid reserved value for vm_create ioctl + * Functionality: ioctl_input_validation */ static void invalid_extensions(int fd) @@ -2309,12 +2303,15 @@ static void vm_create_invalid_reserved(int fd) /** * SUBTEST: vm-destroy-invalid-reserved * Description: Send query with invalid reserved value for vm_destroy ioctl + * Functionality: ioctl_input_validation * * SUBTEST: invalid-pad * Description: Check query with invalid pad returns expected error code + * Functionality: ioctl_input_validation * * SUBTEST: invalid-vm-id * Description: Check query with invalid vm_id returns expected error code + * Functionality: ioctl_input_validation */ static void vm_destroy_invalid_reserved(int fd) -- 2.34.1 From patchwork at emeril.freedesktop.org Thu Jan 9 07:44:28 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 07:44:28 -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/2=5D_tests/intel/kms=5Ffrontbuffer=5Ftracking=3A_Ad?= =?utf-8?q?d_skip_condition_for_bmg_platform?= In-Reply-To: <20250109055317.404538-1-mohammed.thasleem@intel.com> References: <20250109055317.404538-1-mohammed.thasleem@intel.com> Message-ID: <173640866848.1554074.6094159106451172551@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v2,1/2] tests/intel/kms_frontbuffer_tracking: Add skip condition for bmg platform URL : https://patchwork.freedesktop.org/series/143303/ State : failure == Summary == CI Bug Log - changes from IGT_8182 -> IGTPW_12411 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12411 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12411, 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_12411/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12411: ### IGT changes ### #### Possible regressions #### * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt (NEW): - bat-dg1-6: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/bat-dg1-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - fi-tgl-1115g4: NOTRUN -> [INCOMPLETE][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt: - fi-tgl-1115g4: NOTRUN -> [SKIP][3] +251 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_pipe_crc_basic@hang-read-crc at pipe-d-hdmi-a-2: - bat-dg2-14: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-dg2-14/igt at kms_pipe_crc_basic@hang-read-crc at pipe-d-hdmi-a-2.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/bat-dg2-14/igt at kms_pipe_crc_basic@hang-read-crc at pipe-d-hdmi-a-2.html * igt at meta_test@fail-result (NEW): - bat-arlh-2: NOTRUN -> [FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/bat-arlh-2/igt at meta_test@fail-result.html * igt at xe_module_load@load: - fi-ivb-3770: NOTRUN -> [FAIL][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-ivb-3770/igt at xe_module_load@load.html - fi-kbl-guc: NOTRUN -> [FAIL][8] +1 other test fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-kbl-guc/igt at xe_module_load@load.html - fi-hsw-4770: NOTRUN -> [FAIL][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-hsw-4770/igt at xe_module_load@load.html - fi-ilk-650: NOTRUN -> [FAIL][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-ilk-650/igt at xe_module_load@load.html - bat-mtlp-6: NOTRUN -> [ABORT][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/bat-mtlp-6/igt at xe_module_load@load.html - fi-kbl-x1275: NOTRUN -> [FAIL][12] +1 other test fail [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-kbl-x1275/igt at xe_module_load@load.html - fi-blb-e6850: NOTRUN -> [FAIL][13] +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-blb-e6850/igt at xe_module_load@load.html - bat-kbl-2: NOTRUN -> [FAIL][14] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/bat-kbl-2/igt at xe_module_load@load.html - bat-dg1-6: NOTRUN -> [DMESG-WARN][15] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/bat-dg1-6/igt at xe_module_load@load.html New tests --------- New tests have been introduced between IGT_8182 and IGTPW_12411: ### New IGT tests (103) ### * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-cpu: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-gtt: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-pwrite: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-cpu: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-gtt: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-pwrite: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : 1 incomplete(s) 7 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-pwrite: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-cpu: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-gtt: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-pwrite: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-pwrite: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-pwrite: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-cpu: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-farfromfence-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-cpu: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-pwrite: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-cpu: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-pwrite: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-indfb-fliptrack-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-shrfb-fliptrack-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-indfb-fliptrack-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-shrfb-fliptrack-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-farfromfence-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-cpu: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-pwrite: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-cpu: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-pwrite: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at meta_test@fail-result: - Statuses : 4 fail(s) - Exec time: [0.01, 0.03] s Known issues ------------ Here are the changes found in IGTPW_12411 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render: - fi-ilk-650: NOTRUN -> [SKIP][16] +300 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-ilk-650/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt: - bat-arlh-2: NOTRUN -> [SKIP][17] ([i915#11346]) +719 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/bat-arlh-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen: - fi-kbl-x1275: NOTRUN -> [SKIP][18] +719 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-kbl-x1275/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - fi-tgl-1115g4: NOTRUN -> [SKIP][19] +210 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - bat-kbl-2: NOTRUN -> [SKIP][20] +157 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/bat-kbl-2/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - fi-ivb-3770: NOTRUN -> [SKIP][21] +284 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-ivb-3770/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff: - fi-kbl-guc: NOTRUN -> [SKIP][22] +719 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-kbl-guc/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - fi-tgl-1115g4: NOTRUN -> [SKIP][23] ([i915#9766]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - bat-dg1-6: NOTRUN -> [SKIP][24] ([i915#12311] / [i915#4342]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/bat-dg1-6/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - fi-tgl-1115g4: NOTRUN -> [SKIP][25] ([i915#10070]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite: - fi-hsw-4770: NOTRUN -> [SKIP][26] +108 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-hsw-4770/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - fi-blb-e6850: NOTRUN -> [SKIP][27] +719 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/fi-blb-e6850/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - bat-dg1-6: NOTRUN -> [SKIP][28] ([i915#12311]) +275 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/bat-dg1-6/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt at kms_pipe_crc_basic@hang-read-crc: - bat-dg2-14: [PASS][29] -> [INCOMPLETE][30] ([i915#13476]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-dg2-14/igt at kms_pipe_crc_basic@hang-read-crc.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/bat-dg2-14/igt at kms_pipe_crc_basic@hang-read-crc.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-arls-6}: [DMESG-FAIL][31] ([i915#13393]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arls-6/igt at i915_selftest@live at workarounds.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/bat-arls-6/igt at i915_selftest@live at workarounds.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - bat-arlh-2: [SKIP][33] ([i915#10200] / [i915#11346] / [i915#11666]) -> [PASS][34] +1 other test pass [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arlh-2/igt at kms_addfb_basic@basic-x-tiled-legacy.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/bat-arlh-2/igt at kms_addfb_basic@basic-x-tiled-legacy.html - bat-dg1-6: [SKIP][35] ([i915#12311] / [i915#4212]) -> [PASS][36] +1 other test pass [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-dg1-6/igt at kms_addfb_basic@basic-x-tiled-legacy.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/bat-dg1-6/igt at kms_addfb_basic@basic-x-tiled-legacy.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-arlh-2: [SKIP][37] ([i915#10200] / [i915#11346] / [i915#11666] / [i915#12203]) -> [SKIP][38] ([i915#11346] / [i915#12203]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arlh-2/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/bat-arlh-2/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10070 [i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666 [i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8182 -> IGTPW_12411 * Linux: CI_DRM_15924 -> CI_DRM_15927 CI-20190529: 20190529 CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15927: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12411: dfd7f524e425fd4bb2f75a88c0796782eaf56063 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12411/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 08:01:34 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 08:01:34 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_drm-uapi/xe=3A_Sync_with_OA?= =?utf-8?q?_uapi_updates_=28rev2=29?= In-Reply-To: <20250109032331.2774067-1-ashutosh.dixit@intel.com> References: <20250109032331.2774067-1-ashutosh.dixit@intel.com> Message-ID: <173640969497.1554074.11516261189441566333@b555e5b46a47> == Series Details == Series: drm-uapi/xe: Sync with OA uapi updates (rev2) URL : https://patchwork.freedesktop.org/series/143297/ State : success == Summary == CI Bug Log - changes from XEIGT_8182_BAT -> XEIGTPW_12413_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12413_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_migrate_sanity_kunit: - bat-adlp-vf: NOTRUN -> [DMESG-FAIL][2] ([Intel XE#3958]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_migrate_sanity_kunit.html #### Possible fixes #### * igt at xe_intel_bb@intel-bb-blit-x: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3958]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html * igt at xe_live_ktest@xe_dma_buf: - bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_dma_buf.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/bat-adlp-vf/igt at xe_live_ktest@xe_dma_buf.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][9] ([Intel XE#1192]) -> [DMESG-FAIL][10] ([Intel XE#3958]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.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_8182 -> IGTPW_12413 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12413: 12413 IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From pranay.samala at intel.com Thu Jan 9 08:38:58 2025 From: pranay.samala at intel.com (Pranay Samala) Date: Thu, 9 Jan 2025 14:08:58 +0530 Subject: [PATCH i-g-t v2] tests/kms_plane_scaling: Add logs to skips Message-ID: <20250109083858.39089-1-pranay.samala@intel.com> Having some logs for test failures & skips would make debugging much easier. v2: Add output/pipe name for detailed message (Santhosh) Signed-off-by: Pranay Samala --- tests/kms_plane_scaling.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c index c8c9aee31..43f578d55 100644 --- a/tests/kms_plane_scaling.c +++ b/tests/kms_plane_scaling.c @@ -1577,6 +1577,12 @@ 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 on output " \ + "%s pipe %s\n", + igt_output_name(output), + kmstest_pipe_name(pipe)); } continue; } -- 2.34.1 From katarzyna.piecielska at intel.com Thu Jan 9 08:40:38 2025 From: katarzyna.piecielska at intel.com (Piecielska, Katarzyna) Date: Thu, 9 Jan 2025 08:40:38 +0000 Subject: [PATCH v2] tests/intel/xe_vm: Fixed documentation In-Reply-To: <20250109073929.913205-1-pravalika.gurram@intel.com> References: <20250109073929.913205-1-pravalika.gurram@intel.com> Message-ID: Each test should contain only one TEST field. Add the Functionality field in the subtest section to fix the warnings during the addition of subtests. Fixes: 4d630db8b8cf ("Check negative cases for vm_create/destroy ioctl") Cc: Katarzyna Piecielska Signed-off-by: Pravalika Gurram --- tests/intel/xe_vm.c | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c index b10269191..42a47ceac 100644 --- a/tests/intel/xe_vm.c +++ b/tests/intel/xe_vm.c @@ -2247,18 +2247,10 @@ static void bind_flag_invalid(int fd) xe_vm_destroy(fd, vm); } -/** - * TEST: Negative test for vm create/destroy ioctl - * Category: Core - * Mega feature: General Core features - * Sub-category: Synchronization - * Functionality: vm create - * Test category: negative test - */ - /** * SUBTEST: invalid-flag-%s * Description: function %arg[1] used in vm create IOCTL to make it fail + * Functionality: ioctl_input_validation * Functionality: fault ^^^ You have double functionality here. Please remove line with 'fault' With that fixed: Reviewed-by: Katarzyna Piecielska Kasia ? * * arg[1]: @@ -2279,9 +2271,11 @@ static void invalid_flag(int fd, __u32 flags) /** * SUBTEST: invalid-extensions * Description: Check query with invalid extensions returns expected error code + * Functionality: ioctl_input_validation * * SUBTEST: vm-create-invalid-reserved * Description: Send query with invalid reserved value for vm_create ioctl + * Functionality: ioctl_input_validation */ static void invalid_extensions(int fd) @@ -2309,12 +2303,15 @@ static void vm_create_invalid_reserved(int fd) /** * SUBTEST: vm-destroy-invalid-reserved * Description: Send query with invalid reserved value for vm_destroy ioctl + * Functionality: ioctl_input_validation * * SUBTEST: invalid-pad * Description: Check query with invalid pad returns expected error code + * Functionality: ioctl_input_validation * * SUBTEST: invalid-vm-id * Description: Check query with invalid vm_id returns expected error code + * Functionality: ioctl_input_validation */ static void vm_destroy_invalid_reserved(int fd) -- 2.34.1 From patchwork at emeril.freedesktop.org Thu Jan 9 08:57:59 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 08:57:59 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_series_starting_with_=5Bv?= =?utf-8?q?3=2C1/2=5D_tests/intel/kms=5Ffrontbuffer=5Ftracking=3A_Add_skip_c?= =?utf-8?q?ondition_for_bmg_platform?= In-Reply-To: <20250109055652.405793-1-mohammed.thasleem@intel.com> References: <20250109055652.405793-1-mohammed.thasleem@intel.com> Message-ID: <173641307990.1570160.15706937400613974498@b555e5b46a47> == Series Details == Series: series starting with [v3,1/2] tests/intel/kms_frontbuffer_tracking: Add skip condition for bmg platform URL : https://patchwork.freedesktop.org/series/143304/ State : failure == Summary == CI Bug Log - changes from IGT_8182 -> IGTPW_12412 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12412 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12412, 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_12412/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12412: ### IGT changes ### #### Possible regressions #### * igt at i915_selftest@live at objects: - bat-dg2-11: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-dg2-11/igt at i915_selftest@live at objects.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/bat-dg2-11/igt at i915_selftest@live at objects.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu (NEW): - fi-ivb-3770: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-ivb-3770/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt: - fi-tgl-1115g4: NOTRUN -> [SKIP][4] +247 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: - bat-dg2-14: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-dg2-14/igt at kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/bat-dg2-14/igt at kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html * igt at meta_test@fail-result (NEW): - bat-arlh-2: NOTRUN -> [FAIL][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/bat-arlh-2/igt at meta_test@fail-result.html * igt at xe_module_load@load: - fi-ivb-3770: NOTRUN -> [FAIL][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-ivb-3770/igt at xe_module_load@load.html - fi-kbl-guc: NOTRUN -> [FAIL][9] +1 other test fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-kbl-guc/igt at xe_module_load@load.html - fi-hsw-4770: NOTRUN -> [FAIL][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-hsw-4770/igt at xe_module_load@load.html - fi-ilk-650: NOTRUN -> [FAIL][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-ilk-650/igt at xe_module_load@load.html - bat-mtlp-6: NOTRUN -> [ABORT][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/bat-mtlp-6/igt at xe_module_load@load.html - fi-kbl-x1275: NOTRUN -> [FAIL][13] +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-kbl-x1275/igt at xe_module_load@load.html - fi-blb-e6850: NOTRUN -> [FAIL][14] +1 other test fail [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-blb-e6850/igt at xe_module_load@load.html - bat-kbl-2: NOTRUN -> [FAIL][15] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/bat-kbl-2/igt at xe_module_load@load.html - bat-dg1-6: NOTRUN -> [DMESG-WARN][16] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/bat-dg1-6/igt at xe_module_load@load.html New tests --------- New tests have been introduced between IGT_8182 and IGTPW_12412: ### New IGT tests (104) ### * igt at i915_pm_rpm: - Statuses : - Exec time: [None] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu: - Statuses : 1 incomplete(s) 6 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-pwrite: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-cpu: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-gtt: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-pwrite: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-pwrite: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-pwrite: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-farfromfence-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-cpu: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-pwrite: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-cpu: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-pwrite: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-indfb-fliptrack-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-shrfb-fliptrack-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-indfb-fliptrack-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-cpu: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-gtt: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-pwrite: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-shrfb-fliptrack-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-farfromfence-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-cpu: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-pwrite: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-cpu: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-gtt: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-pwrite: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt at meta_test@fail-result: - Statuses : 4 fail(s) - Exec time: [0.01, 0.04] s Known issues ------------ Here are the changes found in IGTPW_12412 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-dg2-11: [PASS][17] -> [ABORT][18] ([i915#12435] / [i915#13172]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-dg2-11/igt at i915_selftest@live.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/bat-dg2-11/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-arls-5: [PASS][19] -> [DMESG-FAIL][20] ([i915#13393]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arls-5/igt at i915_selftest@live at workarounds.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/bat-arls-5/igt at i915_selftest@live at workarounds.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt: - bat-arlh-2: NOTRUN -> [SKIP][21] ([i915#11346]) +719 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/bat-arlh-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen: - fi-kbl-x1275: NOTRUN -> [SKIP][22] +719 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-kbl-x1275/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - fi-tgl-1115g4: NOTRUN -> [SKIP][23] +206 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - bat-kbl-2: NOTRUN -> [SKIP][24] +160 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/bat-kbl-2/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - fi-ivb-3770: NOTRUN -> [SKIP][25] +275 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-ivb-3770/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff: - fi-kbl-guc: NOTRUN -> [SKIP][26] +719 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-kbl-guc/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - fi-ilk-650: NOTRUN -> [SKIP][27] +285 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-ilk-650/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - fi-tgl-1115g4: NOTRUN -> [SKIP][28] ([i915#9766]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - bat-dg1-6: NOTRUN -> [SKIP][29] ([i915#12311] / [i915#4342]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/bat-dg1-6/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - fi-tgl-1115g4: NOTRUN -> [SKIP][30] ([i915#10070]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite: - fi-hsw-4770: NOTRUN -> [SKIP][31] +140 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-hsw-4770/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - fi-blb-e6850: NOTRUN -> [SKIP][32] +719 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/fi-blb-e6850/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - bat-dg1-6: NOTRUN -> [SKIP][33] ([i915#12311]) +274 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/bat-dg1-6/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-arls-6}: [DMESG-FAIL][34] ([i915#13393]) -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arls-6/igt at i915_selftest@live at workarounds.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/bat-arls-6/igt at i915_selftest@live at workarounds.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - bat-arlh-2: [SKIP][36] ([i915#10200] / [i915#11346] / [i915#11666]) -> [PASS][37] +1 other test pass [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arlh-2/igt at kms_addfb_basic@basic-x-tiled-legacy.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/bat-arlh-2/igt at kms_addfb_basic@basic-x-tiled-legacy.html - bat-dg1-6: [SKIP][38] ([i915#12311] / [i915#4212]) -> [PASS][39] +1 other test pass [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-dg1-6/igt at kms_addfb_basic@basic-x-tiled-legacy.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/bat-dg1-6/igt at kms_addfb_basic@basic-x-tiled-legacy.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-arlh-2: [SKIP][40] ([i915#10200] / [i915#11346] / [i915#11666] / [i915#12203]) -> [SKIP][41] ([i915#11346] / [i915#12203]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arlh-2/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/bat-arlh-2/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10070 [i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666 [i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435 [i915#13172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13172 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8182 -> IGTPW_12412 * Linux: CI_DRM_15924 -> CI_DRM_15927 CI-20190529: 20190529 CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15927: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12412: 12412 IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 09:00:47 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 09:00:47 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fvm=3A_Fixe?= =?utf-8?q?d_documentation?= In-Reply-To: <20250109073929.913205-1-pravalika.gurram@intel.com> References: <20250109073929.913205-1-pravalika.gurram@intel.com> Message-ID: <173641324736.1570160.2735921754449919464@b555e5b46a47> == Series Details == Series: tests/intel/xe_vm: Fixed documentation URL : https://patchwork.freedesktop.org/series/143310/ State : success == Summary == CI Bug Log - changes from XEIGT_8182_BAT -> XEIGTPW_12414_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12414_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_intel_bb@intel-bb-blit-x: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3958]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/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_8182 -> IGTPW_12414 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12414: 12414 IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From pravalika.gurram at intel.com Thu Jan 9 09:00:44 2025 From: pravalika.gurram at intel.com (Pravalika Gurram) Date: Thu, 9 Jan 2025 14:30:44 +0530 Subject: [PATCH v2] tests/intel/xe_vm: Fixed documentation Message-ID: <20250109090044.913444-1-pravalika.gurram@intel.com> Each test should contain only one TEST field. Add the Functionality field in the subtest section to fix the warnings during the addition of subtests. Fixes: 4d630db8b8cf ("Check negative cases for vm_create/destroy ioctl") Cc: Katarzyna Piecielska Reviewed-by: Katarzyna Piecielska Signed-off-by: Pravalika Gurram --- tests/intel/xe_vm.c | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c index b10269191..ad9a17cc6 100644 --- a/tests/intel/xe_vm.c +++ b/tests/intel/xe_vm.c @@ -2247,19 +2247,10 @@ static void bind_flag_invalid(int fd) xe_vm_destroy(fd, vm); } -/** - * TEST: Negative test for vm create/destroy ioctl - * Category: Core - * Mega feature: General Core features - * Sub-category: Synchronization - * Functionality: vm create - * Test category: negative test - */ - /** * SUBTEST: invalid-flag-%s * Description: function %arg[1] used in vm create IOCTL to make it fail - * Functionality: fault + * Functionality: ioctl_input_validation * * arg[1]: * @xe_vm_create_fault: xe_vm_create_fault @@ -2279,9 +2270,11 @@ static void invalid_flag(int fd, __u32 flags) /** * SUBTEST: invalid-extensions * Description: Check query with invalid extensions returns expected error code + * Functionality: ioctl_input_validation * * SUBTEST: vm-create-invalid-reserved * Description: Send query with invalid reserved value for vm_create ioctl + * Functionality: ioctl_input_validation */ static void invalid_extensions(int fd) @@ -2309,12 +2302,15 @@ static void vm_create_invalid_reserved(int fd) /** * SUBTEST: vm-destroy-invalid-reserved * Description: Send query with invalid reserved value for vm_destroy ioctl + * Functionality: ioctl_input_validation * * SUBTEST: invalid-pad * Description: Check query with invalid pad returns expected error code + * Functionality: ioctl_input_validation * * SUBTEST: invalid-vm-id * Description: Check query with invalid vm_id returns expected error code + * Functionality: ioctl_input_validation */ static void vm_destroy_invalid_reserved(int fd) -- 2.34.1 From patchwork at emeril.freedesktop.org Thu Jan 9 09:20:10 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 09:20:10 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_drm-uapi/xe=3A_Sync_with_?= =?utf-8?q?OA_uapi_updates_=28rev2=29?= In-Reply-To: <20250109032331.2774067-1-ashutosh.dixit@intel.com> References: <20250109032331.2774067-1-ashutosh.dixit@intel.com> Message-ID: <173641441078.1573907.12487558546331095290@b555e5b46a47> == Series Details == Series: drm-uapi/xe: Sync with OA uapi updates (rev2) URL : https://patchwork.freedesktop.org/series/143297/ State : failure == Summary == CI Bug Log - changes from IGT_8182 -> IGTPW_12413 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12413 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12413, 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_12413/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12413: ### IGT changes ### #### Possible regressions #### * igt at i915_pm_rpm@module-reload: - bat-rpls-4: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-rpls-4/igt at i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12413/bat-rpls-4/igt at i915_pm_rpm@module-reload.html Known issues ------------ Here are the changes found in IGTPW_12413 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_8182/bat-dg2-13/igt at kms_chamelium_edid@hdmi-edid-read.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12413/bat-dg2-13/igt at kms_chamelium_edid@hdmi-edid-read.html * igt at kms_chamelium_frames@dp-crc-fast: - bat-dg2-13: [PASS][5] -> [FAIL][6] ([i915#12440]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-dg2-13/igt at kms_chamelium_frames@dp-crc-fast.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12413/bat-dg2-13/igt at kms_chamelium_frames@dp-crc-fast.html #### Possible fixes #### * igt at i915_selftest@live: - bat-twl-2: [ABORT][7] ([i915#12919] / [i915#13397]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-twl-2/igt at i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12413/bat-twl-2/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_mocs: - bat-twl-2: [ABORT][9] ([i915#12919]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-twl-2/igt at i915_selftest@live at gt_mocs.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12413/bat-twl-2/igt at i915_selftest@live at gt_mocs.html * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][11] ([i915#13393]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12413/bat-mtlp-9/igt at i915_selftest@live at workarounds.html - {bat-arls-6}: [DMESG-FAIL][13] ([i915#13393]) -> [PASS][14] +1 other test pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arls-6/igt at i915_selftest@live at workarounds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12413/bat-arls-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#12440]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12440 [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13397]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13397 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8182 -> IGTPW_12413 * Linux: CI_DRM_15924 -> CI_DRM_15927 CI-20190529: 20190529 CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15927: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12413: 12413 IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12413/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From karthik.b.s at intel.com Thu Jan 9 09:21:39 2025 From: karthik.b.s at intel.com (Karthik B S) Date: Thu, 9 Jan 2025 14:51:39 +0530 Subject: [PATCH i-g-t] RFC: tests/intel/kms_joiner: Add a new test to validate non-joiner mode In-Reply-To: <20241217191657.2102779-1-jeevan.b@intel.com> References: <20241217191657.2102779-1-jeevan.b@intel.com> Message-ID: Hi, On 12/18/2024 12:46 AM, Jeevan B wrote: > We need to ensure that the system does not use a joiner for modes that do > not require it. This test will validate that the correct non-joiner mode > is selected, and then forcing a modeset and flip on the last pipe. If the > joiner is mistakenly enabled for a non-joiner mode, the test should fail. > otherwise, the commit should proceed as expected. > > Signed-off-by: Jeevan B > --- > tests/intel/kms_joiner.c | 83 ++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 83 insertions(+) > > diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c > index 9a353ee1b..a41f201d1 100644 > --- a/tests/intel/kms_joiner.c > +++ b/tests/intel/kms_joiner.c > @@ -71,10 +71,15 @@ > * 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: basic-non-joiner > + * Description: > */ > IGT_TEST_DESCRIPTION("Test joiner / force joiner"); > > #define INVALID_TEST_OUTPUT 2 > +#define HDISPLAY_6K_PER_PIPE 6144 > +#define HDISPLAY_5K_PER_PIPE 5120 > > typedef struct { > int drm_fd; > @@ -82,6 +87,7 @@ typedef struct { > int ultra_joiner_output_count; > int non_big_joiner_output_count; > int non_ultra_joiner_output_count; > + int nonjoiner_output_count; > int mixed_output_count; > int output_count; > int n_pipes; > @@ -91,6 +97,7 @@ typedef struct { > igt_output_t *non_big_joiner_output[IGT_MAX_PIPES]; > igt_output_t *non_ultra_joiner_output[IGT_MAX_PIPES]; > igt_output_t *mixed_output[IGT_MAX_PIPES]; > + igt_output_t *nonjoiner_output[IGT_MAX_PIPES]; > enum pipe pipe_seq[IGT_MAX_PIPES]; > igt_display_t display; > } data_t; > @@ -161,6 +168,25 @@ static enum pipe setup_pipe(data_t *data, igt_output_t *output, enum pipe pipe, > return master_pipe; > } > > +static bool nonjoiner_mode_found(int drm_fd, drmModeConnector *connector, drmModeModeInfo *mode) > +{ > + igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); > + igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc); The second sort immediately following the first, nullifies the first one. Please check. Also with below loop is this sorting adding any value? > + > + for (int i = 0; i < connector->count_modes; i++) { > + drmModeModeInfo *current_mode = &connector->modes[i]; > + > + if ((current_mode->hdisplay <= HDISPLAY_6K_PER_PIPE && > + current_mode->clock <= max_dotclock) || > + (current_mode->hdisplay <= HDISPLAY_5K_PER_PIPE)) { Although this will give a non joiner mode, do we really want to test the first non-joiner mode we get. I feel this test would add value only if check the corner cases. > + *mode = *current_mode; > + return true; > + } > + } > + > + return false; > +} > + > static void test_single_joiner(data_t *data, int output_count, bool force_joiner) > { > int i; > @@ -409,6 +435,49 @@ static void test_ultra_joiner(data_t *data, bool invalid_pipe, bool two_display, > } > } > > +static void test_single_non_joiner(data_t *data) > +{ > + int count; > + igt_output_t **outputs, *output; > + igt_fb_t fb; > + igt_plane_t *primary; > + drmModeModeInfo mode; > + drmModeConnector *con; > + > + count = data->nonjoiner_output_count; > + outputs = data->nonjoiner_output; > + > + for (int i = 0; i < count; i++) { > + igt_display_reset(&data->display); > + igt_display_commit2(&data->display, COMMIT_ATOMIC); > + output = outputs[i]; > + con = output->config.connector; > + > + if (nonjoiner_mode_found(data->drm_fd, con, &mode)) { > + igt_output_override_mode(output, &mode); > + igt_info("Assigning pipe %s to %s with mode %dx%d@%d\n", > + kmstest_pipe_name(data->pipe_seq[data->n_pipes - 1]), > + igt_output_name(output), mode.hdisplay, > + mode.vdisplay, mode.vrefresh); > + > + igt_output_set_pipe(output, data->pipe_seq[data->n_pipes - 1]); > + > + 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_assert(igt_display_try_commit2(&data->display, COMMIT_ATOMIC)); Commit failure is not the right way to confirm if joiner is being used IMHO, as commit could fail for even reasons other than joiner being enabled. Please check if there is a better way to validate/confirm this. Thanks, Karthik.B.S > + igt_plane_set_fb(primary, NULL); > + igt_remove_fb(data->drm_fd, &fb); > + } > + else { > + igt_warn("No valid non-joiner mode found for output %s\n", igt_output_name(output)); > + } > + } > +} > + > igt_main > { > bool ultra_joiner_supported, is_dgfx; > @@ -423,6 +492,7 @@ igt_main > data.ultra_joiner_output_count = 0; > data.non_big_joiner_output_count = 0; > data.non_ultra_joiner_output_count = 0; > + data.nonjoiner_output_count = 0; > data.mixed_output_count = 0; > data.output_count = 0; > j = 0; > @@ -441,6 +511,7 @@ igt_main > > for_each_connected_output(&data.display, output) { > bool ultrajoiner_found = false, bigjoiner_found = false, force_joiner_supported = false; > + bool nonjoiner_found = false; > drmModeConnector *connector = output->config.connector; > > /* > @@ -451,6 +522,7 @@ igt_main > */ > bigjoiner_found = bigjoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode); > ultrajoiner_found = ultrajoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode); > + nonjoiner_found = nonjoiner_mode_found(data.drm_fd, connector, &mode); > > if (igt_has_force_joiner_debugfs(data.drm_fd, output->name)) > force_joiner_supported = true; > @@ -465,6 +537,9 @@ igt_main > else if (force_joiner_supported) > data.non_big_joiner_output[data.non_big_joiner_output_count++] = output; > > + if (nonjoiner_found) > + data.nonjoiner_output[data.nonjoiner_output_count++] = output; > + > data.output_count++; > } > if (data.big_joiner_output_count == 1 && data.non_big_joiner_output_count >= 1) { > @@ -615,6 +690,14 @@ igt_main > } > } > > + igt_describe("Verify the basic modeset on big joiner mode on all pipes"); > + igt_subtest_with_dynamic("basic-non-joiner") { > + igt_require_f(data.n_pipes >= 1, > + "Minimum of 1 pipes are required\n"); > + igt_dynamic_f("non-joiner") > + test_single_non_joiner(&data); > + } > + > igt_fixture { > igt_display_fini(&data.display); > drm_close_driver(data.drm_fd); From patchwork at emeril.freedesktop.org Thu Jan 9 09:53:27 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 09:53:27 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fvm=3A_Fi?= =?utf-8?q?xed_documentation?= In-Reply-To: <20250109073929.913205-1-pravalika.gurram@intel.com> References: <20250109073929.913205-1-pravalika.gurram@intel.com> Message-ID: <173641640711.1585962.8136037194425531729@b555e5b46a47> == Series Details == Series: tests/intel/xe_vm: Fixed documentation URL : https://patchwork.freedesktop.org/series/143310/ State : success == Summary == CI Bug Log - changes from IGT_8182 -> IGTPW_12414 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12414: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt at kms_flip@basic-flip-vs-wf_vblank at d-dp7: - {bat-mtlp-9}: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-mtlp-9/igt at kms_flip@basic-flip-vs-wf_vblank at d-dp7.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/bat-mtlp-9/igt at kms_flip@basic-flip-vs-wf_vblank at d-dp7.html Known issues ------------ Here are the changes found in IGTPW_12414 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][3] ([i915#13393]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/bat-mtlp-9/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_8182 -> IGTPW_12414 * Linux: CI_DRM_15924 -> CI_DRM_15927 CI-20190529: 20190529 CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15927: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12414: 12414 IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kunal1.joshi at intel.com Thu Jan 9 10:24:26 2025 From: kunal1.joshi at intel.com (Joshi, Kunal1) Date: Thu, 9 Jan 2025 15:54:26 +0530 Subject: [i-g-t,v2,1/3] tests/chamelium/kms_chamelium_edid: Remove unnecessary hotplug detection in EDID test In-Reply-To: <20250107205434.969797-2-ramanaidu.naladala@intel.com> References: <20250107205434.969797-2-ramanaidu.naladala@intel.com> Message-ID: <2d74a3a9-c0de-4db5-b63d-62b8e55fbbdc@intel.com> On 08-01-2025 02:24, Naladala Ramanaidu wrote: > Remove redundant hotplug detection assertion from > test_suspend_resume_edid_change. Hotplug detection is unnecessary > after modeset disable. > > Signed-off-by: Naladala Ramanaidu LGTM Please add both change in single patch Reviewed-by: Kunal Joshi -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 10:33:49 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 10:33:49 -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_=28rev2=29?= In-Reply-To: <20250109083858.39089-1-pranay.samala@intel.com> References: <20250109083858.39089-1-pranay.samala@intel.com> Message-ID: <173641882900.1592384.8923090649218156307@b555e5b46a47> == Series Details == Series: tests/kms_plane_scaling: Add logs to skips (rev2) URL : https://patchwork.freedesktop.org/series/143093/ State : success == Summary == CI Bug Log - changes from XEIGT_8182_BAT -> XEIGTPW_12415_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12415_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_pat@pat-index-xelp at render: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3958]) +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html #### Possible fixes #### * igt at xe_intel_bb@intel-bb-blit-x: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3958]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html [Intel XE#3958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3958 Build changes ------------- * IGT: IGT_8182 -> IGTPW_12415 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2460-532f7797483dad944bcafeb36570f3efbf3b1225 IGTPW_12415: 733d50317e979dbd16ebc8520974138fa72c1065 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2460-532f7797483dad944bcafeb36570f3efbf3b1225: 532f7797483dad944bcafeb36570f3efbf3b1225 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 10:43:48 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 10:43:48 -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_=28rev2=29?= In-Reply-To: <20250109083858.39089-1-pranay.samala@intel.com> References: <20250109083858.39089-1-pranay.samala@intel.com> Message-ID: <173641942872.1595818.4064952125283415129@b555e5b46a47> == Series Details == Series: tests/kms_plane_scaling: Add logs to skips (rev2) URL : https://patchwork.freedesktop.org/series/143093/ State : success == Summary == CI Bug Log - changes from IGT_8182 -> IGTPW_12415 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12415 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_8182/bat-mtlp-8/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/bat-mtlp-8/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-arls-5: [PASS][3] -> [DMESG-FAIL][4] ([i915#13393]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arls-5/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/bat-arls-5/igt at i915_selftest@live at workarounds.html * igt at kms_chamelium_edid@hdmi-edid-read: - bat-dg2-13: [PASS][5] -> [DMESG-WARN][6] ([i915#12253]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-dg2-13/igt at kms_chamelium_edid@hdmi-edid-read.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/bat-dg2-13/igt at kms_chamelium_edid@hdmi-edid-read.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][7] ([i915#13393]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/bat-mtlp-9/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#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8182 -> IGTPW_12415 * Linux: CI_DRM_15924 -> CI_DRM_15928 CI-20190529: 20190529 CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15928: 532f7797483dad944bcafeb36570f3efbf3b1225 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12415: 733d50317e979dbd16ebc8520974138fa72c1065 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From pravalika.gurram at intel.com Thu Jan 9 10:46:54 2025 From: pravalika.gurram at intel.com (Gurram, Pravalika) Date: Thu, 9 Jan 2025 10:46:54 +0000 Subject: [PATCH v2] tests/intel/xe_debugfs: Extend gt test to check few debugfs entries In-Reply-To: References: <20241219035609.680347-1-pravalika.gurram@intel.com> Message-ID: > -----Original Message----- > From: De Marchi, Lucas > Sent: Thursday, December 19, 2024 8:16 PM > To: Gurram, Pravalika > Cc: igt-dev at lists.freedesktop.org; peter.senna at linux.intel.com; Brost, > Matthew > Subject: Re: [PATCH v2] tests/intel/xe_debugfs: Extend gt test to check few > debugfs entries > > On Thu, Dec 19, 2024 at 09:26:09AM +0530, Pravalika Gurram wrote: > >Read and dump below debugfs entries. > >ggtt > >register-save-restore > >workarounds > >default_lrc_rcs > >default_lrc_ccs > >default_lrc_bcs > >default_lrc_vcs > >default_lrc_vecs > >hwconfig > > > >Reviewed-by: Matthew Brost > >Signed-off-by: Pravalika Gurram > >--- > > tests/intel/xe_debugfs.c | 50 ++++++++++++---------------------------- > > 1 file changed, 15 insertions(+), 35 deletions(-) > > > >diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c index > >700575031..a31de41a4 100644 > >--- a/tests/intel/xe_debugfs.c > >+++ b/tests/intel/xe_debugfs.c > >@@ -162,6 +162,16 @@ test_gt(int fd, int gt_id) > > "pat", > > "mocs", > > // "force_reset" > >+ "ggtt", > >+ "register-save-restore", > >+ "workarounds", > >+ "default_lrc_rcs", > >+ "default_lrc_ccs", > >+ "default_lrc_bcs", > >+ "default_lrc_vcs", > >+ "default_lrc_vecs", > >+ "hwconfig" > >+ > > }; > > static const char * const expected_files_uc[] = { > > "huc_info", > >@@ -170,41 +180,11 @@ test_gt(int fd, int gt_id) > > // "guc_ct_selftest" > > }; > > > >- sprintf(name, "gt%d/hw_engines", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/sa_info", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/steering", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/topology", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/pat", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/mocs", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/uc/guc_info", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/uc/huc_info", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > > these last 3 would be dropped from the dump. I don't think that's intentional, is > it? > > Ideally this would be more than 1 patch: > 1) replace the copy and paste with the loop > 2) add more files to be dumped > > Also, it seems we are not actually running this "test" as part of BAT. I think that > more than actually checking the asserts this would be useful to check the state > of the hardware in the beginning of a BAT execution. > > Lucas De Marchi > This test is already part of BAT igt-gpu-tools$ cat tests/intel-ci/xe-fast-feedback.testlist | grep debugfs igt at xe_debugfs@base igt at xe_debugfs@gt igt at xe_debugfs@forcewake -- Pravalika > >- > >- sprintf(name, "gt%d/uc/guc_log", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >+ for (int i = 0; i < ARRAY_SIZE(expected_files); i++) { > >+ sprintf(name, "gt%d/%s", gt_id, expected_files[i]); > >+ igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >+ igt_debugfs_dump(fd, name); > >+ } > > > > sprintf(name, "/gt%d", gt_id); > > validate_entries(fd, name, expected_files, > >ARRAY_SIZE(expected_files)); > >-- > >2.34.1 > > From pravalika.gurram at intel.com Thu Jan 9 10:57:21 2025 From: pravalika.gurram at intel.com (Pravalika Gurram) Date: Thu, 9 Jan 2025 16:27:21 +0530 Subject: [PATCH v1] tests/xe_debugfs: Improve test_gt subtest Message-ID: <20250109105721.914096-1-pravalika.gurram@intel.com> Read the debugfs entries in the loop to improve the readability. Signed-off-by: Pravalika Gurram --- tests/intel/xe_debugfs.c | 84 +++++++--------------------------------- 1 file changed, 13 insertions(+), 71 deletions(-) diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c index bcbb5036a..3d8c17921 100644 --- a/tests/intel/xe_debugfs.c +++ b/tests/intel/xe_debugfs.c @@ -180,77 +180,19 @@ test_gt(int fd, int gt_id) // "guc_ct_selftest" }; - sprintf(name, "gt%d/hw_engines", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/sa_info", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/steering", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/topology", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/pat", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/mocs", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/ggtt", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/register-save-restore", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/workarounds", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/default_lrc_rcs", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/default_lrc_ccs", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/default_lrc_bcs", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/default_lrc_vecs", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/default_lrc_vcs", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/hwconfig", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/uc/guc_info", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/uc/huc_info", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/uc/guc_log", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); + for (int i = 0; i < ARRAY_SIZE(expected_files); i++) { + sprintf(name, "gt%d/%s", gt_id, expected_files[i]); + igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); + if (!strstr(name, "uc")) { + igt_debugfs_dump(fd, name); + } else { + for (int j = 0; j < ARRAY_SIZE(expected_files_uc); j++) { + sprintf(name, "gt%d/uc/%s", gt_id, expected_files_uc[j]); + igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); + igt_debugfs_dump(fd, name); + } + } + } sprintf(name, "/gt%d", gt_id); validate_entries(fd, name, expected_files, ARRAY_SIZE(expected_files)); -- 2.34.1 From kamil.konieczny at linux.intel.com Thu Jan 9 11:20:57 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Thu, 9 Jan 2025 12:20:57 +0100 Subject: [PATCH i-g-t] Revert tests/kms_histogram: Fix build breakage In-Reply-To: <2qncdch2mrb3wkfedaywrdicoam5d5vk747kq2c3vrzvffq6k7@aoxjk6r7vske> References: <20250108205251.1645069-1-lucas.demarchi@intel.com> <20250108225532.xxxicdfjcwup7b76@kamilkon-desk.igk.intel.com> <2qncdch2mrb3wkfedaywrdicoam5d5vk747kq2c3vrzvffq6k7@aoxjk6r7vske> Message-ID: <20250109112057.scvoiazkfpn2hbio@kamilkon-desk.igk.intel.com> Hi Lucas, On 2025-01-08 at 17:04:28 -0600, Lucas De Marchi wrote: > On Wed, Jan 08, 2025 at 11:55:32PM +0100, Kamil Konieczny wrote: > > Hi Lucas, > > On 2025-01-08 at 12:52:51 -0800, Lucas De Marchi wrote: > > > This reverts commits > > > 8911eff2c6c0 ("tests/kms_histogram: Add check for libghe version") > > > 6e93c2e807b3 ("tests/kms_histogram: Added IGT support to validate global histogram") > > > > > > Ths addition of libghe version check didn't really work as the released > > > libghe exposes a 1.0.0 version: > > > > > > Run-time dependency libghe found: YES 1.0 > > > > This looks like improper package generation in our CI, > > we could go with revert or make more meson checks like in version 2 > > ("tests/kms_histogram: Add check for ghe api call") > > https://patchwork.freedesktop.org/series/143142/#rev2 > > > > in meson.build: > > > > cc = meson.get_compiler('c') > > > > if cc.has_function('histogram_compute_generate_data_bin', dependencies: libghe) > > no, that's not how we check for dependencies and should be done for > things like libc only (that has multiple implementations). There > shouldn't be a libghe 0.2.0 without that function. Imagine the mess that > would be the build system if all libraries behaved like that. > > It's not CI packaging only... the libghe doesn't actually exports a > .pc file so I think whoever packaged this used one from a template. > > > config.set('HAVE_LIBGHE', 1) > > else > > message('libghe do not have the required function') > > endif > > > > Btw proper function name is present now in https://github.com/intel/ghe > > yet no releases... which also needs to be fixed. > > > > > so I will resend v2 of above change with subject changed: > > > > meson: Add check for libghe histogram function > > I don't think that's proper. > > we can postpone applying this and just let the release in ghe to happen > and package to be fixed as now we are not in rush to fix it anymore. > > Lucas De Marchi Ok, lets see if it could be fixed soon and if not I am ok with revert, Acked-by: Kamil Konieczny Regards, Kamil PS. Adding Ashutosh to Cc. > > > > > > Let's revert this and come back to that when there's a released libghe > > > that works and doesn't keep changing the API. > > > > > > Cc: Kamil Konieczny > > > Cc: Mohammed Thasleem > > > Cc: Arun R Murthy > > > Cc: Nemesa Garg > > > Signed-off-by: Lucas De Marchi > > > --- > > > lib/igt_kms.c | 23 --- > > > lib/igt_kms.h | 5 - > > > meson.build | 5 - > > > tests/kms_histogram.c | 349 ------------------------------------------ > > > tests/meson.build | 2 - > > > 5 files changed, 384 deletions(-) > > > delete mode 100644 tests/kms_histogram.c > > > > > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > > > index 95e3059f7..9d21cce1e 100644 > > > --- a/lib/igt_kms.c > > > +++ b/lib/igt_kms.c > > > @@ -714,9 +714,6 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { > > > [IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR", > > > [IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED", > > > [IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER", > > > - [IGT_CRTC_HISTOGRAM] = "HISTOGRAM_ENABLE", > > > - [IGT_CRTC_GLOBAL_HISTOGRAM] = "HISTOGRAM_DATA", > > > - [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "HISTOGRAM_IET", > > > }; > > > > > > const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = { > > > @@ -2618,9 +2615,6 @@ static void igt_pipe_reset(igt_pipe_t *pipe) > > > if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_VRR_ENABLED)) > > > igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_VRR_ENABLED, 0); > > > > > > - if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM)) > > > - igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0); > > > - > > > pipe->out_fence_fd = -1; > > > } > > > > > > @@ -5649,23 +5643,6 @@ bool igt_lease_change_detected(struct udev_monitor *mon, int timeout_secs) > > > ARRAY_SIZE(props)); > > > } > > > > > > -/** > > > - * igt_global_histogram_event_detected: > > > - * @mon: A udev monitor initialized with #igt_watch_uevents > > > - * @timeout_secs: How long to wait for a lease change event to occur. > > > - * > > > - * Detect if a global Histogram event was received since we last checked the monitor. > > > - * > > > - * Returns: true if a sysfs global Histogram event was received, false if we timed out > > > - */ > > > -bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs) > > > -{ > > > - const char *props[1] = {"HISTOGRAM"}; > > > - int expected_val = 1; > > > - > > > - return event_detected(mon, timeout_secs, props, &expected_val, ARRAY_SIZE(props)); > > > -} > > > - > > > /** > > > * igt_flush_uevents: > > > * @mon: A udev monitor initialized with #igt_watch_uevents > > > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > > > index 1e2a927ab..8810123fb 100644 > > > --- a/lib/igt_kms.h > > > +++ b/lib/igt_kms.h > > > @@ -165,9 +165,6 @@ enum igt_atomic_crtc_properties { > > > IGT_CRTC_OUT_FENCE_PTR, > > > IGT_CRTC_VRR_ENABLED, > > > IGT_CRTC_SCALING_FILTER, > > > - IGT_CRTC_HISTOGRAM, > > > - IGT_CRTC_GLOBAL_HISTOGRAM, > > > - IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR, > > > IGT_NUM_CRTC_PROPS > > > }; > > > > > > @@ -1143,8 +1140,6 @@ void igt_cleanup_uevents(struct udev_monitor *mon); > > > bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, uint64_t modifier); > > > bool igt_plane_has_format_mod(igt_plane_t *plane, uint32_t format, uint64_t modifier); > > > > > > -bool igt_global_histogram_event_detected(struct udev_monitor *mon, int timeout_secs); > > > - > > > /** > > > * igt_vblank_after_eq: > > > * @a: First vblank sequence number. > > > diff --git a/meson.build b/meson.build > > > index 5eda2d582..ed2a79d5a 100644 > > > --- a/meson.build > > > +++ b/meson.build > > > @@ -197,11 +197,6 @@ else > > > chamelium = disabler() > > > endif > > > > > > -libghe = dependency('libghe', version : '>=0.2.0', required : false) > > > -if libghe.found() > > > - config.set('HAVE_LIBGHE', 1) > > > -endif > > > - > > > build_info += 'Build Chamelium test: @0@'.format(chamelium.found()) > > > > > > pthreads = dependency('threads') > > > diff --git a/tests/kms_histogram.c b/tests/kms_histogram.c > > > deleted file mode 100644 > > > index 3d59304ba..000000000 > > > --- a/tests/kms_histogram.c > > > +++ /dev/null > > > @@ -1,349 +0,0 @@ > > > -// SPDX-License-Identifier: MIT > > > -/* > > > - * Copyright ? 2024 Intel Corporation > > > - */ > > > - > > > -/** > > > - * TEST: kms histogram > > > - * Category: Display > > > - * Description: Test to verify histogram features. > > > - * Functionality: histogram > > > - * Mega feature: Display > > > - * Test category: functionality test > > > - */ > > > - > > > -#include > > > -#include > > > -#include > > > -#include > > > -#include > > > -#include > > > - > > > -#include "igt.h" > > > -#include "igt_vec.h" > > > -#ifdef HAVE_LIBGHE > > > -#include "ghe.h" > > > -#endif > > > - > > > -#define GLOBAL_HIST_DISABLE 0 > > > -#define GLOBAL_HIST_ENABLE 1 > > > -#define GLOBAL_HIST_DELAY 2 > > > -#define FLIP_COUNT 20 > > > - > > > -/** > > > - * SUBTEST: global-basic > > > - * Description: Test to enable histogram, flip monochrome fbs, wait for > > > - * histogram event and then read the histogram data > > > - * > > > - * SUBTEST: global-color > > > - * Description: Test to enable histogram, flip color fbs, wait for > > > - * histogram event and then read the histogram data > > > - * > > > - * SUBTEST: algo-basic > > > - * Description: Test to enable histogram, flip monochrome fbs, wait for > > > - * histogram event and then read the histogram data and enhance pixels by > > > - * multiplying by a pixel factor using algo > > > - * > > > - * SUBTEST: algo-color > > > - * Description: Test to enable histogram, flip color fbs, wait for histogram event > > > - * and then read the histogram data and enhance pixels by multiplying > > > - * by a pixel factor using algo > > > - */ > > > - > > > -IGT_TEST_DESCRIPTION("This test will verify the display histogram."); > > > - > > > -typedef struct data { > > > - igt_display_t display; > > > - int drm_fd; > > > - igt_fb_t fb[5]; > > > -} data_t; > > > - > > > -typedef void (*test_t)(data_t*, enum pipe, igt_output_t*, drmModePropertyBlobRes*); > > > - > > > -static void enable_and_verify_global_histogram(data_t *data, enum pipe pipe) > > > -{ > > > - uint32_t global_hist_value; > > > - > > > - /* Enable global_hist */ > > > - igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_ENABLE); > > > - igt_display_commit2(&data->display, COMMIT_ATOMIC); > > > - > > > - /* Verify if global_hist is enabled */ > > > - global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM); > > > - igt_assert_f(global_hist_value == GLOBAL_HIST_ENABLE, "Failed to enable global_hist\n"); > > > -} > > > - > > > -static void disable_and_verify_global_histogram(data_t *data, enum pipe pipe) > > > -{ > > > - uint32_t global_hist_value; > > > - > > > - /* Disable global_hist */ > > > - igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_HISTOGRAM, GLOBAL_HIST_DISABLE); > > > - igt_display_commit2(&data->display, COMMIT_ATOMIC); > > > - > > > - /* Verify if global_hist is disabled */ > > > - global_hist_value = igt_pipe_obj_get_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM); > > > - igt_assert_f(global_hist_value == GLOBAL_HIST_DISABLE, "Failed to disable global_hist\n"); > > > -} > > > - > > > -static void cleanup_pipe(data_t *data, enum pipe pipe, igt_output_t *output) > > > -{ > > > - igt_plane_t *plane; > > > - > > > - disable_and_verify_global_histogram(data, pipe); > > > - > > > - for_each_plane_on_pipe(&data->display, pipe, plane) > > > - igt_plane_set_fb(plane, NULL); > > > - igt_output_set_pipe(output, PIPE_NONE); > > > - igt_display_commit2(&data->display, COMMIT_ATOMIC); > > > - igt_remove_fb(data->display.drm_fd, &data->fb[0]); > > > - igt_remove_fb(data->display.drm_fd, &data->fb[1]); > > > - igt_remove_fb(data->display.drm_fd, &data->fb[2]); > > > - igt_remove_fb(data->display.drm_fd, &data->fb[3]); > > > - igt_remove_fb(data->display.drm_fd, &data->fb[4]); > > > -} > > > - > > > -static drmModePropertyBlobRes *get_global_histogram_data(data_t *data, enum pipe pipe) > > > -{ > > > - uint64_t blob_id; > > > - > > > - blob_id = igt_pipe_obj_get_prop(&data->display.pipes[pipe], > > > - IGT_CRTC_GLOBAL_HISTOGRAM); > > > - if (blob_id == 0) > > > - return NULL; > > > - > > > - return drmModeGetPropertyBlob(data->drm_fd, blob_id); > > > -} > > > - > > > -static void read_global_histogram(data_t *data, enum pipe pipe, > > > - drmModePropertyBlobRes **hist_blob_ptr) > > > -{ > > > - uint32_t *histogram_ptr; > > > - drmModePropertyBlobRes *global_hist_blob = NULL; > > > - > > > - igt_set_timeout(GLOBAL_HIST_DELAY, "Waiting to read global histogram blob.\n"); > > > - do { > > > - global_hist_blob = get_global_histogram_data(data, pipe); > > > - } while (!global_hist_blob); > > > - > > > - igt_reset_timeout(); > > > - > > > - *hist_blob_ptr = global_hist_blob; > > > - histogram_ptr = (uint32_t *)global_hist_blob->data; > > > - for (int i = 0; i < global_hist_blob->length / sizeof(*histogram_ptr); i++) > > > - igt_debug("Histogram[%d] = %d\n", i, *(histogram_ptr++)); > > > -} > > > - > > > -#ifdef HAVE_LIBGHE > > > -static void set_pixel_factor(igt_pipe_t *pipe, uint32_t *dietfactor, size_t size) > > > -{ > > > - uint32_t i; > > > - > > > - for (i = 0; i < size; i++) { > > > - /* Displaying IET LUT */ > > > - igt_debug("Pixel Factor[%d] = %d\n", i, *(dietfactor + i)); > > > - } > > > - > > > - igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR, > > > - dietfactor, size); > > > -} > > > - > > > -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); > > > - > > > - return argsPtr; > > > -} > > > - > > > -static void algo_image_enhancement_factor(data_t *data, enum pipe pipe, > > > - igt_output_t *output, > > > - drmModePropertyBlobRes *global_hist_blob) > > > -{ > > > - struct globalhist_args *args = algo_get_pixel_factor(global_hist_blob, output); > > > - > > > - igt_assert(args); > > > - igt_debug("Writing pixel factor blob.\n"); > > > - > > > - set_pixel_factor(&data->display.pipes[pipe], args->dietfactor, > > > - ARRAY_SIZE(args->dietfactor)); > > > - free(args); > > > - > > > - igt_display_commit2(&data->display, COMMIT_ATOMIC); > > > -} > > > -#endif > > > - > > > -static void create_monochrome_fbs(data_t *data, drmModeModeInfo *mode) > > > -{ > > > - /* TODO: Extend the tests for different formats/modifiers. */ > > > - /* These frame buffers used to flip monochrome fbs to get histogram event. */ > > > - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, > > > - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > > > - 0, 0, 0, &data->fb[0])); > > > - > > > - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, > > > - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > > > - 1, 1, 1, &data->fb[1])); > > > -} > > > - > > > -static void create_color_fbs(data_t *data, drmModeModeInfo *mode) > > > -{ > > > - /* TODO: Extend the tests for different formats/modifiers. */ > > > - /* These frame buffers used to flip color fbs to get histogram event. */ > > > - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, > > > - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > > > - 0.5, 0, 0.5, &data->fb[0])); > > > - > > > - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, > > > - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > > > - 1, 0, 0, &data->fb[1])); > > > - > > > - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, > > > - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > > > - 0, 1, 0, &data->fb[2])); > > > - > > > - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, > > > - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > > > - 0, 0, 1, &data->fb[3])); > > > - > > > - igt_assert(igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, > > > - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > > > - 1, 0, 1, &data->fb[4])); > > > -} > > > - > > > -static void flip_fb(data_t *data, enum pipe pipe, igt_output_t *output, struct igt_fb *fb) > > > -{ > > > - igt_plane_set_fb(igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY), fb); > > > - igt_display_commit2(&data->display, COMMIT_ATOMIC); > > > -} > > > - > > > -static void prepare_pipe(data_t *data, enum pipe pipe, igt_output_t *output, bool color_fb) > > > -{ > > > - int i; > > > - struct udev_monitor *mon = igt_watch_uevents(); > > > - drmModeModeInfo *mode = igt_output_get_mode(output); > > > - bool event_detected = false; > > > - int fb_count = color_fb ? 5 : 2; > > > - > > > - if (color_fb) > > > - create_color_fbs(data, mode); > > > - else > > > - create_monochrome_fbs(data, mode); > > > - > > > - flip_fb(data, pipe, output, &data->fb[0]); > > > - enable_and_verify_global_histogram(data, pipe); > > > - > > > - igt_flush_uevents(mon); > > > - for (i = 1; i <= FLIP_COUNT; i++) { > > > - flip_fb(data, pipe, output, &data->fb[i % fb_count]); > > > - > > > - /* Check for histogram event on every flip and break the loop if detected. */ > > > - if (igt_global_histogram_event_detected(mon, 0)) { > > > - event_detected = true; > > > - break; > > > - } > > > - } > > > - > > > - igt_cleanup_uevents(mon); > > > - igt_assert_f(event_detected, "Histogram event not generated.\n"); > > > -} > > > - > > > -static void run_global_histogram_pipeline(data_t *data, enum pipe pipe, igt_output_t *output, > > > - bool color_fb, test_t test_pixel_factor) > > > -{ > > > - drmModePropertyBlobRes *global_hist_blob = NULL; > > > - > > > - prepare_pipe(data, pipe, output, color_fb); > > > - > > > - read_global_histogram(data, pipe, &global_hist_blob); > > > - > > > - if (test_pixel_factor) > > > - test_pixel_factor(data, pipe, output, global_hist_blob); > > > - > > > - drmModeFreePropertyBlob(global_hist_blob); > > > - cleanup_pipe(data, pipe, output); > > > -} > > > - > > > -static void run_tests_for_global_histogram(data_t *data, bool color_fb, > > > - test_t test_pixel_factor) > > > -{ > > > - enum pipe pipe; > > > - igt_output_t *output; > > > - > > > - for_each_connected_output(&data->display, output) { > > > - for_each_pipe(&data->display, pipe) { > > > - if (!igt_pipe_obj_has_prop(&data->display.pipes[pipe], IGT_CRTC_HISTOGRAM)) > > > - continue; > > > - > > > - igt_display_reset(&data->display); > > > - > > > - igt_output_set_pipe(output, pipe); > > > - if (!intel_pipe_output_combo_valid(&data->display)) > > > - continue; > > > - > > > - igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) > > > - run_global_histogram_pipeline(data, pipe, output, color_fb, test_pixel_factor); > > > - } > > > - } > > > -} > > > - > > > -static void run_algo_test(data_t *data, bool color_fb) > > > -{ > > > -#ifdef HAVE_LIBGHE > > > - run_tests_for_global_histogram(data, color_fb, algo_image_enhancement_factor); > > > -#else > > > - igt_skip("Histogram algorithm library not found.\n"); > > > -#endif > > > -} > > > - > > > -igt_main > > > -{ > > > - data_t data = {}; > > > - > > > - igt_fixture { > > > - data.drm_fd = drm_open_driver_master(DRIVER_ANY); > > > - kmstest_set_vt_graphics_mode(); > > > - igt_display_require(&data.display, data.drm_fd); > > > - igt_display_require_output(&data.display); > > > - igt_require(data.display.is_atomic); > > > - } > > > - > > > - igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram " > > > - "event and then read the histogram data."); > > > - igt_subtest_with_dynamic("global-basic") > > > - run_tests_for_global_histogram(&data, false, NULL); > > > - > > > - igt_describe("Test to enable histogram, flip color fbs, wait for histogram event " > > > - "and then read the histogram data."); > > > - igt_subtest_with_dynamic("global-color") > > > - run_tests_for_global_histogram(&data, true, NULL); > > > - > > > - igt_describe("Test to enable histogram, flip monochrome fbs, wait for histogram " > > > - "event and then read the histogram data and enhance pixels by multiplying " > > > - "by a pixel factor using algo."); > > > - igt_subtest_with_dynamic("algo-basic") > > > - run_algo_test(&data, false); > > > - > > > - igt_describe("Test to enable histogram, flip color fbs, wait for histogram event " > > > - "and then read the histogram data and enhance pixels by multiplying " > > > - "by a pixel factor using algo."); > > > - igt_subtest_with_dynamic("algo-color") > > > - run_algo_test(&data, true); > > > - > > > - igt_fixture { > > > - igt_display_fini(&data.display); > > > - drm_close_driver(data.drm_fd); > > > - } > > > -} > > > diff --git a/tests/meson.build b/tests/meson.build > > > index 89bba6454..2724c7a9a 100644 > > > --- a/tests/meson.build > > > +++ b/tests/meson.build > > > @@ -37,7 +37,6 @@ test_progs = [ > > > 'kms_getfb', > > > 'kms_hdmi_inject', > > > 'kms_hdr', > > > - 'kms_histogram', > > > 'kms_invalid_mode', > > > 'kms_lease', > > > 'kms_multipipe_modeset', > > > @@ -381,7 +380,6 @@ extra_dependencies = { > > > 'gem_eio': [ realtime ], > > > 'gem_exec_balancer': [ lib_igt_perf ], > > > 'gem_mmap_offset': [ libatomic ], > > > - 'kms_histogram': [ libghe ], > > > 'i915_pm_freq_mult': [ lib_igt_perf ], > > > 'i915_pm_rc6_residency': [ lib_igt_perf ], > > > 'perf': [ lib_igt_i915_perf ], > > > -- > > > 2.47.0 > > > From patchwork at emeril.freedesktop.org Thu Jan 9 13:13:00 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 13:13:00 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fvm=3A_Fi?= =?utf-8?q?xed_documentation_=28rev2=29?= In-Reply-To: <20250109090044.913444-1-pravalika.gurram@intel.com> References: <20250109090044.913444-1-pravalika.gurram@intel.com> Message-ID: <173642838077.1629799.154202333563482211@b555e5b46a47> == Series Details == Series: tests/intel/xe_vm: Fixed documentation (rev2) URL : https://patchwork.freedesktop.org/series/143310/ State : success == Summary == CI Bug Log - changes from IGT_8183 -> IGTPW_12416 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Changes ------- No changes found Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8183 -> IGTPW_12416 CI-20190529: 20190529 CI_DRM_15929: 14e0c4a8247c9514dc57b2231602fb6d9455802b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12416: c74a7c48547d6db3cb4a53019c21e9be90b9edc1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 13:36:36 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 13:36:36 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fvm=3A_Fixe?= =?utf-8?q?d_documentation_=28rev2=29?= In-Reply-To: <20250109090044.913444-1-pravalika.gurram@intel.com> References: <20250109090044.913444-1-pravalika.gurram@intel.com> Message-ID: <173642979680.1640633.952938335578171714@b555e5b46a47> == Series Details == Series: tests/intel/xe_vm: Fixed documentation (rev2) URL : https://patchwork.freedesktop.org/series/143310/ State : success == Summary == CI Bug Log - changes from XEIGT_8183_BAT -> XEIGTPW_12416_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8183 -> IGTPW_12416 IGTPW_12416: c74a7c48547d6db3cb4a53019c21e9be90b9edc1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2461-14e0c4a8247c9514dc57b2231602fb6d9455802b: 14e0c4a8247c9514dc57b2231602fb6d9455802b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 13:55:20 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 13:55:20 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/xe=5Fdebugfs=3A_Imp?= =?utf-8?q?rove_test=5Fgt_subtest?= In-Reply-To: <20250109105721.914096-1-pravalika.gurram@intel.com> References: <20250109105721.914096-1-pravalika.gurram@intel.com> Message-ID: <173643092065.1642990.6220090437986775140@b555e5b46a47> == Series Details == Series: tests/xe_debugfs: Improve test_gt subtest URL : https://patchwork.freedesktop.org/series/143322/ State : success == Summary == CI Bug Log - changes from IGT_8183 -> IGTPW_12417 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12417 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-mtlp-6: [PASS][1] -> [DMESG-FAIL][2] ([i915#13393]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-mtlp-6/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/bat-mtlp-6/igt at i915_selftest@live.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][3] ([i915#13393]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/bat-mtlp-9/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_8183 -> IGTPW_12417 CI-20190529: 20190529 CI_DRM_15929: 14e0c4a8247c9514dc57b2231602fb6d9455802b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12417: ff36e76d6d66f72648feb933791398089dfc8496 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 14:04:33 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 14:04:33 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/xe=5Fdebugfs=3A_Impro?= =?utf-8?q?ve_test=5Fgt_subtest?= In-Reply-To: <20250109105721.914096-1-pravalika.gurram@intel.com> References: <20250109105721.914096-1-pravalika.gurram@intel.com> Message-ID: <173643147348.1642990.6881252820964497807@b555e5b46a47> == Series Details == Series: tests/xe_debugfs: Improve test_gt subtest URL : https://patchwork.freedesktop.org/series/143322/ State : success == Summary == CI Bug Log - changes from XEIGT_8183_BAT -> XEIGTPW_12417_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12417_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_exec_basic@twice-bindexecqueue-userptr-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3958]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-userptr-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-userptr-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_8183/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/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_8183/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/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_8183 -> IGTPW_12417 IGTPW_12417: ff36e76d6d66f72648feb933791398089dfc8496 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2461-14e0c4a8247c9514dc57b2231602fb6d9455802b: 14e0c4a8247c9514dc57b2231602fb6d9455802b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 14:20:56 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 14:20:56 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Add_dsc+bigjoiner_subtest_?= =?utf-8?q?=28rev4=29?= In-Reply-To: <20250107185709.116756-1-swati2.sharma@intel.com> References: <20250107185709.116756-1-swati2.sharma@intel.com> Message-ID: <173643245680.1645445.10712512792362276227@b555e5b46a47> == Series Details == Series: Add dsc+bigjoiner subtest (rev4) URL : https://patchwork.freedesktop.org/series/128266/ State : failure == Summary == CI Bug Log - changes from XEIGT_8179_full -> XEIGTPW_12396_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12396_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12396_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_12396_full: ### IGT changes ### #### Possible regressions #### * igt at kms_atomic_transition@plane-primary-toggle-with-vblank-wait: - shard-lnl: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-5/igt at kms_atomic_transition@plane-primary-toggle-with-vblank-wait.html * {igt at kms_dsc@dsc-with-bpc-big-joiner} (NEW): - shard-bmg: NOTRUN -> [SKIP][2] +11 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_dsc@dsc-with-bpc-big-joiner.html * {igt at kms_dsc@dsc-with-formats-ultra-joiner} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][3] +7 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_dsc@dsc-with-formats-ultra-joiner.html * {igt at kms_dsc@dsc-with-output-formats-ultra-joiner} (NEW): - shard-lnl: NOTRUN -> [SKIP][4] +14 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-8/igt at kms_dsc@dsc-with-output-formats-ultra-joiner.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ac-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][5] +2 other tests incomplete [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_flip@2x-flip-vs-suspend-interruptible at ac-dp2-hdmi-a3.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [FAIL][6] +3 other tests fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html * igt at kms_panel_fitting@atomic-fastset: - shard-lnl: [PASS][7] -> [INCOMPLETE][8] +1 other test incomplete [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-5/igt at kms_panel_fitting@atomic-fastset.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-5/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_vblank@query-idle-hang at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][9] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_vblank@query-idle-hang at pipe-a-dp-4.html * igt at xe_pm@s2idle-exec-after: - shard-lnl: [PASS][10] -> [DMESG-WARN][11] +5 other tests dmesg-warn [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-5/igt at xe_pm@s2idle-exec-after.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-5/igt at xe_pm@s2idle-exec-after.html #### Warnings #### * igt at kms_vblank@query-idle-hang: - shard-dg2-set2: [SKIP][12] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][13] [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_vblank@query-idle-hang.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_vblank@query-idle-hang.html * igt at xe_exec_threads@threads-hang-fd-rebind: - shard-dg2-set2: [SKIP][14] ([Intel XE#1130]) -> [DMESG-WARN][15] [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_threads@threads-hang-fd-rebind.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at xe_exec_threads@threads-hang-fd-rebind.html New tests --------- New tests have been introduced between XEIGT_8179_full and XEIGTPW_12396_full: ### New IGT tests (16) ### * igt at kms_dsc@dsc-basic-big-joiner: - Statuses : 3 skip(s) - Exec time: [0.00] s * igt at kms_dsc@dsc-basic-ultra-joiner: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_dsc@dsc-fractional-bpp-big-joiner: - Statuses : 2 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-fractional-bpp-ultra-joiner: - Statuses : 3 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-fractional-bpp-with-bpc-big-joiner: - Statuses : 3 skip(s) - Exec time: [0.00] s * igt at kms_dsc@dsc-fractional-bpp-with-bpc-ultra-joiner: - Statuses : 3 skip(s) - Exec time: [0.00] s * igt at kms_dsc@dsc-with-bpc-big-joiner: - Statuses : 3 skip(s) - Exec time: [0.00] s * igt at kms_dsc@dsc-with-bpc-formats-big-joiner: - Statuses : 2 skip(s) - Exec time: [0.00, 0.01] s * igt at kms_dsc@dsc-with-bpc-formats-ultra-joiner: - Statuses : 2 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-with-bpc-ultra-joiner: - Statuses : 3 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-with-formats-big-joiner: - Statuses : 3 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-with-formats-ultra-joiner: - Statuses : 3 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-with-output-formats-big-joiner: - Statuses : 3 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-with-output-formats-ultra-joiner: - Statuses : 3 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_dsc@dsc-with-output-formats-with-bpc-big-joiner: - Statuses : 2 skip(s) - Exec time: [0.00] s * igt at kms_dsc@dsc-with-output-formats-with-bpc-ultra-joiner: - Statuses : 3 skip(s) - Exec time: [0.00] s Known issues ------------ Here are the changes found in XEIGTPW_12396_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getversion@all-cards: - shard-bmg: [PASS][16] -> [FAIL][17] ([Intel XE#3249]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at core_getversion@all-cards.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at core_getversion@all-cards.html * igt at core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [PASS][18] -> [SKIP][19] ([Intel XE#1885]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at core_hotunplug@hotunplug-rescan.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at core_hotunplug@hotunplug-rescan.html * igt at core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][20] -> [SKIP][21] ([Intel XE#3453]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at core_setmaster@master-drop-set-shared-fd.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at core_setmaster@master-drop-set-shared-fd.html * igt at core_setmaster@master-drop-set-user: - shard-dg2-set2: [PASS][22] -> [FAIL][23] ([Intel XE#3249]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at core_setmaster@master-drop-set-user.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at core_setmaster@master-drop-set-user.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1125]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-1/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1466]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-6/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#3767]) +23 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#3768]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-6/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [PASS][28] -> [SKIP][29] ([Intel XE#2423] / [i915#2575]) +142 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg2-set2: [PASS][31] -> [SKIP][32] ([Intel XE#2136]) +45 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2327]) +4 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1407]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-8/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@x-tiled-32bpp-rotate-180: - shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#2136] / [Intel XE#2231]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_big_fb@x-tiled-32bpp-rotate-180.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_big_fb@x-tiled-32bpp-rotate-180.html * igt at kms_big_fb@y-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2328]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-5/igt at kms_big_fb@y-tiled-addfb.html - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1467]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-1/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1124]) +9 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1124]) +7 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-3/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#610]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-5/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#2191]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-1/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2314] / [Intel XE#2894]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#367]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#367]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-1/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1512]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-3/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2887]) +20 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2887]) +10 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-3/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#2669]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-8/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: NOTRUN -> [INCOMPLETE][50] ([Intel XE#3862]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#3433]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#3432]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#3432]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-3/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#787]) +153 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#455] / [Intel XE#787]) +21 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2724]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-5/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2252]) +5 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-5/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_color@ctm-negative: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2325]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_color@degamma: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#306]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-3/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_frames@dp-crc-multiple: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#373]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at kms_chamelium_frames@dp-crc-multiple.html * igt at kms_chamelium_hpd@dp-hpd: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#373]) +8 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-8/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][62] ([Intel XE#1178]) +3 other tests fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_content_protection@atomic.html * igt at kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#3278]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-4/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][64] ([Intel XE#1178]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at kms_content_protection@atomic-dpms at pipe-a-dp-4.html * igt at kms_content_protection@content-type-change: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2341]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-5/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-1: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2390]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_cursor_crc@cursor-onscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2320]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_cursor_crc@cursor-onscreen-256x85.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#2321]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-6/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2321]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-64x21: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1424]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-1/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][71] ([Intel XE#309]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-3/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: NOTRUN -> [DMESG-WARN][72] ([Intel XE#877]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][73] -> [FAIL][74] ([Intel XE#1475]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-4/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-3/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2286]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-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-lnl: NOTRUN -> [SKIP][76] ([Intel XE#323]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#1508]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#1340]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-5/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-3.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([i915#3804]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6.html * igt at kms_dp_aux_dev: - shard-dg2-set2: [PASS][80] -> [SKIP][81] ([Intel XE#2423]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_dp_aux_dev.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_dp_aux_dev.html * {igt at kms_dsc@dsc-fractional-bpp-with-bpc-ultra-joiner} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#455]) +11 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_dsc@dsc-fractional-bpp-with-bpc-ultra-joiner.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2244]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: NOTRUN -> [FAIL][84] ([Intel XE#1695]) +1 other test fail [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@chamelium: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#701]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-2/igt at kms_feature_discovery@chamelium.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][86] ([Intel XE#3321]) +1 other test fail [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/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: NOTRUN -> [FAIL][87] ([Intel XE#301]) +2 other tests fail [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][88] -> [SKIP][89] ([Intel XE#3007]) +10 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_flip@2x-plain-flip-fb-recreate.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1421]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-4/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@bo-too-big-interruptible: - shard-lnl: NOTRUN -> [INCOMPLETE][91] ([Intel XE#1504]) +1 other test incomplete [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-6/igt at kms_flip@bo-too-big-interruptible.html * igt at kms_flip@flip-vs-expired-vblank: - shard-bmg: [PASS][92] -> [FAIL][93] ([Intel XE#2882]) +1 other test fail [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank.html * igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][94] ([Intel XE#3879]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-5/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible at c-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][95] ([Intel XE#2597]) +2 other tests incomplete [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-5/igt at kms_flip@flip-vs-suspend-interruptible at c-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1401]) +5 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2293]) +4 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2380]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-3/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt at kms_frontbuffer_tracking@drrs-modesetfrombusy: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#651]) +10 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-8/igt at kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][102] -> [SKIP][103] ([Intel XE#2136] / [Intel XE#2351]) +13 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#656]) +27 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [FAIL][105] ([Intel XE#2333]) +18 other tests fail [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1469]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-4/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2311]) +24 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2136]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2350]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2313]) +33 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.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_12396/shard-lnl-3/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#356]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-3/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2486]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-5/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-c-dp-2: - shard-bmg: NOTRUN -> [FAIL][114] ([Intel XE#3974]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-c-dp-2.html * igt at kms_plane@plane-position-hole: - shard-lnl: [PASS][115] -> [INCOMPLETE][116] ([Intel XE#877]) +2 other tests incomplete [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-4/igt at kms_plane@plane-position-hole.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-5/igt at kms_plane@plane-position-hole.html * igt at kms_plane@plane-position-hole at pipe-a-plane-5: - shard-lnl: [PASS][117] -> [DMESG-WARN][118] ([Intel XE#1727] / [Intel XE#877]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-4/igt at kms_plane@plane-position-hole at pipe-a-plane-5.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-5/igt at kms_plane@plane-position-hole at pipe-a-plane-5.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][119] ([Intel XE#616]) +2 other tests fail [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2393]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#2763]) +15 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-4/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2763]) +8 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/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-downscale-factor-0-75 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2763]) +24 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [PASS][125] -> [FAIL][126] ([Intel XE#718]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-4/igt at kms_pm_dc@dc5-psr.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][127] ([Intel XE#1430]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-6/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2499]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: [PASS][129] -> [SKIP][130] ([Intel XE#2446]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_pm_rpm@basic-pci-d3-state.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1439] / [Intel XE#3141]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-6/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_properties@connector-properties-legacy: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#3007]) +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_properties@connector-properties-legacy.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2893]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-8/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: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2136] / [Intel XE#2231]) +6 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#1489]) +7 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-5/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2387]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1406]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-3/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_psr@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_psr@psr-suspend.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#1127]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2330]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1435]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-5/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2426]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1: - shard-lnl: [PASS][144] -> [FAIL][145] ([Intel XE#899]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-6/igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1.html * igt at kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#1499]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#1499]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-2/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#756]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-6/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#756]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#1091] / [Intel XE#2849]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_ccs@suspend-resume at xmajor-compressed-compfmt0-vram01-vram01: - shard-bmg: [PASS][151] -> [INCOMPLETE][152] ([Intel XE#3918]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_ccs@suspend-resume at xmajor-compressed-compfmt0-vram01-vram01.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at xe_ccs@suspend-resume at xmajor-compressed-compfmt0-vram01-vram01.html * igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#1280] / [Intel XE#455]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_create@create-invalid-mbz: - shard-bmg: [PASS][154] -> [SKIP][155] ([Intel XE#1130]) +21 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_create@create-invalid-mbz.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at xe_create@create-invalid-mbz.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#1130]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2905]) +16 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug_online@resume-one: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#2905]) +8 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-8/igt at xe_eudebug_online@resume-one.html * igt at xe_evict@evict-beng-cm-threads-small: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#688]) +7 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-2/igt at xe_evict@evict-beng-cm-threads-small.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][160] -> [TIMEOUT][161] ([Intel XE#1473]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@many-null-rebind: - shard-dg2-set2: [PASS][162] -> [SKIP][163] ([Intel XE#1130]) +245 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_exec_basic@many-null-rebind.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at xe_exec_basic@many-null-rebind.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2322]) +12 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-5/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#1392]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-5/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt at xe_fault_injection@inject-fault-probe-function-xe_pm_init_early: - shard-lnl: [PASS][166] -> [DMESG-WARN][167] ([Intel XE#3467]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-5/igt at xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html * igt at xe_gt_freq@freq_suspend: - shard-bmg: [PASS][168] -> [FAIL][169] ([Intel XE#3982]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_gt_freq@freq_suspend.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at xe_gt_freq@freq_suspend.html * igt at xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#1416]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-5/igt at xe_mmap@vram.html * igt at xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#2457]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at xe_module_load@force-load.html * igt at xe_module_load@reload-no-display: - shard-dg2-set2: [PASS][172] -> [FAIL][173] ([Intel XE#3546]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_module_load@reload-no-display.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at xe_module_load@reload-no-display.html * igt at xe_pat@pat-index-xelp: - shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#2245]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at xe_pat@pat-index-xelp.html * igt at xe_pat@pat-index-xelpg: - shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#2236]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at xe_pat@pat-index-xelpg.html * igt at xe_pm@d3cold-basic: - shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#2284]) +3 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at xe_pm@d3cold-basic.html * igt at xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#2284] / [Intel XE#366]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-5/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#1948]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-2/igt at xe_pm@d3hot-mmap-vram.html * igt at xe_pm@s4-multiple-execs: - shard-lnl: [PASS][179] -> [ABORT][180] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-3/igt at xe_pm@s4-multiple-execs.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-2/igt at xe_pm@s4-multiple-execs.html * igt at xe_query@multigpu-query-engines: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#944]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-1/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-hwconfig: - shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#944]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at xe_query@multigpu-query-hwconfig.html * igt at xe_vm@invalid-extensions: - shard-bmg: NOTRUN -> [SKIP][183] ([Intel XE#1130]) +4 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at xe_vm@invalid-extensions.html #### Possible fixes #### * igt at core_getversion@basic: - shard-dg2-set2: [FAIL][184] ([Intel XE#3440]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_getversion@basic.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at core_getversion@basic.html * igt at core_hotunplug@unplug-rescan: - shard-dg2-set2: [SKIP][186] ([Intel XE#1885]) -> [PASS][187] +1 other test pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_hotunplug@unplug-rescan.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at core_hotunplug@unplug-rescan.html * igt at core_setmaster@master-drop-set-root: - shard-dg2-set2: [FAIL][188] ([Intel XE#3249]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_setmaster@master-drop-set-root.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@write: - shard-dg2-set2: [SKIP][190] ([Intel XE#2134]) -> [PASS][191] +1 other test pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at fbdev@write.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at fbdev@write.html * igt at intel_hwmon@hwmon-write: - shard-dg2-set2: [SKIP][192] ([Intel XE#2136]) -> [PASS][193] +33 other tests pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at intel_hwmon@hwmon-write.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at intel_hwmon@hwmon-write.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [FAIL][194] ([Intel XE#3701] / [Intel XE#3718] / [Intel XE#827]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-dp-2: - shard-bmg: [FAIL][196] ([Intel XE#3701]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-dp-2.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-dp-2.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: [SKIP][198] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: [SKIP][200] ([Intel XE#3007]) -> [PASS][201] +1 other test pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [FAIL][202] ([Intel XE#2882]) -> [PASS][203] +2 other tests pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_flip@2x-wf_vblank-ts-check.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at c-hdmi-a6: - shard-dg2-set2: [FAIL][204] ([Intel XE#301]) -> [PASS][205] +1 other test pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank-interruptible at c-hdmi-a6.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank-interruptible at c-hdmi-a6.html * igt at kms_flip@flip-vs-suspend at a-dp2: - shard-bmg: [INCOMPLETE][206] -> [PASS][207] [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_flip@flip-vs-suspend at a-dp2.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at kms_flip@flip-vs-suspend at a-dp2.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][208] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][209] +13 other tests pass [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_pipe_crc_basic@bad-source: - shard-dg2-set2: [SKIP][210] ([Intel XE#2423] / [i915#2575]) -> [PASS][211] +118 other tests pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pipe_crc_basic@bad-source.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_pipe_crc_basic@bad-source.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2-set2: [SKIP][212] ([Intel XE#2446]) -> [PASS][213] +4 other tests pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][214] ([Intel XE#899]) -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-6/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at testdisplay: - shard-dg2-set2: [SKIP][216] ([Intel XE#2423]) -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at testdisplay.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at testdisplay.html * igt at xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: [SKIP][218] ([Intel XE#1130]) -> [PASS][219] +207 other tests pass [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_balancer@once-parallel-rebind.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at xe_exec_balancer@once-parallel-rebind.html * igt at xe_exec_balancer@once-virtual-basic: - shard-bmg: [SKIP][220] ([Intel XE#1130]) -> [PASS][221] +4 other tests pass [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_exec_balancer@once-virtual-basic.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at xe_exec_balancer@once-virtual-basic.html * igt at xe_live_ktest@xe_bo: - shard-dg2-set2: [SKIP][222] ([Intel XE#2229] / [Intel XE#455]) -> [PASS][223] +1 other test pass [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_live_ktest@xe_bo.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-dg2-set2: [SKIP][224] ([Intel XE#2229]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_module_load@load: - shard-lnl: ([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], [SKIP][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251]) ([Intel XE#378]) -> ([PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][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], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-3/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-3/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-6/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-5/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-5/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-5/igt at xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-5/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-4/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-6/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-1/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-3/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-2/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-2/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-1/igt at xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-4/igt at xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-2/igt at xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-1/igt at xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-4/igt at xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-4/igt at xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-4/igt at xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-6/igt at xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-6/igt at xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-2/igt at xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-4/igt at xe_module_load@load.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-6/igt at xe_module_load@load.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-1/igt at xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-4/igt at xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-6/igt at xe_module_load@load.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-4/igt at xe_module_load@load.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-2/igt at xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-1/igt at xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-3/igt at xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-3/igt at xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-3/igt at xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-3/igt at xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-5/igt at xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-5/igt at xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-8/igt at xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-5/igt at xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-1/igt at xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-8/igt at xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-8/igt at xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-6/igt at xe_module_load@load.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-6/igt at xe_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-1/igt at xe_module_load@load.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-2/igt at xe_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-8/igt at xe_module_load@load.html * igt at xe_module_load@many-reload: - shard-dg2-set2: [FAIL][277] ([Intel XE#3546]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_module_load@many-reload.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at xe_module_load@many-reload.html * igt at xe_pm@s4-basic: - shard-lnl: [ABORT][279] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-2/igt at xe_pm@s4-basic.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-1/igt at xe_pm@s4-basic.html * igt at xe_pm@s4-vm-bind-prefetch: - shard-lnl: [ABORT][281] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-2/igt at xe_pm@s4-vm-bind-prefetch.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-lnl-1/igt at xe_pm@s4-vm-bind-prefetch.html #### Warnings #### * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: [SKIP][283] ([Intel XE#316]) -> [SKIP][284] ([Intel XE#2136]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][285] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][286] ([Intel XE#316]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][287] ([Intel XE#316]) -> [SKIP][288] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@linear-16bpp-rotate-90.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-dg2-set2: [SKIP][289] ([Intel XE#2136]) -> [SKIP][290] ([Intel XE#316]) +4 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@linear-8bpp-rotate-270.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-bmg: [SKIP][291] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][292] ([Intel XE#2327]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-5/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][293] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][294] ([Intel XE#1124]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_big_fb@y-tiled-16bpp-rotate-270.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_big_fb@y-tiled-16bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][295] ([Intel XE#607]) -> [SKIP][296] ([Intel XE#2136] / [Intel XE#2351]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/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][297] ([Intel XE#610]) -> [SKIP][298] ([Intel XE#2136]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2-set2: [SKIP][299] ([Intel XE#1124]) -> [SKIP][300] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@yf-tiled-16bpp-rotate-90.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][301] ([Intel XE#1124]) -> [SKIP][302] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][303] ([Intel XE#1124]) -> [SKIP][304] ([Intel XE#2136]) +11 other tests skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@yf-tiled-32bpp-rotate-180.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][305] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][306] ([Intel XE#1124]) +3 other tests skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][307] ([Intel XE#2136]) -> [SKIP][308] ([Intel XE#1124]) +10 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][309] ([Intel XE#2136]) -> [SKIP][310] ([Intel XE#607]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: [SKIP][311] ([Intel XE#2423] / [i915#2575]) -> [SKIP][312] ([Intel XE#367]) +7 other tests skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: [SKIP][313] ([Intel XE#2423] / [i915#2575]) -> [SKIP][314] ([Intel XE#2191]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: [SKIP][315] ([Intel XE#2191]) -> [SKIP][316] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][317] ([Intel XE#367]) -> [SKIP][318] ([Intel XE#2423] / [i915#2575]) +6 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][319] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][320] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][321] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][322] ([Intel XE#2136]) +10 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][323] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][324] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs: - shard-bmg: [SKIP][325] ([Intel XE#2887]) -> [SKIP][326] ([Intel XE#2136] / [Intel XE#2231]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][327] ([Intel XE#2907]) -> [SKIP][328] ([Intel XE#2136]) +2 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][329] ([Intel XE#2136]) -> [SKIP][330] ([Intel XE#2907]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][331] ([Intel XE#2136]) -> [SKIP][332] ([Intel XE#455] / [Intel XE#787]) +18 other tests skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][333] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][334] ([Intel XE#2887]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][335] ([Intel XE#314]) -> [SKIP][336] ([Intel XE#2136] / [Intel XE#2351]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_cdclk@mode-transition-all-outputs.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: [SKIP][337] ([Intel XE#306]) -> [SKIP][338] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_chamelium_color@ctm-red-to-blue.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_color@degamma: - shard-dg2-set2: [SKIP][339] ([Intel XE#2423] / [i915#2575]) -> [SKIP][340] ([Intel XE#306]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_chamelium_color@degamma.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: [SKIP][341] ([Intel XE#2423] / [i915#2575]) -> [SKIP][342] ([Intel XE#373]) +13 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][343] ([Intel XE#373]) -> [SKIP][344] ([Intel XE#2423] / [i915#2575]) +15 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_chamelium_hpd@vga-hpd.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_content_protection@atomic-dpms: - shard-dg2-set2: [SKIP][345] ([Intel XE#2423] / [i915#2575]) -> [FAIL][346] ([Intel XE#1178]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_content_protection@atomic-dpms.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][347] ([Intel XE#2423] / [i915#2575]) -> [SKIP][348] ([Intel XE#307]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_content_protection@dp-mst-lic-type-0.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: [SKIP][349] ([Intel XE#307]) -> [SKIP][350] ([Intel XE#2423] / [i915#2575]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_content_protection@dp-mst-lic-type-1.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@lic-type-0: - shard-dg2-set2: [INCOMPLETE][351] ([Intel XE#2715]) -> [FAIL][352] ([Intel XE#1178]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_content_protection@lic-type-0.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][353] -> [FAIL][354] ([Intel XE#3304]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_content_protection@lic-type-0 at pipe-a-dp-4.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at kms_content_protection@lic-type-0 at pipe-a-dp-4.html * igt at kms_content_protection@srm: - shard-dg2-set2: [FAIL][355] ([Intel XE#1178]) -> [SKIP][356] ([Intel XE#2423] / [i915#2575]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_content_protection@srm.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-dg2-set2: [FAIL][357] ([Intel XE#1188]) -> [SKIP][358] ([Intel XE#2423] / [i915#2575]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_content_protection@uevent.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: [SKIP][359] ([Intel XE#2423] / [i915#2575]) -> [SKIP][360] ([Intel XE#308]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_crc@cursor-sliding-512x170.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][361] ([Intel XE#2321]) -> [SKIP][362] ([Intel XE#3007]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_cursor_crc@cursor-sliding-512x512.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][363] ([Intel XE#2423] / [i915#2575]) -> [SKIP][364] ([Intel XE#323]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2-set2: [SKIP][365] ([Intel XE#323]) -> [SKIP][366] ([Intel XE#2423] / [i915#2575]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: [SKIP][367] ([Intel XE#455]) -> [SKIP][368] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_dsc@dsc-with-bpc-formats.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][369] ([Intel XE#455]) -> [SKIP][370] ([Intel XE#2136]) +4 other tests skip [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][371] ([Intel XE#2136]) -> [SKIP][372] ([Intel XE#776]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_fbcon_fbt@psr-suspend.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@dp-mst: - shard-dg2-set2: [SKIP][373] ([Intel XE#2423] / [i915#2575]) -> [SKIP][374] ([Intel XE#1137]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_feature_discovery@dp-mst.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr2: - shard-dg2-set2: [SKIP][375] ([Intel XE#1135]) -> [SKIP][376] ([Intel XE#2423] / [i915#2575]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_feature_discovery@psr2.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [SKIP][377] ([Intel XE#2423] / [i915#2575]) -> [FAIL][378] ([Intel XE#301]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [INCOMPLETE][379] ([Intel XE#2597]) -> [FAIL][380] ([Intel XE#3664]) +1 other test fail [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-dp2-hdmi-a3.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2-set2: [SKIP][381] ([Intel XE#2136]) -> [SKIP][382] ([Intel XE#455]) +2 other tests skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][383] ([i915#5274]) -> [SKIP][384] ([Intel XE#2423] / [i915#2575]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_force_connector_basic@prune-stale-modes.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][385] ([Intel XE#651]) -> [SKIP][386] ([Intel XE#2136]) +29 other tests skip [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][387] ([Intel XE#2136]) -> [SKIP][388] ([Intel XE#651]) +26 other tests skip [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: [SKIP][389] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][390] ([Intel XE#2311]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][391] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][392] ([Intel XE#651]) +10 other tests skip [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-suspend.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-bmg: [FAIL][393] ([Intel XE#2333]) -> [SKIP][394] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][395] ([Intel XE#651]) -> [SKIP][396] ([Intel XE#2136] / [Intel XE#2351]) +17 other tests skip [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-bmg: [SKIP][397] ([Intel XE#2311]) -> [SKIP][398] ([Intel XE#2136] / [Intel XE#2231]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][399] ([Intel XE#658]) -> [SKIP][400] ([Intel XE#2136] / [Intel XE#2351]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][401] ([Intel XE#2313]) -> [SKIP][402] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][403] ([Intel XE#653]) -> [SKIP][404] ([Intel XE#2136] / [Intel XE#2351]) +11 other tests skip [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][405] ([Intel XE#1158]) -> [SKIP][406] ([Intel XE#2136]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][407] ([Intel XE#653]) -> [SKIP][408] ([Intel XE#2136]) +38 other tests skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][409] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][410] ([Intel XE#653]) +9 other tests skip [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][411] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][412] ([Intel XE#2313]) [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][413] ([Intel XE#2136]) -> [SKIP][414] ([Intel XE#653]) +34 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-slowdraw.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_histogram@algo-color: - shard-dg2-set2: [SKIP][415] ([Intel XE#2423] / [i915#2575]) -> [SKIP][416] ([Intel XE#3897]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_histogram@algo-color.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_histogram@algo-color.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][417] ([Intel XE#2136]) -> [SKIP][418] ([Intel XE#2927]) [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_joiner@basic-ultra-joiner.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][419] ([Intel XE#2423] / [i915#2575]) -> [SKIP][420] ([Intel XE#356]) [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_cursor@primary: - shard-dg2-set2: [SKIP][421] ([Intel XE#2423] / [i915#2575]) -> [FAIL][422] ([Intel XE#616]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_plane_cursor@primary.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_plane_cursor@primary.html * igt at kms_plane_multiple@tiling-y: - shard-dg2-set2: [SKIP][423] ([Intel XE#2423] / [i915#2575]) -> [SKIP][424] ([Intel XE#455]) +6 other tests skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_plane_multiple@tiling-y.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][425] ([Intel XE#361]) -> [SKIP][426] ([Intel XE#2423] / [i915#2575]) [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/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][427] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][428] ([Intel XE#2423] / [i915#2575]) +1 other test skip [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2-set2: [SKIP][429] ([Intel XE#2423] / [i915#2575]) -> [SKIP][430] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_pm_backlight@fade: - shard-dg2-set2: [SKIP][431] ([Intel XE#870]) -> [SKIP][432] ([Intel XE#2136]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_pm_backlight@fade.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: [SKIP][433] ([Intel XE#1129]) -> [SKIP][434] ([Intel XE#2136]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_pm_dc@dc5-psr.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: [SKIP][435] ([Intel XE#908]) -> [SKIP][436] ([Intel XE#2136] / [Intel XE#2351]) [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_pm_dc@dc6-dpms.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-bmg: [SKIP][437] ([Intel XE#2392]) -> [SKIP][438] ([Intel XE#2136] / [Intel XE#2231]) [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_pm_dc@dc6-psr.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_pm_dc@dc6-psr.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: [SKIP][439] ([Intel XE#2136]) -> [SKIP][440] ([Intel XE#1489]) +7 other tests skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/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-move-continuous-exceed-sf: - shard-bmg: [SKIP][441] ([Intel XE#1489]) -> [SKIP][442] ([Intel XE#2136] / [Intel XE#2231]) [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][443] ([Intel XE#1489]) -> [SKIP][444] ([Intel XE#2136]) +11 other tests skip [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2-set2: [SKIP][445] ([Intel XE#2136]) -> [SKIP][446] ([Intel XE#1122]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr2_su@frontbuffer-xrgb8888.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][447] ([Intel XE#1122]) -> [SKIP][448] ([Intel XE#2136]) +1 other test skip [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_psr2_su@page_flip-nv12.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-pr-cursor-render: - shard-bmg: [SKIP][449] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][450] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_psr@fbc-pr-cursor-render.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_psr@fbc-pr-cursor-render.html * igt at kms_psr@fbc-pr-no-drrs: - shard-dg2-set2: [SKIP][451] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][452] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr@fbc-pr-no-drrs.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][453] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][454] ([Intel XE#2234] / [Intel XE#2850]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_psr@fbc-pr-sprite-blt.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-5/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: [SKIP][455] ([Intel XE#2136]) -> [SKIP][456] ([Intel XE#2850] / [Intel XE#929]) +16 other tests skip [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr@fbc-psr2-primary-render.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-plane-onoff: - shard-dg2-set2: [SKIP][457] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][458] ([Intel XE#2136]) +19 other tests skip [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_psr@pr-cursor-plane-onoff.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_psr@pr-cursor-plane-onoff.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][459] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][460] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_psr@psr-dpms.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_psr@psr-dpms.html * igt at kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][461] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][462] ([Intel XE#2351]) +1 other test skip [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_psr@psr-sprite-plane-onoff.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_rotation_crc@bad-tiling: - shard-bmg: [SKIP][463] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][464] ([Intel XE#3007]) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_rotation_crc@bad-tiling.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-rotation-270: - shard-dg2-set2: [SKIP][465] ([Intel XE#2423] / [i915#2575]) -> [SKIP][466] ([Intel XE#3414]) +3 other tests skip [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_rotation_crc@primary-rotation-270.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][467] ([Intel XE#1127]) -> [SKIP][468] ([Intel XE#2423] / [i915#2575]) [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/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][469] ([Intel XE#3414]) -> [SKIP][470] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/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][471] ([Intel XE#2423] / [i915#2575]) -> [SKIP][472] ([Intel XE#1127]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][473] ([Intel XE#1500]) -> [SKIP][474] ([Intel XE#2423] / [i915#2575]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-d-dp-2: - shard-bmg: [FAIL][475] -> [INCOMPLETE][476] ([Intel XE#3864]) +1 other test incomplete [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-d-dp-2.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-d-dp-2.html * igt at kms_vrr@flipline: - shard-dg2-set2: [SKIP][477] ([Intel XE#455]) -> [SKIP][478] ([Intel XE#2423] / [i915#2575]) +16 other tests skip [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_vrr@flipline.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_vrr@flipline.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: [SKIP][479] ([Intel XE#756]) -> [SKIP][480] ([Intel XE#2423] / [i915#2575]) +1 other test skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_writeback@writeback-fb-id.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at kms_writeback@writeback-fb-id.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: [SKIP][481] ([Intel XE#2423] / [i915#2575]) -> [SKIP][482] ([Intel XE#1091] / [Intel XE#2849]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at sriov_basic@enable-vfs-autoprobe-off.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][483] ([Intel XE#1130]) -> [SKIP][484] ([Intel XE#1280] / [Intel XE#455]) +2 other tests skip [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_compute_preempt@compute-preempt.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at xe_compute_preempt@compute-preempt.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][485] ([Intel XE#3889]) -> [SKIP][486] ([Intel XE#1130]) [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: [SKIP][487] ([Intel XE#1130]) -> [SKIP][488] ([Intel XE#3889]) +1 other test skip [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-dg2-set2: [SKIP][489] ([Intel XE#3889]) -> [SKIP][490] ([Intel XE#1130]) +1 other test skip [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-bmg: [SKIP][491] ([Intel XE#1130]) -> [SKIP][492] ([Intel XE#3889]) [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@basic-breakpoint: - shard-dg2-set2: [SKIP][493] ([Intel XE#2905]) -> [SKIP][494] ([Intel XE#1130]) +17 other tests skip [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_eudebug_online@basic-breakpoint.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at xe_eudebug_online@basic-breakpoint.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: [SKIP][495] ([Intel XE#1130]) -> [SKIP][496] ([Intel XE#2905]) +14 other tests skip [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [SKIP][497] ([Intel XE#1130]) -> [TIMEOUT][498] ([Intel XE#1473] / [Intel XE#402]) [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_evict@evict-beng-mixed-many-threads-small.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][499] ([Intel XE#1473]) -> [SKIP][500] ([Intel XE#1130]) [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_evict@evict-mixed-many-threads-large.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_exec_compute_mode@many-userptr-rebind: - shard-dg2-set2: [FAIL][501] -> [SKIP][502] ([Intel XE#1130]) [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_exec_compute_mode@many-userptr-rebind.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at xe_exec_compute_mode@many-userptr-rebind.html * igt at xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: [SKIP][503] ([Intel XE#1130]) -> [SKIP][504] ([Intel XE#288]) +27 other tests skip [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_fault_mode@twice-invalid-fault.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at xe_exec_fault_mode@twice-invalid-fault.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][505] ([Intel XE#288]) -> [SKIP][506] ([Intel XE#1130]) +40 other tests skip [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/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][507] ([Intel XE#1130]) -> [SKIP][508] ([Intel XE#2360]) +1 other test skip [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_mmap@small-bar: - shard-dg2-set2: [SKIP][509] ([Intel XE#512]) -> [SKIP][510] ([Intel XE#1130]) [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_mmap@small-bar.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at xe_mmap@small-bar.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: [SKIP][511] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][512] ([Intel XE#1130]) +13 other tests skip [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_oa@closed-fd-and-unmapped-access.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_oa@syncs-ufence-wait: - shard-dg2-set2: [SKIP][513] ([Intel XE#1130]) -> [SKIP][514] ([Intel XE#2541] / [Intel XE#3573]) +12 other tests skip [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_oa@syncs-ufence-wait.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at xe_oa@syncs-ufence-wait.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][515] ([Intel XE#977]) -> [SKIP][516] ([Intel XE#1130]) [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_pat@pat-index-xe2.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][517] ([Intel XE#979]) -> [SKIP][518] ([Intel XE#1130]) [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_pat@pat-index-xelpg.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@write: - shard-dg2-set2: [FAIL][519] ([Intel XE#1173]) -> [SKIP][520] ([Intel XE#1061]) [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_peer2peer@write.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-basic: - shard-dg2-set2: [SKIP][521] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][522] ([Intel XE#1130]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_pm@d3cold-basic.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at xe_pm@d3cold-basic.html * igt at xe_pm@d3cold-basic-exec: - shard-dg2-set2: [SKIP][523] ([Intel XE#1130]) -> [SKIP][524] ([Intel XE#2284] / [Intel XE#366]) [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_pm@d3cold-basic-exec.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at xe_pm@d3cold-basic-exec.html * igt at xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][525] ([Intel XE#1130]) -> [SKIP][526] ([Intel XE#2284]) [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_pm@d3cold-mocs.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-434/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: [SKIP][527] ([Intel XE#579]) -> [SKIP][528] ([Intel XE#1130]) [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_pm@vram-d3cold-threshold.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: [SKIP][529] ([Intel XE#944]) -> [SKIP][530] ([Intel XE#1130]) +4 other tests skip [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_query@multigpu-query-cs-cycles.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at xe_query@multigpu-query-cs-cycles.html - shard-bmg: [SKIP][531] ([Intel XE#944]) -> [SKIP][532] ([Intel XE#1130]) [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_query@multigpu-query-cs-cycles.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-bmg-3/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][533] ([Intel XE#1130]) -> [SKIP][534] ([Intel XE#944]) +4 other tests skip [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_query@multigpu-query-engines.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-436/igt at xe_query@multigpu-query-engines.html * igt at xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: [SKIP][535] ([Intel XE#3342]) -> [SKIP][536] ([Intel XE#1130]) [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_sriov_flr@flr-each-isolation.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-466/igt at xe_sriov_flr@flr-each-isolation.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][537] ([Intel XE#1130]) -> [SKIP][538] ([Intel XE#3342]) [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_sriov_flr@flr-vf1-clear.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/shard-dg2-435/igt at xe_sriov_flr@flr-vf1-clear.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [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#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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [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#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#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [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#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [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#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#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [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#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [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#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#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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#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#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#3701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3701 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3864 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3918]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3918 [Intel XE#3974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3974 [Intel XE#3982]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3982 [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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [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#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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [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#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#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 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8179 -> IGTPW_12396 * Linux: xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571 -> xe-2451-dbd476153d41352ad6022088be16301051b9bce7 IGTPW_12396: 6f3ec890d8aa7505c2a20cfd76b6ecea3ae25590 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571: 89042e0bb417f4d67280e1d7fa9bbcca51734571 xe-2451-dbd476153d41352ad6022088be16301051b9bce7: dbd476153d41352ad6022088be16301051b9bce7 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12396/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 14:26:34 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 14:26:34 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_Initial_PTL_support_=28re?= =?utf-8?q?v6=29?= In-Reply-To: <20241218213654.2734573-1-clinton.a.taylor@intel.com> References: <20241218213654.2734573-1-clinton.a.taylor@intel.com> Message-ID: <173643279483.1645445.6728014542556156152@b555e5b46a47> == Series Details == Series: Initial PTL support (rev6) URL : https://patchwork.freedesktop.org/series/141325/ State : failure == Summary == CI Bug Log - changes from IGT_8183 -> IGTPW_12418 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12418 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12418, 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_12418/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12418: ### IGT changes ### #### Possible regressions #### * igt at core_hotunplug@unbind-rebind: - fi-cfl-guc: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/fi-cfl-guc/igt at core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/fi-cfl-guc/igt at core_hotunplug@unbind-rebind.html * igt at i915_selftest@live at gt_heartbeat: - bat-arlh-2: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-arlh-2/igt at i915_selftest@live at gt_heartbeat.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-arlh-2/igt at i915_selftest@live at gt_heartbeat.html Known issues ------------ Here are the changes found in IGTPW_12418 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-arlh-2: [PASS][5] -> [INCOMPLETE][6] ([i915#13050]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-arlh-2/igt at i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-arlh-2/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - 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_8183/bat-arls-5/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-arls-5/igt at i915_selftest@live at workarounds.html * igt at runner@aborted: - fi-pnv-d510: NOTRUN -> [FAIL][9] ([i915#13350]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/fi-pnv-d510/igt at runner@aborted.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][10] ([i915#13393]) -> [PASS][11] +1 other test pass [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-mtlp-9/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#13050]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13050 [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_8183 -> IGTPW_12418 CI-20190529: 20190529 CI_DRM_15929: 14e0c4a8247c9514dc57b2231602fb6d9455802b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12418: 23052ace3ac04fd0203b573736255ba4919c63d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Thu Jan 9 14:45:17 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Thu, 9 Jan 2025 15:45:17 +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> <20250104224429.0d3d00de@windsurf> Message-ID: <20250109144517.hr4flup4b2lwixhj@kamilkon-desk.igk.intel.com> Hi Lucas, On 2025-01-06 at 11:42:32 -0600, Lucas De Marchi wrote: > On Sat, Jan 04, 2025 at 10:44:29PM +0100, Thomas Petazzoni wrote: > > 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? > > ugh... but the soname is about linking to the library, which is > unrelated to linking. > > I'd rather wait on that discussion to settle. > > > > > > 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. > > agreed, that would be the next best alternative > > Lucas De Marchi > I merged this as is, if there will be any better solution it could replace this patch. Regards, Kamil > > > > Best regards, > > > > Thomas > > -- > > Thomas Petazzoni, co-owner and CEO, Bootlin > > Embedded Linux and Kernel engineering and training > > https://bootlin.com From patchwork at emeril.freedesktop.org Thu Jan 9 14:49:19 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 14:49:19 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Initial_PTL_support_=28rev6?= =?utf-8?q?=29?= In-Reply-To: <20241218213654.2734573-1-clinton.a.taylor@intel.com> References: <20241218213654.2734573-1-clinton.a.taylor@intel.com> Message-ID: <173643415940.1655378.3975928000756234192@b555e5b46a47> == Series Details == Series: Initial PTL support (rev6) URL : https://patchwork.freedesktop.org/series/141325/ State : success == Summary == CI Bug Log - changes from XEIGT_8183_BAT -> XEIGTPW_12418_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12418_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_8183/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/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_8183/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/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_8183/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/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_8183 -> IGTPW_12418 IGTPW_12418: 23052ace3ac04fd0203b573736255ba4919c63d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2461-14e0c4a8247c9514dc57b2231602fb6d9455802b: 14e0c4a8247c9514dc57b2231602fb6d9455802b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Thu Jan 9 14:52:36 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Thu, 9 Jan 2025 15:52:36 +0100 Subject: =?utf-8?B?4pyXIGk5MTUuQ0kuQkFU?= =?utf-8?Q?=3A?= failure for Initial PTL support (rev6) In-Reply-To: <173643279483.1645445.6728014542556156152@b555e5b46a47> References: <20241218213654.2734573-1-clinton.a.taylor@intel.com> <173643279483.1645445.6728014542556156152@b555e5b46a47> Message-ID: <20250109145236.ep4l3jj5kgzmeaix@kamilkon-desk.igk.intel.com> Hi igt-dev, On 2025-01-09 at 14:26:34 -0000, Patchwork wrote: > == Series Details == > > Series: Initial PTL support (rev6) > URL : https://patchwork.freedesktop.org/series/141325/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_8183 -> IGTPW_12418 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12418 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12418, 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_12418/index.html > > Participating hosts (38 -> 37) > ------------------------------ > > Missing (1): fi-snb-2520m > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12418: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at core_hotunplug@unbind-rebind: > - fi-cfl-guc: [PASS][1] -> [ABORT][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/fi-cfl-guc/igt at core_hotunplug@unbind-rebind.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/fi-cfl-guc/igt at core_hotunplug@unbind-rebind.html > > * igt at i915_selftest@live at gt_heartbeat: > - bat-arlh-2: [PASS][3] -> [INCOMPLETE][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-arlh-2/igt at i915_selftest@live at gt_heartbeat.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-arlh-2/igt at i915_selftest@live at gt_heartbeat.html > These are unrelated, Regards, Kamil > > Known issues > ------------ > > Here are the changes found in IGTPW_12418 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt at i915_selftest@live: > - bat-arlh-2: [PASS][5] -> [INCOMPLETE][6] ([i915#13050]) > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-arlh-2/igt at i915_selftest@live.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-arlh-2/igt at i915_selftest@live.html > > * igt at i915_selftest@live at workarounds: > - 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_8183/bat-arls-5/igt at i915_selftest@live at workarounds.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-arls-5/igt at i915_selftest@live at workarounds.html > > * igt at runner@aborted: > - fi-pnv-d510: NOTRUN -> [FAIL][9] ([i915#13350]) > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/fi-pnv-d510/igt at runner@aborted.html > > > #### Possible fixes #### > > * igt at i915_selftest@live at workarounds: > - {bat-mtlp-9}: [DMESG-FAIL][10] ([i915#13393]) -> [PASS][11] +1 other test pass > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-mtlp-9/igt at i915_selftest@live at workarounds.html > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-mtlp-9/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#13050]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13050 > [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_8183 -> IGTPW_12418 > > CI-20190529: 20190529 > CI_DRM_15929: 14e0c4a8247c9514dc57b2231602fb6d9455802b @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_12418: 23052ace3ac04fd0203b573736255ba4919c63d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/index.html From patchwork at emeril.freedesktop.org Thu Jan 9 15:19:01 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 15:19:01 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Update_image_assets_=28rev?= =?utf-8?q?3=29?= In-Reply-To: <20250107200614.963199-1-ramanaidu.naladala@intel.com> References: <20250107200614.963199-1-ramanaidu.naladala@intel.com> Message-ID: <173643594190.1659879.17876342187909928980@b555e5b46a47> == Series Details == Series: Update image assets (rev3) URL : https://patchwork.freedesktop.org/series/141539/ State : failure == Summary == CI Bug Log - changes from XEIGT_8179_full -> XEIGTPW_12397_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12397_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12397_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_12397_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@2x-dpms-vs-vblank-race at bc-dp2-hdmi-a3: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_flip@2x-dpms-vs-vblank-race at bc-dp2-hdmi-a3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_flip@2x-dpms-vs-vblank-race at bc-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] +3 other tests incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-434/igt at kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp2: - shard-bmg: NOTRUN -> [INCOMPLETE][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_flip@flip-vs-suspend-interruptible at d-dp2.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-d-dp-2: - shard-bmg: NOTRUN -> [FAIL][6] +2 other tests fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-5/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-d-dp-2.html Known issues ------------ Here are the changes found in XEIGTPW_12397_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getstats: - shard-dg2-set2: [PASS][7] -> [SKIP][8] ([Intel XE#2423]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at core_getstats.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at core_getstats.html * igt at core_hotunplug@unbind-rebind: - shard-dg2-set2: [PASS][9] -> [SKIP][10] ([Intel XE#1885]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at core_hotunplug@unbind-rebind.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/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_8179/shard-dg2-434/igt at core_setmaster@master-drop-set-user.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/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]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at fbdev@info.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at fbdev@info.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1125]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-5/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1466]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-6/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#873]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#3768]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-2/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2327]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-5/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1407]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1467]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-4/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +8 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +5 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-8/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2314] / [Intel XE#2894]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#367]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_bw@linear-tiling-1-displays-2160x1440p.html * igt at kms_bw@linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#367]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-2/igt at kms_bw@linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1512]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-4/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#787]) +111 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc at pipe-a-hdmi-a-6.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +10 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-6/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2669]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-5/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: NOTRUN -> [INCOMPLETE][31] ([Intel XE#3862]) +1 other test incomplete [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#3432]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#3432]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-2/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +5 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_chamelium_color@degamma: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#306]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-3/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_frames@dp-crc-multiple: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#2423] / [i915#2575]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_chamelium_frames@dp-crc-multiple.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2252]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@dp-hpd: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#373]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-2/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][40] ([Intel XE#1178]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_content_protection@atomic-dpms at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-offscreen-64x21: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1424]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-4/igt at kms_cursor_crc@cursor-offscreen-64x21.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#2321]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-4/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2320]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: NOTRUN -> [DMESG-WARN][44] ([Intel XE#877]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#309]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-5/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2286]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-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-lnl: NOTRUN -> [SKIP][47] ([Intel XE#323]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#1508]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-5/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([i915#3804]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6.html * igt at kms_dsc@dsc-with-bpc: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2244]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_dsc@dsc-with-bpc.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: NOTRUN -> [FAIL][51] ([Intel XE#1695]) +1 other test fail [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@chamelium: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#701]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-5/igt at kms_feature_discovery@chamelium.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-bmg: [PASS][53] -> [INCOMPLETE][54] ([Intel XE#2635]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_flip@2x-dpms-vs-vblank-race.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][55] ([Intel XE#3321]) +1 other test fail [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/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: NOTRUN -> [FAIL][56] ([Intel XE#301]) +3 other tests fail [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/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 ad-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][57] ([Intel XE#3321]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][58] ([Intel XE#2882]) +2 other tests fail [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1421]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-3/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@bo-too-big-interruptible: - shard-lnl: NOTRUN -> [INCOMPLETE][60] ([Intel XE#1504]) +1 other test incomplete [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-4/igt at kms_flip@bo-too-big-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at a-dp2: - shard-bmg: [PASS][61] -> [FAIL][62] ([Intel XE#3879]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_flip@flip-vs-suspend-interruptible at a-dp2.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_flip@flip-vs-suspend-interruptible at a-dp2.html * igt at kms_flip@flip-vs-suspend-interruptible at c-dp2: - shard-bmg: NOTRUN -> [FAIL][63] ([Intel XE#3879]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_flip@flip-vs-suspend-interruptible at c-dp2.html * igt at kms_flip@flip-vs-suspend at d-dp4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][64] ([Intel XE#2049]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-434/igt at kms_flip@flip-vs-suspend at d-dp4.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1: - shard-lnl: [PASS][65] -> [FAIL][66] ([Intel XE#886]) +7 other tests fail [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-2/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-6/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [PASS][67] -> [SKIP][68] ([Intel XE#2136]) +39 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/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-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1401]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-3/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#455]) +8 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2380]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2293]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt at kms_frontbuffer_tracking@basic: - shard-dg2-set2: [PASS][75] -> [SKIP][76] ([Intel XE#2351]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@basic.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_frontbuffer_tracking@basic.html * igt at kms_frontbuffer_tracking@drrs-modesetfrombusy: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#651]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-8/igt at kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][78] ([Intel XE#2333]) +11 other tests fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-dg2-set2: [PASS][79] -> [SKIP][80] ([Intel XE#2136] / [Intel XE#2351]) +18 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#656]) +18 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-4/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2311]) +13 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#2136]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2313]) +13 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.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_12397/shard-lnl-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_getfb@getfb-handle-zero: - shard-dg2-set2: [PASS][86] -> [SKIP][87] ([Intel XE#2423] / [i915#2575]) +140 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_getfb@getfb-handle-zero.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_getfb@getfb-handle-zero.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#2927]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-1/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#356]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-6/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][90] ([Intel XE#616]) +2 other tests fail [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#2763]) +15 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-8/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-434/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2763]) +5 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/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-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2763]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#718]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-4/igt at kms_pm_dc@dc5-dpms.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][97] ([Intel XE#1430]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-4/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][98] -> [SKIP][99] ([Intel XE#2446]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1439] / [Intel XE#3141]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-6/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2893]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-8/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#1489]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2387]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-5/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1406]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-4/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_psr@fbc-psr2-primary-blt: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_psr@fbc-psr2-primary-blt.html * igt at kms_rotation_crc@primary-rotation-270: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-5/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2330]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1127]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1435]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-3/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1: - shard-lnl: [PASS][110] -> [FAIL][111] ([Intel XE#899]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1.html * igt at kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#1499]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_vrr@flip-suspend.html * igt at kms_writeback@writeback-check-output: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#756]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-5/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#756]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-2/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#1280] / [Intel XE#455]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-434/igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-connect: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2905]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at xe_eudebug@basic-connect.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1130]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug@basic-vm-bind: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#2905]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-2/igt at xe_eudebug@basic-vm-bind.html * igt at xe_evict@evict-beng-cm-threads-small: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#688]) +7 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-4/igt at xe_evict@evict-beng-cm-threads-small.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: NOTRUN -> [TIMEOUT][121] ([Intel XE#1473] / [Intel XE#2472]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at xe_evict@evict-mixed-threads-large.html * igt at xe_exec_basic@many-null-rebind: - shard-dg2-set2: [PASS][122] -> [SKIP][123] ([Intel XE#1130]) +243 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_exec_basic@many-null-rebind.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at xe_exec_basic@many-null-rebind.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2322]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-5/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1392]) +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-8/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt at xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2459] / [Intel XE#2596]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-5/igt at xe_media_fill@media-fill.html * igt at xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1416]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-5/igt at xe_mmap@vram.html * igt at xe_pat@pat-index-xelpg: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2236]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at xe_pat@pat-index-xelpg.html * igt at xe_pm@d3cold-basic: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2284]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at xe_pm@d3cold-basic.html * igt at xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-1/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-mocs: - shard-bmg: NOTRUN -> [FAIL][131] ([Intel XE#3902]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-5/igt at xe_pm@s3-mocs.html * igt at xe_pm@vram-d3cold-threshold: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#579]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-5/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-engines: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#944]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-4/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-gt-list: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#944]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at xe_query@multigpu-query-gt-list.html #### Possible fixes #### * igt at core_getversion@all-cards: - shard-dg2-set2: [FAIL][135] ([Intel XE#3440]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_getversion@all-cards.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at core_getversion@all-cards.html * igt at core_hotunplug@unplug-rescan: - shard-dg2-set2: [SKIP][137] ([Intel XE#1885]) -> [PASS][138] +1 other test pass [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_hotunplug@unplug-rescan.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at core_hotunplug@unplug-rescan.html * igt at core_setmaster@master-drop-set-root: - shard-dg2-set2: [FAIL][139] ([Intel XE#3249]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_setmaster@master-drop-set-root.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-434/igt at core_setmaster@master-drop-set-root.html * igt at kms_big_fb@4-tiled-16bpp-rotate-180: - shard-dg2-set2: [SKIP][141] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][142] +15 other tests pass [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@4-tiled-16bpp-rotate-180.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_big_fb@4-tiled-16bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][143] ([Intel XE#2136]) -> [PASS][144] +33 other tests pass [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_cursor_crc@cursor-suspend: - shard-bmg: [INCOMPLETE][145] ([Intel XE#3878]) -> [PASS][146] [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_cursor_crc@cursor-suspend.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [FAIL][147] ([Intel XE#2882]) -> [PASS][148] +2 other tests pass [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at kms_flip@2x-wf_vblank-ts-check.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][149] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][150] [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2: - shard-bmg: [FAIL][151] ([Intel XE#3288] / [Intel XE#3321]) -> [PASS][152] [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6: - shard-dg2-set2: [FAIL][153] ([Intel XE#301]) -> [PASS][154] +6 other tests pass [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a6.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/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][155] ([Intel XE#2597]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_flip@flip-vs-suspend.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at a-dp2: - shard-bmg: [INCOMPLETE][157] -> [PASS][158] +1 other test pass [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at kms_flip@flip-vs-suspend at a-dp2.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_flip@flip-vs-suspend at a-dp2.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2-set2: [SKIP][159] ([Intel XE#2446]) -> [PASS][160] +3 other tests pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_rotation_crc@multiplane-rotation-cropping-top: - shard-bmg: [SKIP][161] ([Intel XE#3007]) -> [PASS][162] +1 other test pass [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_rotation_crc@multiplane-rotation-cropping-top.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_rotation_crc@multiplane-rotation-cropping-top.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [FAIL][163] ([Intel XE#899]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vblank@wait-forked-busy-hang: - shard-dg2-set2: [SKIP][165] ([Intel XE#2423] / [i915#2575]) -> [PASS][166] +118 other tests pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_vblank@wait-forked-busy-hang.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_vblank@wait-forked-busy-hang.html * igt at xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: [SKIP][167] ([Intel XE#1130]) -> [PASS][168] +212 other tests pass [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_balancer@once-parallel-rebind.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at xe_exec_balancer@once-parallel-rebind.html * igt at xe_exec_basic@many-userptr-invalidate-race: - shard-bmg: [SKIP][169] ([Intel XE#1130]) -> [PASS][170] +1 other test pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_exec_basic@many-userptr-invalidate-race.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at xe_exec_basic@many-userptr-invalidate-race.html * igt at xe_exec_compute_mode@many-userptr-rebind: - shard-dg2-set2: [FAIL][171] -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_exec_compute_mode@many-userptr-rebind.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at xe_exec_compute_mode@many-userptr-rebind.html * igt at xe_live_ktest@xe_bo: - shard-dg2-set2: [SKIP][173] ([Intel XE#2229] / [Intel XE#455]) -> [PASS][174] +1 other test pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_live_ktest@xe_bo.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-dg2-set2: [SKIP][175] ([Intel XE#2229]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_module_load@load: - shard-bmg: ([PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [SKIP][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199]) ([Intel XE#2457]) -> ([PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-5/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-5/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-5/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-5/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at xe_module_load@load.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][209] ([Intel XE#2423] / [i915#2575]) -> [SKIP][210] ([Intel XE#623]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg2-set2: [SKIP][211] ([Intel XE#316]) -> [SKIP][212] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][213] ([Intel XE#316]) -> [SKIP][214] ([Intel XE#2136]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][215] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][216] ([Intel XE#316]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-dg2-set2: [SKIP][217] ([Intel XE#2136]) -> [SKIP][218] ([Intel XE#316]) +3 other tests skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@linear-8bpp-rotate-270.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-dg2-set2: [SKIP][219] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][220] ([Intel XE#619]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@y-tiled-addfb.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][221] ([Intel XE#607]) -> [SKIP][222] ([Intel XE#2136] / [Intel XE#2351]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/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][223] ([Intel XE#610]) -> [SKIP][224] ([Intel XE#2136]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/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-0-hflip: - shard-dg2-set2: [SKIP][225] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][226] ([Intel XE#1124]) +7 other tests skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][227] ([Intel XE#1124]) -> [SKIP][228] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][229] ([Intel XE#2136]) -> [SKIP][230] ([Intel XE#1124]) +6 other tests skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-434/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][231] ([Intel XE#2136]) -> [SKIP][232] ([Intel XE#607]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/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-dg2-set2: [SKIP][233] ([Intel XE#1124]) -> [SKIP][234] ([Intel XE#2136]) +8 other tests skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/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-2560x1440p: - shard-dg2-set2: [SKIP][235] ([Intel XE#2423] / [i915#2575]) -> [SKIP][236] ([Intel XE#367]) +6 other tests skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: [SKIP][237] ([Intel XE#2191]) -> [SKIP][238] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][239] ([Intel XE#367]) -> [SKIP][240] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][241] ([Intel XE#2907]) -> [SKIP][242] ([Intel XE#2136]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][243] ([Intel XE#2136]) -> [SKIP][244] ([Intel XE#2907]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][245] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][246] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][247] ([Intel XE#2136]) -> [SKIP][248] ([Intel XE#3442]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][249] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][250] ([Intel XE#2136]) +17 other tests skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][251] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][252] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][253] ([Intel XE#2136]) -> [SKIP][254] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][255] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][256] ([Intel XE#2887]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-3/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][257] ([Intel XE#314]) -> [SKIP][258] ([Intel XE#2136] / [Intel XE#2351]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_cdclk@mode-transition-all-outputs.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-75: - shard-dg2-set2: [SKIP][259] ([Intel XE#306]) -> [SKIP][260] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_chamelium_color@ctm-0-75.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_chamelium_color@ctm-0-75.html * igt at kms_chamelium_color@degamma: - shard-dg2-set2: [SKIP][261] ([Intel XE#2423] / [i915#2575]) -> [SKIP][262] ([Intel XE#306]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_chamelium_color@degamma.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_frames@vga-frame-dump: - shard-dg2-set2: [SKIP][263] ([Intel XE#2423] / [i915#2575]) -> [SKIP][264] ([Intel XE#373]) +13 other tests skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_chamelium_frames@vga-frame-dump.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-434/igt at kms_chamelium_frames@vga-frame-dump.html * igt at kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-dg2-set2: [SKIP][265] ([Intel XE#373]) -> [SKIP][266] ([Intel XE#2423] / [i915#2575]) +13 other tests skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt at kms_content_protection@atomic-dpms: - shard-dg2-set2: [SKIP][267] ([Intel XE#2423] / [i915#2575]) -> [FAIL][268] ([Intel XE#1178]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_content_protection@atomic-dpms.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: [SKIP][269] ([Intel XE#307]) -> [SKIP][270] ([Intel XE#2423] / [i915#2575]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_content_protection@dp-mst-lic-type-1.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@lic-type-0: - shard-dg2-set2: [INCOMPLETE][271] ([Intel XE#2715]) -> [SKIP][272] ([Intel XE#2423] / [i915#2575]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_content_protection@lic-type-0.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@uevent: - shard-dg2-set2: [FAIL][273] ([Intel XE#1188]) -> [SKIP][274] ([Intel XE#2423] / [i915#2575]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_content_protection@uevent.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][275] ([Intel XE#2423] / [i915#2575]) -> [SKIP][276] ([Intel XE#308]) +4 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_crc@cursor-offscreen-512x512.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][277] ([Intel XE#308]) -> [SKIP][278] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_cursor_crc@cursor-onscreen-512x170.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: [SKIP][279] ([Intel XE#323]) -> [SKIP][280] ([Intel XE#2423] / [i915#2575]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/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-dg2-set2: [SKIP][281] ([Intel XE#2423] / [i915#2575]) -> [SKIP][282] ([Intel XE#323]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dsc@dsc-basic: - shard-dg2-set2: [SKIP][283] ([Intel XE#455]) -> [SKIP][284] ([Intel XE#2351]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_dsc@dsc-basic.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_dsc@dsc-basic.html * igt at kms_feature_discovery@dp-mst: - shard-dg2-set2: [SKIP][285] ([Intel XE#2423] / [i915#2575]) -> [SKIP][286] ([Intel XE#1137]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_feature_discovery@dp-mst.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][287] ([Intel XE#1135]) -> [SKIP][288] ([Intel XE#2423] / [i915#2575]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_feature_discovery@psr1.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [SKIP][289] ([Intel XE#2423] / [i915#2575]) -> [FAIL][290] ([Intel XE#301]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [SKIP][291] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][292] ([Intel XE#2049] / [Intel XE#2597]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip@flip-vs-suspend.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-434/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible at b-dp2: - shard-bmg: [INCOMPLETE][293] ([Intel XE#2597]) -> [FAIL][294] ([Intel XE#3664]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_flip@flip-vs-suspend-interruptible at b-dp2.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_flip@flip-vs-suspend-interruptible at b-dp2.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][295] ([Intel XE#2136]) -> [SKIP][296] ([Intel XE#455]) +5 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][297] ([Intel XE#455]) -> [SKIP][298] ([Intel XE#2136]) +6 other tests skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][299] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][300] ([Intel XE#455]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/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-ytile-downscaling: - shard-dg2-set2: [SKIP][301] ([Intel XE#455]) -> [SKIP][302] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][303] ([Intel XE#2136]) -> [SKIP][304] ([Intel XE#651]) +29 other tests skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: [SKIP][305] ([Intel XE#651]) -> [SKIP][306] ([Intel XE#2136] / [Intel XE#2351]) +14 other tests skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: [SKIP][307] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][308] ([Intel XE#2311]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][309] ([Intel XE#651]) -> [SKIP][310] ([Intel XE#2136]) +33 other tests skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][311] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][312] ([Intel XE#651]) +10 other tests skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][313] ([Intel XE#653]) -> [SKIP][314] ([Intel XE#2136]) +32 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2-set2: [SKIP][315] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][316] ([Intel XE#653]) +10 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][317] ([Intel XE#653]) -> [SKIP][318] ([Intel XE#2136] / [Intel XE#2351]) +12 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][319] ([Intel XE#2136]) -> [SKIP][320] ([Intel XE#653]) +30 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-slowdraw.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_histogram@global-basic: - shard-dg2-set2: [SKIP][321] ([Intel XE#2423] / [i915#2575]) -> [SKIP][322] ([Intel XE#455]) +9 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_histogram@global-basic.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][323] ([Intel XE#2136]) -> [SKIP][324] ([Intel XE#346]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_joiner@basic-big-joiner.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_joiner@basic-big-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][325] ([Intel XE#2423] / [i915#2575]) -> [SKIP][326] ([Intel XE#356]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_cursor@primary: - shard-dg2-set2: [SKIP][327] ([Intel XE#2423] / [i915#2575]) -> [FAIL][328] ([Intel XE#616]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_plane_cursor@primary.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at kms_plane_cursor@primary.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: [SKIP][329] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][330] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2-set2: [SKIP][331] ([Intel XE#2423] / [i915#2575]) -> [SKIP][332] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-434/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_pm_backlight@bad-brightness: - shard-dg2-set2: [SKIP][333] ([Intel XE#870]) -> [SKIP][334] ([Intel XE#2136]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_pm_backlight@bad-brightness.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: [SKIP][335] ([Intel XE#1122]) -> [SKIP][336] ([Intel XE#2136] / [Intel XE#2351]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_pm_dc@dc3co-vpb-simulation.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: [SKIP][337] ([Intel XE#908]) -> [SKIP][338] ([Intel XE#2136] / [Intel XE#2351]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_pm_dc@dc6-dpms.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][339] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][340] ([Intel XE#1129]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_dc@dc6-psr.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at kms_pm_dc@dc6-psr.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][341] ([Intel XE#1489]) -> [SKIP][342] ([Intel XE#2136]) +13 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2-set2: [SKIP][343] ([Intel XE#2136]) -> [SKIP][344] ([Intel XE#1489]) +9 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2-set2: [SKIP][345] ([Intel XE#2136]) -> [SKIP][346] ([Intel XE#1122]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr2_su@frontbuffer-xrgb8888.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][347] ([Intel XE#1122]) -> [SKIP][348] ([Intel XE#2136]) +2 other tests skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_psr2_su@page_flip-nv12.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-pr-cursor-plane-move: - shard-dg2-set2: [SKIP][349] ([Intel XE#2136]) -> [SKIP][350] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr@fbc-pr-cursor-plane-move.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at kms_psr@fbc-pr-cursor-plane-move.html * igt at kms_psr@fbc-pr-no-drrs: - shard-dg2-set2: [SKIP][351] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][352] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr@fbc-pr-no-drrs.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: [SKIP][353] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][354] ([Intel XE#2136]) +13 other tests skip [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_psr@fbc-psr-sprite-render.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_psr@fbc-psr-sprite-render.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][355] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][356] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_psr@psr-dpms.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_psr@psr-dpms.html * igt at kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][357] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][358] ([Intel XE#2351]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_psr@psr-sprite-plane-onoff.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][359] ([Intel XE#2136]) -> [SKIP][360] ([Intel XE#2939]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-rotation-270: - shard-dg2-set2: [SKIP][361] ([Intel XE#2423] / [i915#2575]) -> [SKIP][362] ([Intel XE#3414]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_rotation_crc@primary-rotation-270.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][363] ([Intel XE#3414]) -> [SKIP][364] ([Intel XE#2423] / [i915#2575]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/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][365] ([Intel XE#2423] / [i915#2575]) -> [FAIL][366] ([Intel XE#1729]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@cmrr: - shard-dg2-set2: [SKIP][367] ([Intel XE#2168]) -> [SKIP][368] ([Intel XE#2423] / [i915#2575]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_vrr@cmrr.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_vrr@cmrr.html * igt at kms_vrr@flipline: - shard-dg2-set2: [SKIP][369] ([Intel XE#455]) -> [SKIP][370] ([Intel XE#2423] / [i915#2575]) +15 other tests skip [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_vrr@flipline.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_vrr@flipline.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: [SKIP][371] ([Intel XE#2423] / [i915#2575]) -> [SKIP][372] ([Intel XE#756]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_writeback@writeback-check-output-xrgb2101010.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: [SKIP][373] ([Intel XE#756]) -> [SKIP][374] ([Intel XE#2423] / [i915#2575]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_writeback@writeback-fb-id-xrgb2101010.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][375] ([Intel XE#1130]) -> [SKIP][376] ([Intel XE#1280] / [Intel XE#455]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_compute_preempt@compute-threadgroup-preempt.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-434/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: [SKIP][377] ([Intel XE#1123]) -> [SKIP][378] ([Intel XE#1130]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_copy_basic@mem-copy-linear-0xfffe.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at xe_copy_basic@mem-copy-linear-0xfffe.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][379] ([Intel XE#1126]) -> [SKIP][380] ([Intel XE#1130]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0xfd.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/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][381] ([Intel XE#1130]) -> [SKIP][382] ([Intel XE#3889]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-bmg: [SKIP][383] ([Intel XE#1130]) -> [SKIP][384] ([Intel XE#3889]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@basic-breakpoint: - shard-dg2-set2: [SKIP][385] ([Intel XE#2905]) -> [SKIP][386] ([Intel XE#1130]) +23 other tests skip [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_eudebug_online@basic-breakpoint.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at xe_eudebug_online@basic-breakpoint.html * igt at xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [FAIL][387] ([Intel XE#1600]) -> [SKIP][388] ([Intel XE#1130]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_evict@evict-beng-large-multi-vm-cm.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at xe_evict@evict-beng-large-multi-vm-cm.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [SKIP][389] ([Intel XE#1130]) -> [TIMEOUT][390] ([Intel XE#1473]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_evict@evict-beng-mixed-many-threads-large.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/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][391] ([Intel XE#1473]) -> [FAIL][392] ([Intel XE#1000]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-bmg-7/igt at xe_evict@evict-beng-threads-large.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-bmg-7/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: [SKIP][393] ([Intel XE#1130]) -> [FAIL][394] ([Intel XE#1600]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_evict@evict-large-multi-vm-cm.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][395] ([Intel XE#1473]) -> [SKIP][396] ([Intel XE#1130]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_evict@evict-mixed-many-threads-large.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_exec_fault_mode@once-basic: - shard-dg2-set2: [SKIP][397] ([Intel XE#1130]) -> [SKIP][398] ([Intel XE#288]) +28 other tests skip [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_fault_mode@once-basic.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-434/igt at xe_exec_fault_mode@once-basic.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: [SKIP][399] ([Intel XE#288]) -> [SKIP][400] ([Intel XE#1130]) +39 other tests skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-dg2-set2: [SKIP][401] ([Intel XE#1130]) -> [SKIP][402] ([Intel XE#2360]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: [SKIP][403] ([Intel XE#1130]) -> [SKIP][404] ([Intel XE#2905]) +17 other tests skip [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_sip_eudebug@breakpoint-writesip.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-434/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][405] ([Intel XE#255]) -> [SKIP][406] ([Intel XE#1130]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_huc_copy@huc_copy.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at xe_huc_copy@huc_copy.html * igt at xe_mmap@small-bar: - shard-dg2-set2: [SKIP][407] ([Intel XE#512]) -> [SKIP][408] ([Intel XE#1130]) [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_mmap@small-bar.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at xe_mmap@small-bar.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: [SKIP][409] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][410] ([Intel XE#1130]) +10 other tests skip [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_oa@closed-fd-and-unmapped-access.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_oa@syncs-ufence-wait: - shard-dg2-set2: [SKIP][411] ([Intel XE#1130]) -> [SKIP][412] ([Intel XE#2541] / [Intel XE#3573]) +7 other tests skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_oa@syncs-ufence-wait.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at xe_oa@syncs-ufence-wait.html * igt at xe_pat@pat-index-xehpc: - shard-dg2-set2: [SKIP][413] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][414] ([Intel XE#1130]) [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_pat@pat-index-xehpc.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: [SKIP][415] ([Intel XE#1130]) -> [SKIP][416] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_pm@d3cold-mmap-vram.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-435/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][417] ([Intel XE#1130]) -> [SKIP][418] ([Intel XE#2284]) [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_pm@d3cold-mocs.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: [SKIP][419] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][420] ([Intel XE#1130]) +1 other test skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_pm@s2idle-d3cold-basic-exec.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: [SKIP][421] ([Intel XE#579]) -> [SKIP][422] ([Intel XE#1130]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_pm@vram-d3cold-threshold.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: [SKIP][423] ([Intel XE#944]) -> [SKIP][424] ([Intel XE#1130]) +6 other tests skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_query@multigpu-query-cs-cycles.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-466/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][425] ([Intel XE#1130]) -> [SKIP][426] ([Intel XE#944]) +4 other tests skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_query@multigpu-query-engines.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at xe_query@multigpu-query-engines.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][427] ([Intel XE#1130]) -> [SKIP][428] ([Intel XE#3342]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_sriov_flr@flr-vf1-clear.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/shard-dg2-436/igt at xe_sriov_flr@flr-vf1-clear.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#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [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#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [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#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [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#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [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#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#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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [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#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [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#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [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#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [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#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [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#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#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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [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#3902]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3902 [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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [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#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8179 -> IGTPW_12397 * Linux: xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571 -> xe-2451-dbd476153d41352ad6022088be16301051b9bce7 IGTPW_12397: d4aedc2fc073d7761e5bff52b7486f9184fb49ba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571: 89042e0bb417f4d67280e1d7fa9bbcca51734571 xe-2451-dbd476153d41352ad6022088be16301051b9bce7: dbd476153d41352ad6022088be16301051b9bce7 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12397/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From stuart.summers at intel.com Thu Jan 9 15:39:47 2025 From: stuart.summers at intel.com (Summers, Stuart) Date: Thu, 9 Jan 2025 15:39:47 +0000 Subject: [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes In-Reply-To: References: <20250108225424.95051-1-stuart.summers@intel.com> Message-ID: <63cc246d2c4e3929dedce3058cd93d9e17ba1a83.camel@intel.com> On Wed, 2025-01-08 at 23:38 +0000, Cavitt, Jonathan wrote: > -----Original Message----- > From: igt-dev On Behalf Of > Stuart Summers > Sent: Wednesday, January 8, 2025 2:54 PM > Cc: igt-dev at lists.freedesktop.org; Summers, Stuart > > Subject: [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind > after the stress test completes > > > > The test is submitting workloads in a tight loop and then > > destroying the exec queue for each of these. There is a > > potential that the GuC IDs could get used up during these > > submissions and before a GT reset goes through. If that > > happens, the subsequent submissions will essentially be > > "lost" in that they aren't submitted to GuC and just wait > > for a submission timeout to happen, at which point we do > > a reset_async in the driver. What seems to be happening > > however is these workloads are lingering beyond the > > completion of the xe_exec_reset test. Then when the > > reset_async eventually goes through, the submissions > > from a next test can also hang (or possibly because > > they too ran into the guc_id exhaustion case). > > > > Add an explicit vm_unbind before destroying the VM > > to give time for those submissions to complete > > before the test ends. > > > > https://gitlab.freedesktop.org/drm/xe/kernel/issues/4015 > > I think this needs to be: > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4015 Ok I'll update. > But otherwise: > Reviewed-by: Jonathan Cavitt Thanks! > Well, assuming this works, at least.? I might be reading a bit too > far into the > commit message and kernel issue comment, but it seems you aren't too > certain this will work? Yeah before merging I need to make sure this fully fixes the issue :) This particular test was already passing so just need to review the logs and make sure the cleanup is consistently happening. I'll report back here with the details... Thanks, Stuart > -Jonathan Cavitt > > > > > Signed-off-by: Stuart Summers > > --- > > ?tests/intel/xe_exec_reset.c | 2 ++ > > ?1 file changed, 2 insertions(+) > > > > diff --git a/tests/intel/xe_exec_reset.c > > b/tests/intel/xe_exec_reset.c > > index a3eaf8bbf..ca5566d11 100644 > > --- a/tests/intel/xe_exec_reset.c > > +++ b/tests/intel/xe_exec_reset.c > > @@ -645,6 +645,8 @@ static void submit_jobs(struct gt_thread_data > > *t) > > ????????????????xe_exec_queue_destroy(fd, exec.exec_queue_id); > > ????????} > > ? > > +???????xe_vm_unbind_sync(fd, vm, 0, addr, bo_size); > > + > > ????????munmap(data, bo_size); > > ????????gem_close(fd, bo); > > ????????xe_vm_destroy(fd, vm); > > -- > > 2.34.1 > > > > From andrzej.hajda at intel.com Thu Jan 9 16:26:30 2025 From: andrzej.hajda at intel.com (Andrzej Hajda) Date: Thu, 09 Jan 2025 17:26:30 +0100 Subject: [PATCH v2] lib/meson.build: allow build IGT with link time optimization Message-ID: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> Some distributions use -flto gcc flag to build IGT. With this flag enabled variables declared with section attribute do not appear in correct section in .o files. Since iga64 assembly helper script relies on it we need to use -ffat-lto-objects in case of files containing iga64 assembly. According to documentation this option is effective only in case lto is in use, so it should not affect non-lto builds. Closes: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/165 Signed-off-by: Andrzej Hajda --- This patch 'fixes' building IGT with link-time-optimization. I am not sure it is or should be supported by IGT, but build scripts can be modified to allow it for testing. Grepping internet shows at least Gentoo and Arch Linux builds IGT with LTO, so I guess it is working for them. --- Changes in v2: - added Closes tag - Link to v1: https://lore.kernel.org/r/20241216-fix-lto-v1-1-1280b17dc70f at intel.com --- lib/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/meson.build b/lib/meson.build index 1704ed1e1c17..9fffdd3c6218 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -240,7 +240,7 @@ foreach f: lib_sources '-DIGT_DATADIR="@0@"'.format(join_paths(prefix, datadir)), '-DIGT_SRCDIR="@0@"'.format(srcdir), '-DIGT_LOG_DOMAIN="@0@"'.format(f.split('.')[0]), - ]) + ] + (iga64_assembly_sources.contains(f) ? [ '-ffat-lto-objects' ] : [])) lib_intermediates += lib if iga64_assembly_sources.contains(f) --- base-commit: ee7a3ac616f55f6ed1b959ff951237099bda86d8 change-id: 20241216-fix-lto-8d3bc1488c6a Best regards, -- Andrzej Hajda From arun.r.murthy at intel.com Thu Jan 9 16:45:18 2025 From: arun.r.murthy at intel.com (Murthy, Arun R) Date: Thu, 9 Jan 2025 16:45:18 +0000 Subject: [PATCH i-g-t] Revert tests/kms_histogram: Fix build breakage In-Reply-To: <20250108205251.1645069-1-lucas.demarchi@intel.com> References: <20250108205251.1645069-1-lucas.demarchi@intel.com> Message-ID: > -----Original Message----- > From: De Marchi, Lucas > Sent: Thursday, January 9, 2025 2:23 AM > To: igt-dev at lists.freedesktop.org > Cc: De Marchi, Lucas ; Konieczny, Kamil > ; Thasleem, Mohammed > ; Murthy, Arun R > ; Garg, Nemesa > Subject: [PATCH i-g-t] Revert tests/kms_histogram: Fix build breakage > > This reverts commits > 8911eff2c6c0 ("tests/kms_histogram: Add check for libghe version") > 6e93c2e807b3 ("tests/kms_histogram: Added IGT support to validate global > histogram") > > Ths addition of libghe version check didn't really work as the released libghe > exposes a 1.0.0 version: > > Run-time dependency libghe found: YES 1.0 > > Let's revert this and come back to that when there's a released libghe that > works and doesn't keep changing the API. > > Cc: Kamil Konieczny > Cc: Mohammed Thasleem > Cc: Arun R Murthy > Cc: Nemesa Garg > Signed-off-by: Lucas De Marchi > --- Reviewed-by: Arun R Murthy Thanks and Regards, Arun R Murthy -------------------- From santhosh.reddy.guddati at intel.com Thu Jan 9 16:59:05 2025 From: santhosh.reddy.guddati at intel.com (Reddy Guddati, Santhosh) Date: Thu, 9 Jan 2025 16:59:05 +0000 Subject: [PATCH i-g-t v2] tests/kms_plane_scaling: Add logs to skips In-Reply-To: <20250109083858.39089-1-pranay.samala@intel.com> References: <20250109083858.39089-1-pranay.samala@intel.com> Message-ID: Hi Pranay, ________________________________ From: Samala, Pranay Sent: Thursday, January 9, 2025 2:08 PM To: igt-dev at lists.freedesktop.org Cc: B S, Karthik ; Reddy Guddati, Santhosh ; Lattannavar, Sameer ; Samala, Pranay Subject: [PATCH i-g-t v2] tests/kms_plane_scaling: Add logs to skips Having some logs for test failures & skips would make debugging much easier. v2: Add output/pipe name for detailed message (Santhosh) Signed-off-by: Pranay Samala LGTM Reviewed-by: Santhosh Reddy Guddati --- tests/kms_plane_scaling.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c index c8c9aee31..43f578d55 100644 --- a/tests/kms_plane_scaling.c +++ b/tests/kms_plane_scaling.c @@ -1577,6 +1577,12 @@ 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 on output " \ + "%s pipe %s\n", + igt_output_name(output), + kmstest_pipe_name(pipe)); } continue; } -- 2.34.1 -------------- next part -------------- An HTML attachment was scrubbed... URL: From pranay.samala at intel.com Thu Jan 9 17:07:29 2025 From: pranay.samala at intel.com (Pranay Samala) Date: Thu, 9 Jan 2025 22:37:29 +0530 Subject: [PATCH i-g-t] tests/intel/kms_dp_linktrain_fallback: Reduce debug loglevel dynamically Message-ID: <20250109170729.47646-1-pranay.samala@intel.com> This test is getting incomplete on CI environment because its logging to many logs. So dynamically reducing the debug log level to 10. Signed-off-by: Pranay Samala --- tests/intel/kms_dp_linktrain_fallback.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c index a05e2015f..415005774 100644 --- a/tests/intel/kms_dp_linktrain_fallback.c +++ b/tests/intel/kms_dp_linktrain_fallback.c @@ -14,7 +14,7 @@ */ #include - +#include "igt_sysfs.h" #include "igt.h" /** @@ -391,6 +391,7 @@ igt_main data_t data = {}; igt_fixture { + int dir, current_log_level; data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); kmstest_set_vt_graphics_mode(); @@ -398,6 +399,14 @@ igt_main igt_display_require_output(&data.display); for_each_pipe(&data.display, data.pipe) data.n_pipes++; + dir = igt_sysfs_drm_module_params_open(); + if (dir >= 0) { + current_log_level = igt_drm_debug_level_get(dir); + close(dir); + + if (current_log_level > 10) + igt_drm_debug_level_update(10); + } } igt_subtest("dp-fallback") { -- 2.34.1 From lucas.demarchi at intel.com Thu Jan 9 17:02:30 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Thu, 9 Jan 2025 11:02:30 -0600 Subject: [PATCH v1] tests/xe_debugfs: Improve test_gt subtest In-Reply-To: <20250109105721.914096-1-pravalika.gurram@intel.com> References: <20250109105721.914096-1-pravalika.gurram@intel.com> Message-ID: On Thu, Jan 09, 2025 at 04:27:21PM +0530, Pravalika Gurram wrote: >Read the debugfs entries in the loop to improve >the readability. > >Signed-off-by: Pravalika Gurram >--- > tests/intel/xe_debugfs.c | 84 +++++++--------------------------------- > 1 file changed, 13 insertions(+), 71 deletions(-) > >diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c >index bcbb5036a..3d8c17921 100644 >--- a/tests/intel/xe_debugfs.c >+++ b/tests/intel/xe_debugfs.c >@@ -180,77 +180,19 @@ test_gt(int fd, int gt_id) > // "guc_ct_selftest" > }; > >- sprintf(name, "gt%d/hw_engines", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/sa_info", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/steering", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/topology", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/pat", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/mocs", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/ggtt", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/register-save-restore", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/workarounds", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/default_lrc_rcs", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/default_lrc_ccs", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/default_lrc_bcs", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/default_lrc_vecs", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/default_lrc_vcs", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/hwconfig", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/uc/guc_info", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/uc/huc_info", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >- >- sprintf(name, "gt%d/uc/guc_log", gt_id); >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >- igt_debugfs_dump(fd, name); >+ for (int i = 0; i < ARRAY_SIZE(expected_files); i++) { >+ sprintf(name, "gt%d/%s", gt_id, expected_files[i]); >+ igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >+ if (!strstr(name, "uc")) { strstr will find any substring "uc". You could do a strcmp() instead, but I don't understand why we are doing this here. I'd just remove 'uc' from the array and update validate_entries to ignore directories. Lucas De Marchi >+ igt_debugfs_dump(fd, name); >+ } else { >+ for (int j = 0; j < ARRAY_SIZE(expected_files_uc); j++) { >+ sprintf(name, "gt%d/uc/%s", gt_id, expected_files_uc[j]); >+ igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >+ igt_debugfs_dump(fd, name); >+ } >+ } >+ } > > sprintf(name, "/gt%d", gt_id); > validate_entries(fd, name, expected_files, ARRAY_SIZE(expected_files)); >-- >2.34.1 > From kamil.konieczny at linux.intel.com Thu Jan 9 17:05:36 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Thu, 9 Jan 2025 18:05:36 +0100 Subject: [PATCH v2] lib/meson.build: allow build IGT with link time optimization In-Reply-To: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> References: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> Message-ID: <20250109170536.ze5mia3thuop4ios@kamilkon-desk.igk.intel.com> Hi Andrzej, On 2025-01-09 at 17:26:30 +0100, Andrzej Hajda wrote: > Some distributions use -flto gcc flag to build IGT. With this flag > enabled variables declared with section attribute do not appear in > correct section in .o files. Since iga64 assembly helper script relies > on it we need to use -ffat-lto-objects in case of files containing > iga64 assembly. According to documentation this option is effective > only in case lto is in use, so it should not affect non-lto builds. > > Closes: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/165 > Signed-off-by: Andrzej Hajda Reviewed-by: Kamil Konieczny > --- > This patch 'fixes' building IGT with link-time-optimization. I am not > sure it is or should be supported by IGT, but build scripts can be > modified to allow it for testing. > Grepping internet shows at least Gentoo and Arch Linux builds IGT with > LTO, so I guess it is working for them. > --- > Changes in v2: > - added Closes tag > - Link to v1: https://lore.kernel.org/r/20241216-fix-lto-v1-1-1280b17dc70f at intel.com > --- > lib/meson.build | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/meson.build b/lib/meson.build > index 1704ed1e1c17..9fffdd3c6218 100644 > --- a/lib/meson.build > +++ b/lib/meson.build > @@ -240,7 +240,7 @@ foreach f: lib_sources > '-DIGT_DATADIR="@0@"'.format(join_paths(prefix, datadir)), > '-DIGT_SRCDIR="@0@"'.format(srcdir), > '-DIGT_LOG_DOMAIN="@0@"'.format(f.split('.')[0]), > - ]) > + ] + (iga64_assembly_sources.contains(f) ? [ '-ffat-lto-objects' ] : [])) > > lib_intermediates += lib > if iga64_assembly_sources.contains(f) > > --- > base-commit: ee7a3ac616f55f6ed1b959ff951237099bda86d8 > change-id: 20241216-fix-lto-8d3bc1488c6a > > Best regards, > -- > Andrzej Hajda > From lucas.demarchi at intel.com Thu Jan 9 17:29:49 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Thu, 9 Jan 2025 11:29:49 -0600 Subject: [PATCH v2] lib/meson.build: allow build IGT with link time optimization In-Reply-To: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> References: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> Message-ID: On Thu, Jan 09, 2025 at 05:26:30PM +0100, Andrzej Hajda wrote: >Some distributions use -flto gcc flag to build IGT. With this flag >enabled variables declared with section attribute do not appear in >correct section in .o files. Since iga64 assembly helper script relies >on it we need to use -ffat-lto-objects in case of files containing >iga64 assembly. According to documentation this option is effective >only in case lto is in use, so it should not affect non-lto builds. > >Closes: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/165 >Signed-off-by: Andrzej Hajda is this about static const char t[] __attribute__ ((section(".iga64_assembly"), used)) =\ ? it's missing a "retain" attribute to be able to link with LLD. I fixed a similar bug in kmod recently, but that was due to linking with LLD instead of using or not lto. See https://github.com/kmod-project/kmod/pull/274 Are you sure this is related to LTO and not the different linker? $ grep -r -e '\.iga64_assembly' build-lto-clang/ grep: build-lto-clang/lib/libigt-gpgpu_shader_c.a.p/gpgpu_shader.c.o: binary file matches grep: build-lto-clang/lib/libigt.so.0: binary file matches grep: build-lto-clang/lib/libigt-gpgpu_fill_c.a.p/gpgpu_fill.c.o: binary file matches $ readelf -t build-lto-clang/lib/libigt.so.0 | grep -A3 -e .iga64_assembly [10] .iga64_assembly PROGBITS 00000000000657d0 00000000000657d0 0 0000000000002c65 0000000000000000 0 16 [0000000000000002]: ALLOC So it has a section with that name of size 0x2c65 Lucas De Marchi >--- >This patch 'fixes' building IGT with link-time-optimization. I am not >sure it is or should be supported by IGT, but build scripts can be >modified to allow it for testing. >Grepping internet shows at least Gentoo and Arch Linux builds IGT with >LTO, so I guess it is working for them. >--- >Changes in v2: > - added Closes tag >- Link to v1: https://lore.kernel.org/r/20241216-fix-lto-v1-1-1280b17dc70f at intel.com >--- > lib/meson.build | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/lib/meson.build b/lib/meson.build >index 1704ed1e1c17..9fffdd3c6218 100644 >--- a/lib/meson.build >+++ b/lib/meson.build >@@ -240,7 +240,7 @@ foreach f: lib_sources > '-DIGT_DATADIR="@0@"'.format(join_paths(prefix, datadir)), > '-DIGT_SRCDIR="@0@"'.format(srcdir), > '-DIGT_LOG_DOMAIN="@0@"'.format(f.split('.')[0]), >- ]) >+ ] + (iga64_assembly_sources.contains(f) ? [ '-ffat-lto-objects' ] : [])) > > lib_intermediates += lib > if iga64_assembly_sources.contains(f) > >--- >base-commit: ee7a3ac616f55f6ed1b959ff951237099bda86d8 >change-id: 20241216-fix-lto-8d3bc1488c6a > >Best regards, >-- >Andrzej Hajda > From patchwork at emeril.freedesktop.org Thu Jan 9 17:31:53 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 17:31:53 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_lib/meson=2Ebuild=3A_allo?= =?utf-8?q?w_build_IGT_with_link_time_optimization_=28rev2=29?= In-Reply-To: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> References: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> Message-ID: <173644391388.1678466.5646807831159464565@b555e5b46a47> == Series Details == Series: lib/meson.build: allow build IGT with link time optimization (rev2) URL : https://patchwork.freedesktop.org/series/142655/ State : success == Summary == CI Bug Log - changes from IGT_8184 -> IGTPW_12419 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12419 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt at i915_selftest@live: - bat-mtlp-6: [DMESG-FAIL][1] ([i915#13393]) -> [PASS][2] +1 other test pass [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8184/bat-mtlp-6/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/bat-mtlp-6/igt at i915_selftest@live.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#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8184 -> IGTPW_12419 * Linux: CI_DRM_15930 -> CI_DRM_15931 CI-20190529: 20190529 CI_DRM_15930: c9da975358cd0763449f08b7063ee935eace4f8c @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15931: 424f495e9572bf87a42e3be0aa02ac4777541033 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12419: 0f0904e71a31e60759ac032b5c424588e435a746 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8184: ee7a3ac616f55f6ed1b959ff951237099bda86d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From pravalika.gurram at intel.com Thu Jan 9 17:42:37 2025 From: pravalika.gurram at intel.com (Gurram, Pravalika) Date: Thu, 9 Jan 2025 17:42:37 +0000 Subject: [PATCH v1] tests/xe_debugfs: Improve test_gt subtest In-Reply-To: References: <20250109105721.914096-1-pravalika.gurram@intel.com> Message-ID: > -----Original Message----- > From: De Marchi, Lucas > Sent: Thursday, January 9, 2025 10:33 PM > To: Gurram, Pravalika > Cc: igt-dev at lists.freedesktop.org > Subject: Re: [PATCH v1] tests/xe_debugfs: Improve test_gt subtest > > On Thu, Jan 09, 2025 at 04:27:21PM +0530, Pravalika Gurram wrote: > >Read the debugfs entries in the loop to improve the readability. > > > >Signed-off-by: Pravalika Gurram > >--- > > tests/intel/xe_debugfs.c | 84 +++++++--------------------------------- > > 1 file changed, 13 insertions(+), 71 deletions(-) > > > >diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c index > >bcbb5036a..3d8c17921 100644 > >--- a/tests/intel/xe_debugfs.c > >+++ b/tests/intel/xe_debugfs.c > >@@ -180,77 +180,19 @@ test_gt(int fd, int gt_id) > > // "guc_ct_selftest" > > }; > > > >- sprintf(name, "gt%d/hw_engines", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/sa_info", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/steering", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/topology", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/pat", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/mocs", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/ggtt", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/register-save-restore", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/workarounds", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/default_lrc_rcs", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/default_lrc_ccs", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/default_lrc_bcs", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/default_lrc_vecs", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/default_lrc_vcs", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/hwconfig", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/uc/guc_info", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/uc/huc_info", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >- > >- sprintf(name, "gt%d/uc/guc_log", gt_id); > >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >- igt_debugfs_dump(fd, name); > >+ for (int i = 0; i < ARRAY_SIZE(expected_files); i++) { > >+ sprintf(name, "gt%d/%s", gt_id, expected_files[i]); > >+ igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > >+ if (!strstr(name, "uc")) { > > strstr will find any substring "uc". You could do a strcmp() instead, but I don't > understand why we are doing this here. > > I'd just remove 'uc' from the array and update validate_entries to ignore > directories. > > Lucas De Marchi > Strcmp will not work here because sprintf will save name = "gt0/uc" If we do strcmp(name,"gt0/uc") gt cannot be fixed 0 always correct it can change that's why I have added strstr I did not understand which directories can be ignored you meant say "uc" we don't need to dump "uc/*" data? --Pravalika > >+ igt_debugfs_dump(fd, name); > >+ } else { > >+ for (int j = 0; j < ARRAY_SIZE(expected_files_uc); j++) > { > >+ sprintf(name, "gt%d/uc/%s", gt_id, > expected_files_uc[j]); > >+ igt_assert(igt_debugfs_exists(fd, name, > O_RDONLY)); > >+ igt_debugfs_dump(fd, name); > >+ } > >+ } > >+ } > > > > sprintf(name, "/gt%d", gt_id); > > validate_entries(fd, name, expected_files, > >ARRAY_SIZE(expected_files)); > >-- > >2.34.1 > > From patchwork at emeril.freedesktop.org Thu Jan 9 17:55:37 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 17:55:37 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EFull=3A_success_for_series_starting_with_=5Bi-?= =?utf-8?q?g-t=2Cv2=2C1/8=5D_lib/xe/xe=5Fgt=3A_Fix_header_guards_and_boilerp?= =?utf-8?q?late?= In-Reply-To: <20250107202615.1306306-1-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> Message-ID: <173644533743.1695038.5841314135090467919@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v2,1/8] lib/xe/xe_gt: Fix header guards and boilerplate URL : https://patchwork.freedesktop.org/series/143204/ State : success == Summary == CI Bug Log - changes from XEIGT_8179_full -> XEIGTPW_12398_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12398_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@unbind-rebind: - shard-dg2-set2: [PASS][1] -> [SKIP][2] ([Intel XE#1885]) +2 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at core_hotunplug@unbind-rebind.html * igt at core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][3] -> [SKIP][4] ([Intel XE#3453]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at core_setmaster@master-drop-set-shared-fd.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at core_setmaster@master-drop-set-shared-fd.html * igt at core_setmaster@master-drop-set-user: - shard-dg2-set2: [PASS][5] -> [FAIL][6] ([Intel XE#3249]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at core_setmaster@master-drop-set-user.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at core_setmaster@master-drop-set-user.html * igt at fbdev@info: - shard-dg2-set2: [PASS][7] -> [SKIP][8] ([Intel XE#2134]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at fbdev@info.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at fbdev@info.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1125]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-4/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1466]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#3768]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-4/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [PASS][12] -> [SKIP][13] ([Intel XE#2423] / [i915#2575]) +147 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-6/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1467]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-5/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +7 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#2191]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-4/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#367]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-6/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1512]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-5/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +9 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-4/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2669]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-5/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#3433]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-5/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-edp-1.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#3432]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-6/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs at pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +83 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs at pipe-d-hdmi-a-6.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][26] ([Intel XE#1727] / [Intel XE#3113]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-6.html * igt at kms_chamelium_color@degamma: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#306]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_frames@dp-crc-multiple: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#373]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_chamelium_frames@dp-crc-multiple.html * igt at kms_chamelium_hpd@dp-hpd: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#373]) +7 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#3278]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-6/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][31] ([Intel XE#1178]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_content_protection@atomic-dpms at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2321]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-5/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-64x21: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1424]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-6/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][34] ([Intel XE#309]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/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-lnl: NOTRUN -> [SKIP][35] ([Intel XE#323]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([i915#3804]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6.html * igt at kms_dp_aux_dev: - shard-dg2-set2: [PASS][37] -> [SKIP][38] ([Intel XE#2423]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_dp_aux_dev.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_dp_aux_dev.html * igt at kms_feature_discovery@chamelium: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#701]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-6/igt at kms_feature_discovery@chamelium.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1421]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@bo-too-big-interruptible: - shard-lnl: NOTRUN -> [INCOMPLETE][41] ([Intel XE#1504]) +1 other test incomplete [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/igt at kms_flip@bo-too-big-interruptible.html * igt at kms_flip@flip-vs-expired-vblank at b-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#301] / [Intel XE#3321]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at b-dp4.html * igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][43] ([Intel XE#301]) +1 other test fail [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a6.html * igt at kms_flip@plain-flip-fb-recreate at a-edp1: - shard-lnl: [PASS][44] -> [FAIL][45] ([Intel XE#886]) +1 other test fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-1/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-5/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1401]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#455]) +5 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt at kms_frontbuffer_tracking@basic: - shard-dg2-set2: [PASS][49] -> [SKIP][50] ([Intel XE#2351]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@basic.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_frontbuffer_tracking@basic.html * igt at kms_frontbuffer_tracking@drrs-modesetfrombusy: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#651]) +10 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-5/igt at kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][52] -> [SKIP][53] ([Intel XE#2136]) +44 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [PASS][54] -> [SKIP][55] ([Intel XE#2136] / [Intel XE#2351]) +15 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#656]) +28 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1469]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#2927]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#356]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2763]) +15 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-6/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#2763]) +11 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/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-downscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [PASS][64] -> [FAIL][65] ([Intel XE#718]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-4/igt at kms_pm_dc@dc5-psr.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][66] ([Intel XE#1430]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-6/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][67] -> [SKIP][68] ([Intel XE#2446]) +5 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1439] / [Intel XE#3141]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-4/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#2893]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr@fbc-pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1406]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1127]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1435]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1499]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#756]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-5/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at xe_compute_preempt@compute-preempt-many at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#1280] / [Intel XE#455]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at xe_compute_preempt@compute-preempt-many at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1130]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug_online@resume-one: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#2905]) +7 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-5/igt at xe_eudebug_online@resume-one.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][79] -> [TIMEOUT][80] ([Intel XE#1473]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_evict@evict-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#688]) +7 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-4/igt at xe_evict@evict-threads-small-multi-vm.html * igt at xe_exec_basic@many-null-rebind: - shard-dg2-set2: [PASS][82] -> [SKIP][83] ([Intel XE#1130]) +268 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_exec_basic@many-null-rebind.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at xe_exec_basic@many-null-rebind.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1392]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-8/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt at xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1416]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-4/igt at xe_mmap@vram.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][86] ([Intel XE#1173]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-4/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: NOTRUN -> [FAIL][88] ([Intel XE#958]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-4/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-engines: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#944]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-5/igt at xe_query@multigpu-query-engines.html #### Possible fixes #### * igt at core_getversion@all-cards: - shard-dg2-set2: [FAIL][90] ([Intel XE#3440]) -> [PASS][91] +1 other test pass [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_getversion@all-cards.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at core_getversion@all-cards.html * igt at core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: [SKIP][92] ([Intel XE#1885]) -> [PASS][93] +1 other test pass [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_hotunplug@hotreplug-lateclose.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at core_hotunplug@hotreplug-lateclose.html * igt at core_setmaster@master-drop-set-root: - shard-dg2-set2: [FAIL][94] ([Intel XE#3249]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_setmaster@master-drop-set-root.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@write: - shard-dg2-set2: [SKIP][96] ([Intel XE#2134]) -> [PASS][97] +1 other test pass [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at fbdev@write.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at fbdev@write.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [FAIL][98] ([Intel XE#911]) -> [PASS][99] +3 other tests pass [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_atomic@plane-invalid-params-fence: - shard-dg2-set2: [SKIP][100] ([Intel XE#2423] / [i915#2575]) -> [PASS][101] +101 other tests pass [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_atomic@plane-invalid-params-fence.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_atomic@plane-invalid-params-fence.html * igt at kms_big_fb@4-tiled-16bpp-rotate-180: - shard-dg2-set2: [SKIP][102] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][103] +9 other tests pass [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@4-tiled-16bpp-rotate-180.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_big_fb@4-tiled-16bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][104] ([Intel XE#2136]) -> [PASS][105] +30 other tests pass [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp4: - shard-dg2-set2: [FAIL][106] ([Intel XE#301]) -> [PASS][107] +2 other tests pass [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp4.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp4.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [SKIP][108] ([Intel XE#2446]) -> [PASS][109] +5 other tests pass [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_rpm@system-suspend-modeset.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][110] ([Intel XE#899]) -> [PASS][111] +2 other tests pass [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at xe_exec_compute_mode@many-userptr-rebind: - shard-dg2-set2: [FAIL][112] -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_exec_compute_mode@many-userptr-rebind.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at xe_exec_compute_mode@many-userptr-rebind.html * igt at xe_module_load@many-reload: - shard-dg2-set2: [FAIL][114] ([Intel XE#3546]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_module_load@many-reload.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at xe_module_load@many-reload.html * igt at xe_pm@s4-basic: - shard-lnl: [ABORT][116] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-2/igt at xe_pm@s4-basic.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-4/igt at xe_pm@s4-basic.html * igt at xe_pm@s4-vm-bind-prefetch: - shard-lnl: [ABORT][118] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-2/igt at xe_pm@s4-vm-bind-prefetch.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-lnl-5/igt at xe_pm@s4-vm-bind-prefetch.html * igt at xe_query@query-uc-fw-version-huc: - shard-dg2-set2: [SKIP][120] ([Intel XE#1130]) -> [PASS][121] +198 other tests pass [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_query@query-uc-fw-version-huc.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at xe_query@query-uc-fw-version-huc.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][122] ([Intel XE#2423] / [i915#2575]) -> [SKIP][123] ([Intel XE#623]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][124] ([Intel XE#873]) -> [SKIP][125] ([Intel XE#2423] / [i915#2575]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_async_flips@invalid-async-flip.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: [SKIP][126] ([Intel XE#316]) -> [SKIP][127] ([Intel XE#2136]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][128] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][129] ([Intel XE#316]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@linear-64bpp-rotate-270: - shard-dg2-set2: [SKIP][130] ([Intel XE#316]) -> [SKIP][131] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@linear-64bpp-rotate-270.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_big_fb@linear-64bpp-rotate-270.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][132] ([Intel XE#2136]) -> [SKIP][133] ([Intel XE#316]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2-set2: [SKIP][134] ([Intel XE#1124]) -> [SKIP][135] ([Intel XE#2136]) +11 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][136] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][137] ([Intel XE#1124]) +5 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@y-tiled-64bpp-rotate-180.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at kms_big_fb@y-tiled-64bpp-rotate-180.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][138] ([Intel XE#610]) -> [SKIP][139] ([Intel XE#2136]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][140] ([Intel XE#2136]) -> [SKIP][141] ([Intel XE#1124]) +8 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][142] ([Intel XE#2136]) -> [SKIP][143] ([Intel XE#607]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2-set2: [SKIP][144] ([Intel XE#1124]) -> [SKIP][145] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: [SKIP][146] ([Intel XE#2191]) -> [SKIP][147] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][148] ([Intel XE#2423] / [i915#2575]) -> [SKIP][149] ([Intel XE#367]) +5 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: [SKIP][150] ([Intel XE#367]) -> [SKIP][151] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][152] ([Intel XE#2907]) -> [SKIP][153] ([Intel XE#2136]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][154] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][155] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][156] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][157] ([Intel XE#455] / [Intel XE#787]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][158] ([Intel XE#2136]) -> [SKIP][159] ([Intel XE#3442]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs: - shard-dg2-set2: [SKIP][160] ([Intel XE#2136]) -> [SKIP][161] ([Intel XE#455] / [Intel XE#787]) +10 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [SKIP][162] ([Intel XE#2136]) -> [INCOMPLETE][163] ([Intel XE#1727]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/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-dg2-set2: [SKIP][164] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][165] ([Intel XE#2136]) +18 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][166] ([Intel XE#314]) -> [SKIP][167] ([Intel XE#2136] / [Intel XE#2351]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_cdclk@mode-transition-all-outputs.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg2-set2: [SKIP][168] ([Intel XE#306]) -> [SKIP][169] ([Intel XE#2423] / [i915#2575]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_chamelium_color@ctm-0-50.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][170] ([Intel XE#2423] / [i915#2575]) -> [SKIP][171] ([Intel XE#306]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_chamelium_color@ctm-limited-range.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: [SKIP][172] ([Intel XE#2423] / [i915#2575]) -> [SKIP][173] ([Intel XE#373]) +10 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-dg2-set2: [SKIP][174] ([Intel XE#373]) -> [SKIP][175] ([Intel XE#2423] / [i915#2575]) +17 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt at kms_content_protection@atomic-dpms: - shard-dg2-set2: [SKIP][176] ([Intel XE#2423] / [i915#2575]) -> [FAIL][177] ([Intel XE#1178]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_content_protection@atomic-dpms.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][178] ([Intel XE#2423] / [i915#2575]) -> [SKIP][179] ([Intel XE#307]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_content_protection@dp-mst-lic-type-0.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@legacy: - shard-dg2-set2: [FAIL][180] ([Intel XE#1178]) -> [SKIP][181] ([Intel XE#2423] / [i915#2575]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_content_protection@legacy.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-dg2-set2: [INCOMPLETE][182] ([Intel XE#2715]) -> [SKIP][183] ([Intel XE#2423] / [i915#2575]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_content_protection@lic-type-0.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_content_protection@lic-type-0.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][184] ([Intel XE#2423] / [i915#2575]) -> [SKIP][185] ([Intel XE#308]) +4 other tests skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_crc@cursor-offscreen-512x512.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][186] ([Intel XE#308]) -> [SKIP][187] ([Intel XE#2423] / [i915#2575]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_cursor_crc@cursor-onscreen-512x170.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][188] ([Intel XE#2423] / [i915#2575]) -> [SKIP][189] ([Intel XE#323]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: [SKIP][190] ([Intel XE#323]) -> [SKIP][191] ([Intel XE#2423] / [i915#2575]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dsc@dsc-basic: - shard-dg2-set2: [SKIP][192] ([Intel XE#455]) -> [SKIP][193] ([Intel XE#2351]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_dsc@dsc-basic.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2-set2: [SKIP][194] ([Intel XE#2136]) -> [SKIP][195] ([Intel XE#455]) +5 other tests skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_dsc@dsc-fractional-bpp.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: [SKIP][196] ([Intel XE#455]) -> [SKIP][197] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_dsc@dsc-with-bpc-formats.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][198] ([Intel XE#2136]) -> [SKIP][199] ([Intel XE#776]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_fbcon_fbt@psr.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][200] ([Intel XE#2423] / [i915#2575]) -> [SKIP][201] ([Intel XE#701]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_feature_discovery@chamelium.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@dp-mst: - shard-dg2-set2: [SKIP][202] ([Intel XE#2423] / [i915#2575]) -> [SKIP][203] ([Intel XE#1137]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_feature_discovery@dp-mst.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][204] ([Intel XE#1135]) -> [SKIP][205] ([Intel XE#2423] / [i915#2575]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_feature_discovery@psr1.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_feature_discovery@psr1.html * igt at kms_flip@flip-vs-expired-vblank: - shard-dg2-set2: [SKIP][206] ([Intel XE#2423] / [i915#2575]) -> [FAIL][207] ([Intel XE#301]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][208] ([Intel XE#455]) -> [SKIP][209] ([Intel XE#2136]) +7 other tests skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][210] ([Intel XE#651]) -> [SKIP][211] ([Intel XE#2136]) +31 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][212] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][213] ([Intel XE#651]) +12 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-suspend.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][214] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][215] ([Intel XE#658]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-tiling-y.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][216] ([Intel XE#2136]) -> [SKIP][217] ([Intel XE#651]) +21 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][218] ([Intel XE#651]) -> [SKIP][219] ([Intel XE#2136] / [Intel XE#2351]) +14 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][220] ([Intel XE#658]) -> [SKIP][221] ([Intel XE#2136] / [Intel XE#2351]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][222] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][223] ([Intel XE#653]) +7 other tests skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][224] ([Intel XE#653]) -> [SKIP][225] ([Intel XE#2136] / [Intel XE#2351]) +13 other tests skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][226] ([Intel XE#653]) -> [SKIP][227] ([Intel XE#2136]) +38 other tests skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][228] ([Intel XE#2136]) -> [SKIP][229] ([Intel XE#653]) +30 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][230] ([Intel XE#2423] / [i915#2575]) -> [SKIP][231] ([Intel XE#605]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_getfb@getfb-reject-ccs.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_histogram@algo-color: - shard-dg2-set2: [SKIP][232] ([Intel XE#2423] / [i915#2575]) -> [SKIP][233] ([Intel XE#3897]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_histogram@algo-color.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_histogram@algo-color.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][234] ([Intel XE#2136]) -> [SKIP][235] ([Intel XE#346]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_joiner@basic-big-joiner.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: [SKIP][236] ([Intel XE#2925]) -> [SKIP][237] ([Intel XE#2136]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg2-set2: [SKIP][238] ([Intel XE#2423] / [i915#2575]) -> [SKIP][239] ([Intel XE#455]) +5 other tests skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_panel_fitting@atomic-fastset.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][240] ([Intel XE#361]) -> [SKIP][241] ([Intel XE#2423] / [i915#2575]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: [SKIP][242] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][243] ([Intel XE#2423] / [i915#2575]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2-set2: [SKIP][244] ([Intel XE#2423] / [i915#2575]) -> [SKIP][245] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_pm_backlight@fade: - shard-dg2-set2: [SKIP][246] ([Intel XE#870]) -> [SKIP][247] ([Intel XE#2136]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_pm_backlight@fade.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: [SKIP][248] ([Intel XE#1122]) -> [SKIP][249] ([Intel XE#2136] / [Intel XE#2351]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_pm_dc@dc3co-vpb-simulation.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][250] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][251] ([Intel XE#1129]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_dc@dc6-psr.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_dc@deep-pkgc: - shard-dg2-set2: [SKIP][252] ([Intel XE#2136]) -> [SKIP][253] ([Intel XE#908]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_dc@deep-pkgc.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at kms_pm_dc@deep-pkgc.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][254] ([Intel XE#1489]) -> [SKIP][255] ([Intel XE#2136]) +16 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][256] ([Intel XE#2136]) -> [SKIP][257] ([Intel XE#1489]) +8 other tests skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2-set2: [SKIP][258] ([Intel XE#2136]) -> [SKIP][259] ([Intel XE#1122]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr2_su@frontbuffer-xrgb8888.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-psr-no-drrs: - shard-dg2-set2: [SKIP][260] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][261] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr@fbc-psr-no-drrs.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at kms_psr@fbc-psr-no-drrs.html * igt at kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: [SKIP][262] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][263] ([Intel XE#2136]) +20 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_psr@fbc-psr-sprite-render.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_psr@fbc-psr-sprite-render.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: [SKIP][264] ([Intel XE#2136]) -> [SKIP][265] ([Intel XE#2850] / [Intel XE#929]) +17 other tests skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr@fbc-psr2-primary-render.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@psr-cursor-plane-move: - shard-dg2-set2: [SKIP][266] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][267] ([Intel XE#2351]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_psr@psr-cursor-plane-move.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_psr@psr-cursor-plane-move.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][268] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][269] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_psr@psr-dpms.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_psr@psr-dpms.html * igt at kms_rotation_crc@primary-rotation-270: - shard-dg2-set2: [SKIP][270] ([Intel XE#2423] / [i915#2575]) -> [SKIP][271] ([Intel XE#3414]) +2 other tests skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_rotation_crc@primary-rotation-270.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][272] ([Intel XE#3414]) -> [SKIP][273] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][274] ([Intel XE#1500]) -> [SKIP][275] ([Intel XE#2423] / [i915#2575]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@flipline: - shard-dg2-set2: [SKIP][276] ([Intel XE#455]) -> [SKIP][277] ([Intel XE#2423] / [i915#2575]) +16 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_vrr@flipline.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at kms_vrr@flipline.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: [SKIP][278] ([Intel XE#2423] / [i915#2575]) -> [SKIP][279] ([Intel XE#756]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_writeback@writeback-check-output-xrgb2101010.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: [SKIP][280] ([Intel XE#756]) -> [SKIP][281] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_writeback@writeback-fb-id.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at kms_writeback@writeback-fb-id.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][282] ([Intel XE#2423] / [i915#2575]) -> [SKIP][283] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][284] ([Intel XE#1130]) -> [SKIP][285] ([Intel XE#1280] / [Intel XE#455]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_compute_preempt@compute-preempt-many.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: [SKIP][286] ([Intel XE#1123]) -> [SKIP][287] ([Intel XE#1130]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_copy_basic@mem-copy-linear-0xfffe.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at xe_copy_basic@mem-copy-linear-0xfffe.html * igt at xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][288] ([Intel XE#1126]) -> [SKIP][289] ([Intel XE#1130]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0x369.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0x369.html * igt at xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][290] ([Intel XE#1130]) -> [SKIP][291] ([Intel XE#1126]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0x3fff.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at xe_copy_basic@mem-set-linear-0x3fff.html * igt at xe_eudebug@basic-vm-bind: - shard-dg2-set2: [SKIP][292] ([Intel XE#1130]) -> [SKIP][293] ([Intel XE#2905]) +13 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_eudebug@basic-vm-bind.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at xe_eudebug@basic-vm-bind.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-dg2-set2: [SKIP][294] ([Intel XE#1130]) -> [SKIP][295] ([Intel XE#3889]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@resume-dss: - shard-dg2-set2: [SKIP][296] ([Intel XE#2905]) -> [SKIP][297] ([Intel XE#1130]) +18 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_eudebug_online@resume-dss.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at xe_eudebug_online@resume-dss.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: [SKIP][298] ([Intel XE#1130]) -> [FAIL][299] ([Intel XE#1600]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_evict@evict-large-multi-vm-cm.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][300] ([Intel XE#1473]) -> [SKIP][301] ([Intel XE#1130]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_evict@evict-mixed-many-threads-large.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_exec_fault_mode@once-basic: - shard-dg2-set2: [SKIP][302] ([Intel XE#1130]) -> [SKIP][303] ([Intel XE#288]) +30 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_fault_mode@once-basic.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at xe_exec_fault_mode@once-basic.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: [SKIP][304] ([Intel XE#288]) -> [SKIP][305] ([Intel XE#1130]) +44 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][306] ([Intel XE#255]) -> [SKIP][307] ([Intel XE#1130]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_huc_copy@huc_copy.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at xe_huc_copy@huc_copy.html * igt at xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][308] ([Intel XE#560]) -> [SKIP][309] ([Intel XE#1130]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_media_fill@media-fill.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at xe_media_fill@media-fill.html * igt at xe_oa@map-oa-buffer: - shard-dg2-set2: [SKIP][310] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][311] ([Intel XE#1130]) +16 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_oa@map-oa-buffer.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at xe_oa@map-oa-buffer.html * igt at xe_oa@syncs-ufence-wait: - shard-dg2-set2: [SKIP][312] ([Intel XE#1130]) -> [SKIP][313] ([Intel XE#2541] / [Intel XE#3573]) +9 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_oa@syncs-ufence-wait.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at xe_oa@syncs-ufence-wait.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][314] ([Intel XE#979]) -> [SKIP][315] ([Intel XE#1130]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_pat@pat-index-xelpg.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@read: - shard-dg2-set2: [SKIP][316] ([Intel XE#1061]) -> [FAIL][317] ([Intel XE#1173]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_peer2peer@read.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at xe_peer2peer@read.html * igt at xe_peer2peer@write: - shard-dg2-set2: [FAIL][318] ([Intel XE#1173]) -> [SKIP][319] ([Intel XE#1061]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_peer2peer@write.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: [SKIP][320] ([Intel XE#1130]) -> [SKIP][321] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_pm@d3cold-mmap-vram.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-436/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][322] ([Intel XE#1130]) -> [SKIP][323] ([Intel XE#2284]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_pm@d3cold-mocs.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-434/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: [SKIP][324] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][325] ([Intel XE#1130]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_pm@s2idle-d3cold-basic-exec.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: [SKIP][326] ([Intel XE#944]) -> [SKIP][327] ([Intel XE#1130]) +5 other tests skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_query@multigpu-query-cs-cycles.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-dg2-set2: [SKIP][328] ([Intel XE#1130]) -> [SKIP][329] ([Intel XE#944]) +3 other tests skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_query@multigpu-query-invalid-cs-cycles.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: [SKIP][330] ([Intel XE#3342]) -> [SKIP][331] ([Intel XE#1130]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_sriov_flr@flr-each-isolation.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-466/igt at xe_sriov_flr@flr-each-isolation.html * igt at xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [SKIP][332] ([Intel XE#1130]) -> [ABORT][333] ([Intel XE#3075] / [Intel XE#3084]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_wedged@wedged-mode-toggle.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/shard-dg2-435/igt at xe_wedged@wedged-mode-toggle.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [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#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [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#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#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#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [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#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [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#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#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [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#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#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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [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#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#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#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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [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#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8179 -> IGTPW_12398 * Linux: xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571 -> xe-2452-8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 IGTPW_12398: bf13da2a3201323521295aa183f36e8841b344b2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571: 89042e0bb417f4d67280e1d7fa9bbcca51734571 xe-2452-8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5: 8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12398/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 18:00:49 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 18:00:49 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_lib/meson=2Ebuild=3A_allow_?= =?utf-8?q?build_IGT_with_link_time_optimization_=28rev2=29?= In-Reply-To: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> References: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> Message-ID: <173644564945.1695038.13787038330035416643@b555e5b46a47> == Series Details == Series: lib/meson.build: allow build IGT with link time optimization (rev2) URL : https://patchwork.freedesktop.org/series/142655/ State : success == Summary == CI Bug Log - changes from XEIGT_8184_BAT -> XEIGTPW_12419_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12419_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][3] ([Intel XE#1192]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html * igt at xe_pat@pat-index-xelp at render: - bat-adlp-vf: [DMESG-WARN][5] -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html * igt at xe_vm@shared-pde2-page: - bat-adlp-vf: [DMESG-WARN][7] ([Intel XE#3958] / [Intel XE#3970]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/bat-adlp-vf/igt at xe_vm@shared-pde2-page.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/bat-adlp-vf/igt at xe_vm@shared-pde2-page.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][9] ([Intel XE#1192]) -> [SKIP][10] ([Intel XE#2229] / [Intel XE#455]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8184 -> IGTPW_12419 * Linux: xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c -> xe-2463-424f495e9572bf87a42e3be0aa02ac4777541033 IGTPW_12419: 0f0904e71a31e60759ac032b5c424588e435a746 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8184: ee7a3ac616f55f6ed1b959ff951237099bda86d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c: c9da975358cd0763449f08b7063ee935eace4f8c xe-2463-424f495e9572bf87a42e3be0aa02ac4777541033: 424f495e9572bf87a42e3be0aa02ac4777541033 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From lucas.demarchi at intel.com Thu Jan 9 18:03:44 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Thu, 9 Jan 2025 12:03:44 -0600 Subject: [PATCH v1] tests/xe_debugfs: Improve test_gt subtest In-Reply-To: References: <20250109105721.914096-1-pravalika.gurram@intel.com> Message-ID: <6miqrch7gr47uslneibcju7fcqjb3sfjx5kji4rq3j3jai5uwv@h7cak2uam3qx> On Thu, Jan 09, 2025 at 05:42:37PM +0000, Gurram, Pravalika wrote: > > >> -----Original Message----- >> From: De Marchi, Lucas >> Sent: Thursday, January 9, 2025 10:33 PM >> To: Gurram, Pravalika >> Cc: igt-dev at lists.freedesktop.org >> Subject: Re: [PATCH v1] tests/xe_debugfs: Improve test_gt subtest >> >> On Thu, Jan 09, 2025 at 04:27:21PM +0530, Pravalika Gurram wrote: >> >Read the debugfs entries in the loop to improve the readability. >> > >> >Signed-off-by: Pravalika Gurram >> >--- >> > tests/intel/xe_debugfs.c | 84 +++++++--------------------------------- >> > 1 file changed, 13 insertions(+), 71 deletions(-) >> > >> >diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c index >> >bcbb5036a..3d8c17921 100644 >> >--- a/tests/intel/xe_debugfs.c >> >+++ b/tests/intel/xe_debugfs.c >> >@@ -180,77 +180,19 @@ test_gt(int fd, int gt_id) >> > // "guc_ct_selftest" >> > }; >> > >> >- sprintf(name, "gt%d/hw_engines", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/sa_info", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/steering", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/topology", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/pat", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/mocs", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/ggtt", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/register-save-restore", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/workarounds", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/default_lrc_rcs", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/default_lrc_ccs", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/default_lrc_bcs", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/default_lrc_vecs", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/default_lrc_vcs", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/hwconfig", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/uc/guc_info", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/uc/huc_info", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >- >> >- sprintf(name, "gt%d/uc/guc_log", gt_id); >> >- igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >- igt_debugfs_dump(fd, name); >> >+ for (int i = 0; i < ARRAY_SIZE(expected_files); i++) { >> >+ sprintf(name, "gt%d/%s", gt_id, expected_files[i]); >> >+ igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); >> >+ if (!strstr(name, "uc")) { >> >> strstr will find any substring "uc". You could do a strcmp() instead, but I don't >> understand why we are doing this here. >> >> I'd just remove 'uc' from the array and update validate_entries to ignore >> directories. >> >> Lucas De Marchi >> > >Strcmp will not work here because sprintf will save name = "gt0/uc" if (strcmp(expected_files[i], "uc")) >If we do strcmp(name,"gt0/uc") gt cannot be fixed 0 always correct it can change >that's why I have added strstr suppose we have a new file called chuck or touch or truck or truce or yucks or.... They would all fall into the else condition which is not what we want. > >I did not understand which directories can be ignored you meant say "uc" >we don't need to dump "uc/*" data? any dir. In that loop, just skip any check for de->d_type == DT_DIR Lucas De Marchi > >--Pravalika >> >+ igt_debugfs_dump(fd, name); >> >+ } else { >> >+ for (int j = 0; j < ARRAY_SIZE(expected_files_uc); j++) >> { >> >+ sprintf(name, "gt%d/uc/%s", gt_id, >> expected_files_uc[j]); >> >+ igt_assert(igt_debugfs_exists(fd, name, >> O_RDONLY)); >> >+ igt_debugfs_dump(fd, name); >> >+ } >> >+ } >> >+ } >> > >> > sprintf(name, "/gt%d", gt_id); >> > validate_entries(fd, name, expected_files, >> >ARRAY_SIZE(expected_files)); >> >-- >> >2.34.1 >> > From peter.senna at linux.intel.com Thu Jan 9 18:10:27 2025 From: peter.senna at linux.intel.com (Peter Senna Tschudin) Date: Thu, 9 Jan 2025 19:10:27 +0100 Subject: [PATCH i-g-t] lib/igt_kmemleak: library to interact with kmemleak Message-ID: <20250109181027.90402-1-peter.senna@linux.intel.com> Adds a simple library for interacting with kmemleak ispired by 'tests/amdgpu/amd_mem_leak.c'. Also adds unit testing for the library. To use the library include "igt_kmemleak.h" and: 1. igt_kmemleak_init(NULL) /* Returns true if kmemleak is active */ 2. igt_kmemleak_clear() 3. /* Run your test */ 4. igt_kmemleak_scan() 5. if (igt_kmemleak_found_leaks()) igt_kmemleak_cp_leaks_file(*dst) CC: stylon.wang at amd.com CC: Rodrigo.Siqueira at amd.com> CC: ramadevi.gandi at intel.com CC: ryszard.knop at intel.com CC: sameer.lattannavar at intel.com CC: lucas.demarchi at intel.com CC: jani.saarinen at intel.com CC: katarzyna.piecielska at intel.com CC: matthew.d.roper at intel.com CC: gregory.f.germano at intel.com CC: clinton.a.taylor at intel.com CC: balasubramani.vivekanandan at intel.com CC: jianshui.yu at intel.com CC: jonathan.cavitt at intel.com Signed-off-by: Peter Senna Tschudin --- lib/igt_kmemleak.c | 149 ++++++++++++++++++++ lib/igt_kmemleak.h | 17 +++ lib/meson.build | 1 + lib/tests/igt_kmemleak.c | 289 +++++++++++++++++++++++++++++++++++++++ lib/tests/meson.build | 1 + 5 files changed, 457 insertions(+) create mode 100644 lib/igt_kmemleak.c create mode 100644 lib/igt_kmemleak.h create mode 100644 lib/tests/igt_kmemleak.c diff --git a/lib/igt_kmemleak.c b/lib/igt_kmemleak.c new file mode 100644 index 000000000..c3f0f06a7 --- /dev/null +++ b/lib/igt_kmemleak.c @@ -0,0 +1,149 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright ? 2024 Intel Corporation + */ + +#include +#include +#include +#include +#include + +#include "igt_core.h" +#include "igt_device_scan.h" +#include "igt_kmemleak.h" +#include "igt_kmod.h" +#include "igt_list.h" + +/* We can change the path for unit testing, see igt_kmemleak_init() */ +static char igt_kmemleak_file[256] = "/sys/kernel/debug/kmemleak"; + +/** + * igt_kmemeak_init: + * @igt_kmemleak_file: update the path to kmemleak file to enable unit testing + * + * Check if kmemleak is enabled in the kernel, if debugfs is mounted and + * if kmemleak file is present and readable. + * + * Returns: true if kmemleak is enabled, false otherwise. + */ +bool igt_kmemleak_init(const char *unit_test_kmemleak_file) +{ + FILE *fp; + + if (unit_test_kmemleak_file) + snprintf(igt_kmemleak_file, + sizeof(igt_kmemleak_file), + "%s", + unit_test_kmemleak_file); + + fp = fopen(igt_kmemleak_file, "r"); + if (!fp) + return false; + + fclose(fp); + return true; +} + +/** + * igt_kmemeak_cmd: + * @cmd: command to send to kmemleak + * + * Send a command to kmemleak. + * + * Returns: true if sending the command was successful, false otherwise. + */ +bool igt_kmemleak_cmd(const char *cmd) +{ + FILE *fp; + size_t wlen; + + fp = fopen(igt_kmemleak_file, "r+"); + if (!fp) + return false; + wlen = fwrite(cmd, 1, strlen(cmd), fp); + fclose(fp); + + return wlen == strlen(cmd); +} + +/** + * igt_kmemeak_scan: + * + * Trigger an immediate scan on kmemleak. + * + * Returns: true if sending the command to scan was successful, false otherwise. + */ +bool igt_kmemleak_scan(void) +{ + return igt_kmemleak_cmd("scan"); +} + +/** + * igt_kmemeak_clear: + * + * Trigger an immediate clear on kmemleak. + * + * Returns: true if sending the command to clear was successful, false + * otherwise. + */ +bool igt_kmemleak_clear(void) +{ + return igt_kmemleak_cmd("clear"); +} + +/** + * igt_kmemeak_found_leaks: + * + * Check if kmemleak found any leaks. + * + * Returns: true if kmemleak found any leaks, false otherwise. + */ +bool igt_kmemleak_found_leaks(void) +{ + FILE *fp; + char buf[1]; + size_t rlen; + + fp = fopen(igt_kmemleak_file, "r"); + if (!fp) + return false; + + rlen = fread(buf, 1, 1, fp); + fclose(fp); + + return rlen == 1; +} + +/** + * igt_kmemeak_cp_leaks_file: + * @dst: path of destination file including the file name + * + * Copy kmemleak file to dst. + * + * Returns: true if copy was successful, false otherwise + */ +bool igt_kmemleak_cp_leaks_file(const char *dst) +{ + FILE *src, *dest; + char buf[1024]; + size_t n; + + src = fopen(igt_kmemleak_file, "r"); + if (!src) + return false; + + dest = fopen(dst, "w"); + if (!dest) { + fclose(src); + return false; + } + + while ((n = fread(buf, 1, sizeof(buf), src)) > 0) + fwrite(buf, 1, n, dest); + + fclose(dest); + fclose(src); + + return true; +} diff --git a/lib/igt_kmemleak.h b/lib/igt_kmemleak.h new file mode 100644 index 000000000..c0c187847 --- /dev/null +++ b/lib/igt_kmemleak.h @@ -0,0 +1,17 @@ +/* SPDX-License-Identifier: MIT + * Copyright ? 2024 Intel Corporation + */ + +#ifndef IGT_KMEMLEAK_H +#define IGT_KMEMLEAK_H + +#include + +bool igt_kmemleak_init(const char *unit_test_kmemleak_file); +bool igt_kmemleak_cmd(const char *cmd); +bool igt_kmemleak_scan(void); +bool igt_kmemleak_clear(void); +bool igt_kmemleak_found_leaks(void); +bool igt_kmemleak_cp_leaks_file(const char *dst); + +#endif /* IGT_KMEMLEAK_H */ diff --git a/lib/meson.build b/lib/meson.build index 640513e6c..24423ef37 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -96,6 +96,7 @@ lib_sources = [ 'igt_dummyload.c', 'igt_store.c', 'uwildmat/uwildmat.c', + 'igt_kmemleak.c', 'igt_kmod.c', 'igt_ktap.c', 'igt_panfrost.c', diff --git a/lib/tests/igt_kmemleak.c b/lib/tests/igt_kmemleak.c new file mode 100644 index 000000000..e683158a5 --- /dev/null +++ b/lib/tests/igt_kmemleak.c @@ -0,0 +1,289 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright ? 2024 Intel Corporation + */ + +#include +#include +#include +#include + +#include "igt_core.h" +#include "igt_kmemleak.h" + +const char *kmemleak_file_example = +"unreferenced object 0xffff888102a2e638 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" 00 00 00 00 00 00 00 00 0d 01 a2 00 00 00 00 00 ................\n" +" f0 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" +" backtrace (crc 2df71a7e):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_create_op+0x1c0/0x400\n" +" [] acpi_ps_parse_loop+0x16c/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170" +"unreferenced object 0xffff888102a2ed18 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" 38 e6 a2 02 81 88 ff ff 0d 11 2d 00 00 00 00 00 8.........-.....\n" +" f2 7c 03 00 00 c9 ff ff 58 ea a2 02 81 88 ff ff .|......X.......\n" +" backtrace (crc ec2a8bdc):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_create_op+0x1c0/0x400\n" +" [] acpi_ps_parse_loop+0x16c/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170" +"unreferenced object 0xffff888102a2ea58 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" 38 e6 a2 02 81 88 ff ff 0d 01 a0 00 00 00 00 00 8...............\n" +" f6 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" +" backtrace (crc f911c0d1):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_create_op+0x1c0/0x400\n" +" [] acpi_ps_parse_loop+0x16c/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170" +"unreferenced object 0xffff888102a2e428 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" 58 ea a2 02 81 88 ff ff 0d 01 35 00 00 00 00 00 X.........5.....\n" +" fc 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" +" backtrace (crc cb8aaffd):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_create_op+0x1c0/0x400\n" +" [] acpi_ps_parse_loop+0x16c/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170" +"unreferenced object 0xffff888102a2e008 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" 28 e4 a2 02 81 88 ff ff 0d 01 2d 00 00 00 00 00 (.........-.....\n" +" fc 7c 03 00 00 c9 ff ff c8 e2 a2 02 81 88 ff ff .|..............\n" +" backtrace (crc 7f883e78):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_get_next_namepath+0x1f5/0x390\n" +" [] acpi_ps_parse_loop+0x4a5/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170" +"unreferenced object 0xffff888102a2e2c8 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" 28 e4 a2 02 81 88 ff ff 0d 01 73 00 00 00 00 00 (.........s.....\n" +" 00 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" +" backtrace (crc 338c016):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_create_op+0x1c0/0x400\n" +" [] acpi_ps_parse_loop+0x16c/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170" +"unreferenced object 0xffff888102a2e378 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" c8 e2 a2 02 81 88 ff ff 0d 01 0d 00 00 00 00 00 ................\n" +" 01 7d 03 00 00 c9 ff ff 98 e7 a2 02 81 88 ff ff .}..............\n" +" backtrace (crc 665fb8a7):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_create_op+0x1c0/0x400\n" +" [] acpi_ps_parse_loop+0x16c/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170" +"unreferenced object 0xffff888102a2e798 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" 7c8 e2 a2 02 81 88 ff ff 0d 01 98 00 00 00 00 00 ................\n" +" 1b 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" +" backtrace (crc b7a23a1c):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_create_op+0x1c0/0x400\n" +" [] acpi_ps_parse_loop+0x16c/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170" +"unreferenced object 0xffff888102a2e0b8 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" 98 e7 a2 02 81 88 ff ff 0d 01 2d 00 00 00 00 00 ..........-.....\n" +" 1c 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" +" backtrace (crc 14d67a9c):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_create_op+0x1c0/0x400\n" +" [] acpi_ps_parse_loop+0x16c/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170\n"; + +static unsigned long crc32_file(int fd) +{ + unsigned long crc; + char buf[1024]; + ssize_t n; + + crc = crc32(0, Z_NULL, 0); + while ((n = read(fd, buf, sizeof(buf))) > 0) + crc = crc32(crc, (const Bytef *)buf, n); + + return crc; +} + +static void test_igt_kmemleak_cp_leaks_file(void) +{ + char src_file_path[256] = "/tmp/igt_kmemleak_test_XXXXXX"; + char dst_file_path[256] = "/tmp/igt_kmemleak_dstfile_XXXXXX"; + unsigned long crc_src, crc_dst; + int fd; + + /* Emulate a kmemleak file */ + fd = mkstemp(src_file_path); + write(fd, kmemleak_file_example, strlen(kmemleak_file_example)); + close(fd); + + /* Init the library */ + igt_kmemleak_init(src_file_path); + + /* Copy the emulated kmemleak file */ + igt_assert(igt_kmemleak_cp_leaks_file(dst_file_path)); + + /* Test that both files have the same content */ + fd = open(src_file_path, O_RDONLY); + crc_src = crc32_file(fd); + close(fd); + + fd = open(dst_file_path, O_RDONLY); + crc_dst = crc32_file(fd); + close(fd); + + igt_assert(crc_src == crc_dst); + +} + +static void test_kmemleak_file(bool test_write) +{ + char tmp_file_path[256] = "/tmp/igt_kmemleak_test_XXXXXX"; + int fd; + + fd = mkstemp(tmp_file_path); + igt_assert(fd >= 0); + + if (test_write) + write(fd, kmemleak_file_example, strlen(kmemleak_file_example)); + + igt_assert(igt_kmemleak_init(tmp_file_path)); +} + +static void test_empty_file(void) +{ + test_kmemleak_file(false); + igt_assert(!igt_kmemleak_found_leaks()); +} + +static void test_non_empty_file(void) +{ + test_kmemleak_file(true); + igt_assert(igt_kmemleak_found_leaks()); +} + +igt_simple_main +{ + test_empty_file(); + test_non_empty_file(); + test_igt_kmemleak_cp_leaks_file(); +} diff --git a/lib/tests/meson.build b/lib/tests/meson.build index df8092638..bcbea9ba4 100644 --- a/lib/tests/meson.build +++ b/lib/tests/meson.build @@ -15,6 +15,7 @@ lib_tests = [ 'igt_ktap_parser', 'igt_list_only', 'igt_invalid_subtest_name', + 'igt_kmemleak', 'igt_nesting', 'igt_no_exit', 'igt_runnercomms_packets', -- 2.34.1 From peter.senna at linux.intel.com Thu Jan 9 18:18:38 2025 From: peter.senna at linux.intel.com (Peter Senna Tschudin) Date: Thu, 9 Jan 2025 19:18:38 +0100 Subject: [PATCH RFC i-g-t] lib/igt_kmemleak: library to interact with kmemleak In-Reply-To: References: <20241216184642.133454-1-peter.senna@linux.intel.com> Message-ID: <6513074d-58d4-4df0-881b-ad4e99147304@linux.intel.com> Dear Jonathan, Please see my comments below. [...] > > I'm not particularly well-versed in kmemleak, but nothing about this patch seems out of the > ordinary. Though I can still offer some small style-related suggestions. > Also, do you want a reviewed-by for this? I'd give one right now but I don't think I should be > Acking RFC patches. I sent V1 a few instants ago, I guess it is a better place for a RB. [...] > > Maybe we can reduce the number of fclose calls by capturing the fwrite return value: > """ > bool igt_kmemleak_cmd(const char *cmd) > { > FILE *fp; > size_t wlen; > > fp = fopen(igt_kmemleak_file, "r+"); > if (!fp) > return false; > > wlen = fwrite(cmd, 1, strlen(cmd), fp); > fclose(fp); > > return wlen == strlen(cmd); > } > """ > Though that's not strictly necessary here. Thank you for that! This change is on V1. [...] > > Same comment as with igt_kmemleak_cmd above: > """ > bool igt_kmemleak_found_leak(void) > { > FILE *fp; > char buf[1]; > size_t rlen; > > fp = fopen(igt_kmemleak_file, "r"); > if (!fp) > return false; > > rlen = fread(buf, 1, 1, fp); > fclose(fp); > > return rlen > 0; > } > """ > Though, again, this isn't strictly necessary. Thank you for that! This change is on V1. [...] > > I don't think we need comments like this for both the implementation > and the header file. The former should be sufficient. Removed comments from the header file on V1. [...] > > test_empty_file and test_non_empty_file could probably be consolidated into a single > "test_file" or "test_kmemleak_file" test with a Boolean determining if we want to write > to the test file or not: > """ > static void test_kmemleak_file(bool write) > { > char tmp_file_path[256] = "/tmp/igt_kmemleak_test_XXXXXX"; > int fd = mkstemp(tmp_file_path); > igt_assert(fd >= 0); > > if (write) > write(fd, kmemleak_file_example, strlen(kmemleak_file_example)); > > /* Set the path for the unit testing file */ > igt_assert(igt_kmemleak_init(tmp_file_path)); > > /* Test igt_kmemleak_found_leaks() returns true if written */ > igt_assert(igt_kmemleak_found_leaks() == write); > > close(fd); I moved the shared part to test_kmemleak_file() but kept the two separate functions for the differences between them. [...] > > It might be better to separate these out into their own subtests: > """ > igt_subtest_f("empty-file") > test_empty_file(); > igt_subtest_f("non-empty-file") > test_non_empty_file(); > igt_subtest_f("cp-leaks-file") > test_igt_kmemleak_cp_leaks_file(); > """ Unfortunately this does not work. These are unit testing tests, and `meson test -C build` gets confused by the macro igt_subtest_f. That or I am doing something wrong. > > Though looking at it a bit closer, I see that test_igt_kmemleak_cp_leaks_file depends > on the completion of test_non_empty_file to run properly? Maybe we should separate > the test out into chunks? Oh, test_igt_kmemleak_cp_leaks_file() was broken. I changed it so that it has no dependencies, and that it uses crc32_file()... > > Let me try prototyping it here: > """ > --- Original file up to end of crc32_file function is unchanged --- > > static void init_kmemleak_file(bool write) > { > --- Same as test_kmemleak_file from earlier suggestion --- > } > > static void test_kmemleak_cp_leaks_file(void) > { > char dst_file_path[256] = "/tmp/igt_kmemleak_dstfile_XXXXXX"; > int fd; > unsigned long crc; > > init_kmemleak_file(true); > > fd = mkstemp(dst_file_path); > --- Rest of test is unchanged after this point --- > } > > igt_main > { > igt_subtest_f("empty") > init_kmemleak_file(false); > igt_subtest_f("non-empty") > init_kmemleak_file(true); > igt_subtest_f("cp-leaks-file") > test_kmemleak_cp_leaks_file(); > } > """ It ended slightly different than that. Let me know what you think. Thank you! From peter.senna at linux.intel.com Thu Jan 9 18:21:45 2025 From: peter.senna at linux.intel.com (Peter Senna Tschudin) Date: Thu, 9 Jan 2025 19:21:45 +0100 Subject: [PATCH RFC i-g-t] lib/igt_kmemleak: library to interact with kmemleak In-Reply-To: References: <20241216184642.133454-1-peter.senna@linux.intel.com> Message-ID: Dear Bala, Thank you for your review! [...] >>> +static void test_igt_kmemleak_cp_leaks_file(void) >>> +{ >>> + char dst_file_path[256] = "/tmp/igt_kmemleak_dstfile_XXXXXX"; >>> + int fd; >>> + unsigned long crc; >>> + >>> + fd = mkstemp(dst_file_path); >>> + close(fd); >>> + >>> + igt_assert(igt_kmemleak_cp_leaks_file(dst_file_path)); >>> + >>> + /* Test that both files have the same size */ >>> + fd = open(dst_file_path, O_RDONLY); >>> + igt_assert(fd >= 0); >>> + igt_assert(lseek(fd, 0, SEEK_END) == strlen(kmemleak_file_example)); >>> + close(fd); >>> + >>> + /* Test that both files have the same content */ >>> + crc = crc32(0, Z_NULL, 0); >>> + crc = crc32(crc, >>> + (const Bytef *)kmemleak_file_example, >>> + strlen(kmemleak_file_example)); > > Did you miss the changes to compare the CRC? Not only that, but I did not use crc32_file()... Thank you for catching this! Fixed on V1. > > Regards, > Bala > [...] From patchwork at emeril.freedesktop.org Thu Jan 9 18:31:20 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 18:31:20 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/intel/kms=5Fdp=5Fli?= =?utf-8?q?nktrain=5Ffallback=3A_Reduce_debug_loglevel_dynamically?= In-Reply-To: <20250109170729.47646-1-pranay.samala@intel.com> References: <20250109170729.47646-1-pranay.samala@intel.com> Message-ID: <173644748083.1707559.1445835350605307414@b555e5b46a47> == Series Details == Series: tests/intel/kms_dp_linktrain_fallback: Reduce debug loglevel dynamically URL : https://patchwork.freedesktop.org/series/143342/ State : success == Summary == CI Bug Log - changes from IGT_8184 -> IGTPW_12420 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12420 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live at workarounds: - bat-adlp-9: [PASS][1] -> [INCOMPLETE][2] ([i915#9413]) +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8184/bat-adlp-9/igt at i915_selftest@live at workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/bat-adlp-9/igt at i915_selftest@live at workarounds.html * igt at runner@aborted: - bat-twl-2: NOTRUN -> [FAIL][3] ([i915#13173]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/bat-twl-2/igt at runner@aborted.html #### Possible fixes #### * igt at i915_selftest@live: - bat-mtlp-6: [DMESG-FAIL][4] ([i915#13393]) -> [PASS][5] +1 other test pass [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8184/bat-mtlp-6/igt at i915_selftest@live.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/bat-mtlp-6/igt at i915_selftest@live.html [i915#13173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13173 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8184 -> IGTPW_12420 * Linux: CI_DRM_15930 -> CI_DRM_15932 CI-20190529: 20190529 CI_DRM_15930: c9da975358cd0763449f08b7063ee935eace4f8c @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15932: 15b0ea8b453b7e91a74530afa85a602eaca01527 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12420: a8fe7fb5d072b53d480730eb01c1bf72f6783988 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8184: ee7a3ac616f55f6ed1b959ff951237099bda86d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From jonathan.cavitt at intel.com Thu Jan 9 19:13:21 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Thu, 9 Jan 2025 19:13:21 +0000 Subject: [PATCH i-g-t] lib/igt_kmemleak: library to interact with kmemleak In-Reply-To: <20250109181027.90402-1-peter.senna@linux.intel.com> References: <20250109181027.90402-1-peter.senna@linux.intel.com> Message-ID: -----Original Message----- From: Peter Senna Tschudin Sent: Thursday, January 9, 2025 10:10 AM To: igt-dev at lists.freedesktop.org Cc: Peter Senna Tschudin ; stylon.wang at amd.com; Rodrigo.Siqueira at amd.com; Gandi, Ramadevi ; Knop, Ryszard ; Lattannavar, Sameer ; De Marchi, Lucas ; Saarinen, Jani ; Piecielska, Katarzyna ; Roper, Matthew D ; gregory.f.germano at intel.com; Taylor, Clinton A ; Vivekanandan, Balasubramani ; Yu, Jianshui ; Cavitt, Jonathan Subject: [PATCH i-g-t] lib/igt_kmemleak: library to interact with kmemleak > > Adds a simple library for interacting with kmemleak ispired by > 'tests/amdgpu/amd_mem_leak.c'. Also adds unit testing for the > library. > > To use the library include "igt_kmemleak.h" and: > 1. igt_kmemleak_init(NULL) /* Returns true if kmemleak is active */ > 2. igt_kmemleak_clear() > 3. /* Run your test */ > 4. igt_kmemleak_scan() > 5. if (igt_kmemleak_found_leaks()) > igt_kmemleak_cp_leaks_file(*dst) > > CC: stylon.wang at amd.com > CC: Rodrigo.Siqueira at amd.com> > CC: ramadevi.gandi at intel.com > CC: ryszard.knop at intel.com > CC: sameer.lattannavar at intel.com > CC: lucas.demarchi at intel.com > CC: jani.saarinen at intel.com > CC: katarzyna.piecielska at intel.com > CC: matthew.d.roper at intel.com > CC: gregory.f.germano at intel.com > CC: clinton.a.taylor at intel.com > CC: balasubramani.vivekanandan at intel.com > CC: jianshui.yu at intel.com > CC: jonathan.cavitt at intel.com > Signed-off-by: Peter Senna Tschudin Some nits below, but otherwise: Reviewed-by: Jonathan Cavitt > --- > lib/igt_kmemleak.c | 149 ++++++++++++++++++++ > lib/igt_kmemleak.h | 17 +++ > lib/meson.build | 1 + > lib/tests/igt_kmemleak.c | 289 +++++++++++++++++++++++++++++++++++++++ > lib/tests/meson.build | 1 + > 5 files changed, 457 insertions(+) > create mode 100644 lib/igt_kmemleak.c > create mode 100644 lib/igt_kmemleak.h > create mode 100644 lib/tests/igt_kmemleak.c > > diff --git a/lib/igt_kmemleak.c b/lib/igt_kmemleak.c > new file mode 100644 > index 000000000..c3f0f06a7 > --- /dev/null > +++ b/lib/igt_kmemleak.c > @@ -0,0 +1,149 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright (c) 2024 Intel Corporation > + */ > + > +#include > +#include > +#include > +#include > +#include > + > +#include "igt_core.h" > +#include "igt_device_scan.h" > +#include "igt_kmemleak.h" > +#include "igt_kmod.h" > +#include "igt_list.h" > + > +/* We can change the path for unit testing, see igt_kmemleak_init() */ > +static char igt_kmemleak_file[256] = "/sys/kernel/debug/kmemleak"; > + > +/** > + * igt_kmemeak_init: > + * @igt_kmemleak_file: update the path to kmemleak file to enable unit testing > + * > + * Check if kmemleak is enabled in the kernel, if debugfs is mounted and > + * if kmemleak file is present and readable. > + * > + * Returns: true if kmemleak is enabled, false otherwise. > + */ > +bool igt_kmemleak_init(const char *unit_test_kmemleak_file) > +{ > + FILE *fp; > + > + if (unit_test_kmemleak_file) > + snprintf(igt_kmemleak_file, > + sizeof(igt_kmemleak_file), > + "%s", > + unit_test_kmemleak_file); > + > + fp = fopen(igt_kmemleak_file, "r"); > + if (!fp) > + return false; > + > + fclose(fp); > + return true; > +} > + > +/** > + * igt_kmemeak_cmd: > + * @cmd: command to send to kmemleak > + * > + * Send a command to kmemleak. > + * > + * Returns: true if sending the command was successful, false otherwise. > + */ > +bool igt_kmemleak_cmd(const char *cmd) > +{ > + FILE *fp; > + size_t wlen; > + > + fp = fopen(igt_kmemleak_file, "r+"); > + if (!fp) > + return false; > + wlen = fwrite(cmd, 1, strlen(cmd), fp); > + fclose(fp); > + > + return wlen == strlen(cmd); > +} > + > +/** > + * igt_kmemeak_scan: > + * > + * Trigger an immediate scan on kmemleak. > + * > + * Returns: true if sending the command to scan was successful, false otherwise. > + */ > +bool igt_kmemleak_scan(void) > +{ > + return igt_kmemleak_cmd("scan"); > +} > + > +/** > + * igt_kmemeak_clear: > + * > + * Trigger an immediate clear on kmemleak. > + * > + * Returns: true if sending the command to clear was successful, false > + * otherwise. > + */ > +bool igt_kmemleak_clear(void) > +{ > + return igt_kmemleak_cmd("clear"); > +} > + > +/** > + * igt_kmemeak_found_leaks: > + * > + * Check if kmemleak found any leaks. > + * > + * Returns: true if kmemleak found any leaks, false otherwise. > + */ > +bool igt_kmemleak_found_leaks(void) > +{ > + FILE *fp; > + char buf[1]; > + size_t rlen; > + > + fp = fopen(igt_kmemleak_file, "r"); > + if (!fp) > + return false; > + > + rlen = fread(buf, 1, 1, fp); > + fclose(fp); > + > + return rlen == 1; > +} > + > +/** > + * igt_kmemeak_cp_leaks_file: > + * @dst: path of destination file including the file name > + * > + * Copy kmemleak file to dst. > + * > + * Returns: true if copy was successful, false otherwise > + */ > +bool igt_kmemleak_cp_leaks_file(const char *dst) > +{ > + FILE *src, *dest; > + char buf[1024]; > + size_t n; > + > + src = fopen(igt_kmemleak_file, "r"); > + if (!src) > + return false; > + > + dest = fopen(dst, "w"); > + if (!dest) { > + fclose(src); > + return false; > + } > + > + while ((n = fread(buf, 1, sizeof(buf), src)) > 0) > + fwrite(buf, 1, n, dest); > + > + fclose(dest); > + fclose(src); > + > + return true; > +} > diff --git a/lib/igt_kmemleak.h b/lib/igt_kmemleak.h > new file mode 100644 > index 000000000..c0c187847 > --- /dev/null > +++ b/lib/igt_kmemleak.h > @@ -0,0 +1,17 @@ > +/* SPDX-License-Identifier: MIT > + * Copyright (c) 2024 Intel Corporation > + */ > + > +#ifndef IGT_KMEMLEAK_H > +#define IGT_KMEMLEAK_H > + > +#include > + > +bool igt_kmemleak_init(const char *unit_test_kmemleak_file); > +bool igt_kmemleak_cmd(const char *cmd); > +bool igt_kmemleak_scan(void); > +bool igt_kmemleak_clear(void); > +bool igt_kmemleak_found_leaks(void); > +bool igt_kmemleak_cp_leaks_file(const char *dst); > + > +#endif /* IGT_KMEMLEAK_H */ > diff --git a/lib/meson.build b/lib/meson.build > index 640513e6c..24423ef37 100644 > --- a/lib/meson.build > +++ b/lib/meson.build > @@ -96,6 +96,7 @@ lib_sources = [ > 'igt_dummyload.c', > 'igt_store.c', > 'uwildmat/uwildmat.c', > + 'igt_kmemleak.c', > 'igt_kmod.c', > 'igt_ktap.c', > 'igt_panfrost.c', > diff --git a/lib/tests/igt_kmemleak.c b/lib/tests/igt_kmemleak.c > new file mode 100644 > index 000000000..e683158a5 > --- /dev/null > +++ b/lib/tests/igt_kmemleak.c > @@ -0,0 +1,289 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright (c) 2024 Intel Corporation > + */ > + > +#include > +#include > +#include > +#include > + > +#include "igt_core.h" > +#include "igt_kmemleak.h" > + > +const char *kmemleak_file_example = > +"unreferenced object 0xffff888102a2e638 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 00 00 00 00 00 00 00 00 0d 01 a2 00 00 00 00 00 ................\n" > +" f0 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" > +" backtrace (crc 2df71a7e):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2ed18 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 38 e6 a2 02 81 88 ff ff 0d 11 2d 00 00 00 00 00 8.........-.....\n" > +" f2 7c 03 00 00 c9 ff ff 58 ea a2 02 81 88 ff ff .|......X.......\n" > +" backtrace (crc ec2a8bdc):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2ea58 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 38 e6 a2 02 81 88 ff ff 0d 01 a0 00 00 00 00 00 8...............\n" > +" f6 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" > +" backtrace (crc f911c0d1):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e428 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 58 ea a2 02 81 88 ff ff 0d 01 35 00 00 00 00 00 X.........5.....\n" > +" fc 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" > +" backtrace (crc cb8aaffd):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e008 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 28 e4 a2 02 81 88 ff ff 0d 01 2d 00 00 00 00 00 (.........-.....\n" > +" fc 7c 03 00 00 c9 ff ff c8 e2 a2 02 81 88 ff ff .|..............\n" > +" backtrace (crc 7f883e78):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_get_next_namepath+0x1f5/0x390\n" > +" [] acpi_ps_parse_loop+0x4a5/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e2c8 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 28 e4 a2 02 81 88 ff ff 0d 01 73 00 00 00 00 00 (.........s.....\n" > +" 00 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" > +" backtrace (crc 338c016):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e378 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" c8 e2 a2 02 81 88 ff ff 0d 01 0d 00 00 00 00 00 ................\n" > +" 01 7d 03 00 00 c9 ff ff 98 e7 a2 02 81 88 ff ff .}..............\n" > +" backtrace (crc 665fb8a7):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e798 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 7c8 e2 a2 02 81 88 ff ff 0d 01 98 00 00 00 00 00 ................\n" > +" 1b 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" > +" backtrace (crc b7a23a1c):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e0b8 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 98 e7 a2 02 81 88 ff ff 0d 01 2d 00 00 00 00 00 ..........-.....\n" > +" 1c 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" > +" backtrace (crc 14d67a9c):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170\n"; > + > +static unsigned long crc32_file(int fd) > +{ > + unsigned long crc; > + char buf[1024]; > + ssize_t n; > + > + crc = crc32(0, Z_NULL, 0); > + while ((n = read(fd, buf, sizeof(buf))) > 0) > + crc = crc32(crc, (const Bytef *)buf, n); > + > + return crc; > +} > + > +static void test_igt_kmemleak_cp_leaks_file(void) > +{ > + char src_file_path[256] = "/tmp/igt_kmemleak_test_XXXXXX"; > + char dst_file_path[256] = "/tmp/igt_kmemleak_dstfile_XXXXXX"; > + unsigned long crc_src, crc_dst; > + int fd; > + > + /* Emulate a kmemleak file */ > + fd = mkstemp(src_file_path); Nit: Should we igt_assert(fd >= 0) here, like we do in test_kmemleak_file? > + write(fd, kmemleak_file_example, strlen(kmemleak_file_example)); > + close(fd); > + > + /* Init the library */ > + igt_kmemleak_init(src_file_path); Nit: Should we igt_assert on the igt_kmemleak_init, like we do in test_kmemleak_file? > + > + /* Copy the emulated kmemleak file */ > + igt_assert(igt_kmemleak_cp_leaks_file(dst_file_path)); > + > + /* Test that both files have the same content */ > + fd = open(src_file_path, O_RDONLY); > + crc_src = crc32_file(fd); > + close(fd); > + > + fd = open(dst_file_path, O_RDONLY); > + crc_dst = crc32_file(fd); > + close(fd); > + > + igt_assert(crc_src == crc_dst); > + > +} > + > +static void test_kmemleak_file(bool test_write) > +{ > + char tmp_file_path[256] = "/tmp/igt_kmemleak_test_XXXXXX"; > + int fd; > + > + fd = mkstemp(tmp_file_path); > + igt_assert(fd >= 0); > + > + if (test_write) > + write(fd, kmemleak_file_example, strlen(kmemleak_file_example)); > + > + igt_assert(igt_kmemleak_init(tmp_file_path)); > +} > + > +static void test_empty_file(void) > +{ > + test_kmemleak_file(false); > + igt_assert(!igt_kmemleak_found_leaks()); > +} > + > +static void test_non_empty_file(void) > +{ > + test_kmemleak_file(true); > + igt_assert(igt_kmemleak_found_leaks()); > +} > + > +igt_simple_main > +{ > + test_empty_file(); > + test_non_empty_file(); > + test_igt_kmemleak_cp_leaks_file(); Nit: I just recently read through your prior comments, and saw that it's not possible to convert this test list into multiple subtests. That's a bit confusing, though I guess that's because this is a lib test and not a testlist test? It's unfortunate this is the case. I can definitely think of one or two ways we could go about breaking the test into multiple subtests, but it would be quite clunky and over-engineered. Something like: """ int main(int argc, char **argv) { int i; if (argc == 1) { printf("Running subtest: empty\n"); test_empty_file(); printf("Running subtest: non-empty\n"); test_non_empty_file(); printf("Running subtest: cp-leaks-file\n"); test_igt_kmemleak_cp_leaks_file(); return 0; } for (i = 1; i < argc; i++) { char* name = argv[i]; size_t len = strlen(name); printf("Running subtest: %s\n", name); if (!strncmp("empty", name, len)) test_empty_file(); else if (!strncmp("non-empty", name, len)) test_non_empty_file(); else if (!strncmp("cp-leaks-file", name, len)) test_igt_kmemleak_cp_leaks_file(); else printf("No such subtest named %s. Not running\n", name); } return 0; } """ Yeah, let's just stick with what we have currently. Besides, I see that the current implementation follows what is done in igt_stats.c, for example. -Jonathan Cavitt > +} > diff --git a/lib/tests/meson.build b/lib/tests/meson.build > index df8092638..bcbea9ba4 100644 > --- a/lib/tests/meson.build > +++ b/lib/tests/meson.build > @@ -15,6 +15,7 @@ lib_tests = [ > 'igt_ktap_parser', > 'igt_list_only', > 'igt_invalid_subtest_name', > + 'igt_kmemleak', > 'igt_nesting', > 'igt_no_exit', > 'igt_runnercomms_packets', > -- > 2.34.1 > > From patchwork at emeril.freedesktop.org Thu Jan 9 19:24:20 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 19:24:20 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel/kms=5Fdp=5Flink?= =?utf-8?q?train=5Ffallback=3A_Reduce_debug_loglevel_dynamically?= In-Reply-To: <20250109170729.47646-1-pranay.samala@intel.com> References: <20250109170729.47646-1-pranay.samala@intel.com> Message-ID: <173645066028.1716457.17883538339103918920@b555e5b46a47> == Series Details == Series: tests/intel/kms_dp_linktrain_fallback: Reduce debug loglevel dynamically URL : https://patchwork.freedesktop.org/series/143342/ State : success == Summary == CI Bug Log - changes from XEIGT_8184_BAT -> XEIGTPW_12420_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12420_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][3] ([Intel XE#1192]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html * igt at xe_pat@pat-index-xelp at render: - bat-adlp-vf: [DMESG-WARN][5] -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html * igt at xe_vm@shared-pde2-page: - bat-adlp-vf: [DMESG-WARN][7] ([Intel XE#3958] / [Intel XE#3970]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/bat-adlp-vf/igt at xe_vm@shared-pde2-page.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/bat-adlp-vf/igt at xe_vm@shared-pde2-page.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][9] ([Intel XE#1192]) -> [SKIP][10] ([Intel XE#2229] / [Intel XE#455]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8184 -> IGTPW_12420 * Linux: xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c -> xe-2463-424f495e9572bf87a42e3be0aa02ac4777541033 IGTPW_12420: a8fe7fb5d072b53d480730eb01c1bf72f6783988 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8184: ee7a3ac616f55f6ed1b959ff951237099bda86d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c: c9da975358cd0763449f08b7063ee935eace4f8c xe-2463-424f495e9572bf87a42e3be0aa02ac4777541033: 424f495e9572bf87a42e3be0aa02ac4777541033 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 19:28:58 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 19:28:58 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Remove_redundant_hotplug_d?= =?utf-8?q?etection_assertion_=28rev2=29?= In-Reply-To: <20250107205434.969797-1-ramanaidu.naladala@intel.com> References: <20250107205434.969797-1-ramanaidu.naladala@intel.com> Message-ID: <173645093839.1716457.16585916625403705143@b555e5b46a47> == Series Details == Series: Remove redundant hotplug detection assertion (rev2) URL : https://patchwork.freedesktop.org/series/143141/ State : failure == Summary == CI Bug Log - changes from XEIGT_8179_full -> XEIGTPW_12399_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12399_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12399_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_12399_full: ### IGT changes ### #### Possible regressions #### * igt at kms_hdr@bpc-switch-dpms at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][1] +4 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_hdr@bpc-switch-dpms at pipe-a-dp-4.html #### Warnings #### * igt at kms_flip@basic-flip-vs-dpms: - shard-dg2-set2: [SKIP][2] ([Intel XE#2423] / [i915#2575]) -> [FAIL][3] +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip@basic-flip-vs-dpms.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_flip@basic-flip-vs-dpms.html Known issues ------------ Here are the changes found in XEIGTPW_12399_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [PASS][4] -> [SKIP][5] ([Intel XE#1885]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at core_hotunplug@hotunplug-rescan.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at core_hotunplug@hotunplug-rescan.html * igt at core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][6] -> [SKIP][7] ([Intel XE#3453]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at core_setmaster@master-drop-set-shared-fd.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at core_setmaster@master-drop-set-shared-fd.html * igt at core_setmaster@master-drop-set-user: - shard-dg2-set2: [PASS][8] -> [FAIL][9] ([Intel XE#3249]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at core_setmaster@master-drop-set-user.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at core_setmaster@master-drop-set-user.html * igt at core_setmaster_vs_auth: - shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#2423]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at core_setmaster_vs_auth.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at core_setmaster_vs_auth.html * igt at fbdev@nullptr: - shard-dg2-set2: [PASS][12] -> [SKIP][13] ([Intel XE#2134]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at fbdev@nullptr.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at fbdev@nullptr.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1125]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-8/igt at intel_hwmon@hwmon-write.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#3768]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-8/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407]) +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-5/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +7 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-4/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2191]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-6/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#367]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-6/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1512]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-4/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +9 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-8/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@bad-rotation-90-y-tiled-ccs at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#787]) +76 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at kms_ccs@bad-rotation-90-y-tiled-ccs at pipe-a-hdmi-a-6.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2669]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#3433]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-4/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-edp-1.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#3432]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-4/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +10 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][27] ([Intel XE#1727] / [Intel XE#3124]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-d-hdmi-a-6.html * igt at kms_chamelium_color@degamma: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#306]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-4/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_frames@dp-crc-multiple: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_chamelium_frames@dp-crc-multiple.html * igt at kms_chamelium_hpd@dp-hpd: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#373]) +8 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-6/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#3278]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-5/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][32] ([Intel XE#1178]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at kms_content_protection@atomic-dpms at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2321]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-6/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-64x21: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1424]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-5/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][35] ([Intel XE#309]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-8/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-lnl: NOTRUN -> [SKIP][36] ([Intel XE#323]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-5/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_feature_discovery@chamelium: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#701]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-8/igt at kms_feature_discovery@chamelium.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1421]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-8/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@bo-too-big-interruptible: - shard-lnl: NOTRUN -> [INCOMPLETE][39] ([Intel XE#1504]) +1 other test incomplete [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-6/igt at kms_flip@bo-too-big-interruptible.html * igt at kms_flip@plain-flip-ts-check at a-edp1: - shard-lnl: [PASS][40] -> [FAIL][41] ([Intel XE#886]) +2 other tests fail [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-1/igt at kms_flip@plain-flip-ts-check at a-edp1.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-8/igt at kms_flip@plain-flip-ts-check at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [PASS][42] -> [SKIP][43] ([Intel XE#2136]) +35 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/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-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1401]) +5 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-8/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#455]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt at kms_frontbuffer_tracking@drrs-modesetfrombusy: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#651]) +9 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-4/igt at kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][48] -> [SKIP][49] ([Intel XE#2136] / [Intel XE#2351]) +16 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#656]) +26 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-5/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1469]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-4/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#653]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_getfb@getfb-handle-zero: - shard-dg2-set2: [PASS][53] -> [SKIP][54] ([Intel XE#2423] / [i915#2575]) +146 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_getfb@getfb-handle-zero.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_getfb@getfb-handle-zero.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#2927]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-6/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#356]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-4/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#2763]) +11 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-5/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#2763]) +8 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/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-dpms: - shard-lnl: [PASS][60] -> [FAIL][61] ([Intel XE#718]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-4/igt at kms_pm_dc@dc5-dpms.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][62] ([Intel XE#1430]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-6/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: [PASS][63] -> [SKIP][64] ([Intel XE#2446]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_pm_rpm@basic-pci-d3-state.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2893]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-8/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr@fbc-pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1406]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-4/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1127]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1435]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-5/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1499]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-6/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#756]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-4/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at xe_compute_preempt@compute-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at xe_compute_preempt@compute-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#2905]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug_online@resume-one: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#2905]) +8 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-6/igt at xe_eudebug_online@resume-one.html * igt at xe_evict@evict-beng-cm-threads-small: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#688]) +7 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-6/igt at xe_evict@evict-beng-cm-threads-small.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][75] -> [TIMEOUT][76] ([Intel XE#1473]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_balancer@twice-virtual-basic: - shard-dg2-set2: [PASS][77] -> [SKIP][78] ([Intel XE#1130]) +255 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_exec_balancer@twice-virtual-basic.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at xe_exec_balancer@twice-virtual-basic.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1392]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-8/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html * igt at xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1416]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-8/igt at xe_mmap@vram.html * igt at xe_module_load@reload-no-display: - shard-dg2-set2: [PASS][81] -> [FAIL][82] ([Intel XE#3546]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_module_load@reload-no-display.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at xe_module_load@reload-no-display.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][83] ([Intel XE#1173]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-6/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1948]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-4/igt at xe_pm@d3hot-mmap-vram.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: NOTRUN -> [FAIL][86] ([Intel XE#958]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-4/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-engines: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#944]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-5/igt at xe_query@multigpu-query-engines.html #### Possible fixes #### * igt at core_getversion@all-cards: - shard-dg2-set2: [FAIL][88] ([Intel XE#3440]) -> [PASS][89] +1 other test pass [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_getversion@all-cards.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at core_getversion@all-cards.html * igt at core_hotunplug@unplug-rescan: - shard-dg2-set2: [SKIP][90] ([Intel XE#1885]) -> [PASS][91] +1 other test pass [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_hotunplug@unplug-rescan.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at core_hotunplug@unplug-rescan.html * igt at fbdev@write: - shard-dg2-set2: [SKIP][92] ([Intel XE#2134]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at fbdev@write.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at fbdev@write.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [FAIL][94] ([Intel XE#911]) -> [PASS][95] +3 other tests pass [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2-set2: [SKIP][96] ([Intel XE#2423] / [i915#2575]) -> [PASS][97] +116 other tests pass [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-dg2-set2: [SKIP][98] ([Intel XE#2136]) -> [PASS][99] +29 other tests pass [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/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-linear-to-64bpp-linear-upscaling: - shard-dg2-set2: [SKIP][100] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][101] +17 other tests pass [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html * igt at kms_pm_rpm@modeset-stress-extra-wait: - shard-dg2-set2: [SKIP][102] ([Intel XE#2446]) -> [PASS][103] +4 other tests pass [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_rpm@modeset-stress-extra-wait.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_pm_rpm@modeset-stress-extra-wait.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [FAIL][104] ([Intel XE#2159]) -> [PASS][105] +1 other test pass [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-5/igt at kms_vrr@cmrr at pipe-a-edp-1.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-6/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at testdisplay: - shard-dg2-set2: [SKIP][106] ([Intel XE#2423]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at testdisplay.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at testdisplay.html * igt at xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: [SKIP][108] ([Intel XE#1130]) -> [PASS][109] +215 other tests pass [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_balancer@once-parallel-rebind.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at xe_exec_balancer@once-parallel-rebind.html * igt at xe_exec_compute_mode@many-userptr-rebind: - shard-dg2-set2: [FAIL][110] -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_exec_compute_mode@many-userptr-rebind.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at xe_exec_compute_mode@many-userptr-rebind.html * igt at xe_pm@s4-basic: - shard-lnl: [ABORT][112] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-2/igt at xe_pm@s4-basic.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-4/igt at xe_pm@s4-basic.html * igt at xe_pm@s4-vm-bind-prefetch: - shard-lnl: [ABORT][114] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-2/igt at xe_pm@s4-vm-bind-prefetch.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-lnl-5/igt at xe_pm@s4-vm-bind-prefetch.html #### Warnings #### * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][116] ([Intel XE#316]) -> [SKIP][117] ([Intel XE#2136]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][118] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][119] ([Intel XE#316]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][120] ([Intel XE#316]) -> [SKIP][121] ([Intel XE#2136] / [Intel XE#2351]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@linear-16bpp-rotate-90.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2-set2: [SKIP][122] ([Intel XE#2136]) -> [SKIP][123] ([Intel XE#316]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@x-tiled-64bpp-rotate-270.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_big_fb@x-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][124] ([Intel XE#607]) -> [SKIP][125] ([Intel XE#2136] / [Intel XE#2351]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/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-64bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][126] ([Intel XE#1124]) -> [SKIP][127] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][128] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][129] ([Intel XE#1124]) +6 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][130] ([Intel XE#2136]) -> [SKIP][131] ([Intel XE#1124]) +9 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][132] ([Intel XE#2136]) -> [SKIP][133] ([Intel XE#607]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/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-dg2-set2: [SKIP][134] ([Intel XE#1124]) -> [SKIP][135] ([Intel XE#2136]) +11 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/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-2560x1440p: - shard-dg2-set2: [SKIP][136] ([Intel XE#2423] / [i915#2575]) -> [SKIP][137] ([Intel XE#367]) +6 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: [SKIP][138] ([Intel XE#2191]) -> [SKIP][139] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-dg2-set2: [SKIP][140] ([Intel XE#367]) -> [SKIP][141] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][142] ([Intel XE#2907]) -> [SKIP][143] ([Intel XE#2136]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][144] ([Intel XE#2136]) -> [SKIP][145] ([Intel XE#2907]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][146] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][147] ([Intel XE#2136]) +14 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][148] ([Intel XE#2136]) -> [SKIP][149] ([Intel XE#3442]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][150] ([Intel XE#2136]) -> [SKIP][151] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][152] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][153] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-dg2-set2: [SKIP][154] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][155] ([Intel XE#455] / [Intel XE#787]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [SKIP][156] ([Intel XE#2136]) -> [INCOMPLETE][157] ([Intel XE#1727] / [Intel XE#3124]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][158] ([Intel XE#314]) -> [SKIP][159] ([Intel XE#2136] / [Intel XE#2351]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_cdclk@mode-transition-all-outputs.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: [SKIP][160] ([Intel XE#306]) -> [SKIP][161] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_chamelium_color@ctm-red-to-blue.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_color@degamma: - shard-dg2-set2: [SKIP][162] ([Intel XE#2423] / [i915#2575]) -> [SKIP][163] ([Intel XE#306]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_chamelium_color@degamma.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_edid@hdmi-edid-read: - shard-dg2-set2: [SKIP][164] ([Intel XE#373]) -> [SKIP][165] ([Intel XE#2423] / [i915#2575]) +13 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_chamelium_edid@hdmi-edid-read.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_chamelium_edid@hdmi-edid-read.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: [SKIP][166] ([Intel XE#2423] / [i915#2575]) -> [SKIP][167] ([Intel XE#373]) +13 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_chamelium_hpd@hdmi-hpd.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_content_protection@atomic-dpms: - shard-dg2-set2: [SKIP][168] ([Intel XE#2423] / [i915#2575]) -> [FAIL][169] ([Intel XE#1178]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_content_protection@atomic-dpms.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-type-0: - shard-dg2-set2: [SKIP][170] ([Intel XE#307]) -> [SKIP][171] ([Intel XE#2423] / [i915#2575]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_content_protection@dp-mst-type-0.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][172] ([Intel XE#2423] / [i915#2575]) -> [SKIP][173] ([Intel XE#307]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_content_protection@dp-mst-type-1.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-dg2-set2: [FAIL][174] ([Intel XE#1178]) -> [SKIP][175] ([Intel XE#2423] / [i915#2575]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_content_protection@legacy.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-dg2-set2: [INCOMPLETE][176] ([Intel XE#2715]) -> [FAIL][177] ([Intel XE#1178]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_content_protection@lic-type-0.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][178] -> [FAIL][179] ([Intel XE#3304]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_content_protection@lic-type-0 at pipe-a-dp-4.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_content_protection@lic-type-0 at pipe-a-dp-4.html * igt at kms_content_protection@lic-type-1: - shard-dg2-set2: [SKIP][180] ([Intel XE#2423] / [i915#2575]) -> [SKIP][181] ([Intel XE#455]) +6 other tests skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_content_protection@lic-type-1.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@uevent: - shard-dg2-set2: [FAIL][182] ([Intel XE#1188]) -> [SKIP][183] ([Intel XE#2423] / [i915#2575]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_content_protection@uevent.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2-set2: [SKIP][184] ([Intel XE#308]) -> [SKIP][185] ([Intel XE#2423] / [i915#2575]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_cursor_crc@cursor-offscreen-512x170.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][186] ([Intel XE#2423] / [i915#2575]) -> [SKIP][187] ([Intel XE#308]) +3 other tests skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_crc@cursor-offscreen-512x512.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][188] ([Intel XE#2423] / [i915#2575]) -> [SKIP][189] ([Intel XE#323]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2-set2: [SKIP][190] ([Intel XE#323]) -> [SKIP][191] ([Intel XE#2423] / [i915#2575]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2-set2: [SKIP][192] ([Intel XE#2136]) -> [SKIP][193] ([Intel XE#455]) +5 other tests skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_dsc@dsc-fractional-bpp.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-formats: - shard-dg2-set2: [SKIP][194] ([Intel XE#455]) -> [SKIP][195] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_dsc@dsc-with-formats.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_dsc@dsc-with-formats.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][196] ([Intel XE#2423] / [i915#2575]) -> [SKIP][197] ([Intel XE#701]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_feature_discovery@chamelium.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@dp-mst: - shard-dg2-set2: [SKIP][198] ([Intel XE#2423] / [i915#2575]) -> [SKIP][199] ([Intel XE#1137]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_feature_discovery@dp-mst.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][200] ([Intel XE#1135]) -> [SKIP][201] ([Intel XE#2423] / [i915#2575]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_feature_discovery@psr1.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_feature_discovery@psr1.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][202] ([Intel XE#301]) -> [SKIP][203] ([Intel XE#2423] / [i915#2575]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][204] ([Intel XE#455]) -> [SKIP][205] ([Intel XE#2136]) +7 other tests skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/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_12399/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][206] ([Intel XE#2136]) -> [SKIP][207] ([Intel XE#651]) +27 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][208] ([Intel XE#651]) -> [SKIP][209] ([Intel XE#2136]) +25 other tests skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][210] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][211] ([Intel XE#651]) +9 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-suspend.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][212] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][213] ([Intel XE#658]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-tiling-y.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][214] ([Intel XE#651]) -> [SKIP][215] ([Intel XE#2136] / [Intel XE#2351]) +21 other tests skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][216] ([Intel XE#658]) -> [SKIP][217] ([Intel XE#2136] / [Intel XE#2351]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][218] ([Intel XE#653]) -> [SKIP][219] ([Intel XE#2136] / [Intel XE#2351]) +12 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2-set2: [SKIP][220] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][221] ([Intel XE#653]) +5 other tests skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][222] ([Intel XE#1158]) -> [SKIP][223] ([Intel XE#2136]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][224] ([Intel XE#653]) -> [SKIP][225] ([Intel XE#2136]) +35 other tests skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-suspend: - shard-dg2-set2: [SKIP][226] ([Intel XE#2136]) -> [SKIP][227] ([Intel XE#653]) +33 other tests skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-suspend.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-suspend.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][228] ([Intel XE#2136]) -> [SKIP][229] ([Intel XE#346]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_joiner@basic-big-joiner.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: [SKIP][230] ([Intel XE#2925]) -> [SKIP][231] ([Intel XE#2136]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][232] ([Intel XE#2423] / [i915#2575]) -> [SKIP][233] ([Intel XE#356]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][234] ([Intel XE#361]) -> [SKIP][235] ([Intel XE#2423] / [i915#2575]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2-set2: [SKIP][236] ([Intel XE#2423] / [i915#2575]) -> [SKIP][237] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_pm_backlight@basic-brightness: - shard-dg2-set2: [SKIP][238] ([Intel XE#2136]) -> [SKIP][239] ([Intel XE#870]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_backlight@basic-brightness.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][240] ([Intel XE#2136]) -> [SKIP][241] ([Intel XE#2938]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_backlight@brightness-with-dpms.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][242] ([Intel XE#870]) -> [SKIP][243] ([Intel XE#2136]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_pm_backlight@fade-with-suspend.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: [SKIP][244] ([Intel XE#1129]) -> [SKIP][245] ([Intel XE#2136]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_pm_dc@dc5-psr.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: [SKIP][246] ([Intel XE#908]) -> [SKIP][247] ([Intel XE#2136] / [Intel XE#2351]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_pm_dc@dc6-dpms.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][248] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][249] ([Intel XE#1129]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_dc@dc6-psr.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_pm_dc@dc6-psr.html * igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][250] ([Intel XE#2136]) -> [SKIP][251] ([Intel XE#1489]) +13 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][252] ([Intel XE#1489]) -> [SKIP][253] ([Intel XE#2136]) +11 other tests skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2-set2: [SKIP][254] ([Intel XE#1122]) -> [SKIP][255] ([Intel XE#2136]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_psr2_su@page_flip-p010.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-no-drrs: - shard-dg2-set2: [SKIP][256] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][257] ([Intel XE#2850] / [Intel XE#929]) +7 other tests skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr@fbc-pr-no-drrs.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: [SKIP][258] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][259] ([Intel XE#2136]) +15 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_psr@fbc-psr-sprite-render.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_psr@fbc-psr-sprite-render.html * igt at kms_psr@fbc-psr2-primary-blt: - shard-dg2-set2: [SKIP][260] ([Intel XE#2136]) -> [SKIP][261] ([Intel XE#2850] / [Intel XE#929]) +12 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr@fbc-psr2-primary-blt.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at kms_psr@fbc-psr2-primary-blt.html * igt at kms_psr@psr-cursor-plane-move: - shard-dg2-set2: [SKIP][262] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][263] ([Intel XE#2351]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_psr@psr-cursor-plane-move.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_psr@psr-cursor-plane-move.html * igt at kms_psr@psr-cursor-render: - shard-dg2-set2: [SKIP][264] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][265] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_psr@psr-cursor-render.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_psr@psr-cursor-render.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: [SKIP][266] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][267] ([Intel XE#2939]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][268] ([Intel XE#1127]) -> [SKIP][269] ([Intel XE#2423] / [i915#2575]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/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][270] ([Intel XE#3414]) -> [SKIP][271] ([Intel XE#2423] / [i915#2575]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2-set2: [SKIP][272] ([Intel XE#2423] / [i915#2575]) -> [SKIP][273] ([Intel XE#3414]) +3 other tests skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][274] ([Intel XE#2423] / [i915#2575]) -> [FAIL][275] ([Intel XE#1729]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@cmrr: - shard-dg2-set2: [SKIP][276] ([Intel XE#2168]) -> [SKIP][277] ([Intel XE#2423] / [i915#2575]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_vrr@cmrr.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_vrr@cmrr.html * igt at kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][278] ([Intel XE#455]) -> [SKIP][279] ([Intel XE#2423] / [i915#2575]) +14 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_vrr@flip-dpms.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at kms_vrr@flip-dpms.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: [SKIP][280] ([Intel XE#2423] / [i915#2575]) -> [SKIP][281] ([Intel XE#756]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_writeback@writeback-check-output-xrgb2101010.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: [SKIP][282] ([Intel XE#756]) -> [SKIP][283] ([Intel XE#2423] / [i915#2575]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_writeback@writeback-fb-id-xrgb2101010.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/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][284] ([Intel XE#2423] / [i915#2575]) -> [SKIP][285] ([Intel XE#1091] / [Intel XE#2849]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][286] ([Intel XE#1130]) -> [SKIP][287] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_compute_preempt@compute-preempt.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at xe_compute_preempt@compute-preempt.html * igt at xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: [SKIP][288] ([Intel XE#1123]) -> [SKIP][289] ([Intel XE#1130]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_copy_basic@mem-copy-linear-0x3fff.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at xe_copy_basic@mem-copy-linear-0x3fff.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][290] ([Intel XE#1126]) -> [SKIP][291] ([Intel XE#1130]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0xfd.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][292] ([Intel XE#1130]) -> [SKIP][293] ([Intel XE#1126]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0xfffe.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0xfffe.html * igt at xe_eudebug@basic-client-th: - shard-dg2-set2: [SKIP][294] ([Intel XE#2905]) -> [SKIP][295] ([Intel XE#1130]) +17 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_eudebug@basic-client-th.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at xe_eudebug@basic-client-th.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: [SKIP][296] ([Intel XE#1130]) -> [SKIP][297] ([Intel XE#3889]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/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][298] ([Intel XE#1600]) -> [SKIP][299] ([Intel XE#1130]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_evict@evict-beng-large-multi-vm-cm.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at xe_evict@evict-beng-large-multi-vm-cm.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [SKIP][300] ([Intel XE#1130]) -> [TIMEOUT][301] ([Intel XE#1473] / [Intel XE#402]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_evict@evict-beng-mixed-many-threads-small.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][302] ([Intel XE#1473]) -> [SKIP][303] ([Intel XE#1130]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_evict@evict-mixed-many-threads-large.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_exec_fault_mode@twice-bindexecqueue-rebind-imm: - shard-dg2-set2: [SKIP][304] ([Intel XE#1130]) -> [SKIP][305] ([Intel XE#288]) +33 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][306] ([Intel XE#288]) -> [SKIP][307] ([Intel XE#1130]) +40 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/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][308] ([Intel XE#1130]) -> [SKIP][309] ([Intel XE#2360]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-435/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: [SKIP][310] ([Intel XE#1130]) -> [SKIP][311] ([Intel XE#2905]) +11 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_sip_eudebug@breakpoint-writesip.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: [SKIP][312] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][313] ([Intel XE#1130]) +14 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_oa@closed-fd-and-unmapped-access.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_oa@non-system-wide-paranoid: - shard-dg2-set2: [SKIP][314] ([Intel XE#1130]) -> [SKIP][315] ([Intel XE#2541] / [Intel XE#3573]) +10 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_oa@non-system-wide-paranoid.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-434/igt at xe_oa@non-system-wide-paranoid.html * igt at xe_peer2peer@read: - shard-dg2-set2: [SKIP][316] ([Intel XE#1061]) -> [FAIL][317] ([Intel XE#1173]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_peer2peer@read.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at xe_peer2peer@read.html * igt at xe_pm@d3cold-basic: - shard-dg2-set2: [SKIP][318] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][319] ([Intel XE#1130]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_pm@d3cold-basic.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at xe_pm@d3cold-basic.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: [SKIP][320] ([Intel XE#1130]) -> [SKIP][321] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_pm@s3-d3cold-basic-exec.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: [SKIP][322] ([Intel XE#579]) -> [SKIP][323] ([Intel XE#1130]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_pm@vram-d3cold-threshold.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-config: - shard-dg2-set2: [SKIP][324] ([Intel XE#944]) -> [SKIP][325] ([Intel XE#1130]) +5 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_query@multigpu-query-config.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-466/igt at xe_query@multigpu-query-config.html * igt at xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][326] ([Intel XE#1130]) -> [SKIP][327] ([Intel XE#944]) +2 other tests skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_query@multigpu-query-engines.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/shard-dg2-436/igt at xe_query@multigpu-query-engines.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [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#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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [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#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#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [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#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#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [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#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#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#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#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [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#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [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#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#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#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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [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#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#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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [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 [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_8179 -> IGTPW_12399 * Linux: xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571 -> xe-2452-8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 IGTPW_12399: 4a988bee49dc8aa63788fc23ca223ff62aec856c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571: 89042e0bb417f4d67280e1d7fa9bbcca51734571 xe-2452-8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5: 8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12399/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramanaidu.naladala at intel.com Thu Jan 9 20:09:09 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Fri, 10 Jan 2025 01:39:09 +0530 Subject: [PATCH i-g-t v3 0/2] Remove redundant hotplug detection assertion Message-ID: <20250109200911.1243517-1-ramanaidu.naladala@intel.com> Remove Hotplug assertion from chamelium edid test. Naladala Ramanaidu (2): tests/chamelium/kms_chamelium_edid: Fix hotplug detection with connector reprobe HAX patch do not merge tests/chamelium/kms_chamelium_edid.c | 4 +- tests/intel-ci/fast-feedback.testlist | 171 +------------- tests/intel-ci/xe-fast-feedback.testlist | 276 +---------------------- 3 files changed, 10 insertions(+), 441 deletions(-) -- 2.43.0 From ramanaidu.naladala at intel.com Thu Jan 9 20:09:10 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Fri, 10 Jan 2025 01:39:10 +0530 Subject: [PATCH i-g-t v3 1/2] tests/chamelium/kms_chamelium_edid: Fix hotplug detection with connector reprobe In-Reply-To: <20250109200911.1243517-1-ramanaidu.naladala@intel.com> References: <20250109200911.1243517-1-ramanaidu.naladala@intel.com> Message-ID: <20250109200911.1243517-2-ramanaidu.naladala@intel.com> Ensure connector is reprobed and detected as disconnected before plugging in the port. v1: Merging two patches into a single patch. (Kunal) Signed-off-by: Naladala Ramanaidu Reviewed-by: Kunal Joshi --- tests/chamelium/kms_chamelium_edid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/chamelium/kms_chamelium_edid.c b/tests/chamelium/kms_chamelium_edid.c index e572a6468..d2d85cad5 100644 --- a/tests/chamelium/kms_chamelium_edid.c +++ b/tests/chamelium/kms_chamelium_edid.c @@ -419,12 +419,12 @@ static void test_suspend_resume_edid_change(chamelium_data_t *data, chamelium_reset_state(&data->display, data->chamelium, port, data->ports, data->port_count); - /* Catch the event and flush all remaining ones. */ - igt_assert(igt_hotplug_detected(mon, CHAMELIUM_HOTPLUG_TIMEOUT)); igt_flush_uevents(mon); /* First plug in the port */ chamelium_set_edid(data, port, edid); + igt_assert(chamelium_reprobe_connector(&data->display, data->chamelium, + port) == DRM_MODE_DISCONNECTED); chamelium_plug(data->chamelium, port); igt_assert(igt_hotplug_detected(mon, CHAMELIUM_HOTPLUG_TIMEOUT)); -- 2.43.0 From ramanaidu.naladala at intel.com Thu Jan 9 20:09:11 2025 From: ramanaidu.naladala at intel.com (Naladala Ramanaidu) Date: Fri, 10 Jan 2025 01:39:11 +0530 Subject: [PATCH i-g-t v3 2/2] HAX patch do not merge In-Reply-To: <20250109200911.1243517-1-ramanaidu.naladala@intel.com> References: <20250109200911.1243517-1-ramanaidu.naladala@intel.com> Message-ID: <20250109200911.1243517-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..3259b7b38 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_chamelium_edid@dp-edid-change-during-suspend +igt at kms_chamelium_edid@dp-edid-change-during-hibernate +igt at kms_chamelium_edid@hdmi-edid-change-during-suspend +igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index 0234d3e72..8fb01dca6 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_chamelium_edid@dp-edid-change-during-suspend +igt at kms_chamelium_edid@dp-edid-change-during-hibernate +igt at kms_chamelium_edid@hdmi-edid-change-during-suspend +igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate -- 2.43.0 From patchwork at emeril.freedesktop.org Thu Jan 9 20:37:15 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 20:37:15 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_lib/igt=5Fkmemleak=3A_lib?= =?utf-8?q?rary_to_interact_with_kmemleak_=28rev2=29?= In-Reply-To: <20250109181027.90402-1-peter.senna@linux.intel.com> References: <20250109181027.90402-1-peter.senna@linux.intel.com> Message-ID: <173645503540.1723339.14281937234503972914@b555e5b46a47> == Series Details == Series: lib/igt_kmemleak: library to interact with kmemleak (rev2) URL : https://patchwork.freedesktop.org/series/142673/ State : failure == Summary == CI Bug Log - changes from IGT_8184 -> IGTPW_12421 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12421 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12421, 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_12421/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12421: ### IGT changes ### #### Possible regressions #### * igt at i915_selftest@live at gt_mocs: - bat-adlp-11: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8184/bat-adlp-11/igt at i915_selftest@live at gt_mocs.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/bat-adlp-11/igt at i915_selftest@live at gt_mocs.html Known issues ------------ Here are the changes found in IGTPW_12421 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-adlp-11: [PASS][3] -> [ABORT][4] ([i915#13399]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8184/bat-adlp-11/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/bat-adlp-11/igt at i915_selftest@live.html - bat-twl-2: [PASS][5] -> [INCOMPLETE][6] ([i915#9413]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8184/bat-twl-2/igt at i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/bat-twl-2/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_lrc: - bat-twl-2: [PASS][7] -> [INCOMPLETE][8] ([i915#12445] / [i915#9413]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8184/bat-twl-2/igt at i915_selftest@live at gt_lrc.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/bat-twl-2/igt at i915_selftest@live at gt_lrc.html #### Possible fixes #### * igt at i915_selftest@live: - 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_8184/bat-mtlp-6/igt at i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/bat-mtlp-6/igt at i915_selftest@live.html [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13399 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8184 -> IGTPW_12421 * Linux: CI_DRM_15930 -> CI_DRM_15934 CI-20190529: 20190529 CI_DRM_15930: c9da975358cd0763449f08b7063ee935eace4f8c @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15934: c066c8811476b15e9eda121713b5518d21f2347e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12421: bdc8ea9492db57d40ecd569d84681108dfe488fb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8184: ee7a3ac616f55f6ed1b959ff951237099bda86d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 20:51:28 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 20:51:28 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fexec=5Fca?= =?utf-8?q?pture=3A_Add_xe=5Fexec=5Fcapture_test_=28rev9=29?= In-Reply-To: <20250108000410.469269-1-zhanjun.dong@intel.com> References: <20250108000410.469269-1-zhanjun.dong@intel.com> Message-ID: <173645588840.1739475.13242884200227292182@b555e5b46a47> == Series Details == Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev9) URL : https://patchwork.freedesktop.org/series/140007/ State : failure == Summary == CI Bug Log - changes from XEIGT_8179_full -> XEIGTPW_12400_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12400_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12400_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_12400_full: ### IGT changes ### #### Possible regressions #### * igt at kms_vblank@query-forked at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at kms_vblank@query-forked at pipe-a-hdmi-a-6.html #### Warnings #### * igt at kms_vblank@query-forked: - shard-dg2-set2: [SKIP][2] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_vblank@query-forked.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at kms_vblank@query-forked.html New tests --------- New tests have been introduced between XEIGT_8179_full and XEIGTPW_12400_full: ### New IGT tests (1) ### * igt at xe_exec_capture@reset: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12400_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@unbind-rebind: - shard-dg2-set2: [PASS][4] -> [SKIP][5] ([Intel XE#1885]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at core_hotunplug@unbind-rebind.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at core_hotunplug@unbind-rebind.html * igt at core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][6] -> [SKIP][7] ([Intel XE#3453]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at core_setmaster@master-drop-set-shared-fd.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at core_setmaster@master-drop-set-shared-fd.html * igt at fbdev@nullptr: - shard-dg2-set2: [PASS][8] -> [SKIP][9] ([Intel XE#2134]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at fbdev@nullptr.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at fbdev@nullptr.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1125]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-8/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1466]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-4/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3768]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-5/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [PASS][13] -> [SKIP][14] ([Intel XE#2423] / [i915#2575]) +122 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#2423] / [i915#2575]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407]) +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-6/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1467]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-4/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +7 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-4/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2191]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-6/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#367]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-6/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1512]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-8/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][22] -> [SKIP][23] ([Intel XE#2136] / [Intel XE#2351]) +14 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +11 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-4/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2669]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-4/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#3433]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-4/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-edp-1.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#3432]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-5/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs at pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#787]) +125 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs at pipe-d-hdmi-a-6.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][30] ([Intel XE#1727] / [Intel XE#3113]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-dp-4.html * igt at kms_chamelium_color@degamma: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#306]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-8/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_frames@dp-crc-multiple: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#373]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at kms_chamelium_frames@dp-crc-multiple.html * igt at kms_chamelium_hpd@dp-hpd: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#373]) +8 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-8/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#3278]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-5/igt at kms_content_protection@atomic-dpms.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2321]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-4/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-64x21: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1424]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-8/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][37] ([Intel XE#309]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-8/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][38] -> [FAIL][39] ([Intel XE#1475]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-4/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-8/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-lnl: NOTRUN -> [SKIP][40] ([Intel XE#323]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([i915#3804]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6.html * igt at kms_dp_aux_dev: - shard-dg2-set2: [PASS][42] -> [SKIP][43] ([Intel XE#2423]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_dp_aux_dev.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_dp_aux_dev.html * igt at kms_feature_discovery@chamelium: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#701]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-8/igt at kms_feature_discovery@chamelium.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][45] ([Intel XE#301]) +2 other tests fail [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1421]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-8/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@bo-too-big-interruptible: - shard-lnl: NOTRUN -> [INCOMPLETE][47] ([Intel XE#1504]) +1 other test incomplete [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-8/igt at kms_flip@bo-too-big-interruptible.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][48] ([Intel XE#3321]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [PASS][49] -> [SKIP][50] ([Intel XE#2136]) +37 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/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-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1401]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#455]) +6 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt at kms_frontbuffer_tracking@basic: - shard-dg2-set2: [PASS][54] -> [SKIP][55] ([Intel XE#2351]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@basic.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_frontbuffer_tracking@basic.html * igt at kms_frontbuffer_tracking@drrs-modesetfrombusy: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#651]) +9 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-4/igt at kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#656]) +28 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1469]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-4/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#653]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2927]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-8/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#356]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-8/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][62] -> [FAIL][63] ([Intel XE#361]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#2763]) +15 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-4/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#2763]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/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-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#2763] / [Intel XE#455]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][67] -> [FAIL][68] ([Intel XE#718]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-4/igt at kms_pm_dc@dc5-dpms.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][69] ([Intel XE#1430]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-6/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: [PASS][70] -> [SKIP][71] ([Intel XE#2446]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_pm_rpm@basic-pci-d3-state.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_pm_rpm@i2c: - shard-lnl: [PASS][72] -> [SKIP][73] ([Intel XE#3289]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-5/igt at kms_pm_rpm@i2c.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-5/igt at kms_pm_rpm@i2c.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1439] / [Intel XE#3141]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-5/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#2893]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-6/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr@fbc-pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1406]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-4/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1127]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1435]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1499]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-4/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#756]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-8/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#1280] / [Intel XE#455]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#2905]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug@basic-vm-bind: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#2905]) +7 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-6/igt at xe_eudebug@basic-vm-bind.html * igt at xe_evict@evict-beng-cm-threads-small: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#688]) +8 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-6/igt at xe_evict@evict-beng-cm-threads-small.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1392]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-8/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt at xe_exec_capture@reset (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#1130]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at xe_exec_capture@reset.html * igt at xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-lnl: [PASS][87] -> [DMESG-WARN][88] ([Intel XE#3467]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-5/igt at xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-5/igt at xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt at xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1416]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-5/igt at xe_mmap@vram.html * igt at xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-6/igt at xe_pm@d3cold-mmap-system.html * igt at xe_query@multigpu-query-engines: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#944]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-6/igt at xe_query@multigpu-query-engines.html * igt at xe_vm@munmap-style-unbind-many-either-side-partial: - shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#1130]) +255 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_vm@munmap-style-unbind-many-either-side-partial.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at xe_vm@munmap-style-unbind-many-either-side-partial.html #### Possible fixes #### * igt at core_hotunplug@unplug-rescan: - shard-dg2-set2: [SKIP][94] ([Intel XE#1885]) -> [PASS][95] +1 other test pass [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_hotunplug@unplug-rescan.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at core_hotunplug@unplug-rescan.html * igt at core_setmaster@master-drop-set-root: - shard-dg2-set2: [FAIL][96] ([Intel XE#3249]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_setmaster@master-drop-set-root.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@read: - shard-dg2-set2: [SKIP][98] ([Intel XE#2134]) -> [PASS][99] +3 other tests pass [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at fbdev@read.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at fbdev@read.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [FAIL][100] ([Intel XE#911]) -> [PASS][101] +3 other tests pass [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_big_fb@4-tiled-16bpp-rotate-180: - shard-dg2-set2: [SKIP][102] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][103] +10 other tests pass [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@4-tiled-16bpp-rotate-180.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at kms_big_fb@4-tiled-16bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][104] ([Intel XE#2136]) -> [PASS][105] +34 other tests pass [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2-set2: [SKIP][106] ([Intel XE#2423] / [i915#2575]) -> [PASS][107] +97 other tests pass [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4: - shard-dg2-set2: [FAIL][108] ([Intel XE#361]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html * igt at kms_pm_rpm@modeset-stress-extra-wait: - shard-dg2-set2: [SKIP][110] ([Intel XE#2446]) -> [PASS][111] +5 other tests pass [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_rpm@modeset-stress-extra-wait.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at kms_pm_rpm@modeset-stress-extra-wait.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [FAIL][112] ([Intel XE#2159]) -> [PASS][113] +1 other test pass [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-5/igt at kms_vrr@cmrr at pipe-a-edp-1.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-5/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at testdisplay: - shard-dg2-set2: [SKIP][114] ([Intel XE#2423]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at testdisplay.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at testdisplay.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][116] ([Intel XE#1473]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_evict@evict-mixed-many-threads-large.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: [SKIP][118] ([Intel XE#1130]) -> [PASS][119] +208 other tests pass [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_balancer@once-parallel-rebind.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at xe_exec_balancer@once-parallel-rebind.html * igt at xe_live_ktest@xe_bo: - shard-dg2-set2: [SKIP][120] ([Intel XE#2229] / [Intel XE#455]) -> [PASS][121] +1 other test pass [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_live_ktest@xe_bo.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-dg2-set2: [SKIP][122] ([Intel XE#2229]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_module_load@reload: - shard-dg2-set2: [FAIL][124] ([Intel XE#3546]) -> [PASS][125] +1 other test pass [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_module_load@reload.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at xe_module_load@reload.html * igt at xe_pm@s4-basic: - shard-lnl: [ABORT][126] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-2/igt at xe_pm@s4-basic.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-5/igt at xe_pm@s4-basic.html * igt at xe_pm@s4-vm-bind-prefetch: - shard-lnl: [ABORT][128] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-2/igt at xe_pm@s4-vm-bind-prefetch.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-lnl-4/igt at xe_pm@s4-vm-bind-prefetch.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][130] ([Intel XE#2423] / [i915#2575]) -> [SKIP][131] ([Intel XE#623]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][132] ([Intel XE#873]) -> [SKIP][133] ([Intel XE#2423] / [i915#2575]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_async_flips@invalid-async-flip.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][134] ([Intel XE#2423] / [i915#2575]) -> [SKIP][135] ([Intel XE#3768]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_async_flips@invalid-async-flip-atomic.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg2-set2: [SKIP][136] ([Intel XE#316]) -> [SKIP][137] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][138] ([Intel XE#316]) -> [SKIP][139] ([Intel XE#2136]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][140] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][141] ([Intel XE#316]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2-set2: [SKIP][142] ([Intel XE#2136]) -> [SKIP][143] ([Intel XE#316]) +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@x-tiled-16bpp-rotate-270.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_big_fb@x-tiled-16bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-dg2-set2: [SKIP][144] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][145] ([Intel XE#619]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@y-tiled-addfb.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][146] ([Intel XE#607]) -> [SKIP][147] ([Intel XE#2136] / [Intel XE#2351]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/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][148] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][149] ([Intel XE#1124]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2-set2: [SKIP][150] ([Intel XE#1124]) -> [SKIP][151] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@yf-tiled-16bpp-rotate-90.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][152] ([Intel XE#2136]) -> [SKIP][153] ([Intel XE#607]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/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-dg2-set2: [SKIP][154] ([Intel XE#1124]) -> [SKIP][155] ([Intel XE#2136]) +10 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][156] ([Intel XE#2136]) -> [SKIP][157] ([Intel XE#1124]) +9 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: [SKIP][158] ([Intel XE#2423] / [i915#2575]) -> [SKIP][159] ([Intel XE#367]) +6 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][160] ([Intel XE#2191]) -> [SKIP][161] ([Intel XE#2423] / [i915#2575]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][162] ([Intel XE#367]) -> [SKIP][163] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][164] ([Intel XE#2907]) -> [SKIP][165] ([Intel XE#2136]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][166] ([Intel XE#2136]) -> [SKIP][167] ([Intel XE#2907]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][168] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][169] ([Intel XE#2136]) +16 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][170] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][171] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][172] ([Intel XE#2136]) -> [SKIP][173] ([Intel XE#3442]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [SKIP][174] ([Intel XE#2136]) -> [INCOMPLETE][175] ([Intel XE#1727]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][176] ([Intel XE#2136]) -> [SKIP][177] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][178] ([Intel XE#314]) -> [SKIP][179] ([Intel XE#2136] / [Intel XE#2351]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_cdclk@mode-transition-all-outputs.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][180] ([Intel XE#2423] / [i915#2575]) -> [SKIP][181] ([Intel XE#306]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_chamelium_color@ctm-limited-range.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][182] ([Intel XE#306]) -> [SKIP][183] ([Intel XE#2423] / [i915#2575]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_chamelium_color@gamma.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_chamelium_color@gamma.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: [SKIP][184] ([Intel XE#2423] / [i915#2575]) -> [SKIP][185] ([Intel XE#373]) +10 other tests skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-dg2-set2: [SKIP][186] ([Intel XE#373]) -> [SKIP][187] ([Intel XE#2423] / [i915#2575]) +13 other tests skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][188] ([Intel XE#2423] / [i915#2575]) -> [SKIP][189] ([Intel XE#307]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_content_protection@dp-mst-type-1.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-0: - shard-dg2-set2: [INCOMPLETE][190] ([Intel XE#2715]) -> [SKIP][191] ([Intel XE#2423] / [i915#2575]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_content_protection@lic-type-0.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@srm: - shard-dg2-set2: [FAIL][192] ([Intel XE#1178]) -> [SKIP][193] ([Intel XE#2423] / [i915#2575]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_content_protection@srm.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_content_protection@srm.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: [SKIP][194] ([Intel XE#2423] / [i915#2575]) -> [SKIP][195] ([Intel XE#308]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x512.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-sliding-32x10: - shard-dg2-set2: [SKIP][196] ([Intel XE#2423] / [i915#2575]) -> [SKIP][197] ([Intel XE#455]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_crc@cursor-sliding-32x10.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at kms_cursor_crc@cursor-sliding-32x10.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][198] ([Intel XE#2423] / [i915#2575]) -> [SKIP][199] ([Intel XE#323]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: [SKIP][200] ([Intel XE#323]) -> [SKIP][201] ([Intel XE#2423] / [i915#2575]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: [SKIP][202] ([Intel XE#455]) -> [SKIP][203] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_dsc@dsc-with-bpc-formats.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][204] ([Intel XE#455]) -> [SKIP][205] ([Intel XE#2136]) +6 other tests skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][206] ([Intel XE#2136]) -> [SKIP][207] ([Intel XE#776]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_fbcon_fbt@psr.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][208] ([Intel XE#1138]) -> [SKIP][209] ([Intel XE#2423] / [i915#2575]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_feature_discovery@display-4x.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][210] ([Intel XE#1135]) -> [SKIP][211] ([Intel XE#2423] / [i915#2575]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_feature_discovery@psr1.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_feature_discovery@psr1.html * igt at kms_flip@flip-vs-expired-vblank: - shard-dg2-set2: [SKIP][212] ([Intel XE#2423] / [i915#2575]) -> [FAIL][213] ([Intel XE#301]) +1 other test fail [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][214] ([Intel XE#301]) -> [SKIP][215] ([Intel XE#2423] / [i915#2575]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][216] ([Intel XE#2136]) -> [SKIP][217] ([Intel XE#455]) +6 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][218] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][219] ([Intel XE#651]) +10 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][220] ([Intel XE#2136]) -> [SKIP][221] ([Intel XE#651]) +28 other tests skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][222] ([Intel XE#651]) -> [SKIP][223] ([Intel XE#2136] / [Intel XE#2351]) +18 other tests skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear: - shard-dg2-set2: [SKIP][224] ([Intel XE#651]) -> [SKIP][225] ([Intel XE#2136]) +31 other tests skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][226] ([Intel XE#658]) -> [SKIP][227] ([Intel XE#2136] / [Intel XE#2351]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][228] ([Intel XE#653]) -> [SKIP][229] ([Intel XE#2136]) +37 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][230] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][231] ([Intel XE#653]) +10 other tests skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][232] ([Intel XE#1158]) -> [SKIP][233] ([Intel XE#2136]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/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][234] ([Intel XE#653]) -> [SKIP][235] ([Intel XE#2136] / [Intel XE#2351]) +13 other tests skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][236] ([Intel XE#2136]) -> [SKIP][237] ([Intel XE#653]) +33 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-slowdraw.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_histogram@algo-color: - shard-dg2-set2: [SKIP][238] ([Intel XE#2423] / [i915#2575]) -> [SKIP][239] ([Intel XE#3897]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_histogram@algo-color.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_histogram@algo-color.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][240] ([Intel XE#2136]) -> [SKIP][241] ([Intel XE#346]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_joiner@basic-big-joiner.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: [SKIP][242] ([Intel XE#2925]) -> [SKIP][243] ([Intel XE#2136]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: [SKIP][244] ([Intel XE#2136]) -> [SKIP][245] ([Intel XE#2927]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_joiner@invalid-modeset-ultra-joiner.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: [SKIP][246] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][247] ([Intel XE#2423] / [i915#2575]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2-set2: [SKIP][248] ([Intel XE#2423] / [i915#2575]) -> [SKIP][249] ([Intel XE#2763] / [Intel XE#455]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][250] ([Intel XE#2136]) -> [SKIP][251] ([Intel XE#2938]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_backlight@brightness-with-dpms.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade: - shard-dg2-set2: [SKIP][252] ([Intel XE#870]) -> [SKIP][253] ([Intel XE#2136]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_pm_backlight@fade.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: [SKIP][254] ([Intel XE#1122]) -> [SKIP][255] ([Intel XE#2136] / [Intel XE#2351]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_pm_dc@dc3co-vpb-simulation.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: [SKIP][256] ([Intel XE#1129]) -> [SKIP][257] ([Intel XE#2136]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_pm_dc@dc5-psr.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][258] ([Intel XE#3309]) -> [SKIP][259] ([Intel XE#2136]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_pm_dc@dc5-retention-flops.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][260] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][261] ([Intel XE#1129]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_dc@dc6-psr.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_dc@deep-pkgc: - shard-dg2-set2: [SKIP][262] ([Intel XE#2136]) -> [SKIP][263] ([Intel XE#908]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_dc@deep-pkgc.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at kms_pm_dc@deep-pkgc.html * igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][264] ([Intel XE#2136]) -> [SKIP][265] ([Intel XE#1489]) +10 other tests skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][266] ([Intel XE#1489]) -> [SKIP][267] ([Intel XE#2136]) +13 other tests skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr@fbc-pr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][268] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][269] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr@fbc-pr-sprite-plane-onoff.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_psr@fbc-pr-sprite-plane-onoff.html * igt at kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][270] ([Intel XE#2136]) -> [SKIP][271] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr@fbc-psr2-sprite-plane-move.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at kms_psr@fbc-psr2-sprite-plane-move.html * igt at kms_psr@pr-cursor-plane-onoff: - shard-dg2-set2: [SKIP][272] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][273] ([Intel XE#2136]) +17 other tests skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_psr@pr-cursor-plane-onoff.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_psr@pr-cursor-plane-onoff.html * igt at kms_psr@psr-cursor-plane-move: - shard-dg2-set2: [SKIP][274] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][275] ([Intel XE#2351]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_psr@psr-cursor-plane-move.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_psr@psr-cursor-plane-move.html * igt at kms_psr@psr2-primary-blt: - shard-dg2-set2: [SKIP][276] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][277] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_psr@psr2-primary-blt.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_psr@psr2-primary-blt.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: [SKIP][278] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][279] ([Intel XE#2939]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][280] ([Intel XE#3414]) -> [SKIP][281] ([Intel XE#2423] / [i915#2575]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/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-90: - shard-dg2-set2: [SKIP][282] ([Intel XE#2423] / [i915#2575]) -> [SKIP][283] ([Intel XE#3414]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][284] ([Intel XE#2423] / [i915#2575]) -> [FAIL][285] ([Intel XE#1729]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][286] ([Intel XE#455]) -> [SKIP][287] ([Intel XE#2423] / [i915#2575]) +12 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_vrr@flip-dpms.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@lobf: - shard-dg2-set2: [SKIP][288] ([Intel XE#2168]) -> [SKIP][289] ([Intel XE#2423] / [i915#2575]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_vrr@lobf.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: [SKIP][290] ([Intel XE#756]) -> [SKIP][291] ([Intel XE#2423] / [i915#2575]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_writeback@writeback-fb-id-xrgb2101010.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][292] ([Intel XE#1130]) -> [SKIP][293] ([Intel XE#1280] / [Intel XE#455]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_compute_preempt@compute-preempt.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at xe_compute_preempt@compute-preempt.html * igt at xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: [SKIP][294] ([Intel XE#1123]) -> [SKIP][295] ([Intel XE#1130]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_copy_basic@mem-copy-linear-0xfffe.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at xe_copy_basic@mem-copy-linear-0xfffe.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][296] ([Intel XE#1126]) -> [SKIP][297] ([Intel XE#1130]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0xfd.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][298] ([Intel XE#1130]) -> [SKIP][299] ([Intel XE#1126]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0xfffe.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0xfffe.html * igt at xe_eudebug@basic-client-th: - shard-dg2-set2: [SKIP][300] ([Intel XE#2905]) -> [SKIP][301] ([Intel XE#1130]) +15 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_eudebug@basic-client-th.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at xe_eudebug@basic-client-th.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-dg2-set2: [SKIP][302] ([Intel XE#3889]) -> [SKIP][303] ([Intel XE#1130]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@preempt-breakpoint: - shard-dg2-set2: [SKIP][304] ([Intel XE#1130]) -> [SKIP][305] ([Intel XE#2905]) +12 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_eudebug_online@preempt-breakpoint.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at xe_eudebug_online@preempt-breakpoint.html * igt at xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [FAIL][306] ([Intel XE#1600]) -> [SKIP][307] ([Intel XE#1130]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_evict@evict-beng-large-multi-vm-cm.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at xe_evict@evict-beng-large-multi-vm-cm.html * igt at xe_exec_compute_mode@many-userptr-rebind: - shard-dg2-set2: [FAIL][308] -> [SKIP][309] ([Intel XE#1130]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_exec_compute_mode@many-userptr-rebind.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at xe_exec_compute_mode@many-userptr-rebind.html * igt at xe_exec_fault_mode@once-basic: - shard-dg2-set2: [SKIP][310] ([Intel XE#1130]) -> [SKIP][311] ([Intel XE#288]) +27 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_fault_mode@once-basic.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at xe_exec_fault_mode@once-basic.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][312] ([Intel XE#288]) -> [SKIP][313] ([Intel XE#1130]) +42 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/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][314] ([Intel XE#1130]) -> [SKIP][315] ([Intel XE#2360]) +2 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][316] ([Intel XE#255]) -> [SKIP][317] ([Intel XE#1130]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_huc_copy@huc_copy.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at xe_huc_copy@huc_copy.html * igt at xe_mmap@small-bar: - shard-dg2-set2: [SKIP][318] ([Intel XE#512]) -> [SKIP][319] ([Intel XE#1130]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_mmap@small-bar.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at xe_mmap@small-bar.html * igt at xe_oa@map-oa-buffer: - shard-dg2-set2: [SKIP][320] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][321] ([Intel XE#1130]) +12 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_oa@map-oa-buffer.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at xe_oa@map-oa-buffer.html * igt at xe_oa@syncs-ufence-wait: - shard-dg2-set2: [SKIP][322] ([Intel XE#1130]) -> [SKIP][323] ([Intel XE#2541] / [Intel XE#3573]) +9 other tests skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_oa@syncs-ufence-wait.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at xe_oa@syncs-ufence-wait.html * igt at xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][324] ([Intel XE#1130]) -> [SKIP][325] ([Intel XE#1337]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_pat@display-vs-wb-transient.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at xe_pat@display-vs-wb-transient.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][326] ([Intel XE#977]) -> [SKIP][327] ([Intel XE#1130]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_pat@pat-index-xe2.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xehpc: - shard-dg2-set2: [SKIP][328] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][329] ([Intel XE#1130]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_pat@pat-index-xehpc.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][330] ([Intel XE#979]) -> [SKIP][331] ([Intel XE#1130]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_pat@pat-index-xelpg.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at xe_pat@pat-index-xelpg.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: [SKIP][332] ([Intel XE#1130]) -> [SKIP][333] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_pm@s3-d3cold-basic-exec.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_query@multigpu-query-hwconfig: - shard-dg2-set2: [SKIP][334] ([Intel XE#1130]) -> [SKIP][335] ([Intel XE#944]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_query@multigpu-query-hwconfig.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-436/igt at xe_query@multigpu-query-hwconfig.html * igt at xe_query@multigpu-query-oa-units: - shard-dg2-set2: [SKIP][336] ([Intel XE#944]) -> [SKIP][337] ([Intel XE#1130]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_query@multigpu-query-oa-units.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at xe_query@multigpu-query-oa-units.html * igt at xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: [SKIP][338] ([Intel XE#3342]) -> [SKIP][339] ([Intel XE#1130]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_sriov_flr@flr-each-isolation.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-466/igt at xe_sriov_flr@flr-each-isolation.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][340] ([Intel XE#1130]) -> [SKIP][341] ([Intel XE#3342]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_sriov_flr@flr-vf1-clear.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-435/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [SKIP][342] ([Intel XE#1130]) -> [ABORT][343] ([Intel XE#3075] / [Intel XE#3084]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_wedged@wedged-mode-toggle.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/shard-dg2-434/igt at xe_wedged@wedged-mode-toggle.html [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [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#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [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#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [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#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [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#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#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [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#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#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#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#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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3289]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3289 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#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#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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8179 -> IGTPW_12400 * Linux: xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571 -> xe-2452-8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 IGTPW_12400: 12400 IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571: 89042e0bb417f4d67280e1d7fa9bbcca51734571 xe-2452-8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5: 8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12400/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From peter.senna at linux.intel.com Thu Jan 9 21:08:03 2025 From: peter.senna at linux.intel.com (Peter Senna Tschudin) Date: Thu, 9 Jan 2025 22:08:03 +0100 Subject: =?UTF-8?B?UmU6IOKclyBpOTE1LkNJLkJBVDogZmFpbHVyZSBmb3IgbGliL2lndF9r?= =?UTF-8?Q?memleak=3A_library_to_interact_with_kmemleak_=28rev2=29?= In-Reply-To: <173645503540.1723339.14281937234503972914@b555e5b46a47> References: <20250109181027.90402-1-peter.senna@linux.intel.com> <173645503540.1723339.14281937234503972914@b555e5b46a47> Message-ID: Dear I915, On 09.01.2025 21:37, Patchwork wrote: > == Series Details == > > Series: lib/igt_kmemleak: library to interact with kmemleak (rev2) > URL : https://patchwork.freedesktop.org/series/142673/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_8184 -> IGTPW_12421 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12421 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12421, 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_12421/index.html > > Participating hosts (38 -> 37) > ------------------------------ > > Missing (1): fi-snb-2520m > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12421: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at i915_selftest@live at gt_mocs: > - bat-adlp-11: [PASS][1] -> [ABORT][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8184/bat-adlp-11/igt at i915_selftest@live at gt_mocs.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/bat-adlp-11/igt at i915_selftest@live at gt_mocs.html > This is unrelated to my change. Please fix and re-run. Thank you! [...] From patchwork at emeril.freedesktop.org Thu Jan 9 21:18:36 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 21:18:36 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_lib/igt=5Fkmemleak=3A_libra?= =?utf-8?q?ry_to_interact_with_kmemleak_=28rev2=29?= In-Reply-To: <20250109181027.90402-1-peter.senna@linux.intel.com> References: <20250109181027.90402-1-peter.senna@linux.intel.com> Message-ID: <173645751694.1739475.18427322037788005860@b555e5b46a47> == Series Details == Series: lib/igt_kmemleak: library to interact with kmemleak (rev2) URL : https://patchwork.freedesktop.org/series/142673/ State : success == Summary == CI Bug Log - changes from XEIGT_8184_BAT -> XEIGTPW_12421_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12421_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][3] ([Intel XE#1192]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html * igt at xe_pat@pat-index-xelp at render: - bat-adlp-vf: [DMESG-WARN][5] -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html * igt at xe_vm@shared-pde2-page: - bat-adlp-vf: [DMESG-WARN][7] ([Intel XE#3958] / [Intel XE#3970]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/bat-adlp-vf/igt at xe_vm@shared-pde2-page.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/bat-adlp-vf/igt at xe_vm@shared-pde2-page.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][9] ([Intel XE#1192]) -> [SKIP][10] ([Intel XE#2229] / [Intel XE#455]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8184 -> IGTPW_12421 * Linux: xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c -> xe-2464-15b0ea8b453b7e91a74530afa85a602eaca01527 IGTPW_12421: bdc8ea9492db57d40ecd569d84681108dfe488fb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8184: ee7a3ac616f55f6ed1b959ff951237099bda86d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c: c9da975358cd0763449f08b7063ee935eace4f8c xe-2464-15b0ea8b453b7e91a74530afa85a602eaca01527: 15b0ea8b453b7e91a74530afa85a602eaca01527 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 21:31:41 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 21:31:41 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_Remove_redundant_hotplug_?= =?utf-8?q?detection_assertion_=28rev3=29?= In-Reply-To: <20250109200911.1243517-1-ramanaidu.naladala@intel.com> References: <20250109200911.1243517-1-ramanaidu.naladala@intel.com> Message-ID: <173645830165.1744282.11025489473188248689@b555e5b46a47> == Series Details == Series: Remove redundant hotplug detection assertion (rev3) URL : https://patchwork.freedesktop.org/series/143141/ State : failure == Summary == CI Bug Log - changes from IGT_8184 -> IGTPW_12422 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12422 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12422, 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_12422/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12422: ### IGT changes ### #### Possible regressions #### * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - bat-adlp-9: NOTRUN -> [SKIP][1] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-adlp-9/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-twl-2: NOTRUN -> [SKIP][2] +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-twl-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-dg2-11: NOTRUN -> [SKIP][3] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg2-11/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-rpls-4: NOTRUN -> [SKIP][4] +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-rpls-4/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-dg2-14: NOTRUN -> [SKIP][5] +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg2-14/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-arls-5: NOTRUN -> [SKIP][6] +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-arls-5/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-rplp-1: NOTRUN -> [SKIP][7] +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-rplp-1/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - fi-rkl-11600: NOTRUN -> [SKIP][8] +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-rkl-11600/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-jsl-3: NOTRUN -> [SKIP][9] +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-jsl-3/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-adlp-11: NOTRUN -> [SKIP][10] +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-adlp-11/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - bat-mtlp-8: NOTRUN -> [SKIP][11] +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-mtlp-8/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-dg2-8: NOTRUN -> [SKIP][12] +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg2-8/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-adls-6: NOTRUN -> [SKIP][13] +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-adls-6/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-jsl-1: NOTRUN -> [SKIP][14] +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-jsl-1/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - fi-tgl-1115g4: NOTRUN -> [SKIP][15] +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-tgl-1115g4/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-arlh-3: NOTRUN -> [SKIP][16] +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-arlh-3/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-dg1-7: NOTRUN -> [SKIP][17] +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg1-7/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - {bat-mtlp-9}: NOTRUN -> [SKIP][18] +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-mtlp-9/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - {bat-arls-6}: NOTRUN -> [SKIP][19] +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-arls-6/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html Known issues ------------ Here are the changes found in IGTPW_12422 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - fi-kbl-7567u: NOTRUN -> [SKIP][20] +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-kbl-7567u/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - fi-cfl-8700k: NOTRUN -> [SKIP][21] +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-cfl-8700k/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - fi-kbl-8809g: NOTRUN -> [SKIP][22] +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-kbl-8809g/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-kbl-2: NOTRUN -> [SKIP][23] +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-kbl-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-arlh-2: NOTRUN -> [SKIP][24] ([i915#11346]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-arlh-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - fi-kbl-guc: NOTRUN -> [SKIP][25] +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-kbl-guc/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-adls-6: NOTRUN -> [SKIP][26] ([i915#7828]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-adls-6/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - fi-ilk-650: NOTRUN -> [SKIP][27] +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-ilk-650/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-jsl-1: NOTRUN -> [SKIP][28] ([i915#7828]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-jsl-1/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - fi-tgl-1115g4: NOTRUN -> [SKIP][29] ([i915#7828]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-tgl-1115g4/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - fi-cfl-guc: NOTRUN -> [SKIP][30] +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-cfl-guc/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-mtlp-6: NOTRUN -> [SKIP][31] ([i915#7828] / [i915#9792]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-mtlp-6/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-adlp-9: NOTRUN -> [SKIP][32] ([i915#7828]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-adlp-9/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-arls-5: NOTRUN -> [SKIP][33] ([i915#7828]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-arls-5/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-arlh-2: NOTRUN -> [SKIP][34] ([i915#11151] / [i915#11346]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-arlh-2/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - fi-rkl-11600: NOTRUN -> [SKIP][35] ([i915#7828]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-rkl-11600/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - fi-ivb-3770: NOTRUN -> [SKIP][36] +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-ivb-3770/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-dg1-6: NOTRUN -> [SKIP][37] ([i915#12311]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg1-6/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - fi-elk-e7500: NOTRUN -> [SKIP][38] +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-elk-e7500/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - fi-blb-e6850: NOTRUN -> [SKIP][39] +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-blb-e6850/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-mtlp-6: NOTRUN -> [SKIP][40] ([i915#9792]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-mtlp-6/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - bat-arlh-3: NOTRUN -> [SKIP][41] ([i915#11151]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-arlh-3/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-dg1-7: NOTRUN -> [SKIP][42] ([i915#7828]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg1-7/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-jsl-3: NOTRUN -> [SKIP][43] ([i915#7828]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-jsl-3/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-twl-2: NOTRUN -> [SKIP][44] ([i915#11151]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-twl-2/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-dg2-11: NOTRUN -> [SKIP][45] ([i915#7828]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg2-11/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - fi-kbl-x1275: NOTRUN -> [SKIP][46] +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-kbl-x1275/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - fi-hsw-4770: NOTRUN -> [SKIP][47] +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-hsw-4770/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-rpls-4: NOTRUN -> [SKIP][48] ([i915#7828]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-rpls-4/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - fi-cfl-8109u: NOTRUN -> [SKIP][49] +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-cfl-8109u/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-dg2-14: NOTRUN -> [SKIP][50] ([i915#7828]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg2-14/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-dg2-8: NOTRUN -> [SKIP][51] ([i915#7828]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg2-8/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-rplp-1: NOTRUN -> [SKIP][52] ([i915#7828]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-rplp-1/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-adlp-11: NOTRUN -> [SKIP][53] ([i915#7828]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-adlp-11/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-mtlp-8: NOTRUN -> [SKIP][54] ([i915#7828]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-mtlp-8/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-dg1-6: NOTRUN -> [SKIP][55] ([i915#12311] / [i915#7828]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg1-6/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8184 -> IGTPW_12422 * Linux: CI_DRM_15930 -> CI_DRM_15934 CI-20190529: 20190529 CI_DRM_15930: c9da975358cd0763449f08b7063ee935eace4f8c @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15934: c066c8811476b15e9eda121713b5518d21f2347e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12422: 8616c1eeda1eb48db1cee782a15467107d1f81cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8184: ee7a3ac616f55f6ed1b959ff951237099bda86d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 9 22:25:00 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 09 Jan 2025 22:25:00 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Remove_redundant_hotplug_de?= =?utf-8?q?tection_assertion_=28rev3=29?= In-Reply-To: <20250109200911.1243517-1-ramanaidu.naladala@intel.com> References: <20250109200911.1243517-1-ramanaidu.naladala@intel.com> Message-ID: <173646150045.1742394.12709137877825564940@b555e5b46a47> == Series Details == Series: Remove redundant hotplug detection assertion (rev3) URL : https://patchwork.freedesktop.org/series/143141/ State : success == Summary == CI Bug Log - changes from XEIGT_8184_BAT -> XEIGTPW_12422_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12422_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2252]) +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/bat-bmg-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-bmg-1: NOTRUN -> [SKIP][2] ([Intel XE#2252]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/bat-bmg-1/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - bat-lnl-1: NOTRUN -> [SKIP][3] ([Intel XE#373]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/bat-lnl-1/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-pvc-2: NOTRUN -> [SKIP][4] ([Intel XE#1024]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/bat-pvc-2/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-dg2-oem2: NOTRUN -> [SKIP][5] ([Intel XE#373]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/bat-dg2-oem2/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-atsm-2: NOTRUN -> [SKIP][6] ([Intel XE#1024]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/bat-atsm-2/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - bat-adlp-vf: NOTRUN -> [SKIP][7] ([Intel XE#2463]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/bat-adlp-vf/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - bat-lnl-2: NOTRUN -> [SKIP][8] ([Intel XE#373]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/bat-lnl-2/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2463]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2463 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 Build changes ------------- * IGT: IGT_8184 -> IGTPW_12422 * Linux: xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c -> xe-2465-e9fabefcb38e3d79cdb3e51e771b6a83f7fa25c2 IGTPW_12422: 8616c1eeda1eb48db1cee782a15467107d1f81cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8184: ee7a3ac616f55f6ed1b959ff951237099bda86d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c: c9da975358cd0763449f08b7063ee935eace4f8c xe-2465-e9fabefcb38e3d79cdb3e51e771b6a83f7fa25c2: e9fabefcb38e3d79cdb3e51e771b6a83f7fa25c2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From ashutosh.dixit at intel.com Thu Jan 9 22:28:20 2025 From: ashutosh.dixit at intel.com (Dixit, Ashutosh) Date: Thu, 09 Jan 2025 14:28:20 -0800 Subject: [PATCH i-g-t v2 2/2] tests/intel/xe_oa: Remove hardcoded time heuristics In-Reply-To: <20250106034638.1746051-3-sai.teja.pottumuttu@intel.com> References: <20250106034638.1746051-1-sai.teja.pottumuttu@intel.com> <20250106034638.1746051-3-sai.teja.pottumuttu@intel.com> Message-ID: <855xmnvczf.wl-ashutosh.dixit@intel.com> On Sun, 05 Jan 2025 19:46:38 -0800, Sai Teja Pottumuttu wrote: > Hi Sai Teja, Thanks for the patch, mostly looks good but I have some usual nits. > Some tests in xe_oa tests have hardcoded timing heuristics. Refactor it to > make it more robust and reliable. The patch extends the wait time logically > but usually it would take a single iteration for the required reports to be > available so wait time doesn't change much. > > v2: > - Extend commit message [Lucas] > - Make wait function more generic [Lucas] > > Signed-off-by: Sai Teja Pottumuttu > --- > tests/intel/xe_oa.c | 30 +++++++++++++++++++++++++----- > 1 file changed, 25 insertions(+), 5 deletions(-) > > diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c > index ad3526406..b271278d6 100644 > --- a/tests/intel/xe_oa.c > +++ b/tests/intel/xe_oa.c > @@ -4367,6 +4367,29 @@ static void map_oa_buffer_forked_access(const struct drm_xe_engine_class_instanc > munmap(vaddr, size); > } > > +static void wait_for_periodic_reports(void *oa_vaddr, Let's change this name to 'mmap_wait_for_periodic_reports', to highlight it only applies to the mmap'd OA buffer case. > + uint32_t n, optional nit: move this to the previous line, I generally try to to optimize vertical real estate. > + const struct drm_xe_engine_class_instance *hwe) > +{ > + uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000; > + struct intel_xe_perf_metric_set *test_set = metric_set(hwe); > + uint64_t fmt = test_set->perf_oa_format; > + struct oa_format format = get_oa_format(fmt); optional nit again, but delete the two temporary variables above, see below. > + uint32_t num_periodic_reports = 0; > + uint32_t *reports; > + > + while (num_periodic_reports < n) { > + usleep(100 * period_us); I think this should be something like: usleep(2 * n * period_us); So the wait time should be a function of n (not constant like 100). Here I'm assuming if we wait for '2 * n' periods, we should probably have n periodic reports. > + num_periodic_reports = 0; > + for (reports = (uint32_t *)oa_vaddr; > + reports[0] && oa_timestamp(reports, fmt); > + reports += format.size) { > + if (oa_report_is_periodic(reports)) > + num_periodic_reports++; > + } optional nit: I think this entire loop can just be: num_periodic_reports = 0; for (reports = (uint32_t *)oa_vaddr; reports[0] && oa_timestamp(reports, fmt) && oa_report_is_periodic(reports); reports += get_oa_format(test_set->perf_oa_format).size) num_periodic_reports++; Just a couple of general comments below, no need to change anything: * The loop is a little 'funky' in that it goes over the mapped OA buffer multiple times, even over previoulsy found reports. I think that is ok for now. * The other thing is that OA periodic reports should be generated as long as DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT has been used in OA properties. Both places where this function is called from has that, so that should be ok. * If HW somehow doesn't generate periodic reports we'll hang here. But that is not expected, so leave as is and we'll deal with it later if we ever hit that. > + } > +} > + > static void check_reports(void *oa_vaddr, uint32_t oa_size, > const struct drm_xe_engine_class_instance *hwe) > { > @@ -4396,12 +4419,10 @@ static void check_reports_from_mapped_buffer(const struct drm_xe_engine_class_in > { > void *vaddr; > uint32_t size; > - uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000; > > vaddr = map_oa_buffer(&size); > > - /* wait for approx 100 reports */ > - usleep(100 * period_us); > + wait_for_periodic_reports(vaddr, 20, hwe); I am wondering if we should make this 10 instead of 20, and also change 20 to 10 in check_reports(). > check_reports(vaddr, size, hwe); > > munmap(vaddr, size); > @@ -4426,12 +4447,11 @@ static void closed_fd_and_unmapped_access(const struct drm_xe_engine_class_insta > }; > void *vaddr; > uint32_t size; > - uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000; > > stream_fd = __perf_open(drm_fd, ¶m, false); > vaddr = map_oa_buffer(&size); > > - usleep(100 * period_us); > + wait_for_periodic_reports(vaddr, 20, hwe); Here too. > check_reports(vaddr, size, hwe); > > munmap(vaddr, size); > -- > 2.34.1 > Thanks. -- Ashutosh From patchwork at emeril.freedesktop.org Fri Jan 10 00:02:48 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 00:02:48 -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_=28rev2=29?= In-Reply-To: <20250108062826.908027-1-pravalika.gurram@intel.com> References: <20250108062826.908027-1-pravalika.gurram@intel.com> Message-ID: <173646736898.1777445.11600513728998403930@b555e5b46a47> == Series Details == Series: tests/intel: Enhance the wedged_mode sysfs support (rev2) URL : https://patchwork.freedesktop.org/series/143094/ State : failure == Summary == CI Bug Log - changes from XEIGT_8179_full -> XEIGTPW_12401_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12401_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12401_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_12401_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-edp1: - shard-lnl: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-4/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-edp1.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-hdmi-a6: - shard-dg2-set2: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-hdmi-a6.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-hdmi-a6.html * igt at kms_psr@psr2-primary-page-flip: - shard-lnl: [PASS][4] -> [FAIL][5] +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at kms_psr@psr2-primary-page-flip.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-4/igt at kms_psr@psr2-primary-page-flip.html New tests --------- New tests have been introduced between XEIGT_8179_full and XEIGTPW_12401_full: ### New IGT tests (1) ### * igt at xe_wedged@basic-wedged-read: - Statuses : 2 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12401_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@unbind-rebind: - shard-dg2-set2: [PASS][6] -> [SKIP][7] ([Intel XE#1885]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at core_hotunplug@unbind-rebind.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at core_hotunplug@unbind-rebind.html * igt at core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][8] -> [SKIP][9] ([Intel XE#3453]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at core_setmaster@master-drop-set-shared-fd.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at core_setmaster@master-drop-set-shared-fd.html * igt at fbdev@pan: - shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#2134]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at fbdev@pan.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at fbdev@pan.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1466]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-6/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#3768]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-8/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#2423] / [i915#2575]) +160 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-6/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1467]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-4/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +7 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-4/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2191]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-6/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#367]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-5/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1512]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-4/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2669]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-5/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#3433]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-8/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-a-edp-1.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#3432]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs at pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#787]) +97 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs at pipe-d-hdmi-a-6.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2887]) +10 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-8/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt at kms_chamelium_color@degamma: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#306]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-6/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_frames@dp-crc-multiple: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_chamelium_frames@dp-crc-multiple.html * igt at kms_chamelium_hpd@dp-hpd: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#373]) +8 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-8/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#3278]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-6/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][32] ([Intel XE#1178]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_content_protection@atomic-dpms at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2321]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-4/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-64x21: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1424]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-5/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][35] ([Intel XE#309]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/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-lnl: NOTRUN -> [SKIP][36] ([Intel XE#323]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dp_aux_dev: - shard-dg2-set2: [PASS][37] -> [SKIP][38] ([Intel XE#2423]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_dp_aux_dev.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_dp_aux_dev.html * igt at kms_feature_discovery@chamelium: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#701]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-8/igt at kms_feature_discovery@chamelium.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][40] ([Intel XE#3321]) +1 other test fail [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/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: NOTRUN -> [FAIL][41] ([Intel XE#301]) +2 other tests fail [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1421]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-8/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@bo-too-big-interruptible: - shard-lnl: NOTRUN -> [INCOMPLETE][43] ([Intel XE#1504]) +1 other test incomplete [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-4/igt at kms_flip@bo-too-big-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-dg2-set2: [PASS][44] -> [FAIL][45] ([Intel XE#2882]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html - shard-lnl: NOTRUN -> [FAIL][46] ([Intel XE#3149] / [Intel XE#886]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-4/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at c-edp1: - shard-lnl: NOTRUN -> [FAIL][47] ([Intel XE#886]) +1 other test fail [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-4/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at c-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1401]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#455]) +5 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg2-set2: [PASS][50] -> [SKIP][51] ([Intel XE#2136]) +53 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt at kms_frontbuffer_tracking@basic: - shard-dg2-set2: [PASS][53] -> [SKIP][54] ([Intel XE#2351]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@basic.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_frontbuffer_tracking@basic.html * igt at kms_frontbuffer_tracking@drrs-modesetfrombusy: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#651]) +9 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-5/igt at kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][56] -> [SKIP][57] ([Intel XE#2136] / [Intel XE#2351]) +23 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#656]) +27 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-5/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1469]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-4/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#2136]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2927]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-5/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#356]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-8/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#2763]) +15 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-4/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#2763]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [PASS][66] -> [FAIL][67] ([Intel XE#718]) +1 other test fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-4/igt at kms_pm_dc@dc5-psr.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-6/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][68] ([Intel XE#1430]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-5/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: [PASS][69] -> [SKIP][70] ([Intel XE#2446]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_pm_rpm@basic-pci-d3-state.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1439] / [Intel XE#3141]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-6/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#2893]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-8/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr@fbc-pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1406]) +4 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-8/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1435]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-5/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1: - shard-lnl: [PASS][75] -> [FAIL][76] ([Intel XE#899]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-6/igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#756]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-8/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at xe_compute_preempt@compute-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at xe_compute_preempt@compute-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#2905]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug_online@resume-one: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#2905]) +7 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-8/igt at xe_eudebug_online@resume-one.html * igt at xe_evict@evict-beng-cm-threads-small: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#688]) +7 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-5/igt at xe_evict@evict-beng-cm-threads-small.html * igt at xe_exec_balancer@no-exec-parallel-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#1130]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_exec_balancer@no-exec-parallel-userptr-invalidate-race.html * igt at xe_exec_basic@many-null-rebind: - shard-dg2-set2: [PASS][83] -> [SKIP][84] ([Intel XE#1130]) +310 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_exec_basic@many-null-rebind.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_exec_basic@many-null-rebind.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1392]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-5/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt at xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1416]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-6/igt at xe_mmap@vram.html * igt at xe_module_load@reload-no-display: - shard-dg2-set2: [PASS][87] -> [FAIL][88] ([Intel XE#3546]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_module_load@reload-no-display.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_module_load@reload-no-display.html * igt at xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-4/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1948]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-6/igt at xe_pm@d3hot-mmap-vram.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: NOTRUN -> [FAIL][91] ([Intel XE#958]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-4/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-engines: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#944]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-8/igt at xe_query@multigpu-query-engines.html #### Possible fixes #### * igt at core_getversion@basic: - shard-dg2-set2: [FAIL][93] ([Intel XE#3440]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_getversion@basic.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at core_getversion@basic.html * igt at core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: [SKIP][95] ([Intel XE#1885]) -> [PASS][96] +1 other test pass [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at core_hotunplug@hotreplug-lateclose.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at core_hotunplug@hotreplug-lateclose.html * igt at fbdev@write: - shard-dg2-set2: [SKIP][97] ([Intel XE#2134]) -> [PASS][98] +1 other test pass [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at fbdev@write.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at fbdev@write.html * igt at intel_hwmon@hwmon-write: - shard-dg2-set2: [SKIP][99] ([Intel XE#2136]) -> [PASS][100] +25 other tests pass [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at intel_hwmon@hwmon-write.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at intel_hwmon@hwmon-write.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][101] ([Intel XE#3719]) -> [PASS][102] +3 other tests pass [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-1/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_cursor_crc@cursor-onscreen-64x64: - shard-dg2-set2: [SKIP][103] ([Intel XE#2423] / [i915#2575]) -> [PASS][104] +90 other tests pass [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-64x64.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_cursor_crc@cursor-onscreen-64x64.html * igt at kms_draw_crc@fill-fb: - shard-dg2-set2: [SKIP][105] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][106] +8 other tests pass [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_draw_crc@fill-fb.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_draw_crc@fill-fb.html * igt at kms_pm_rpm@modeset-stress-extra-wait: - shard-dg2-set2: [SKIP][107] ([Intel XE#2446]) -> [PASS][108] +4 other tests pass [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_rpm@modeset-stress-extra-wait.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_pm_rpm@modeset-stress-extra-wait.html * igt at testdisplay: - shard-dg2-set2: [SKIP][109] ([Intel XE#2423]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at testdisplay.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at testdisplay.html * igt at xe_exec_compute_mode@many-userptr-rebind: - shard-dg2-set2: [FAIL][111] -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_exec_compute_mode@many-userptr-rebind.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at xe_exec_compute_mode@many-userptr-rebind.html * igt at xe_module_load@reload: - shard-dg2-set2: [FAIL][113] ([Intel XE#3546]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_module_load@reload.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at xe_module_load@reload.html * igt at xe_pm@s4-basic: - shard-lnl: [ABORT][115] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-2/igt at xe_pm@s4-basic.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-8/igt at xe_pm@s4-basic.html * igt at xe_pm@s4-vm-bind-prefetch: - shard-lnl: [ABORT][117] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-lnl-2/igt at xe_pm@s4-vm-bind-prefetch.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-lnl-6/igt at xe_pm@s4-vm-bind-prefetch.html * igt at xe_vm@large-userptr-binds-16777216: - shard-dg2-set2: [SKIP][119] ([Intel XE#1130]) -> [PASS][120] +167 other tests pass [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_vm@large-userptr-binds-16777216.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at xe_vm@large-userptr-binds-16777216.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][121] ([Intel XE#2423] / [i915#2575]) -> [SKIP][122] ([Intel XE#623]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][123] ([Intel XE#873]) -> [SKIP][124] ([Intel XE#2423] / [i915#2575]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_async_flips@invalid-async-flip.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][125] ([Intel XE#2423] / [i915#2575]) -> [SKIP][126] ([Intel XE#3768]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_async_flips@invalid-async-flip-atomic.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2-set2: [SKIP][127] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][128] ([Intel XE#316]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@4-tiled-64bpp-rotate-270.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_big_fb@4-tiled-64bpp-rotate-270.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][129] ([Intel XE#316]) -> [SKIP][130] ([Intel XE#2136]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@linear-64bpp-rotate-270: - shard-dg2-set2: [SKIP][131] ([Intel XE#316]) -> [SKIP][132] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@linear-64bpp-rotate-270.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_big_fb@linear-64bpp-rotate-270.html * igt at kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][133] ([Intel XE#2136]) -> [SKIP][134] ([Intel XE#316]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][135] ([Intel XE#607]) -> [SKIP][136] ([Intel XE#2136] / [Intel XE#2351]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/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][137] ([Intel XE#610]) -> [SKIP][138] ([Intel XE#2136]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2-set2: [SKIP][139] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][140] ([Intel XE#1124]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][141] ([Intel XE#2136]) -> [SKIP][142] ([Intel XE#1124]) +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][143] ([Intel XE#1124]) -> [SKIP][144] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][145] ([Intel XE#2136]) -> [SKIP][146] ([Intel XE#607]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][147] ([Intel XE#1124]) -> [SKIP][148] ([Intel XE#2136]) +11 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][149] ([Intel XE#2191]) -> [SKIP][150] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: [SKIP][151] ([Intel XE#2423] / [i915#2575]) -> [SKIP][152] ([Intel XE#367]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: [SKIP][153] ([Intel XE#367]) -> [SKIP][154] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][155] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][156] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][157] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][158] ([Intel XE#2136]) +19 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][159] ([Intel XE#2136]) -> [SKIP][160] ([Intel XE#3442]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][161] ([Intel XE#2136]) -> [SKIP][162] ([Intel XE#2907]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs: - shard-dg2-set2: [SKIP][163] ([Intel XE#2136]) -> [SKIP][164] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][165] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][166] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][167] ([Intel XE#314]) -> [SKIP][168] ([Intel XE#2136] / [Intel XE#2351]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_cdclk@mode-transition-all-outputs.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][169] ([Intel XE#2423] / [i915#2575]) -> [SKIP][170] ([Intel XE#306]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_chamelium_color@ctm-limited-range.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: [SKIP][171] ([Intel XE#306]) -> [SKIP][172] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_chamelium_color@ctm-red-to-blue.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_frames@vga-frame-dump: - shard-dg2-set2: [SKIP][173] ([Intel XE#2423] / [i915#2575]) -> [SKIP][174] ([Intel XE#373]) +10 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_chamelium_frames@vga-frame-dump.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_chamelium_frames@vga-frame-dump.html * igt at kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-dg2-set2: [SKIP][175] ([Intel XE#373]) -> [SKIP][176] ([Intel XE#2423] / [i915#2575]) +17 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt at kms_content_protection@atomic-dpms: - shard-dg2-set2: [SKIP][177] ([Intel XE#2423] / [i915#2575]) -> [FAIL][178] ([Intel XE#1178]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_content_protection@atomic-dpms.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-type-0: - shard-dg2-set2: [SKIP][179] ([Intel XE#307]) -> [SKIP][180] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_content_protection@dp-mst-type-0.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@lic-type-0: - shard-dg2-set2: [INCOMPLETE][181] ([Intel XE#2715]) -> [SKIP][182] ([Intel XE#2423] / [i915#2575]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_content_protection@lic-type-0.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@srm: - shard-dg2-set2: [FAIL][183] ([Intel XE#1178]) -> [SKIP][184] ([Intel XE#2423] / [i915#2575]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_content_protection@srm.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-dg2-set2: [FAIL][185] ([Intel XE#1188]) -> [SKIP][186] ([Intel XE#2423] / [i915#2575]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_content_protection@uevent.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][187] ([Intel XE#2423] / [i915#2575]) -> [SKIP][188] ([Intel XE#308]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_crc@cursor-offscreen-512x512.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][189] ([Intel XE#308]) -> [SKIP][190] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_cursor_crc@cursor-onscreen-512x170.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][191] ([Intel XE#2423] / [i915#2575]) -> [SKIP][192] ([Intel XE#323]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: [SKIP][193] ([Intel XE#323]) -> [SKIP][194] ([Intel XE#2423] / [i915#2575]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][195] ([Intel XE#455]) -> [SKIP][196] ([Intel XE#2136]) +9 other tests skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][197] ([Intel XE#2136]) -> [SKIP][198] ([Intel XE#776]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_fbcon_fbt@psr.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][199] ([Intel XE#2423] / [i915#2575]) -> [SKIP][200] ([Intel XE#701]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_feature_discovery@chamelium.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-dg2-set2: [SKIP][201] ([Intel XE#703]) -> [SKIP][202] ([Intel XE#2423] / [i915#2575]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_feature_discovery@display-3x.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2-set2: [SKIP][203] ([Intel XE#2423] / [i915#2575]) -> [SKIP][204] ([Intel XE#1137]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_feature_discovery@dp-mst.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][205] ([Intel XE#1135]) -> [SKIP][206] ([Intel XE#2423] / [i915#2575]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_feature_discovery@psr1.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [SKIP][207] ([Intel XE#2423] / [i915#2575]) -> [FAIL][208] ([Intel XE#301]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][209] ([Intel XE#301]) -> [SKIP][210] ([Intel XE#2423] / [i915#2575]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/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][211] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][212] ([Intel XE#455]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][213] ([Intel XE#2136]) -> [SKIP][214] ([Intel XE#455]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][215] ([Intel XE#455]) -> [SKIP][216] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][217] ([i915#5274]) -> [SKIP][218] ([Intel XE#2423] / [i915#2575]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_force_connector_basic@prune-stale-modes.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move: - shard-dg2-set2: [SKIP][219] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][220] ([Intel XE#651]) +10 other tests skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt: - shard-dg2-set2: [SKIP][221] ([Intel XE#2136]) -> [SKIP][222] ([Intel XE#651]) +20 other tests skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][223] ([Intel XE#651]) -> [SKIP][224] ([Intel XE#2136]) +39 other tests skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][225] ([Intel XE#651]) -> [SKIP][226] ([Intel XE#2136] / [Intel XE#2351]) +20 other tests skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][227] ([Intel XE#658]) -> [SKIP][228] ([Intel XE#2136] / [Intel XE#2351]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][229] ([Intel XE#653]) -> [SKIP][230] ([Intel XE#2136] / [Intel XE#2351]) +12 other tests skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2-set2: [SKIP][231] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][232] ([Intel XE#653]) +4 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: [SKIP][233] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][234] ([Intel XE#658]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][235] ([Intel XE#653]) -> [SKIP][236] ([Intel XE#2136]) +38 other tests skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][237] ([Intel XE#2136]) -> [SKIP][238] ([Intel XE#653]) +21 other tests skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-slowdraw.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_histogram@algo-color: - shard-dg2-set2: [SKIP][239] ([Intel XE#2423] / [i915#2575]) -> [SKIP][240] ([Intel XE#3897]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_histogram@algo-color.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_histogram@algo-color.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: [SKIP][241] ([Intel XE#346]) -> [SKIP][242] ([Intel XE#2136]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_joiner@invalid-modeset-big-joiner.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: [SKIP][243] ([Intel XE#2925]) -> [SKIP][244] ([Intel XE#2136]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: [SKIP][245] ([Intel XE#2136]) -> [SKIP][246] ([Intel XE#2927]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_joiner@invalid-modeset-ultra-joiner.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][247] ([Intel XE#2423] / [i915#2575]) -> [SKIP][248] ([Intel XE#356]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_multiple@tiling-y: - shard-dg2-set2: [SKIP][249] ([Intel XE#2423] / [i915#2575]) -> [SKIP][250] ([Intel XE#455]) +5 other tests skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_plane_multiple@tiling-y.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][251] ([Intel XE#361]) -> [SKIP][252] ([Intel XE#2423] / [i915#2575]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/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][253] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][254] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2-set2: [SKIP][255] ([Intel XE#2423] / [i915#2575]) -> [SKIP][256] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt at kms_pm_backlight@bad-brightness: - shard-dg2-set2: [SKIP][257] ([Intel XE#870]) -> [SKIP][258] ([Intel XE#2136]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_pm_backlight@bad-brightness.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: [SKIP][259] ([Intel XE#1129]) -> [SKIP][260] ([Intel XE#2136]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_pm_dc@dc5-psr.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: [SKIP][261] ([Intel XE#908]) -> [SKIP][262] ([Intel XE#2136] / [Intel XE#2351]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_pm_dc@dc6-dpms.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][263] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][264] ([Intel XE#1129]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_pm_dc@dc6-psr.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_pm_dc@dc6-psr.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][265] ([Intel XE#1489]) -> [SKIP][266] ([Intel XE#2136]) +19 other tests skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][267] ([Intel XE#2136]) -> [SKIP][268] ([Intel XE#1489]) +9 other tests skip [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2-set2: [SKIP][269] ([Intel XE#2136]) -> [SKIP][270] ([Intel XE#1122]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr2_su@frontbuffer-xrgb8888.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][271] ([Intel XE#1122]) -> [SKIP][272] ([Intel XE#2136]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_psr2_su@page_flip-nv12.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr-no-drrs: - shard-dg2-set2: [SKIP][273] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][274] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr@fbc-psr-no-drrs.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_psr@fbc-psr-no-drrs.html * igt at kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][275] ([Intel XE#2136]) -> [SKIP][276] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr@fbc-psr2-sprite-plane-move.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_psr@fbc-psr2-sprite-plane-move.html * igt at kms_psr@pr-cursor-plane-onoff: - shard-dg2-set2: [SKIP][277] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][278] ([Intel XE#2136]) +21 other tests skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_psr@pr-cursor-plane-onoff.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_psr@pr-cursor-plane-onoff.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][279] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][280] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_psr@psr-dpms.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_psr@psr-dpms.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: [SKIP][281] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][282] ([Intel XE#2939]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-set2: [SKIP][283] ([Intel XE#3414]) -> [SKIP][284] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/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-set2: [SKIP][285] ([Intel XE#2423] / [i915#2575]) -> [SKIP][286] ([Intel XE#3414]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][287] ([Intel XE#1500]) -> [SKIP][288] ([Intel XE#2423] / [i915#2575]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@flipline: - shard-dg2-set2: [SKIP][289] ([Intel XE#455]) -> [SKIP][290] ([Intel XE#2423] / [i915#2575]) +18 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at kms_vrr@flipline.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_vrr@flipline.html * igt at kms_vrr@lobf: - shard-dg2-set2: [SKIP][291] ([Intel XE#2168]) -> [SKIP][292] ([Intel XE#2423] / [i915#2575]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_vrr@lobf.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: [SKIP][293] ([Intel XE#2423] / [i915#2575]) -> [SKIP][294] ([Intel XE#756]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at kms_writeback@writeback-check-output-xrgb2101010.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: [SKIP][295] ([Intel XE#756]) -> [SKIP][296] ([Intel XE#2423] / [i915#2575]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at kms_writeback@writeback-fb-id.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at kms_writeback@writeback-fb-id.html * igt at xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][297] ([Intel XE#1130]) -> [SKIP][298] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_compute_preempt@compute-preempt.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at xe_compute_preempt@compute-preempt.html * igt at xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: [SKIP][299] ([Intel XE#1123]) -> [SKIP][300] ([Intel XE#1130]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_copy_basic@mem-copy-linear-0xfffe.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_copy_basic@mem-copy-linear-0xfffe.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][301] ([Intel XE#1126]) -> [SKIP][302] ([Intel XE#1130]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0xfd.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][303] ([Intel XE#1130]) -> [SKIP][304] ([Intel XE#1126]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0xfffe.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at xe_copy_basic@mem-set-linear-0xfffe.html * igt at xe_eudebug@basic-vm-bind: - shard-dg2-set2: [SKIP][305] ([Intel XE#1130]) -> [SKIP][306] ([Intel XE#2905]) +8 other tests skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_eudebug@basic-vm-bind.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at xe_eudebug@basic-vm-bind.html * igt at xe_eudebug_online@basic-breakpoint: - shard-dg2-set2: [SKIP][307] ([Intel XE#2905]) -> [SKIP][308] ([Intel XE#1130]) +20 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_eudebug_online@basic-breakpoint.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_eudebug_online@basic-breakpoint.html * igt at xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [FAIL][309] ([Intel XE#1600]) -> [SKIP][310] ([Intel XE#1130]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_evict@evict-beng-large-multi-vm-cm.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_evict@evict-beng-large-multi-vm-cm.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [SKIP][311] ([Intel XE#1130]) -> [TIMEOUT][312] ([Intel XE#1473]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_evict@evict-beng-mixed-many-threads-large.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][313] ([Intel XE#1473]) -> [SKIP][314] ([Intel XE#1130]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_evict@evict-mixed-many-threads-large.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_exec_fault_mode@twice-bindexecqueue-rebind-imm: - shard-dg2-set2: [SKIP][315] ([Intel XE#1130]) -> [SKIP][316] ([Intel XE#288]) +29 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][317] ([Intel XE#288]) -> [SKIP][318] ([Intel XE#1130]) +54 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][319] ([Intel XE#1130]) -> [SKIP][320] ([Intel XE#2360]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][321] ([Intel XE#255]) -> [SKIP][322] ([Intel XE#1130]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_huc_copy@huc_copy.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_huc_copy@huc_copy.html * igt at xe_oa@map-oa-buffer: - shard-dg2-set2: [SKIP][323] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][324] ([Intel XE#1130]) +15 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_oa@map-oa-buffer.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_oa@map-oa-buffer.html * igt at xe_oa@syncs-ufence-wait: - shard-dg2-set2: [SKIP][325] ([Intel XE#1130]) -> [SKIP][326] ([Intel XE#2541] / [Intel XE#3573]) +7 other tests skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_oa@syncs-ufence-wait.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at xe_oa@syncs-ufence-wait.html * igt at xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][327] ([Intel XE#1130]) -> [SKIP][328] ([Intel XE#1337]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_pat@display-vs-wb-transient.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at xe_pat@display-vs-wb-transient.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][329] ([Intel XE#977]) -> [SKIP][330] ([Intel XE#1130]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_pat@pat-index-xe2.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][331] ([Intel XE#979]) -> [SKIP][332] ([Intel XE#1130]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_pat@pat-index-xelpg.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@write: - shard-dg2-set2: [FAIL][333] ([Intel XE#1173]) -> [SKIP][334] ([Intel XE#1061]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-435/igt at xe_peer2peer@write.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][335] ([Intel XE#1130]) -> [SKIP][336] ([Intel XE#2284]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_pm@d3cold-mocs.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: [SKIP][337] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][338] ([Intel XE#1130]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_pm@s2idle-d3cold-basic-exec.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: [SKIP][339] ([Intel XE#1130]) -> [SKIP][340] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_pm@s3-d3cold-basic-exec.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][341] ([Intel XE#1130]) -> [SKIP][342] ([Intel XE#944]) +3 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_query@multigpu-query-engines.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-434/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-dg2-set2: [SKIP][343] ([Intel XE#944]) -> [SKIP][344] ([Intel XE#1130]) +6 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-434/igt at xe_query@multigpu-query-uc-fw-version-huc.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: [SKIP][345] ([Intel XE#3342]) -> [SKIP][346] ([Intel XE#1130]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-436/igt at xe_sriov_flr@flr-each-isolation.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-466/igt at xe_sriov_flr@flr-each-isolation.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][347] ([Intel XE#1130]) -> [SKIP][348] ([Intel XE#3342]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8179/shard-dg2-466/igt at xe_sriov_flr@flr-vf1-clear.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/shard-dg2-436/igt at xe_sriov_flr@flr-vf1-clear.html [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#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#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#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [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#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [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#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [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#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [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#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [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#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [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#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#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#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#3897]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3897 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [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#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [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 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8179 -> IGTPW_12401 * Linux: xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571 -> xe-2452-8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 IGTPW_12401: 34cf1ce01867ff540a0c4fee759df7e3ca3ed92d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2447-89042e0bb417f4d67280e1d7fa9bbcca51734571: 89042e0bb417f4d67280e1d7fa9bbcca51734571 xe-2452-8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5: 8f14ac27d7b0ff9ff973fa44a67cc9a0ff3acad5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12401/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeevan.b at intel.com Fri Jan 10 03:18:01 2025 From: jeevan.b at intel.com (B, Jeevan) Date: Fri, 10 Jan 2025 03:18:01 +0000 Subject: [PATCH i-g-t] tests/intel/kms_dp_linktrain_fallback: Reduce debug loglevel dynamically In-Reply-To: <20250109170729.47646-1-pranay.samala@intel.com> References: <20250109170729.47646-1-pranay.samala@intel.com> Message-ID: Why are we reducing the log level, Please mention if we are fixing something with this ?? Else we cannot do this. Thanks Jeevan b > -----Original Message----- > From: igt-dev On Behalf Of Pranay > Samala > Sent: Thursday, January 9, 2025 10:37 PM > To: igt-dev at lists.freedesktop.org > Cc: B S, Karthik ; Joshi, Kunal1 > ; Lattannavar, Sameer > ; Samala, Pranay > Subject: [PATCH i-g-t] tests/intel/kms_dp_linktrain_fallback: Reduce debug > loglevel dynamically > > This test is getting incomplete on CI environment because its logging to many > logs. > > So dynamically reducing the debug log level to 10. > > Signed-off-by: Pranay Samala > --- > tests/intel/kms_dp_linktrain_fallback.c | 11 ++++++++++- > 1 file changed, 10 insertions(+), 1 deletion(-) > > diff --git a/tests/intel/kms_dp_linktrain_fallback.c > b/tests/intel/kms_dp_linktrain_fallback.c > index a05e2015f..415005774 100644 > --- a/tests/intel/kms_dp_linktrain_fallback.c > +++ b/tests/intel/kms_dp_linktrain_fallback.c > @@ -14,7 +14,7 @@ > */ > > #include > - > +#include "igt_sysfs.h" > #include "igt.h" > > /** > @@ -391,6 +391,7 @@ igt_main > data_t data = {}; > > igt_fixture { > + int dir, current_log_level; > data.drm_fd = drm_open_driver_master(DRIVER_INTEL | > DRIVER_XE); > kmstest_set_vt_graphics_mode(); > @@ -398,6 +399,14 @@ igt_main > igt_display_require_output(&data.display); > for_each_pipe(&data.display, data.pipe) > data.n_pipes++; > + dir = igt_sysfs_drm_module_params_open(); > + if (dir >= 0) { > + current_log_level = igt_drm_debug_level_get(dir); > + close(dir); > + > + if (current_log_level > 10) > + igt_drm_debug_level_update(10); > + } > } > > igt_subtest("dp-fallback") { > -- > 2.34.1 From santhosh.reddy.guddati at intel.com Fri Jan 10 04:27:51 2025 From: santhosh.reddy.guddati at intel.com (Santhosh Reddy Guddati) Date: Fri, 10 Jan 2025 09:57:51 +0530 Subject: [PATCH i-g-t v8 1/2] tests/intel/kms_joiner: switch modeset between uj and bj In-Reply-To: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> References: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> Message-ID: <20250110042752.32846-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.34.1 From santhosh.reddy.guddati at intel.com Fri Jan 10 04:27:52 2025 From: santhosh.reddy.guddati at intel.com (Santhosh Reddy Guddati) Date: Fri, 10 Jan 2025 09:57:52 +0530 Subject: [PATCH i-g-t v8 2/2] lib/igt_kms.c: Enforce strict check for bigjoiner_possible In-Reply-To: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> References: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> Message-ID: <20250110042752.32846-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. v8: rebase and check fot ultra joiner possibility. Signed-off-by: Santhosh Reddy Guddati --- lib/igt_kms.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 95e3059f7..1a0819ce2 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6419,7 +6419,8 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector, bool found = false; for (int i=0; i< connector->count_modes; i++) { - if (igt_bigjoiner_possible(drm_fd, &connector->modes[i], max_dotclock)) { + if (igt_bigjoiner_possible(drm_fd, &connector->modes[i], max_dotclock) && + !igt_ultrajoiner_possible(&connector->modes[i], max_dotclock)) { *mode = connector->modes[i]; found = true; break; -- 2.34.1 From santhosh.reddy.guddati at intel.com Fri Jan 10 04:27:50 2025 From: santhosh.reddy.guddati at intel.com (Santhosh Reddy Guddati) Date: Fri, 10 Jan 2025 09:57:50 +0530 Subject: [PATCH i-g-t v8 0/2] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Message-ID: <20250110042752.32846-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 | 3 +- tests/intel/kms_joiner.c | 97 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 99 insertions(+), 1 deletion(-) -- 2.34.1 From santhosh.reddy.guddati at intel.com Fri Jan 10 04:53:30 2025 From: santhosh.reddy.guddati at intel.com (Reddy Guddati, Santhosh) Date: Fri, 10 Jan 2025 10:23:30 +0530 Subject: [PATCH i-g-t v2] tests/kms_plane_scaling: Add logs to skips In-Reply-To: References: <20250109083858.39089-1-pranay.samala@intel.com> Message-ID: <1b82eddb-3dcb-4295-a4b6-1feeb64d72c4@intel.com> On 09-01-2025 22:29, Reddy Guddati, Santhosh wrote: > Hi Pranay, > > ------------------------------------------------------------------------ > *From:*?Samala, Pranay > *Sent:*?Thursday, January 9, 2025 2:08 PM > *To:*?igt-dev at lists.freedesktop.org > *Cc:*?B S, Karthik ; Reddy Guddati, Santhosh > ; Lattannavar, Sameer > ; Samala, Pranay > *Subject:*?[PATCH i-g-t v2] tests/kms_plane_scaling: Add logs to skips > Having some logs for test failures & skips would > make debugging much easier. > > v2: Add output/pipe name for detailed message (Santhosh) > > Signed-off-by: Pranay Samala > LGTM > Reviewed-by: Santhosh Reddy Guddati > > --- > ?tests/kms_plane_scaling.c | 6 ++++++ > ?1 file changed, 6 insertions(+) > > diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c > index c8c9aee31..43f578d55 100644 > --- a/tests/kms_plane_scaling.c > +++ b/tests/kms_plane_scaling.c > @@ -1577,6 +1577,12 @@ 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 on output " \ > +??????????????????????????????????????????????????????????????? "%s > pipe %s\n", > + > igt_output_name(output), > + > kmstest_pipe_name(pipe)); > ???????????????????????????????????????????????? } > ???????????????????????????????????????????????? continue; > ???????????????????????????????????????? } > -- > 2.34.1 > From patchwork at emeril.freedesktop.org Fri Jan 10 05:11:47 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 05:11:47 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EFull=3A_success_for_tests/kms=5Fhistogram=3A?= =?utf-8?q?_Add_check_for_ghe_api_call_=28rev4=29?= In-Reply-To: <20250108124637.291978-1-mohammed.thasleem@intel.com> References: <20250108124637.291978-1-mohammed.thasleem@intel.com> Message-ID: <173648590743.1843433.10422458698323251512@b555e5b46a47> == Series Details == Series: tests/kms_histogram: Add check for ghe api call (rev4) URL : https://patchwork.freedesktop.org/series/143142/ State : success == Summary == CI Bug Log - changes from IGT_8182_full -> IGTPW_12402_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_12402_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12402_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_12402/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_12402_full: ### IGT changes ### #### Warnings #### * igt at i915_suspend@sysfs-reader: - shard-glk: [INCOMPLETE][1] ([i915#4817]) -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-glk2/igt at i915_suspend@sysfs-reader.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk2/igt at i915_suspend@sysfs-reader.html Known issues ------------ Here are the changes found in IGTPW_12402_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-18/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-3/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-1/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_12402/shard-rkl-3/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-2/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-12/igt at device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-9/igt at device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-6/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][11] ([i915#11078]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-10/igt at device_reset@unbind-cold-reset-rebind.html * igt at device_reset@unbind-reset-rebind: - shard-rkl: [PASS][12] -> [ABORT][13] ([i915#5507]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-rkl-7/igt at device_reset@unbind-reset-rebind.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/igt at device_reset@unbind-reset-rebind.html - shard-tglu: [PASS][14] -> [ABORT][15] ([i915#12817] / [i915#5507]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-tglu-4/igt at device_reset@unbind-reset-rebind.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-4/igt at device_reset@unbind-reset-rebind.html - shard-glk: [PASS][16] -> [ABORT][17] ([i915#5507]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-glk8/igt at device_reset@unbind-reset-rebind.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk9/igt at device_reset@unbind-reset-rebind.html - shard-mtlp: [PASS][18] -> [ABORT][19] ([i915#5507]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-mtlp-2/igt at device_reset@unbind-reset-rebind.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-6/igt at device_reset@unbind-reset-rebind.html * igt at drm_fdinfo@busy-idle-check-all at vcs1: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#8414]) +12 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/igt at drm_fdinfo@busy-idle-check-all at vcs1.html * igt at drm_fdinfo@busy-idle at bcs0: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8414]) +8 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-10/igt at drm_fdinfo@busy-idle at bcs0.html * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#8414]) +6 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-7/igt at drm_fdinfo@busy-idle at vecs0.html * igt at gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#7697]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-12/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#9323]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-1/igt at gem_ccs@block-multicopy-compressed.html - shard-dg1: NOTRUN -> [SKIP][25] ([i915#9323]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#9323]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#9323]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-3/igt at gem_ccs@ctrl-surf-copy-new-ctx.html - shard-tglu: NOTRUN -> [SKIP][28] ([i915#9323]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-6/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#13008]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-7/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#7697]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at gem_close_race@multigpu-basic-threads.html - shard-rkl: NOTRUN -> [SKIP][31] ([i915#7697]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-1/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][32] ([i915#6335]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-10/igt at gem_create@create-ext-cpu-access-big.html - shard-dg2: NOTRUN -> [ABORT][33] ([i915#13427]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-5/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#6335]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-2/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][35] ([i915#1099]) +7 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-snb7/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#280]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-7/igt at gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][37] ([i915#280]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-18/igt at gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][38] ([i915#280]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-6/igt at gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#280]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-3/igt at gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][40] ([i915#280]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-7/igt at gem_ctx_sseu@engines.html * igt at gem_eio@reset-stress: - shard-dg1: [PASS][41] -> [FAIL][42] ([i915#12543] / [i915#5784]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg1-17/igt at gem_eio@reset-stress.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-14/igt at gem_eio@reset-stress.html * igt at gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4771]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu: NOTRUN -> [SKIP][44] ([i915#4525]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-9/igt at gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#4525]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-1/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#6334]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/igt at gem_exec_capture@capture-invisible.html - shard-tglu: NOTRUN -> [SKIP][47] ([i915#6334]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-3/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture-invisible at smem0: - shard-glk: NOTRUN -> [SKIP][48] ([i915#6334]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk2/igt at gem_exec_capture@capture-invisible at smem0.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][49] ([i915#11965]) +2 other tests fail [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-18/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#5107]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-7/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3281]) +7 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-2/igt at gem_exec_reloc@basic-gtt-wc-noreloc.html * igt at gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3281]) +10 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/igt at gem_exec_reloc@basic-wc-gtt-noreloc.html * igt at gem_exec_reloc@basic-write-wc-active: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3281]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-1/igt at gem_exec_reloc@basic-write-wc-active.html - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3281]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-2/igt at gem_exec_reloc@basic-write-wc-active.html * igt at gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at gem_exec_schedule@preempt-queue.html * igt at gem_exec_schedule@reorder-wide: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4812]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-14/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#7276]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/igt at gem_exec_schedule@semaphore-power.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][59] ([i915#7975] / [i915#8213]) +1 other test abort [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-3/igt at gem_exec_suspend@basic-s4-devices.html - shard-rkl: NOTRUN -> [ABORT][60] ([i915#7975] / [i915#8213]) +2 other tests abort [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-7/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4860]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-8/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4860]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-10/igt at gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt at gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#2190]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-10/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613] / [i915#7582]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-6/igt at gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][65] ([i915#4613] / [i915#7582]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-8/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-7/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#12193]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-12/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@parallel-random-verify-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4565]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-12/igt at gem_lmem_swapping@parallel-random-verify-ccs at lmem0.html * igt at gem_lmem_swapping@smem-oom: - shard-glk: NOTRUN -> [SKIP][69] ([i915#4613]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk2/igt at gem_lmem_swapping@smem-oom.html * igt at gem_lmem_swapping@verify-ccs: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4613]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-1/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4613]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-1/igt at gem_lmem_swapping@verify-random.html * igt at gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#8289]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-5/igt at gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][73] ([i915#8289]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-5/igt at gem_media_fill@media-fill.html * igt at gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][74] ([i915#284]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-8/igt at gem_media_vme.html * igt at gem_mmap@pf-nonblock: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4083]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-18/igt at gem_mmap@pf-nonblock.html * igt at gem_mmap_gtt@basic-copy: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4077]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-3/igt at gem_mmap_gtt@basic-copy.html * igt at gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4077]) +8 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/igt at gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt at gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4083]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-2/igt at gem_mmap_wc@copy.html * igt at gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4083]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-3/igt at gem_mmap_wc@write.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3282]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3282]) +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-2/igt at gem_pwrite@basic-exhaustion.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3282]) +5 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/igt at gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][83] ([i915#2658]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-3/igt at gem_pwrite@basic-exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3282]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-7/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@display-protected-crc: - shard-rkl: NOTRUN -> [TIMEOUT][85] ([i915#12917] / [i915#12964]) +3 other tests timeout [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-7/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@verify-pxp-execution-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_12402/shard-dg1-18/igt at gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt at gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4270]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt at gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#8428]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-2/igt at gem_render_copy@linear-to-vebox-y-tiled.html * igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#5190] / [i915#8428]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4079]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-11/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4885]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at gem_softpin@evict-snoop.html * igt at gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#4077]) +6 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-8/igt at gem_tiled_partial_pwrite_pread@writes.html * igt at gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4079]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-12/igt at gem_tiled_pread_pwrite.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][94] ([i915#13263] / [i915#13449]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk5/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#3297]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-1/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][96] ([i915#3323]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk9/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297]) +4 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-5/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#3297]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-3/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#4880]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#3297] / [i915#4880]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#3297]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-1/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-dg1: NOTRUN -> [SKIP][102] ([i915#3297]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][103] ([i915#3297]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-2/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][104] +500 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-snb2/igt at gem_vm_create@invalid-create.html * igt at gen9_exec_parse@allowed-all: - shard-glk: [PASS][105] -> [ABORT][106] ([i915#5566]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-glk6/igt at gen9_exec_parse@allowed-all.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk4/igt at gen9_exec_parse@allowed-all.html * igt at gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#2527] / [i915#2856]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-9/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#2527]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-12/igt at gen9_exec_parse@bb-secure.html * igt at gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#2527]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-1/igt at gen9_exec_parse@bb-start-out.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#2856]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-5/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#2856]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-11/igt at gen9_exec_parse@shadow-peek.html * igt at gen9_exec_parse@unaligned-jump: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#2527] / [i915#2856]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-1/igt at gen9_exec_parse@unaligned-jump.html * igt at i915_module_load@load: - shard-dg2: ([PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134]) -> ([PASS][135], [DMESG-WARN][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157]) ([i915#13368]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-3/igt at i915_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-4/igt at i915_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-11/igt at i915_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-8/igt at i915_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-5/igt at i915_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-5/igt at i915_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-11/igt at i915_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-2/igt at i915_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-8/igt at i915_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-4/igt at i915_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-10/igt at i915_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-6/igt at i915_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-1/igt at i915_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-7/igt at i915_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-1/igt at i915_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-3/igt at i915_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-11/igt at i915_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-4/igt at i915_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-10/igt at i915_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-6/igt at i915_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-7/igt at i915_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-1/igt at i915_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-3/igt at i915_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-2/igt at i915_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-1/igt at i915_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at i915_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-11/igt at i915_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-4/igt at i915_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-5/igt at i915_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-10/igt at i915_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-11/igt at i915_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-7/igt at i915_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at i915_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-2/igt at i915_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-7/igt at i915_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-7/igt at i915_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at i915_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-2/igt at i915_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-5/igt at i915_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-8/igt at i915_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-10/igt at i915_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-10/igt at i915_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-1/igt at i915_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-8/igt at i915_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-5/igt at i915_module_load@load.html * igt at i915_module_load@reload-no-display: - shard-snb: [PASS][158] -> [ABORT][159] ([i915#11703]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-snb5/igt at i915_module_load@reload-no-display.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-snb7/igt at i915_module_load@reload-no-display.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu: NOTRUN -> [ABORT][160] ([i915#12817] / [i915#9820]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-3/igt at i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [ABORT][161] ([i915#9820]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-10/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-dg1: [PASS][162] -> [FAIL][163] ([i915#3591]) +1 other test fail [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#11681] / [i915#6621]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#11681]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-1/igt at i915_pm_rps@thresholds-idle.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#11681]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-14/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#4387]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-1/igt at i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][168] ([i915#4387]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/igt at i915_pm_sseu@full-enable.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#5723]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][170] ([i915#9311]) +1 other test dmesg-warn [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-snb5/igt at i915_selftest@mock.html * igt at i915_suspend@basic-s3-without-i915: - shard-tglu-1: NOTRUN -> [INCOMPLETE][171] ([i915#7443]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-1/igt at i915_suspend@basic-s3-without-i915.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#4212]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-rkl: [PASS][173] -> [INCOMPLETE][174] ([i915#12761]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-rkl-7/igt at kms_async_flips@async-flip-suspend-resume.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-5/igt at kms_async_flips@async-flip-suspend-resume.html * igt at kms_async_flips@async-flip-suspend-resume at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][175] ([i915#12761]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-5/igt at kms_async_flips@async-flip-suspend-resume at pipe-a-hdmi-a-2.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][176] ([i915#8709]) +3 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/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@async-flip-with-page-flip-events at pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#8709]) +15 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-14/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-4-y-rc-ccs.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#1769] / [i915#3555]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-5/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][179] -> [FAIL][180] ([i915#11808] / [i915#5956]) +1 other test fail [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-mtlp-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-8/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html * igt at kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#5286]) +4 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/igt at kms_big_fb@4-tiled-16bpp-rotate-180.html * igt at kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][182] +9 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at kms_big_fb@4-tiled-64bpp-rotate-270.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#4538] / [i915#5286]) +5 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#5286]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/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-tglu: NOTRUN -> [SKIP][185] ([i915#5286]) +4 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#3638]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3638]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-1/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#4538] / [i915#5190]) +9 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at kms_big_fb@y-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#6187]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-5/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#4538]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#6095]) +4 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-1/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc at pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#10307] / [i915#6095]) +148 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-5/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc at pipe-a-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#6095]) +105 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-5/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-dg2-mc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#6095]) +9 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-2/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#6095]) +44 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-2/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-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][196] ([i915#6095]) +20 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-2/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-yf-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][197] ([i915#12796]) +1 other test incomplete [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk1/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#12313]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-14/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][199] ([i915#12313]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-2/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/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@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#6095]) +154 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_chamelium_color@ctm-0-50: - shard-mtlp: NOTRUN -> [SKIP][202] +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-6/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#7828]) +8 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-7/igt at kms_chamelium_frames@hdmi-crc-multiple.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#7828]) +6 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-9/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#7828]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-6/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#7828]) +9 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-14/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#7828]) +11 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/igt at kms_chamelium_hpd@vga-hpd-fast.html * igt at kms_content_protection@content-type-change: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#6944] / [i915#9424]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-5/igt at kms_content_protection@content-type-change.html - shard-dg2: NOTRUN -> [SKIP][209] ([i915#9424]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-5/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#3116]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-3/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][211] ([i915#3299]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#3116] / [i915#3299]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-3/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-1/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#9424]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#9433]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#7118] / [i915#9424]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-6/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-onscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#8814]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-1/igt at kms_cursor_crc@cursor-onscreen-128x42.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555]) +7 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-5/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#13049]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-5/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#3555]) +8 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-18/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#13049]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#13049]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-10/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#13049]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-6/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#13049]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-14/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-sliding-256x256: - shard-rkl: [PASS][225] -> [DMESG-WARN][226] ([i915#12964]) +47 other tests dmesg-warn [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-rkl-1/igt at kms_cursor_crc@cursor-sliding-256x256.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-1/igt at kms_cursor_crc@cursor-sliding-256x256.html * igt at kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#3555]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at kms_cursor_crc@cursor-sliding-32x10.html - shard-tglu: NOTRUN -> [SKIP][228] ([i915#3555]) +3 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-6/igt at kms_cursor_crc@cursor-sliding-32x10.html - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8814]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-8/igt at kms_cursor_crc@cursor-sliding-32x10.html * igt at kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][230] ([i915#12358] / [i915#7882]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk2/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][231] ([i915#12358]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk2/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_edge_walk@128x128-right-edge at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][232] ([i915#12964]) +27 other tests dmesg-warn [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-5/igt at kms_cursor_edge_walk@128x128-right-edge at pipe-a-hdmi-a-2.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][233] +29 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-5/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#4103] / [i915#4213]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#13046] / [i915#5354]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-10/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#9067]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/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-rkl: NOTRUN -> [SKIP][237] ([i915#4103]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][238] ([i915#12170]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-snb2/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][239] ([i915#11968]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-snb2/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#3804]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-6/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2.html * igt at kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#1257]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-14/igt at kms_dp_aux_dev.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#8812]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-5/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-basic: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#3840]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#3840]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-7/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#3840]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#3840]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-5/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#3840] / [i915#9053]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-7/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@chamelium: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#4854]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#1839]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#658]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-2/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#3637]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-9/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-panning: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#9934]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-7/igt at kms_flip@2x-flip-vs-panning.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#9934]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-3/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@2x-plain-flip: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#9934]) +7 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at kms_flip@2x-plain-flip.html - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3637]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-5/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-ts-check at ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][256] -> [FAIL][257] ([i915#11989]) +1 other test fail [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-glk7/igt at kms_flip@2x-plain-flip-ts-check at ab-hdmi-a1-hdmi-a2.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk4/igt at kms_flip@2x-plain-flip-ts-check at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [PASS][258] -> [DMESG-WARN][259] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-rkl-5/igt at kms_flip@absolute-wf_vblank-interruptible.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-6/igt at kms_flip@absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-tglu: NOTRUN -> [FAIL][260] ([i915#11989]) +2 other tests fail [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-7/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-vga1: - shard-snb: NOTRUN -> [FAIL][261] ([i915#11989]) +1 other test fail [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-snb7/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-vga1.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1: - shard-mtlp: [PASS][262] -> [FAIL][263] ([i915#11989]) +2 other tests fail [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-mtlp-3/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-8/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1.html * igt at kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#8381]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-7/igt at kms_flip@flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][265] ([i915#8381]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-10/igt at kms_flip@flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][266] ([i915#8381]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][267] ([i915#12745] / [i915#1982] / [i915#4839]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk9/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][268] ([i915#12745] / [i915#1982]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk9/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate: - shard-dg2: [PASS][269] -> [FAIL][270] ([i915#11989]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-4/igt at kms_flip@plain-flip-fb-recreate.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at kms_flip@plain-flip-fb-recreate.html - shard-rkl: [PASS][271] -> [FAIL][272] ([i915#11989]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-rkl-2/igt at kms_flip@plain-flip-fb-recreate.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-5/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_flip@plain-flip-fb-recreate at b-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][273] ([i915#11989]) +1 other test fail [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-5/igt at kms_flip@plain-flip-fb-recreate at b-hdmi-a2.html * igt at kms_flip@plain-flip-fb-recreate at b-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][274] ([i915#11989]) +2 other tests fail [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at kms_flip@plain-flip-fb-recreate at b-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#2672] / [i915#3555]) +4 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-6/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#2672] / [i915#3555] / [i915#8813]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#2672] / [i915#8813]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#2672] / [i915#3555]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#2587] / [i915#2672]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-1/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-linear-to-64bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8810] / [i915#8813]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8810]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#2672] / [i915#3555]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-11/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-dg1: NOTRUN -> [SKIP][283] ([i915#2587] / [i915#2672]) +4 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/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-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-2/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-dg2: NOTRUN -> [SKIP][285] ([i915#2672]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-2/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-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#2587] / [i915#2672] / [i915#3555]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/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 at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#2587] / [i915#2672]) +4 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-6/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-4tiledg2rcccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#2672] / [i915#3555]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#2672] / [i915#3555]) +5 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-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-rkl: NOTRUN -> [SKIP][290] ([i915#2672]) +5 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg1: [PASS][291] -> [DMESG-WARN][292] ([i915#4423]) +1 other test dmesg-warn [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg1-18/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#8708]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][294] +44 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#5439]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-1/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][296] ([i915#5439]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#10055]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-6/igt at kms_frontbuffer_tracking@fbc-tiling-y.html - shard-dg2: NOTRUN -> [SKIP][298] ([i915#10055]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#3458]) +17 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-18/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#5354]) +25 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][301] +8 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#5439]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-7/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#9766]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-1/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][304] +50 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-2/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#3023]) +25 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/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][306] ([i915#8708]) +19 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-12/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#8708]) +11 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-10/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#1825]) +37 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#1825]) +5 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-3/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#3458]) +16 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-2/igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt at kms_hdr@bpc-switch-dpms: - shard-dg2: [PASS][311] -> [SKIP][312] ([i915#3555] / [i915#8228]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-10/igt at kms_hdr@bpc-switch-dpms.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-3/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@brightness-with-hdr: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#1187] / [i915#12713]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-3/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][314] ([i915#3555] / [i915#8228]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at kms_hdr@static-swap.html - shard-tglu: NOTRUN -> [SKIP][315] ([i915#3555] / [i915#8228]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-9/igt at kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][316] ([i915#3555] / [i915#8228]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-1/igt at kms_hdr@static-swap.html - shard-rkl: NOTRUN -> [SKIP][317] ([i915#3555] / [i915#8228]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-3/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#3555] / [i915#8228]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-5/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-basic: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#13388]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at kms_histogram@global-basic.html * igt at kms_histogram@global-color: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#13388]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-1/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#10656]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-14/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#12388]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-2/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][323] ([i915#12339]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-18/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#10656]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][325] ([i915#12394]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-5/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][326] ([i915#12394]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-14/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][327] ([i915#12394]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-6/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#10656]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-8/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1: - shard-glk: [PASS][329] -> [INCOMPLETE][330] ([i915#12756]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-glk7/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk8/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane@plane-panning-bottom-right-suspend at pipe-b: - shard-glk: NOTRUN -> [INCOMPLETE][331] ([i915#13026]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk6/igt at kms_plane@plane-panning-bottom-right-suspend at pipe-b.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][332] ([i915#10647] / [i915#12169]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk9/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][333] ([i915#10647]) +1 other test fail [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk9/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-pixel-format: - shard-dg1: NOTRUN -> [SKIP][334] ([i915#12247]) +9 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-14/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation: - shard-glk: NOTRUN -> [SKIP][335] +404 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk8/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation.html * igt at kms_plane_scaling@plane-upscale-factor-0-25-with-rotation at pipe-d: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#12247]) +8 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-2/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-unity-scaling at pipe-a: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#12247]) +10 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#12247] / [i915#9423]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-7/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][339] ([i915#12247]) +3 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-7/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-a.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#6953]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-7/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#12247] / [i915#6953]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-5/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-5: - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#12247] / [i915#6953]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-8/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5 at pipe-c: - shard-mtlp: NOTRUN -> [SKIP][343] ([i915#12247]) +7 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-8/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5 at pipe-c.html * igt at kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#5354]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-2/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#12343]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-1/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#3361]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-6/igt at kms_pm_dc@dc9-dpms.html - shard-tglu: [PASS][347] -> [SKIP][348] ([i915#4281]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-tglu-3/igt at kms_pm_dc@dc9-dpms.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-8/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][349] -> [SKIP][350] ([i915#9519]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-7/igt at kms_pm_rpm@dpms-non-lpsp.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-8/igt at kms_pm_rpm@dpms-non-lpsp.html - shard-rkl: [PASS][351] -> [SKIP][352] ([i915#12916]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-rkl-5/igt at kms_pm_rpm@dpms-non-lpsp.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-6/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@i2c: - shard-dg2: [PASS][353] -> [FAIL][354] ([i915#8717]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-3/igt at kms_pm_rpm@i2c.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-2/igt at kms_pm_rpm@i2c.html * igt at kms_pm_rpm@modeset-lpsp: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#9519]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-3/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#9519]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-3/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][357] -> [SKIP][358] ([i915#9519]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-rkl-1/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/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][359] ([i915#6524] / [i915#6805]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at kms_prime@basic-crc-hybrid.html - shard-rkl: NOTRUN -> [SKIP][360] ([i915#6524]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-5/igt at kms_prime@basic-crc-hybrid.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#11520]) +8 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-1/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#12316]) +4 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-3/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][363] ([i915#11520]) +8 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][364] ([i915#9808]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-3/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][365] ([i915#11520]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-snb: NOTRUN -> [SKIP][366] ([i915#11520]) +10 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-snb2/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][367] ([i915#11520]) +5 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-8/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][368] ([i915#11520]) +12 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk9/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-dg1: NOTRUN -> [SKIP][369] ([i915#11520]) +10 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-18/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][370] ([i915#9683]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-psr-cursor-plane-move: - shard-tglu-1: NOTRUN -> [SKIP][371] ([i915#9732]) +2 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-1/igt at kms_psr@fbc-psr-cursor-plane-move.html * igt at kms_psr@fbc-psr-primary-page-flip at edp-1: - shard-mtlp: NOTRUN -> [SKIP][372] ([i915#9688]) +6 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-3/igt at kms_psr@fbc-psr-primary-page-flip at edp-1.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-tglu: NOTRUN -> [SKIP][373] ([i915#9732]) +12 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-8/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][374] ([i915#1072] / [i915#9732]) +25 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-12/igt at kms_psr@psr-sprite-mmap-cpu.html * igt at kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#1072] / [i915#9732]) +17 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-10/igt at kms_psr@psr2-primary-mmap-gtt.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][376] ([i915#1072] / [i915#9732]) +24 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-2/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][377] ([i915#9685]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-10/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-dg2: NOTRUN -> [SKIP][378] ([i915#9685]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][379] ([i915#5289]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-6/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#5190]) +2 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][381] ([i915#5289]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#3555]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-1/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_selftest@drm_framebuffer: - shard-tglu: NOTRUN -> [ABORT][383] ([i915#13179]) +1 other test abort [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-2/igt at kms_selftest@drm_framebuffer.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][384] ([i915#8623]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-5/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][385] ([i915#8623]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-6/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@cursor-fb-leak: - shard-mtlp: [PASS][386] -> [FAIL][387] ([i915#9196]) +1 other test fail [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-mtlp-7/igt at kms_universal_plane@cursor-fb-leak.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-4/igt at kms_universal_plane@cursor-fb-leak.html * igt at kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][388] ([i915#3555] / [i915#8808]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-3/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][389] ([i915#11920]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-5/igt at kms_vrr@lobf.html - shard-mtlp: NOTRUN -> [SKIP][390] ([i915#11920]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-5/igt at kms_vrr@lobf.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#9906]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-2/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-fb-id: - shard-dg1: NOTRUN -> [SKIP][392] ([i915#2437]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][393] ([i915#2437] / [i915#9412]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-12/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][394] ([i915#2437] / [i915#9412]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-8/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-glk: NOTRUN -> [SKIP][395] ([i915#2437]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk9/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][396] ([i915#2437]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-6/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][397] ([i915#9100]) +1 other test fail [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-5/igt at perf@non-zero-reason.html * igt at perf@per-context-mode-unprivileged: - shard-dg1: NOTRUN -> [SKIP][398] ([i915#2433]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-14/igt at perf@per-context-mode-unprivileged.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: [PASS][399] -> [FAIL][400] ([i915#4349]) +4 other tests fail [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-11/igt at perf_pmu@busy-double-start at vecs1.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-10/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@most-busy-idle-check-all: - shard-dg2: [PASS][401] -> [FAIL][402] ([i915#11943]) +1 other test fail [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg2-6/igt at perf_pmu@most-busy-idle-check-all.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/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-rkl: [PASS][403] -> [FAIL][404] ([i915#4349]) +1 other test fail [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-rkl-2/igt at perf_pmu@most-busy-idle-check-all at rcs0.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-7/igt at perf_pmu@most-busy-idle-check-all at rcs0.html - shard-dg1: [PASS][405] -> [FAIL][406] ([i915#11943]) +1 other test fail [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg1-12/igt at perf_pmu@most-busy-idle-check-all at rcs0.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-18/igt at perf_pmu@most-busy-idle-check-all at rcs0.html - shard-mtlp: [PASS][407] -> [FAIL][408] ([i915#11943]) +1 other test fail [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-mtlp-8/igt at perf_pmu@most-busy-idle-check-all at rcs0.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-3/igt at perf_pmu@most-busy-idle-check-all at rcs0.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][409] ([i915#8516]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-11/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-dg1: NOTRUN -> [SKIP][410] ([i915#8516]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-14/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][411] ([i915#8516]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-10/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at perf_pmu@render-node-busy-idle at vcs0: - shard-dg1: NOTRUN -> [FAIL][412] ([i915#4349]) +3 other tests fail [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-12/igt at perf_pmu@render-node-busy-idle at vcs0.html * igt at prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][413] ([i915#3708] / [i915#4077]) +1 other test skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-14/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][414] ([i915#3291] / [i915#3708]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-2/igt at prime_vgem@basic-write.html * igt at prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][415] ([i915#3708]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-12/igt at prime_vgem@fence-flip-hang.html - shard-mtlp: NOTRUN -> [SKIP][416] ([i915#3708]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-1/igt at prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][417] ([i915#3708]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-1/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][418] ([i915#3708]) +1 other test skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-6/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][419] ([i915#9917]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg2-11/igt at sriov_basic@enable-vfs-autoprobe-on.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-2: - shard-mtlp: NOTRUN -> [FAIL][420] ([i915#12910]) +9 other tests fail [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-2/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-2.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-rkl: NOTRUN -> [SKIP][421] ([i915#9917]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-2/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg1: NOTRUN -> [SKIP][422] ([i915#9917]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-12/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-tglu: [DMESG-WARN][423] -> [PASS][424] +1 other test pass [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-tglu-3/igt at gem_ctx_isolation@preservation-s3 at bcs0.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-10/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-tglu: [ABORT][425] -> [PASS][426] +1 other test pass [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-tglu-3/igt at gem_ctx_isolation@preservation-s3 at rcs0.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-10/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_eio@unwedge-stress: - shard-dg1: [FAIL][427] ([i915#12714] / [i915#5784]) -> [PASS][428] [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg1-17/igt at gem_eio@unwedge-stress.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@full-pulse: - shard-dg1: [FAIL][429] ([i915#13364]) -> [PASS][430] [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg1-12/igt at gem_exec_balancer@full-pulse.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-17/igt at gem_exec_balancer@full-pulse.html * igt at gem_softpin@noreloc-s3: - shard-glk: [INCOMPLETE][431] ([i915#13306]) -> [PASS][432] [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-glk1/igt at gem_softpin@noreloc-s3.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk2/igt at gem_softpin@noreloc-s3.html * igt at gem_userptr_blits@sync-unmap-cycles: - shard-rkl: [DMESG-WARN][433] ([i915#12964]) -> [PASS][434] +46 other tests pass [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-rkl-4/igt at gem_userptr_blits@sync-unmap-cycles.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-1/igt at gem_userptr_blits@sync-unmap-cycles.html * igt at i915_module_load@reload-no-display: - shard-tglu: [DMESG-WARN][435] ([i915#13029]) -> [PASS][436] [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-tglu-4/igt at i915_module_load@reload-no-display.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-tglu-7/igt at i915_module_load@reload-no-display.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][437] ([i915#9820]) -> [PASS][438] [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-rkl-3/igt at i915_module_load@reload-with-fault-injection.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/igt at i915_module_load@reload-with-fault-injection.html - shard-snb: [ABORT][439] ([i915#9820]) -> [PASS][440] [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-snb7/igt at i915_module_load@reload-with-fault-injection.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-snb2/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [FAIL][441] ([i915#12942]) -> [PASS][442] +1 other test pass [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-rkl-7/igt at i915_pm_rc6_residency@rc6-accuracy.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-4/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [DMESG-FAIL][443] ([i915#13393]) -> [PASS][444] +1 other test pass [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-mtlp-2/igt at i915_selftest@live at workarounds.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-7/igt at i915_selftest@live at workarounds.html * igt at i915_suspend@basic-s3-without-i915: - shard-glk: [INCOMPLETE][445] ([i915#4817]) -> [PASS][446] [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-glk9/igt at i915_suspend@basic-s3-without-i915.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk4/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@debugfs-reader: - shard-mtlp: [INCOMPLETE][447] -> [PASS][448] [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-mtlp-3/igt at i915_suspend@debugfs-reader.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-4/igt at i915_suspend@debugfs-reader.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [INCOMPLETE][449] ([i915#4817]) -> [PASS][450] [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-rkl-5/igt at i915_suspend@fence-restore-tiled2untiled.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-rkl-5/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-glk: [FAIL][451] ([i915#10991] / [i915#13335]) -> [PASS][452] [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-glk8/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk5/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-b-hdmi-a-2: - shard-glk: [FAIL][453] ([i915#10991]) -> [PASS][454] [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-glk8/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-b-hdmi-a-2.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-glk5/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-b-hdmi-a-2.html * igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180: - shard-mtlp: [FAIL][455] ([i915#5138]) -> [PASS][456] +1 other test pass [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-mtlp-8/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-mtlp-5/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html * igt at kms_busy@extended-pageflip-modeset-hang-oldfb: - shard-dg1: [DMESG-WARN][457] ([i915#4423]) -> [PASS][458] [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/shard-dg1-12/igt at kms_busy@extended-pageflip-modeset-hang-oldfb.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/shard-dg1-12/igt at kms_busy@extended-pageflip-modeset-hang-oldfb.html * igt at kms_cursor_crc@cursor-r == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12402/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 10 06:37:19 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 06:37:19 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Update_image_assets_=28re?= =?utf-8?q?v3=29?= In-Reply-To: <20250107200614.963199-1-ramanaidu.naladala@intel.com> References: <20250107200614.963199-1-ramanaidu.naladala@intel.com> Message-ID: <173649103913.1859324.16830322531249250091@b555e5b46a47> == Series Details == Series: Update image assets (rev3) URL : https://patchwork.freedesktop.org/series/141539/ State : success == Summary == CI Bug Log - changes from IGT_8179 -> IGTPW_12397 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12397 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_3d: - fi-blb-e6850: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/fi-blb-e6850/igt at kms_3d.html - bat-rplp-1: NOTRUN -> [SKIP][2] ([i915#4369]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/bat-rplp-1/igt at kms_3d.html - bat-arlh-2: NOTRUN -> [SKIP][3] ([i915#11346]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/bat-arlh-2/igt at kms_3d.html - bat-adlp-11: NOTRUN -> [SKIP][4] ([i915#4369]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/bat-adlp-11/igt at kms_3d.html * igt at runner@aborted: - fi-pnv-d510: NOTRUN -> [FAIL][5] ([i915#13350]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/fi-pnv-d510/igt at runner@aborted.html [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350 [i915#4369]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4369 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8179 -> IGTPW_12397 * Linux: CI_DRM_15915 -> CI_DRM_15919 CI-20190529: 20190529 CI_DRM_15915: 89042e0bb417f4d67280e1d7fa9bbcca51734571 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15919: dbd476153d41352ad6022088be16301051b9bce7 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12397: d4aedc2fc073d7761e5bff52b7486f9184fb49ba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From santhosh.reddy.guddati at intel.com Fri Jan 10 06:39:07 2025 From: santhosh.reddy.guddati at intel.com (Santhosh Reddy Guddati) Date: Fri, 10 Jan 2025 12:09:07 +0530 Subject: [PATCH i-g-t v1 0/2] Support for IN_FORMATS_ASYNC plane property Message-ID: <20250110063909.34042-1-santhosh.reddy.guddati@intel.com> Use IN_FORMATS_ASYNC property to get list of async modifiers Santhosh Reddy Guddati (2): lib/igt_kms: Add support to retrieve async modifiers tests/kms_async_flips: use in_formats_async for async modifiers lib/igt_kms.c | 42 ++++++++++++++++++++++++++++++++++++++++- lib/igt_kms.h | 7 ++++++- tests/kms_async_flips.c | 4 ++-- 3 files changed, 49 insertions(+), 4 deletions(-) -- 2.25.1 From santhosh.reddy.guddati at intel.com Fri Jan 10 06:39:08 2025 From: santhosh.reddy.guddati at intel.com (Santhosh Reddy Guddati) Date: Fri, 10 Jan 2025 12:09:08 +0530 Subject: [PATCH i-g-t v1 1/2] lib/igt_kms: Add support to retrieve async In-Reply-To: <20250110063909.34042-1-santhosh.reddy.guddati@intel.com> References: <20250110063909.34042-1-santhosh.reddy.guddati@intel.com> Message-ID: <20250110063909.34042-2-santhosh.reddy.guddati@intel.com> This patch introduces async_blob_data to handle asynchronous format modifiers.Processes asynchronous format modifiers and update plane's format and modifiers. Handles 'IN_FORMATS_ASYNC' property. Signed-off-by: Santhosh Reddy Guddati --- lib/igt_kms.c | 42 +++++++++++++++++++++++++++++++++++++++++- lib/igt_kms.h | 7 ++++++- 2 files changed, 47 insertions(+), 2 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 95e3059f7..d7a50b663 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -701,6 +701,7 @@ const char * const igt_plane_prop_names[IGT_NUM_PLANE_PROPS] = { [IGT_PLANE_FB_DAMAGE_CLIPS] = "FB_DAMAGE_CLIPS", [IGT_PLANE_SCALING_FILTER] = "SCALING_FILTER", [IGT_PLANE_SIZE_HINTS] = "SIZE_HINTS", + [IGT_PLANE_IN_FORMATS_ASYNC] = "IN_FORMATS_ASYNC", }; const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { @@ -5747,11 +5748,14 @@ static int igt_count_plane_format_mod(const struct drm_format_modifier_blob *blo static void igt_fill_plane_format_mod(igt_display_t *display, igt_plane_t *plane) { - const struct drm_format_modifier_blob *blob_data; + const struct drm_format_modifier_blob *blob_data, *async_blob_data; + const struct drm_format_modifier *async_modifiers; drmModePropertyBlobPtr blob; uint64_t blob_id; int idx = 0; int count; + int async_count; + const uint32_t *async_formats; if (!igt_plane_has_prop(plane, IGT_PLANE_IN_FORMATS)) { drmModePlanePtr p = plane->drm_plane; @@ -5811,6 +5815,42 @@ static void igt_fill_plane_format_mod(igt_display_t *display, igt_plane_t *plane } igt_assert_eq(idx, plane->format_mod_count); + + if (!igt_plane_has_prop(plane, IGT_PLANE_IN_FORMATS_ASYNC)) + return; + + blob_id = igt_plane_get_prop(plane, IGT_PLANE_IN_FORMATS_ASYNC); + blob = drmModeGetPropertyBlob(display->drm_fd, blob_id); + + if (!blob) + return; + + async_blob_data = (const struct drm_format_modifier_blob *)blob->data; + async_count = igt_count_plane_format_mod(async_blob_data); + + if (!async_count) + return; + + plane->async_format_mod_count = async_count; + plane->async_modifiers = calloc(async_count, sizeof(plane->async_modifiers[0])); + igt_assert(plane->async_modifiers); + + for (int i = 0; i < async_blob_data->count_modifiers; i++) { + for (int j = 0; j < 64; j++) { + async_modifiers = modifiers_ptr(async_blob_data); + async_formats = formats_ptr(async_blob_data); + + if (!(async_modifiers[i].formats & (1ULL << j))) + continue; + + plane->formats[idx] = async_formats[async_modifiers[i].offset + j]; + plane->async_modifiers[idx] = async_modifiers[i].modifier; + idx++; + igt_assert_lte(idx, plane->async_format_mod_count); + } + } + + igt_assert_eq(idx, plane->async_format_mod_count); } /** diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 1e2a927ab..130dc8f53 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -368,7 +368,8 @@ enum igt_atomic_plane_properties { IGT_PLANE_HOTSPOT_X, IGT_PLANE_HOTSPOT_Y, IGT_PLANE_SIZE_HINTS, - IGT_NUM_PLANE_PROPS + IGT_PLANE_IN_FORMATS_ASYNC, + IGT_NUM_PLANE_PROPS, }; /** @@ -441,6 +442,9 @@ typedef struct igt_plane { uint64_t *modifiers; uint32_t *formats; int format_mod_count; + + uint64_t *async_modifiers; + int async_format_mod_count; } igt_plane_t; /* @@ -1275,5 +1279,6 @@ int igt_get_dp_pending_retrain(int drm_fd, igt_output_t *output); void igt_reset_link_params(int drm_fd, igt_output_t *output); int igt_backlight_read(int *result, const char *fname, igt_backlight_context_t *context); int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *context); +bool igt_get_supported_async_modifier(igt_plane_t *plane); #endif /* __IGT_KMS_H__ */ -- 2.25.1 From santhosh.reddy.guddati at intel.com Fri Jan 10 06:39:09 2025 From: santhosh.reddy.guddati at intel.com (Santhosh Reddy Guddati) Date: Fri, 10 Jan 2025 12:09:09 +0530 Subject: [PATCH i-g-t v1 2/2] tests/kms_async_flips: use in_formats_async for async modifiers In-Reply-To: <20250110063909.34042-1-santhosh.reddy.guddati@intel.com> References: <20250110063909.34042-1-santhosh.reddy.guddati@intel.com> Message-ID: <20250110063909.34042-3-santhosh.reddy.guddati@intel.com> Signed-off-by: Santhosh Reddy Guddati --- tests/kms_async_flips.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c index 4a72be7b5..24d4022a5 100644 --- a/tests/kms_async_flips.c +++ b/tests/kms_async_flips.c @@ -719,12 +719,12 @@ static void run_test_with_modifiers(data_t *data, void (*test)(data_t *)) for_each_pipe_with_valid_output(&data->display, data->pipe, data->output) { test_init(data); - for (int i = 0; i < data->plane->format_mod_count; i++) { + for (int i = 0; i < data->plane->async_format_mod_count; i++) { if (data->plane->formats[i] != DRM_FORMAT_XRGB8888) continue; data->allow_fail = true; - data->modifier = data->plane->modifiers[i]; + data->modifier = data->plane->async_modifiers[i]; igt_dynamic_f("pipe-%s-%s-%s", kmstest_pipe_name(data->pipe), data->output->name, -- 2.25.1 From patchwork at emeril.freedesktop.org Fri Jan 10 07:28:41 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 07:28:41 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/intel/kms=5Fjoiner?= =?utf-8?q?=3A_switch_modeset_from_uj_to_bj_and_vice-versa?= In-Reply-To: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> References: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> Message-ID: <173649412169.1875135.9411437444872520004@b555e5b46a47> == Series Details == Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa URL : https://patchwork.freedesktop.org/series/143367/ State : success == Summary == CI Bug Log - changes from IGT_8186 -> IGTPW_12423 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/index.html Participating hosts (37 -> 37) ------------------------------ Additional (1): bat-twl-2 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12423 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at debugfs_test@basic-hwmon: - bat-twl-2: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/bat-twl-2/igt at debugfs_test@basic-hwmon.html * igt at gem_lmem_swapping@basic: - bat-twl-2: NOTRUN -> [SKIP][2] ([i915#10213] / [i915#11671]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/bat-twl-2/igt at gem_lmem_swapping@basic.html * igt at gem_tiled_pread_basic: - bat-twl-2: NOTRUN -> [SKIP][3] ([i915#11031]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/bat-twl-2/igt at gem_tiled_pread_basic.html * igt at i915_pm_rps@basic-api: - bat-twl-2: NOTRUN -> [SKIP][4] ([i915#10209] / [i915#11681]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/bat-twl-2/igt at i915_pm_rps@basic-api.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_8186/bat-arlh-3/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/bat-arlh-3/igt at i915_selftest@live at workarounds.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-twl-2: NOTRUN -> [SKIP][7] ([i915#11030] / [i915#11731]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/bat-twl-2/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_dsc@dsc-basic: - bat-twl-2: NOTRUN -> [SKIP][8] ([i915#9886]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/bat-twl-2/igt at kms_dsc@dsc-basic.html * igt at kms_force_connector_basic@force-load-detect: - bat-twl-2: NOTRUN -> [SKIP][9] ([i915#11032]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/bat-twl-2/igt at kms_force_connector_basic@force-load-detect.html * igt at kms_setmode@basic-clone-single-crtc: - bat-twl-2: NOTRUN -> [SKIP][10] ([i915#8809]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/bat-twl-2/igt at kms_setmode@basic-clone-single-crtc.html * igt at prime_vgem@basic-fence-read: - bat-twl-2: NOTRUN -> [SKIP][11] ([i915#10212] / [i915#3708]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/bat-twl-2/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@basic-read: - bat-twl-2: NOTRUN -> [SKIP][12] ([i915#10214] / [i915#3708]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/bat-twl-2/igt at prime_vgem@basic-read.html * igt at prime_vgem@basic-write: - bat-twl-2: NOTRUN -> [SKIP][13] ([i915#10216] / [i915#3708]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/bat-twl-2/igt at prime_vgem@basic-write.html #### Possible fixes #### * igt at core_hotunplug@unbind-rebind: - bat-arlh-3: [DMESG-WARN][14] ([i915#1982]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/bat-arlh-3/igt at core_hotunplug@unbind-rebind.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/bat-arlh-3/igt at core_hotunplug@unbind-rebind.html * igt at i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][16] ([i915#13393]) -> [PASS][17] +1 other test pass [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/bat-mtlp-8/igt at i915_selftest@live.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/bat-mtlp-8/igt at i915_selftest@live.html [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209 [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#11030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11030 [i915#11031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11031 [i915#11032]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11032 [i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11731]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11731 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8186 -> IGTPW_12423 CI-20190529: 20190529 CI_DRM_15940: 4c299eeff0b03f0e988491bc9102594620e67d42 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12423: 2132aaf8f6cffe66afb76cea4f7ee9a5328a7d9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8186: 2c6b2f0ed4075aa1ac3d341d612e41343cff4e4d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 10 07:46:35 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 07:46:35 -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?= In-Reply-To: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> References: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> Message-ID: <173649519500.1875123.5837889909238569121@b555e5b46a47> == Series Details == Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa URL : https://patchwork.freedesktop.org/series/143367/ State : success == Summary == CI Bug Log - changes from XEIGT_8186_BAT -> XEIGTPW_12423_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12423_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_exec_basic@twice-userptr-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3958]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/bat-adlp-vf/igt at xe_exec_basic@twice-userptr-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/bat-adlp-vf/igt at xe_exec_basic@twice-userptr-rebind.html #### Possible fixes #### * igt at xe_intel_bb@render at render-xmajor-256: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3958]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/bat-adlp-vf/igt at xe_intel_bb@render at render-xmajor-256.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/bat-adlp-vf/igt at xe_intel_bb@render at render-xmajor-256.html * igt at xe_pat@pat-index-xelp at render: - bat-adlp-vf: [DMESG-WARN][5] ([Intel XE#3970]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [Intel XE#3958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3958 [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 Build changes ------------- * IGT: IGT_8186 -> IGTPW_12423 * Linux: xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917 -> xe-2472-4c299eeff0b03f0e988491bc9102594620e67d42 IGTPW_12423: 2132aaf8f6cffe66afb76cea4f7ee9a5328a7d9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8186: 2c6b2f0ed4075aa1ac3d341d612e41343cff4e4d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917: 0ca002b6f088ddd9bdde5630662526a50b7ef917 xe-2472-4c299eeff0b03f0e988491bc9102594620e67d42: 4c299eeff0b03f0e988491bc9102594620e67d42 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 10 07:50:52 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 07:50:52 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Remove_redundant_hotplug_?= =?utf-8?q?detection_assertion_=28rev3=29?= In-Reply-To: <20250109200911.1243517-1-ramanaidu.naladala@intel.com> References: <20250109200911.1243517-1-ramanaidu.naladala@intel.com> Message-ID: <173649545244.1875135.2988824644758431530@b555e5b46a47> == Series Details == Series: Remove redundant hotplug detection assertion (rev3) URL : https://patchwork.freedesktop.org/series/143141/ State : success == Summary == CI Bug Log - changes from IGT_8184 -> IGTPW_12422 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12422 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - bat-adlp-9: NOTRUN -> [SKIP][1] ([i915#11151]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-adlp-9/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-twl-2: NOTRUN -> [SKIP][2] ([i915#11151]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-twl-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-dg2-11: NOTRUN -> [SKIP][3] ([i915#11151]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg2-11/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-rpls-4: NOTRUN -> [SKIP][4] ([i915#11151]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-rpls-4/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - fi-kbl-7567u: NOTRUN -> [SKIP][5] +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-kbl-7567u/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - fi-cfl-8700k: NOTRUN -> [SKIP][6] +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-cfl-8700k/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - fi-kbl-8809g: NOTRUN -> [SKIP][7] +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-kbl-8809g/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-dg2-14: NOTRUN -> [SKIP][8] ([i915#11151]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg2-14/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-kbl-2: NOTRUN -> [SKIP][9] +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-kbl-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-arls-5: NOTRUN -> [SKIP][10] ([i915#11151]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-arls-5/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-rplp-1: NOTRUN -> [SKIP][11] ([i915#11151]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-rplp-1/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-arlh-2: NOTRUN -> [SKIP][12] ([i915#11346]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-arlh-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - fi-rkl-11600: NOTRUN -> [SKIP][13] ([i915#11151]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-rkl-11600/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-jsl-3: NOTRUN -> [SKIP][14] ([i915#11151]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-jsl-3/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - bat-adlp-11: NOTRUN -> [SKIP][15] ([i915#11151]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-adlp-11/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - fi-kbl-guc: NOTRUN -> [SKIP][16] +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-kbl-guc/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-adls-6: NOTRUN -> [SKIP][17] ([i915#7828]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-adls-6/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - fi-ilk-650: NOTRUN -> [SKIP][18] +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-ilk-650/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-jsl-1: NOTRUN -> [SKIP][19] ([i915#7828]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-jsl-1/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - fi-tgl-1115g4: NOTRUN -> [SKIP][20] ([i915#7828]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-tgl-1115g4/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - fi-cfl-guc: NOTRUN -> [SKIP][21] +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-cfl-guc/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-mtlp-6: NOTRUN -> [SKIP][22] ([i915#7828] / [i915#9792]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-mtlp-6/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-adlp-9: NOTRUN -> [SKIP][23] ([i915#7828]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-adlp-9/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-arls-5: NOTRUN -> [SKIP][24] ([i915#7828]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-arls-5/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - bat-arlh-2: NOTRUN -> [SKIP][25] ([i915#11151] / [i915#11346]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-arlh-2/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html - fi-rkl-11600: NOTRUN -> [SKIP][26] ([i915#7828]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-rkl-11600/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - fi-ivb-3770: NOTRUN -> [SKIP][27] +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-ivb-3770/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-mtlp-8: NOTRUN -> [SKIP][28] ([i915#11151]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-mtlp-8/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-dg1-6: NOTRUN -> [SKIP][29] ([i915#12311]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg1-6/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - fi-elk-e7500: NOTRUN -> [SKIP][30] +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-elk-e7500/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-dg2-8: NOTRUN -> [SKIP][31] ([i915#11151]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg2-8/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-adls-6: NOTRUN -> [SKIP][32] ([i915#11151]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-adls-6/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-jsl-1: NOTRUN -> [SKIP][33] ([i915#11151]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-jsl-1/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - fi-tgl-1115g4: NOTRUN -> [SKIP][34] ([i915#11151]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-tgl-1115g4/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - fi-blb-e6850: NOTRUN -> [SKIP][35] +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-blb-e6850/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-mtlp-6: NOTRUN -> [SKIP][36] ([i915#9792]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-mtlp-6/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html - bat-dg1-7: NOTRUN -> [SKIP][37] ([i915#11151]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg1-7/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - bat-arlh-3: NOTRUN -> [SKIP][38] ([i915#11151]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-arlh-3/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-dg1-7: NOTRUN -> [SKIP][39] ([i915#7828]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg1-7/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-jsl-3: NOTRUN -> [SKIP][40] ([i915#7828]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-jsl-3/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-dg2-11: NOTRUN -> [SKIP][41] ([i915#7828]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg2-11/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - fi-kbl-x1275: NOTRUN -> [SKIP][42] +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-kbl-x1275/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - fi-hsw-4770: NOTRUN -> [SKIP][43] +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-hsw-4770/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-rpls-4: NOTRUN -> [SKIP][44] ([i915#7828]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-rpls-4/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - fi-cfl-8109u: NOTRUN -> [SKIP][45] +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/fi-cfl-8109u/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-dg2-14: NOTRUN -> [SKIP][46] ([i915#7828]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg2-14/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-dg2-8: NOTRUN -> [SKIP][47] ([i915#7828]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg2-8/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-rplp-1: NOTRUN -> [SKIP][48] ([i915#7828]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-rplp-1/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-adlp-11: NOTRUN -> [SKIP][49] ([i915#7828]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-adlp-11/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-mtlp-8: NOTRUN -> [SKIP][50] ([i915#7828]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-mtlp-8/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - bat-dg1-6: NOTRUN -> [SKIP][51] ([i915#12311] / [i915#7828]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/bat-dg1-6/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8184 -> IGTPW_12422 * Linux: CI_DRM_15930 -> CI_DRM_15934 CI-20190529: 20190529 CI_DRM_15930: c9da975358cd0763449f08b7063ee935eace4f8c @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15934: c066c8811476b15e9eda121713b5518d21f2347e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12422: 8616c1eeda1eb48db1cee782a15467107d1f81cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8184: ee7a3ac616f55f6ed1b959ff951237099bda86d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From andrzej.hajda at intel.com Fri Jan 10 07:58:39 2025 From: andrzej.hajda at intel.com (Hajda, Andrzej) Date: Fri, 10 Jan 2025 08:58:39 +0100 Subject: [PATCH v2] lib/meson.build: allow build IGT with link time optimization In-Reply-To: References: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> Message-ID: <36bf601f-72a7-46cf-9d95-29baea769179@intel.com> W dniu 09.01.2025 o?18:29, Lucas De Marchi pisze: > On Thu, Jan 09, 2025 at 05:26:30PM +0100, Andrzej Hajda wrote: >> Some distributions use -flto gcc flag to build IGT. With this flag >> enabled variables declared with section attribute do not appear in >> correct section in .o files. Since iga64 assembly helper script relies >> on it we need to use -ffat-lto-objects in case of files containing >> iga64 assembly. According to documentation this option is effective >> only in case lto is in use, so it should not affect non-lto builds. >> >> Closes: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/165 >> Signed-off-by: Andrzej Hajda > > is this about > > ??????? static const char t[] __attribute__ > ((section(".iga64_assembly"), used)) =\ > ? > > it's missing a "retain" attribute to be able to link with LLD. > I fixed a similar bug in kmod recently, but that? was due to linking with > LLD instead of using or not lto. See > https://github.com/kmod-project/kmod/pull/274 > Yes this is about this line, but I think we have here slightly different issues. As I understand in kmod-project you want to keep the symbol in final executable/so_library/whatever. In case of igt we want to have access to ".iga64_assembly" section after compile phase (ie see it in .o files), we do not care about final executable. With LTO enabled the structure of .o files drastically changes - every function/variable in compile phase goes to separate section (.gnu.lto_*), information about final sections is kept somewhere in private metadata. With compiler option '-ffat-lto-objects' .o file contains both structures of sections - classic .text/.data/.iga64_assembly and lto related .gnu.lto_* and this is what we need in case of igt. Regards Andrzej > Are you sure this is related to LTO and not the different linker? > $ grep -r -e '\.iga64_assembly' build-lto-clang/ > grep: build-lto-clang/lib/libigt-gpgpu_shader_c.a.p/gpgpu_shader.c.o: > binary file matches > grep: build-lto-clang/lib/libigt.so.0: binary file matches > grep: build-lto-clang/lib/libigt-gpgpu_fill_c.a.p/gpgpu_fill.c.o: > binary file matches > > > $ readelf -t build-lto-clang/lib/libigt.so.0 | grep -A3 -e > .iga64_assembly > ? [10] .iga64_assembly > ?????? PROGBITS???????? 00000000000657d0? 00000000000657d0? 0 > ?????? 0000000000002c65 0000000000000000? 0???????????????? 16 > ?????? [0000000000000002]: ALLOC > > So it has a section with that name of size 0x2c65 > > > Lucas De Marchi > >> --- >> This patch 'fixes' building IGT with link-time-optimization. I am not >> sure it is or should be supported by IGT, but build scripts can be >> modified to allow it for testing. >> Grepping internet shows at least Gentoo and Arch Linux builds IGT with >> LTO, so I guess it is working for them. >> --- >> Changes in v2: >> - added Closes tag >> - Link to v1: >> https://lore.kernel.org/r/20241216-fix-lto-v1-1-1280b17dc70f at intel.com >> --- >> lib/meson.build | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/lib/meson.build b/lib/meson.build >> index 1704ed1e1c17..9fffdd3c6218 100644 >> --- a/lib/meson.build >> +++ b/lib/meson.build >> @@ -240,7 +240,7 @@ foreach f: lib_sources >> ??????? '-DIGT_DATADIR="@0@"'.format(join_paths(prefix, datadir)), >> ??????? '-DIGT_SRCDIR="@0@"'.format(srcdir), >> ??????? '-DIGT_LOG_DOMAIN="@0@"'.format(f.split('.')[0]), >> -??? ]) >> +??? ] + (iga64_assembly_sources.contains(f) ? [ '-ffat-lto-objects' >> ] : [])) >> >> ??? lib_intermediates += lib >> ??? if iga64_assembly_sources.contains(f) >> >> --- >> base-commit: ee7a3ac616f55f6ed1b959ff951237099bda86d8 >> change-id: 20241216-fix-lto-8d3bc1488c6a >> >> Best regards, >> -- >> Andrzej Hajda >> From patchwork at emeril.freedesktop.org Fri Jan 10 08:36:11 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 08:36:11 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Support_for_IN=5FFORMATS?= =?utf-8?q?=5FASYNC_plane_property?= In-Reply-To: <20250110063909.34042-1-santhosh.reddy.guddati@intel.com> References: <20250110063909.34042-1-santhosh.reddy.guddati@intel.com> Message-ID: <173649817126.1875123.11767105290494792997@b555e5b46a47> == Series Details == Series: Support for IN_FORMATS_ASYNC plane property URL : https://patchwork.freedesktop.org/series/143374/ State : success == Summary == CI Bug Log - changes from IGT_8186 -> IGTPW_12424 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/index.html Participating hosts (37 -> 37) ------------------------------ Additional (1): bat-twl-2 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12424 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at debugfs_test@basic-hwmon: - bat-twl-2: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/bat-twl-2/igt at debugfs_test@basic-hwmon.html * igt at gem_lmem_swapping@basic: - bat-twl-2: NOTRUN -> [SKIP][2] ([i915#10213] / [i915#11671]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/bat-twl-2/igt at gem_lmem_swapping@basic.html * igt at gem_tiled_pread_basic: - bat-twl-2: NOTRUN -> [SKIP][3] ([i915#11031]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/bat-twl-2/igt at gem_tiled_pread_basic.html * igt at i915_pm_rps@basic-api: - bat-twl-2: NOTRUN -> [SKIP][4] ([i915#10209] / [i915#11681]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/bat-twl-2/igt at i915_pm_rps@basic-api.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-twl-2: NOTRUN -> [SKIP][5] ([i915#11030] / [i915#11731]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/bat-twl-2/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_dsc@dsc-basic: - bat-twl-2: NOTRUN -> [SKIP][6] ([i915#9886]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/bat-twl-2/igt at kms_dsc@dsc-basic.html * igt at kms_force_connector_basic@force-load-detect: - bat-twl-2: NOTRUN -> [SKIP][7] ([i915#11032]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/bat-twl-2/igt at kms_force_connector_basic@force-load-detect.html * igt at kms_setmode@basic-clone-single-crtc: - bat-twl-2: NOTRUN -> [SKIP][8] ([i915#8809]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/bat-twl-2/igt at kms_setmode@basic-clone-single-crtc.html * igt at prime_vgem@basic-fence-read: - bat-twl-2: NOTRUN -> [SKIP][9] ([i915#10212] / [i915#3708]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/bat-twl-2/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@basic-read: - bat-twl-2: NOTRUN -> [SKIP][10] ([i915#10214] / [i915#3708]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/bat-twl-2/igt at prime_vgem@basic-read.html * igt at prime_vgem@basic-write: - bat-twl-2: NOTRUN -> [SKIP][11] ([i915#10216] / [i915#3708]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/bat-twl-2/igt at prime_vgem@basic-write.html * igt at runner@aborted: - fi-pnv-d510: NOTRUN -> [FAIL][12] ([i915#13350]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/fi-pnv-d510/igt at runner@aborted.html #### Possible fixes #### * igt at core_hotunplug@unbind-rebind: - bat-arlh-3: [DMESG-WARN][13] ([i915#1982]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/bat-arlh-3/igt at core_hotunplug@unbind-rebind.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/bat-arlh-3/igt at core_hotunplug@unbind-rebind.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209 [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#11030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11030 [i915#11031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11031 [i915#11032]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11032 [i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11731]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11731 [i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8186 -> IGTPW_12424 * Linux: CI_DRM_15940 -> CI_DRM_15941 CI-20190529: 20190529 CI_DRM_15940: 4c299eeff0b03f0e988491bc9102594620e67d42 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15941: d84d114c03ee85ef6089b05aa34102f237119ca2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12424: 237a2abd877b0066525313f9aa05816420c5c671 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8186: 2c6b2f0ed4075aa1ac3d341d612e41343cff4e4d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 10 09:33:33 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 09:33:33 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Support_for_IN=5FFORMATS=5F?= =?utf-8?q?ASYNC_plane_property?= In-Reply-To: <20250110063909.34042-1-santhosh.reddy.guddati@intel.com> References: <20250110063909.34042-1-santhosh.reddy.guddati@intel.com> Message-ID: <173650161366.1875135.7894746364073368108@b555e5b46a47> == Series Details == Series: Support for IN_FORMATS_ASYNC plane property URL : https://patchwork.freedesktop.org/series/143374/ State : success == Summary == CI Bug Log - changes from XEIGT_8186_BAT -> XEIGTPW_12424_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12424_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_intel_bb@intel-bb-blit-x: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3958]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html #### Possible fixes #### * igt at xe_intel_bb@render at render-xmajor-256: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3958]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/bat-adlp-vf/igt at xe_intel_bb@render at render-xmajor-256.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/bat-adlp-vf/igt at xe_intel_bb@render at render-xmajor-256.html * igt at xe_pat@pat-index-xelp at render: - bat-adlp-vf: [DMESG-WARN][5] ([Intel XE#3970]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [Intel XE#3958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3958 [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 Build changes ------------- * IGT: IGT_8186 -> IGTPW_12424 * Linux: xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917 -> xe-2472-4c299eeff0b03f0e988491bc9102594620e67d42 IGTPW_12424: 237a2abd877b0066525313f9aa05816420c5c671 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8186: 2c6b2f0ed4075aa1ac3d341d612e41343cff4e4d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917: 0ca002b6f088ddd9bdde5630662526a50b7ef917 xe-2472-4c299eeff0b03f0e988491bc9102594620e67d42: 4c299eeff0b03f0e988491bc9102594620e67d42 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 10 09:34:35 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 09:34:35 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_lib/igt=5Fkmemleak=3A_lib?= =?utf-8?q?rary_to_interact_with_kmemleak_=28rev2=29?= In-Reply-To: <20250109181027.90402-1-peter.senna@linux.intel.com> References: <20250109181027.90402-1-peter.senna@linux.intel.com> Message-ID: <173650167544.1909964.15469626516738565337@b555e5b46a47> == Series Details == Series: lib/igt_kmemleak: library to interact with kmemleak (rev2) URL : https://patchwork.freedesktop.org/series/142673/ State : success == Summary == CI Bug Log - changes from IGT_8184 -> IGTPW_12421 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12421 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-adlp-11: [PASS][1] -> [ABORT][2] ([i915#13399]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8184/bat-adlp-11/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/bat-adlp-11/igt at i915_selftest@live.html - bat-twl-2: [PASS][3] -> [INCOMPLETE][4] ([i915#9413]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8184/bat-twl-2/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/bat-twl-2/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_lrc: - bat-twl-2: [PASS][5] -> [INCOMPLETE][6] ([i915#12445] / [i915#9413]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8184/bat-twl-2/igt at i915_selftest@live at gt_lrc.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/bat-twl-2/igt at i915_selftest@live at gt_lrc.html #### Possible fixes #### * igt at i915_selftest@live: - 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_8184/bat-mtlp-6/igt at i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/bat-mtlp-6/igt at i915_selftest@live.html [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13399 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8184 -> IGTPW_12421 * Linux: CI_DRM_15930 -> CI_DRM_15934 CI-20190529: 20190529 CI_DRM_15930: c9da975358cd0763449f08b7063ee935eace4f8c @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15934: c066c8811476b15e9eda121713b5518d21f2347e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12421: bdc8ea9492db57d40ecd569d84681108dfe488fb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8184: ee7a3ac616f55f6ed1b959ff951237099bda86d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From jupallyx.ravali at intel.com Fri Jan 10 09:39:27 2025 From: jupallyx.ravali at intel.com (Ravali, JupallyX) Date: Fri, 10 Jan 2025 09:39:27 +0000 Subject: =?utf-8?B?UkU6IOKclyBpOTE1LkNJLkJBVDogZmFpbHVyZSBmb3IgbGliL2lndF9rbWVt?= =?utf-8?Q?leak:_library_to_interact_with_kmemleak_(rev2)?= In-Reply-To: References: <20250109181027.90402-1-peter.senna@linux.intel.com> <173645503540.1723339.14281937234503972914@b555e5b46a47> Message-ID: Hi, https://patchwork.freedesktop.org/series/142673/ - Re-reported. i915.CI.BAT - Re-reported. Thanks, Ravali -----Original Message----- From: I915-ci-infra On Behalf Of Peter Senna Tschudin Sent: 10 January 2025 02:38 To: igt-dev at lists.freedesktop.org; I915-ci-infra at lists.freedesktop.org Subject: Re: ? i915.CI.BAT: failure for lib/igt_kmemleak: library to interact with kmemleak (rev2) Dear I915, On 09.01.2025 21:37, Patchwork wrote: > == Series Details == > > Series: lib/igt_kmemleak: library to interact with kmemleak (rev2) > URL : https://patchwork.freedesktop.org/series/142673/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_8184 -> IGTPW_12421 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12421 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12421, 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_12421/index.html > > Participating hosts (38 -> 37) > ------------------------------ > > Missing (1): fi-snb-2520m > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12421: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at i915_selftest@live at gt_mocs: > - bat-adlp-11: [PASS][1] -> [ABORT][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8184/bat-adlp-11/igt at i915_selftest@live at gt_mocs.html > [2]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/bat-adlp-11/igt at i > 915_selftest at live@gt_mocs.html > This is unrelated to my change. Please fix and re-run. Thank you! [...] From kamil.konieczny at linux.intel.com Fri Jan 10 11:33:11 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Fri, 10 Jan 2025 12:33:11 +0100 Subject: [PATCH v2] tests/intel: Enhance the wedged_mode sysfs support In-Reply-To: <20250108062826.908027-1-pravalika.gurram@intel.com> References: <20250108062826.908027-1-pravalika.gurram@intel.com> Message-ID: <20250110113311.jyeuekjsaqd4m7sr@kamilkon-desk.igk.intel.com> Hi Pravalika, On 2025-01-08 at 11:58:26 +0530, Pravalika Gurram wrote: > 1. Added support to read the wedged_mode sysfs > 2. Handle the -ETIMEDOUT return value during > forcewake_all sysfs open How is testing forcewake related to wedged? imho this should be separate patch, see also below. > > Signed-off-by: Pravalika Gurram > Reviewed-by: Jonathan Cavitt > --- > tests/intel/xe_debugfs.c | 2 +- > tests/intel/xe_wedged.c | 12 ++++++++++++ > 2 files changed, 13 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); Please drop this change, that function return -1 in case of error, if you have a report that it is not please send this in separate patch. > close(handle); > } > > diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c > index 613d571b4..844ab2809 100644 > --- a/tests/intel/xe_wedged.c > +++ b/tests/intel/xe_wedged.c > @@ -203,11 +203,16 @@ simple_hang(int fd, struct drm_xe_sync *sync) > * SUBTEST: wedged-mode-toggle > * Description: Test wedged.mode=1 after testing wedged.mode=2 > */ > +/** > + * SUBTEST: basic-wedged-read > + * Description: Read wedged debugfs > + */ > 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); > @@ -279,6 +284,13 @@ igt_main > igt_assert_eq(simple_ioctl(fd), 0); > } > > + igt_subtest_f("basic-wedged-read") { > + igt_require(igt_debugfs_exists(fd, "wedged_mode", O_RDONLY)); > + > + igt_debugfs_read(fd, "wedged_mode", str); > + igt_assert_f(str[0] != '\0', "Failed to read wedged_mode from debugfs!\n"); Is this correct? Why not using ret = igt_debugfs_read(fd, "wedged_mode", str); and assert on ret <= 0 Regards, Kamil > + } > + > igt_fixture { > if (igt_debugfs_exists(fd, "fail_gt_reset/probability", O_RDWR)) { > igt_debugfs_write(fd, "fail_gt_reset/probability", "0"); > -- > 2.34.1 > From kamil.konieczny at linux.intel.com Fri Jan 10 12:07:01 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Fri, 10 Jan 2025 13:07:01 +0100 Subject: [PATCH v1] tests/xe_debugfs: Improve test_gt subtest In-Reply-To: <20250109105721.914096-1-pravalika.gurram@intel.com> References: <20250109105721.914096-1-pravalika.gurram@intel.com> Message-ID: <20250110120701.yo3cfev43c2jqx7o@kamilkon-desk.igk.intel.com> Hi Pravalika, On 2025-01-09 at 16:27:21 +0530, Pravalika Gurram wrote: > Read the debugfs entries in the loop to improve > the readability. > > Signed-off-by: Pravalika Gurram > --- > tests/intel/xe_debugfs.c | 84 +++++++--------------------------------- > 1 file changed, 13 insertions(+), 71 deletions(-) > > diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c > index bcbb5036a..3d8c17921 100644 > --- a/tests/intel/xe_debugfs.c > +++ b/tests/intel/xe_debugfs.c > @@ -180,77 +180,19 @@ test_gt(int fd, int gt_id) > // "guc_ct_selftest" > }; > > - sprintf(name, "gt%d/hw_engines", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/sa_info", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/steering", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/topology", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/pat", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/mocs", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/ggtt", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/register-save-restore", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/workarounds", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/default_lrc_rcs", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/default_lrc_ccs", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/default_lrc_bcs", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/default_lrc_vecs", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/default_lrc_vcs", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/hwconfig", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/uc/guc_info", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/uc/huc_info", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/uc/guc_log", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); Why not two loops? One for main folder, second for 'uc'? Or by a function call, see below. > + for (int i = 0; i < ARRAY_SIZE(expected_files); i++) { > + sprintf(name, "gt%d/%s", gt_id, expected_files[i]); > + igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > + if (!strstr(name, "uc")) { > + igt_debugfs_dump(fd, name); imho better skip in case name is dir: if (igt_debugfs_is_dir(fd, name)) continue; this would allow to write it clean with help of new function: sprintf(name, "/gt%d", gt_id); validate_read(fd, name, expected_files, ARRAY_SIZE(expected_files)); sprintf(name, "/gt%d/uc", gt_id); validate_read(fd, name, expected_files_uc, ARRAY_SIZE(expected_files_uc)); Regards, Kamil > + } else { > + for (int j = 0; j < ARRAY_SIZE(expected_files_uc); j++) { > + sprintf(name, "gt%d/uc/%s", gt_id, expected_files_uc[j]); > + igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > + igt_debugfs_dump(fd, name); > + } > + } > + } > > sprintf(name, "/gt%d", gt_id); > validate_entries(fd, name, expected_files, ARRAY_SIZE(expected_files)); > -- > 2.34.1 > From luciano.coelho at intel.com Fri Jan 10 12:34:03 2025 From: luciano.coelho at intel.com (Luca Coelho) Date: Fri, 10 Jan 2025 14:34:03 +0200 Subject: [PATCH i-g-t] tests/kms_plane_scaling: get mode only after setting the output pipe Message-ID: <20250110123403.1818011-1-luciano.coelho@intel.com> We find the mode before adding the dynamic intel-max-source-size subtests because we don't want to add substests that don't have a valid mode. However, during the test itself, the mode info instance is not valid anymore, because it is deallocated when setting the output pipe. To solve this, we need to get the mode info _after_ setting the output pipe. Avoid passing the mode to intel_max_source_size_test(), pass the entire invalid_paramtests struct and let the function find the correct mode info again. Signed-off-by: Luca Coelho --- tests/kms_plane_scaling.c | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c index 43f578d5553b..4e74f0e107df 100644 --- a/tests/kms_plane_scaling.c +++ b/tests/kms_plane_scaling.c @@ -1271,15 +1271,26 @@ static drmModeModeInfo *find_mode(data_t *data, igt_output_t *output, const stru * max_dst_h = 8192 */ static void intel_max_source_size_test(data_t *d, enum pipe pipe, igt_output_t *output, - drmModeModeInfo *mode, const uint32_t planesize[]) + const struct invalid_paramtests *param) { igt_fb_t fb; igt_plane_t *plane; int rval; + drmModeModeInfo *mode = NULL; cleanup_crtc(d); igt_output_set_pipe(output, pipe); + + /* + * Need to get the mode again, because it may have changed + * after setting the pipe. + */ + mode = find_mode(d, output, param); + igt_assert(mode); + if (!mode) + return; + igt_output_override_mode(output, mode); plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); @@ -1290,7 +1301,7 @@ static void intel_max_source_size_test(data_t *d, enum pipe pipe, igt_output_t * igt_plane_set_position(plane, 0, 0); igt_plane_set_fb(plane, &fb); - igt_plane_set_size(plane, planesize[0], planesize[1]); + igt_plane_set_size(plane, param->planesize[0], param->planesize[1]); rval = igt_display_try_commit2(&d->display, COMMIT_ATOMIC); @@ -1563,27 +1574,23 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) igt_require_intel(data.drm_fd); for_each_pipe(&data.display, pipe) { for_each_valid_output_on_pipe(&data.display, pipe, output) { - drmModeModeInfo *mode = NULL; - if (get_num_scalers(&data.display, pipe) < 1) continue; /* * Need to find mode with lowest vrefresh else * we can exceed cdclk limits. */ - mode = find_mode(&data, output, &intel_paramtests[index]); - if (mode) { + if (find_mode(&data, output, &intel_paramtests[index])) igt_dynamic_f("pipe-%s-%s", - kmstest_pipe_name(pipe), igt_output_name(output)) - intel_max_source_size_test(&data, pipe, output, mode, - intel_paramtests[index].planesize); - } else { + kmstest_pipe_name(pipe), igt_output_name(output)) + intel_max_source_size_test(&data, pipe, output, + &intel_paramtests[index]); + else igt_info("Unable to find the lowest " \ "refresh rate mode on output " \ "%s pipe %s\n", igt_output_name(output), kmstest_pipe_name(pipe)); - } continue; } break; -- 2.45.2 From jan.sokolowski at intel.com Fri Jan 10 12:52:01 2025 From: jan.sokolowski at intel.com (Jan Sokolowski) Date: Fri, 10 Jan 2025 12:52:01 +0000 Subject: [PATCH i-g-t v1 1/1] tests/xe_eudebug: check if driver is open before toggling enable Message-ID: <20250110125201.59630-1-jan.sokolowski@intel.com> In some cases, ccs_mode_all_engines can fail, which will cause test fixture to not execute properly and skip drm_open_driver, thus putting the test in an unstable state. Check if driver is open or not and reopen if necessary. Signed-off-by: Jan Sokolowski --- tests/intel/xe_eudebug.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c index 22b0da658..6d06ed647 100644 --- a/tests/intel/xe_eudebug.c +++ b/tests/intel/xe_eudebug.c @@ -2868,7 +2868,16 @@ igt_main } igt_fixture { + /* in previous subtest group, ccs_mode_all_engines can fail, + * which will cause test fixture to not execute properly + * and skip drm_open_driver, thus putting the test in an unstable state. + * Therefore, check if driver is open or not and reopen if necessary + */ + if (fcntl(fd, F_GETFD) < 0) + fd = drm_open_driver(DRIVER_XE); + xe_eudebug_enable(fd, was_enabled); + drm_close_driver(fd); } -- 2.34.1 From patchwork at emeril.freedesktop.org Fri Jan 10 13:16:50 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 13:16:50 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_Revert_tests/kms=5Fhisto?= =?utf-8?q?gram=3A_Fix_build_breakage?= In-Reply-To: <20250108205251.1645069-1-lucas.demarchi@intel.com> References: <20250108205251.1645069-1-lucas.demarchi@intel.com> Message-ID: <173651501067.1963050.17446257223043133854@b555e5b46a47> == Series Details == Series: Revert tests/kms_histogram: Fix build breakage URL : https://patchwork.freedesktop.org/series/143275/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15926_full -> IGTPW_12404_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12404_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12404_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_12404/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12404_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_12404/shard-tglu-1/igt at gem_tiled_swapping@non-threaded.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0: - shard-rkl: [PASS][2] -> [SKIP][3] +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-rkl-6/igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-4/igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0.html * igt at kms_async_flips@alternate-sync-async-flip at pipe-c-hdmi-a-3: - shard-dg2: [PASS][4] -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-dg2-5/igt at kms_async_flips@alternate-sync-async-flip at pipe-c-hdmi-a-3.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-6/igt at kms_async_flips@alternate-sync-async-flip at pipe-c-hdmi-a-3.html * igt at kms_async_flips@alternate-sync-async-flip at pipe-d-hdmi-a-4: - shard-dg1: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-dg1-14/igt at kms_async_flips@alternate-sync-async-flip at pipe-d-hdmi-a-4.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-17/igt at kms_async_flips@alternate-sync-async-flip at pipe-d-hdmi-a-4.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: [PASS][8] -> [INCOMPLETE][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk6/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk2/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_properties@connector-properties-atomic at pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [ABORT][10] +1 other test abort [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_properties@connector-properties-atomic at pipe-a-hdmi-a-1.html * igt at perf_pmu@busy-start at vecs0: - shard-mtlp: [PASS][11] -> [FAIL][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-mtlp-6/igt at perf_pmu@busy-start at vecs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-3/igt at perf_pmu@busy-start at vecs0.html * igt at perf_pmu@module-unload: - shard-tglu: [PASS][13] -> [INCOMPLETE][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-tglu-7/igt at perf_pmu@module-unload.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-6/igt at perf_pmu@module-unload.html #### Warnings #### * igt at gem_pxp@hw-rejects-pxp-context: - shard-rkl: [TIMEOUT][15] ([i915#12917] / [i915#12964]) -> [FAIL][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-rkl-1/igt at gem_pxp@hw-rejects-pxp-context.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-7/igt at gem_pxp@hw-rejects-pxp-context.html Known issues ------------ Here are the changes found in IGTPW_12404_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8411]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-12/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#8411]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-6/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][19] ([i915#8411]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-5/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][20] ([i915#8411]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-3/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#11078]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-2/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][22] ([i915#11078]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-14/igt at device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][23] ([i915#11078]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-9/igt at device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#11078]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-7/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][25] ([i915#11078]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@most-busy-idle-check-all at ccs0: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8414]) +13 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-8/igt at drm_fdinfo@most-busy-idle-check-all at ccs0.html * igt at drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#8414]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-17/igt at drm_fdinfo@virtual-busy-hang.html * igt at drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#8414]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-2/igt at drm_fdinfo@virtual-busy-idle-all.html * igt at gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#7697]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-13/igt at gem_basic@multigpu-create-close.html - shard-tglu: NOTRUN -> [SKIP][30] ([i915#7697]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-3/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#3555] / [i915#9323]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#9323]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-6/igt at gem_ccs@ctrl-surf-copy-new-ctx.html - shard-rkl: NOTRUN -> [SKIP][33] ([i915#9323]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-3/igt at gem_ccs@ctrl-surf-copy-new-ctx.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#9323]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-12/igt at gem_ccs@ctrl-surf-copy-new-ctx.html - shard-tglu: NOTRUN -> [SKIP][35] ([i915#9323]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-6/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#7697]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-2/igt at gem_close_race@multigpu-basic-process.html * igt at gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#7697]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/igt at gem_close_race@multigpu-basic-threads.html - shard-rkl: NOTRUN -> [SKIP][38] ([i915#7697]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/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][39] ([i915#6335]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-9/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-set-pat: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#8562]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-17/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3: - shard-rkl: [PASS][41] -> [DMESG-FAIL][42] ([i915#12964]) +1 other test dmesg-fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-rkl-5/igt at gem_ctx_isolation@preservation-s3.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-2/igt at gem_ctx_isolation@preservation-s3.html * igt at gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][43] ([i915#1099]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-snb5/igt at gem_ctx_persistence@processes.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#280]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-1/igt at gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][45] ([i915#280]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-14/igt at gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][46] ([i915#280]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-7/igt at gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#280]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-3/igt at gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][48] ([i915#280]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-6/igt at gem_ctx_sseu@engines.html * igt at gem_exec_balancer@bonded-pair: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4771]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-12/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@hog: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4812]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-2/igt at gem_exec_balancer@hog.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4036]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-6/igt at gem_exec_balancer@invalid-bonds.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4036]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-4/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel: - shard-tglu: NOTRUN -> [SKIP][53] ([i915#4525]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-6/igt at gem_exec_balancer@parallel.html * igt at gem_exec_balancer@parallel-contexts: - shard-tglu-1: NOTRUN -> [SKIP][54] ([i915#4525]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at gem_exec_balancer@parallel-contexts.html * igt at gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4525]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-4/igt at gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt at gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#6334]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-5/igt at gem_exec_capture@capture-invisible.html - shard-tglu: NOTRUN -> [SKIP][57] ([i915#6334]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-2/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture-invisible at smem0: - shard-glk: NOTRUN -> [SKIP][58] ([i915#6334]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk2/igt at gem_exec_capture@capture-invisible at smem0.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#3539]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-5/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3539] / [i915#4852]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-4/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#5107]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-3/igt at gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][62] ([i915#5107]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-6/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-cpu: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#3281]) +8 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-5/igt at gem_exec_reloc@basic-cpu.html * igt at gem_exec_reloc@basic-write-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3281]) +9 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-13/igt at gem_exec_reloc@basic-write-read-noreloc.html * igt at gem_exec_reloc@basic-write-wc-active: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3281]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-4/igt at gem_exec_reloc@basic-write-wc-active.html * igt at gem_exec_reloc@basic-write-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3281]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-5/igt at gem_exec_reloc@basic-write-wc-noreloc.html * igt at gem_exec_schedule@preempt-queue-contexts: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4537] / [i915#4812]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-1/igt at gem_exec_schedule@preempt-queue-contexts.html * igt at gem_exec_schedule@reorder-wide: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4812]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-13/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_suspend@basic-s0: - shard-dg2: [PASS][69] -> [INCOMPLETE][70] ([i915#11441] / [i915#13304]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-dg2-11/igt at gem_exec_suspend@basic-s0.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-7/igt at gem_exec_suspend@basic-s0.html * igt at gem_exec_suspend@basic-s0 at lmem0: - shard-dg2: [PASS][71] -> [INCOMPLETE][72] ([i915#11441]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-dg2-11/igt at gem_exec_suspend@basic-s0 at lmem0.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-7/igt at gem_exec_suspend@basic-s0 at lmem0.html * igt at gem_exec_suspend@basic-s3 at smem: - shard-glk: NOTRUN -> [INCOMPLETE][73] ([i915#13196]) +1 other test incomplete [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk3/igt at gem_exec_suspend@basic-s3 at smem.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4860]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-4/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][75] ([i915#4613] / [i915#7582]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-4/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][76] ([i915#4613]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk7/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#12193]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-13/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@parallel-random-verify-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4565]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-13/igt at gem_lmem_swapping@parallel-random-verify-ccs at lmem0.html * igt at gem_lmem_swapping@random-engines: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#4613]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-7/igt at gem_lmem_swapping@random-engines.html - shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#4613]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at gem_lmem_swapping@random-engines.html * igt at gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#4613]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-9/igt at gem_lmem_swapping@smem-oom.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][82] ([i915#5493]) +1 other test timeout [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/igt at gem_lmem_swapping@smem-oom at lmem0.html - shard-dg1: NOTRUN -> [TIMEOUT][83] ([i915#5493]) +1 other test timeout [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-14/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-ccs: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4613]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-2/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#8289]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-8/igt at gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][86] ([i915#8289]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-1/igt at gem_media_fill@media-fill.html * igt at gem_media_vme: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#284]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at gem_media_vme.html - shard-tglu: NOTRUN -> [SKIP][88] ([i915#284]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-3/igt at gem_media_vme.html * igt at gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#4077]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-4/igt at gem_mmap_gtt@cpuset-medium-copy.html * igt at gem_mmap_gtt@hang: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4077]) +11 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-11/igt at gem_mmap_gtt@hang.html * igt at gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4083]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-6/igt at gem_mmap_wc@copy.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4083]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-14/igt at gem_mmap_wc@copy.html * igt at gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#4083]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-4/igt at gem_mmap_wc@write.html * igt at gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#3282]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-1/igt at gem_partial_pwrite_pread@write.html * igt at gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][95] ([i915#2658]) +1 other test warn [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-snb7/igt at gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][96] ([i915#2658]) +1 other test warn [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-9/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#3282]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-7/igt at gem_pwrite@basic-exhaustion.html - shard-dg1: NOTRUN -> [SKIP][98] ([i915#3282]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at gem_pwrite@basic-exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#3282]) +4 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-2/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@create-regular-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][100] ([i915#12917] / [i915#12964]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-3/igt at gem_pxp@create-regular-buffer.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#4270]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-7/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#4270]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-14/igt at gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt at gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#8428]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-4/igt at gem_render_copy@linear-to-vebox-y-tiled.html * igt at gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][104] +307 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk8/igt at gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#5190] / [i915#8428]) +6 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-5/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4079]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-4/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_set_tiling_vs_pwrite: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#4079]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-12/igt at gem_set_tiling_vs_pwrite.html * igt at gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4077]) +13 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-17/igt at gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][109] ([i915#13263] / [i915#13449]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk9/igt at gem_tiled_swapping@non-threaded.html * igt at gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4879]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-12/igt at gem_unfence_active_buffers.html - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4879]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-5/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][112] ([i915#3323]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk2/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#3297]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-6/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#3282] / [i915#3297]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-12/igt at gem_userptr_blits@forbidden-operations.html - shard-dg2: NOTRUN -> [SKIP][115] ([i915#3282] / [i915#3297]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-5/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#3297]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-6/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#3297] / [i915#4880]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-7/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-dg1: NOTRUN -> [SKIP][118] ([i915#3297] / [i915#4880]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-13/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#3297]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-5/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-dg1: NOTRUN -> [SKIP][120] ([i915#3297]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-13/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][121] ([i915#3297]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-3/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_workarounds@suspend-resume: - shard-glk: [PASS][122] -> [INCOMPLETE][123] ([i915#13356]) +1 other test incomplete [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk8/igt at gem_workarounds@suspend-resume.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk9/igt at gem_workarounds@suspend-resume.html * igt at gem_workarounds@suspend-resume-fd: - shard-glk: NOTRUN -> [INCOMPLETE][124] ([i915#13356]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk7/igt at gem_workarounds@suspend-resume-fd.html * igt at gen9_exec_parse@batch-zero-length: - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#2527] / [i915#2856]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at gen9_exec_parse@batch-zero-length.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#2527]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-17/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#2527]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-4/igt at gen9_exec_parse@bb-start-out.html - shard-tglu: NOTRUN -> [SKIP][128] ([i915#2527] / [i915#2856]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-2/igt at gen9_exec_parse@bb-start-out.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#2856]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-4/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#2856]) +4 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/igt at gen9_exec_parse@unaligned-access.html * igt at i915_module_load@load: - shard-glk: ([PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151]) -> ([PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [DMESG-WARN][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175]) ([i915#118]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk1/igt at i915_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk1/igt at i915_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk2/igt at i915_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk3/igt at i915_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk3/igt at i915_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk4/igt at i915_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk4/igt at i915_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk5/igt at i915_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk5/igt at i915_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk5/igt at i915_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk6/igt at i915_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk6/igt at i915_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk7/igt at i915_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk7/igt at i915_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk7/igt at i915_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk8/igt at i915_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk8/igt at i915_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk8/igt at i915_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk9/igt at i915_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk9/igt at i915_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk9/igt at i915_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk5/igt at i915_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk6/igt at i915_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk7/igt at i915_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk9/igt at i915_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk3/igt at i915_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk6/igt at i915_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk6/igt at i915_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk1/igt at i915_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk9/igt at i915_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk7/igt at i915_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk4/igt at i915_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk8/igt at i915_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk3/igt at i915_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk2/igt at i915_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk9/igt at i915_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk2/igt at i915_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk8/igt at i915_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk7/igt at i915_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk9/igt at i915_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk4/igt at i915_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk1/igt at i915_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk5/igt at i915_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk6/igt at i915_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk8/igt at i915_module_load@load.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [ABORT][176] ([i915#9820]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-17/igt at i915_module_load@reload-with-fault-injection.html - shard-tglu: NOTRUN -> [ABORT][177] ([i915#10887] / [i915#12817] / [i915#9820]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-6/igt at i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [ABORT][178] ([i915#10887] / [i915#9820]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-1/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#6590]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-1/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#11681] / [i915#6621]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-7/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#11681]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-11/igt at i915_pm_rps@thresholds.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#11681]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#6188]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-10/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#5723]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-7/igt at i915_query@test-query-geometry-subslices.html - shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#5723]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at i915_query@test-query-geometry-subslices.html - shard-dg1: NOTRUN -> [SKIP][186] ([i915#5723]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@live: - shard-rkl: [PASS][187] -> [DMESG-FAIL][188] ([i915#13342]) +1 other test dmesg-fail [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-rkl-2/igt at i915_selftest@live.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-3/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [PASS][189] -> [DMESG-FAIL][190] ([i915#13393]) +1 other test dmesg-fail [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-mtlp-5/igt at i915_selftest@live at workarounds.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-4/igt at i915_selftest@live at workarounds.html * igt at i915_selftest@mock at memory_region: - shard-tglu-1: NOTRUN -> [DMESG-WARN][191] ([i915#9311]) +1 other test dmesg-warn [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][192] ([i915#4817]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk7/igt at i915_suspend@forcewake.html * igt at intel_hwmon@hwmon-write: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#7707]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-1/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#5190]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@clobberred-modifier: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#4212]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at kms_addfb_basic@clobberred-modifier.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-dg1: [PASS][196] -> [FAIL][197] ([i915#12518] / [i915#12766]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-dg1-14/igt at kms_async_flips@alternate-sync-async-flip.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-17/igt at kms_async_flips@alternate-sync-async-flip.html - shard-dg2: [PASS][198] -> [FAIL][199] ([i915#10991] / [i915#12766]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-dg2-5/igt at kms_async_flips@alternate-sync-async-flip.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-6/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: [PASS][200] -> [INCOMPLETE][201] ([i915#12761]) +1 other test incomplete [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk5/igt at kms_async_flips@async-flip-suspend-resume.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk8/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-1-y-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#8709]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-2/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-a-hdmi-a-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#8709]) +7 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/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_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#1769] / [i915#3555]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-2/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-snb: NOTRUN -> [SKIP][205] ([i915#1769]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-snb7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-64bpp-rotate-0: - shard-mtlp: [PASS][206] -> [FAIL][207] ([i915#12469] / [i915#5138]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-mtlp-5/igt at kms_big_fb@4-tiled-64bpp-rotate-0.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-8/igt at kms_big_fb@4-tiled-64bpp-rotate-0.html * igt at kms_big_fb@4-tiled-64bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#5286]) +6 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-4/igt at kms_big_fb@4-tiled-64bpp-rotate-270.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#4538] / [i915#5286]) +5 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-12/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#5286]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#5286]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#5286]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#3638]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-17/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][214] +11 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-6/igt at kms_big_fb@x-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#4538] / [i915#5190]) +9 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-5/igt at kms_big_fb@y-tiled-8bpp-rotate-180.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#6187]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-3/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#4538]) +5 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-12/igt at kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][218] +6 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-1/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#6095]) +44 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/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-y-tiled-ccs at pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#10307] / [i915#6095]) +171 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-4/igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#12313]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-11/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][222] ([i915#12313]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-3/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#6095]) +29 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-4/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#6095]) +24 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-4/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#12805]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-17/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-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#6095]) +25 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-5/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-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#6095]) +61 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/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-sprite-planes-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#12313]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-4/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#6095]) +166 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-13/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-3.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#12313]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#12313]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-12/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#3742]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-1/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#11151] / [i915#7828]) +11 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_color@ctm-0-50: - shard-mtlp: NOTRUN -> [SKIP][235] +7 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-1/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#11151] / [i915#7828]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt at kms_chamelium_frames@dp-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#11151] / [i915#7828]) +6 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/igt at kms_chamelium_frames@dp-crc-multiple.html - shard-rkl: NOTRUN -> [SKIP][238] ([i915#11151] / [i915#7828]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-4/igt at kms_chamelium_frames@dp-crc-multiple.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#11151] / [i915#7828]) +7 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-9/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#11151] / [i915#7828]) +5 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-7/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#7116] / [i915#9424]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-17/igt at kms_content_protection@atomic.html * igt at kms_content_protection@content-type-change: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#6944] / [i915#9424]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-1/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-1: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#3116] / [i915#3299]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#6944] / [i915#9424]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-7/igt at kms_content_protection@lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][245] ([i915#9424]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-2/igt at kms_content_protection@lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][246] ([i915#9424]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-1/igt at kms_content_protection@lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][247] ([i915#9424]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#9433]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-13/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#7118]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-11/igt at kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][250] ([i915#7116]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-17/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#7118] / [i915#9424]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-5/igt at kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#6944] / [i915#9424]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-6/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8814]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-1/igt at kms_cursor_crc@cursor-offscreen-32x10.html * igt at kms_cursor_crc@cursor-onscreen-32x10: - shard-tglu: NOTRUN -> [SKIP][254] ([i915#3555]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-3/igt at kms_cursor_crc@cursor-onscreen-32x10.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#13049]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#13049]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#13049]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-4/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#3555]) +6 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#13049]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-4/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#13049]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-5/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-sliding-128x42: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#8814]) +3 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-2/igt at kms_cursor_crc@cursor-sliding-128x42.html * igt at kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#3555]) +4 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-5/igt at kms_cursor_crc@cursor-sliding-32x10.html * igt at kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][263] ([i915#12358] / [i915#7882]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk8/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][264] ([i915#12358]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk8/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_edge_walk@128x128-top-edge: - shard-rkl: [PASS][265] -> [DMESG-WARN][266] ([i915#12964]) +49 other tests dmesg-warn [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-rkl-4/igt at kms_cursor_edge_walk@128x128-top-edge.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-4/igt at kms_cursor_edge_walk@128x128-top-edge.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#13046] / [i915#5354]) +4 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/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-legacy: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#4103] / [i915#4213]) +2 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-17/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#4103]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#9809]) +2 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [PASS][271] -> [FAIL][272] ([i915#2346]) +1 other test fail [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-snb7/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-mtlp: NOTRUN -> [SKIP][273] ([i915#4213]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-5/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg2: NOTRUN -> [SKIP][274] ([i915#4103] / [i915#4213]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#4103]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][276] ([i915#4103]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#9833]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-6/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#9833]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-4/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][279] ([i915#12170]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-snb2/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][280] ([i915#11968]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-snb2/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#9723]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-1/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#3804]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-7/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1.html * igt at kms_dp_aux_dev: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#1257]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][284] ([i915#1257]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-12/igt at kms_dp_aux_dev.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#8812]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-basic: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#3840]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-12/igt at kms_dsc@dsc-basic.html - shard-tglu: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#3840]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-9/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#3840] / [i915#9688]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/igt at kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][289] ([i915#3840]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-4/igt at kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][290] ([i915#3840]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][291] ([i915#3840]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-8/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#3555] / [i915#3840]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-2/igt at kms_dsc@dsc-with-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#3840] / [i915#9053]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-2/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#3469]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-17/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#9337]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-1/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#658]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#3637]) +4 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-2/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#3637]) +3 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][299] -> [FAIL][300] ([i915#13027]) +1 other test fail [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk8/igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a1-hdmi-a2.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk1/igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#8381]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-13/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#3637]) +3 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-3/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#9934]) +7 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-1/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-plain-flip: - shard-dg1: NOTRUN -> [SKIP][304] ([i915#9934]) +8 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-17/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-snb: [PASS][305] -> [FAIL][306] ([i915#11989]) +1 other test fail [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-snb5/igt at kms_flip@2x-plain-flip-ts-check.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-snb7/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#9934]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-7/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#8381]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-4/igt at kms_flip@flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][309] ([i915#8381]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-5/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][310] ([i915#12745] / [i915#4839]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk4/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][311] ([i915#12745]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk4/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html * igt at kms_flip@modeset-vs-vblank-race-interruptible at b-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][312] ([i915#12964]) +19 other tests dmesg-warn [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-2/igt at kms_flip@modeset-vs-vblank-race-interruptible at b-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate: - shard-rkl: [PASS][313] -> [FAIL][314] ([i915#11989]) +2 other tests fail [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-rkl-4/igt at kms_flip@plain-flip-fb-recreate.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-2/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [PASS][315] -> [FAIL][316] ([i915#11989]) +3 other tests fail [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-tglu-10/igt at kms_flip@plain-flip-fb-recreate-interruptible.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-8/igt at kms_flip@plain-flip-fb-recreate-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a1: - shard-rkl: NOTRUN -> [FAIL][317] ([i915#11989]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-2/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at b-edp1: - shard-mtlp: [PASS][318] -> [FAIL][319] ([i915#11989]) +4 other tests fail [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-mtlp-5/igt at kms_flip@plain-flip-fb-recreate-interruptible at b-edp1.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-4/igt at kms_flip@plain-flip-fb-recreate-interruptible at b-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-2/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-downscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#2587] / [i915#2672]) +3 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-13/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-linear-to-64bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#3555] / [i915#8810] / [i915#8813]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-1/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#3555] / [i915#8810]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-1/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#2672] / [i915#8813]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg1: [PASS][325] -> [DMESG-WARN][326] ([i915#4423]) +2 other tests dmesg-warn [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-dg1-18/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-14/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#2587] / [i915#2672] / [i915#3555]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-13/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-tglu: NOTRUN -> [SKIP][328] ([i915#2587] / [i915#2672] / [i915#3555]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-10/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: NOTRUN -> [SKIP][329] ([i915#2587] / [i915#2672]) +3 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-10/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-16bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#2672] / [i915#3555]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/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][331] ([i915#2587] / [i915#2672]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/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-4tiledg2rcccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][332] ([i915#2672] / [i915#3555]) +2 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-13/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#2672] / [i915#3555]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/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-valid-mode: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#2672]) +2 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#2672] / [i915#3555]) +2 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-tglu: NOTRUN -> [SKIP][336] ([i915#2672] / [i915#3555]) +2 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-10/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-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#2672]) +2 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-10/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-mtlp: NOTRUN -> [DMESG-WARN][339] ([i915#1982]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#1825]) +17 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][341] +46 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][342] ([i915#8708]) +19 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/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][343] ([i915#10056] / [i915#13353]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk6/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg2: [PASS][344] -> [FAIL][345] ([i915#6880]) +1 other test fail [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-dg2-2/igt at kms_frontbuffer_tracking@fbc-tiling-4.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#10055]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-5/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#3458]) +15 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][348] ([i915#5354]) +28 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/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-dg1: NOTRUN -> [SKIP][349] +46 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-12/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-dg1: NOTRUN -> [SKIP][350] ([i915#3458]) +20 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][351] +70 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-3/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#3023]) +7 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-5/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#8708]) +16 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-5/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#8708]) +5 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-3/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][355] ([i915#1825]) +13 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#12713]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-2/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][357] ([i915#3555] / [i915#8228]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-7/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-swap: - shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#3555] / [i915#8228]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_hdr@static-swap.html - shard-dg1: NOTRUN -> [SKIP][359] ([i915#3555] / [i915#8228]) +2 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at kms_hdr@static-swap.html - shard-rkl: NOTRUN -> [SKIP][360] ([i915#3555] / [i915#8228]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-7/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][361] ([i915#3555] / [i915#8228]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-9/igt at kms_hdr@static-toggle.html * igt at kms_invalid_mode@int-max-clock: - shard-dg1: NOTRUN -> [DMESG-WARN][362] ([i915#4423]) +2 other tests dmesg-warn [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-14/igt at kms_invalid_mode@int-max-clock.html * igt at kms_joiner@basic-big-joiner: - shard-dg1: NOTRUN -> [SKIP][363] ([i915#10656]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at kms_joiner@basic-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][364] ([i915#10656]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-3/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-mtlp: NOTRUN -> [SKIP][365] ([i915#10656]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-2/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][366] ([i915#12394]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-7/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][367] ([i915#12394]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][368] ([i915#12394]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#12339]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/igt at kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][370] ([i915#12339]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-14/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg1: NOTRUN -> [SKIP][371] ([i915#1839]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-12/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][372] ([i915#10647] / [i915#12169]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk8/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][373] ([i915#10647]) +1 other test fail [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk8/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#8821]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][375] ([i915#3555]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-4/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][376] ([i915#12247] / [i915#9423]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/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-d: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#12247]) +7 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-d.html * igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-a: - shard-dg1: NOTRUN -> [SKIP][378] ([i915#12247]) +13 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-14/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-b: - shard-tglu: NOTRUN -> [SKIP][379] ([i915#12247]) +18 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-7/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-b.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][380] ([i915#12247] / [i915#6953]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/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-rkl: NOTRUN -> [SKIP][381] ([i915#12247] / [i915#6953]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-1/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][382] ([i915#12247]) +4 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-1/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-25 at pipe-b: - shard-tglu-1: NOTRUN -> [SKIP][383] ([i915#12247]) +3 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][384] ([i915#6953]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-4/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][385] ([i915#12247] / [i915#3555]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][386] ([i915#12247] / [i915#6953]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][387] ([i915#12247] / [i915#3555] / [i915#6953]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75 at pipe-a: - shard-mtlp: NOTRUN -> [SKIP][388] ([i915#12247]) +11 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75 at pipe-a.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][389] ([i915#12343]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-dpms: - shard-dg1: NOTRUN -> [SKIP][390] ([i915#5354]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-17/igt at kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][391] ([i915#9812]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-4/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][392] ([i915#9685]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-4/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][393] ([i915#3361]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-7/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][394] ([i915#9340]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-13/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg1: NOTRUN -> [SKIP][395] ([i915#9519]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-17/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][396] -> [SKIP][397] ([i915#9519]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-dg2-3/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-4/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][398] ([i915#9519]) +1 other test skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-10/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][399] ([i915#9519]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][400] -> [SKIP][401] ([i915#9519]) +2 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-rkl-5/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-4/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: [PASS][402] -> [INCOMPLETE][403] ([i915#10553]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-glk1/igt at kms_pm_rpm@system-suspend-modeset.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk6/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][404] ([i915#11520]) +13 other tests skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-snb7/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html - shard-mtlp: NOTRUN -> [SKIP][405] ([i915#12316]) +8 other tests skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-7/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][406] ([i915#11520]) +13 other tests skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk2/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][407] ([i915#11520]) +6 other tests skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/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-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][408] ([i915#9808]) +3 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-1/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][409] ([i915#11520]) +8 other tests skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-10/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][410] ([i915#11520]) +6 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-1/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][411] ([i915#11520]) +5 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-9/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-dg1: NOTRUN -> [SKIP][412] ([i915#11520]) +10 other tests skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-14/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][413] ([i915#9683]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/igt at kms_psr2_su@page_flip-nv12.html - shard-dg1: NOTRUN -> [SKIP][414] ([i915#9683]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-12/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-pr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][415] ([i915#9732]) +19 other tests skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-2/igt at kms_psr@fbc-pr-sprite-plane-move.html * igt at kms_psr@fbc-pr-sprite-render: - shard-dg1: NOTRUN -> [SKIP][416] ([i915#1072] / [i915#9732]) +23 other tests skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-12/igt at kms_psr@fbc-pr-sprite-render.html * igt at kms_psr@fbc-psr2-cursor-blt at edp-1: - shard-mtlp: NOTRUN -> [SKIP][417] ([i915#9688]) +10 other tests skip [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-2/igt at kms_psr@fbc-psr2-cursor-blt at edp-1.html * igt at kms_psr@psr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][418] ([i915#1072] / [i915#9732]) +24 other tests skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-6/igt at kms_psr@psr-cursor-mmap-cpu.html * igt at kms_psr@psr-sprite-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][419] ([i915#9732]) +9 other tests skip [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_psr@psr-sprite-mmap-cpu.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][420] ([i915#1072] / [i915#9732]) +11 other tests skip [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-7/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][421] ([i915#9685]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][422] ([i915#4884]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at kms_rotation_crc@exhaust-fences.html - shard-dg2: NOTRUN -> [SKIP][423] ([i915#4235]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-3/igt at kms_rotation_crc@exhaust-fences.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][424] ([i915#12755] / [i915#5190]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-8/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][425] ([i915#5289]) +1 other test skip [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu: NOTRUN -> [SKIP][426] ([i915#5289]) +1 other test skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-9/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][427] ([i915#12755]) +1 other test skip [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-11/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_setmode@clone-exclusive-crtc: - shard-tglu-1: NOTRUN -> [SKIP][428] ([i915#3555]) +4 other tests skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-1/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][429] ([IGT#160]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-1/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][430] ([i915#8623]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-7/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][431] ([i915#8623]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg1-18/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu: NOTRUN -> [SKIP][432] ([i915#8623]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-6/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][433] ([i915#8623]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-4/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][434] ([i915#12276]) +1 other test incomplete [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk5/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][435] ([i915#3555] / [i915#8808]) +1 other test skip [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-5/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@lobf: - shard-mtlp: NOTRUN -> [SKIP][436] ([i915#11920]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-mtlp-2/igt at kms_vrr@lobf.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][437] ([i915#9906]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-tglu-7/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][438] ([i915#9906]) +1 other test skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-6/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][439] ([i915#2437] / [i915#9412]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-1/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][440] ([i915#2437]) +1 other test skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-glk9/igt at kms_writeback@writeback-pixel-formats.html * igt at perf_pmu@all-busy-idle-check-all: - shard-dg2: [PASS][441] -> [FAIL][442] ([i915#11943]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-dg2-7/igt at perf_pmu@all-busy-idle-check-all.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-dg2-2/igt at perf_pmu@all-busy-idle-check-all.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][443] +453 other tests skip [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-snb2/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@busy-accuracy-98 at bcs0: - shard-rkl: NOTRUN -> [FAIL][444] ([i915#4349]) +2 other tests fail [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/shard-rkl-5/igt at perf_pmu@busy-accuracy-98 at bcs0.html * igt at perf_pmu@busy-double-start at ccs0: - shard-mtlp: [PASS][445] -> [FAIL][446] ([i915#4349]) +1 other test fail [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15926/shard-mtlp-7/igt at perf_pmu@busy-double-start at ccs0.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12404/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 10 13:38:54 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 13:38:54 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/kms=5Fplane=5Fscaling?= =?utf-8?q?=3A_get_mode_only_after_setting_the_output_pipe?= In-Reply-To: <20250110123403.1818011-1-luciano.coelho@intel.com> References: <20250110123403.1818011-1-luciano.coelho@intel.com> Message-ID: <173651633497.1965947.13528734354752874730@b555e5b46a47> == Series Details == Series: tests/kms_plane_scaling: get mode only after setting the output pipe URL : https://patchwork.freedesktop.org/series/143388/ State : success == Summary == CI Bug Log - changes from XEIGT_8186_BAT -> XEIGTPW_12425_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12425_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_intel_bb@render at render-xmajor-256: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3958]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/bat-adlp-vf/igt at xe_intel_bb@render at render-xmajor-256.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/bat-adlp-vf/igt at xe_intel_bb@render at render-xmajor-256.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html * igt at xe_pat@pat-index-xelp at render: - bat-adlp-vf: [DMESG-WARN][7] ([Intel XE#3970]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/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][9] ([Intel XE#1192]) -> [SKIP][10] ([Intel XE#2229] / [Intel XE#455]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8186 -> IGTPW_12425 * Linux: xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917 -> xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde IGTPW_12425: 3ecd83f130ed2cb4419226fad481364f8a39a5be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8186: 2c6b2f0ed4075aa1ac3d341d612e41343cff4e4d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917: 0ca002b6f088ddd9bdde5630662526a50b7ef917 xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde: 00f4619246294b1de4bac42742cfef95c1f37fde == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 10 13:39:42 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 13:39:42 -0000 Subject: =?utf-8?q?=E2=9C=97_GitLab=2EPipeline=3A_warning_for_series_starting_with_?= =?utf-8?q?=5Bi-g-t=2Cv1=2C1/1=5D_tests/xe=5Feudebug=3A_check_if_driver_is_o?= =?utf-8?q?pen_before_toggling_enable?= In-Reply-To: <20250110125201.59630-1-jan.sokolowski@intel.com> References: <20250110125201.59630-1-jan.sokolowski@intel.com> Message-ID: <173651638254.1965947.2103664730601987541@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v1,1/1] tests/xe_eudebug: check if driver is open before toggling enable URL : https://patchwork.freedesktop.org/series/143389/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1343270 for the overview. build:tests-debian-meson-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69166993): section_start:1736516079:get_sources Getting source from Git repository $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out 955450e0 as detached HEAD (ref is intel/IGTPW_12426)... Skipping Git submodules setup section_end:1736516084:get_sources section_start:1736516084:step_script Executing "step_script" stage of the job script Using docker image sha256:cc55efdc667be826910d414a562c76ce1130a9c15255a0dd115431bc42f83448 for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-mips:commit-955450e0e524aacb7331a926497c5d58cb3b9b2d with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-mips at sha256:c829c44880da4782b7a72626c259ac6904b4bd5f08601e66b3be889ca1c0cf79 ... section_end:1736516086:step_script section_start:1736516086:cleanup_file_variables Cleaning up project directory and file based variables section_end:1736516087:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:cc55efdc667be826910d414a562c76ce1130a9c15255a0dd115431bc42f83448: image not known (docker.go:650:0s) == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1343270 From patchwork at emeril.freedesktop.org Fri Jan 10 13:48:17 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 13:48:17 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/kms=5Fplane=5Fscali?= =?utf-8?q?ng=3A_get_mode_only_after_setting_the_output_pipe?= In-Reply-To: <20250110123403.1818011-1-luciano.coelho@intel.com> References: <20250110123403.1818011-1-luciano.coelho@intel.com> Message-ID: <173651689721.1970305.1555909998717263828@b555e5b46a47> == Series Details == Series: tests/kms_plane_scaling: get mode only after setting the output pipe URL : https://patchwork.freedesktop.org/series/143388/ State : success == Summary == CI Bug Log - changes from IGT_8186 -> IGTPW_12425 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/index.html Participating hosts (37 -> 37) ------------------------------ Additional (1): bat-twl-2 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12425 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at debugfs_test@basic-hwmon: - bat-twl-2: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/bat-twl-2/igt at debugfs_test@basic-hwmon.html * igt at gem_lmem_swapping@basic: - bat-twl-2: NOTRUN -> [SKIP][2] ([i915#10213] / [i915#11671]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/bat-twl-2/igt at gem_lmem_swapping@basic.html * igt at gem_tiled_pread_basic: - bat-twl-2: NOTRUN -> [SKIP][3] ([i915#11031]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/bat-twl-2/igt at gem_tiled_pread_basic.html * igt at i915_pm_rps@basic-api: - bat-twl-2: NOTRUN -> [SKIP][4] ([i915#10209] / [i915#11681]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/bat-twl-2/igt at i915_pm_rps@basic-api.html * igt at i915_selftest@live: - bat-mtlp-6: [PASS][5] -> [DMESG-FAIL][6] ([i915#13393]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/bat-mtlp-6/igt at i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/bat-mtlp-6/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - 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_8186/bat-arls-5/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/bat-arls-5/igt at i915_selftest@live at workarounds.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-twl-2: NOTRUN -> [SKIP][9] ([i915#11030] / [i915#11731]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/bat-twl-2/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_dsc@dsc-basic: - bat-twl-2: NOTRUN -> [SKIP][10] ([i915#9886]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/bat-twl-2/igt at kms_dsc@dsc-basic.html * igt at kms_force_connector_basic@force-load-detect: - bat-twl-2: NOTRUN -> [SKIP][11] ([i915#11032]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/bat-twl-2/igt at kms_force_connector_basic@force-load-detect.html * igt at kms_setmode@basic-clone-single-crtc: - bat-twl-2: NOTRUN -> [SKIP][12] ([i915#8809]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/bat-twl-2/igt at kms_setmode@basic-clone-single-crtc.html * igt at prime_vgem@basic-fence-read: - bat-twl-2: NOTRUN -> [SKIP][13] ([i915#10212] / [i915#3708]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/bat-twl-2/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@basic-read: - bat-twl-2: NOTRUN -> [SKIP][14] ([i915#10214] / [i915#3708]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/bat-twl-2/igt at prime_vgem@basic-read.html * igt at prime_vgem@basic-write: - bat-twl-2: NOTRUN -> [SKIP][15] ([i915#10216] / [i915#3708]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/bat-twl-2/igt at prime_vgem@basic-write.html #### Possible fixes #### * igt at core_hotunplug@unbind-rebind: - bat-arlh-3: [DMESG-WARN][16] ([i915#1982]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/bat-arlh-3/igt at core_hotunplug@unbind-rebind.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/bat-arlh-3/igt at core_hotunplug@unbind-rebind.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209 [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#11030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11030 [i915#11031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11031 [i915#11032]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11032 [i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11731]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11731 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8186 -> IGTPW_12425 * Linux: CI_DRM_15940 -> CI_DRM_15942 CI-20190529: 20190529 CI_DRM_15940: 4c299eeff0b03f0e988491bc9102594620e67d42 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15942: 00f4619246294b1de4bac42742cfef95c1f37fde @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12425: 3ecd83f130ed2cb4419226fad481364f8a39a5be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8186: 2c6b2f0ed4075aa1ac3d341d612e41343cff4e4d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 10 14:05:51 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 14:05:51 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_series_starting_with_=5Bi-g?= =?utf-8?q?-t=2Cv1=2C1/1=5D_tests/xe=5Feudebug=3A_check_if_driver_is_open_be?= =?utf-8?q?fore_toggling_enable?= In-Reply-To: <20250110125201.59630-1-jan.sokolowski@intel.com> References: <20250110125201.59630-1-jan.sokolowski@intel.com> Message-ID: <173651795154.1978848.15791484157022862382@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v1,1/1] tests/xe_eudebug: check if driver is open before toggling enable URL : https://patchwork.freedesktop.org/series/143389/ State : success == Summary == CI Bug Log - changes from XEIGT_8186_BAT -> XEIGTPW_12426_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 7) ------------------------------ Missing (1): bat-bmg-1 Known issues ------------ Here are the changes found in XEIGTPW_12426_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_intel_bb@render at render-xmajor-256: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3958]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/bat-adlp-vf/igt at xe_intel_bb@render at render-xmajor-256.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/bat-adlp-vf/igt at xe_intel_bb@render at render-xmajor-256.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html * igt at xe_pat@pat-index-xelp at render: - bat-adlp-vf: [DMESG-WARN][7] ([Intel XE#3970]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/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][9] ([Intel XE#1192]) -> [SKIP][10] ([Intel XE#2229] / [Intel XE#455]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8186 -> IGTPW_12426 * Linux: xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917 -> xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde IGTPW_12426: 12426 IGT_8186: 2c6b2f0ed4075aa1ac3d341d612e41343cff4e4d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917: 0ca002b6f088ddd9bdde5630662526a50b7ef917 xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde: 00f4619246294b1de4bac42742cfef95c1f37fde == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Fri Jan 10 14:19:12 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Fri, 10 Jan 2025 15:19:12 +0100 Subject: [PATCH v3 1/2] tests/intel/kms_frontbuffer_tracking: Add skip condition for bmg platform In-Reply-To: <20250109055652.405793-1-mohammed.thasleem@intel.com> References: <20250109055652.405793-1-mohammed.thasleem@intel.com> Message-ID: <20250110141912.3vehhww6tz6fxg52@kamilkon-desk.igk.intel.com> Hi Mohammed, On 2025-01-09 at 11:26:51 +0530, Mohammed Thasleem wrote: please also improve subject so we know it from beginning which skips you added, so better: [PATCH v3 1/2] tests/intel/kms_frontbuffer_tracking: Skip fbc* tests on BMG Same note for your other patches, if you know which ones skipped just write it in subject. The only exception would be if there are many different tests names skipped, then you could use generic. Regards, Kamil > 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_frontbuffer_tracking.c | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > > diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c > index e41ee0a80..2d47194dd 100644 > --- a/tests/intel/kms_frontbuffer_tracking.c > +++ b/tests/intel/kms_frontbuffer_tracking.c > @@ -2756,6 +2756,10 @@ static void prepare_subtest_data(const struct test_mode *t, > > static void prepare_subtest_screens(const struct test_mode *t) > { > + /* FBC disabled: Wa_16023588340 */ > + igt_skip_on_f((IS_BATTLEMAGE(drm.devid) && t->feature == FEATURE_FBC), > + "FBC isn't supported on BMG\n"); > + > if (t->pipes == PIPE_DUAL) > enable_both_screens_and_wait(t); > else > @@ -2800,6 +2804,10 @@ static void prepare_subtest(const struct test_mode *t, > */ > static void rte_subtest(const struct test_mode *t) > { > + /* FBC disabled: Wa_16023588340 */ > + igt_skip_on_f((IS_BATTLEMAGE(drm.devid) && t->feature == FEATURE_FBC), > + "FBC isn't supported on BMG\n"); > + > prepare_subtest_data(t, NULL); > > unset_all_crtcs(); > @@ -4285,6 +4293,10 @@ igt_main_args("", long_options, help_str, opt_handler, NULL) > t.flip = -1; > t.tiling = opt.tiling; > > + /* FBC disabled: Wa_16023588340 */ > + igt_skip_on_f((IS_BATTLEMAGE(drm.devid) && t.feature == FEATURE_FBC), > + "FBC isn't supported on BMG\n"); > + > for_each_pipe(&drm.display, pipe) { > if (pipe == default_pipe) { > igt_info("pipe-%s: FBC validated in other subtest\n", kmstest_pipe_name(pipe)); > -- > 2.43.0 > From patchwork at emeril.freedesktop.org Fri Jan 10 14:20:32 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 14:20:32 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_series_starting_with_=5Bi?= =?utf-8?q?-g-t=2Cv1=2C1/1=5D_tests/xe=5Feudebug=3A_check_if_driver_is_open_?= =?utf-8?q?before_toggling_enable?= In-Reply-To: <20250110125201.59630-1-jan.sokolowski@intel.com> References: <20250110125201.59630-1-jan.sokolowski@intel.com> Message-ID: <173651883236.1979007.18138282580812983305@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v1,1/1] tests/xe_eudebug: check if driver is open before toggling enable URL : https://patchwork.freedesktop.org/series/143389/ State : success == Summary == CI Bug Log - changes from IGT_8186 -> IGTPW_12426 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/index.html Participating hosts (37 -> 37) ------------------------------ Additional (1): bat-twl-2 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12426 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at debugfs_test@basic-hwmon: - bat-twl-2: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/bat-twl-2/igt at debugfs_test@basic-hwmon.html * igt at gem_lmem_swapping@basic: - bat-twl-2: NOTRUN -> [SKIP][2] ([i915#10213] / [i915#11671]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/bat-twl-2/igt at gem_lmem_swapping@basic.html * igt at gem_tiled_pread_basic: - bat-twl-2: NOTRUN -> [SKIP][3] ([i915#11031]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/bat-twl-2/igt at gem_tiled_pread_basic.html * igt at i915_pm_rps@basic-api: - bat-twl-2: NOTRUN -> [SKIP][4] ([i915#10209] / [i915#11681]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/bat-twl-2/igt at i915_pm_rps@basic-api.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-twl-2: NOTRUN -> [SKIP][5] ([i915#11030] / [i915#11731]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/bat-twl-2/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_dsc@dsc-basic: - bat-twl-2: NOTRUN -> [SKIP][6] ([i915#9886]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/bat-twl-2/igt at kms_dsc@dsc-basic.html * igt at kms_force_connector_basic@force-load-detect: - bat-twl-2: NOTRUN -> [SKIP][7] ([i915#11032]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/bat-twl-2/igt at kms_force_connector_basic@force-load-detect.html * igt at kms_setmode@basic-clone-single-crtc: - bat-twl-2: NOTRUN -> [SKIP][8] ([i915#8809]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/bat-twl-2/igt at kms_setmode@basic-clone-single-crtc.html * igt at prime_vgem@basic-fence-read: - bat-twl-2: NOTRUN -> [SKIP][9] ([i915#10212] / [i915#3708]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/bat-twl-2/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@basic-read: - bat-twl-2: NOTRUN -> [SKIP][10] ([i915#10214] / [i915#3708]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/bat-twl-2/igt at prime_vgem@basic-read.html * igt at prime_vgem@basic-write: - bat-twl-2: NOTRUN -> [SKIP][11] ([i915#10216] / [i915#3708]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/bat-twl-2/igt at prime_vgem@basic-write.html #### Possible fixes #### * igt at core_hotunplug@unbind-rebind: - bat-arlh-3: [DMESG-WARN][12] ([i915#1982]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/bat-arlh-3/igt at core_hotunplug@unbind-rebind.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/bat-arlh-3/igt at core_hotunplug@unbind-rebind.html * igt at i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][14] ([i915#13393]) -> [PASS][15] +1 other test pass [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/bat-mtlp-8/igt at i915_selftest@live.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/bat-mtlp-8/igt at i915_selftest@live.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209 [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#11030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11030 [i915#11031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11031 [i915#11032]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11032 [i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11731]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11731 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8186 -> IGTPW_12426 * Linux: CI_DRM_15940 -> CI_DRM_15942 CI-20190529: 20190529 CI_DRM_15940: 4c299eeff0b03f0e988491bc9102594620e67d42 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15942: 00f4619246294b1de4bac42742cfef95c1f37fde @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12426: 12426 IGT_8186: 2c6b2f0ed4075aa1ac3d341d612e41343cff4e4d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Fri Jan 10 14:29:57 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Fri, 10 Jan 2025 15:29:57 +0100 Subject: [PATCH i-g-t v3] tests/intel/kms_fbcon_fbt: Add skip condition for bmg platform In-Reply-To: References: <20230328023811.46847-1-mohammed.thasleem@intel.com> <20250103115710.84108-1-mohammed.thasleem@intel.com> Message-ID: <20250110142957.4wwqkewpdctxgrhc@kamilkon-desk.igk.intel.com> Hi Thasleem, On 2025-01-03 at 14:22:39 +0000, Samala, Pranay wrote: > 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 Please improve subject a little: [PATCH i-g-t v3] tests/intel/kms_fbcon_fbt: Skip FBC testing on 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 This and above could be done at merge but first please also reply to CI failure and inform that SKIP on BMG is desired, so our bug filing team could improve filters. Inform them also about non-related reported failures. Regards, Kamil > > --- > > 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 lucas.demarchi at intel.com Fri Jan 10 14:55:22 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 10 Jan 2025 06:55:22 -0800 Subject: [PATCH i-g-t] Revert tests/kms_histogram: Fix build breakage In-Reply-To: <20250108205251.1645069-1-lucas.demarchi@intel.com> References: <20250108205251.1645069-1-lucas.demarchi@intel.com> Message-ID: <173652090306.2395795.2062650229973862214.b4-ty@intel.com> On Wed, 08 Jan 2025 12:52:51 -0800, Lucas De Marchi wrote: > This reverts commits > 8911eff2c6c0 ("tests/kms_histogram: Add check for libghe version") > 6e93c2e807b3 ("tests/kms_histogram: Added IGT support to validate global histogram") > > Ths addition of libghe version check didn't really work as the released > libghe exposes a 1.0.0 version: > > [...] Applied, thanks! [1/1] Revert tests/kms_histogram: Fix build breakage commit: ec6262ea1c05ac7371f45948cca875dc06852838 Best regards, -- Lucas De Marchi From maciej.patelczyk at intel.com Fri Jan 10 15:34:55 2025 From: maciej.patelczyk at intel.com (Maciej Patelczyk) Date: Fri, 10 Jan 2025 16:34:55 +0100 Subject: [PATCH i-g-t] tests/xe_eudebug_online: correct calculate the time diff Message-ID: <20250110153455.2791158-1-maciej.patelczyk@intel.com> When calculating time difference between two timespec values use library function which does it right. Previous way wasn't working well on slower machines. It was only taking the tv_nsec field from struct timespec. Fixes: bbf1730baf ("tests/xe_eudebug_online: Debug client which runs workloads on EU") CC: Dominik Grzegorzek Signed-off-by: Maciej Patelczyk --- tests/intel/xe_eudebug_online.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c index 052774a3b..f532387af 100644 --- a/tests/intel/xe_eudebug_online.c +++ b/tests/intel/xe_eudebug_online.c @@ -2235,6 +2235,11 @@ static int find_suitable_engines(struct drm_xe_engine_class_instance **hwes, return engine_count; } +static uint64_t timespecs_diff_us(struct timespec *ts1, struct timespec *ts2) +{ + return (uint64_t)(fabs(igt_time_elapsed(ts1, ts2)) * USEC_PER_SEC); +} + /** * SUBTEST: breakpoint-many-sessions-single-tile * Description: @@ -2255,7 +2260,7 @@ static void test_many_sessions_on_tiles(int fd, bool multi_tile) struct online_debug_data **data; struct drm_xe_engine_class_instance **hwe; struct drm_xe_eudebug_event_eu_attention *eus; - uint64_t current_t, next_t, diff; + uint64_t diff; int attempt_mask = 0, final_mask, should_break; int i; @@ -2318,10 +2323,8 @@ static void test_many_sessions_on_tiles(int fd, bool multi_tile) igt_assert_eq(attempt_mask, final_mask); for (i = 0; i < n - 1; i++) { - /* Convert timestamps to microseconds */ - current_t = data[i]->exception_arrived.tv_nsec * 1000; - next_t = data[i + 1]->exception_arrived.tv_nsec * 1000; - diff = current_t < next_t ? next_t - current_t : current_t - next_t; + diff = timespecs_diff_us(&data[i]->exception_arrived, + &data[i + 1]->exception_arrived); if (multi_tile) igt_assert_f(diff < WORKLOAD_DELAY_US, -- 2.43.0 From lucas.demarchi at intel.com Fri Jan 10 15:49:22 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 10 Jan 2025 09:49:22 -0600 Subject: [PATCH v2] lib/meson.build: allow build IGT with link time optimization In-Reply-To: <36bf601f-72a7-46cf-9d95-29baea769179@intel.com> References: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> <36bf601f-72a7-46cf-9d95-29baea769179@intel.com> Message-ID: On Fri, Jan 10, 2025 at 08:58:39AM +0100, Hajda, Andrzej wrote: > >W dniu 09.01.2025 o?18:29, Lucas De Marchi pisze: >>On Thu, Jan 09, 2025 at 05:26:30PM +0100, Andrzej Hajda wrote: >>>Some distributions use -flto gcc flag to build IGT. With this flag >>>enabled variables declared with section attribute do not appear in >>>correct section in .o files. Since iga64 assembly helper script relies >>>on it we need to use -ffat-lto-objects in case of files containing >>>iga64 assembly. According to documentation this option is effective >>>only in case lto is in use, so it should not affect non-lto builds. >>> >>>Closes: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/165 >>>Signed-off-by: Andrzej Hajda >> >>is this about >> >>??????? static const char t[] __attribute__ >>((section(".iga64_assembly"), used)) =\ >>? >> >>it's missing a "retain" attribute to be able to link with LLD. >>I fixed a similar bug in kmod recently, but that? was due to linking with >>LLD instead of using or not lto. See >>https://github.com/kmod-project/kmod/pull/274 >> >Yes this is about this line, but I think we have here slightly >different issues. > >As I understand in kmod-project you want to keep the symbol in final >executable/so_library/whatever. yep > >In case of igt we want to have access to ".iga64_assembly" section >after compile phase (ie see it in .o files), we do not care about >final executable. oh... ok. The scripts/generate_iga64_codes script will parse the intermediate files, not the final lib. > >With LTO enabled the structure of .o files drastically changes - every >function/variable in compile phase goes to separate section >(.gnu.lto_*), information about final sections is kept somewhere in >private metadata. > >With compiler option '-ffat-lto-objects' .o file contains both >structures of sections - classic .text/.data/.iga64_assembly and lto >related .gnu.lto_* and this is what we need in case of igt. is this true for both gcc/clang? With clang it seems it seems it's even worse: $ file build-lto-clang/lib/libigt-gpgpu_fill_c.a.p/gpgpu_fill.c.o build-lto-clang/lib/libigt-gpgpu_fill_c.a.p/gpgpu_fill.c.o: LLVM IR bitcode $ readelf -t build-lto-clang/lib/libigt-gpgpu_fill_c.a.p/gpgpu_fill.c.o readelf: Error: This is a LLVM bitcode file - try using llvm-bcanalyzer This seems to fix it for gcc and we may handle the above as a separate case. For fixing this separate case, maybe we should stop inspecting the .o, add a retain attribute, inspect the final lib/binary and use objcopy --add-symbol to add the new symbols (or the linker again to link one additional .o at the end). Anyway, I'm digressing. Reviewed-by: Lucas De Marchi thanks Lucas De Marchi > > >Regards > >Andrzej > > >>Are you sure this is related to LTO and not the different linker? >>$ grep -r -e '\.iga64_assembly' build-lto-clang/ >>grep: >>build-lto-clang/lib/libigt-gpgpu_shader_c.a.p/gpgpu_shader.c.o: >>binary file matches >>grep: build-lto-clang/lib/libigt.so.0: binary file matches >>grep: build-lto-clang/lib/libigt-gpgpu_fill_c.a.p/gpgpu_fill.c.o: >>binary file matches >> >> >>$ readelf -t build-lto-clang/lib/libigt.so.0 | grep -A3 -e >>.iga64_assembly >>? [10] .iga64_assembly >>?????? PROGBITS???????? 00000000000657d0? 00000000000657d0? 0 >>?????? 0000000000002c65 0000000000000000? 0???????????????? 16 >>?????? [0000000000000002]: ALLOC >> >>So it has a section with that name of size 0x2c65 >> >> >>Lucas De Marchi >> >>>--- >>>This patch 'fixes' building IGT with link-time-optimization. I am not >>>sure it is or should be supported by IGT, but build scripts can be >>>modified to allow it for testing. >>>Grepping internet shows at least Gentoo and Arch Linux builds IGT with >>>LTO, so I guess it is working for them. >>>--- >>>Changes in v2: >>>- added Closes tag >>>- Link to v1: https://lore.kernel.org/r/20241216-fix-lto-v1-1-1280b17dc70f at intel.com >>>--- >>>lib/meson.build | 2 +- >>>1 file changed, 1 insertion(+), 1 deletion(-) >>> >>>diff --git a/lib/meson.build b/lib/meson.build >>>index 1704ed1e1c17..9fffdd3c6218 100644 >>>--- a/lib/meson.build >>>+++ b/lib/meson.build >>>@@ -240,7 +240,7 @@ foreach f: lib_sources >>>??????? '-DIGT_DATADIR="@0@"'.format(join_paths(prefix, datadir)), >>>??????? '-DIGT_SRCDIR="@0@"'.format(srcdir), >>>??????? '-DIGT_LOG_DOMAIN="@0@"'.format(f.split('.')[0]), >>>-??? ]) >>>+??? ] + (iga64_assembly_sources.contains(f) ? [ >>>'-ffat-lto-objects' ] : [])) >>> >>>??? lib_intermediates += lib >>>??? if iga64_assembly_sources.contains(f) >>> >>>--- >>>base-commit: ee7a3ac616f55f6ed1b959ff951237099bda86d8 >>>change-id: 20241216-fix-lto-8d3bc1488c6a >>> >>>Best regards, >>>-- >>>Andrzej Hajda >>> From lucas.demarchi at intel.com Fri Jan 10 17:12:35 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 10 Jan 2025 09:12:35 -0800 Subject: [PATCH i-g-t v2 1/8] lib/xe/xe_gt: Fix header guards and boilerplate In-Reply-To: <20250107202615.1306306-1-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> Message-ID: <173652911899.2409729.16210555635768882765.b4-ty@intel.com> On Tue, 07 Jan 2025 12:26:08 -0800, Lucas De Marchi wrote: > Add proper header guard and remove author from comment: authorship is > maintained in git, not as comment. > > CI regressions not related to this series. Applied, thanks for reviewing. [1/8] lib/xe/xe_gt: Fix header guards and boilerplate commit: efdcb1cf8a70bc43b1cd2bc01cdb794921ad4d7f [2/8] lib/xe: Move functions from xe_util to xe_gt commit: a82035f4092f9599be6fd68b0c361069ecda1744 [3/8] lib/xe: Rename xe_is_gt_in_c6() commit: 9ef7df27d72d395c42206c1d346b359de606c114 [4/8] lib/xe: Split nsec to ticks abstraction commit: 1a42e60820dacba4e7253c402759ce4f25c12390 [5/8] lib/xe/xe_spin: Move declarations around commit: e4f421b8edc8067fce16e175ad709c474b600140 [6/8] treewide: s/ctx/cork/ when referring to xe_cork commit: 85e43f068b82699580a5fc4ccc83b62827401c5b [7/8] tests/intel/xe_drm_fdinfo: Stop asserting on usage percentage commit: 545c33d17b5ab26c36a050093f7c0e9c55ed3c45 [8/8] tests/intel/xe_drm_fdinfo: Also test target class with others-* commit: b916b6849dfdf18015eb8a9b799f333064bdc61a Best regards, -- Lucas De Marchi From louis.chauvet at bootlin.com Fri Jan 10 17:42:52 2025 From: louis.chauvet at bootlin.com (Louis Chauvet) Date: Fri, 10 Jan 2025 18:42:52 +0100 Subject: [PATCH i-g-t v4 3/5] lib/igt_kms: Add function to list connected connectors In-Reply-To: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> References: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> Message-ID: <20250110-b4-cv3-01-igt-kms-v4-3-0b0474708f9f@bootlin.com> Introduce the igt_get_connected_connectors() function, which returns a list of connector IDs that are currently connected according to DRM. This function includes a timeout mechanism because connectors can be unplugged at any time. Also, especially with MST, the connector can be listed by drmModeGetResources() but not yet accessible with drmModeGetConnector(). Signed-off-by: Louis Chauvet --- lib/igt_kms.c | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ lib/igt_kms.h | 1 + 2 files changed, 66 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index d0b6c70f135754d0a413f73a0f8e5b24a208a2b3..93d5a0d64df9954f7da8254ee35a0fd887d31d78 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -7246,6 +7246,29 @@ double igt_default_display_detect_timeout(void) return timeout; } +static drmModeConnectorPtr igt_wait_for_connector(int drm_fd, unsigned int connector_id, + double timeout) +{ + drmModeConnectorPtr connector = NULL; + struct timespec start, end; + + connector = drmModeGetConnector(drm_fd, connector_id); + /* + * This time is required as sometimes some id in the connector list are not totally + * ready or can disappear + */ + clock_gettime(CLOCK_MONOTONIC, &start); + end = start; + + while (!connector && + igt_time_elapsed(&start, &end) <= timeout) { + connector = drmModeGetConnector(drm_fd, connector_id); + clock_gettime(CLOCK_MONOTONIC, &end); + } + + return connector; +} + /** * igt_wait_for_connector_status: * @drm_fd: drm file descriptor @@ -7284,3 +7307,45 @@ bool igt_wait_for_connector_status(int drm_fd, unsigned int connector_id, double connector_id); return false; } + +/** + * igt_get_connected_connectors: + * + * @drm_fd: DRM file description + * @connector_ids: Out pointer for the list of connector ids connected. It must be freed by the + * caller. + * + * This will probe all the connectors and return the list of all + * connected connectors. + * Returns: The number of connectors in @connector_ids + */ +int igt_get_connected_connectors(int drm_fd, uint32_t **connector_ids) +{ + int connected_count = 0; + double timeout = igt_default_display_detect_timeout(); + drmModeResPtr resources; + + *connector_ids = NULL; + + resources = drmModeGetResources(drm_fd); + for (int j = 0; j < resources->count_connectors; j++) { + drmModeConnectorPtr connector = igt_wait_for_connector(drm_fd, + resources->connectors[j], + timeout); + + if (connector) { + if (connector->connection == DRM_MODE_CONNECTED) { + *connector_ids = reallocarray(*connector_ids, + connected_count + + 1, sizeof(**connector_ids)); + igt_assert(*connector_ids); + (*connector_ids)[connected_count] = resources->connectors[j]; + connected_count++; + } + drmModeFreeConnector(connector); + } + } + drmModeFreeResources(resources); + + return connected_count; +} diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 6d5582290f61d1a4151dd8e8448fc26c660a1536..520d1b2f2056a21bcf25be36da32a63a17bfe364 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1281,5 +1281,6 @@ double igt_default_display_detect_timeout(void); bool igt_wait_for_connector_status(int drm_fd, unsigned int connector_id, double timeout, int drm_mode); +int igt_get_connected_connectors(int drm_fd, uint32_t **connector_ids); #endif /* __IGT_KMS_H__ */ -- 2.47.1 From louis.chauvet at bootlin.com Fri Jan 10 17:42:49 2025 From: louis.chauvet at bootlin.com (Louis Chauvet) Date: Fri, 10 Jan 2025 18:42:49 +0100 Subject: [PATCH i-g-t v4 0/5] lib/igt_kms: Helpers for connector managment Message-ID: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> In preparation for the introduction of Chameleon v3, this series will add a few helper functions that will be used: - A configurable timeout value, to be used by Chameleon's autodetection algorithm and connector status detection - A helper function to wait for a specific connector status - A way to list all connected connectors - A way to get a connector object by its name or MST path - A helper function to get a valid pipe for a specific output" Signed-off-by: Louis Chauvet --- Changes in v4: - Return double instead of float for igt_default_display_detect_timeout - Remove useless warn - Remove exact comparison with float, add timeouts - Simplified the igt_get_connected_connectors with the suggestion of Kamil - Remove asserts - Fix style issues - Link to v3: https://lore.kernel.org/r/20241122-b4-cv3-01-igt-kms-v3-0-c5ced6976e11 at bootlin.com Changes in v3: - PATCH 5/5: Remove the igt_assert_f in library - PATCH 4/5: Change hardcoded 50 size array with ARRAY_SIZE() macro - PATCH 4/5: See PATCH 2/5 - PATCH 3/5: See PATCH 2/5 - PATCH 2/5: Use a different initialization for end so if timeout == 0.0, there will be one attempt to get the connector - PATCH 2/5: Use -1.0 as a special value instead of 0.0 to use igt_default_detect_timeout() - PATCH 1/5: Change DetectTimeout to DisplayDetectTimeout - PATCH 1/5: Handle errors while getting DisplayDetectTimeout value from config file - Link to v2: https://lore.kernel.org/r/20241022-b4-cv3-01-igt-kms-v2-0-8f654694b513 at bootlin.com Changes in v2: - Rebased - Fix a warning during compilation - Link to v1: https://lore.kernel.org/r/20240828-b4-cv3-01-igt-kms-v1-0-d6e21b1e5d04 at bootlin.com --- Louis Chauvet (5): lib/igt_kms: Add a detect timeout value lib/igt_kms: Add helper to wait for a specific status on a connector lib/igt_kms: Add function to list connected connectors lib/igt_kms: Add helper to obtain a connector by its name or MST path lib/igt_kms: Add function to get valid pipe for specific output lib/igt_core.c | 4 + lib/igt_kms.c | 270 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ lib/igt_kms.h | 18 ++++ 3 files changed, 292 insertions(+) --- base-commit: fb343db7fc59c760ef0a0c19303e7bcec177dbd9 change-id: 20240828-b4-cv3-01-igt-kms-3e5af6a4c05e Best regards, -- Louis Chauvet From louis.chauvet at bootlin.com Fri Jan 10 17:42:53 2025 From: louis.chauvet at bootlin.com (Louis Chauvet) Date: Fri, 10 Jan 2025 18:42:53 +0100 Subject: [PATCH i-g-t v4 4/5] lib/igt_kms: Add helper to obtain a connector by its name or MST path In-Reply-To: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> References: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> Message-ID: <20250110-b4-cv3-01-igt-kms-v4-4-0b0474708f9f@bootlin.com> Introduce the functions igt_get_connector_from_name() and igt_get_connector_id_from_mst_path(). These functions serve to retrieve the connector object using a connector name and a connector ID from its MST path, respectively. Given that the connector id may not be consistent, especially with MST connectors, these functions are essential to recognize each connector even after system reboots and plug/unplug events. The function igt_get_connector_id_from_name() is a convenient wrapper for igt_get_connector_from_name() to streamline its usage when the caller only requires the connector id. Signed-off-by: Louis Chauvet --- lib/igt_kms.c | 109 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ lib/igt_kms.h | 3 ++ 2 files changed, 112 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 93d5a0d64df9954f7da8254ee35a0fd887d31d78..f6d9341b75b4fc8dfa614478cd3bf35510f9ecea 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -93,6 +93,10 @@ #define MAX_CONNECTORS 32 #define MAX_EDID 2 #define DISPLAY_TILE_BLOCK 0x12 +/** + * define IGT_KMS_CONNECTOR_NAME_SIZE - Size used when a connector name is needed + */ +#define IGT_KMS_CONNECTOR_NAME_SIZE 50 typedef bool (*igt_connector_attr_set)(int dir, const char *attr, const char *value); @@ -7349,3 +7353,108 @@ int igt_get_connected_connectors(int drm_fd, uint32_t **connector_ids) return connected_count; } + + +/** + * igt_get_connector_from_name: + * @drm_fd: DRM file descriptor + * @port_name: Port name to search + * + * Returns: The connector if found, NULL otherwise. The pointer must + * be freed with drmModeFreeConnector() + */ +drmModeConnectorPtr igt_get_connector_from_name(int drm_fd, const char *port_name) +{ + drmModeResPtr res = drmModeGetResources(drm_fd); + double timeout = igt_default_display_detect_timeout(); + int i, len; + + if (!res) + return NULL; + + for (i = 0; i < res->count_connectors; i++) { + char name[IGT_KMS_CONNECTOR_NAME_SIZE]; + + drmModeConnectorPtr connector = igt_wait_for_connector(drm_fd, res->connectors[i], + timeout); + + if (connector) { + /* We have to generate the connector name on our own */ + len = snprintf(name, ARRAY_SIZE(name), "%s-%u", + kmstest_connector_type_str(connector->connector_type), + connector->connector_type_id); + name[len] = 0; + + + if (strcmp(port_name, name) == 0) { + drmModeFreeResources(res); + + return connector; + } + + drmModeFreeConnector(connector); + } + } + + drmModeFreeResources(res); + + return NULL; +} + +/** + * igt_get_connector_id_from_name: + * @drm_fd: DRM file descriptor + * @port_name: Port name to find in the connector + * + * Returns: The connector id if the port is found, 0 if the port is not found + */ +uint32_t igt_get_connector_id_from_name(int drm_fd, const char *port_name) +{ + drmModeConnectorPtr connector = igt_get_connector_from_name(drm_fd, port_name); + + if (connector) { + uint32_t connector_id = connector->connector_id; + + drmModeFreeConnector(connector); + + return connector_id; + } + + return 0; +} + +/** + * igt_get_connector_id_from_mst_path: + * @drm_fd: DRM file descriptor + * @mst_path: MST path to find in the connector + * + * Returns: 0 when no connector is found with the correct mst path + */ +uint32_t igt_get_connector_id_from_mst_path(int drm_fd, const void *mst_path) +{ + drmModeResPtr res = drmModeGetResources(drm_fd); + int i; + + if (!res) + return 0; + + for (i = 0; i < res->count_connectors; i++) { + uint32_t connector_id = res->connectors[i]; + + drmModePropertyBlobPtr path_blob = kmstest_get_path_blob(drm_fd, connector_id); + + if (path_blob) { + if (memcmp(path_blob->data, mst_path, path_blob->length) == 0) { + drmModeFreePropertyBlob(path_blob); + drmModeFreeResources(res); + return connector_id; + } + + drmModeFreePropertyBlob(path_blob); + } + } + + drmModeFreeResources(res); + + return 0; +} diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 520d1b2f2056a21bcf25be36da32a63a17bfe364..3be9068384aa118461dd090224d15aa5c979ac06 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1282,5 +1282,8 @@ double igt_default_display_detect_timeout(void); bool igt_wait_for_connector_status(int drm_fd, unsigned int connector_id, double timeout, int drm_mode); int igt_get_connected_connectors(int drm_fd, uint32_t **connector_ids); +drmModeConnectorPtr igt_get_connector_from_name(int drm_fd, const char *port_name); +uint32_t igt_get_connector_id_from_name(int drm_fd, const char *port_name); +uint32_t igt_get_connector_id_from_mst_path(int drm_fd, const void *mst_path); #endif /* __IGT_KMS_H__ */ -- 2.47.1 From louis.chauvet at bootlin.com Fri Jan 10 17:42:51 2025 From: louis.chauvet at bootlin.com (Louis Chauvet) Date: Fri, 10 Jan 2025 18:42:51 +0100 Subject: [PATCH i-g-t v4 2/5] lib/igt_kms: Add helper to wait for a specific status on a connector In-Reply-To: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> References: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> Message-ID: <20250110-b4-cv3-01-igt-kms-v4-2-0b0474708f9f@bootlin.com> During testing with chamelium, it is frequent to wait for a specific connector status. This new helper is polling the DRM API to wait for this status. This allows detecting it without notifier systems which can fail if hot plug detection is not working properly on the device under test. Signed-off-by: Louis Chauvet --- lib/igt_kms.c | 39 +++++++++++++++++++++++++++++++++++++++ lib/igt_kms.h | 3 +++ 2 files changed, 42 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index b3373435b252c9f8c5d5854f738f7f4bbc468964..d0b6c70f135754d0a413f73a0f8e5b24a208a2b3 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -7245,3 +7245,42 @@ double igt_default_display_detect_timeout(void) return timeout; } + +/** + * igt_wait_for_connector_status: + * @drm_fd: drm file descriptor + * @connector_id: connector to monitor + * @timeout: maximum duration to wait, in second. Use -1.0 to set the timeout + * to igt_default_detect_timeout(). + * @drm_mode: mode to wait for, see enum drmModeConnection + * + * Wait for at most @timeout that the connector @connector_id status + * become @drm_mode + * Returns: true when the status is reached, false if there is a timeout + */ +bool igt_wait_for_connector_status(int drm_fd, unsigned int connector_id, double timeout, + int drm_mode) +{ + drmModeConnector *connector; + struct timespec start, end; + + if (timeout == -1.0) + timeout = igt_default_display_detect_timeout(); + + clock_gettime(CLOCK_MONOTONIC, &start); + end = start; + + while (igt_time_elapsed(&start, &end) <= timeout) { + connector = drmModeGetConnector(drm_fd, connector_id); + if (connector && connector->connection == drm_mode) { + free(connector); + return true; + } + free(connector); + clock_gettime(CLOCK_MONOTONIC, &end); + } + + igt_debug("Timeout waiting for connection status %d on connector %d\n", drm_mode, + connector_id); + return false; +} diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 91a26f2070efd26f9d107841ae3083b281d5e4c6..6d5582290f61d1a4151dd8e8448fc26c660a1536 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1279,4 +1279,7 @@ int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *c double igt_default_display_detect_timeout(void); +bool igt_wait_for_connector_status(int drm_fd, unsigned int connector_id, double timeout, + int drm_mode); + #endif /* __IGT_KMS_H__ */ -- 2.47.1 From louis.chauvet at bootlin.com Fri Jan 10 17:42:50 2025 From: louis.chauvet at bootlin.com (Louis Chauvet) Date: Fri, 10 Jan 2025 18:42:50 +0100 Subject: [PATCH i-g-t v4 1/5] lib/igt_kms: Add a detect timeout value In-Reply-To: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> References: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> Message-ID: <20250110-b4-cv3-01-igt-kms-v4-1-0b0474708f9f@bootlin.com> Some tests need to wait for a specific connector status. In order to make the timeout customisable for each target, add an option in the configuration file. Signed-off-by: Louis Chauvet --- lib/igt_core.c | 4 ++++ lib/igt_kms.c | 35 +++++++++++++++++++++++++++++++++++ lib/igt_kms.h | 10 ++++++++++ 3 files changed, 49 insertions(+) diff --git a/lib/igt_core.c b/lib/igt_core.c index 407f7b55187ceac4cbc0645c629a7fbb17f89575..796c52b44341c1a40abc87540ca0f65d09ca554f 100644 --- a/lib/igt_core.c +++ b/lib/igt_core.c @@ -265,6 +265,10 @@ * # It is not mandatory and allows overriding default values. * [DUT] * SuspendResumeDelay=10 + * + * # The following option define the timeout for detection feature + * # (waiting for a connector status) + * DisplayDetectTimeout=10.0 * ]| * * Some specific configuration options may be used by specific parts of IGT, diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 76f32e1e0ffd60d9542b43881e73c9810e45327b..b3373435b252c9f8c5d5854f738f7f4bbc468964 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -59,6 +59,7 @@ #include "intel_chipset.h" #include "igt_debugfs.h" #include "igt_device.h" +#include "igt_rc.h" #include "igt_sysfs.h" #include "sw_sync.h" #ifdef HAVE_CHAMELIUM @@ -7210,3 +7211,37 @@ int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *c return 0; } + +/** + * igt_default_display_detect_timeout: + * + * Get the default timeout value for detection feature + * + * Some tests requires to wait for a specific connector status. This value will determine the + * timeout value for this waiting. + */ +double igt_default_display_detect_timeout(void) +{ + static double timeout = 0.0; + static bool first_call = true; + GError *error = NULL; + + if (first_call) { + if (igt_key_file) { + timeout = g_key_file_get_double(igt_key_file, "DUT", "DisplayDetectTimeout", + &error); + if (error) { + igt_debug("Failed to read DisplayDetectTimeout, defaulting to %f\n", + DEFAULT_DETECT_TIMEOUT); + g_clear_error(&error); + timeout = DEFAULT_DETECT_TIMEOUT; + } + } else { + timeout = DEFAULT_DETECT_TIMEOUT; + } + + first_call = false; + } + + return timeout; +} diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 301f370dfeb34e90e6f88dfe0006667d7b6a7213..91a26f2070efd26f9d107841ae3083b281d5e4c6 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -40,6 +40,14 @@ #include "igt_fb.h" #include "ioctl_wrappers.h" +/** + * define DEFAULT_DETECT_TIMEOUT - Default timeout in second used for some screen detection + * functions + * + * It can be overiden by option DetectTimeout in the .igtrc file. + */ +#define DEFAULT_DETECT_TIMEOUT 10.0 + /* Low-level helpers with kmstest_ prefix */ /** @@ -1269,4 +1277,6 @@ void igt_reset_link_params(int drm_fd, igt_output_t *output); int igt_backlight_read(int *result, const char *fname, igt_backlight_context_t *context); int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *context); +double igt_default_display_detect_timeout(void); + #endif /* __IGT_KMS_H__ */ -- 2.47.1 From louis.chauvet at bootlin.com Fri Jan 10 17:42:54 2025 From: louis.chauvet at bootlin.com (Louis Chauvet) Date: Fri, 10 Jan 2025 18:42:54 +0100 Subject: [PATCH i-g-t v4 5/5] lib/igt_kms: Add function to get valid pipe for specific output In-Reply-To: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> References: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> Message-ID: <20250110-b4-cv3-01-igt-kms-v4-5-0b0474708f9f@bootlin.com> Introduces a new function igt_get_pipe_for_output in igt_kms. The function is designed to retrieve a valid pipe for a specific output in a display. Signed-off-by: Louis Chauvet --- lib/igt_kms.c | 22 ++++++++++++++++++++++ lib/igt_kms.h | 1 + 2 files changed, 23 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index f6d9341b75b4fc8dfa614478cd3bf35510f9ecea..d6cd6833ef24a914da6e0234dd7eea40867df452 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -7458,3 +7458,25 @@ uint32_t igt_get_connector_id_from_mst_path(int drm_fd, const void *mst_path) return 0; } + +/** + * igt_get_pipe_for_output: + * @display: display to fetch the pipes + * @output: output to use + * + * Get a valid pipe for a specific output. The return value is the pipe first valid pipe for a + * specific output. + */ +enum pipe igt_get_pipe_for_output(igt_display_t *display, + igt_output_t *output) +{ + enum pipe pipe; + + for_each_pipe(display, pipe) { + if (igt_output_is_connected(output) && + (output->config.valid_crtc_idx_mask & (1 << (pipe)))) + return pipe; + } + + return PIPE_NONE; +} diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 3be9068384aa118461dd090224d15aa5c979ac06..60a90500048dd83620c8a6ed08b70d5ddb020bbc 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1285,5 +1285,6 @@ int igt_get_connected_connectors(int drm_fd, uint32_t **connector_ids); drmModeConnectorPtr igt_get_connector_from_name(int drm_fd, const char *port_name); uint32_t igt_get_connector_id_from_name(int drm_fd, const char *port_name); uint32_t igt_get_connector_id_from_mst_path(int drm_fd, const void *mst_path); +enum pipe igt_get_pipe_for_output(igt_display_t *display, igt_output_t *output); #endif /* __IGT_KMS_H__ */ -- 2.47.1 From louis.chauvet at bootlin.com Fri Jan 10 18:05:40 2025 From: louis.chauvet at bootlin.com (Louis Chauvet) Date: Fri, 10 Jan 2025 19:05:40 +0100 Subject: [PATCH i-g-t v4 0/5] lib/igt_kms: Helpers for monitor edid managment Message-ID: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> In preparation for the introduction of Chameleon v3, this series will add a few helper functions that will be used: - Helper to convert monitor edid to edid - Helper to fetch monitor edid from its name - Helper to display all monitor edids - Few fixes and addition in edid list Signed-off-by: Louis Chauvet --- Changes in v4: - Fix documentations - Style issues - Link to v3: https://lore.kernel.org/r/20241122-b4-cv3-02-monitor-edids-v3-0-1798f58167ef at bootlin.com Changes in v3: - PATCH 3/5: Add function documentation - PATCH 1/5: Replace igt_assert_f by igt_debug - PATCH 1/5: Add const to the returned monitor_edid list - PATCH 1/5: Add documentation - Link to v2: https://lore.kernel.org/r/20241022-b4-cv3-02-monitor-edids-v2-0-7634786c21e6 at bootlin.com Changes in v2: - Rebased - Link to v1: https://lore.kernel.org/r/20240828-b4-cv3-02-monitor-edids-v1-0-29c846bcf251 at bootlin.com --- Louis Chauvet (5): lib/monitor_edids: Add helper functions for using monitor_edid objects lib/monitor_edids: Add helper to get an EDID by its name lib/monitor_edids: Add helper to print all available EDID names lib/monitor_edids: Fix missing names in some monitor EDID lib/monitor_edids: Add new EDID for HDMI 4k lib/monitor_edids/dp_edids.h | 3 + lib/monitor_edids/hdmi_edids.h | 27 ++++++- lib/monitor_edids/monitor_edids_helper.c | 127 +++++++++++++++++++++++++++++++ lib/monitor_edids/monitor_edids_helper.h | 10 ++- 4 files changed, 162 insertions(+), 5 deletions(-) --- base-commit: fb343db7fc59c760ef0a0c19303e7bcec177dbd9 change-id: 20240828-b4-cv3-02-monitor-edids-59a8f515c881 Best regards, -- Louis Chauvet From louis.chauvet at bootlin.com Fri Jan 10 18:05:41 2025 From: louis.chauvet at bootlin.com (Louis Chauvet) Date: Fri, 10 Jan 2025 19:05:41 +0100 Subject: [PATCH i-g-t v4 1/5] lib/monitor_edids: Add helper functions for using monitor_edid objects In-Reply-To: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> References: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> Message-ID: <20250110-b4-cv3-02-monitor-edids-v4-1-aef77d3e0f50@bootlin.com> Introduce the functions edid_from_monitor_edid() and get_edids_for_connector_type(). The former converts a monitor_edid object to a struct edid, which can then be utilized by igt_kms helpers. The latter returns a list of monitor_edid objects for a specific connector with certain characteristics Signed-off-by: Louis Chauvet --- lib/monitor_edids/dp_edids.h | 3 ++ lib/monitor_edids/hdmi_edids.h | 3 ++ lib/monitor_edids/monitor_edids_helper.c | 80 ++++++++++++++++++++++++++++++++ lib/monitor_edids/monitor_edids_helper.h | 7 ++- 4 files changed, 92 insertions(+), 1 deletion(-) diff --git a/lib/monitor_edids/dp_edids.h b/lib/monitor_edids/dp_edids.h index 144907558be1faa306b646ce3b47b24c13050968..07793381257e0082a1fa7b4321fcef7e5aeaa5a9 100644 --- a/lib/monitor_edids/dp_edids.h +++ b/lib/monitor_edids/dp_edids.h @@ -194,4 +194,7 @@ monitor_edid DP_EDIDS_NON_4K[] = { }; +#define DP_EDIDS_4K_COUNT ARRAY_SIZE(DP_EDIDS_4K) +#define DP_EDIDS_NON_4K_COUNT ARRAY_SIZE(DP_EDIDS_NON_4K) + #endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_DP_EDIDS_H_ */ diff --git a/lib/monitor_edids/hdmi_edids.h b/lib/monitor_edids/hdmi_edids.h index f6cfe82ff6e1c4419160bcdcc851a5e28eb08726..3984241775c3d8e0f39732bdc41cb44f491ce62b 100644 --- a/lib/monitor_edids/hdmi_edids.h +++ b/lib/monitor_edids/hdmi_edids.h @@ -604,4 +604,7 @@ monitor_edid HDMI_EDIDS_NON_4K[] = { "1620582c2500baac4200009e0000006b" }, }; +#define HDMI_EDIDS_4K_COUNT ARRAY_SIZE(HDMI_EDIDS_4K) +#define HDMI_EDIDS_NON_4K_COUNT ARRAY_SIZE(HDMI_EDIDS_NON_4K) + #endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_HDMI_EDIDS_H_ */ diff --git a/lib/monitor_edids/monitor_edids_helper.c b/lib/monitor_edids/monitor_edids_helper.c index 1cbf1c22f0bbc5fb4047ce42bde2042ec8170efb..6043e7a084b320263f1c0525369aaa59a5d32bcc 100644 --- a/lib/monitor_edids/monitor_edids_helper.c +++ b/lib/monitor_edids/monitor_edids_helper.c @@ -15,6 +15,10 @@ #include #include "igt_core.h" +#include "igt_edid.h" +#include "dp_edids.h" +#include "drmtest.h" +#include "hdmi_edids.h" static uint8_t convert_hex_char_to_byte(char c) { @@ -90,3 +94,79 @@ void free_chamelium_edid_from_monitor_edid(struct chamelium_edid *edid) free(edid); edid = NULL; } + +/** + * edid_from_monitor_edid: + * @mon_edid: Monitor EDID to convert + * + * Get a struct edid from a monitor_edid. This returns a pointer to a newly allocated struct edid. + * The caller is in charge to free this pointer when required. + */ +struct edid *edid_from_monitor_edid(const monitor_edid *mon_edid) +{ + uint8_t *raw_edid; + size_t edid_size; + int i; + + edid_size = strlen(mon_edid->edid) / 2; /* each ascii is a nibble. */ + raw_edid = malloc(edid_size); + igt_assert(raw_edid); + + for (i = 0; i < edid_size; i++) { + raw_edid[i] = convert_hex_char_to_byte(mon_edid->edid[i * 2]) << 4 | + convert_hex_char_to_byte(mon_edid->edid[i * 2 + 1]); + } + + if (edid_get_size((struct edid *)raw_edid) > edid_size) { + uint8_t *new_edid; + + igt_debug("The edid size stored in the raw edid is longer than the edid stored in the table."); + new_edid = realloc(raw_edid, edid_get_size((struct edid *)raw_edid)); + igt_assert(new_edid); + raw_edid = new_edid; + } + + return (struct edid *)raw_edid; +} + +/** + * get_edids_for_connector_type: + * @type: The connector type to get the EDIDs from + * @count: Used to store the number of EDIDs in the returned list + * @four_k: Use true to fetch 4k EDIDs, false to fetch non-4k EDIDs + * + * Get the list of EDIDS for a specific connector type. This returns a pointer to a static list, + * so no need to free the pointer. + */ +struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, bool four_k) +{ + if (four_k) { + switch (type) { + case DRM_MODE_CONNECTOR_DisplayPort: + *count = DP_EDIDS_4K_COUNT; + return DP_EDIDS_4K; + case DRM_MODE_CONNECTOR_HDMIA: + *count = HDMI_EDIDS_4K_COUNT; + return HDMI_EDIDS_4K; + default: + *count = 0; + igt_debug("No 4k EDID for the connector %s\n", + kmstest_connector_type_str(type)); + return NULL; + } + } else { + switch (type) { + case DRM_MODE_CONNECTOR_DisplayPort: + *count = DP_EDIDS_NON_4K_COUNT; + return DP_EDIDS_NON_4K; + case DRM_MODE_CONNECTOR_HDMIA: + *count = HDMI_EDIDS_NON_4K_COUNT; + return HDMI_EDIDS_NON_4K; + default: + *count = 0; + igt_debug("No EDID for the connector %s\n", + kmstest_connector_type_str(type)); + return NULL; + } + } +} diff --git a/lib/monitor_edids/monitor_edids_helper.h b/lib/monitor_edids/monitor_edids_helper.h index 05679f0897f3d0618d656cc071b565b48d31da28..e5069868683d97053d8e66666e83692f1b733db3 100644 --- a/lib/monitor_edids/monitor_edids_helper.h +++ b/lib/monitor_edids/monitor_edids_helper.h @@ -12,6 +12,8 @@ #define TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_ #include +#include +#include #include "igt_chamelium.h" @@ -30,4 +32,7 @@ get_chameleon_edid_from_monitor_edid(struct chamelium *chamelium, const monitor_edid *edid); void free_chamelium_edid_from_monitor_edid(struct chamelium_edid *edid); -#endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_ */ \ No newline at end of file +struct edid *edid_from_monitor_edid(const monitor_edid *monitor_edid); +struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, bool four_k); + +#endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_ */ -- 2.47.1 From louis.chauvet at bootlin.com Fri Jan 10 18:05:42 2025 From: louis.chauvet at bootlin.com (Louis Chauvet) Date: Fri, 10 Jan 2025 19:05:42 +0100 Subject: [PATCH i-g-t v4 2/5] lib/monitor_edids: Add helper to get an EDID by its name In-Reply-To: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> References: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> Message-ID: <20250110-b4-cv3-02-monitor-edids-v4-2-aef77d3e0f50@bootlin.com> For testing specific EDID, it is useful to be able to retrieve an EDID by a verbose name. Signed-off-by: Louis Chauvet --- lib/monitor_edids/monitor_edids_helper.c | 30 ++++++++++++++++++++++++++++++ lib/monitor_edids/monitor_edids_helper.h | 1 + 2 files changed, 31 insertions(+) diff --git a/lib/monitor_edids/monitor_edids_helper.c b/lib/monitor_edids/monitor_edids_helper.c index 6043e7a084b320263f1c0525369aaa59a5d32bcc..01feb34a5516916b615a741f773316159c38fccf 100644 --- a/lib/monitor_edids/monitor_edids_helper.c +++ b/lib/monitor_edids/monitor_edids_helper.c @@ -20,6 +20,16 @@ #include "drmtest.h" #include "hdmi_edids.h" +struct { + struct monitor_edid *edid_list; + int list_size; +} ALL_EDIDS[] = { + {DP_EDIDS_NON_4K, DP_EDIDS_NON_4K_COUNT}, + {DP_EDIDS_4K, DP_EDIDS_4K_COUNT}, + {HDMI_EDIDS_NON_4K, HDMI_EDIDS_NON_4K_COUNT}, + {HDMI_EDIDS_4K, HDMI_EDIDS_4K_COUNT}, +}; + static uint8_t convert_hex_char_to_byte(char c) { if (c >= '0' && c <= '9') @@ -170,3 +180,23 @@ struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, } } } + +/** + * get_edid_by_name: + * @name: Name to search in available EDIDs + * + * Return the struct edid associated with a specific name. As with edid_from_monitor_edid, the + * caller must ensure to free the EDID after use. If no EDID with the exact name is found, returns + * NULL. + */ +struct edid *get_edid_by_name(const char *name) +{ + for (int i = 0; i < ARRAY_SIZE(ALL_EDIDS); i++) { + for (int j = 0; j < ALL_EDIDS[i].list_size; j++) { + if (strcmp(ALL_EDIDS[i].edid_list[j].name, name) == 0) + return edid_from_monitor_edid(&ALL_EDIDS[i].edid_list[j]); + } + } + + return NULL; +} diff --git a/lib/monitor_edids/monitor_edids_helper.h b/lib/monitor_edids/monitor_edids_helper.h index e5069868683d97053d8e66666e83692f1b733db3..6d9e3fc89592229cac5122c9275fcf226465ab3e 100644 --- a/lib/monitor_edids/monitor_edids_helper.h +++ b/lib/monitor_edids/monitor_edids_helper.h @@ -34,5 +34,6 @@ void free_chamelium_edid_from_monitor_edid(struct chamelium_edid *edid); struct edid *edid_from_monitor_edid(const monitor_edid *monitor_edid); struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, bool four_k); +struct edid *get_edid_by_name(const char *name); #endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_ */ -- 2.47.1 From louis.chauvet at bootlin.com Fri Jan 10 18:05:45 2025 From: louis.chauvet at bootlin.com (Louis Chauvet) Date: Fri, 10 Jan 2025 19:05:45 +0100 Subject: [PATCH i-g-t v4 5/5] lib/monitor_edids: Add new EDID for HDMI 4k In-Reply-To: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> References: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> Message-ID: <20250110-b4-cv3-02-monitor-edids-v4-5-aef77d3e0f50@bootlin.com> Add EDID for the HDMI screen LG HDR 4K. Acked-by: Kamil Konieczny Signed-off-by: Louis Chauvet --- lib/monitor_edids/hdmi_edids.h | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/lib/monitor_edids/hdmi_edids.h b/lib/monitor_edids/hdmi_edids.h index 26dffb7bfc3a2d196e1303ee94ef2a7947096f1f..589a76a8af3f471d5b72c630fe77edaf2fd6658e 100644 --- a/lib/monitor_edids/hdmi_edids.h +++ b/lib/monitor_edids/hdmi_edids.h @@ -49,7 +49,23 @@ monitor_edid HDMI_EDIDS_4K[] = { "5E00A0A0A0295030203500C48F210000" "1EEF5100A0F070198030203500C48F21" "00001E000000000000000000000000A8" }, - + { .name = "4K_GSM_LG_HDR_4K_HDMI", + .edid = "00ffffffffffff001e6d4f77c75f1500" + "0521010380462878ea7ba1ae4f44a926" + "0c5054210800d1c06140454001010101" + "010101010101a0cb0046f0703e802010" + "3500b9882100001a000000fd00283c1e" + "873c000a202020202020000000fc004c" + "472048445220344b0a202020000000ff" + "003330354d414e4a43335a37350a01e4" + "0203427223090707830100004d010304" + "10121f202261605f5e5d6d030c001000" + "b83c20006001020367d85dc401788003" + "e30f0003e2006ae305c000e606050159" + "5952a36600a0f0701f8030203500b988" + "2100001a565e00a0a0a0295030203500" + "b9882100001a023a801871382d40582c" + "4500b9882100001a00000000000000af" }, }; monitor_edid HDMI_EDIDS_NON_4K[] = { -- 2.47.1 From louis.chauvet at bootlin.com Fri Jan 10 18:05:43 2025 From: louis.chauvet at bootlin.com (Louis Chauvet) Date: Fri, 10 Jan 2025 19:05:43 +0100 Subject: [PATCH i-g-t v4 3/5] lib/monitor_edids: Add helper to print all available EDID names In-Reply-To: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> References: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> Message-ID: <20250110-b4-cv3-02-monitor-edids-v4-3-aef77d3e0f50@bootlin.com> During the chamelium v3 configuration, it may be required to know the list of supported EDID names, so add an helper to print them. Signed-off-by: Louis Chauvet --- lib/monitor_edids/monitor_edids_helper.c | 17 +++++++++++++++++ lib/monitor_edids/monitor_edids_helper.h | 2 ++ 2 files changed, 19 insertions(+) diff --git a/lib/monitor_edids/monitor_edids_helper.c b/lib/monitor_edids/monitor_edids_helper.c index 01feb34a5516916b615a741f773316159c38fccf..34ae6be9dd65e4e34777f9b929358eb7c86aeafc 100644 --- a/lib/monitor_edids/monitor_edids_helper.c +++ b/lib/monitor_edids/monitor_edids_helper.c @@ -200,3 +200,20 @@ struct edid *get_edid_by_name(const char *name) return NULL; } + + +/* + * list_edid_names: + * @level: Log level to write the names on + * + * Print all the EDID available in igt. + */ +void list_edid_names(enum igt_log_level level) +{ + for (int i = 0; i < ARRAY_SIZE(ALL_EDIDS); i++) { + for (int j = 0; j < ALL_EDIDS[i].list_size; j++) { + igt_log(IGT_LOG_DOMAIN, level, " - \"%s\"\n", + ALL_EDIDS[i].edid_list[j].name); + } + } +} diff --git a/lib/monitor_edids/monitor_edids_helper.h b/lib/monitor_edids/monitor_edids_helper.h index 6d9e3fc89592229cac5122c9275fcf226465ab3e..7ae0fd40c041b5d37e09b3bd494c6c90cf12fe97 100644 --- a/lib/monitor_edids/monitor_edids_helper.h +++ b/lib/monitor_edids/monitor_edids_helper.h @@ -15,6 +15,7 @@ #include #include +#include "igt_core.h" #include "igt_chamelium.h" /* Max Length can be increased as needed, when new EDIDs are added. */ @@ -35,5 +36,6 @@ void free_chamelium_edid_from_monitor_edid(struct chamelium_edid *edid); struct edid *edid_from_monitor_edid(const monitor_edid *monitor_edid); struct monitor_edid *get_edids_for_connector_type(uint32_t type, size_t *count, bool four_k); struct edid *get_edid_by_name(const char *name); +void list_edid_names(enum igt_log_level level); #endif /* TESTS_CHAMELIUM_MONITOR_EDIDS_MONITOR_EDIDS_HELPER_H_ */ -- 2.47.1 From louis.chauvet at bootlin.com Fri Jan 10 18:05:44 2025 From: louis.chauvet at bootlin.com (Louis Chauvet) Date: Fri, 10 Jan 2025 19:05:44 +0100 Subject: [PATCH i-g-t v4 4/5] lib/monitor_edids: Fix missing names in some monitor EDID In-Reply-To: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> References: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> Message-ID: <20250110-b4-cv3-02-monitor-edids-v4-4-aef77d3e0f50@bootlin.com> Some HDMI EDID did not have a good name identifier. Add one to avoid confusion. Acked-by: Kamil Konieczny Signed-off-by: Louis Chauvet --- lib/monitor_edids/hdmi_edids.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/monitor_edids/hdmi_edids.h b/lib/monitor_edids/hdmi_edids.h index 3984241775c3d8e0f39732bdc41cb44f491ce62b..26dffb7bfc3a2d196e1303ee94ef2a7947096f1f 100644 --- a/lib/monitor_edids/hdmi_edids.h +++ b/lib/monitor_edids/hdmi_edids.h @@ -241,7 +241,7 @@ monitor_edid HDMI_EDIDS_NON_4K[] = { "33333633493056465320000000fc0044" "454c4c20323430354650570a000000fd" "00384c1e5111000a20202020202000e9" }, - { .name = "`", + { .name = "DEL_DELL_2407WFP_HDMI", .edid = "00ffffffffffff0010ac17a053575930" "0511010380342178eeee91a3544c9926" "0f5054a54b008180a940714fb3000101" @@ -430,7 +430,7 @@ monitor_edid HDMI_EDIDS_NON_4K[] = { "60350000003200001c011d8018711c16" "20582c2500c48e2100009e0000000000" "0000000000000000000000000000000a" }, - { .name = "", + { .name = "GSM_50294_M3704C_HDMI", .edid = "00ffffffffffff001e6d76c401010101" "2514010380522e78eaac27a355499b25" "10474aa1080081807140614045403140" @@ -482,7 +482,7 @@ monitor_edid HDMI_EDIDS_NON_4K[] = { "5011000a202020202020000000fc0048" "50205a5232343430770a2020000000ff" "00434e34333132303836580a2020007f" }, - { .name = "", + { .name = "HWP_10582_HP_ZR2440w_HDMI", .edid = "00ffffffffffff0022f0562901010101" "0b170103803420782afc81a4554d9d25" "125054210800d1c081c0814081809500" -- 2.47.1 From patchwork at emeril.freedesktop.org Fri Jan 10 18:20:40 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 18:20:40 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/xe=5Feudebug=5Fonli?= =?utf-8?q?ne=3A_correct_calculate_the_time_diff?= In-Reply-To: <20250110153455.2791158-1-maciej.patelczyk@intel.com> References: <20250110153455.2791158-1-maciej.patelczyk@intel.com> Message-ID: <173653324030.2026628.10403096692938373759@b555e5b46a47> == Series Details == Series: tests/xe_eudebug_online: correct calculate the time diff URL : https://patchwork.freedesktop.org/series/143401/ State : success == Summary == CI Bug Log - changes from IGT_8188 -> IGTPW_12427 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12427 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live at workarounds: - bat-arlh-3: [PASS][1] -> [DMESG-FAIL][2] ([i915#13393]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-arlh-3/igt at i915_selftest@live at workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/bat-arlh-3/igt at i915_selftest@live at workarounds.html - bat-arls-5: [PASS][3] -> [DMESG-FAIL][4] ([i915#13393]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-arls-5/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/bat-arls-5/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][5] ([i915#13393]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-mtlp-8/igt at i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/bat-mtlp-8/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_mocs: - bat-twl-2: [ABORT][7] ([i915#12919]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-twl-2/igt at i915_selftest@live at gt_mocs.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/bat-twl-2/igt at i915_selftest@live at gt_mocs.html * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][9] ([i915#13393]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/bat-mtlp-9/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#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8188 -> IGTPW_12427 CI-20190529: 20190529 CI_DRM_15942: 00f4619246294b1de4bac42742cfef95c1f37fde @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12427: 0f443b1b8112f9f7af4376873752e73d730dea5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8188: ef0abf7f39a7ef0ecf2f08c62b90b852c435c755 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 10 18:23:35 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 18:23:35 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/xe=5Feudebug=5Fonline?= =?utf-8?q?=3A_correct_calculate_the_time_diff?= In-Reply-To: <20250110153455.2791158-1-maciej.patelczyk@intel.com> References: <20250110153455.2791158-1-maciej.patelczyk@intel.com> Message-ID: <173653341525.2030976.16704355966969710381@b555e5b46a47> == Series Details == Series: tests/xe_eudebug_online: correct calculate the time diff URL : https://patchwork.freedesktop.org/series/143401/ State : success == Summary == CI Bug Log - changes from XEIGT_8188_BAT -> XEIGTPW_12427_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8188 -> IGTPW_12427 IGTPW_12427: 0f443b1b8112f9f7af4376873752e73d730dea5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8188: ef0abf7f39a7ef0ecf2f08c62b90b852c435c755 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde: 00f4619246294b1de4bac42742cfef95c1f37fde == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12427/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 10 18:36:34 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 18:36:34 -0000 Subject: =?utf-8?q?=E2=9C=97_GitLab=2EPipeline=3A_warning_for_lib/igt=5Fkms=3A_Helper?= =?utf-8?q?s_for_monitor_edid_managment_=28rev4=29?= In-Reply-To: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> References: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> Message-ID: <173653419404.2033782.561845789121323895@b555e5b46a47> == Series Details == Series: lib/igt_kms: Helpers for monitor edid managment (rev4) URL : https://patchwork.freedesktop.org/series/137925/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1343463 for the overview. build-containers:build-debian-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69183761): Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out 320135fd as detached HEAD (ref is intel/IGTPW_12429)... Removing build/ 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:1736533959:get_sources section_start:1736533959: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 ... section_end:1736533961:step_script section_start:1736533961:cleanup_file_variables Cleaning up project directory and file based variables section_end:1736533962:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:594aa868d31ee3304dee8cae8a3433c89a6fcfcf6c7d420c04cce22f60147176: image not known (docker.go:650:0s) build-containers:build-debian-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69183760): Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out 320135fd as detached HEAD (ref is intel/IGTPW_12429)... Removing build/ Removing installdir/ Removing scripts/__pycache__/ Skipping Git submodules setup section_end:1736533959:get_sources section_start:1736533959: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 ... section_end:1736533961:step_script section_start:1736533961:cleanup_file_variables Cleaning up project directory and file based variables section_end:1736533962:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:594aa868d31ee3304dee8cae8a3433c89a6fcfcf6c7d420c04cce22f60147176: image not known (docker.go:650:0s) == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1343463 From patchwork at emeril.freedesktop.org Fri Jan 10 18:47:52 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 18:47:52 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_lib/igt=5Fkms=3A_Helpers_?= =?utf-8?q?for_connector_managment_=28rev4=29?= In-Reply-To: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> References: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> Message-ID: <173653487204.2039724.13694294130629359201@b555e5b46a47> == Series Details == Series: lib/igt_kms: Helpers for connector managment (rev4) URL : https://patchwork.freedesktop.org/series/137915/ State : success == Summary == CI Bug Log - changes from IGT_8188 -> IGTPW_12428 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12428 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at gem_ctx_create@basic-files: - fi-pnv-d510: NOTRUN -> [SKIP][1] +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/fi-pnv-d510/igt at gem_ctx_create@basic-files.html * igt at gem_exec_gttfill@basic: - fi-pnv-d510: NOTRUN -> [ABORT][2] ([i915#13169]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/fi-pnv-d510/igt at gem_exec_gttfill@basic.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_8188/bat-arlh-3/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/bat-arlh-3/igt at i915_selftest@live at workarounds.html - bat-arls-5: [PASS][5] -> [DMESG-FAIL][6] ([i915#13393]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-arls-5/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/bat-arls-5/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_module_load@load: - fi-pnv-d510: [ABORT][7] ([i915#13203]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/fi-pnv-d510/igt at i915_module_load@load.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/fi-pnv-d510/igt at i915_module_load@load.html * igt at i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][9] ([i915#13393]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-mtlp-8/igt at i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/bat-mtlp-8/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_mocs: - bat-twl-2: [ABORT][11] ([i915#12919]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-twl-2/igt at i915_selftest@live at gt_mocs.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/bat-twl-2/igt at i915_selftest@live at gt_mocs.html [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13169 [i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8188 -> IGTPW_12428 CI-20190529: 20190529 CI_DRM_15942: 00f4619246294b1de4bac42742cfef95c1f37fde @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12428: c5b3f9545b9c190b9f3edc82768b7c3c6915d705 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8188: ef0abf7f39a7ef0ecf2f08c62b90b852c435c755 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 10 19:08:18 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 19:08:18 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EBAT=3A_failure_for_lib/igt=5Fkms=3A_Helpers_fo?= =?utf-8?q?r_connector_managment_=28rev4=29?= In-Reply-To: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> References: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> Message-ID: <173653609859.2039782.291087675025093150@b555e5b46a47> == Series Details == Series: lib/igt_kms: Helpers for connector managment (rev4) URL : https://patchwork.freedesktop.org/series/137915/ State : failure == Summary == CI Bug Log - changes from XEIGT_8188_BAT -> XEIGTPW_12428_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12428_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12428_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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12428_BAT: ### IGT changes ### #### Possible regressions #### * igt at xe_exec_compute_mode@twice-preempt-fence-early: - bat-lnl-1: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8188/bat-lnl-1/igt at xe_exec_compute_mode@twice-preempt-fence-early.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12428/bat-lnl-1/igt at xe_exec_compute_mode@twice-preempt-fence-early.html Build changes ------------- * IGT: IGT_8188 -> IGTPW_12428 IGTPW_12428: c5b3f9545b9c190b9f3edc82768b7c3c6915d705 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8188: ef0abf7f39a7ef0ecf2f08c62b90b852c435c755 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde: 00f4619246294b1de4bac42742cfef95c1f37fde == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12428/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 10 19:14:04 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 19:14:04 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_lib/igt=5Fkms=3A_Helpers_?= =?utf-8?q?for_monitor_edid_managment_=28rev4=29?= In-Reply-To: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> References: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> Message-ID: <173653644425.2039782.2373801585821113596@b555e5b46a47> == Series Details == Series: lib/igt_kms: Helpers for monitor edid managment (rev4) URL : https://patchwork.freedesktop.org/series/137925/ State : success == Summary == CI Bug Log - changes from IGT_8188 -> IGTPW_12429 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12429 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_8188/bat-arls-5/igt at i915_selftest@live at workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/bat-arls-5/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][3] ([i915#13393]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/bat-mtlp-9/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_8188 -> IGTPW_12429 CI-20190529: 20190529 CI_DRM_15942: 00f4619246294b1de4bac42742cfef95c1f37fde @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12429: 320135fd9a51a50ab4eccc2fa4590c85458dbab2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8188: ef0abf7f39a7ef0ecf2f08c62b90b852c435c755 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 10 19:30:33 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 19:30:33 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_lib/igt=5Fkms=3A_Helpers_fo?= =?utf-8?q?r_monitor_edid_managment_=28rev4=29?= In-Reply-To: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> References: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> Message-ID: <173653743322.2044917.16320322664270044254@b555e5b46a47> == Series Details == Series: lib/igt_kms: Helpers for monitor edid managment (rev4) URL : https://patchwork.freedesktop.org/series/137925/ State : success == Summary == CI Bug Log - changes from XEIGT_8188_BAT -> XEIGTPW_12429_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8188 -> IGTPW_12429 IGTPW_12429: 320135fd9a51a50ab4eccc2fa4590c85458dbab2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8188: ef0abf7f39a7ef0ecf2f08c62b90b852c435c755 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde: 00f4619246294b1de4bac42742cfef95c1f37fde == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12429/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From swati2.sharma at intel.com Fri Jan 10 19:50:52 2025 From: swati2.sharma at intel.com (Swati Sharma) Date: Sat, 11 Jan 2025 01:20:52 +0530 Subject: [PATCH i-g-t 0/8] New sharpness tool Message-ID: <20250110195100.150301-1-swati2.sharma@intel.com> New sharpness tool is introduced to validate basic functionality of content adaptive sharpness filter supported with intel LNL platform. Tool has following 2 main functions: 1. input user defined strength value (1-255) 2. input incr/decr factor for setting strength and use up/down arrow keys to increase/decrease strength during run time Naladala Ramanaidu (5): data: Move PNG images to new data directory runner/settings: Constify absolute_path parameter runner/settings: Add function to set IGT_RUNNER_DATA environment variable lib/igt_core: Enhance __igt_fopen_data to support additional directories meson: Add sharpness tool Swati Sharma (3): lib/igt_kms: Add "sharpness strength" as crtc property tools: Add new sharpness tool data: Add image {tests => data}/1080p-left.png | Bin {tests => data}/1080p-right.png | Bin data/default_hd_image.png | Bin 0 -> 657520 bytes data/meson.build | 12 ++ {tests => data}/pass.png | Bin lib/igt_core.c | 31 ++- lib/igt_core.h | 6 +- lib/igt_kms.c | 4 + lib/igt_kms.h | 1 + lib/meson.build | 1 + meson.build | 2 + runner/runner.c | 8 + runner/settings.c | 11 +- runner/settings.h | 3 +- tests/meson.build | 6 - tools/intel_sharpness_tool.c | 370 ++++++++++++++++++++++++++++++++ tools/meson.build | 11 + 17 files changed, 439 insertions(+), 27 deletions(-) rename {tests => data}/1080p-left.png (100%) rename {tests => data}/1080p-right.png (100%) create mode 100644 data/default_hd_image.png create mode 100644 data/meson.build rename {tests => data}/pass.png (100%) create mode 100644 tools/intel_sharpness_tool.c -- 2.25.1 From swati2.sharma at intel.com Fri Jan 10 19:50:53 2025 From: swati2.sharma at intel.com (Swati Sharma) Date: Sat, 11 Jan 2025 01:20:53 +0530 Subject: [PATCH i-g-t 1/8] data: Move PNG images to new data directory In-Reply-To: <20250110195100.150301-1-swati2.sharma@intel.com> References: <20250110195100.150301-1-swati2.sharma@intel.com> Message-ID: <20250110195100.150301-2-swati2.sharma@intel.com> From: Naladala Ramanaidu Placing png images inside "tests/" directory seems wrong, as these are not source files. These images should ideally be in a directory with other non-exec files, so creating a new "data/" directory to store such non-exec files. v2: Update commit message subject (Kamil) Signed-off-by: Naladala Ramanaidu Signed-off-by: Swati Sharma --- {tests => data}/1080p-left.png | Bin {tests => data}/1080p-right.png | Bin data/meson.build | 11 +++++++++++ {tests => data}/pass.png | Bin lib/meson.build | 1 + meson.build | 2 ++ tests/meson.build | 6 ------ 7 files changed, 14 insertions(+), 6 deletions(-) rename {tests => data}/1080p-left.png (100%) rename {tests => data}/1080p-right.png (100%) create mode 100644 data/meson.build rename {tests => data}/pass.png (100%) diff --git a/tests/1080p-left.png b/data/1080p-left.png similarity index 100% rename from tests/1080p-left.png rename to data/1080p-left.png diff --git a/tests/1080p-right.png b/data/1080p-right.png similarity index 100% rename from tests/1080p-right.png rename to data/1080p-right.png diff --git a/data/meson.build b/data/meson.build new file mode 100644 index 000000000..9490d20ac --- /dev/null +++ b/data/meson.build @@ -0,0 +1,11 @@ +image_files = [ + '1080p-left.png', + '1080p-right.png', + 'pass.png', +] + +foreach img : image_files + configure_file(output:img, input:img, copy:true) +endforeach + +install_data(sources : image_files, install_dir : datadir) diff --git a/tests/pass.png b/data/pass.png similarity index 100% rename from tests/pass.png rename to data/pass.png diff --git a/lib/meson.build b/lib/meson.build index 1704ed1e1..afa09ae02 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -240,6 +240,7 @@ foreach f: lib_sources '-DIGT_DATADIR="@0@"'.format(join_paths(prefix, datadir)), '-DIGT_SRCDIR="@0@"'.format(srcdir), '-DIGT_LOG_DOMAIN="@0@"'.format(f.split('.')[0]), + '-DIGT_IMGDIR="@0@"'.format(imgdir), ]) lib_intermediates += lib diff --git a/meson.build b/meson.build index 5eda2d582..2c2c304b1 100644 --- a/meson.build +++ b/meson.build @@ -293,6 +293,7 @@ vmwgfxdir = join_paths(libexecdir, 'vmwgfx') mandir = get_option('mandir') pkgconfigdir = join_paths(libdir, 'pkgconfig') python3 = find_program('python3', required : true) +imgdir = join_paths(build_root, 'data') if get_option('use_rpath') # Set up runpath for the test executables towards libigt.so. @@ -388,6 +389,7 @@ endif subdir('overlay') subdir('man') subdir('docs') +subdir('data') message('Build options') message('=============') diff --git a/tests/meson.build b/tests/meson.build index 89bba6454..a8d875d36 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -510,11 +510,5 @@ if not meson.is_cross_build() output : 'gem_stress.testlist') endif -image_files = [ - '1080p-left.png', - '1080p-right.png', - 'pass.png', -] -install_data(sources : image_files, install_dir : datadir) subdir('intel-ci') -- 2.25.1 From swati2.sharma at intel.com Fri Jan 10 19:50:54 2025 From: swati2.sharma at intel.com (Swati Sharma) Date: Sat, 11 Jan 2025 01:20:54 +0530 Subject: [PATCH i-g-t 2/8] runner/settings: Constify absolute_path parameter In-Reply-To: <20250110195100.150301-1-swati2.sharma@intel.com> References: <20250110195100.150301-1-swati2.sharma@intel.com> Message-ID: <20250110195100.150301-3-swati2.sharma@intel.com> From: Naladala Ramanaidu Modified absolute_path to use const char* for input, updating the corresponding declaration. This ensures the input path remains unmodified, enhancing code safety and clarity. v2: Update commit subject. (kmail) Signed-off-by: Naladala Ramanaidu --- runner/settings.c | 2 +- runner/settings.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runner/settings.c b/runner/settings.c index 92fd42ea6..bea0c3059 100644 --- a/runner/settings.c +++ b/runner/settings.c @@ -567,7 +567,7 @@ static char *_basename(const char *path) return tmpname; } -char *absolute_path(char *path) +char *absolute_path(const char *path) { char *result = NULL; char *base, *dir; diff --git a/runner/settings.h b/runner/settings.h index f69f09778..7e6cd11e2 100644 --- a/runner/settings.h +++ b/runner/settings.h @@ -136,7 +136,7 @@ bool parse_options(int argc, char **argv, bool validate_settings(struct settings *settings); /* TODO: Better place for this */ -char *absolute_path(char *path); +char *absolute_path(const char *path); /** * serialize_settings: -- 2.25.1 From swati2.sharma at intel.com Fri Jan 10 19:50:55 2025 From: swati2.sharma at intel.com (Swati Sharma) Date: Sat, 11 Jan 2025 01:20:55 +0530 Subject: [PATCH i-g-t 3/8] runner/settings: Add function to set IGT_RUNNER_DATA environment variable In-Reply-To: <20250110195100.150301-1-swati2.sharma@intel.com> References: <20250110195100.150301-1-swati2.sharma@intel.com> Message-ID: <20250110195100.150301-4-swati2.sharma@intel.com> From: Naladala Ramanaidu Introduced set_runner_datadir() to set the IGT_RUNNER_DATA environment variable. This function uses absolute_path() to convert the relative path "../share/igt-gpu-tools" to an absolute path. Update the runner/runner code to call set_runner_datadir() and handle errors appropriately. v2: Fix review comments. (Kamil) Signed-off-by: Naladala Ramanaidu --- runner/runner.c | 8 ++++++++ runner/settings.c | 9 +++++++++ runner/settings.h | 1 + 3 files changed, 18 insertions(+) diff --git a/runner/runner.c b/runner/runner.c index 4855ad641..950eb5662 100644 --- a/runner/runner.c +++ b/runner/runner.c @@ -12,8 +12,13 @@ int main(int argc, char **argv) struct job_list job_list; struct execute_state state; int exitcode = 0; + int data_flag = 0; init_settings(&settings); + data_flag = set_runner_datadir(); + if (data_flag) + fprintf(stderr, "Data dir path not set\n"); + init_job_list(&job_list); if (!parse_options(argc, argv, &settings)) { @@ -49,6 +54,9 @@ int main(int argc, char **argv) exitcode = 1; } + if (!data_flag) + unsetenv("IGT_RUNNER_DATA"); + printf("Done.\n"); return exitcode; } diff --git a/runner/settings.c b/runner/settings.c index bea0c3059..c8220be32 100644 --- a/runner/settings.c +++ b/runner/settings.c @@ -589,6 +589,15 @@ char *absolute_path(const char *path) return result; } +int set_runner_datadir(void) +{ + const char *datapath = "../share/igt-gpu-tools"; + char *abpath; + + abpath = absolute_path(datapath); + return setenv("IGT_RUNNER_DATA", abpath, 1); +} + static char *bin_path(char *fname) { char *path, *p; diff --git a/runner/settings.h b/runner/settings.h index 7e6cd11e2..5926817b6 100644 --- a/runner/settings.h +++ b/runner/settings.h @@ -150,5 +150,6 @@ bool serialize_settings(struct settings *settings); bool read_settings_from_file(struct settings *settings, FILE* f); bool read_settings_from_dir(struct settings *settings, int dirfd); +int set_runner_datadir(void); #endif -- 2.25.1 From swati2.sharma at intel.com Fri Jan 10 19:50:56 2025 From: swati2.sharma at intel.com (Swati Sharma) Date: Sat, 11 Jan 2025 01:20:56 +0530 Subject: [PATCH i-g-t 4/8] lib/igt_core: Enhance __igt_fopen_data to support additional directories In-Reply-To: <20250110195100.150301-1-swati2.sharma@intel.com> References: <20250110195100.150301-1-swati2.sharma@intel.com> Message-ID: <20250110195100.150301-5-swati2.sharma@intel.com> From: Naladala Ramanaidu Add an additional parameter for the image directory. Refactor the function to use an array of directories to iterate through, reducing redundancy. Include a check for the "IGT_RUNNER_DATA" environment variable. v2: Fix review comments. (Santhosh, Kamil) Signed-off-by: Naladala Ramanaidu Signed-off-by: Swati Sharma --- lib/igt_core.c | 31 +++++++++++++++---------------- lib/igt_core.h | 6 +++--- 2 files changed, 18 insertions(+), 19 deletions(-) diff --git a/lib/igt_core.c b/lib/igt_core.c index 407f7b551..cd43d276a 100644 --- a/lib/igt_core.c +++ b/lib/igt_core.c @@ -3305,27 +3305,26 @@ void igt_reset_timeout(void) igt_set_timeout(0, NULL); } -FILE *__igt_fopen_data(const char* igt_srcdir, const char* igt_datadir, - const char* filename) +FILE *__igt_fopen_data(const char *igt_srcdir, const char *igt_datadir, + const char *igt_imgdir, const char *filename) { char path[PATH_MAX]; FILE *fp; - - snprintf(path, sizeof(path), "%s/%s", igt_datadir, filename); - fp = fopen(path, "r"); - if (!fp) { - snprintf(path, sizeof(path), "%s/%s", igt_srcdir, filename); - fp = fopen(path, "r"); - } - if (!fp) { - snprintf(path, sizeof(path), "./%s", filename); - fp = fopen(path, "r"); + size_t i; + const char *dirs[] = {igt_datadir, igt_srcdir, igt_imgdir, + getenv("IGT_RUNNER_DATA"), "./data"}; + + for (i = 0; i < ARRAY_SIZE(dirs); i++) { + if (dirs[i]) { + snprintf(path, sizeof(path), "%s/%s", dirs[i], filename); + fp = fopen(path, "r"); + if (fp) + return fp; + } } - if (!fp) - igt_critical("Could not open data file \"%s\": %m\n", filename); - - return fp; + igt_critical("Could not open data file \"%s\": %m\n", filename); + return NULL; } static void log_output(int *fd, enum igt_log_level level) diff --git a/lib/igt_core.h b/lib/igt_core.h index f0ba1a381..05134a104 100644 --- a/lib/igt_core.h +++ b/lib/igt_core.h @@ -1456,8 +1456,8 @@ static inline uint32_t igt_seconds_elapsed(struct timespec *start) void igt_reset_timeout(void); -FILE *__igt_fopen_data(const char* igt_srcdir, const char* igt_datadir, - const char* filename); +FILE *__igt_fopen_data(const char *igt_srcdir, const char *igt_datadir, + const char *igt_imgdir, const char *filename); /** * igt_fopen_data: * @filename: filename to open. @@ -1466,7 +1466,7 @@ FILE *__igt_fopen_data(const char* igt_srcdir, const char* igt_datadir, * then from build directory, and finally from current directory. */ #define igt_fopen_data(filename) \ - __igt_fopen_data(IGT_SRCDIR, IGT_DATADIR, filename) + __igt_fopen_data(IGT_SRCDIR, IGT_DATADIR, IGT_IMGDIR, filename) int igt_system(const char *command); int igt_system_quiet(const char *command); -- 2.25.1 From swati2.sharma at intel.com Fri Jan 10 19:50:57 2025 From: swati2.sharma at intel.com (Swati Sharma) Date: Sat, 11 Jan 2025 01:20:57 +0530 Subject: [PATCH i-g-t 5/8] lib/igt_kms: Add "sharpness strength" as crtc property In-Reply-To: <20250110195100.150301-1-swati2.sharma@intel.com> References: <20250110195100.150301-1-swati2.sharma@intel.com> Message-ID: <20250110195100.150301-6-swati2.sharma@intel.com> Add "sharpness strength" as crtc property. v2: Replace SHARPENESS_STRENGTH with SHARPNESS_STRENGTH. (Nemesa) v3: Rebase v4: Rebase Signed-off-by: Swati Sharma Signed-off-by: Mohammed Thasleem Reviewed-by: Ankit Nautiyal --- lib/igt_kms.c | 4 ++++ lib/igt_kms.h | 1 + 2 files changed, 5 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 95e3059f7..d2f8bd16d 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -717,6 +717,7 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { [IGT_CRTC_HISTOGRAM] = "HISTOGRAM_ENABLE", [IGT_CRTC_GLOBAL_HISTOGRAM] = "HISTOGRAM_DATA", [IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "HISTOGRAM_IET", + [IGT_CRTC_SHARPNESS_STRENGTH] = "SHARPNESS_STRENGTH", }; const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = { @@ -2621,6 +2622,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe) if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM)) igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0); + if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SHARPNESS_STRENGTH)) + igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_SHARPNESS_STRENGTH, 0); + pipe->out_fence_fd = -1; } diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 1e2a927ab..bfd297a93 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -168,6 +168,7 @@ enum igt_atomic_crtc_properties { IGT_CRTC_HISTOGRAM, IGT_CRTC_GLOBAL_HISTOGRAM, IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR, + IGT_CRTC_SHARPNESS_STRENGTH, IGT_NUM_CRTC_PROPS }; -- 2.25.1 From swati2.sharma at intel.com Fri Jan 10 19:50:58 2025 From: swati2.sharma at intel.com (Swati Sharma) Date: Sat, 11 Jan 2025 01:20:58 +0530 Subject: [PATCH i-g-t 6/8] tools: Add new sharpness tool In-Reply-To: <20250110195100.150301-1-swati2.sharma@intel.com> References: <20250110195100.150301-1-swati2.sharma@intel.com> Message-ID: <20250110195100.150301-7-swati2.sharma@intel.com> New sharpness tool is introduced to validate basic functionality of content adaptive sharpness filter supported with intel LNL platform. Tool has following 2 main functions: 1. input user defined strength value (1-255) 2. input incr/decr factor for setting strength and use up/down arrow keys to increase/decrease strength during run time To experiment with sharpness, HD 640x480 default image is used. Option is given to user to provide HD, FHD, 4K images as an input. NOTE: Image used as default is a stocked image. Tool has following options: -d : increment/decrement factor for sharpness strength for HD resolution. Default image will be used. -D : sharpness strength value for HD resolution. Default image will be used. -h : image file for HD resolution (640x480) and increment/decrement factor for sharpness strength. -H : image file for HD resolution (640x480) and sharpness strength value. -f : image file for Full HD resolution (1920x1080) and increment/decrement factor for sharpness strength. -F : image file for Full HD resolution (1920x1080) and sharpness strength value. -k : image file for 4K resolution (3840x2160) and increment/decrement factor for sharpness strength. -K : image file for 4K resolution (3840x2160) and sharpness strength value. -p: prints this message Signed-off-by: Swati Sharma Signed-off-by: Mohammed Thasleem Signed-off-by: Nemesa Garg --- tools/intel_sharpness_tool.c | 370 +++++++++++++++++++++++++++++++++++ 1 file changed, 370 insertions(+) create mode 100644 tools/intel_sharpness_tool.c diff --git a/tools/intel_sharpness_tool.c b/tools/intel_sharpness_tool.c new file mode 100644 index 000000000..89d307e32 --- /dev/null +++ b/tools/intel_sharpness_tool.c @@ -0,0 +1,370 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright ? 2024 Intel Corporation + */ + +#include "igt.h" +#include "igt_kms.h" +#include + +#define DISABLE_FILTER 0 +#define MIN_VALUE 1 +#define MAX_VALUE 255 +#define UP_ARROW 65 +#define DOWN_ARROW 66 + +#define MAX(a, b) ((a) > (b) ? (a) : (b)) +#define MIN(a, b) ((a) < (b) ? (a) : (b)) + +typedef struct { + int drm_fd; + enum pipe pipe_id; + struct igt_fb fb; + igt_pipe_t *pipe; + igt_display_t display; + igt_output_t *output; + igt_plane_t *plane; + drmModeModeInfo *mode; + int filter_strength; + uint64_t modifier; + uint32_t format; + const char *png; + int incr_value; + int width; + int height; +} data_t; + +typedef enum { + NONE_SELECTED, + SHARP_INCR_SELECTED, + SHARP_USR_SELECTED, +} option; + +/* Sets the sharpness filter strength on the display pipe. */ +static void set_filter_strength_on_pipe(data_t *data) +{ + igt_pipe_set_prop_value(&data->display, data->pipe_id, + IGT_CRTC_SHARPNESS_STRENGTH, + data->filter_strength); +} + +static void paint_image(data_t *data) +{ + cairo_t *cr = igt_get_cairo_ctx(data->drm_fd, &data->fb); + int img_x, img_y, img_w, img_h; + + img_x = img_y = 0; + img_w = data->fb.width; + img_h = data->fb.height; + + igt_paint_image(cr, data->png, img_x, img_y, img_w, img_h); + + igt_put_cairo_ctx(cr); +} + +static void setup_fb(data_t *data) +{ + int fb_id; + + fb_id = igt_create_fb(data->drm_fd, data->width, data->height, + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, &data->fb); + igt_assert(fb_id); + + paint_image(data); +} + +static void cleanup(data_t *data) +{ + igt_remove_fb(data->drm_fd, &data->fb); + + igt_output_set_pipe(data->output, PIPE_NONE); + igt_display_commit2(&data->display, COMMIT_ATOMIC); +} + +/* Tests the sharpness filter by applying the filter strength and committing the changes. */ +static void test_sharpness_filter(data_t *data) +{ + int ret; + + igt_display_reset(&data->display); + igt_output_set_pipe(data->output, data->pipe_id); + + data->plane = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY); + + setup_fb(data); + igt_plane_set_fb(data->plane, &data->fb); + igt_plane_set_size(data->plane, data->mode->hdisplay, data->mode->vdisplay); + + /* Set filter strength property */ + set_filter_strength_on_pipe(data); + igt_debug("Sharpened image should be observed for filter strength > 0\n"); + + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); + igt_assert_eq(ret, 0); +} + +/* Checks if the sharpness filter property is available on a given pipe. */ +static bool has_sharpness_filter(igt_pipe_t *pipe) +{ + return igt_pipe_obj_has_prop(pipe, IGT_CRTC_SHARPNESS_STRENGTH); +} + +static void set_output(data_t *data) +{ + igt_display_t *display = &data->display; + igt_output_t *output; + enum pipe pipe; + + for_each_pipe_with_valid_output(display, pipe, output) { + /* Restricting to pipe A */ + if (pipe != PIPE_A) + continue; + + data->output = output; + data->pipe_id = pipe; + data->pipe = &display->pipes[data->pipe_id]; + data->mode = igt_output_get_mode(data->output); + + if (!has_sharpness_filter(data->pipe)) + continue; + + igt_output_set_pipe(output, pipe); + } +} + +/* Handles incrementing or decrementing the sharpness filter strength based on factor. */ +static void do_sharpness_incr(data_t *data) +{ + char arrow; + data->filter_strength = 0; + + set_output(data); + + /* Handle incrementing or decrementing based on arrow key input */ + while ((arrow = getchar()) != 'q') { + if (arrow != UP_ARROW && arrow != DOWN_ARROW) + continue; + + if (arrow == UP_ARROW) { + data->filter_strength = MIN(MAX_VALUE, data->filter_strength + data->incr_value); + } else if (arrow == DOWN_ARROW) { + data->filter_strength = MAX(MIN_VALUE, data->filter_strength - data->incr_value); + } + + igt_info("pipe-%s-%s-strength-%d \n", kmstest_pipe_name(data->pipe_id), data->output->name, data->filter_strength); + test_sharpness_filter(data); + } + + /* Clear the input buffer */ + while (getchar() != '\n'); + cleanup(data); +} + +/* Allows the user to specify a sharpness filter strength value directly. */ +static void do_sharpness_usr(data_t *data) +{ + // Check if the strength value is within the valid range + if (data->filter_strength < MIN_VALUE || data->filter_strength > MAX_VALUE) { + igt_warn("Invalid strength value. Please provide a value between %d and %d.\n", MIN_VALUE, MAX_VALUE); + cleanup(data); + return; + } + + set_output(data); + igt_info("pipe-%s-%s-strength-%d \n", kmstest_pipe_name(data->pipe_id), data->output->name, data->filter_strength); + test_sharpness_filter(data); + + cleanup(data); +} + +static void print_usage(void) +{ + printf("Options:\n" + " -d : increment/decrement factor for sharpness strength for HD resolution. Default image will be used.\n" + " -D : sharpness strength value for HD resolution. Default image will be used.\n" + + " -h : image file for HD resolution (640x480) and increment/decrement factor for sharpness strength.\n" + " -H : image file for HD resolution (640x480) and sharpness strength value.\n" + " -d : increment/decrement factor for sharpness strength for HD resolution. Default image will be used.\n" + " -D : sharpness strength value for HD resolution. Default image will be used.\n" + " -f : image file for Full HD resolution (1920x1080) and increment/decrement factor for sharpness strength.\n" + " -F : image file for Full HD resolution (1920x1080) and sharpness strength value.\n" + " -k : image file for 4K resolution (3840x2160) and increment/decrement factor for sharpness strength.\n" + " -K : image file for 4K resolution (3840x2160) and sharpness strength value.\n" + " -p: prints this message\n"); +} + +int main(int argc, char *argv[]) +{ + int opt; + data_t data = {0}; + int ret = EXIT_SUCCESS; + FILE *file = NULL; + + option selected_option = NONE_SELECTED; + + // Default image for -d and -D options + const char *default_image = "default_hd_image.png"; + + if (argc <= 1) { + print_usage(); + return EXIT_SUCCESS; + } + + data.drm_fd = drm_open_driver_master(DRIVER_XE); + igt_require(data.drm_fd >= 0); + + kmstest_set_vt_graphics_mode(); + + igt_display_require(&data.display, data.drm_fd); + igt_require(data.display.is_atomic); + igt_display_require_output(&data.display); + + while ((opt = getopt(argc, argv, "h:H:d:D:f:k:F:K:p")) != -1) { + switch (opt) { + case 'p': + print_usage(); + return EXIT_SUCCESS; + case 'd': + data.incr_value = atoi(optarg); + data.png = default_image; + data.width = 640; + data.height = 480; + selected_option = SHARP_INCR_SELECTED; + break; + case 'D': + data.filter_strength = atoi(optarg); + if (data.filter_strength < MIN_VALUE || data.filter_strength > MAX_VALUE) { + igt_warn("Invalid strength value.\n"); + return EXIT_FAILURE; + } + data.png = default_image; + data.width = 640; + data.height = 480; + selected_option = SHARP_USR_SELECTED; + break; + case 'h': + if (optind < argc) { + data.png = optarg; + data.incr_value = atoi(argv[optind]); + optind++; + } else { + igt_warn("Error: Option -h requires two arguments.\n"); + return EXIT_FAILURE; + } + data.width = 640; + data.height = 480; + selected_option = SHARP_INCR_SELECTED; + break; + case 'H': + if (optind < argc) { + data.png = optarg; + data.filter_strength = atoi(argv[optind]); + if (data.filter_strength < MIN_VALUE || data.filter_strength > MAX_VALUE) { + igt_warn("Invalid strength value.\n"); + return EXIT_FAILURE; + } + optind++; + } else { + igt_warn("Error: Option -H requires two arguments.\n"); + return EXIT_FAILURE; + } + data.width = 640; + data.height = 480; + selected_option = SHARP_USR_SELECTED; + break; + case 'f': + if (optind < argc) { + data.png = optarg; + data.incr_value = atoi(argv[optind]); + optind++; + } else { + igt_warn("Error: Option -f requires two arguments.\n"); + return EXIT_FAILURE; + } + data.width = 1920; + data.height = 1080; + selected_option = SHARP_INCR_SELECTED; + break; + case 'F': + if (optind < argc) { + data.png = optarg; + data.filter_strength = atoi(argv[optind]); + if (data.filter_strength < MIN_VALUE || data.filter_strength > MAX_VALUE) { + igt_warn("Invalid strength value.\n"); + return EXIT_FAILURE; + } + optind++; + } else { + igt_warn("Error: Option -F requires two arguments.\n"); + return EXIT_FAILURE; + } + data.width = 1920; + data.height = 1080; + selected_option = SHARP_USR_SELECTED; + break; + case 'k': + if (optind < argc) { + data.png = optarg; + data.incr_value = atoi(argv[optind]); + optind++; + } else { + igt_warn("Error: Option -k requires two arguments.\n"); + return EXIT_FAILURE; + } + data.width = 3840; + data.height = 2160; + selected_option = SHARP_INCR_SELECTED; + break; + case 'K': + if (optind < argc) { + data.png = optarg; + data.filter_strength = atoi(argv[optind]); + if (data.filter_strength < MIN_VALUE || data.filter_strength > MAX_VALUE) { + igt_warn("Invalid strength value.\n"); + return EXIT_FAILURE; + } + optind++; + } else { + igt_warn("Error: Option -K requires two arguments.\n"); + return EXIT_FAILURE; + } + data.width = 3840; + data.height = 2160; + selected_option = SHARP_USR_SELECTED; + break; + default: + igt_warn("Unknown option.\n"); + print_usage(); + return EXIT_FAILURE; + } + } + + if (data.png) { + file = igt_fopen_data(data.png); + if (file == NULL) { + igt_warn("Could not open data file \"%s\": No such file or directory\n", data.png); + return EXIT_FAILURE; + } + } + + // Ensure valid arguments + if (!data.png && data.filter_strength <= 0 && selected_option != NONE_SELECTED) { + igt_warn("Error: No image file or strength value specified.\n"); + return EXIT_FAILURE; + } + + // Handle different options + if (selected_option == SHARP_INCR_SELECTED) { + do_sharpness_incr(&data); + } else if (selected_option == SHARP_USR_SELECTED) { + do_sharpness_usr(&data); + } + + fclose(file); + igt_display_fini(&data.display); + close(data.drm_fd); + + return ret; +} + -- 2.25.1 From swati2.sharma at intel.com Fri Jan 10 19:50:59 2025 From: swati2.sharma at intel.com (Swati Sharma) Date: Sat, 11 Jan 2025 01:20:59 +0530 Subject: [PATCH i-g-t 7/8] data: Add image In-Reply-To: <20250110195100.150301-1-swati2.sharma@intel.com> References: <20250110195100.150301-1-swati2.sharma@intel.com> Message-ID: <20250110195100.150301-8-swati2.sharma@intel.com> Add hd image for user to experiment with sharpness tool. Signed-off-by: Swati Sharma --- data/default_hd_image.png | Bin 0 -> 657520 bytes data/meson.build | 1 + 2 files changed, 1 insertion(+) create mode 100644 data/default_hd_image.png diff --git a/data/default_hd_image.png b/data/default_hd_image.png new file mode 100644 index 0000000000000000000000000000000000000000..57f1f2297dbb4abee9eea3fc388fcea3f21ad913 GIT binary patch literal 657520 zcmV(~K+nI4P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGf5&!@T5&_cPe*6Fc|D{PpK~#8Nr2Scw zBuSFziLsm8efsTjN90|Vb#!%gbMCr=@+s0|o at lQe$?G zp028{s=PDq at Y~&Pb8~n6eypaEo;jIav$N_Up=zq4A}lN{%zt4ybnSzC at 7{EKz36nh zQK?iSuGgX(gexwuuHtgJjJ5SjTvaP^d2v0oz2mPq6uSeWeVn+N0 z?_I`qOfHu(UC!cW?S at CosE{VfM15^N)^CDHH>7hD%bWG6HCoZESEF)Gp36n>O0;UV zsMqVz)rs|5HHaFc`7|zu$rmc%c%2Wm4q9V zYmI~}#J?u~=n5LA)2Nfr@{+jM5C?6%7&nxU6r)bO_4PGqyp9F$UtM2Q9 at 1*oqSLHL zx3(VJ)%9o-r%oR0l)Ozc-BvBSb>8LP8u{F;t&!{+X++E at _hfzT#|kzYNS88n(=HD!^J4>?rp^NVg}zLs%!A0 z(S=`iXth2rV}3b{CbX`@j|TbeG at H?*B6 at 3tZZmGGl$A6)t!{Lit(Z;barEXO&W9to z7^Fq6u%!*ZjlbDyN298I+{FBP5wo>rTp$Y7@Vi>C zQRm1DbR!yB{@PkZ4_@{gb$E15y1!A!sW| z8~H)Yjp-vJ*PM}uHOk~+Te_)mjqKUZd?tMbJ+vKoOXURwWlD%3m&SnyytZDw&U(Iv z)@8L8XVXPIe{&Rvr)RNTUdNM1PomRk#CE$wJs=;Ze?tMTY1>>Mz~=?|D(6i?kF1hb z=wA{>ltEH^wPrNd;rSeXA=?WWel)*|<3%^3*+Dj{w39`=d2<-2N5 at ei?;7#jok5Hn zo%qAqReUj8#vflD#pvWH9__T_UcVOq;;;TX7R$@{k6(Qq&rUDme0D|KxP-So+9hpe zM)_#a={En&UtB^&csl<^Rr6(z`lW(33xQWY#`L|H$7gt1^ZxHPI#OG=L at Y=kFT%cvc5{ zpslhhtF(g(^hlHMUn8qtXI$RDyi^XqJxbck^EK~yT_vtMU7g{3HQKsq*v2#7s>o$s zm$gzwXPM{Qpx#{NZ&-p~JhZ{4Ti6Zp!irXsFXMV#V at RcWu~_80#wlc=NZ;$X0a~;l z;sT#Zt5~6kU+`0%?)hqUUpk~uTGl-ic#!e`lk^GF>+yZQm4`UT!?<~<|2Pt3aa33J zrMAiQ>VA2w?+rVU z{sM!2Njfs&k~C%*^a{cyW3B*M8nbm2Pkp at sQ0YV)(6In0uEQjao at P}#JPPHCFedne zf#j#5xFo)XO`AzP>OTe0UpK2VXeTNfHSSkA%ej= z_XGh2P at odvfsG{@C5}< z*)BES6uE{`sADaB&w|ZKdrqFC#S(DQjzPDVjdBj~yBMDH>@tC91K=!BzlOg{_i!d z*z(+I0J1RbB+`I>Wn-b7V65lleaW?Dv~yr-8x%*-Ru|w?KEwq101U3xsfR|?+I?gP zATb`r>(kRXI6IGXWNr?<*Me@!l;u+`WmFG+`_M_v{5&- at Tou)9tijCQ!l`WJXwchVp)ReVdz zJ41eyyCGq%--|0i)S7jN{4D6Ws8X*0y$fhMJR8TWSFhv6%dcVvpt3W0=kC4O+un=8 zU?c9{zaQsxcz*x&i+FuD1jx}6sHcr46pV+liJYxL*O+=-Ql>e at RepB2_G5E%hfdl& zd2?yQrmduclfQ)21C3^aUl>c-IUA1 at G*9c)q3z&`G_Gmqm+BA{_KY%ILsN271!)J6 zcr!wcyc^V+va_6wQ{Ga45%ro1NClq8LjL)_z>S}#lV|?(oX=F^>Lh4}u0lzZHW93A zupqSaD7CV8Ji~xY!-uOg at vX0Q;@OEc{gegjbOD%M-XQ1XajiAW_YJ;QrkhM%9X^m& z&iPzky?yw<>_~d at B7b@mu;AO at 9>p*IFK at qnY+1e=w>*mSeH${C|J at 1+3U0lB+c=7)}~^%UC`y(=+T z=ba47w7+>);W~j*d0xHq7MXD<-(@K2NuaX|f|=XD4NDzNrf-^r5(s+sdHGCx?QiY$ z?eit=I at _l@f%ctFniUQH_T8i{|1S>jo3G&#fSdM(d&T{g9$Y>DHmyS6d?)z#ZSnK) zcUgAxF7q{R9%Xqv8_!z=)BB<0E&aFhEf3Qu)Ac&ftLw5Z)Ba>$#r+bjmtpDay at n$^h+ww zr0o4Cn1lW{;G>P9Iiv<1`O_FgnIypCYd+5-vC%OO_NY1AHuxOyM{o4^lF^jjY at RZ7cpq8MUS%8;7=W3*#)(2wCmBwNN)rDHrkcgYE>}S5rf)I z^vr(^07^Gwg2kRux3eYJ&^x1wmI^6lv7Q86=3lKfC}bVr3TT7}Q+Tqd)MLE3iNo+ at lpP3TOJ7XOezf@eVr=ahq#1q`16nYx?<;^dP;r03ImwO6V9W at CYuDzmBz zg!-{g5f;FtV1m~Gt^qyr?HX`4!zzyfvNJ&6b+wV6-y7~v0Vs3YNa0zYkq2O59Uj2i zn+kWSL}gU^Y%3}g)3=V5x8#QHfjTPudwLfEYsk-%`wM8DselB&l*Mw$L%|$czy_CP zv`8e7>F8mu12pX2W%&SVB!}G9((AX`Y12WeB8%K3&bk1KpbXXY;zHX30BqY?&<>Ym zwS=}A^)#iOPLSyX_;czr?%lu-WonH=uK_lf^1RxL@%SPpqf^>XEw=aequ(DuYK>gh z;^62gULKvs*RKz$S9ou`gZFxdE3BB3|-dO_;E z2lP)}p?+CF6BSaVYp at QGdF$Jd?t=_ICKK94Hs%C>-sh|w at La=SklriOxvC*^)WHql z%}!X+1+XrOS4Pfur0m$?qpdNHUX!0;m9G#pd;K;d+KU>wNSz=L z%U}mXI#-YWli=|~_YMA6p5F!)m=a(7UQ-Vc%uDc`d9I$7r~jPrmL<1BJ}dqs+2ZVR z`})rve=crmD1R(KNfGhC^e_#R`LR$~?p5I5+uxp~ftr2${8sSbEOkE?@-TXF%EPnb zEAS93SexoDe+vk;QF)(W{;7wM=@QiBJ>zoEP@|2O*FOXReQqd$N_OzkM{_%Bsc*3b z+WA#@driCYtb?h{*PyP~zNYP4(UiyPxyNk)Xy?q9fz~C>B3<*)E*HP;T%m>E2J}DY ze1o{wN6~>Jki2qfHr_XwMjk6N3f>iGe4qu$V<7MW<=U<)sm#8X))qeiQVGUXi%W1Eh at XkQ(eQ?fQKoD$U>3>X(d4@#uW$ZLt(ZL`(G~EX9HOZp`>0RRVFo+$DU!7~y)_pDGWmXlSrwC}+^&mN{ zsR2sGXcUrbEG<7W`R@&2EG8HE8$%2^j8hykK_?W739if{Ywi zrH^jBt^Sjix{zoXwx|YV)(q at XmMwMq^iz6 at jjGlAutU zp_AC$r_M>c1?U*TV?9uTe9i$nN0UX2b+>odF20?>Ny)uV>Ft^H&35aMmvB7xXuot zw5B}KR%_Ht%7<-@%CP?7PYML*HQL^~UQyd3^$k<4dTPN=T`fCLqw}-4ro*eQYS-v2 zkxxKhoqAR`OlgBR<@?H^qG%!jw*+leP}WNx(q|bQDI at c53^+F|DMBXjgW; zl_v+53))OV9hpf{wxZ_!fozbrdN<$Y_d0DgWl}k_@>g}Kw?C)6aJCET-PBH&AXd(nSuD~!1DO9>;KZ@ z&!th;zOhQ~f9LG`gdaQqxnR69+y)45!42|M-t%~SU7nS}f9%NmFW$>Dy2NVX?X18&e6p<4=IC!J;RoidbZ7{C0TKu23H09yex-+K#y;Ajbg%Cj9` z57W4v2migjE`OU>8OOu-bxxG at c@#ja=)fDK;oCfQLKWABgpMRt{?3r8e0vx_j};x? zp^>9m2V>p3U(!CwlF5 zXmD;>hkTp7pl7aL*Fac71n9OrS4fBR$Q(YL!ykd%T)|F30mKm1`Ad4yhVz?PT-VZ| zT?0b&Jk0?iGk7=WdPW+~?*S*q1iqaCm`;Zyz{@N~(`gJR<2+9Q#P*&XO4obq{7DVW z9K*W+a3_rlmmsgXUVzs$&MltlmC|U|)96X3^+5I<@~EhH{-e$me(G)={#i!iNaKv> z*0X}=+)#(#s~BeukMly0NAoxsP7-9D&6e@{|Y0`hl0vmsF at 4#}&a)<{=?RulB`{DR6jldtf6Lb=Ya zD{(wsP%rS^?gnw&?QU%L`_ZLS;e5H4o at G6obS-E-Ni)n%epKWQXX{uMOYTMeLBl09 zU-Ep3ygLuiIc}5WokQqEwDFn-&$Fcbrl4 at O{PQQgMK(0>sg%8G8Tnn~H?SwY)GgA` zi|w#x=>^SUA!Oe+Dew^(sxYkD+2vK70lwax4&xQT{Og0`_~y+?oD63G!&*$E5$8Ac zI7BF3&nxlt{3ebsYw)WYhhUj6j;8VNKYJOUzNB84>v8YVJ5fcCOeT|N7^|4Ty&7BVFNi!=-GV3A)5)RN0yufq2M zfDRMSdiS!Q$)B}uywo_WvsOCqm0?wVRXfa*bMJI1 zr)1?+Gwih2X}_`bk3>^EXd2tkM$~rQ;!=uky-c6*Jr4w?Eha<;TDJ#0oDAEBeSG35b^I z4x_f{wQJ~_dV(;j4rv;ktLDOh8p^QG{Y at 0{Znqcvy>9IFd$FO{t?m%4g%(N6ROgFv zhK8#|bSQ}H0^m8EEWxtWKj~8_FK0j??&qXX3&j2W4X|kfy576DA6o!50b7%Y4Vc^% zq-p4HE~7&lZH!Ep@^p#soT#po_fvq at F)WKTKzc$12?~3I`-4t92E87?p~Xg)l?((y zNF=?bR|PPs*TA7>t4I%DQV)Fs-SkdzPT*&+hV%t3Wo4?A78u+iK;v|}jHv(uK(Yo1 zN^nT-ddDWbHziEq-`Qvw#}~u60Qi~yXg1AxP8!LapQ+#=)W`uj3kU#f)TxH>YB|q* zVMz)q>`&vPv0YpNG?#!*gkTO~OA@%kfXtCU?QVJ(2^0gm;nI2oIvePJ=baf}?@<9_ zEMt1#xSs={TSsaYUxmaNc&DR(#hddJ;@qQXR(vW&R7&(uR- at 4NE`{h&s z(wDOu@$?WT$TLVE{O7{XLlr(w$5Z%DSp`8V4&+4d(UpJ;;CVhCAvD#T!}|5%QM`t? zQ;hu~AoUMld=pRK9Hoa)V5TzaA>%d5ytHRXem8(27d|aP=7M&;obm~^n$MG7{shxY z`0aonY|e0Lpv?0nfyjCQea|_DyK`J%Mr6TklpJvlB;FpYcYg4=onW5+vB>}FQPA~Y7IN`cd6bvmKbOZ3Jtvf& znm-r51Nv4WZ6^Hpx;)D3O#W8fGN>PJ|5hFyhIHDL9d at 557&MTI_jA~n{O#1|`7O=n zUFN1JA>V}C=?elqf1iF2&jPswcm(5mHg4w6xqQC_mdbUW%Ro})d+I^2GtkC8tEbDn zGA-Vb#vekjxPC~3c)PMN+(dF?rELq0F^C6Rpg?eX2;YyXe`^Z)H;IGv!>QQ$*Y z;bAZ_9J+R0&AHhd0Eh|$wZBveZvzF&vX^fG(0l|%+<&3ybPcPyEV>WhDI11IYTY3zg zKhFPOlFyTOfo*Oc(R`{N>A-!K-P-d2d%qgFvZX>qMv3CXZp3 z0Q0K?Ow&#%T+l7p1)-piucFmzQ9lCcS`4^uLRXFS{cR&kVS>IEV5i+_VpuM7afmCa zYrOA(c8m7~(w#bI%3$7y at c;FA60aP-!}ufS$bufyqH$`p&XJYE`!|g-M*C`|NYc2; zANZ%2$Dw%_j0j>~c;MvrY!EA}kj;l{-)sn23Xw^fR7UEY`|TF>*NO_Vr#HF_$lC(= zZ?@`yb`1|{0*Dv0F+imk3uN-e$uR5Uban-pna1JCdDhcre-OL9cHGww4F!IK88~phc6# zRRwvfpa(otUm6GXi5~3A3IGaLb2Tw_;@smaD(PBfiBL#tIq4n|LKcj_`l0L~OD at h* zOO~?ZOwu0Lf;>B3&cD^)>55=?I!Ixo{T6^s*|IZe4&EyAQYZamM`?t9^neH15LdEW zo{Lq8wgE$#M)6GElyp>c<+KS%OL2&mJ&c!pzDxi2kF z+%petmG{-R(qX6Gv%kwjTa@<*<&kks58Y{}*(3G$4}==evyKSr5$(U{?AY<#G_t&u zGxJ!T?QEH&ZN}$ikQcW>)Ob2A%0fEQm at qN_oUz8QNCx|+DVUZJ6T02 z>*y+X11RXfeb_EN*8jyvAAh1Qn4^%+CnEq!G4awBbP9=HKRtnZPfYR}oz}$+&ppnqPyQ+Axn1M at F$`lNuUB&8RluMqK zJzBjv8g#ubliP0DO}92T|_xpGo3m-Bq|ig~TEqBZ(4uerQ at J<(R6$4s$V(In3 z4=Y at t-U9TvHI9O-XbA558a!xq+mb=I0}$4e3+UtBi?eB*k0x;j;5nZz;$&P5!8s>R zkUp9()1Xc<#M8Mey8)uyze4d#M>pjUPyw%81w1F7KxAFxmvmaUm0bPl5b(teqf2?+ zrp7uSPllWUwD3%Om4*WYsX|albFmTkNrJEva2u0`6<%E@OM3)K6 at Fb=fh~z`PtarjXI#l4uu{=y}*~0 zQJ{Ja_>)hTM}Xo&m>dQtpBcX$?yn+?)~97fI#O}vuw9l8 at T|uQ`B?JQfN&Mc$}&P( z(u*)6x_NCX)^+yMiMN1{c51FEli-s_S+DX$C1ErQj1cjBvY#OKGe_~!T`##iexrXAE8%>-et z9Cx@!CFhnlbL8`KIs=3uAGAq3Cdy0=p~^!0q zDCgacUi|dk`*Cl3Bd%tnm?DpM%!c!MJbirtO*b)tH_E>|7N87B55_q3wVs<3fvw at 2 z^+PAgmAbA9PY(vPwVG|7JITGMSDy>^iuuvbBDC$I7x2yf5uAg6 at 5#U1)=0LJ8q|J!zC~L8=7DFAq73TG@{Z5FQyk at W zw!MGsxb at Bt9)I?^f&YFi{F$ThqOJ7Wp9w|$TWKO->PE|0-Yv^p{x09W?fJ8vdrp9d zOzLRK1&hij?IZ7VR-bDBm0P`ogsZ)=fz9{x7y^l at ds&K8Gm1$J}Vu3<{}{vl{G&WwDg^BH=5<-9>Q6Eu>1 z@`-k1848%kVPjsMeQvok9`aY5zZ=T(W!>=Gw95OQ%fn9V_xX1FTHg4(1k?r((=F02 z5)2*FPG;a1pZ&1#KCquP_5TMZK80^t#92Y}C!2~po zVYlbqbofuEWPk`WrWHFsCg-(~vECw;vu{ImVaym}XSj>l7F`egqwLPfz1tef}n1 zE~uGW8y--9%4xS1!{J$c^Yz!cuxmmG<>G=iGJ_vHmp9ilbP;r2Ud`y(RFUm!y!+0h z=ngjGY)Gd9`AiT5*c1d+Y%jF23b$Z#v=Eja!0E4k{$Xryw6jB*TTTIpPigC)K7SRz z`|4SYY1ec3azlqp-pOM-tjegsrwy$&SJT6vI_SsF=>Aqe?(OVEm(G~Fszn=b_sE0x zZUc2xL7C1K`9SVAvayZcXiTT^xYvs(4m}?o!~jrTA0EfA?(N10 at crFEEB^bRe;mJh za5s9Ct9vz%clI~qA;5aG-vPX;qem&XRXW~k42QxH?czXmieN!(ONa$!wtZ_X@{x_m zfE*VM3f^gW&!DT0xN5q?d4uxy(J{I3h~It6>%ubUUb}#<*KFkT0sI&s z2mMYj2K~+4I>`NATRhX*kOq=G)WJL3bQ+v at i=4~LVp|?`I&q{cr_ at +J-zkr>EUW8p z!|M0#`+w#rdGljILs~>!rDyPvE|1&yZwJ!#Y#BsK5lU(7e{8bP}JUEY(|p35WC<5{tqc!iy~m($fuk85-E zpLJCN!=#U}{?1_glLZg2F>F^P?(k5~VUn2`k4t*q4n5``e+W>n$b)7H%ayI1-G-w; z(geXHMpjX=cfO>8%}}9|AiW-G{C%H%CTM*ZKBRF_7+u*%T)~(w*fxe3YN<%kuU;P# zzI=LsJLYAJ&d3q<^<1p#v{q%zA;ZlgL at a#`f1oF*Il~{A1eVq?ytfCgS2DN0Aw7+h zAk#UV8XUbO+1MzHLI^`Jd=BwLlMNjuuB+Qkx?v~vNrIWSju#ru++lFRwPm@=IgnYe zfL{l=UHGz&v2?Y!-k{_QWp#^~5#@AMR?p#k-4A*JTqanZ)ny%&kRNVRe~ zivRon_5T#_KfV(WcQ at jLckai#j~)Pq>M_{p$44K17}X}7=|MM|-G0>Q*i`^ojwEEA zqC3=yh!Da5Y(a$qD1TpR0I47AC=Z`ekJ)K3 at Z0#=##eEiL#t<}4Ug|^?G*FGSHU)G z=c-2=*?=CWv-HqE9pbi;8{cU=O3`WOXhj9R=c2O&5WMfs6FK>xXHHjX5#I#>8or$S z3-1Lz>QCh@^%L^__K^P7k>&iMGwBnxjg=SUjOM) z82O?u%cH<7>On`!8VUB~ul69p96?}|vX{W2sN)0}&{Kj8LpkrSj8n!d0iWeDEw3}p zRWJ?D#`Q=#Im$AYX?fQ;+Go!`&HJ~?^!9pH&nb%p&r9q|2INA0YX>2rTqcYyf(AR- zIvcd-?v3lzDz})?6XWD>t%A!X73bVGd*Jpe6Tx$>8Q0gh)SCy*dZcn54S>ll zH~iX$t4!S*!WEcP@*ZIgC(xt9TtH7k5$HBQ_nA{*1bq&9YHalos1$QzKeSj-hXNBg zlD2!fO`yk+hMf3rE-Zj{&Xry&xB2k5w0ckByl??X#XaZX4|FsE4gIzrD9R@$L(hW~`~{@m6R5=1ofm#lsQfESKy=f#vU0F}iPx^Yfmhy!xsu%$4XG)%W z4;5L5D4Tjb6mqJ#?ry+ETA>~EESnU`_7+h zlCFE-3H%22O73&G*KNdp58eR+`?ZL6&ZjCAf*^FA>J&WdEo_pWtGt~)@c8~7My?;b zfR3G3BR1>R*rZ+uNi&dFKq_oRa90c-4A~`1WM2D-1mH ztBp>U>BZq$ZXmsm{Hhyre at It+pPa{qVCs_2z+x?)9{~Vgoy9SoFNd-9I@&^R0NSps z at 3-M`tDc_2ckkYbJpe z9PNQd86ZA<1Fe(T+-%48UO(;w2Dk2P#Ci+8)2+qHd>sGgvp>YY{)gYi)6qqoBkO;7 z_B_5hKFPVa7jW=mS&0+$$;ghH^Ye;kp8u(mi at CE1UP^&yZ&E(wE2mW$yk3RkWokx4 z#XsY at GP;E>%CD+G$8_er at S+oO^j{)>!+Xult z7t`V3nKrEoQ- at CAo6~R99d<|@)^jM{`m|_i*|L1A>pXpH48L>SzE at s*{zt+Ort|&7 zwq#iG>O0q~-|1~x at wPlCe~U`VfP at m?P_$)#3$V)PKNQr38Hi^n0i07m)EQ1Qa`YgF zd69X6TE;Q1nQ#>9qe#n+wqP#-8E4~X+C0m+J~MsN^I3iY34P##yWFvXcuJT-ktu_} z%V))uuYxCz*5ruI>Roa#;_!zUtN>DxR{1++gR{YvyLNgL8>lpilymi<({p+Rv12*x zy8?a6shtS7V$T-FOWxdvDQ}Ws88F%$3AHTgW zI{$CezV&`7BSk*&WL5q$?%Q|#OZxe>I(w9SD+u(&wV@!XxJ&%CfAP~_+~oWwK?F?E zsOXu~c+2QDD#yv=xuppdXp}VG9h8fPw at 61ofUuyr+vMTu-vP$ZA(mX33y4r?#w2B|(+Fe-*r7VhyDv-7RQx_}WSLdM3`ubHsZN^EhWq?}%PUx#0FQdNrjxc?lnK zOBDqVqrXm^4$rz&Qtl6k!Z(`Uhb8&hfU514GUWmFZ+c-UaUjyYiud zF|sG^%FtYy%e!`ZZuC-K`*}Hp6-DkR^5)Pe069geyKRRPVmCXz9Jbk{7vB{qUIDEW zl;}0Pj14ejw~dl%^#HW%IfrzF!Jk8qGSlkza+BX720%}$0JJV(5CFlaF-F{BF_laK zEDJjI%9+O;d9l~;YH1Bb0iFxMq&(X=Jp5k|q5x3uo^w#!Ai5r)aNry^0GtazI^1)0 zxSa^=#LkOvI|S at xeO>Aa)S zVt=C_d$jd68s}m(i+-mYgTbJvyX7oC`}#{j`rWt(2z1`hXU~q}3(~!C${)14;q`(# z9wSkcwRT+AyWDF;mom00^XN7)4%3U2OXup2(Mv<}sW#iu-`YiHXRsPWgFMsv!|4;_1qQ?%u_&hF&cW-Mm?(FTx0NI!<0I-z7j_d*Q@#5v1?7-HVJ=z3q2|4kr zIm=@D+(z}U>qstn_d at rIn9Vho>rH*>N0rISenS03fwVf04$(8QtxADYzS{ga% z;3y>Z+d~j32(lfe$)+tPJ!Wc9nXZm94Uf0!8TZyXkMCTs&OdV8PV2{vC z at +j$7zKvseOBb)$fiFY8ckA7M>{D(Y4$YSNsxQ4x5XW_45oOUT|CO#(cccf2v-eAy zia5o&OjFyDhdN_Lqvc2-i5|%9!#FID&vHH;A?upo#dIyJsz~#8eg at Mi-}9X-+F8EK zZ|{5UQF284TpseyJuuT|6W5S*@LQGVb3g0oy$rl#sdD5EI;2H?>2aH;^0&E~W_iye zufZ01U at vsGl<(axqrCUpa(QHGt9mWZ9^!>^apT)}q0e(cANra&hLV;tpL}PPRQWs0 zzv4p?R{5`^#z2F;iDdr>r79uVheuAEz=_ak at LH!r|a;Q`dsA+69u1o)}YT7u5K6Outwo!@jZD{1h4g$uF(KSD8CDU(FJ*4 zzym!bPA(r4 at d99TFqy?`jPT)zUi^5HUPmj at 3GoZ~KSG%bfNn@<4TIpoY8!gi0jb+t z9gI;ux5628TG4m!LWfNN6bhE*cB>eNvKJ^~(Ltl(s!^0H23o#3Bxu8PC^5G`cR{)#6UMqfbcRN15zY`zd9mKoa&3Ld`kB7*vE7K__%zmO_ZP?Uvj at AehYi`OUd6pmHSYE3Y^j9+hqbk(`Dw(1jX~U1?!ZIa zux1Atvoq`Bk=YbOLThRF$zzxLa{s`}b(|d^#^rbveg<+topk`d&UY3l+fH@{Jvt`j z1qib3!;dfPUJeF8=b-llYqte-a9hFqkDo<_ zO8n at _2l4BVei>Wsjkq{IjTs#)b(K18I2y;qPPN{7+9M(oZDc9+6J>TjbSiqvtuA$O z%{4NJG^Ff*=OE2Ic=zpL9D;^riH>q3f4_i}8&D&o2JxgLIPU(SPFbgX>K7Lo8tCpN zFn4svIhA&f)VGD*SehDX_2=O^r=~!&LEy2<8QQ%lXe>kV;1AWy at Prf5Mp4AC%1!YK27II`h(w1Jg at 6nkLKPfc6dNU($Kd0l+H13L8fL5t^ddl%bB zP9I2V;XsFGT at bYAa;2<4DM?XFnz$gt;+`}YbQST6G8C-vUCYTCo at L1RnQ}fWpSw?A zF<+18X2jv|+ac!+uHu-1G&;2Hwf79=^Gt7bZ$&W-D#|N=lIC0dgE;;p9`RFt|1bab z|L#VH=0Xq~BQFcWT=_ZS-U!9zK6GOgYVM~-oF>Ad2hgFmK0RfbmDYfG_S5vl zq2kpAE%S387`@XO&jf{T2%U=pC|nXuh3I|EPr#t3TvQ_HQJK2RuZzNTdyFQDs%(3% z;8dAWpc+OFktJ0a16}#`1UGdBbZLlG6%7QufiaUY4s*|-$1gq*0|O~gbhsAgL9JVN zP at n_{**hVQ3e$814_$zXtDBuK=5KYCd{lvz!Vhuq696`vr=xC5}z at D4Dd_JXJxj5xeQqxyNZ6M*Ci z!14&=bTJ<1(2BkGt$siD0US+0{>8;bdbb?<*Q2I)?P5O3y0C$)*^n+q at pykfKDd7` zSAwo#q?e at U5GTz)Ix1r71w at o-oneGrnRPWQK>NV2X;6PQP**W4k(N7$4~Za{k>3Jn z-SK)w-BPFrxYNs75yVg at eg#X{z56NVoK)`7yz{*@YO6Zd^CeI%R;FW+rjstR%%vH2bpue-VmEKapvlO^0 z_+&WAxtp#=bzYN7JUa-aFNkuQ1j3$mTA5Aa{)4-5)9J=Dz~(V^;)c_%++HWGT{;*J zWmaz%G

Js|GO!{fMte=aQe)#H2d-sS*6bQ5*J+yH>R1%KH}3BBVxw~tzkcUVYyhCT&{?By^l(3aeGp&0d>QBT+)knU z at q;_ at -~HxixqsiQqqF$p>GPc1=t|<(jG%`sOfB&o1K5&NiKrYrtzS z{^l1S$K$N$0NoSYrU)0fZUx4-}UI68b4PaZys58inXd9TEq*C%m0yojU8DRl+N zTC3C6FXLpsmZKU8-cbnst?e|<^PGP;6$KYMGuxXhvX=>_l!x@{aL>bbU~skMZG)ah z&o+{6j{)#-xd_3f{N9Oqh z=VC+mBCf~nYmYL$^0sLh1YcZ0K&dmn_qoV8 zJjhe|&W|0A#*}&A27hSpw97h6e3syk`w0{HU6!g204$G^evk56y1XvwOBy-Kd43M* z`#jS${Z(1Zdj^l&&&z8M0bueA{giU1vw(9kufOPMc-D at ZcWGZ!rr?|UE`RfmHs-dh z8uVb6?-)GZ(z)VM>c?Aj7NMwz@*R(i!~HU at 28`yMze~QB!L-Z!85LSQEOmM9q1_Rh zmdEWh4CXHn3|@P$h3-+|<}*B^}U2tT2!$0054wd|l<4 zs}(7oo7LKDniHw)0p-m?IpV*wL@~mikydn0Q!zS<|Ke1AhPMmA3ts8b~pKr;VMRycd{SK zeYZbx<7y|2JO9EJ%vQOe+PQHWfvcMu*MeNYHFTfN#xZoYFGLA8yPZbV>KKy!P{tc z!|%j8Uu}$m)kaFYY_+rFRAH)o%P=a5cR(&e?N|pli~d z0S-riA&12L?3$bN-r3&Deb)qK?zg7*BR^9{8QquB;q&5aF at RqhLKS20%3QaXagW7K zK=y!l2I=J^G#uWgVe`CQy^cZSIyN!pdiu6_ajUr=8~pClQ}IhMb;{yObeEGL5|m9j zu#-^qaMu7uZlr5Ht5B{}ZjgypaK56=*;;mrfS&Lvbupv-mjHF=HsvS&xbGKQMs#SL z|CFoqsCT!Yae+w(L)9eT8uwe&%Rn&R?Id_~4(>T%&9A$7b{JAQb$CYwq7fbf=-tz5 zg3Rb$al08oaNRk0oX;J)AC8bI6e8f>wuEViZe*LdE>5ydlNBtW+>{+Ho?qlSI=`UJ zBiEflT#={r2tph}|BHwBsbttIlZm*YwLF&)f(-d^cL&=m;k2cYt-jp zE7qE=I40dnt(A*e2DL^suV&Gj52KAnA!byUGwL|v0U-K=cixGet(^pnbL6Mrsl~%h zeSW91KLR2#Sh(H{N10vj2 at k#kKetEY+y{GsbxIm;KMup0G`Jt zH0Iua$e at crTwGFL&?%zsXLabNye-Q1pt}|y at 7CkzyRGJB`modLvMEqsDJT)>t;Fc; zG+w=a6=UTDx?HTIN9?Ot&*IbP-^4L|`sVOuH2TfB`*1gY^1*}n={xu04t$v%K8KIv z_^WsJa zkgn&};O-B44V}V}^SAB1Kxb-HJ6r}848NP`5xf0rNav^0wdIi=T=fFw;!k@~shB1m zI`q>T!R?3CcR6WaPcinQScpO%q at 919HI_MrX7$`$vvC;sT|r*Uqcm!s%i#OveUIDM z|2anqSbi)xBIUUR72kheKGSG>_Ruh^lZ)@fI$8#2EsqEB4dr{D|FOfxd|AfT`(^AE zenIvC_41P6{GT9ETac at O^)wMm+RMZA%HYs_roW=cU|9r!hO~{h?w9A=#s+a?~0*9+-zNefj$ECcc$8B{ka$n&KqO*cF53P(AkO~67Ufr8tnxXMg!3dmfv zqQXtk1HkXJJ27Z?lkSs?VR|QXkp{s@)(N-~z9pce3Qx8=o!II3NEbk at hY-31lJ4=C zn?qyZs?cDbZdU8}gPp^;M_INp&KrYn47zOqpWa*Nr at 3{Fp%~V6l+Eu8-(Z*x>!j&0 ztrO-4015C$Q9kmQ=WDhm;#UBo9rDiLaGf4vBIz*}eCqMaW%j(E3n6R>Jj+JFwMwd` zw-tWnr^9SaDlVSob86djsQ~QY%%ID*F}!p#JHUA~M%s{fvT+`uz`#kz%F~tfL4ODE z;lc?!3wq_|yyuogc2*WQ)i at f@<2B&z6cG3Nc*;Z8Uwz(bWs!^A@*ask?XSLsMW+x~=@|$=c z at Uz+0vqr}febH#PV|#Zewg6OJ+SYoPciL`1 at xn4a|Y#gO)O84KFLcz7OHXNS?f8pp#h at MfUxoDQC!dHq|O2Eqfwllp2Q{c;^yRGCkZ)t z{pMAEvQFdW=Ja1vkKY`;iRXuJ;@|xH|2e*V`c<^)c&Q)i at N|G2^`ZZ6s}?`Kw+nEc zLQPLE#X92!n*WBt+*U!Vu*#Ms$T zz6To{sb2*wKDRyO9&rLgbviWX=fsc!J4+5Vs&{jHBV^CH$#&=q?*u{l<1Z)S6Xb1n zwt4pUKt6Mb%e1rwypxA=iC#4bOp^v5QKr%Wmgn*)frj_h=lRtCz8`+%P)GRg4+nLg z{6HoMX&-I{llAPgGFX-bJMxIKYm4MZ9 at 6T2zR!KnKXj1ow`9XZL7nk=Bk9d~zvjo; z?Oh6hMJ}YDwE4_H+_ZDtH%{q2GiZnXZT)%}w+yAX*hP`WT+n*nzfE(3H1k{CE5rAX zf)~mHaaU}3n+7_D9|_=mS50YZEfDqs72XIa4L;1X0$vWJ}>F?xje{})23(} zv=ys7{g?Ur+?R=y^c44td;H7y3cHf`INr**?{eg|<&@7{+nLI1ljhxQ2Rtw9;r6vO zd+m|+cAL-8>wbmu$Nc3%nSQ>{b;=yiGdlm}dmQEU`n~(_ev(6XFlvO6m=b?nxsDTh z=SQ<~oNMqgj5U-V(LhAb>2jV|B%sUrX&BIJn5~Dz{m?X0%e87;0dibn>l`~h8z<+( z1X-;{GkQ)c$N0Pd)<~}tiMRDAao-K0Z!VYN_e%#T_bvjq)#=3s*STz+xWc^#3eFXV z>uVZV44wuJVG at WbR1O`sputbp=?c%@0JK&~Pw>YLFibjVQ z*Bh0bu)hvXGeF7J^&H_wQYIL`;$6L+F0gRF!trR5p2ns| zcxx8}0gp!u3?gO4fV%*s-D?8oT`dZrL{8e!>2 at l84EjJr2~Ab<<7ezpPtHel0zTD+ z0A584Bi;tIt`W!m`1*SPcxQu#xM4Z~WIZFfNX2 at BzYf!%Lc3D~R0c?1g7yjk@)B@$ zsMeFfG`!Z-m at F>Utsa()Y+T_o#$z~)?seMi<~SPpO9v;Sli*KkyLDe=uYroqC_&Z#`maC+jfOc2a9-NPnGt#6! zPma&x4_|y0|I?>m#OG(jIJ&OKi_=LQyg7 at -SO87ifDd9a$I($Qlmi7BP0B_&p=^`( zu!jsa;pr7^QLycoI!4pW_`5%R7OzkJ{NQ;EwzhHubcgs|wdeGW7VXt}Xq`@jasm(m zkf+DT at gM&7e~u6D+>IyAwRpc3 at z?kI>8*PI&IU3<#|-&vBIi0Q^#tG0_HO8W+}Q!} zQRXAS(wEP_i5{JYH>am at G=wjmjc9J}=FswVcm@#Qy?Q&=0iItWCvU(C%Z~4E>lxQD!dbPNxSF_gve^_ at s1rfI~v2doS#x_ z$Qf^rmvoj;X2<9 at R~SD;4&Ox%7`9)1Q8H8%Y8|ecc&$AmvUee zko5+7VIA2 at Bgk((7rewh7YI7^Xs1hE#BHrRdMOd8yFeoYcH+vG# zib<+Okhk<&LsQX=vjyf~cG6a7ZmJv$154Z0`0;2Jq}AWIgS3>-`KPfYnS9Nl at g?|I zz9QJxYbxNS(IYF|{H&=9fO26dXGc{o(ZPbfIrr?GI0C3%Hb>JnA3Fx+9*X88jU`|z!K>ge z at 2$$fWuBdKRxs9cQHo;c1 at 9?$fGf)92%$lTiBqd`<8^IFmb!Sa{1c$&H--(gJ%bcG z(uCx#WUENOl>6-5K&zpKjQCq!mvul?X>dz6`Q1bwk1s_<}Vk at ws zEjfaFJFHjx+n)$>{D}XILaXkatg8o4vz0{h-zA3i1_hR`4v3@$xnGpZ-#wpXobUNi#gT*(7uv{uE$1*PB=%}_Tib|Ssi`Zp z<^)!hm+`JKuDSUmd0Z1GhsiJ~u0r&1dkno?GYoz%dI01}(w%)sK}Q)O z)D3tduW8=!qXv*2=jOIk;uzl{dWFQ5&Tg-gJs}$(0;Zyn-Vg5Fk6*m|PV5bOxytwQ zdY19)7>^#{PEhW|_D)TZ?bazYWYY9=fG*}JypSqs8Vm7U{kMd_mlzK{5M3wBlV1~1 zQhZMtQ9}M)M3JAN1Kj(i6$>I*b&(Ll6BPi+#r!f(E+z at ok#OqUg+?wIqA at uavCRk~cfFi+8rS z<3m7%L!=I!>pkxE`Y4XI7}7Dg0Pu`3{ttJzqKlI5ZF3%MLPI@<=Oe%$KpO&_i`J*3 z;jn3sy33W)6uwTq`|aG_9`|9 at HqTv1)FW;ex%CSc>r~1yc?`$Hc=_@-evK at -Tk=Xghv(uNRLt{6085;eEZ#%3ux9 zkJh05F1S~;(borW;`PZJ__u@}Kpt&&IGV at jUpi~#d)lQ?cMnF)meNF*nN6F zkJppy_~PIszHuv>*)q-%_{mM3wo-|wPoKy07teF(cxz`6efah0y?66l#rw{~(}-f! zc)hlWHl44V^=6z*0afEl98Lk0fT`)lY1~Cqe!N+W|KqRUj}Ld-05aM!0A~+y z^JJ?RAMJ0)ll`r at x4%QDs-IrXe!CI>{1-oq|LUh7#D^Q*cz3r)egIS29-00oZ!zkc!lXPw;s9Dm{bKajj4A|IgL)kv~OOFP! zm&z46EY7zAZME=P)4pw}v>|1sIDdPcr at XYCdQ}_(mGWHPC)MvB`JxxACteE(yv($V zG*dVF+h?9vp|C@|0uOI{0Lx^(PW?w&Zr?A@p at oa=qAFXkb9sm?As^-3dJl^eb_ti}Vr at AiSKNU~jL at o>^8g|J<6S1K`Px za8-~za|LTh(1vom*Y8J<*qs{?w=__bqy&$eRI*054+%ATGS at jgc6@%8%5k&N2I#e; zM^C&(nQM|toGxYWxk)O$y(Wg;&(t~Op$F5gX5^0NcrqumzFTq}Y z?Gl~>A_0Leeku0fgKutM16_h|KUMeo_&lc9>v37@#PN6;Z$_8YX*GtE1@*d&3+HGp zR3JOQ)6Ein|s`--p4u=-t&qfGs#7PMmPjwn*e8UnrD8u9PFRh}+V8 zCa;whwFynW3hnL%=={(IhOLH7x!q11Fx8+V;OgG)U=UsSdt==J)aJw+(-wlZuvK4= z2LSy?-F7_g_tGo3Mt$8}`3XR0snY4-+$W!h0HBZV?8e<*Gwu&M at sLi!eR#Ts{I)2w zpKaS1v|~YAYlF=9k>Ooratp<_@*n!0!Q;{v*W_xd27otz+l zwe*q=(KAlB*c^1}Y%Jmnp1&F+IK4+PTHlNF7{r^4S)7e8Vz*O?fAV-c{^s4?`04%4 z*rHkP4e0D`HmS4q*y~nex9cYudA(hYCl7Xz0XkOAN__05&Kva at +)UzLuST6T=m63d znq2_&68hi7;o(tkr?rWW`R(8Sf8*%+m(d3}|LUht;@7`?KlXP!QESi{P2FKn9^D52 zzCJpMF}&Y?_$WsvzWC;wILk#vP1 at Ze&QDL$le|es!mp}~dFB>4n=RxHK>A>_k6d81 zFG0M5LS(x^Cv1Q$*%5JJpB>N+de1Gb^x`#~g2LHtW*mlJE at w0yI)ub&BF8yIOx5Z! z)Z at H{o~&KdX}YGK zr}?d-ny2^Ow^fkn at 8lP>n at 73GB^O0_-&{C51a3U56kn0gv*9GO) zlW7$}URz%4qKuezl)S*2KvTX+o*oJG4f&R76*fp)!;kL-J1~0m5>uHjzrD_^{NuOl z1LTEA@Oz=78I-UcLX551x)SZh>6fJot`!AiG&hNAFBuVCcF at y(~qm$U)0Q>^bdL4ji8-qi=xsXBC?R+O!0qg%M z1iS#!Wp7FOP>JaYkmKcNYuXLKZL^b&_vYp@`I_^JOq1ts#OyGKjkgV0I-88+#lbP< zo?+OkF`ff}1%8~LA06_15f>ok8TEM$IJl7XpR&tsFrZsw;9Nha9k at FdlAqv6Id!X| z)}S9v6!OeY4aRy3DF4$JU&iR-G&bs$`00Z?@#`m#<0p6b;?c&S*m$}N*oMJtE`!D> zx5&#?rtfTR$9n+4%@zi^dJ_#4W{)dht5`&2Rq@|L#Bho;G(CQ-@~Je**Id5AH_;uzWbYi06kF at y9RUpi5eD zHoS^IefC+LoxKLc?Zp4~XHVe&M)L1+G0DzhpElBzmoAP8=T51+X3>Lh-ChS!?jol3 zT%c6D9>v;h9BpJXKY>P>M$qu|@HlyNhw|@1M{{-&j{*4q)yMD0fA^bT#AEWjoT5h- z at DyPC{Ka8ZdRuXJQ_tbw{=@fUM(6L}|NalqJffYtWtHCQCHkft at 9b~K_2 at iaeetK5 zp1z?Tujn*HJfySmi03_rY3JiynY at LZZNdBX*(Cbt^#_AqZiK!ZpG6IwcAwvO=%n-z zohHV+iZQAa&*>{JuJY?SE{t1`yV`{GW)R_a z_|D-y^oVy6-?wKkY|9D$%H!7Mw}-JfR%xekCSSFYze~Do+tQ^+-?(Y72|27P2$9~^ zaof;(zohy0Z_kF at pr7~x28YlK9KbW;_~%q6 at 8$0-5YLI1AcOZ(m)$zv(htp^%T>Vg zx+q6c9s!`EBzAsF`bxSzZr>~EEqUSZ+hx4{T-{+P{ylS*_QgFv^XpKn`+ly~`#J3ZW(uYg zRITXwe(<R^ zdIf1Kd0+CnNZ&cQ#Uh?EjqjIby?OWjPjW?x#9%mUFvjo34p63jg1gvX&)pC~W2SMX z5&#SC0p};0THI^HR4G z{PFqgcyV at -`@=b3=L9fxI2y$fM(Y3o;fiX at l-sG01~rsIrkh+43It0J*>Fm|ao_nq z_6VyqgftBBEB6(IHuu=u$vyP?(XZ1PSd3$%P5IW{m{@}keZ+O>SGD7CVqd__y%aFg zS0HomKfns|1#g9i#5G?4ayC$|T?Au&PXHKxlUWcZXwx98=qeV&d}!p(0r9)Lxw*0m z4LO*OXK^}&7Z|y7-kV-S#f?&0hXxuBW%fJM_MhC|#}0$4)U@?nJ7dExg>s>7A_}rc zMM6im62pWzI=HQ$0uWCyq)v(T-YR|D*(cg3Y++^E-vEf at oB6z+UePQ zO_}fQZl;_#ye0qr?y%pH7K~rcuh1WK-fA7{_$tn6Gb&0w!Ch*nski# zWrJ<&O+X@@JAwK60?60y7ISX}8_2LD0B3XrU0u5%-zDYlBGVebQ#ulMSsvYek8(T! zAdlkYVniE4m(YH@@|e1)(h0lZ{@?xEzss-0OlixnzWE&RbsP_O`|)Vo&oDaOqe5rI zt*nTIyxZe;Yl at s_3~#QhO at Q$X+GwX3GeOZd>2CwL#>j=b>y%F78y67Se$hjB at 7<#l zHi)(1S^W3E_-Xv}kDkQOwtLZ-z}w+4M+|0 at IRN+|j+UMHdWxPno5!ao0Px8&{sCb8 zoN_*T^dLTb_i+pWbsN=X{QCX- at h^Y#^Z0PD6NBYAc5BP{@Znb6 at 7LqWW-C6pw+&$5 ziF<=?Y}0wTL)b+2_mQU$wl?BtbW9%hTCq$0Jl-0_Up%-MzuvzaKiS-j4|liY=YZ#* zLHm7p-O>?&47L#y>py2)YvgD$H}Fl(gr>03<$aW30pvUr(m=tR?+?8aJ5661xS2r^ zCfGBMbDQ#+M?Uvl{LG{Loq zuW8B?olFKhI0l_FbK0F>+{#e^Xet+iN^>rzlV<5Oq>@JOk*45JyRDNzTcSNnP at 4b` zzH_#2+~y`hF?J_G(&|1j^1fxx`u(wBU2(P!-UfNH;*0fF{$-tI at Ru@DgtBh(ndi5` z`YQlnI?wW4l(np%{NmUT9LD##ZA6<=)Rk$e!?nW&FVll*{8dOwR&vOHvEJT)4*&=u z7$m)0`H_4KfZKbBaL-Xvx?MGf4tI&7l}sx at Z$Jx%xv+n_BvxEUaW(NZvoB2Y+!odsD-5OWEb^fN&k zoh#mROBsKU00=oD)=D65eno=!jpr`?E`rcIY1VFh4Hwhfc;S#Uc?$g8 at cI&k4!5(1 zlKWx_9QhN(=DcR&x%En79RQslsK3O}y5M22uNT!7zAbpsfG4f!QRey$U>2jbxTf3A z`wd9+BkIkX$_rygBN(C>o}OI90p*xbk=NwmNA~rEO{p(GwUrxoTYnTHR{+D0bVtKu z!L*Ab+ywYyUH~FjXu7Ge3J;tKKpn>3W-spFy&Jn2CKnBKo5eOQ4huSe%x~)Y87w`8 ze!9$!p;IA}kKb at EWETpMAJ_z+oZPKvS4C1Zw5H%6nSu2gMAHa6PA{D#hqhRp&SUzwCI at Ivo* ztxlcLKF$FopMU*T9336z$M7EjqPBaTcy#|x+}|Fgu^l)Ju16Tdc{3Zw^G?2 at INMfKh<0 at R1X=D$he5wVSa0lT z&|a^6ca3)i%rK<7s?&2ob~JmGaXl_8F8**&&6`{m4%gum9W~Om<8%R#Jq4VY&e72c zou5hklxUr9cyC5~ zJv=-F5T3;rAn?KdUTke_=1TL?#W0SKkBI7I=t-^umM+WbD1svoen#^6HT>^w#>YST zi at 5XPQM7p9DHX1SzZhNQaC~||(N%UL9`5hQqy62uYa7|=#+^MnM}Tn`u?&&dS0|Hr zeKDnThB3$J&FP3tGOXo3g_E at gz<3rXfZgYBj^huXeV%h#JAFTuw}^FkeSr!(ri^Fs zermfy&epExQKJL);Z83%!QNcIM6PDY{0v at C=;*@QYA;?dYVkk*?cc?}{ro9)K8lxT z;{x!ad+l_0sH6?r at P5w?(%U&yeSf1D4|lfX!QI_>=kY`M(avcgTdw#fXzVXh8h&Q7 zM`z{U_D(#356+MD3rzQS;m6*c*yZ}c)=q4~+wERA?rv|!gT39{`|u8c@&4`>;Q0#u z-=IzfFoG=G8Nx-Iv<=$1Qa7s<(u=~mJk;-Y9Lj4$wo>D-4vl#pt9#$Ry*g~fJ}blb zf3HG<0?r8@;9nYkT37; z4yESe3^H-S#1%AJK at M~IaeqJ3?Yx0bqZ9p354DG3hRHfKbmi(f%Yq8x_`Aly=V#&s z1Dy3Pbb7t$qCDCtsn;*xRnYsLtC`;4}j6P_IGrs~M?eIXkJ} z$?YQMS{ftCz(CX*NsE=ClJe74)wLzTRn9jk)kfT*m;Yp^Pj9{%JFPW<)f%+WGpeXy zD>1 at AFPvMqc9mY&jZO^%ue}5q0lNJ#{i};bygna88~j6|yHDCBG}Kz%^rSiG3^u^4 zb<+2%81D5aSOBogL%k4`yWD5a)!7b@=|z?L7KXG>kAK7AN$M4q0B=z|>uxe!q~X44 z8oUg~8b3bEtA at IAw zNZTW%z7$}+el9E!@LkbE6!1A;&=tQO$`>dNhqN{^GTp7+xL${!ynij);f&>m$Ml>V z4hPOs(FuC(w79a at x}*uEyk=>$U8o?GW#==JpN&+PEOL+7aR82>&BY{B0GZy{1w5Wp ze>62)Rf12t^SOPCK+QVQTfDuulkz?ST#V1pqlIGF18nbNh}%%mt5>*0Lx+J*iE_=gio(TABMiuVy&mU~Z~!2FjeH0MUL0TK^nlZ|QOuCz8GIi* zN6U7K3|`e*F|X9)Q12JX&917*Idv)Cj7DyI@{%Wen9j$v at m%SZiAe0X;!c6eupHte^Z8-UwJWtj_JHUKqM zp1nCbpq*k!ZZI~ZVT=iSA1)^Ic>3yf-2dPwqrG^{?~VQjhAZOD`8)s$PXdh4MY=8dzdAxk}oF`ZD!NdLdtDioJZq0eJ z%V>6~Bj|fGnZ~f*iTeJd_|tQ at jX8}Ga$!fR)#=9m-X2Pux_|X5X6MIrPSZ8R?mgn$n5?{VLhK4tsPvXVV1v;k_BO2<&&MFPrFUFir-E!wF zr(YaioW|?3lQ(T39N$a6bj(k5>mDN^U&4(3x{mmu!;b<)8h z9gg<+yS!J%Gc0MV- at o>GdC*kSb1q*}{}XJR@~q^c9!Kji0XcMA&fJ2IKjVorl8-$1 zoia#{L0%ZIAWvT3k_Z1GgUU_T$Dax2;kkU at Ylo9P!~)5KTlJWAr>xvMr|e)~(t)Dk zCLQf#R=H_Ox4&2Sbwv2El#y at qqE3_~($kiexJV~edG>zkJjr*z6EbULyT0*>tL&WA z+iEvZAT8SCdM>6I&c`VJZW<0hE9Ja2y&1`L3!q{qG3V8c>CNiV$xpM9vS{83oyW%~ zRO~XQvss*>V9$mZxn0K@%HjkiG8 at tBM+o$!p|25K$mTugjjT~fS3e3m^&q*`iQoqW zft`f`DE%C2MA~-jgQ=#NPp`f#y^>}(bir1$j=w8oxb9!-X z%nqHqLOAyV1c>N?^fOrQtLIl!97fY)TSxi&?$N~+qD06qdzI}XaK3w3h)6=Y&DolvLMc=Y6PRP|8F zFTmA&Hc7+h{(w{o{31{O+_J%rhl@{|C=~N38k7yGP}vUaw*6U?s z(_^h?*o~4C00P$B5+{{Cz#7sLfNE&%ytvZc{VJUlubW;^x!;iO3hJP*R)PP5mh1pj zbB{9jIQiTrT1i7vN{x^yoBoA(|9I;(L`=Vw}>Q&(%o0s7{vXV2o*%a<`ZJI-kszxnvRs4XsHK*!MzCR~cv z)^@aa at 5L9dFXDgvSAPqD>c%hr^4D?i at uTcu2*%gY#jn2lGS)ArvEAvQZEn(2+Ud~= zp-#>~dnW+kZ{D0x{*$<=p<8L+hpx1yOivFlV!lROp$@Cm>5Df<3GV7$z3r9w^2Lkz z!`Dya&6%L at 9G#-u7$zZ;0*V=(&6HhaxXb&wD2(@%-vl7Yx_YoeJyhzg)Z4bhLRTQn z$Uv@)MF-hV4cyK1_m6UjIIn-;IX71qKYaLDaAjV(npdN4pcQAEL$?*rG};9{c|Tt+ zru*DJQlIcV;}Ku`VY$kX<>Po8#|BRsj9Y>R9=wg`k?$rrLT^HkhwmC!KI&=8`EY~; z9Xum}jAy!e at Vn%384{5F*!|VDU(zV)GMI-Bpfbn_ at 0Fp9XTAn$HvQY>F3W1!;ZAnI zbLf|#arU`R0KM=6r7WxWR^{}$G|F4Ch$&l#rsG-YV>XyRkjkNKeNS1vPR% zGz__O`mQkwL(=t=ReI>`kGaXN*i|9Ixl>q#Sa!`kjk) z?53{>gp*?h6x|LWitEA%aSsSD`)c(WVt zZ+COPjl-mVOy2a|SFJ-ne)>uQJf$~%GP=faIOK*QtX#&1-}3D=qmO}U^W}OR zTsPu>_z$1Qr-#F6Zf+F~WipCgdh^{@H)=Nkh_z|%qvyQBEj at tnx2^XMz9?uTc!lbY zuZOev!|S8?^7taoFjNbK$CZKmZqiJ>?9 at BCNT3Z%rM2CXWI#e7VJ4!!`jk=84WshiZ&(}a$(`C=%q0U)`zAB}|Msl#h1)WDN3 zX}LFB4;eGfDzcWvBS1*I_$b=_bYU$RUnuvEde7l_;v|M z90IB?Ft~a#nt);#GU>IltvKh&4XIr%P6-qEI_Fd#=uOvWC_r|j>wTw2&^9zWIT at Pv zWJ6XSH9CGNL>bhBncplXA3HI&IfwQaYqj+3`X!JPIxJ7$9LGxl;1wLrZDXdhc>LgQ zJh-!GYfPCQW1#0t0r)lTY!Xl0V{&^lwyD2ut3bLFeNsV00r6#u3i}C!N7g>WS*j3?nc?H at J|AvLGKWme}jmkSl=Q2JZSi0$4W z_0GxhG4cn9rJlE}19&_dpCcnzxd`m^;E;~*b&O8m#4msHelDu|@^`y?vlJK+JbcggqRx;e8dTae1SUaf8h+ at c0hvH{ z`pe-}+nZ)ly=}Z45m4XLHciuDo~5z1z1p$KcS*;iG{S|97C^{0EI-mFn%?S}@8suB zNz|lBLJb^1|82l}7y!M at v9`Ab;ye#6BK-J^+ za{-|5lr)#&yJ-|5d4B8cVZQ#BFJ(R@|FoYYI&ekIA}v$(Y#n&+ptC)w!PU9Qw>*l) zWY#sbYsY=g+27WWbw?4iK5w6m=h at M!vOMNj)?d=XJ?pD1tM|XpC$Ws_l)v*HzpV$) z^3M1fNYkU_XU4 at Y<$(_HFyGtf3HH9szf8aQT{vr`=i7VV9=>l_uIm5C>TP|nz5fYz z7T{xo7FuS~&@X4Xhu;_i5}hY~4zG%+op)F4*>wZh85le-s=&kn}4Gg9WMH+y%PJR_&o1XfXfDXo4i6Uyxke*(d0KDkcX!t22 z($;nC9HHTCjG^HBdH at gTllp*$|;ekSYl9GiiDzockq}*A#e;lFij`^3=+rvWE-5w|f;s zjM-czw1%mMhweSLzK%je$!ctg7GsR`!4O4?VeDg^{IL7l5ON>gUu9 zO=!vCUqTv5>QoQzg(fJ zc{Wg-x|5uvxulb!?71(Vo&;*C at LUth%|5MT8*>VeGyq=hxh5F3YT=z5kXP3z4`U}Iz`|kaS{im%_xjIa&Z_6&YRR*Co0Woo}Rcz3E32h7VccG6PwkLq( zESPk~+~MgdN_IW>jqIZ=cQ-dF|GnI@D00aRRvuY>4 zIvU2GUcNyuP`AA%##IBkq`GOxb>vZfKoN7;N8 at aLrV_8F=gp1Dt%+P@)vRT_+^3N; zyXTr<+!Vyqg%E4Uw-ZU~V%u_xCd&X?O9)8hOp&os;qR at 9ZMy)HgDG zJRHRs+TA&3OxvzEy1dguKlS0!EZ&@5#Q7ZEM_JvQbL0^6#WW7j)K^FzZDY6BiC at 0^ zIDYfdhq=wqjl8AZ3JFx)Q`j|G&|+(SDDEH=bdiWYGXC-xKZm!=c=h at XvT_zjwAU9$M*zZ6%9B$vUc7#dF{a&X9FX50og`P#zXniV z(nc=MkK*vn^EiC{JkID)E%da*e}#1juN>iVf!yKAQGE6EX?*kYWw?3wg`4$GSKBmE z_7TD5ggK8J+U?979s~NQA8n1s%)`+KfkPV4m7($|jaFW#6w!u^qkdT3r!{3;PD9T< zSAV;**mkVZ*M%Y=Fr2#j+yk|b}%6#+&7P_tgfu*r6 ze_N&{{PFN!2`I|oUT~)Cu$|{za7ewB at 2M({XFh4fSLx>*GOwZE=N at IeGHrut8qZM1 zE6Y)orHJD*=@n2LN?OY at -G1Nq-hw#jEU!x*-9BzVF94lDV!z{fwrsiDH*KR-6!d#| zPMc4jRB*sA&R#1w#U{|&4--X`z|VZX`fWUAO5H9UnStqYzdSO3c}&@F zmq$9jUq*FPd3aw0lw~9&ZlauJ*|Tm5cD&0tP7TP>O!Yr;^8V^vG$uC19U=1;i%!%KA9?k75u2IOBD1d7~ngGPFF*qbB_}l3B zvvD>Bi7gr_^w~4hNKh*NVM#G!_5c?sD~CwaV}Y at Aa=e?Cx`;&2qu&g*H|r3W#&Qo( zB}me!I0UVsb{mx3-i5dZS37RB8?ou|on8;Xpc@!hp;G{M?(i_6)-5;$udQke!D&)_ z4B`T#4G>h}<+qSEF5GiLMgainP0#?Ghqx{P6dYuOaBdmEjdHy>pTy~Oo?q!`c2H&t z?vmc&3?K-wamYv6emitYB2*(~lsyy*S{Hyh7qe90g*=^&$FWX2J&gD^eAofh?ohT3 z>SMsY4u;nuR_EI}aofEQojYgsjW4HhHXX+)9Rr8)$JCwkU at or~DcrVD8=#HHIhyMz zSHC at r`A7LXY^>L+k_$H!$Ub!%(3cx~(g<=}0_xSgY#hppKZ->iKJ(hfg}hPM9n!hN zP&OLt7{0xD_tCxB9(1XbSuCK_=H`12?+E_mQ>Qm at tXF=eXdP}DP zd8-(ff&k*cG16~9oInAZ;NJ}Tr_dzu%f%Fw%K3)MNz3U5yIXOW4%0SmWJ_q_0L zXj6L~uDgIkhhZ#$- at bLV@ddOVEUWSLXc>R^;w1jzg({my-CM}jw9gt@}`aaAS>z)d6cr7l>{%59OShE9k!JvZT1AP`WgT?uQlQi zFOTE1qj8);<-znS{`mYLjwhGV-MJfk51#-o=l~ra#(uv8fW3(qpMM%>uU^MFK*(>| z?rjd at XLonw{XN=y%;S1|k)s!Fbj9AIM>%TX5cSs9M)c7g&O@}_ZPDS_*%?Hy+sgUE z(_D#+97FgvV007xVrcbxG{`1xW)epL!PC(+_e>lUe at PoxW~{$W(tNVB8SmZM&o789 z2zo%AKO4xz{2EzbbB^{Vil02^*YR&Z{W2D{CLLb at 7@*6!yg&WuC&JwW2a2lwOj^fIUkug at RhaRJlsw2GR(a}45T!mLp3jY^zV&{}7T4cD zGJomgl_I0*1GEG&TkUQRUpTDV z7u3*DYy=|JT(0iRCJ3YK`Q2bR3r`3YV2xU^ROD1pdce2`^IaO=Y_xLjTEE**pw)sM z?m(ZPf}uiftOX(_q*6fXaaJ6&QDx;`!513`j0dQy1Zvz)reUC*tEkW}0k8rWm%!&1 z87M73AD3U7NLrj=YPtwN>FU+9+yaOl6zL`gL$8|OMAhr3r!EzYw9&J%XYIax?u6f> zQ99>PZ;)R at nWNZ8DCiufLu>h^3hy}w&%Fo*c=iOc*8)B6qMzUN6&zIcvQ~(@mXpR` z(sOs%uik)1Dp*-SJ+v|Q+G0JovL%Ns1hfQ_O%X^XL%r4kdCu9q1dzJ=7+W57%JIOV zKk8$Ty6}6Z?mOo`bDKQ?VZRj{7(u at zAPCe;r-#h%D~@L497=TSmT!A63Om24A4R~` zweAs at 9$#ePhWs7&8AJP&;C<(PIz;QIef;bXB}rM){;MEVnl>2~fM7k#1xQ}g%#x2o zwa%a0*xX2Cge{9pz^Pv;@DpxMQWh{)*BsiUjsOhGnhTxU7_)5`HIW~Q29liH>f|Tm za$X#OSslSoC_?!-d;@TW2uO#53U%p1kDG8s@}- at gtcMki0+^ePD%Ro1D5cuw`A z{E%v73KoKKEHIDVBd?AOA-C>fDA>_2k|c4q4e0gM+oSyZk{y8>{Hzg2dG#wKu0+4i z`Eg6`Uq%f++|UtnVTwTDQlm}%pH1lWwEOW0Aama at WHfCD&_n6;nk$!np~KFRb0iC; zOPQf&0#WDG-6^R4tAlfZ*C8Di@@#gZyV@}Na(GY->7!FFmuqo+GLPfK37wFL*(L3w z*^D!U`}`V!v)+m|-n}8u8)WV3ijEKEbcDiT`D!X_+thV#>a1tnuYJ5eo0Ioh{Qm3L z@!6~6csT at A*yfPAF~I2P=pYVXK8=TaoAD0d#;Fp&_~?Up2XN;coBduZ9`&m6WYCBQ zguDG_etl;H;P&*@^EfzpLz`aYt_PcbWdSYe7b?1c_uiiu(nQm?E7DV at m;J#;?A_T-S|-B_^gTKc+1f!TJlNWdCwn{b;p6-9^AFyQ zUy{bh at 4OrD-G3DC+OAlFs3hG!p at SVd(;K at eBA>cwI7kZBNQhN9j7?D0=t47KA z>W~~lUBydB0?GT_eg-0z_uO7YkGfNS-qNJv;Sd05XWn{H((V=MXCBf+D1nS|NCN~nT8d6+QHJzbuJSJPynXF^w`nS`4f$+Elh+30 zNVBqG at LpNgG8DRAy&ojD&E;={@2e8bFY{XEDSb{|kbcun8lgLB=9~xj%|{PgnYU##j_2F=N}k?6{GIm+ z$yd+NvKrf!XgUtQqpqU7~V-*D6B)yEY`~gcC()7+ at aCkF%fV3LOSA%bLS|@q{Q_0B# zE1LT%--`Q at x#I6)jv{fBZ|V!WciLQ&e-~ijiai%3IDA|OAqoUq+)wW?Opr!_$2#}i z^Rd|!eic1vzX at uC6!_SPE*NGpL2aQ@~b4e#2pH{iV6G at 5IXNn z8F4k6Ja8D$#T4b#1lgS1vQSRHK$DwB14i7xtp$+NYqS_oVu2B at 04AN=RLs4Bzr;(~ zBVFavhNoY$Wu*gf>|!{-(M3ekrDs_%FJSg72K=Dh^)y<>$>D6lB5`H_8|QNhc;$hs zhn)*0uvBc;c<08B48NWG=%&z+p6z1ddjJRLx20scDwMqP`^6}yT&x3+peEYzS+8t* zWV0;^Jm(l~Km9f$YuW~RyDbeBm7g+G-d#K--{#2qLQidWJ=`Lw8h`iOFT%wY4|V|o z06<b6c%GkWyIiivNAG?R9|8h) z={!8x-T+K(VrY7_;aZF)@M{d%9$w`J-e=U^AI?Yd4~L_8F-2aG9Y0B_^wS)2YC;!2 z^^`&QAsDs2tyf!=YlHgialH}4%UZk{lOF13NSi&OT_0SW#ee+cKcsi+dVU^H?rg^U z_Xc_X`G at bu&PF$m4&KBjy^u%Et9W;_9`En>;+ zD=tPez}GCdX?pqQh_($NUZ?X1u+i&viOz8 at snaK3yaYhHTK425=fr8m-D|K$Ij?8q z+ at fV00Q$i at kF&0yLC at i690$<9wzV5al>a4y`PpzB|3F9ZYk2mII)64tf6>OyZA;Ys zcrlHQ-JP5g^T#i~iZ7o%i$-rF-ke{+#BS_8em9!^tvJ4L5f;E7p8xjupT at n%??kIN z$f00|!#C)d8|DDn27uEMj{!Dei?jxGBI|Te+?nVK;C%xv14Qi(aqd&cJKbJ%X}f-k z(#0Q6TXE+C`oS at QSFW~pk4nECKc$X`*K|r6b}f)4fe-cO-mOkAa(aN?leb=rq9tWW zZwBuOCIoQB2J_y_yLqj{BEbUf*v~ggQyBz?8B=}3SudfB1T*kFSJZ0DNGDe&^DhB} zG-^wrA{#LO1Y<>hb`aI&dgn?TSqv|GF5{S%d8^~hFYQT at RF>bfdc2sEY+9s&%-HeE zuPt#d0j_%94k;^n~36=;YShyW- zA9 at SZ{z14;v^eT?JMW(J9V4!um*=*l7Ik$Krlpd_qkpy{VPypN# zCBH(p3NDr{!Jpu1k>`4 at g2?40;qQldCmQD=(-FUcNO2W{~4$B4i=%f_PO>nHn&D^?rvNKKtnn!w6==iro1pb< zd{)VLGzz!>kR5_DCrPIQpsWsWx-qRA(B}3a2&CJ$Oi{34f-Hmcxb*fpXG^c1OfNqF z;w4H0FzSr{)j%P2A;^=G?wFZ3aZY3Yv^uXPmTCgI=U5V at B5PNX6Fu<^zHXs+u3vqI* z0c1eM;t+`|U{i5&uMT~=Z;|<;Tpg~QFC6OT43KiO-lL0AuD%>`KZm8WQNw>5JD^f! zU2OYOoE`FYqHeLdt7W1*);A?oIapuj=*nX^jJDqGT(}3C9$p)U at lxSi$K)s6%g+u? zN4crB9&Bl`3m~l|0sSgMfI9%qVVV4F9A$L=;sr9~(A5P1cezIWz$zEjxK)x$LD}&W zg-$;Z{Gk=nqqiiuu)?`kZYVAIKgHN<{A?%=B|Gd}%=dG6xUbjZjT*wtH=oJTl-Ss(u<0KSciO<*W3VKD at V=-mE5s zS_kIo?V8m>Ye0Ro at g*@<5~z8mlD_F}t! z6V01xOim8s`PZLiC+NWd0JhVP`R4~IOXZSh73f@}z4bN#$lLodJ)g#J|Kaoa z`V_$3--!OkRy4XB0Gvv0O#b at th&FT;ckk at Rpw~^EA{}lhuko={x!GyPNB8f>uYdMo z{L^3kBJS>NqLXIvr?0+_FJHcf{`HswC|?1vzBwMo!R#u&JUWfP|KeHv`%gcQ-+%Qq zUL3)v8SRPlDPZmhJ#|d}&ySAcr5;FRzDmdM4ef0yXrm+gn)_do$B+)g91wd9;Cu1> zMS3gGj}PPE#q;#ER?y9(!^7MY)ZGQvY=28S8ZOir(sqZF^z1vr;+~CesPEijH}hW7 zPV6kWy8K``j8DIL9$!$u&N~#?zM+2o%F5w*2)!57GJ1J7d%NhtHmv97wkO8JvmuS{ zt!qb^v{@Qn?q=N7541JGlG6^F$fvr>ku2|}(N`l7Pkmz?y}j;RtM^ZP;K-Jr#>`KX zK~E0Rp?_=_-`Yg=p#ZR;MF5o^IzkC5JeP;%DZOX;F7cEN)taQ>55P0J)FU+f)eseqcENNcFE6;{0dhGk4=5`#*UOq1mpXGrbD4z(7jaLH4 z+ab$c{x0*9R?^q*3!bw4-sfJHV?{^Wq1Ew2=_6`+-*CHJUK=d`?fc(zh5!TDU!k-Z4RuK3Ipim)uj11ylkzy_kBwa{e3dBM}+jy$UNB zv-MgFp4a0{58%Zx_nA|n_ArKiIYXe}98~A!IbmP#oIFw{XUmmgFi$H3cmT&zanRCG z%E&F}{InnURP=4~Rbe{pFVIpLQODU>l}po{&BokungMjzU5Q%7cmvW9(;EPpWS4`)-luHUOqc18mq%;p4?G4S% zF2+&oP^RrpexFtzoX|clVDxA{$tfENw9KKGes|)J$09sy8X7TF$ zJdPIA^q8F?H)G0mG4>m``3088 zTb+2&Z)Iodl1{3_xfkPQ9FNd at YsxG-a8Y=u&nd^BzJ3*-o?gW1BI4=uH~F1vS6{zA zJf_1qj=Ot1 at lXHiSMl*j?<1b_>js at zjr(`@C{s5E=!OS_X8h#Aop_fpr6cm?^XK_h zlhb7-J(-I&zrZq%L%(ah<_hWc7+%a{Hlj|bhzdQ-c1thYooH_E#x;iQCGG0v*+ty6 z=oIkmDg3^He|r5+F2*q$k7Ei*bbeuzcDpy|N1yi|>^kRfC$_uwxVzDd$9voH?*3kU z{J|3he}*iO=gllGD_2o#H^{FWovqDiZUZo({W)#nDV at 55#XRQ7 at s#>`L!Mu~IYjn~ z1t2I}fOIQ6fzDUVum2#ydayN?rGZK#MM&dBoAbDB+)CqBUONQp#|yL%+KJLrrfsle znxEMtP63uyhw1an&S%-#S68V2mAy;!^+M1`J5~R96kZnIB9w>v)dhnnrA*uO(rYE% zKD0c(zbcdW>>Oxs%im5>@$9=348 at s>be9a zJWCHIv}BoX1%bEc5}1_tm+-;h;rnIqDC@~IGoHHF_gDAS>$X>3NT-3<6e9zKqZ14I zoNt(QW7&E&0!BZ6fy zo^@50tK9CTxGw6m`28*4%X1#+HuK@>4?e$rudJ_(&+jr1dAPpa+yBHNSJxXkNgq9& zTU|KEN5gdn*twwh>NXQ2feg>n(7`O{mYq8h8zFZ1%Q=2sdc|!D?KeG_v;)61fCfh> zc*ouj at u+>6+s*lfdL145I4A83&dw`xb(&jljOdvPM%-RT!{gTi1foL}{?K`22~Ght z#MKM2ySp13gN+104r}$OY`?E7K;&n1yB%ouGgK<%X6)_kB=~TSpWx||^k%auz>oAX z@@E){YYez^eAX$e;3N0Zq6d9OkNccBU6iQ%;0Y*gF1a8^j~)EG0bjSWHL zt^LN-q~f3|3MVAsKwh*k#JLHw1oJ|E1%;IL(p|eEkhE&99>6FM9C85>C};v#`yURA zt2j!pS1#Cr28Sz0^Cb!yV>_ONUomi1wtLd~zCCd#rRud52-PUB4bS52lMb ztjilfqyWaf<%EuUFa at YNphJ0z?^Qa#Y(QG=X!ZKofL?YiPBlinUcWY2ISUU~K zm2*rB4*=|;P9Pipx}A*kCZQ7=98Ps8_L?%z0N86NOHe#?A?&;_U&~40?N%oR-{G75 zjGzqZ80^txo^$w0 zV4tdtIH)DL5?27x5qX at GzjMUWJM0S>aQO#eIrYNt-#X;&P`3{R!3~n?SO(5+hR{NA zoZnfk+K~_f(}@9?b(+u)h*M at SkWD|6cLpeV_0lbHF5~Ho7xDb)fVQ}n3duRREx@>+ zmfGLn%}&_kBLs0}4;5Z$0OFPLcLpbmJ!lmAkp~$ohlW+1ZSH zckZNj at 9_9I7d^~%6?QjbQSZc?(@}i&_1A#DBj^BZ+}qFjht2+W)OYShbFh^_T!a2( zXFuM(|1dXkS83$}9auAkzh}tq^OIqG^ZIohoSnrfzrQ#jH5#sp{Wcin_jXTR=IeZxuejfZp{50U%blC?Ck*d-C4nHTDCSf z<0n7)D1P~?UtrK0xj4?xHad^*$&)9sx#2<+tB$%$p3 at m7t#f$cqO?~4&2RKJ(w5JW z4}G>50OaE-9lS9*lD0iZPu);|>$JiC?tV0T19Xu4%g(cdPlHF+X{&+(<)3pJKSF8X z1tZqKDpNyW2JboRWI)~7cGB^n0Z$O1S5NTg)FmMTdPHEOqeI=IQeGVbE%k#QY*!*r z(fxXA%)dsOX(+XIq^sA8jFaXx=F;Xh`l2+hzUSd at 7e*Mzd1;nF{qLxm;4+6t`O7pc zlXQAECfDX?(6euvJ{J at ve~4EGAwd3vpVDWC)8GQUT+Bfn0a*#`)UAdky1(@9mB6pO zCn(f2XmA^tGOw~+`t+jZ5U4M!v!Ky!=5!LJx7B#)%ko_h-?N+s z at 0HgjPxQQ*ZhBC$n<+1p)p_08l1A1&@=X2tO>*^-`w9DX9DmEtq at UncS;bz8B>*Ii z)jRDD>8!wBiwj~tAJh5!lZF$zQk$X~dhC95YT#z>Bw?RH}e#dXermtKbp z6mW;2EVPrB2LO#e at 7JJXJ_DFe$5bBR0wixa4vtR%kBg`Sob*h&58(!YpobF3txx!E zqdgp+Cctd=+F4FNkL2PI<7YW+YzVRQ#N6M|&4EYIx1<5t3+XmG8Q(<*R~RAWg1CaS zoAi!sb`hraqR|cM(aR4fg7>lb+s)$aC!CZehmJ?kd5rMMjW=;-sqt0`|<46Hz;syA%N-G at kRXp*{c|W%v&3~36dZ7Tj59F^)TAt zhrGnBlmvsIpYYVGa#o#&j048*D5%u%vH9r8@&hcLRjc>>tfgVgM7 z0)m>zRW$*q-aj|t9U>Rby}Wy8i+ZLm0TQaJT#-(lxD83pJ46=zgcpURkr&&K*g%yp zKP#pDH3C`s02%uF*zV-nJ zyADm=EMn6|7s$R1Uk{w+;B`c-Q1;H(yn*+YDZlIjUz~600wleY2qH~tE!%2-sf3Qw z)NO_^(o+D;F<}3ac5*TtXWQQ1-A4ZU04q01Z^gZSGcL}K;|!ynoj>xL(r(Bq=k{*7 zPaa@$hGEx(zD5VdIdRQSHTJhQq6J<0PSg)yeDgd#hFfB+3ToGhq;(U zkE4QknVo#sqTgJkS5sgzrVPiUdK`{#;&)#^kKcXzY21IX6CeNN!{`BIr-0%= ze03O4X&a5LPQ3r_!+3WWML)iX7W~(%_NUK2kN at HS`TvT}{=--T&@ZW{kAMF2_;3ID zKaJ7h%lP;I?|+qBx4fpj>)p+0Zfw&&0pj#H*6Qsz9ZsT!-cpV_ZGigrX1w!YAD(yP znhyEG{Y(K^|M8Ds$LrGzfH9IuInlBw(TK<^HY+#SM+YPS^R64lpv+?`_lO(Q~vhJJwU= zCp+&m5iY8lP%b{|6%8>RA z-j?zFJwxyNu68T8k%6w%F+L}Z+)LK7k#E{pcwkWX`@VHUWnAyyzAk}}bL9PPoyn8r`K`le29J_9Gq|?pxm6I{;-!@muWsYKTP}-!m;73vBh1oOB*=PCT{Z zoB3-m{bZi`D~JB}unyN-yN^E6 at J(q%W5R?+;qeYsoe%;yHOz@#0wRfR{kcl0PldHnq(@+4QklCY9u=UtjcIQQ^xN-t4#!m$! zs1-D?BS5u=L)YYupj9>C at MTJRdSCUy(Hvz_R=NV`oVu&UG#4}|uF9fw3I!n=eTO~$ zT8s0YMx#l3d)%H!bgvNW!p=HCFs(oLD|5JVNTbu+o2#EmH&-*mAIp_{6WY)KM4nI2 z&JZx`)ACt~)*t_%L$BYU0Vo5Iv}`%Ky3`U z=PJC<`KJcbw%6{kY_8JMi;8SHS0*l)cK{wfrCP7dd=2Unx8f at 2paX+#Cf zuC5%?xQ|Xx;_&bogFB)um&tDpmYtuDpW$lVmyhtApF<|g^pp!GbydiD)E zVGSP#iMzi=D at T6x}`LP3ZpU%q%@4So5-QF_LeHu`j2 z8>!Q78r|4?@Fea(eiCnvPUGvZp8)_JacIQo>^y3nZhEIw)|Z#ln2v_=`XylZtIy)= zufA3SbDpw#$VEX{=)fE5Oz*L6YmDqQk&OzvXmo}w9v{W4!&mVd19k{4Z)o4&ym}o6 z=uO*!3)PN??pruYPu`brj^nF0C-LRMNjyIt=GQ__X*6ealExT>BY*4hqrS6~I$P%G z!jSS#k%!!*n!Lw?2FfwFJtIR1F|^Z$pfiUIG}+MWgntj)nR at r_{(R`fV$nn4MY6p( zg=o-rmx6Yd`AB1sY5sE^)#Np4VFKFA{nHn;aYnt z4cZrVupUGmG~UyTsHaa`np>)nT1me&B%kwHp|6szRml6qHIFhRot$qUmZ`j7KJ$0l zDCn2&^xSeTs-(+jhAcB@^D6VdO^3mnNI*`|ikwXO5TNCuA&RgI_LPw z?`t~c$`#k*A at d##db!80AiLbQPGG-5yMJ{5er%)1yhp`Q&yM;5IFToZkzMDYbA^O+ zK~gS`)w_tiCeP8+IlTeU>9q at 6e4a809r94#={Rs9mLp(}aJh!U_ at 15KWjjj`VEd!L zzLA*3=2fW{GCH>7Pv}5jqkhG3F#!aFeVvKA+*tP&kFRooe$Ei zlmU=j%|s7rHpPf8W0MNq=?;oHVZ7%TNt~aku$4U!8;f4HHI$03efPFgA>4z(do=ns zmFU+C7W9~}=xN#$%+e$;(eXIT!0ChVj!^FHmZe90Ffp=Ju^GqR`djHV-ytW8AqTqqQi8qhX+vR%DR_M%7!1803nCt>h#9_D#(Mq z{kVgX?EyMpVlV{Jeof>Vfcf`dK8ths-tG^g!*i;t=$Q#L$wM%sm#)sqlJ$+1)nfLsE2qJBLp%oU$@U=?f;$F at SJewO$s7 zz at 7UiFO^Swbxt3!v!vYix*g~f)Ly2idf#sWQ)ap at yy4(FG*${PMYcIb2-?ba5Di(N at aaPy4$OT?XpB=0v%A|$dUcoOxvcvfYfC53O3d>H-UBMx;A>gY5${e0p zT+QMFU@=3sl#|Qrb>#jc>(rH|&gpe-+^MUbP^5bEjsX>}X0F1sFP^=Kmq&-Wn)&|z zUi{+GyRk!=tCMkTZ?vPk*^LpMmxF@?_zsYmUdI%O8wh3x{`-yJd6l+6z0B+V`2YR>^Z5N2uVS#d7axE0ac*0r9Tk^ZM&ej2r_ zY5dhs-;KxJdYnIh8I}23?B9PJvt}>;?Z5jsaeeYKe)IE>a)|ZQ7l-k;UjdRPSFw5T zNzNVm;K6Q8{N^pXq0;Wf)6;Q$@%(jc4z^=9x}XhQ#zW}*`FoGzMpOwY~W~K?iL>kAh#nvHj{@OQTCUa|;fB+fh}9 zX>PPD?1ws$xZF;erD3ju@?02rBskAG%!TZzhm>twfWPhN*!JzPxYGWfpTCb0G__yKcd-iI at 8P0LX?M~ry=anb$FA5;eNEb?tC96s${*s|hJ9ZU>ft>P?`5E~ zWWHs5uQPqi$srA!A#HoR*%- zZl~*W)6DsG+&6fr%WmhF2l?HOQ$9D8_dLotnZ9+zb%Ijr*76(5@?{`S$?q~qb9op? z`|aVg^0<9%os_ at Jbj$n=Ix##emj>fYgM2q{>&QA$ex*;oD8J_GCke-N%;jfJ8KR8| z!fMzT(}d$Wmsy*kGr{)YKAJvq;gq^`MlYv>J}~VwI*8`Ky}g}$Rv-FKep8;qwzNej zT)K{qj%eTGoSUf3Nuxoas^ciVa{#p*y`(IDxyLdXC*@YmgI+K{ZJ+JIYw=CCRgUBx z?NQpY?Q!_7&plhlwRrazh1&(jz75H6i1v&!a1Se^YKU#3g_6L)(*v$o3U{JuI1G at R zF#FqgZP*B8x at pNU4~%dwM+ZCz$ov#a66|xbOt(JibZM||O6 at i@4i~Fj6g1}#zp~kv_nVslKRj(z#g at rQSj&2Oq_!#n7IZBIL9zO zy%4Uz%0GqD;muSC!x>Usn}^01Z#ppm at 6-h>skIP2RQ^v9lEGQP)X8B zqjNb03A^xbr`L%pvSJ3jnaU#<8@v(St6X@~>#*1>JfVjhCKBz at 0!=j;p`~-`RWQNIsFKc{}8$chk8sT|kHQU!eHT zhSPZZ<|uY|_v8M~7V;*Tx6RTf0k`?dKj?Ks^2rsTkbH7pBl+7Q8Feo5E<6DB#OcKPY36Xu5`}#DhP(j* zJplIf+P(MQ#B6*TcelFn{?2yn(3#tBZ^WIu_ep0GUw!t+SU)?A5ANTI-JP9yc|MNc z9iGJjWqa>uzl=GZ821izp5)2Jd0e3nztICoyg{WK=ahAHegtQh@%a8u{FA@@1SuM>#cTfk#sVoz_Qa8C(%n1N+ zLPz*)GKvGP$H at M4W@oOSM#wrH0s7Ui&hPXa>}f2N3DPKsIlZ=R_{==4XJtLV@?=NY z_DS0+jlKVW2mEPcvNh4pm3PkCmuyD>R?|-pg>p^V)${4ihekam0>1Rr(ANBtkH7VR z2=Fwz(qd;#TI_%eU?gNC>)ci9G|GrckB^y#b^ z^80=$O8zYXlo#c*ET?UnGN~i8T|el&gZuQ zV5XZDP`qoElt&rIBcGWzhxJ_EFVlD%7d>Kr%8NWVWEqGf4W3P>^!}CMHV9O2mFauj zzV;|-De3Wen?DC6ynQAuW$?MRu%H8=zOo$h*u!T at A2KE$DELnChIoI7X-$9H?3el9fe9c`BFz$rG1>4Lo0V~@_atJF=) z#iEu(KAL9}9bj8hubvO-eCy;{@gk>X5YM at d%Bb>TC#csOWO=-2`#eMUD1&e+W!SQN z-*d`z^maZW#Uwm)w`T^C#Wnw7VBl6ZOoza7RSh5}Cvc*0a&ZI9xk5P${*n@<*aR at - z8Yn$_ei14v4k&Y at 133c*VXumn6wgTsHW+O%isMD`RojGN$6 z;L at h?xB3`rzkYD(u6usbgQ7uSmG}HgM^EDhU`r1nM&Rzo29=4ibTuV(Ix$!;;!N)# z^tpR~f3T^F;p&719EKy)8qZ2h}o zu?@++v&64rsd} zUZgzb&>MVPN6u^Tx=p?I1$OkzbTmuX3T#06 at 02v4bqPV;_KWcXJT686CyZS#&O^(OpcU1%RtB=}62j z=uiyv`@(%_6X0#bdpkb^ddh>Xjd=d at S-b=^U0+<}qLAIqt$1;85MLdh#G={)RQ2Kl z0O*z|=MDwGI!;hK1w^Xg>j2pg at 88Qk317Z2~o zFW!F?t+mTIdGS>&0D~K~o7g}__K}sXP92$yc=6^{E~a?&@y}v#|DE`Pj^z|XU{C*$ zPUp$lMQ+O6?e}sDi3<|ke-KkdTgI>>^UgtbORjFWp9=i^`~;u|KvKuqkQ%)KD0+5|s7tXjy(47&ycJ8>lC9EM|>IcURQYr8+L-8MnK#E}8d at Sfe zFRC}SH>;o_cBQCB(l+HVZd-7SK5(&zUp1Pe^QGzh{5(Cb4w0&pwO4+(d5(_Olb7B$ z(sTNXKt!X z^V?87=OMa?>s62h<9^FGgIthrN<#6xyp{&jGry8XLymT&K8CZaYtMp%JbTZyO=9Hmq7i%gjewZNbB|vFLMT(Ohn)C8vnxh}v_GlNsv+&0eklDl=lTOCq8aMOBh?tcQelffwvUdv&R^6Y&Q zurkfSMq%ZxX{1&lqNpgWiM0apc|eHs-CT*cOJ=(Olx-A^L!oZ)TIZ!YLes>6_fTRT zh^m+#l~SRC1dL-EwJTvYp6BCX&KEidY3Jt9RL}(GsF*J4NxA}O(C^0m-JRH at hu8q* zEY3~<5A_&e0I+v}5kMSyaiT)!(cRsQQ-=4S%V|+I%9Ra*bAFit!c=hX z8|UVfxqS%FRFL at v4)`cf-RICAokOs7`09RvezMOA-ffJ59wmqG{HCzw6VUkGPSaB$ zrYLG^Kio at AZ=tK5$0I?uc at funJ(GD(;MUvdeqMfpY;2>T4#omW-m~{X>xO>72W2a~ zyM at wm{$Zh9icoAEZjVs9?RB9fln;R!#<_z572v`ug1zG;k#_)A#zo2K5!M^r5uA~J zn{?Z}kaHfaD_$z+yO at W7vroEh5)uIB{*Z)Xo{ZoNwBZ5*-xbG0U0C7e-=${0yPOMk4)vM$s)07zU zFE&+OwPg;Kf%Vb>c&h+h>27BW@)g2ZcO^d5)~^=;818X)fs0cF#_Nq3R@?CpuTSIi z!%>`ER^sKwEdJr^7x5*a&`+A}(2+VnJ5|I1E?e==llS8OgGXr)t}x7-w7V_x-Up!U z_W|&L3gN1Ig6hq8)j3)!S2=GX>s{z~Yoc6PySWi(=coCZ$TjF5*rw?OT+FZI>ywN4 z`e+>0&R+cS%h&Pw*U#ewg}k=09lbmE0W$44J3EVYWd48iSAQ9g0YtA~yo!UPbC-T5 zyCwinb=uaJ^9|RL{c*}sA05)5lM=kUoQ=Z`o41Lxjb3q2&M%%nk5_LF&}E%?veAx@ z?(N2h at 7#~gETn8>yc=zPZOY~7Yx*Pr65c#Wv!}ucr_2gwP8&pDleKS3Tpctd?5 zFhGAH#|}aJ%vIoS-O-^fI`2s%r{;8Ok-9eN!8oQZplr_j(u?EvPkOpFyn+j9Ej*k6 zMr294a_9|y*;z90vdt{fIhNJ4@=+e at Y=8T%`I(L&+;j}uMRlJ?3G~vV#5;m058o}p z8k|V*lbl%H<3F0QHlRr7ZT{RdenH`P58q2rMclN_=BIsG-Ouyt_y3=?|Jt%FNzybi zF?u*LZsshA2g^uOSyObn(F62g7A`QafOo(v#2p?77q|j0uof29nx3vzB&#YbGb4jK zH*R+LIY#k)vd=cR at Qlm?8rxib at 3XgZ6&3kaR8_P9ck_74IOl%uyYe!=(v|UgnP0CG ze0ujP>nI)1mhS%bZh8VXuQJX1X&Z0WDe=7PGB41o^<*8pL~B)L30Oh^Xh4_0 at Z{A0 z2s(E2L~&j(?MBw+%a_Q667Z==GLOPHpKW)KHod}+z}%1t(5bOh8bB*)tC;@eaxg7@ zIIxh8G-|DqM*yi(rO6=EOS(L!e+lrMK~$5N;1GE>a0U=sax+L at EMp&ouB}gHrj{78 zj)_Mr5jy)o%2n#X{CY37dn4q9d{3<5wYRsI+HnU>)}?h?YMV3ca(DL&I~-9`HFhl; zfz-+dUUC;A6_rBX#=+$_b_%W^cZNB!E_1;nA!ty5pg*g)9hln&iEkljJaTNE4&5Td z?%Hh-R%9yhX(AZbsjx1BLh~(7b2P0ah_nV^Q;5+d2{hG0xfoVrRt2w-)w5AApW6tW z2QcdnRd&lrc$2t1UWA%qpUNE zqp;Q9Pik@~yNj;JFcRw_&3ZstIVDI#dfe7Bl%j^p-Nj41Q?R-|QBCK9YY~yYE2;#j zr^2WToq_*zR7LtW5J9*Q%;Zl5pKB?(95u?Y^h+hg0(o%iSa6$D+Qh#A at J($Y at 0J0^ zRo4xfmH?_+7v>Jy;^6Z8l1)S@=M*JR<7Y+ZGN4IGM(VcuwGv83=)czvO zykFlE2cvg4$3Xq$9OgpU;v8V}E#NLjXLc}2+I&>Z8}viwV*#PFs1^z^rpCi*WwpX; z;sjxCR?sN&0`CNeTD8A|1{|qP5Z>02$E2yjYYIf`Y_OC&QOPDnINW$^7g?j22}8rYU2tlW*(aMa|Ml)jEZC?9*x-&%pSv z#+UJOcpa}tx3S;n`LGwSkIrGN!dUVIJv%+?8O%@Ke?J!+tMPU{;3yd@=S^2m1}evp`VPWadvzhE$Zc`AG{x)e6vqK|NihW zUY#68Z`O}x@^Zb{jAuvv`1MQP)2AoYuba`P!)eR_!fS0n=wKYL&Ij>tFZbj5IdoQA zi$_mBiU0Ule;vyg#1m5nYD>BC(84wJk}n%UUgi4Wd;N}s<;fT{VP zDd4p at HynNkU8wOnI6i>aF>tYe0eB#~q$~TUrY|&xuN_MVd-nf46IJddJ=*ELq+JJn zNwtt8;nP?%epCCz`wY*OvIs$1oTlNdNU?xDO}fw*<%`OrG}#5;H?GvQ(Qcl0;Tp&) zG^pU$B$qVql}y4Lb7(|91sJrY3-Ns~AJYjc z)zZjSijyx2O=78$N*PM|?0+TT$*R!J3mK{vhwZn{e5 at m2d5U-cY4ipih1z8?*!|a{dqd6!7bC* z&)i?$^;1eZ<;2{7d8j}EXo|1}EfnE>HjUDi at 5+0|XI$0+_2evwb?Sh$s9WR|ZA15C zP+e&8iZ!b640wMIp3N?$N)tV_oBq?(9q}bC*ly_rw6y;mJm#z*-^)RS_ktD$sL(2R z*YQe+Y6<=Aafs5Bn!_AW0n`MTB|TXeIanaQtWRa2?JsSY)vW#kJipjKmO5eHK;Wf0mpKxyA!VPmZ$^5~L7N z)vEs5b@$Wi*GjN at ZgL$~os8->0e)_7sPHX!dn$m)fTmiU>J(7fnKhW&MnLSq_}1Hu zi0w2q#)I9RaA$5>bVnFe7^S8;3>cKBf at q>;duKaG?J_4|c^b^!hGBSM`34W at 4o-BI z4x)F>m|#)$d7)Cj5TsJyYEw18lk531*Z7B462#!ts0q3pAUF-HR!Q?Mf(p7Dd4hg; z8cl{V8V{f$%0f9kF0C%e23Tr(Cu1hxj^b_*R)x{)LN$LmMYvLD;?PyvZ4uhE3S}*M zItd_U5uxHhs91-jD>SffFp=hqDSPNAnZ3KzucN2Re=v$3v~zrN4E>B5;52dvs2e|) zt~8%R$6aZpaH&=St$;M`u{nL87U0QoGK8`|s9%=|xLel}2#z5f>X2F>P1%#0JxB}x z6b{!WJEty7u1*@1e(~&CeEaQpsg-vP;Qs5^vAw+sSb74zUI8EvV at 4ku zK*!$#B%d9f#qse#NdzBRq1`N>COuZNPkD@>$Jz-pI`q}eon3%TC0?9pK7}@|Z^ixu zkTRIW$*>nA%DB|(rp-Bl{?QxKZ at B?rG0p)n8somMHe>(nB)Jmx0VeoS&Qn%x>W+?v%gH z%{D6x0Nfz9P^rgCcP-9u0DbuT`|no4)h0Ief8b9aS8xCKJUYe-0}P> zdXrhKGFX20>Q$b+adOtnI?%qV)0+;$JXY at b^ehEd4Ul>TsB_Ka8`3)I4;WMcl^J-C zW)6H9#4!jtWk9Tk-wjz83{ccEe)s%EG&-$lu6I*FD*S5DseSeE+4r#ooup=8{-P6v z$(XE5`n_wh9aPviOHd;_kryO at k`b5#X_()F8{0$U{2nPuH1I6_$Pe+uUuysOUQPqs zw_IDS5R`m z0ph&Ov+E7jqNK)<_X=(=!#G`6Y6EqCGrX5&zOUi3eiZWdJD>A6xe-vO)^jf8O;i6m zms_Q=WZwV4S(jPnxrPzHWjL>ln{?iNSH3U6%G>Xyd-w8tS!Uh+da<4j;oaZ&<1!tA zjdgZE{`4a~&CB7;n%b~CP3gTjbY)v4ubR8E96FT|saPOy%1_HhBy=rgBC^B!C4(8x z*#^H`g3LS2QpF7kr9S~-&S)AW^TJ at zwDB+aOAyEpXK8ZD7_=m>Qcn2nX+Fl|z{vZ6 z0j0alEw2WpU016-ce#S*uB01zGZ{|05X9z=V$!+;m-BlGdM&e;y+s*e-C0Mrjo+jp z-#Kvb-iNP9_nIMdEunSkHIBUt at jsWr^1E%deD_NmWxNQJ} zyYAGE4H3i^N;4h`Qb&xNFfC86 at T}gPYNLRwNLw=^1A23ImJIXq_A-e;f#FV>$@zJ_ ze(^FM?(W6TgT2t^+BeU?kKq*HLgqEEqRku^_qw)4dxRsHrR)A4@%|H- at 5hY7yA)-a zxM!E1mpNiIOu@)2JqRGO6c?-RjP1ucm9)^T^L;T6&Q5b`G`dvN-D+v~B($gE18wur;y+1z;~%yH*qKLJZ|CTFd_Mq0C+ zVog&ZfETAQU5i#*U5Iv-^Z~~Tbk|i_M-sRM?;3_Wd3Fs~8lt40ZEPFbbpduLnWFaY zl91rc%T5_mMw?shrez%X1ik!KGt2<9qjT(&2XJ1C(JTyMAmeKaco)!CTvq)iytB~5R%M<{?U z7=By~0hx=@p`Pu`rYCt{-cZNtb`aowrxOsQW~(Jo$+dE%GL!9eTZ!g9%q|HamjjaC*H{TGK1B0w at 5=*TzamonQ4A_6v zfhhXMh8{eHw;y2F@;y1tlF73x{1176Wm+|z;UaYS%Sfcz+H>j06frh_(eH_mLc4pc3Y3>Y9qcK z4AZFa8Er5aYhRKw-PU5Z(uq-JBmVCBdHl=ozlxjbacu8x#!|hR0}j_LuU=21F*}Q` zb}>Ej^y80W at 9~ouogYV>y^N!S3;pKn zZ{mplvC!zkuZHpF%|X-v#jPehsO3Q8Dt6b_V+-)>#Ah8Cf0>Totn*yEjQ=tpUdH2eq3vA8uk*5w zyC9F>l}bT>AC5PX6NMyYgN-o7p-rOzDivxUC=W z(x!Ryed**w-o5lw#&x{3g+dQkDgxsZUTqTX_Uks44llOxGyoiLPmm@wMYtR%xzEhy6DN%dl`!xETVMXP| z+;^%y5qOS%9O0=6@)V96I#iVm)?oxL_;-_t3~WM2n&M1jjS;Fxy}9t-DZwTB%f)bj z5SYQhi|M3>U_!VKlW^VHDneId$5v{!3L}vbPzlRRRY0BKfe{?U&~xpMi!l*88VGjL zxEeP{7rE|=>d8a;X(&&Ha1%nFg9*4>aSE$J8UP{%vKl~vuZC5fj`UemCFadFkDfod z3}be5VRIBr1z}8`7i$5F4kkh7w1w(^%BL+xPoWs#ju_dV0yw6O>eW6i!#H!T0BJfx zaI_)88;A8=qh6ibY|&0`lGs>lhv&k|VAT|ARbOqPBXqThnwt=4sMT?r)uWqS;~VWoK z91EZ~FODV)W470Ma>p5#K0KyHmqCoh(Cy<`@ z-K+hh*gqSjG4hv3J^BuG>Qp2H9(T at m)@tO{sSC63?Kz%~qPeQpeK{=?43Cdu>a^t)nw|7>aJUbn98w3DNC`DaTlDLl zt(|CewsRobXF%o}Sb2gQL>i5D8U@$J;W_l*r+QvehHt+6KG)2hF>w0k#q(%v at 5NGQ zBhJSc at tg0z2L$iO;RqhWXrRBa%6&0@^ZYQrJLtu2r2&!F88skOUA!l2l(>zsxd}vhulD_BE^3#t#ivRA<|1vJ<`{mjr`tO;Lmm5be_W57m2^T z)AN#6Q)N#6$Z7UbuM{#oXOEfp8~;)|O4syZqjDgEhvZiZusU)lkJfVPm%C<)@?<0O zsFuqF%dhzLWnJC1Ri}Kq4;v2_8y!m)?(DclkCw%A0BXJL|XLYku>k)13mE zoYvGY?*w9&A+>R)$K5<+K8Pk$HEx`8ub5dX>Nw+_`_YlpqMtwmwvW$+!h^P=o%G}X zrm0__ at 6zxYdQ3Wf$B}yGzbr at b=z~v&%ol}XqI|}ev1b}tmSTxOPF3I44dL^-h%0AJ zp~+k-MZ(G!6*Rf50{^h8qP~d3_@#4a3G=LK_Y)+IyanuKJC~bv37EgriVESbs2eZ) zT at I+0nmb?Q`T_xwi3|A61rg<11Q at J|6ySu8h*NDY5L9qB5k8hh)n+cjq`*!S5jFgTrj0g?PPzd0Gi zn}H at NoTk1^0cQ7>h-7vG+iajYTSh2Y1|PnpQO*%$mJV>Eu=yV=IObmw$Pj*j#Qtz80Yq*ZD+ch}xf zW+P*$OV?dscN8?-%Da><%G!2|*J(vb{>7N~(H0|&X zR-Afo0nS=AXoz-n>enRzwzD*mXAVPuPNi!~NMWd8Bsa}gmSZA&M-mleoQ%%kfEH37qjE6X%??TgqDf4!2@~TCb!Oi2% zwRrmQLHz84kK)PRgJd{P|M#F(b&wBs9>seb>#@0b5g$Etz1%JIJ7fS=qpxb3LprI& zDgHe7U^E8 zWv6cJTxuo?BlY~mspk;3c%+`@jwak)s&E5M(KrBs!gzU_qA(a?Z=ieIEjbD_qae${ zDo%mK2mC281TZFB+>5TkUnyMuBhutQ at V;EHMPD^;*DRS&2jousdg4y5|Fe(dU-0Mh z7(r>yBv96zR?aLaFdg6k{1~viIA1|m0GA>iHO&G-`>VlH3&huqfCAX}GmpG?6MzC4 z7FwiFJ9!r{@v6`)2`-31+31oF%aF at IEDz3l%DN){tS_FjzA^@79{>A(UJn8df9HBH z-Uf~f5X8CPU%Pm+ktaYL*_-|21 zSueVK&zYW%y4RKUnLO9Haenu`Z6i?6`29`Y+CB-?X)EvPPg=(rlfN@>rfG7d;l1>i zOOPm2#zjtZ%^nTw43`6Rd7lH`T1&!J at _$>7&fMSG1#SZ~Jr<8L9sOU2i z?@v6Mjt+Fa5WNv2caXEpL|`^JJw>QYV~I4E;Jn3AW#j>3HDXQIxPDB5u89uUC%QAX zT0xj1gz_W?8c3Jx(=x9x0fd^<$w|_79?JU)LFi88sk=qV$BesL0%^y#%bij)Z=5WV5rNh5FUca>Bm$@QwG~Z4Q5M?6+|NFZg6jR+)dQwSqPT$UAfMX zrvyFv&-EF+zkz$pWO9d>jfj8Oa=Ow&O^b|Sim-5`?;t^tD)=U8!a*a1%N at 4_b@BWN z0iuS4pjoGaI6-Z0G@&lkaMf0zF*}^h);Iy|YIM-XH!%YIxwAV@)PS~OPE#ub z%dtZ|k2lxj at zy$iNLPdE^rekvJvF8)@~iPAMrY?S>W^TE+6V2YcJ}F$C$R^>Jl;Qy z at 4ovk*9rdqyKlpt+X|Q6&F%R4Pd<+iKYSmWigcX;2he$hA+6D zk7w#}sZxuh<6d}loSHmA!aAULXLk#FxQJJTcZ%lhg#4&sr~lG1<5rr7#%|#uAU!)o z(zhEG+`J&|I`#hY&1>q+^}4iyf}AkYf&(tsRp)|mXhk8Q*^3!{K5gRB at 7)pW`ZYm} z0#$Pnd88!IB$qVlpG0rpD~P`kq2>D&7WVHzBJ_$XPG*y1JUO!g8dr#;?3o;hWkiUgXrZGR*uNj^8 at VAYi$FB~Q-q z4p at scY&QpyhROVqj`G#2Q!833UNTSCi*aNqqde(&-(f0u1=?<(UjT?rr)U>ZNq)>2Xbv=n);Ufp2ffHdimFom|3 at 9;_6Go9^( z6KD%u4W9=6eSbcJsX8Hn1J){B`@NurrJ_YG(>&~>d#k01W at i*}=h z0Cy_TV at Oh@=4HqJLC3LD&72L0 at Nnd*=Bp2Y81pP5SEvoiv`4&YOUkub8kE&=@hBUR zco5zS7UL)cm&8K($ZVdoDqYFHGYi-I)khdimZ6HclaW;_eV zY#7TbUAcpMmAX}{*F`X|F=%S8HfTpDqNzLRJGB{P%`%c0=}>&?`B3VGuJ+zo*pH0 zUTU;sx(uDR*MqDAQkUbJ`n;rmRsfQf`fBt?y?F8Rd9KImF<3freelWx>6dgf%|EmYH8^* zK6v~vp1%J9VK-t7K=+*6MyE~sfNyBZqm!-y)NZ`!Gr&4v(B%tri zEIZKGBoTm*ezDQ+#K!tMgN$w-=Ov#^Ga2|%%b{Qt3Z>>BLQy^>(2!wTk2w7aZUklW z6uLYz3So+K&0qFL@=^d(33l$E_ykoXQB(<^vupW{yyk%g^c~-)pyp%wJ+*wMMcbLa zAg!2EEAnT*G(XahSIN6Dri!u^?V3$PjbuLXU+w}n zFY`$9Th6AC=aSFr%x8WlTmdS~lfbd~?sLY$z4UMWm+ at xUcbp)*j9;g3C at bHWS~#_I z?wl=wj`=gJHhsx_wpa3fz9|DrmxFO+wu75A%x`>#C7jOow=Qm=?-U0*>0I7ucIU;p z`<;%Ixfdi_&`!}d(ulH&zxi|irkx8nZ$G2BcUR-~Lx3$!8a6#-J$vW>;+ZGGu9e{L zlzB9DYN at k+3SgWd5Pam>{DMI30BX40y#pmEw7W^T*;depb>b|bM}4{h#VKO#dpdBe z)tUgmHo&iwn80`DbE(>W_yriEs7xX>b9o|zjzsQPb_oP?ew$1tDY|HzyP6lT1qBO_ zc9I(s7&F?wFm4H*%F=X)8Fm}8Yi>Mq*7H|~*MK<-PbD~_Q+VbYFdD&vyP!EWgmsWF zVJ>0RulHZ4aB&JtO~lO%0YuzhIZ_~BPO(;C;I4VAEs;K%v%+2HHBcKyUdO!9^u@)s zBbuOsAwWm%soeueQprmQ5}E83#Ml8jf3Wv3b~ZNojZi|cZ8qx&7=#ZXX$vN{MS5Mz zyhz+>t^?Da zp~$}m_}kj(#A5{F-c~2NEf^@@SJRYA!I&goiABLvm~Vg)S709a6I`qLm3U?JDQqNA z>fO%el#qhUHg~E~|Bjkl3>IAD2Dy`e7!dJlhQWGwI?4`fOlsj=cZcXA{-oDr00MZ! zX-+5?){>SKWrwi+^{cZJ8m%KV5G82ySan6MZI>_aN53^N&AF7=d!3D zzN;0m-V1X8Fh(8k)Iwg6e{HpC|FL1a5>jDAt?->XA>U~WQ1C~GRtv4^Bijerk?mKk z`&-HWv4UUI%@Y%Fj`S+ at HHC-EFw~4%SII>Tw7o`u^2X{O+soG99&L+JGDMNOy1^ZR%`Ot at Pqm zG?#B;qe&f4deLpHCa)Qc1~G+J7cR!pUAl=~K>2V z;F08gbFCdao165zm9$Fm$wwbYr`3(4Lx3)HsU0xs+G($YgZ+33Fm^qyc08Xv*ro0l zV{2<8wy0-?yn at c@*kP{+9Y9+WH1BE96gKi^g_Fx`ik>0C%P;xG-8Ya>YK at X_8y5P| z2|Rg%2Nl1`AisQpu*1JVBQ+U>%Rz~r at n;t;G<~@8?l+(Be*0XcWgO&C5B!ua)%;bc zZ~2om1vtRVddHa@&+&D=5+$K1mQmo616F~rJc)c~UWi_Lwr?r~i)As;Jo(niM+-TH zKl~>+%JQ2n at -_EYYSmJf>DjnVAE!UtA?q4`cIALF`H~#5_^$s#4i*FE1OS%3yyoe- zAV1^dTL}_MzrHsQskNHNZ92LlPv%2;YHbwqIkjB+oPSqiYCMMZD#|X9D9Tj~5R1#- zrc(MzN5Av#W!$B^e`R^ON`KzdA90zN#0TchZ~P^I;k!!>@Lc%eTb9tg!fO&FN$Zvu zf2sL{u5|?fEHq#Vj0|r$)0u}WopF22sl2wln}#m)J-`2HXYE2KK9_gjWxE2r=kb>Q zy~?|@h;PB4fN}1}&)i)e;P<;Wr|d~5_8A;-AnT at Z#h>N19<&u(yr*tdZm10f{7H}5 zH~4Ojb6r0C!p)xpz at J9XZKKpK&)cj7x`vY``~7|zPG1_eH at _GX(eP>(gUe|QxKCh& z6B1EVl8nd9&I_iqx{4C=DJzH$j<8ySQF#_^eO04_?!0r$Gb2kzc5bMk^kj%imH8HW zkC=eodpD$ya2;Ne{!C+ at vjjY@OEmczV9zW#-RlDLI+d=iz1-fsNFK at 4(&cs35T09| z^=N~7WfT_v2I1MQ)nmKSOEBBBy>Au2*1Ejc8Uo(Q2$E z2st12V+BFdfl=MS at S70Ehnrim*KQ&J`Uwiw02RA1CK;!kHMHFXh_>p*rU98}b;UJT2yp69ZD)?kU`m2# zwYcuO?u~|7#|q=+Mb`x`N0WSO<$R^l%4xb>L=OOy3AoEsZJZh>t))BFC at Bf31tJN; z5D2dMSw-l3?3~j9Z##xvi$^Vp6TqSm^21WJlDi|OB=g( z(`5#NnG52SkqE>bqq>$$AT5yV2*gNOEuJFF4plI805sonN*o#kYebuR?E-|>sk<)U zJ#hcZ9oibO_5>61ZJ$eR0BO0QB>@$n%ko-(3rlqF%L(NK!~o)VXp6!CGi9Mno=#%@ z5G%}WG3zmzxq^mzSY4(a$U}|9HFT}5%?ds>VUxBW`JHDX!}vWBMeVE_VK_E>m!}a= zfL?ZYwqqmDwk7McF?4brYt at xlqaRhN>)YE=Twl^J7pHl)?m2z;;PgD#^R7_d7BxtB zAm1?3$teJN0*zfnyIV_pgq~r%T5Cib at YuxtfAj0;ogL*e7T0s`9~{J+{e6JHN0-rA;9toE zp`8`N+d*>YDfO9ai)k~OKj{aF$uo|&)}Nrb(Ejlqs!BhCNxUox&hfUSc2eP`prQ|Y zPm>pnWS9mD|OhNCd9V1`%Hv5vBeO4CX6 at Zl*0I;@NWzg&rAJ=1R z?SOI-&xE$qT#Euu?MIqbf##e>b0D8!fwnERV-AQs8G)+hJ;kDY3b+I|WJ*D+7EGXM z5Ua^6!I=G>d^)8J>GM*6!95F8IDcpQq(c(8pccw#L75XXExe}n6Ph1ILm6-wn zfoE#+=6i)xx4>8IXdr3XT9cK3iVy_RJihY`t|Ni zm~uhC&^!0H{tG|0k$JiUe)Fp+fdg$AnBV68 at XinSBHzTDWdpF4z?k3eoVRSQ)f4EN zZ at L(Myc?D}6A0q$Gn2V1jiEd9Ab8afdfFj`kLBq-?q%o?(g_xqV*BwIYE+yqb^V(f zAcZBV+oLkCqy=b0!0=9|m77)kIW4J}@>GvyI_xqXwu-+tz at laWMX0o$Yu7xGKhK$k zu_bP8x| zZ#NFkPI8L4v#}oM2(V#q7)?N~i_xdE5&5Is#IsIgKP2skYwcK9yP%Mzegs`Mq=T`n zFCMz}T3QM}8xG?fkavdbO|Rp8cAWt5Y_Bc88!;(E&@(& zuG~GX(Gs28h%V?d-RXez-=2lH4pjf|Z>I85yeHWang&2<~fE9Nh zPI80Dn(AYL1 at XDw(oxA0%zXd&DBc_#0Stg;<$U_hVSf=g}pjQMs_Yh zJ((4ZxPGiSG+X9JN8r0!DjBJ at mKWv9jtz~KD)XF$;$4oc)V$eC2%ka>^1h)>G+LdM z%sZ3N37$M%WR-T)Ze^kN=T1j+>RfX*wJMYfz_Y#7;<|%ZBjuV}QNw3C*DmM;l;ud< ze{?z*?7PvywRf%)9Rq~b{;fay)6y?dFJJD*tJ6W+zncQ&_I7sTqmMp>-d)(tpoW2$ zOC|>ATDTu4kgm`Pt{JRaJ~w%t13;$$(`~{&efl&$c=9M7K7PQ!tr~-iQJhbP@%rpE z4q<@bADqSC{pxq|{QK|YFFt#kyN7 at CFaMOb8ULK$+ko{oTv> z^|Lqen`isElUdEOM>Rdz-ODw1u3!Go|M5S?!v~LGxYzOE$p_F!CDyjLV{>;WI%{jO z1+e|uFMb}M{^WDOXeV|a?8Yj5t=?(lI%&qGwcbs0HHJGG4WM`FfdP5aDFQ_vCSU_Z zIZ!UNYlZesVVR_m7f;Yw(t?gl+OYqX^lm at P85i11FpxGSb2?bTN*KzXk|!N)n{*G2 z;f%w+Xv_}wiM5E6XNUNOfYl%LN`6-bfy5^t&b4jCmEWj;xzq at L-(}qTH&1HKGjEo9-gtsL=`N?K zdG>dP=XV*O-)Hn0>qdTP&*=SB0IkH)9Ff0getJf4grL7iz4 zN7gyNH9;m%){i+z at TR}~B^eb!QU4{-E3|t!o)i3<>78z#ryo9 zyL4xHi+9SwV(>&9lv%k_q+$ILo_G4!gEXHTjqoGgN at MbGclQ?YQ780U2T%5$q$%H7 z&&cXrN6WpWHRA+TtbO71okl|ynmJsD30pZbBd9alB)S2}>X4Z(CGFsCje at rl;J|>$ z%sNc?Ax!LXrxlwB^Yzt**kNS;sN0UsMm04kD=^6=r&;jp8Y)liSYPYp27|^bfT#xW z0;n~cyhG5`U60fo#Fi&}$E$D&X9S3S&~UB0%eqMysNYpR2Snr-=~( z=sBS8e0CEf*MOM at ZpC(?H9RZVW6Ii9z{uidR2DQ$O=BYv+$^wo4XM#=x3u4tsKZ^O zwPu>Q&|tJ_OQql#n2OpUr{7^95R4{o(m*o+7+OhY>C~cTVwMp+o9#M)bv0_Fx7Mu3 zChgoLtW%L{y;}U1u#Qg7;{v*I-I=?nZ(#UKI7dhYSOB0xJF99xm&wcG1;FE)Jkb`* z3 at V_T8Uo) zxFMa!VF%ShZ8|mX$qj-U&l+CBU+&JOUS#lU*<5#79wDdyVyZ<5rgjd{L)ur+$pjj4 z{cEO!9}V(O03vF0XXM58eiO2IO<%f(4m{}p)zL`|$HYXw*1FUcWmp7AOQULcw85jy*k~xkX;1S8Cxgu-EePTr zr7qFNu1D*QN3jgBJnE0AD}a7;lRP$~H(QJ^UwbmgQP$7$`E3V(_A=p_LWtqOnO|>BPhhB$KOn$w2MPH?QJ#e;7*} z0NHvsUQ+0P`Ti*W>p%Q9M#sZ=zuS%XnpN)Y_+*=bBlZ8dRf}JI at GzciHezSTV?qE!mhyxT2RHJdzyG`cHKxN}JOte3njQMmVyzv|_D`UZ8tr{f z{n3K7|M{R7?t_*#UNCUd`16XVd$iZ%3PIpf1>+q7bglCNBlR4tDiokG>D1A^lFjv| zw!Ok2wPf%Ug-%}3ZxRi0q;#-j<6GwdSj}K++W9MlkA1Xo#pzBEfbaQUKuTzoU-n4{ zISwdu=7;{0#@@|K(kK0rzFM5uTh9$pT00QLH#PbT&sEduG6k1cjHaU$OrA($)^)jl zFZ&bm!zUALnkIy-eL&acxoqSHzU3OY1goSi- at 4|V8(v(x;u0E#p}7(;x#loUk|{)? z)12BP8G)~xs at y>>;PT{zw7Cl4^IeAHo#ii$Uh6NxAb0C9!H7ayenL3g&J7GXmB%;V zd90rH-E5XTKbOKf2qPoOTZ#%NU-(tn`_9Gwz7qooZY^W3731!2%la1l(WbO}A>51B zP5_W!ir==c`7FT-wNupTt$4+r+0s6I`j8; z&(gbpbGrY5vkaM!qCPV}nYSW*N&mdgOQ4zl{Ea_*OKQT)G&3CU9VC-ymj)%Dgnz2h z^PAzU!=lW-EAp8NkvWYNWu1Swz2F7P%GBKRCfkCj%qt{AKc_9rXYYI~KzdQGrG at qF zFI>-e1F_N~nF(@*ZyJY==@i)pBh(!P&bGVmV3rR6ZLWb*yQMulr^eRl3>)0n2;V|X zwjo48ADl6&Feo=IbPzTh2$OY)TC)q+jIt-AJ|l0Kc^1ZLfJqEsx at wm!ZC9-XK*S9u zGlZGiN=H~wWmcLKV;;*khVkAah_z+cWYlltNpP<;TRH7~ zbkmr=OFPjKP zCDW8ZWgMb+H?dIK9Q{mqKY=%^CCc?`&U at PM_{$L=sLqK at 0ZSJK(n0X5IaOe*Rl2Rz z at e61nPnuAGtBculx2KEw&jGC(oOaVqs*-UsiRmrnC%u8+0V__Unr_;Al-Xq`Naa?s zIfeF?5$4)X+X*l~hCZB%T>!k4AXWjUITheJ%1{6E}kLc7wq~McarsFjlfp zS#n`KMNj5Y)ZDz at 3ggkqkOh(Wan$5GP_3)Gj?J*C8n=`1y=Y?@4bS8+r?tI!hAMIp zA;2L!X{0=-QTQ{gUKNfx>f)W+f~R=M2RznKaO$Yv6Hwe}aj{a38AAHyaX+3P zo~04w7q1WLR~mL6Cjij6x(aD`g4%y&yZyl^UcM=gV$_69kB0-|v%d=p#53}RjSk>c zjTPnbNV)Hyzl#6Y|N6hgzkT(4!nkScCcb`k5Z|Blxu3+hFJ8w+cPsvMayPnW6*;D9KAW%@F0^YlG8 zkvxP(0oA?pc(qS at Zw}!p!#M82%jg@@=&(;6ym}djN5_0SkCz9Bad31RC!PXwY`whU z`>WXB-;dMd)3i0Hrmvt~h}V80jqsP+HA#k?l$Qc){=k3we|x)o at Kfo$k$-8PKWe{H14i5=42=|JvYw2~{+Cm#)?wDo-097z2$O9|{0TVHS5YTLUHZGY zXWiq~u*ng*>-Wx?{ygj*u+WjV8p7P^nqhcn{_?5#omn9KpSsGn`BSdE^7p*n%HPF< z|9+UNwG=Ed(`R-fsF5gSj*$<1pSoGGy z<^M_ZfJ3|%b(?{+ZIV99_eRZw&qch*&C2 at L7m#6s6NWb_sB7n5TAu&_|MW>jK~xBp z4H)_kqvP(wINAg*(S{qVd at Sr|##A!ODf z59;^ohEYC@?{ZNK{3>3_J8fVayY9?3XabHZl%hf#GyqK6H*~?h8wF-+3DrWT<_=H_ z at Kb{;hSzk7MxsYz=p{yw)PXxe6((w}rnJwPdLH5V>eA7kppbk5MsDy!Yzb~$!)Kgs z)LBG`yE(zS90L5#05eCESsYJj2SDf*X$XAOUI>m<%n4cr#j6VdSbld9nCsBgx`2Ui zE`fv!NgE2J9R*A|+LTD8PyPr7W0jH1_yvk;_ at EW?q}|Cy+Cm^~`2+{<_Em{(J_Y}3 z0Bb;$zego>FGWSJlOs}XE1JCPknFQ~&q0FtTmP`w>?8%iRB+Jx(5r(C*W)=g>q#9l zaJ3a#hd7_rJQRk*=fIHv)N)LzGry at psRE3QH?^AhxdFV~;!=3=Jx@%5ur$w<86<~Q z5Qb~k+>u))|Jq`_z~6}QPMs`pY!?jeyX0r99AR0YK(s-F9umkVC{(ZW_dOG zmkV)7S}%r|@tO?&_T?d<=qPunS&pXu=-b%U9%! z{z>{*tBqLcY{b^%_j5Y`yw?LTj-dGoZFm{=Rr-GaBo?T5&GN`QW*)n at u^yj&_IYe< z?EU8c()cxqEnXtrZ>o3>gG|_3|Ko|N1z7 z{roWgg}i at zd`^7{>H(F*Q-I1jbv=!b-`|bD{i~nHPdD|F4OQ5D5c|1fBF~bQTau9-evsv(y;EbuIKe5Pc83W z-jhf1Rv+FA?Vhr#0C4Farvlqw>C%tSMZWLSCS8ANl^fJO2zfe`nq->z}$x z(Ei8V{VRXZonLTcQAHJVoSvU7w>7$I(`+Zlw%c)*H<1C+#MOppLMVsA^@7=3V zw9Mo5%D4^o_Fb8tu6Q%QNWjfpY6{cM`)&@{p`FxF5~5J5NK3{s at 8ACBd1>v*$6vIZ zc5O71;9M_Mp=CGQjd%o8R(rSBtmT@%*|azbLZa86-xP+{tyN=os71q?}BK4M8no5iMsx^)GxcFNZcB!x{m!r=t30^Y%l`T at Wm zpB|;@ifi5rK-7BmDQ}O5(Ixq;HRA$s=dR*`8WGxWL|!zFGA55VSAYZ3w@#*%W6HM) zc at g}1Vus}qoain9ogQ1(DjS-w$r4BmHKunK~SGNeF^V|8INOg z`q%d)lA1)dXOLq8zZG8l+b*HDGXXyD1c7SeQX5BG$jD`A_B8b{YDyezYa%C4yFo~m zOl;N8gn#XMB{;;tel>TJi+g=RUvl?ryI$uGD8F<=fMs&UAep0q?XnIaOhYZ6-&A)= z8)_ERuH>`<$=DZ0w7Dj0Xf~>-$e(e at m@fD|q&`msZ>#l))<(QKpTs}>`s?`p^EV8l zVDo^Gi>cawYT?=?8Vmp_TenG{?KBJH-~by9ude}K)?3xW*mGqW5P!=c?vnnC;C8bG zb>#^bQEkPDfz25J^Y{wTcC`pi(th+uci4XXWH&y0ydCdvcj^D_*aMV(^7vuwlHSdD zkUZu6M~`D;b0anNY9Te`{Pj2A#G5y-qSNih_U?A9bsOZTk^n2$qd@}>*xrBdgLv at x zgIH;HC&KamI*X+xl!qdnp+kgAle~4<`et#Wjz0=q~*iXQ=%wWfJoWFg! zA76g|n!ybNFTyCW3p_UB;_PEO-&IF3mUECCkKmhHE**@Zr!>&qFu z#U(DSxP(R}5_z7?o~BBdYkZ)MMK{qgsLCC{$*j3aTT-VtoV>>7VXJM6|X2Mp|;p6TgPr9AR6eKX zjy#uI#B}&CpG!X(?p~UO|H9>x1f0pubAX at Xe*Y@#@{e8jLGZtKm35bH{=2-&=O26j zV=n21dwIQmdV3Z1S(NCm{qp~}R~g5Th4(5z+B|IO*F4PAH{SeRy7W<8hEm>0>$wzx zkJ6-W-fk~ae9^ITX^yx|L5E6a1fVIiQ2TJ|D!% zIo}u+Pb>8}rO-#?Nt_YC05ENgL4uyg>$$@#jIf)asV%_b&CL`h15>ZHk`Y}_JoI}U zwHm+!fuic)>92u1WMl?ZiD)^^hd|`6wdroG#|*&au9!B=c at y9}MG&0;u9}T at EK)zN z`#T|yH at yL%XPD=Fx`AltPtl-s~e$=6%Hsx2a2#U`T zcAiKuh8iw`0|ZM(sNhDI!)zGPMjZ9M4gmAji zlTthtWe9K>;RIrWIJcG$dOg6+Vm#=!at+&OPaYSWC#Wyii^kJR z%*M32gA)Mu3=o1~t2JmR1}hGrmKMnqQD>Xt1buEg(X^0vkJQWE%s2tRT4R~MLJp*o z)3`F>W%}AG?PuARaOQJH?w1>#0D=-nBhDE(d<&rY_W5f|na8)SL66Srb1oR8zHH>WWb&@MIN>>}cD zFpY!WFizkDecF$TkMEy<2R&Azv$heQGUFy0Z5X;S@x{s(B{ z-77WPb3e+l5*!p4DfnAnfTK5LdeXhFm^sEtZ4;7GJ%J9;X zQ@$=YaCfA?O8}T!JIbskRJ)g+cP`ivWEkFQ<~%CX%<*2$qY$Hv+xvYdptpnqryu>E z^;g7Qmd)Q+fHz(FyY%O!U$1ocen={xTnBI^N|C zUZr2_%z9C#6`_i6c`t(HWf^kH_g3iIczjPfeq{ov&vUS+y}?7IKmXY*6O%R70yd!AqSpWnUac<$~h{bqap z$d%>Ai{CAOd6mxsvp;?nYwhn}cX`kM3%={SJ2y{9mvV>~%1Psq4wE+KZ6xYrbbP>d9z!hBd!&|P94DF z&d5asq2!&1)=N}m#6|R;9^no-ck^mS#SI)w5+?pfGZ;7iiiM0TxtLuomPpABA!^=S z^P`5xO&3lvI^DH+%V-gSHJ%LU1k=pda=o61!CwKqX8hL1-z9muq;ibc^=VV690(id zvnv4IMVw6O=*zV at A796De@rdGyr~06Fxui$`zHt#0I3;JTzg#HjN&iXsgDFLE--dF zaw**9X*#*KPsX!e$@4dvRZ$x`Ec>P$4IR#)q<9V z4iz at 8TXSusJ27#S8NgF}K`zq1z0;z4>WG at e^YJhRpvTLcA=J)#{j}Gp26?UBj3;~B zvA3}SkRS!xRe+DHDK$0czEismY_hRh=6T-ZLHnnxM at oX#0#BH#LnF z+T3uiDN4;_ek(MBz#!TkKfKqLpqewmuOQA1CQgBSnu=O9_XXQOT-(=SVAW17FCZQO zSY0AMXjSc<+EK<&xiQ0yKdHIog<2uYc0QWsTGXLsO-!IBkxWqr8LwrM_WBf}2lF_j zz9)dqmxpKZFaP at 6INm>w$J=}HXCHqYA8f71BM{(j+hg3S={(-8O(s^{D0MlBihvTT z*9^;|o0 at p9TNJp{@0Ossg-Q(`QDg8>iBr=1`t?ct`n%WhHNfj=IL#9?&d<+ca()b0 zo5tf#HFhcs(Gh_|6CG&ev)zsO#fJ~#^9P&pWW&KjCDs_IoSq)X?#@o^y3>|2sUcQd zd~ke9U5rxeJfu#R;7874s3Gl-7*qlr-EhssoG$4vzzNdJrb at 0y~u~< z74`$C-b@#w<3YOSCTE!c^u>Jvk#FYr!qfbESF(BeU52DL=*-{#70+dwg+F=>x3}r& z67=|4LBx}Q&-zbuU2f=uAN#Cd1(85V;OBr=MZk>bJcg0)#iIHmFY=;XLIM5K0Wy7s ztboZi$mJBPw9Y5K6+$=%l6*-)NE at mV6Ht~~v+~^)yh3MwJeGwKj?~}9_d3PSYSyR^H=*RzE_H4k zdHfx1Ynd}WoR#9;--h$joKFG*{Het&ZS86OL;0(QFYC`|>uB!euUV(?#j;*g`#P_W zvK=HwznlM}Hn~jG1~pIC5#Qc*`RDzQxPR}u at 5g7`x_p=Sd1l`A_eU>2-T!(QSN{LQ ztE}VngVT at CcVX_m|MAOjceV9{aAg?lxQz4udoM#8B$WYK*S;(0B4f4AdG^YEM83|(WnNT+QeRy_~6m(h zVgQgF;@6EcZd4EuQapekAWq=LJ;exhD4 at 2C)~Qo~xlT?7B-4R%3Py(Gy*mmeChMj! zWuvA_MqNz%s{K=jxMMg+hlbB`a0iv+9sjyQBb?JU{5E_}yV4%yCOb{;a-{wEXXxxq zPJb>Do1o9NiKd~JQ4=lhNLGs{K-8&qbXq)5bKzSJpa;C?8{-}Q0vd`oKv+l at YV`0c zqY>1)wzCiYyTjNGK8#%em6QQGQxmEdX-dwf!Y*0h#Aw z9}h0#8Q|;4r2&*@=g|X%)->($-Hc9Sb=HdqfXuDxQmjKORcPzsS|=U?3fGos>%mcs zk6x!1eP?q$cK7z;{ih$L*7U{8H}RVMuLmxbO9DAFsSZhQ)T(8Do{_KPJ{DZw%xg5v->wSc0mpbmmleKMt=XP{x?;8d= z+SJNTJ5zWEbpGPxD1QIyWjv=Y&nfGfXZ(&P@$AJLXb$k%-H!J9b}UvHfI`1{x((@{ zoSw!T>izW_jYzwTnhJ#vs1bE^U*}n1kW3t!Qe&lc0Euh?U?ZJT?X;+UpRk7KO2O*? zq(xx*1RWqh8=|-uu6!njKX7{VN>7EmmquO=^yl=igA$VNd6S=WsY3F$m8d&o)ByC^ zuJBEHNuDx-49HWPXcM)#-d#pyQu2)KW6+qF{Vzd>AE85ejsU0B0`f0;Py!;HV5FFq zECz*2Wc{R at m&qkNrON>x9uv^u+_a)!zws~KU3i>*Am8(!@nt{2`AwchY(>6EsQ^bl zE_1pJe7O==e=BIS?bo0F~ z>2CfGCr#b|{om^H at 80ihd!I9N^Jnk#Xa9=lALb{&z4JRAezUCiobOZ$(0u8~aOJag z;j_+Hf9y&yO(sjfW;f&Tfq1eFjPK6P{oo2eg+HA?v;BPXy?My+g&%1$FQ4bXmpXeN zf1!p%;_~RV at o13Kt`or;9dog=l16^DU8cDUH%oZ%`4GQ$;%=*vcDZC#o&@0TP?=k5 zd<2dVnHiE!&51&Cl};za$OXBz3VzgT!65KECBuDy!s*FroE)B}#!$_Q%7SZ{iI8vE z%-bOWVV*`IK&!O7X{hz6Ka6i*y^e$Pvlzj2E^aR4YzP<}s44W=t7fb)il1C9q&8)V zQFo4Z_-6HJT(wWwi|HUWI5WZydNBQ?6Gp5Td32md$Q=*P;?iBgGe=;QgYsS at _^+wU zYdU6X8;R2fFok%ZRs>9GpD^RW4}w>d zB%a8TXZ2Edj_h-5KEmF`{vNw`N_+Lln+71Qcg-!Rv2v%k=M$@WTtLWpcCcDm*@mZ- zbeh%J>@;JeancGf9*bP7pEWjz-RO;L0k z9>FJ{v6f|M3RUa8*mWp$yG}482sCb at ESMO>d!i&K(Ro(Z`2#{SD$|xfAf=1 z0bBKGE?h=)`I-TQ8%=1}s*CrDk9a&n$hD?|7{@pEjNIW&zKfbr_X#NFoihPF`sfHC zR_r>z%E8o1vlV-Qug#71XwpWXJlu+h?Ha(d!t+i%XhUc4j`g)}tZ8ECmVUliEDcbL ztYBNJw?TI8SZZ`)wbhOG)^0q0 at BLV=))*`<#rvOp7T>)(u!ylp{bYUez6uC|aLKDv z=r^&o(T)dOomlIT{&qLsd$^mMwNB0k at sGcKMnAcV8#UShwJE%>+U~@4wH5p0i}<$} zuVIoK(WCDF;op8AUq62x*UQ!DPjBMe?_Q+gX&d

3h{<}ChI>sHv5l*|93Eb7* z)29c-_eRYn;MMiU&M34PB)MTh-h6X=37B`la|un*PkHZpQt8(#$+Sls|$a3z_EDqhnIdxXYTGa2s*xc_PRWx)c9%UBnLu#Rrp-OyUNSoIe6#0eqFC= z`xuvZ>nk;bYHRU-L&2qe&qdW at Ljo6^AX)8|T3H3CfXcy{m*G;-;fy!!q|L+X^5VVD z0gZi5ej%7l&;wE`~jEToxAlB|!yPXcPf zmBy zUFOv&GupTB^PSIk$kr=Y;@x*;duDvblg at vBDBgSNuXy^yt03EX zCb{nNW1PIUd}aK1-{x0_LQW|XljiwX0?G`J%a+Yg#c%7|tGq8gc<|mA0n>5HQ$h*^ zL8_%BAhlekV&vHw0V2H5BgAMJjRbp!u+ztvP^oHU8QzkbE(D&SPNXb at Rc)<+bhJkl zSu2{AC^u4g{-y`zdmgXr-YkGeZ9QCD3oYR}h1LR$Hfjh`@>eHM75t0d$E zKpy2FZ;E7zy%@34VG)vGiI at Vc4i1jv9OmzCUdHNxqRXg|sVc&_MICG+q?)UA-0>i8 z1u-5mH3SsH?A?K!DtGF`Y1ze9nO-fxad{L=Z_tn7Y?5mWCxFLg;?-cZV9ENtoX%1x zSIDzkA5Vnv%w4D0FUjB8c|VSD8c}vTzeS6T55cIVDN$=1Crcyv1AX>|I5(vKZZlHWUGv)OGGAr5;l_ zA&eUBdaSKA5lRa=HTP%}!A;v#8k1A- zAuZalx=b1b(L_UG2aIykPENNa9=v3bF+F1jsdFISQq(^oT=Xm?!rTe#Mg($PdGuXb{6ggzP8V8}SoB*W<2dM&HsN z0B2m4=XzZlL=ez!X%1$&0!?{3%}p97pCw&U*G^di!j?$i^Rfkqx74MANE+3awKV-@=z#vE+cswyD?XC#N~U{MEny8)4xIv`=czAc*UgYPywr zGY71K!ojE?XJ^M*tG3x`ZxZ`w^fmhU>%- at if$t3ZzCApQ*xZTP+HU+mfAej8Ke~?d zo0Zsp{}Tqi*YW*#FX2PYc(?(e-QJ1^J6q7uAnDK3b*?TZ0R5F%U*F)3+J7}g at VupZ zx~p62=tf`)J&4``eKi1hvkefWPTWjWSzbsDv4dT;$ZF8sr~`YVjx-$v4P at lnGF?sf zY=3uPlLhqdcYjF4_Mbm+eDT9r-@{ z%}@fK+yp{C) z&~OSr^GOxt_Z%z=aBvBf_?Gd at 6CAkdGEMra{t2d_Rkj&MdN$AHx at _NPUETBRB@jy- zP8w;z*LuTSf<3+q#PTwK`ZWrE7XHag=EtQj3{?G&zs!TO!gO&t>oo_k#&6!uhxyD? zG)T#Bx&+I-&)@SnEK5%HS|*?8ab-Cq9LrVSb>=YN6?9Nexm!;^bk at 6c!j<9mKM#Kw zpWljj@?Gf+ at 1J+SrQiQHmu-v7Jl;iccj{4?GE_#gg{xBF*jxvTRQ278I{5Wpl_qBGKSqgtcWLwDNiQ at f*4W`WG$ zfw#K=phd(s076}nw&gav-Pq_LK0RRr5F at bb_lD6Q&T at Ks z0-!i2uGcVqr&{5_qyvy7AJ&N*DO}^@RFojT_7$~%*_n8Hw^cZ?`laD0v_F`LEi*Q}CPZGJz>B*Mu49J#w3d#gD9{jHc^_sW^Pcm}zu|Sy9 z!6cTukK+x(djIG!CZi$kG0jZ`57!&9x89C6LeaHvt``!JI(QJY3Cd(Z3yYN)4997@ zL%J>2kJ1+8ReO$?w7Y4VCp%+;Kjs&!(rpfPEF z)A+8xdwF<*AHon{m3r&Yuh!`w>(pNzkiFTYO_$w$tma(7ILp3}LfSfkzy-56fRu%$ z8g$4>DlCc5Sf2*ImrbwD(udvbeL^yBh5)+FNr%V?ffyN-KJ|l|0qsn>TOb at Z>li zsO{Ty at BuBr102lN6e<8lPnelpj&mB_Jm&Fq3{3hLxAFDiD84%A$G<*5&67fITn0kj zeERuM;)9PriogHIe~7QX`#wJT^k?z((ZguW7_5zZ at n~l)T7aoyy=%l)yBp`n4ERnD z8DKK7g3nQL0IrRw*4qHZ#W)8{u0o(4`piNV-nLMQ{qbddw|^2Z_Kz9lt;C=G>?hG` zG-LneD?s22!i;10 at nd)qpn78+U{j}`oX4B}!#FrSc37F3#KlS at 4&C53fLBO!&`^^O z(4=3u_H%cu8Cwjd+$Ha(kwL!?pd3-hSINU%@0javN1Ba-$3VY}D|OgTHTi=x6 at o}< zw`kKsaFxRC$2NZy7vISa9}uT&j@$5JBRMgrG!#Xg^Im ze(*ufx_EUuogd`KdjgU-0}u7u0;JYc?@@eBYW9OMW|M at Te z!xv5mDy-Uo1euCEX5G29$Y|}>X+ni4omCB(8Wj(4m*M3m4#1Hk at H))XsaU7fM66o8 zcC_JoA at d|3N)U!nxp46p)aN<19x3O!kd9n(S1AJa5=Y<2h4RY)0FS$>ED$Dbf8C^6 znzec*I&}U=FxjRe_;QjaYutrf1<-Y2Oz*9CVw3wW!fO+z)goUF@?6Jl0WLlSq0y^7kB)p)O4kH_sQ{ul9o9Xsu2!LR|Zn#)luB;+~G%0Nror$5+re{@l(U# z^tT|<-)i_Y!{KkWZJvEASkoLz_D_rfuI1V){sg{mPFki< zxGUKyO2b!H=_6G&rkYyRieFJB(UVV^-8`Ef&t8)yVluaC}DoW=W3K8l}x_%wdD*^W;ch;2|8yB^iHxf{=3 z9mL=L^Y5ZJy^II%KaB?cNSblSx65M2l%qEtMUB3Sn(KAq*xA~QP5aMUH-(0$zPL2N zLC$sB`-JwFtJxPEkR+i|*M&Ak2b1TWzoEYQyV4c(myRC`YN-uZ(kJh7{j8cP+R%Yo zPVvIWJki7YcdcL14;jcnb7U&-YRn1){UF8LGmri9b z;|9)h;W^he;=%ONulM`=P>u(KmC>3sUL*BS0DG|(D`>i z?sBd5f3v%n)_s at hcsG8W_wu=P{>Jkkg#GuN`OiDfGz&X?J{9>{?2}53H(m}mj2?&(=RmV;!A~c zCP*ii$f_2AyNBK*@xfn{G`M;<4N$Ao;Q>^P;u at _^xLeLC(lks=5Ic`Trf3MO&2>wT zRO~enKMZE8+f88T28tTbw}72}M(jO71(K>uS`RkYW23`p{d$@jA+?YjZLRk=qefhd z)hx)?fq;L-(vzj~60%G7%Y*#}f%eJPpD1KWgPP{;a0OHIr(UQswO*3|i)W z3-ffNhp at 3qd$d~sOUmpU3%dkcO`nN;A^Epx*Ni<<1Z;eT3d{ z=FU-=3PQEdv%s%EoFqWMLZGT?)F8EBQw?lWfJ%9r0Nb{Po?G=;Z`R4XT3qUo@;lXG zw{X3m0#CLlQMyLRQBF?3Qsxu@(2Fcj5R!11Z!Q(koQedUpo}n1%{Bn{)zvCM+O=~| z_ZHK%Zg`RY+}z{_iDEY!L{FNg;dGlgZ)HghGEtf$ZEw2vLpyOURHx2mtl6c>huS;i z(O~m3;LMz+Ng at 20hK#wK`hmn#NIDT<`3jZ2%)1b1o}25k3YnlQX}@La z*{RjDiQwft-r#IMr<2vRsPWUjrkd6cfUF7NYb?_zD*!)0V7+R6x{6QXSJ0Y_Zy7-8 zQj1HH)v!3w5gJ$mC at nx6YS9aunPeojO&Z;{4%~G(f*0h*Fv>d|_HxbZ at M?SJLz6q}7 zt!bPb+PkK%uBhWY28}v#K#&5)x+G5*luy7cy?Wi(mPmUt{Nfq9x^r)T7xX3v;(1Q9 zKHEP$;!dFEh7Q4B9 at 9yCIIE(}(ZI3mrF&=RnSb-?CBIiwShMX2tESJi?Cb8x6$CnM z?THxzOY>X;I60}*%4wOne70Q^`0-o8 z=TUcsZC7U`pzG|H_5=I8pb7^)IxfK420cTORbcQoNuOj;5Zd!lD6~Kdh`Fzj)!S8wg z?>qi0@=1M`@9vi`+hqQH_wJqF|NlDarfmEBuB4Hyf*%Q|-&%UxnJMrS)6zO`_jiN^)FT+ zJa-+cLC}7k8m~4VS76v4{njFrO*)=az3yVYU{tFLdKJN&+7#czsD*tVohAr$O_YM% z?fiD86gv2Kw4a^NwJW5f!DYqMmD&_W$2Y_?nvQeLi_^>7?M`emx)vB|$8JFU##?bJ z1mV)Kv0JVVsAM|ofT}x($ARnCU$11?ILrbk!0ki--LFhJV>}pJR zX(3NasWH&5AWdW#v&kq%{b3Ay{kWzso&J>JuTVx$Ge~V2AU44RM3$$GP=7Xke#p(=IJlsPD+d>`uoxoj<^ z&xi5)ydMKi%^;k$ccu-({s6&#KFBpy6A+^s9^3!@M>~0fLW8oZAyQ)y2r}1pnFqB3 zj!w08Se}rfSsSNH9S8{IWM*pT+%S~uHtE!^p`$RVZCtc%5TKq$0wLw7Hy48w&Jz_7 z(OD!n+yE8e$KRItuT%`SS^65>y#+3C=d#9 z?bhwBleBg`>QDwuzEdkoc(oNd4QxIZoYth_GgjNC7%{rDS>2cIX_{6U$z^9%76}&h zYds7Af)X zR`5n!UoW^60wQ#}*WJV9YO+*|F#vOVy%M9#1?c6Lw!euXG~$v32MRaVIexW6D7|RZ z`3yhj;|u&bP~V>@6=R6QVb#{05AIL&StKeJR1S_$p7ZvW2I(1|L*(fpZDl1YNTd) zTFNJnx8q?KegIPY<mv71N$G+MWJzIibv+g0Yl?6LD)ISleT64jn0MLP~@8oq=2C%NdRFdT;D&A?|FtzdwetPg1Wr at jKEZwBob_m!d2~N|w+#84|1!)xtl7vk{hOz)D>}G*+%WP8<9`cMbGLGaF8~Gw%rX=( zqX_40gMI|YvZb8W at S7hKDc^73B90%tyXO{=E#~JBfEn*{z{)@KQo5|^xu1MzS^PaO zo8OZ@=YGoPd_RAu6NuVS7^}g{hr5f-089t{P9b_SON6oPV{jdM3ZxaTN5cRbU;-rsd4edvh%?zsehsaVMD6#4lB zM;u<}H0x%5xBe~T(*OMQlP?}H65WJ>HJ1S^5X5F`%od_{brFvcARg`J$sQZ-SmSx* zF5rGIH4&OL(C*xfj^GYdcMQ8AU2UKO+{#e^!xdmw2p--!)iuSBHoQi3aN`)k><$4% zQv_n8-A0Htqp}DCs at BsSiDyQ-6Iq*jR=_0!W(Xkh)DG7uxkjrExbyUa8p1tod6DL_ zg2c*2kXe0>7?T;%jcNdZwo}Fs;F1f+1t~K|tW=tYuVsWXZ8dFunDgtSqZq=Vowi+f z?GJ!&2?4TJS;^z=cH7NZZ`Ps>0B!Tm(@)ek))?)(rc3agmg!;miwM&d^62!KEL>)m zQ<&Blb$LNPOj{-_q1>4Ppx(@Vfmpeyc=$>`! z!vDbt0mgj-P#=;9NBo(0>el?j;j$eZJ2^e7Hb7?Ph8lODdqiIVVnM?UA}Xnkacv(J zk&MPsubL;dgL>7jU~%dSdBbJ*z at GySX;518bP55a$4hw*bFrRJV6D~;z(Ji870!1~ zby7FPkvo%fDFgW at q8mU*n!`yD==2VC31D$>;50f#6xJn!&Z%M|b)%6&Q%0Ei;hlh8 zu#XtkFw*xrZYAnSX zps!PPeJuhq?Z^P&hk%L;0i8!ELf_Y6dA(e1M7`OBZ`E_-*3QO8 zbQpMz`^TvP{qs-WkH7ut$MNajb}r-44y0gQ?bP+fByOQk`NVn`K11JFq(2`3?4G at R z84Wkw$ty|WVO0G6)xYbMXPVdO#d zGiet-U#uaf|I#K3aeDsA2I+mxjt=|02Z-!*>rQ^9a*%cV2QmHx?t{&U?UbvT3< z^@qdkn`K!{%S~gsA;t8lo3ex{?CzDN5R|)k zbEd&qc>nI*_|rZlmnoNNdfkB_|K{o6&tsXl6y)>Y(!QWM`MZoK<9g?=Gk>MaZ^U=!FXO&M#%rk^B+ zAGxxg?p;NgB9xEC&p#5F%Wkh1)3 at K0n`TmzPJdYXKmQN^{TI88RyXRavF21J0&+tT zxVjL#j9j-6Bx~;ctgb{C#^!o1wI{c?T4}$GF+%JVhUGM*I~WI-j1D2<8zQ%BtiW9J zV0;9Pww*i<&66a0lX0Bu=g#@xK*HI}jQ>9No&IRnAXG(l{$wl)X52q&VbkvVNfKshbC94O4LwxRbgeQx0 za%$Vn7z%Z5368lt)g=O6A)O9_WV2b1t+je=y2g;_ZiA6BOxa07Ph{|X)FuSxu39&R zxGBTkaxFmZX1x_#tyXxnRtwPR+M1mD;qQVx3q%zVEBH_C5_PQ+Rhi>0%!(#b?-kcb z}_x7nxq_oQV+FeJE#0!93uR`dmhhTAEXA at Q%TyI zkx^?$-ASSv2lwQSIsmK=UAgAZHq)$$KuA*=PDQI-6ll2f^~6B|^>3TZ5Eib(a(Yg{ zk{c-iH95$`k3{Z2L3B=$<5mD4d88KUC}2Q|_){ZStjWyjC7yE43~s?SeRPg%0LUeA zFA|zz5Wi{y+rb zadobTb9iD2aztm2h%;F`cfo#bwHn*qRy^{|+U9a}7cZi<2-sNE2=X{qZ*aH5GN&sk z6Y0DA^qXgg^sS&@0;sOZpYMtGmO+VYNQVgY)O-l;ZFf?)f4lUc)tGC702>M$%_y1w z8^FoME#U2XB^J7Sanaa{g7XIkXHhoCC&Ap@&02!G6CVC(yxkJdDkitN8Pe z-iwbP?L=$k79MuX0CpkXTdT(B?>&kdbUGqm- at iU49?HJbj#sC{I2~vddNbAm(2U6F zHw>hR|IP6+KzovFd25UuM~D0I$&*L%@sr27!DNm8y0rn2+gy$1%k%iNk9Vo7#oYCO z+CPJCh5rmJ7#L{icx!Vz!LPO$&wFFQ1>l*%gfvyHwQ`EM2_JC%bro85a5ZI6b4g#& zxcO?O20b#6rQfKnkw18viBuzCbIm5ip7c^&-lgM0FbOOQVIwIOLg&6q#6Wm8YZYir zjb&>5xC`d&xe1QoKTi4Dm%z39shh%I_rz^Rj<< z$beI^_QG86M>>M4OVaYU8Xmt98F4dEz!`_>_**S;3N^kv?N^k(C{|v)Hy`C%D}S38 z<4)@X(tg%y0jz90B1?b%7HE~WLT=%4yKed+$7d~=t7K4&?hJL~+!du6y~o at 9ye=?|GGvb2opR57`FUOm}bn!6)fw9^f69 zX9RoqZ^1qZ50Q`HR**&Zciqze>CgY{3ypOu95pebA=nxjbSL2>H!2{kJ22=vLZRx2 zx!umub{k+~r#hKjAw(PvQV}HLNY!(EuNmp*G#!a+A5i1Y8b-Z^sc5WuN;b#j)k%a2 zLhyV#Lr7f#w47#AbA=!QXq=o6GF-qYW`yzV-t+zdp6%#!1!jH-KoE>-B-$O96d%Ml zMNmxfn~RYVVm8VZj8mrE8x6?kC7=vpPnx-7R8=gMS#Ha>GYPujI0!q^ssZpAk-O1l zGM*+=RGZMDp3?9yW!4D70u1FAQ030XI?U0Xz~JYcHg3Q$UC&e}jRwvQ5^F64ZOwCk z9eI<_Y*Yb*i|k#6DIf)~0SMIqU2#_c07W6{h3K|A8AdkNbb5PdEA7o`N32fXhNB)J zc$(93{lO?kgE4}0mQ&By2(2o4yF!p&0EmsJPI(&@002O at 4oK*b$EM(w-)=~0wVMco zSss&j);o_khsQakEErUfRG3Hk`Uc2P-jq4!?~$ofr=RbJl#-{$EeXs zZv;}%(i!V9*4JSg98SC*pMB at QqWE z(5(YA0{XgO5cKy3bkl;CTJ0A8ih-Njyz}9NK6)E709yZQAx>rs at poT6k8e)L at y*d$ ze1CGD?d3p9`+?&zK!vRtw)0-T+0SJnSJ2mfuOGjE_By`#>bJ2~Uyje-+snbq%FQ(X>K8wWkDlx? zFdC&X>Ei!T(m{ zv&WC(y{#<?@oK_K&9qu=mrBUz zatFUcjq*s#YLKaB_<-%3q?G+GH;K^R0wrFj^Lq-F{9$*Iw-?$`4QjjYQr_rhx3p{k z at K22&bS57atT!9=XizUT2Cj?n2ICQ=_-Fr;=1Xt|F(*)5f)_ab>Td_Ng*LDla0J<9CHeoxXiC%<>q+U^Uw3$G~T;+i^+FEqv_ at vbjsqoMePlmRw=N( zGXJD!UUI<5d;ZVs-Me}6GB3uT0D#}dS2~$YzQ5s9!R>#gmEh}~HDzx?n1ClN<3$gK%x>})VJwN*L86HFD5txN!s_gy3=an_#Iy zdNLW;6}p{$0q~(26?d6cDO>}AyVL0;usc0Ij2ZsAYL`~3jF1^A6P;V}UB|f2$aSyT zj18yy6o_>2?v^|Fit3pmgvJOmHDgYLy7M_VejxPH&@l{3zb;&s at i;=P5})QamKd!& zEp-4OeS-iQ1A3PMNLvUBZ4zqQLi09OvhC`$v<+94Y0U{hqJWhrV<{HzGQwZ+z;vgZ zsXN+L`+qL9*O0ctQ&2IY%pNP{<&>*aAN6W+aC*1XiZcZBHwQ;?jPP9qs47G}Q`L6; z_Pb{(j0e-J at Z4Uts}FXz<2``lX0s7gXxvg)0&b5~s!)g0fu$s-e72QCeQ7bO6`n zDQOJgS8v)@wRnBnix-C{aXcKy>$B4o94iPN?T5JtUvo8reAiA2tlbsvxzJ6@>#p%d z@?Nd3Ku3gwR(iDgo1 at b>Jv~iRDcjvP!hDfBn&dgQYFZbm=L!H#cB6oG=W7dk)y&Co z*iV76yj-QtRu~w_jESFe)GBI4X3^lA=UcnmxHmXY23>6c_R04mbh=D`Xwb%LPOOMD z5)2L1w7W+gxqi?EZ%cq=nw@?~r>9LkDWd{#lObDA1KMP!Ag28l)FM at P0jCW>;;qv5 zye$T7fT|uK?67|kM`HjmePD at tuT%i`RnOM8F9Iw8CfCFx$df4x;+?LP{?th9pPa!V)my#Hy`Hy_04hJ4q%@ip!A<;#~@$4=2s0ABV{`$7dk`S8IW<(S3pR-1tn zedl1GencNzYDAa8r#pZ at 6|;=`YQ z7IpZ~|Mma=|A>R5er$D{@pP*iKY6qpPj?^0wrhR~Cs6SWW(Yg_$H#GYbQq5|H{;2p z$JvgqLDlByvv0nS4*9T6mRzJub*xktbMwYV6M&<33%?%!CtWzmJRSC;Kk4BS{zhNx zG&UKePU6kkAdW{D(Wh(^+H9fTiKSLIhVZY~^plroo+xr1=MzAwn^veJXDu{=H5l}% zBYwe$s05QrFxI90wwB3@7~>C?~LSq)*O6o3SB zu$Dqi8R7+72=oQ*OoOI1pg&Y>0i5-&N|4)6jt)IJh4b&GUsP%GC`O=RWuDfc}nlf8@%u(g}1wpBexB`Q7UeqPkaKKX%=(PcQRgdga}G-}#};N$2;< zzCiuveV%fbi|?M`l$U*h at J5kq(9;|LLEn0I^H)-wQQD8 at -vx>u>QL2>@A<7-L&bw~ z-|t=?!<&Z at 5cdMO&NbGmFvNE9-=#m>d;CQnFi%8oC{SDGx`)|hlItVvASVdnKBHFG zaHzd-BJ^Zv3P`7KYcM$tD>Y#2l8 zWH9oWHIG6Y$7Im6zM~BQX#tJ|d at IDc4B%Y_2x(SCO^q5kHG3Wr=Fx8}euqDK;)5t2 zkwJ6Wp^I-$l?w2Do2^gF3s_zI;uM|h1vQ%?*b!Dr7_JM-lQ?Kc*C4ucTCleZFzZsk z0_TlxE4J5gZR!Z2x0X}ajc9ZCXt~t>0iN=_S^=NTmAtDh%F(HWNBU0NHQQ^^2VDY3 zU`Ce!f7hvv$O{aLcA8LERX~-~@~gC!qjwpO4Bu&8*8(+K9tBlQL8(RV_Xe at Qe;9{{ zZnzo8qlZtTM!was4RbRJ_0Qdf^E2W&r2bD4=3 at pU*8sEBv_S_>Z at ToLM_Qf^q5ItIX!mFi_<6;0q_td z^aI#LfU0ou7%|UPrs7g-VIwM3-97H~xyu1^x>>*@8m&J8gtqCNa`qGs?e|dyNh>+hBW*XysBIa}3eBk|mP8ZF(4&8`3^V5G^5*HV<1(7-dE@&%YeVtXgk27pDw{XSF=wtZ~>q>z|n4G190DJ zv|=`dp+Y-qyW6BCFS#adZDJ1kgX9_K$EWa#L7KsFFt7k9>(IZqs5>>Vu8np#yK4^- z>$%QunSR}X7Mz0C+?9D>FsvKic;BXNH|Xm(0MeTacr)~%A^$>?u7H)_Ksy2|ftMl@ z8pYW{Bjk4x*~?a_LflM^f-B;=rYyF=^c3-1(ur7w at e{{b{zU)bhL= zk1p$_48wEzEeqq_I`(_K~d0cN@@!N;|jSv67?77ieJSL58!pS7;R+w6#uNT`szd^hC&HQG3_GskRWE^fnG_tf7K%Z02mTBeykU-jS zRrYTo`?uEGV1Rb4bsDksx1WCcg;S_%6|_+&!zgys0Rmw}txgxlK4jELMiF8MFtr{) z at 0tv{4(Hq6S)5#w2}fYH<+vgapdADXnJ&{Q8U1^hf1$FbL&F5~*flcjCXHReA0yo^ zg3OH{%_<;@Z_5au)#+92z at Y0?QiWPtM$pMra_t9Ut;i1FYmBlHPtis=ZB(1F1~_eL zwg5)$dJ;QhOS49P)E^OYsB8}MyzkN8S#=gzQczRS~S3oqKvu#=p{xM41x)k1*QN*s+|UQ zG+Zzz^O_ at Yg$>M6ny}tv=#F^vSU1{78+2+Lm#Eib9RhLL==dp4!0>SVdaf;OG^s-f zz#Z3BH9%0k2m4Q_1M*QxEtpzYcV|O2#Nj|dAf>4Wgg(HD=0K=k=DIDX>nHr4QlD4& zaUbn);z=&OoYGn#9tqg>mug#Fi&t3%=#iEk!U}LIUE5~Kk*JwG6BDF$17KUFJ~S-; z-u8B^BUB$CD0eigAz-IQq#=(ibfe2D0!E=a9TE}oe-94{+8&|t9)4IdkwJZ zpvOLwXB{gytwYyx2sof|AzTU~o at 6|3u#q_}QO6qe9 at 3xPq3?os2MQH8iqJ+C;_|c_ zr~6juhXUWDvr!xavIaEr>Dhq((4?QZqqPP=U=TMR$CUbCxxR?Y^MgG0PYtt2oN3ci zEz%kw>%+aBxPdNKNk{hQDK}7WJbCb5YVeoT){gtRw)D}1N7Tz=>>mOA0q34euE`?T zhZ|=Z!o-i)mir<l<*wZZwC!Ni4IfSoTO)I13x%ge&b9098 zOqhR3!Mszbng_Lh+27{B?*l;Z)`oJld{=%iYN_zUe+kY_-}*C^ym(*cN!ef)%zI(; z?=ARKUL at bd-+gCV_g$vNRemp@`474#kN7Fe at Yb1UzLQiLu5iU~%U#4_JM(OSd|#xO zpZv}H;92fOyw5`5=JDx>Q%sMl~wN{1g zJApTO!J|x3lP#+VgF-`T{;f8h+G}xZcWgHtG%(8fiPxDSnUAOJl}>GXdafznAvq3`0f40PySdooiJ`-JG71MG?i1pF7ls3kFMUkf at xU(E8a<`)`LJ_ zTX^;@)3=@SoNmG at 2qY3Ug05%PCZTJyTt_OZh&4Uw-mw?6{up{1noc_4JLJ8h)oA8N^lU4ssY2G9Xhsp94kuyT{bI zE>ux^wRp7Ni4S+T;;(-4F?HSrSd!=KNi at j+20YKT zxl7dF$Dh7W+o|zJ&_M65Ns`_?8&@9T`ep6gneSW=4UcvPA=eo5PR*a~mNrJ|hiOBT z@@UFPvpklyaPlH!q}X|*!FfPZaG!tkJ$L^Ip7&g64*d$&()c-PsTI%NxX|wf^(y$2 zX1&b6bnV641c2U+U;oa4pm#_!JR+vc^R+I-ucT{`TyI?UDD>;{%&4; zrU-c%=eq#VxZibmX>%{b%^#?+dHR3g3V)g7AA5iI`-k!Sm(LmP+xK_hGs*J#{(GJ? zt+&5*C762`02biL%oOQZ-*@l-So}Et`@wIz#@+A#7FXnB-Vc!7P)zbyQq6k-VDJ0= zVf}eYkNM<#p3)!mW!c^JE>@D>1bl_2-aQ!%KIvCU3q+cIU!V!SZ%^))ha7miygF)_G>_DS#q-g at e-NexCXj-F_yPJo!iMuKVY1h<= z)67Z;wOVR~1^ySb!zsY=WH?L>=MY+Uo!0U3Np at 5jt@YpzWS1!jURAw&7WOJ_yi#c* zcmT@*ASW(&tP31dfGOM*%CuLG=;;G4^jn~eLqN#IGQx^Ba1E@(0PU!GV!{&T@))ui z?*ygC!#)7CPaTps!Fmck>s(EM8Xdy$+X0RP7wO6~hHn7~PSd(()-ov+-Emq6^qO~# zF>8|LY5`gzV2`%Y?2DSAkKcckyK8GVlW5ZFo0W(yZD-cF*8nY>YiV4$cYZ=YxQ?HG z_#i&mZbfHtmgbK%BJA|&9-vO+;2L7ztT6ZkRJCp|;%6T`iuWGw#JA6$$8W#v6!xX>gK`I!PHq1 at PHfYE4od?#=$hW9w$d*zfX;cd&* z#$>(=r_Tfp{_#8cHowymvHdK8bUq6-Z~g%Mc`w74&KLzT_xE@^JSmoG=XoT2b2&JW?U at 9plydK>JdjG=!o z{PlnM-``fMuA_r3!Za2U-gSgU$ISrTTP;TP2+D6?zl;+EWNm#dp1*z*2gk?p at q6#b z^EX9ENVINzkTF!PB=X>y#EvRg>K;7= z at RIQ;h#A#pg)`!JG-{dkm-rDTs%Zn)drbgcYFa$v&Z%&B;z?k(v};pjPTArX4Mwwk z1tCyQr}&WVFlZShqD2i0`J)!Hj??ATAc6u9n!QN&Y6H5S&pU5&2M}>-z9!AHS+< z)Mh!dB?}B9Zg}T9AL at y;H6(2t3;}=?jDO3~J3Ne?&8=v5+F6b>z|{euN!xYJ?i$S9 zHE{?c>d at +{62|qA7Z=l znv}i|hvU?gSr6K6^k}thK*>6zCb@;@E)OV6p1wldAMftwno|1!y^yvkXlx;;`gun9 zSJVta6HNvT4tiW>pk~Pd&ENu>mX>H6!!N=7UAV0#+x1ztiS3;`k$D#QJ55#|sa4Rz zWip4H)|0LjAhfsbCcrODh^(YGQ$RbSE}HSQz; zSMLBgTFb7`yMn&yC(wrgQA6PaNFnOo_?~!Q0_r!mwxYGMk<-Bk{Ym`lt5>nP_ar|4 z^pm&*$Oj9If^Sb+;UE4&TI5eL4Q}fB5UT zo($r%wXOK?9z2Tb`FRYE-;k#D3y`JU8}wN>|J*hroRXbi@;Uhso}nSd zHbRPyoWhT17oex$B at Mp|2B2g)SOOXCd`iPEi*SY^ze%5Sryb5blbXSzmvNS9CI54< zNjaS2HXWznty6tVgKlh-AKPDDJE)+9!DQdP>sR+L2ifz>@5$4-?#@h|m(ROpQ~)cZ zvyAg^_d%C4EhX6Uk|$U$!}#6HdkIX+cV5Z&d0%Sxbmq5+W8v+4{8B at CFa6mrUgp#5 ze%$Y-<7JpKZ>2MR)5&_eyNdb|0D4)r;ws+%FjnHtmMF?rT(rf#v}uaF>;C(<`7UDk zvCBHt=l!e9SMh${#`DYg6S#6O!v63o>+F6QPb&ITm-Y0=E^3Z+loPg3;V;|t-t}&H zwe!}Rp>vsz-=WF-{>;Cdd$JtRWzwI|I4R#YDe3%*fu;Ik&%Wv=(@+j zdy9d%n{Zu@<7sMXaGyT4bhG~Oi%SIK1m{V15*wD}E;5?3Cv_lG at rfST+h~ql7GRY`lU`~JC06+vun%K~2 z?~-O7X!!*?0sqtQ?8pVMNs~4Bosms#l?|rX2>I(6 at osXt5J&xKoWh)YLk(A};UaD7 zM!R)L at hq29<_ZS2h;DjOJGw-rPXRI)q;*Aos5NrBb4p{4Nie7AV0`|$E{o4pQ^D-) z7CQ4smM8>-waEe>o zcq(_ at O{>xC3gE;MnenId8Dart0G5}tOk)xr0s at Bs27!fB#jf962TXL^o!IDlD1I$w zYLG}@n#fZxD65)Br at 7TCEJBd3l~e=wWc$6?UEhs%bB(+~FEI46Crpfnse!DyMhW58 zs<)!4tF{1l^{BdQm$E+CT#M~iJ+`Uq4F)ZF92$b#skT*UYiAAGgoawQhvtoHbegVH zXmkeGLwZaa$Q}BE;nER{U4(#F!njEPg9i_y+jOdwPE}b6jfOAd&$vAEx#@BQXwx-_ zp5!nFAPa7T-2k+b#rYg!r1z?Q)`sk-CR at -p!b?QJL02_c;&))Y1)B^ z_Te;j({8i?%4?K?dZ;#2Lo3}u==?9OFBjTBeygE9>Gh-6 at 5L2)5^Ot#KmhsygCgj1 zWnsnuXhOerO{=>{VLs$n{-R)Z9jt4`+yTA}=(t>}!YgVqT53i=sxb)iw6z&~yKAxD zS_CLwP*+4lI^*l5_^-eIDgosxBdpreb*$GH!;^iICZq?-++16a+h!9W!$1Y$-t2T^ zcgOQ^+wsBskK_2&tLPschmF!q{+0b#dVjBLArDk}Y!L8C{m zbxE&Vy at k%&fT)dVcwz_r^<;b%2j at fD8jwZ;f7Mx#ZfpVEY=7yduGSNp?=~s`U>Pw3uIVU_ z4*}$(aU7okY-#5kc%8=Z)#9oN{ZOqZ^ykuz!Jrq%41{T7>S;00=>GP25U23AGX{vR zhqb*ua?U}P8&#UriH7S_lK at REUn>+CC_s<$;tFMVt#NLufTmLeA&skLAWhd4=elBk z-=BtqfaxWI2>GcjgE}X?gdFdx#eeYMynJZ~%Bmun4uc7UJS7QVgJ^qKGCPD-Rz0IT9#QGWl*vgXVN z&!xsM>nFqFoxjvxQrDI?V

cY^BDmaQVywLG#(~`J)JxSAsI?%j&TVS!QC+O+5yh z-xG*u9r>HIjn~gaml`+P)91X;-Y|BCxOk4mmmgXp*NIords z&dZzifXg#<%ec+=A93lQ`;R%xl!K`(7tXl&gK~K)%KPr0Ji72#+zq=#o4e7~8A5ST zIzHZ&$7M#D4`+I$H_C()9cb>#4P!Mj;^|~9H*q2Z>r}`pGEm#Gnwwh{WL{t7M&0Yn zY4U?QGH_|u+55uvU1K_u({$SO%Qb-jgR{v+0*etzT~sT1ca*A4uVn;~+AXJmC00+6 zczJx3)2Hoq*Y4CAHIrEwy1+-UVaIUo)p#+$;q at lHt6WQmm5|tsTmjlyE_rAmw>0(3?N&gX%r?fmNYCZgTQ5D(qT(Gd#)F0 zbpc2)ZAs_?$>~Vd-H&O at jIcfG;A}8rqzTd{4><)4Q&7mdE73J~M38X^9Te6IkZUzU z2zRHV)!L--PRmcdy7nuzdbmZv9Be8(gqlcqJE#3DfEpQu3ILWcc=M;JlI&_SQR>!R z)^FTh=#Ff)4%D+dV?D)VBnXCqS_j(KbBCzYvYKre3F at i;Biih2*vs;)HX6BOTVvjy z>XB>Hh)cn*xeM)Otx%rq;Kb#~N7E+eNB|_rahIzdzmG8U7`hI^*4@!{KvEST0d3|2 zRCgb5x0|sCVB7-ub?fb9uI at S?jwlc9u$1heZS)u54m+5_;4 z(A^_#*K%oNZh7H47y7p-W1A7yM!gYxYlKBu*IWxqp48$l;!k^-O&8%J_+1m%b^TY@ z-R{%{S5bp19adYN+v{moP&5zUGc15+xz(RC{F1|*8sq^mU(H?2jm~Lhv3egCNPR(XQniT0D|r`u z`N^T(Av%B`H?n-Ye-cOZtB*hXNgM!VUJ}pA1%n^TsHrLI at Y&a2$D3!*@`$xDJmTfc zmy~S=*xbrp>=oKY8gP{BIps6raYKuYR#2n8$<(H;CGL9 zJhQi!?Qg$yIf!daLFwVqgBtG^V0bFcCH?PwavA$)<9L4Dk5`(188BF3khlUE_vDTS zeNl at 9+6J|cfv4K2jxL_K)8ASpp0J+Z*aolPm2t2GVM4-E>Bs?`>_-#gW?1h)P+J{An7~l-{1Q6asX}q{GFOP z%3?YxNR9j5D?h(|uTW3$$DaaNZM^wS at Tc>O at mUcBGra^*^Elqs^_q`)QQV<+t)G^XI+rr<{2kpXDf at 3s;2yL+5)c z&q8FqyyGuZ;S>F^tTSD<{rvaa>C>XFd60Ju!VbDM&*RzdH6vZy0RQuPQ7GA z^Lz35_Wi$e-H-PNj=$WCKqS_HDfwrU_}x6&phY^F!^EL;UkUnh6Usb}GTvezfDnWxHi>c61k!F9$4Z60u zilEh>{cn>ZkO!H#mqkfb>N6QpD8M%oa1nqj8s34FU2&^{3=0gPS=X+0Ly}JhE zJ&rFAUd7SHC at vYDnvWWz?#;DLM(F^S8DRjP8Z(v9EbyD7L(%}8z{EB|yc;l_+lvW6 z51>J12-!dfmION`zL at I1Yl07^3AxZlKefpas43-nK-({q53rq zHp9G~t`P&SQ8&3Oml_aQWMf(vNMWa)&3}%%=qT>a%c&0=iFY~=r%&5}#OqZ_5J1G_ z$<<50JwA?efTTyJtx{JjH1xq~FWwxVh3m at JsT+5@R;z#^LBV*E%+_6h+BM6O1S19w z|F#>{1MM|I*gA!hJE at l>CYZE at OPguy&gnyi)iDBWG#g2sylVhnFXIJmKIjj5x13X! zPoI9Abmdf2y#^4ZoSLn;p5b8L*Vik6lwPj&yQU3Y+vJi2r(D;erLE3dg1$V84muGW zt5tSd*`w~n^)i7b!a6m3fIAn;*H-|qkd~@$A%R-n3*^rggzQ>7s4tfd%;*dnXErZ+ zRxv2vbxLkVa8re5NX*MEbu}6E6U?@$1M4Dp|C0FS&1J4J&5^kR!+zq(6R@(W7Klc7 zdX3~#D3w#<4xrS?rJzJeT3 at a+r0c{D0OVS_MSx2WYDfLBbOWuB*Gm9^r!3?ePSR>q zSdT(n&sE=ZeryFH1TwBuYGSC{v z at 4xyE@ZFB>&2@@0WdO$Di-?bCuMyYz|2Cj9crPwsKIA{DJy88&c;C#>Q8R z@%!id at h@L~7hk_RjGz7N=kd{#2eAZSTD_daLqPw7bp}m{@a;AEf=t)8ol#W!JN-ag zsi%WpROvUP;f(fYu*m55Wp4_w9K~~Z>FeW at _~65ja>>n;ryt}l?mi&*laD@$Rs5e* zj{n=QeiK6g?GT#oZf`g2C)Hyv?NnRR%WA`l=lyr-kJ6 z(xI9*AGG8wjWPlXsei zw7Wze)V?bi^)EnFXzN$AHV%?AE%M`LIQfwLE6sz^N8GGr5{2NL^HILLOu=`B(QJh* zu+%&6?z)5-j~4E-}lRCJ*BN$ z+SNEqC;Zo6S&u#^=(FklJuiRy6$8i=2~)&Z#9LfN!OHr>``u;OyyKE)h_npnJ=5o- zcU?I>Yy6q^Jc-Q1y?B4 at D)U;VSzbjMX(N|N`MdznNj|Nj=N|q0?XC>OL7BY at nXeLn zyz?DzMLIcvVX#91T$}4}!JdO$XOL?2H?0rkk*0j#hCeUB-%Q8vVjZ!8%Yu~QtCf{Z z&&wqhna2F?wY0eP!55xenkOQVh&vbs9tG$_K;p^c+nmCbB+?lPwdmMS`+*k;}+QhwEDLJ}vp}b}@_ypq~-!L*p&^lslD4>RuoED=t)8C9V zWejT2hP`1f- at ZUNX==vxdz3!j9K4Bx^V677S?8obBDqWQ=2320cm)RWsb!QY!}pW9 zn4e0siSS*C9s=6+ZfYddhzJa=quh~e9Kh>EgoX#xyL;3)^yghIpk^$r$28E$_XN8< ztKQAUoB*pl12v!3AUaxgcPtDPzZU`$D&-IW>U6UjL3jIUs>4oW8 at LIezOj*O3Egnx z$pH$8bDWybTB{4Vb2A10sc+2)%*g*TU~mP-?gpJ^cb#%mPyKN`f3u(Knbc~kwRAV} z1VN>y)*Z#2c5$%38$BG&Hvky5MhyX3i8TQvf=#2^o*bi=Omj1P8|$GFa6wrU*9P^f zsp|qdJx>|Rvf85t at NYH=UtbQlr?(IcZQ8ScavU=aD^G^u!TlA&*DJ2m(w-ZD9HRGh zm39KNTGC97wsD=88aTCWuJ==m?C$M40#`741$dtTUUSDg^`iz)WmuK=QDEn}vD9nY zZv-TdhJYTNJF7Ikv#6$#4(6IocPMYJccVjRtdNcxmpbL|kd}gHg+Ag56JrGUa5#(s zbSF&+EL>Nn5Reahd|YlIq0J!XxCMX at 0EPoT9`{D^?aSBk^>@$W#p^@jq9@?j4I^ng zlJ>P*+3`IU#9in&0MqU5wP at v(ql~yPOfFzz7?kzk&T5D+>25Fuz#pEG&VGFP&CB at h zH{Zp^_HHzw6*rm)S~caPX`n^&eG4uA!`ENY$0%Q=8O!a>=+71bM$h6`|MF$Le0dOS z>zlcg_%Q&f-tNF3R^w=V8Q;7)k8fTd#S()wXBBz?^C`ga;0)li|0>ohtMRu#|9Sk) zPk$B{l=W9%ei^UNk7FvonT?}Gebpcwmus92FVa4s#~~)jk>SvuYD{a5mY5=W(eYWI zfyRJx6kw=EpQ|zG5Lmn8c?2-;(MH;c%uQF6`4}Mf>fj(=>>o#;HoU1eVnROO3TGjo4?cPwzxvH@;tU?w+1QF#Z%*Rx|LZ at +&BVf{hmV0nGa(x;&TH^A{>E`q0Btb z2}<}^oS&^9;_3`ez`|gij2?X*X6ZnI0 z{44J1JH5>B^Y1=er!t-V=6`R&pLaoybtuU3tJLE+swL}Mt(Mk1Y^%b_Z}EXsGg;PO z#y(H?htHINo6mRk?H|v^U;6hgKjz-&VY8m+_dju!aooRrr!!6I%jH=Gn1}AATWQ$( zWpLmcdIzH>WK@IPZfCb`)Z7<#G{tXV9Lnk}#}M9k&LCG~_zNqa|EF6!VH(9GZ00gA z?pZlmYg~ThDl5!Ic{I3yi&EuuiRJ{Z8HIbYhuVb(Oh{wS(ipW>#AE#PH0*|pw}c at h zX*;Z4C;TwZkKROsN_!81`jefVcmzmMgLlZt_SNA&fMF?icX!hyiyAE#jGr)?Zf|sQ zcV7?2{Qcn}f|J}KoG-|;>!voUjCx_HTL6U?l{Fcjk=H?*a##jnxe27x-2lk0#B+qn z>(jG5J;CYKoDLz+YSA3IWXI>d>#Wr1xE^hT@`})}5tI^0y|$7Y8S0d+i{BQF<{Gr( z#1M(!#=4-B$VduRmW||w8W-cMvC>HQ65#}XxnSFTIO?Q+6lxRFoj`=Wem}KbhRt#Wl?jQ7 at _D?u65uDegF+Q zW$v_KF8C&YYEjj6YSdco-!1QRgH29r(N^3AIPO-TUI1RMoyy`HfZPTA)#Y2BBN_li z4Q*cmh;HbiYEu_iYFQs=3^F`yUahYSZY`73 at oLa$;X6%ibFGyNy-!b%Q-ju_?p$EI ziXS&>3 at l^43XrMh`cC7!qCADR7@!qP`r?>^E zYMRz?6~;Iu`(S?tK65%~|Z94RiU&U^tHTwRU{)XeS!Wv at 7+nv$YxR zc01P|_UJSJw0{zR_ucFG?W=QuP&d{ZjkpG=RYxbWM}Pk4qmQD|ZUL4i@#Tvbc~soZ zY8`3NpnjL*n{U5NCbiUP14e5MUI5wSUi|gr-S|KJ;urBA081Y7zkK&q98UpPok~1` z&i>QpdVIiuL{OY3K3tAtmA2mQw$mVUVOW@`V00kxXm#od#H?!ptmiy?Qc0J=kb*-8SYXrBuad!M7W(){uMFs;+Krnfue#XnSv^V*y-+e`& ztmaN*Z8AE5`0()u at tA)7kN^7Hcrm(;p8RTbp0gqq@@P74NYSrmvkE>7zu}2b2psxg zqoCh~3xpW7V1Ly#k at aJJq=f_O)&5YYUF18SMB}E53wVWmN+GA_O5lQwFY0VAc#Xp= z*PL=?9(aeC&ooRgH*pbAC4qg$5UCZxpMupLzS4vm9MiZ1mhfLSi>9X*ztlJ;a3yW? z>c+o}hx}*ygqc5N{!&Zt&q5UCr9k(aeYeOfzlqb!^4-59GE?Z|)gG7Oy!^j>_A2Vc z(*N+C&dY&^Wm9WpIr1A`1-yAFH}5WTG*7?0%6k4|SDB92yU(VhIV10HuL8KgeKiNr z^Pu<3me2G2@t5VrS%1=ygW$5=yv%ZHgt-^-sUYEhqnm at N@{(4(1p8k1%ivY~ zc3D@^c4a-6`MmG{P7|mr- at g;zk6l?;bLVB;>5`U}#f9e2c9g!}`U&{3Cb|H9bDFZu z(zx<1`;-r!Xc-L4Svp`o(LLMX9ykax at 4!2DJmzFAM*T~vxcN>T*fOeohU=? zBSfq$@vZ_(SZKe?b at s@hvd)t*0`tnpd%x!mrmupEBqm#xL?|%Q zEJxh}mkScin$TH7OPjTjH9;ISFrC%2hxgi@*lyHwSD!~Zb=!>;-m8p|mk}l)hXjA_ zAb!%>j7MwhvCezy0O2%=rJKvxK-g>}SdIIH(fApH^8hBUkW*2tRsJF12q**dg7JZ{ z;ejy$;HUwaL46*cG=w3YQjrH|XQ|=4B;T6SP-v;$Q&Vs}fN^)bam3wqf&!8m&W#dk z;PPlJ1h!>$O^tcCAILOaA9)23 at lSh%PJ>AJ=E(!)HKHsKyrE8={B at 0{w(0r^b*I&@ z at bCJ*Hz&OmGV508%$usA*M8o at ztgxqw>5mKhk zYY6tL)144gAE9*GKTiU8ZJBFsJh?&JfKK-|Tg_yyL*99&@FICu(6GVFAh$EadNDN48@~w+dZ}Gm#J4ZO12wH8Yee~c#+AP{=S7Wo=puGio z`)%Xi-RKuC&zJy(3J+#-Xv{U7(JgeC$%WV zt>8??4~;lFP8)O7ubL|t|4TDNKt+Ev%?$!-thDRatT#!2C$_h?quW`FR!(`-AE-Y^ zm5w;o>U8K6HR{O0g&HXkG89DJ&<9)t;^4(TBjXS#xcN#g>B=f#1u)>+!$rVN6(FUs z7dXzwL-MQbL_j{_)y9v=cV}xWPN21~kH&F2ksTBR!AH%N_;`0C9sVgfMBsd3u;n)n8mmBE}R(tPxAH?}E9|MkmwOnq-|ZNxJ4cGx at 3-L`Ac)1HF> zz?!8nPixIeZW?*8y`I{)OGZy>zod0FbgK+dJPX;r>yBuRXj|vGS%yC8tc6D~7WU-m zuhfMnpwv4X^a%!qi>vYKq#s`ac3&LO4*>dVaSvX;jN!?fSeT9gd at BIIR_p*aZIdQ> zbXiDF at 54*fvY(s|;sk*0^I30P9IMIi;f#FMnrUP8Rj(Jvw0o{=rW_~mtY7`=pJF`f zLwl8Yw6hU^`HP?Ax>D^YZf$Q-4-5jSn~4UxX=3-f7l$opMccB(#H|Duo?kG&z$%3_)KA z%L0&z5GW}Q at Cb?GIr*XdMet}i`DD4qPpxT+80a)LZ8~L1#)0UN?#=Z4Dl|bBm%Paj z`0aov`=9T5RtsZY6r0}2&D>9s|GDOmGFT6pl5yhh-+7qdi|=0E-+k7VdGW3*-{p7Z z#67=RmLhs1p}hCM`)MBTp8HeReLsKj?4Nb>ZW{bomb3ir-yh`NXDc=1vnq;jsnCGe zc-LUJ?=4ul=FeHL!uF)f3_*JVwu>}*_CAkPzMkpu=gTtP;EwX4WYie4v9kA2k0yc-hhJiESFZJ}C!l{=oNEx%L#XwZK~ zckYj!p;W2l%p^Qm#RAUFsmhv#rO*C0!Mh`=qSlk5<>db0XVJjEzPo6YB|rmppFl5n zVG$+~GKHFloFinTWd~pTu_;SAq3ZiQThRl_W*W4iNC*m{Z0Jt^+7W9 z_xBz~12nY+Gj4;X7if^m7NdHZ0F|Q&gq20&MX-B*$C+k92K{jTql=Yu{TobG!7=Co zE&)lmjPQ at odvPpBc)L-p%Vz#&vug-^YNZ2=r zN0je6r#0=Xj>I$}vA9}IZG>wuuc#-QFjdhY>C|8 at Q-%fsn&j#I-JRHQeIP? z8`*iC_BuX%g#ZTZ0Y(zQQRW)L+hh2uyqh=xARcWQswqXv0J=0oQ%!ZXCO(|9Rao2t zK5|V3G*{K`qJoBeCr!}?8sCQI6I`j;@wl(U(Pi4Mo4QWH-I~x+uK5&n)|U}*02u20 z3PG0}Z`25=A)(#WgkFvr1*!d=Yh)cJ$*-G4 zB59$vKz#HscZjK}yP4(W!R;=x9 z$1ULg+0kkI`pfU*UsRtXP?KzC-3F?y8rl_e~sSRetiCD zD?VHSG at Ks9U;O;fV3u^LSsx%X%acAlHN`cKsZ*klXftw(bA8_%fV#|VU2`)$X{tvS zXMdG{l5I_!B?lTxUp?@aOqm8TZyeE$yL>-X(29PUAzE0t|96$Z& zXSu2B=;fyINsmw;3WYEwDzYooDIMC9p18UIS9TaKhmvQe=qx(>B|Ez;2rMHmT2V< z1^9ze!RL%5&IWDq~fXd;c=rpSteS<0|Uw z?L9*RUhWs|hp~GV@!yrN$j)87_u~hzDe&;*?FY9HVKjPJud9Xdb%K9m*t)TJZD&zc9SLSE#?q8W6Wy~CqhTp{? znKrK-7|GWKopWDA2CYH!J{JQHXC at oSonj+a(j4!6uXax-ou~<{@a&Q#_aNl5Ci-L! zzUb?x$R3xrNH0tLc2Mg^JS|6Pw-$DmV9#Ci(!2W;N{#K(;`ZY&itYR6(w5_)tSz23 z+2S`rUg4+sc30v2*GjV&CS#_tspsiREWltU6@{gA%GUnDGs*}K&dHwojMh1XTwo8=lkuf zo=xkxO>-blJ$d-Dq&Y)ij>t27lt!h&tv(1q+jo=c5CIDFyc|cj)3&OLQ4{rm>_`F- zj5rFtru96L#pBhq_U|rV=k5^(U-K{y-$gakOtR8PUwWv;4?-7VCG zad+G-ptg^Cm2fqReKzhRoO;x)+9quT%>Zeu3G}wRoh+LN(!0LS(VK_;PsxLtv4vVC zYHfFfYc$t&2h@!zOTeUc$uFnid&6P8K0JxDa|o3zI(=qmbuEMI8fp+Ult%qRKL{+> zwRyUNi`rcaB>4&K(ugf}<1vCBn4d at 3Q9g;xHcxn2=PEpbBo-U9(DFK*iARFN5 zw6mK&{y)_HXLF=kmgk8bNC(^jcW4AcXJn+Ptg5cAp6TvUJF{!HG~)|?sQEN}OXEx0 z($+X!a(1>yv?!5PS(zCb3R*c_z}?{h`1_sf4+5E;)jPu(Ga7HigU26r#koiP at 44!T zJY8ILsmFG%nK-<s|1egt1Aga&9se#6x0bXYh)HNknUA14Q9!UtZl2*$uq9U zecXKHjg-Lnru9rJxw*k}=T3&G|i67MI{F>#d%%pGP!0obb>B zz`Cr-luIS?y^C2ZPb!Bc=z)b|*ATp)KgFkF;e zuak>HJB#0;4_wAM^3?$VI~-y6xE+7@^>^{BSMTG^9{k2LmCgRyW$bZ1b2E(R8};~j z1CS3h=R&{m<7saczx(>@INslnmrr)$zx(A+<5PfM8(`$_GDprFN5*QTw}MW1wz(Rg zef*q!-^TvYQ5>Ij;)({u!{$o-^x2d6XlE^+KU|BA291wJ>qNLWf=4Jbb>R3STi=eY z)pMDA2!FjlJdIboCviTUj(4XW`pq;AEABha&+P!!?8}X2 z>}+kNo^ht#fA^1no;#j=@$z|m`t)%;TyJJWNFeUm9fx|jUDMK1D_0y?-+Gv1`P46Z zPG3RKmp}WH_{rx#NuBV!Km0D;SP|NY;@?(Qy)vGeQ>`sL at J#Lr&7prLkMhFNep{!Xu_9xpv|DB+Z?+?5HQ zNS(}k>ftm2>LPB*<2HH)gX(v?vfUETS+ZK_-3b%=^&CA4v<}DDV2v^zysOVW{%|!*V1| zC(mW~>b~K7 at BQGo|GfHL)nVQeUCAT-%rT{wn~U^p%KtPfr*6?pDUZS(SFo4`pVZLl zv+)Rh;VKrZ^+oiU8ya}f(B__d at w*CzW7}QFuj-xBBd-l{w<(8{xWR%$hwQ}|-OkYn zw1>~7=5Eo=t_b0H{!xx?cBw0Slx(=!$eOv`diJlgBorvmNgXPuVlgb*gvIl3d5)lR zorazYx|vd>d5Z!ndDkfZM9e858B0OtH^eHOFWR6S6a+m0n6O0{(ScbG$mAPZ$8S&1 zWACh;9+9P$?P#uSp+FW=aUNXs<2?qUx3n1VFp7G~=4y>Hj!O`v2L%we;4&oj`50gJ zqK0Ar7^C at oV>w#2n`o^r$J_IZ1eO9%XV<8R64+SDRF>Vex7Pq$$LdiYSJ at V%IYYDatpqqI-o<%mDZ873`}r=9STS_77yKNw5talgOwR_y| zb^c^mkIUC|u19ft*@+=#83LeO_D7I%Df42uL|P7ZpTqcThy?DX1zmW~f$M@&l})Za zISt^%2+G at KFn+Q~dK&fe$-C23?Cc_R$G|NL-k|H^oL$okQIm&>U*PP*(*ia5+eM%) z^DTKy&qIRG*UJiOdQ>K&8lnoLBQU`=J| z7pFP?(zTl;mR$!|V*uQE03XamlkaP!CqQ*lh5#kIT{P0rz@=txuV5SppylL-HVVZ_P+Jcl=A*RgIi8ULmF$J&w2H^PJtKB$#e-u-I)pZEDygU=zo6FHV*#}J1 zNCI%>SY7IdipjCaxA5p3w7wod^Y4EB zW&FplU&SA2th7hS?DbT1PI>^`rFi<$i&$B0k`^3IgL1poi1kHuYOfuwG|aRR at Na@Zu07Mlf?@{ZBYi^xKEWXO)CJk~OImtdHM2Rmp63pU z at V9v~n55uCxh!kT5g%!*2b?IOX{zoEW;A!|aPys at h2K6e2hX|oaB^Xm@XdJ=fC&c zGwJxdDsT0yfGb`hOCP|WdA|S71ndx}c{IJ^ASrd>yH4yW`4wcB`{v!8REO#M!;@+G zBh&IsoEawf@|*l!ZkK at k^Ec at PPn37OKPiKUmyU za3gtGzO)eXzFob!oF0e6&)W77VGl=8p$9l<3-+*+!y6~bIkwktkTvvuk;g*EY}~}p z|Ai&X$g at -eJdJB9xo@YtzdX-7oJGCl8ez3Evh^kfzi4? zILrwbo12>`+^N|9^yBE0*1!7?|32P)`%V1xy~Nh;h;mYNnPqMPKu1#^HK-$(_n2}Pq`-MN%-Kkm(?us8 z7%v#v#<;m1lq_<7u9rve;$j}NH^Z17UH}|u6-_jnt!U6#a2E+Z zsTch|beM`yH{FVjLeADoyc{GG4H^RS;^=lZy>rLCYj_Fp4v2rSUXPa#*HA3bgftyD zV%K>OgMJ_wQnqPK*{J%>mw(7^=|vg_f+D-7X$qkx=3@#4^wHXKtgWxa1@{kK5 at z}) zmp<75$kc1~czbjn- at QMG!?P}YKaK~>wfO0aCkX=E)aU>C-~KAz52tc+$St~JlRR$% z at S1Zs@DHt80GOVxmpjj68(v$bejcnZQIBmJVBPqX7W5Y2Y=#Dxivp{Z)l2R+ts<-m~)?O>h1Ds0C3gw z2?#(qA8c-vF{#aF%u)6s%C(Df70k>6%ok>^QSS5EYIoTNC*s&B%Dt5--y99Ng~lp! zjjljKpZ}Nm#{G;h+TkMFFSpj? z_UJIS0C?NmG>YL{$2KaHA3u8zaNdl)lhddn`~TPf$N!r+h;xkopx*4!k at s%MuY8xi zKO7FvNu5m4SnECXaM;bmt*snWcyxM{GU;Th8+4amgjT(k-xzW>FZs|wIkCg_6zxrM zp?+A5a+?lmbL2J2xm~2TB0Yc9pND!VyLw6A#){wM%x;1v!~9QFayE!uO~D~FIo=HY zB(~OW=^fNt;&m~0H^mV_dKEBJo_*#~g$f9nuN=1WgD}ZT=0UH%L3nM*@9u)0FP at NS z=8L0v%E~*Ynf?&z1~FVtDrv&CJY}dRKUAT*af`;g_T_UsFXH?&#_}mUBYi>ybS$&>3BtK-_w*66dV9FhM;>s&4Uy zX-OOMS>-!d)DRCO2k at jSk2;T&X?bM+NTZ^0qCLX>@|WK~h=*WZlrSk2!RLA~J(qV2 z=JBv&M;)JAwP7!87m3>)6JcpwAwm$By*k+=P`Yk)EI7%k0q at L>F8Q9gpu?RE5}$zyLW>#T378yR^e97os_%w-04NtaCR5jL#tE0eMT5V~KJI2DSiA>*N881VcHq zZY~+fK`zD`6s15}b-B6fe|0BGsPKf9r?5GHrjaL~3k-!4Ldit7p1py5h$6#!LB zCG2F4!~NY at A+JuB(0et-S+K;D&^XMF?T5Q_R11Q z{u1EjEN8&vNm6*-o8J~ z_JBN;tB^w*c$Gr{b`@)D8{tCJUGn6ZN)^%=8aV#Zi96N$eU~|g4!GNXM>Xg z45<@>uH&3?-H_Sy>>3`5*fW2|q2YJdud|%zpt*wYM%=arZQZRbHvyA0R4|+_rtA;{ zcc^h(pY2t5m(U%5MclbG5I|H7=uSGelHI{!6>w8qM1r7I=s9lD$Z4(QLhJ`8-RMK} zmmfdQNf7A`0gzlH7lW=7Duy|6;R at dD!Y^I;&Kbc!{rm+W!u1`;@pyAR$86SSZ^ETZ znt(HxB$u381)*vx{!*cE4ofBET)_={%`rAWMMuodKyr` z!2AMrKAqs}m^7~E>j2%imCaiP(K#tZT0 at H~FEcNuTa0sPe82?>3(yBoWwWh+G$`XS(bd1EIQHy!{C zhtWl$zj*dI{`4m=V$eB_CG^#_{kZ5nyNMh!^7YrRWB<6F-9gRu?Xn*@Ab7RqTA!{= zaEkG{j%QD|V+9=`cyd^PLtLDcV8bUJn9y$rz3_-ehMsF at E8BH^D_GHE%74e>UcqzP z3x_UbcQK0Je_CT_?5771oyMIU-{#o9^w at K4J*9!;+NF0&*Dwt<&aMoQljC?V6(RCg zw$kFrGX at MGs$KF at uVCIo1|3iB(lt3&idXdZ`D!_9w26yrySDva(urED+AGIVWCFXOfPfCozVR8;rx>){PUEXB|Jfpni&ukFpk%wny?oc8K@(>j6?(M}4->s~! z=PY2s%q^Af;Qxc8!{}agQh02Ex~!U}$DBR!4xpcWuBQjOnZ*yV2Y+LOpERRVX)uel%eG1iT<# zWC`#G4Qm)`8E}B%f>wej7xLEomJ1YX9ppjs?f50VTegN&oau#CSfHf?(R1oMV8d3l zGg))D4a-1U-ShKsjXuZnIm`3ptepl1Q2<2rVt02hwgCcEV-?^?bOz45kI+DgU_Z z$$X9_%yDOw`}#%$>DqCnlT1%=+FKeMS2R0zk2(PD4lfSlvnR{3*#xu!d<9|)Kzn(| zZZ>yz=_6mq0Gzi6`zcQ!J$e{BZkNWlPC`lJ17FNj2QI?gNBM!t07cg*mg{)?_9&MV zYQqb!_uj|h$svGXJ%0JoN3q#jg9m5gYe37}_C=fkGLE44{MnJKkON z!t?+0-+TqY9mW>Q`X`UK;(2p6KH89`i}2$x7FV_sc)7-A at 1hNzZ)2qexIOR1Z at zv7 z0F0bivI6UT4xoC(vsJfXL*LxOr>F4ucL&F at dycMh>6h)T;d8yZiw^(Qg6wjGzy^zFOd=$#$JXAjroXFIK!yXxnj>0REH*Pc9j z3LWO-Z-4t$yxu>I#>RG>!*}D_VlE at 2hx*y`=kb#-K10Wh;??W#;_cyab`fD?kXyYp z$R+i?sLp`*l#8biwvw(#fPZO06Sj<*gpTSi!JWabbM^KmylWSge5?0Qqm+Zvd1g11 zUO|DLo*H$9Mz5Lxk=`)4-gsffyP(G_F#?CT{VmYUu1anuFhI`KbJ-ouS(@m%B(j(? zkDN_VkB<5Du$L+Uhw*Z4{ORd2f1HJAhP*ck+D1%hrmHu_Zw>iY)*${!7-2kt|8tZ&oNMwp-U zz;RYld6teomo7g%^9wyE%?dpYp7Y>&b9V zJsAhyvW}~`3+0K2*HB^bABQ|Op|7zB at Z7z_^7_TqwX;Iy9bqo(N5_S33U}V*AL&ovIj- z=kf5tMyz32rfKPGV4gqRfob}2e0T`bhPk`FGSOhU9xarztKTo7cord|G&%$jxD at p8 zW|&=Kc40ojz&%(5*pa2v)6=+yiao%g-G+iPD}RO>x`8S z*s8bzt?#~j7nh)U*JE>#zHVzp+V0vht#mz;c2~(XwlFmMmN5Y&3?M_;-`@qSUg(K& z04EG#a4eTg|FvnJq(xS++6o;UKSXsFDpT}#H3uAJO)WH3lT<%}hb zK%3`w!#dS{yH0C~G;GD$)jzFZ^R0rB>$So30&s;vz?)O+>x<9_FnoE5k-ko2E6+H) zRO6%YwENwxyB-Y%*R6Z>@L>YO0l-)Ttm1HDkgKRaTx-S7YS}Z*Nm)F-U2Y4P3u}sHNc^D?~Ga-C)SSb+(R%I^_*&?+uFgrEM z21AZt#TaP}udash)`)6D`SAT5MohqeamjHt6^ETsoc2&8vp4b4gIertGyt099p0#; zRBWIO;1Tz3cAxJvl*X5 at -^IbakF7c&adRbQQo3sxq`hNhXY0+R)z^n-@#>@( zC-BO(iko^IL*L!=ZVVgS*+soU9sc6kc6_{i6Cbb6#TSp)b6chJPCseXfwteh-HUHu zy+P?B?Q<<;65eaA#03ql<(YB3+*yw&YmFRk;l96i-M>9Ki*NRi;}7qTWA({L at uz?J zFXD_=`(OXDFr*t|wMpNdn3YRS! zK?{LFS=5~0Jh%MvmfP#Odkt zz=LnNP)?M`YGPz)Mepi7L4;vNt?UnJHW)5pIkZzR+)5&*9D0{h# zi1KHAlZFQnn-Zyvk;x|yxd(fZ?Nhh+B;E~%|rjq*%<|DgoIrtRb zL}x%i$Rte3AmrShjR`|;Cn%zUUPwD zasJqCu9J)Okq>*Slp*COmxe=Ll#ASuL)#DUrhZ0dTpCWBBnT|d1R7h|1#LZq$@0mI zSB3k(Cy#$L$dp(_(wtOa zRk?hhOv<&b$`l4bfn5g{e9Ujbq2+d*kzPSPK^HD=2v9qA at mz@gXy;)#p<;^n?W(Zb z$L_gR408*?Y$%)@8sJ=U8zQZMY&Ln%=T3rf0Ol;Ue}e&(&$2%su+ajrwTK6^ON*1N z%pkb7NcqkkP3*n}yTr-aS)6g)fb5r-n}9r*kr517fwytm#t3Qb;rz1e1jVQ5$xOsm zS};~P2Awjxxa+{Nj(|SBRiAzII42djwc2H`9asGx4DMEFfJ)A5fSyf^@q-mW4nSwE zQI7_O#5n%Vk41%Mp_6y6=5$F81}CZHZAT_c}U2#>S>dVOaq zK@$XIp}v&fPrHO&mg9!{>;W=QJDuoshjDap2Co3d?Dm6iT%XQ~F&7+88kt^Pj(v>m zyQ9+ef6=|l}`Ea%OBQ82M5VjF8HIdK~rgIi6 at 1K&u+hB|`XS5xxk3 zS}sGx6W#ZY9TViae{zZ^@n`@X+MvQ+fCp+AYS$Wcpe_( z+vEKs=r@{a&@8M07SHwXhmz-uj1=H z8d_Tq<9c~5E^d&Mg=X$9<9Nw;-~J(HuDbBtO#JC5FX9(J`82jRHjobhC2?QZmg39b zzsj+xn at h-P_cVt4@8O+Mj-z$0`QQBhtN7KIU&a2>3A7o<`{Se7F|G z*j!6m+jTDJb`RY7`9^m2w}-cJ+;^rgjk*3P4rmmpHx?U64Rt1e9qsSMGu5deEVR#)I@ z41=rvZ*FeDC&;n7jI#@}_K^X*oyX+2gZ#7r$=lFmjXK*w-X1}tRBICoIL7GVqenF48d*=>vs2{qDkqg}Z?5LJqsNaQ15%gc>GS9D z(_j1|8m%<|;%@GWvb?fExsY}EP`=h6+2y5?FM19h=5SAChpmjSHO7bsWe}#M{-;dp zWf$4jh*fK$YMk`4=eC1fs|yq8!Jk8POb%&D9a4NR$dYn>Wp z69dn at lX0OZIdsx^zN6vfNLqRShllx}(4}s=lP6$!@t^6e>*7yGX-zU-^HOZGk1fH*W<@M64iFrv|Zo<*Wp7`g*$FIna|0T zcJp0(a8j>yUxwn0;=%6Ej^hB{bGltk8afgR?(!9HLSlRW%h1P4x4SYX64|bpy z= zvoZ-J>CcTS_|R}yFMljdUZ~zT-2eT<@BdzW&?XU7{`P_ZV;RRS%E{$VDlnMOJuA2x zWl;A3qqnuXil73BCf=CA`DxVAI6r^(ES4eAVt!&p4C9uH5!`*g`5>M at d>B0{O9gg0 z=)`!?%k{h59iRbYN!dEemuk$tHr*D_tmr~^Jdn!q>avr&XP_FRrvc~r^;8*H at 1V`j zX&an|@zBVvt^v$y>8Y?qU^nO?id}(Rgu#|zC|BptO`m1T^yHMiY;!YyD!+>na~v6( zH{H%pcQ&GPah9OQczxHk+E&)ql9Z0kLzZ*UX|Cu`<>wx at gn0nl;sOjea%Tz!jC{jf z7Rc at JT(iur$ZWmOkZ(OvE{!5s(*2#DDmY89BVe+g?7kG#P$8sXOJ^R#*~}d$-XCAY zn-dqg#SnLTan?SI2OACQVJkPicRb?=aNBmKD&WFyQHA8B?OfxjSXp1o8P9sz9AG~W zusL{ll>5Kd8vru|*R=_|m))qjGs*f^OaX?z{_b_IyXTsW?k}8M)bFRfis}3sVI4g~t^;DmtK?3h6VJ`A)t8*v-bQHSu_ at hQq{DkoFf3hu*?!|7U_gVPUt!#F&@NN=pe4Qc{bWMPps`%bo at jvs8S z$JW*c%4-Ioc(jb`Gg{`rsjH07%DE at f`s2D-hOR_bT4)pT)uZ z-Dr&a at qEo$tvB(1{OA8Te)iE*WZ^XWm)9}Bv=VOsAb<1Qui|-Lm*1e at 7FIXnp0-yEFK zKt_*1PbV*}tgpbkLI4_HiY%h5q1WTRM8j8a=DHqw^rAB7_IeJH=+i*cGpeq0!SV|L ztqbP6C-xPM49B_7&MrWkGFik0#r4Xh2M~SJ9}iMjQtAJ*k7`Fn at EQekkq%W^kQ#oM-J>!{IvDJ3*QT at DQdR6>-4Xxkm;0|e3 zz)F%88)g2?i@#BvyjA at +Kn32H5A;f!-d!Nh^t^H3*o)_{#AkZty6B9g(_KC+^M^Dt z-+8;F?>WcQX=tSbdgEFeO|BCsOrDcU%+nYYqd+q$BwT at XHpR#;Db zF5g%VFDOCg-!jW%$?KEridK~e&@ribpTqD00A_8LP(3tA%zrRUUbz3wKlJ_Ij}JzI zkOs$r88pC#M9x+!gcIx}lK|GLd%9i67*7j%1NhSum5ZFBIM*TiXB*q`F(6($Mrs(=J|z^s5ZA1we&6?p|+WZc#>_#{j4)(=#oA(HzX;9=AAWSczNdP2CM>y=)!32 at 3fn+QMcGUA)bf%Iz| zn`w;qTw(+O)5j>D0q_KN=k4Qo2%y*oZ0H at eYs9WwCt@tt8vyfBv=IUU?;4=iLCFJ* zuDsyZZ?(BPxX-aDPK<%>7j}ttvYT%eP`Q6}o*-MnY%Mo)ou$?0Vr*a_!8N(OOYYf9 zsU0*6f`uOeVjPYkftwQO1_n$eq_(lU##z+PzMZ=Py6G8F$N{GcyK4yM*biutW0Ih^ zi#Ojm?0`B{325kUsLaM~9+PUzw-7*gWM|x&1k>fVc-d|qD at AmiO z^=T*T>lcq6##4Zs%LZM+Z+da-v at n%H_r4y_EyR~^06u%i(L+{DdyTTM!;>0yyF#&V#M^=-G4Py~(kSA3uJQ6P~2PH}BuX|MsiDi$34~*+2P9>g-AE?jPhtoik+R ztCL=Q`R*Xzyg!LP`G3?}jGsQ+ju#J_ at pOGD7eaS9!tVRSoY~&t8ygD$>Sv$F!__6^ z;0&1?#mAd~FhKv&U>IX~_XI+tkzX5%pMLx_K6~*fCpOs7I&ELZ9{GRub}uK^JbnC> z#!@X_zkVHGfBTC1y^6=1t@!-KW6HA;E6t@`j!1AgLa#WqV1A(<3rnRpVoW_b3)vor z>&voEs4E5Ny?_^n`@7XQ18PBbL>xBXhQEtf*}t9f!}IFc>e>KDEh^0 z7&PRm7m4LAAe-rJOWh+tq4AYx^bu!uuEPklB?3S_K-r@)c`kqXone9-iove(W?JYj zL51>bP^Jx)&GWB-q6D=EaS>$!fCa>4nI>_TwKjQ+-{}Q~P68nd=k4t3o4i|M`w)z) z%I}W_zpwITklq#DGHref9t1FUu>)VS{w<%g#Rb>i_qsY)&%MrWN9w!^S+0BM`?)nA z9 at 4q`Et$-{?|YQV3*?jXSF^rL8AuQPmSN;h@`+0q at p;H~f-*p{+`s|UHIYkU4W3f z;thWf0D4VaUKgW at QA4qo3a|hOG>Ufsu$!q(M+ at bj-8X=$=S$1+sIe3;RySh~A#zV% zJzXu7^~04`tYT!0>j>p_g`yjw5{H0DCn&i1sVi=~Kk)J4NsiO75+GDbAH$_bZ^gCs zmX|U=Z4kQ3_JWG-^SsjsaH3$hH`n4BhP6q&ZkZ+%stoFYmsOZ+835_#_O~E^4XcsNnJfCVzi$5{nqVdVPVq&AlgpX|rzCS*VF8RHr{#^&t zJ#tq7s*g7|XsI at 07TP#TP&4-faB!-~K8m8m&Kh8v6j# z-+c2L8qLLXfaAjz>U8cl{`^mW7H_}(y;G}Woq9gr-H$JS{hQol`Ct9xKaD@#T#DMb zPu_;v2wBvtNQ2`KrzdgH9mMk1gIw0g<)qT!18mMOx^Z!Q9*gArCp)XLVmHq84Pe at F zn(z=n(uTtrU^Ug;ig#!I_z%B(9lJ*W(L z2F?atN`ry{0eq at 1=LBcS_1XD3WC0ujqDBM26*^&MYb(a&;ly!|$$)i$T*P;~$MJ?d zy6a7k@(s{cdanQM*`t_723=5o4Owy9xxVY8+Q34FoGp0J>Bd33%Wq`U796swMO$)d zPQRUo&e`xOe6M`j`;m)KlZIv0sNDfT57N&D64~+n?+2~+hcHIS{07cQc`>915IIc% zNO{Ze0`ipg^x`0&0sz-(qiRwoSI>$OE$Mn~{OV!#U3x1MfRubx_@}&G?2$$d^I?i&k&E)$2*_hIvWJBq8@~rR;arh4OG#@^9D2PKC)Wc&ZyK%47F|te at +jE#*z|^hw$_9^(HNE%? z+*^PSmEQJQ1*oip++q at -=kP7_X`?3BN(z2o14}LuK#-E;OqI z3pZ&|Q&Z(0&n!f~55bdbG0rbPdXl>boW6S%qvL~kpwd>TQBF at cw_+6~Jp=KL*)B3C zh)|cY*XhLtQhWq(JRNr88m3up0T7!meSiVsom`Z+9DE1ed)~`SsoL1I7I0!CL%;ysa(H$GCTqW9?iQ&aU3(;$m#9wX*Bk#g;4ZH|uyr zp1UA%DhkT3=TYG2%top^TM#my-YL6=R$FWNUi<7KY2!M3hHA{D##0ZVw9`W+Gh0ti zwD9 at jyaQV&0z>&`W@|AR!$h-- at n+B2f8!iyH3wo?Xt=zIAcj^6^i{DtX+*Yi_Mcro zso=@aG622Z?nDEKn76D{ju70=#_r)o>Gq@!ZYZ~d!}m{*;~087kiP|hZ>_G9 z)Ks(qK(`2p^*2k^w>#~aZ!M8$=yTc4nTvLTy?pjGRss6C7%&Q^3lJCN3NmaF3O1J; zi|I{mQ*SC8y|Ou}gtHz91a8W8A^1O>JZ54e-b1_1B)Q&6vm*c_HX9+gmz1yWhvlL5?(}bRV0O1JWcuQX04|o$Ww|8`ek(~jgtmT-r8H|`) zEp9FmH|1Js$vevcz>_#UJcRd~DdUF+?_&sXmX^+F9}&m5 at WHR%?8P~}FuIx{-+T{X z(d+#hpxH$UK7I5Q0Qfjo1wPRD7SPlIV5#Nm#CzL;KjHTm&mYD=`N_xeNrTjSXEBZP zRf%?vJ2?*0uFrq}+b?4QQ1h36 at lUfs=F%^H==UH0`d9JI at 4t(mJlTnV`Ln07y*y6? zXo-V{8{q!p(mk(Hyz`BCO?)>CtMTP`0MBpVc}?Sseze}~Ld>0tpktRt zWEZ|2!NViCNuy`H?zE)Qa&l2F)=wA#CTtugz)_#8*STM82xcl}@rR)R2$G+G0KPCI zgbH+2ATTH0kzr+5qi1~S&A|{j&e at s&0^alpBI^kl)qlL_y8P^WFy@>S!^lv zeSlVIRL+$rPY)jz!N+{3LGV7ZCQxz$pw170U=mSY;JMqQ3PtYX<$iT-{Prjrk|tG| z2o)HwLh(SALpm6&AN6e&%u=2w#PxcNZSr-$t7u7TNpD}%*5o9R}k#b??vdiF~2n7IwMomHE{JDKOU)r;T%ni9JM4$}k`D zjJ8?N-xc3FM8XM?j?okNxx|r^H|$X~4jWzG at 1n;YU!2<^l9$TP7n_Rh!QSPh5Q{CZ zP>#$G^{)k<0CGT$zqWUeZ-A%??4(l#lBGxHi(k at OnJ9JOS-$1`LjcH~zaRMMF5LTV zWI2mBFY-qDP4JoFe%JDkhr$ehEQoaT{3CJCkn}u6bv)D4)n@$U(SulnRD+ZKSU{K_ ztgT|$_6xe7bylvP8~1?4Fwy+Gq$1o)_RaB0>~+uMdI6$ixLiiX*;mf^lnXaddSjIR z-upK(i=ltIvz3!e+9!vxy0{cOJC9;`Go4E+oC632F}ZO*O8?Ka8R8|Pjj4eWr`Gsa29G%Bmr=M=;DJ0|? zkT^>-sR8O7m#I_7j5$`U*Kg;TK0V5Mb*8A_F(A}MGpp`%59wDaU%PTs z0YO7Os_uz9O+8sYY3mrM9FNLj&~OSS1ehz$GI-y3hJ5RxXK at j*qUWN6g6O%nA!%=J zZs+rJ0K6?h>+0FFXJv*n{OERodNP{;2lM*so9|)?;Nem$?wP&+em~y5d7Z7n%?%nR z#D8*r5|5ufPcLTEZbuZ#RrfRofS#q9>sSZ)J^$ph_~x5eDIYc at -XHD*iUH;D$kD-G zeEjHfoE{(Ngn`BN&3JX#rtZ4%MlCuwbMYDwI8B`%AU}3(JbMCQL;>%<`3^90n%#Yy z>#MP8cP;?+<=RU8qt9Q&N-bh at 0mE}~96Ouv1-v96xgDq&r{mpuJHDmPoz<>vxqp zSSMd!zkM6M&RNb{{^iRj at rx&`@qD$O`BO&r&UYMNB(~M)gNMYwUzs4kJ`uaPrmpxp7DEUYc1>cum1Me at tap~Vj5X^`s87J zw7C#lJIKJ^VSIf+Lra5;+%+iU>Cp+Y-G~!_Z!9)rW_cs_$jf_p{Sy9gzwXD4nOtK` zUeNeB-p~!;Z6M?rJ!Cw+e$+26n~#RAcCbC7Hj8InvlAjzNC;Ng!RHBg~EqbQY$@ z-U)$_Cd--MQU>FZHqy&g0kZ5yA(eh$&&;x+@@(b1B&fm7{N#O}`$wHZ8H}d_6{%~u zC$^&0l+maDDIO- at vwjQ$jk_=ba--om^RM2u00IF4n)wn!>Nyj*c|QT-1UOpaJVWo2 zU%unH=c=pMYxifb0OSwPndv_g3eBr>mvFy+{B5Y77aL{y$u-ed^=%zg=_KtYzXd&p z4+#BBa9E&dwaKj1nkVCEnRS?t0LN$w4IdDaV z;^oGElB^!NG0&_I^?B*iEwgirp6A;4cp+DkAltdlCBl`P5fG>MsABXAbwxZ?d9&`J zt-lS_PUg=;$AlheL)vyomy5?R%SOC ziWOe at WMdKGVWbn{ns_0FekM%xFl3y7`Frq^YB2?LVP9OzA6oRz(fk$3!rpm}W-fQCTm z(KyF2xy!^2!lw~+$AeYCqTQVue+nE67!5hKgTVCwfYSgIdG+<{w{byTfAZ1u*x7!N zgYR9gWr=z}0O(wtcSy5%7%t9EV}3l0Cm7vl+iS7WTFhNouDPc`LMV))LagzyE0Da9 zziy|O`H;SPJ at lCAC6WbIXgPVtE^^9`I!PgX50Fhz2amYqjZ&?^X&9SJ%jw!zM4Y+h zEM&c8PV2cceT9BzA(hL<>PFU)lU2^z?Kp*R?ZRDbF2yV at Q=grmp2g1EMlM=?c66Ky zY^mAEC5If-X+4++*TGYjB$y=)m%_1r1ow4-U!9V#%-^CU7XeD-h5D(_EygiG at 2l^= zj;*IV at h5-wCkftfp~r9j_BT1Z`r-4J(O7#BbM+?IP6}zqd+O2c+`ik}i977Ob`Rdg9C>s3gLP=}3=sOye)@TQ at puP7cM^4nTwHd at N9leNNGt&ingGfx zXzya*zy9s-0Jd*pWkC?@nt6j*-*^xoKl_Bb05D#;?%;G>!>e6n at A&)za7KgW>?}QW zD;rx>iE=)jia94rkstTt)I-^5HLcj#sMlkAX+Bn>OCHA11KE(@7g{t}00Ml!&{)bw zkIM4|Fn4l#5&MTnvD8|Ng_X5ncpDzG+Gs7Nn0x@1BJ zw~cbgl(}gPviyXwr-32gQ^=TIQ3w$7BQO!zz?;15VzBBLudfCePl)g21}Ajo7(Dcf z4Is;@H#5N*{HNEW0%pFaW_Fu6C%$Y`wk9%gLj&jn-gSbB6Nir7&Jj6r0Su~#?@9Lt z9X&Ol at -w1gs(j}dS<^&VuF;FyF7sfy@;=|CaU^Ik$uR$^*EDjadn+0MKYtFPG?fXw0TrLfOGbxHm~R^EClF0wtd0 ztYFeDdb~vBwMQ}ZJd?JTlj{V8d6r(>HF82pRjPjo>ILJ`JEpBQZR5y#l76ILeeW|v zrkKAc`Qumh%y9qr*xt8)Ae48ru-`kES-sN3*voxibw?42nW=I%|Ava9RbH!jvP+W> zZP0p7VDG2=)&hEVMFJNu*Sn|Z-TiW%g-_MO-ltH|9zH#Qg2y(E>Z&gE z5=sw)H1u$2khw&^OKW at MhP)@e@;&UeRjs|TQKjq%0(0g& z?`OlzH15j#Ax#ehMa|zOe`WZD*WNGrksc_Myt#F-~L#zb@~s5yY#*vzhNHa{po|P*rKK%ql9)~ zfEI{;;dX?PtVNTScnu~0?RT%^WdArlNzO<;!>GMFJ;-g1K7al(O6NKaXka||FtWdY z`zFq4LC>PdM<{N)bmstA>s+^Bnwh~UYE-h_2O~h0N$q0D)&~GkCKUf)j${-W14SYLL}>Jo3I1|3{40#z#UM_)05V#GuHn_g zfX>$!qCvUOG5#`^U{-%a3xlw}>^5%z!rnzZ+TM;veF*?K%yrFn?V?^-j_LYxu5q-5 z;b<*6(IBGJE^8JpH=Ef_s{7kn(7tDPr at Ov9dGaWB0OoGhHPpq9bba&cZL}}CvHj>t z at nXGwP1^08E%{`t8JhsWwPx8HYNEG4*^+-MRG41#t)hm6`^?#a5(hS%V>c z9hbSt=TvD<08)YM0!nQWmORI=Hm$c3Y!#DxBo(l at eOAe?9fZ2+- z3tvE|^a|2XX<*E_{vP7dMTzCQm;GKm04Tbn%$WQ-hScsiJu-HeJC at d#sLCj3ox!^u zc-{4-%+qDJ9ar7+sND|Y$@)?}c9G_Hgb2 zH1rf;cqKhcE~RsN(#i3KSLFGeG~eizqOq`015{GJ8F=BrgN^8q``H-! z06AyuwvYF7!b0c#3`6WPL&y;{-GS~~Yis184yc=nL-^}Azxs8&*m)eEefC-G9v>#K zU0+^Jn*8k_eivQnE1!-?AC^g8x64=${9pXpFLFl~$Jbu=FQE5DE`8JlbS~A3(NIk9cjYx-Tq;`J2;9> z8Yn;g?30|3(%FAUgRyMe=W;chE}1jqwrb~baC8!N>Z!51hCaH8_kg{rnhnCm7tZ~u*D|x!Mv*$juENQ9BYx{q)gx!Om!1$C3%Smp at e-F_@pbgTW9sY?{J2iK8d_<6 z*6YN@^)NaJn0rXuM at hhA&fGFIJx_P}Ezqi0ebsNT!R=tKdS z;Z85A)%cwNEH#{g3v`J0HJa*0y?_Eh{r2izfd+{tXw3JxsZ6_=ZxwgOclWylNqRq2 zz)!=Q*OX5HDDd?ALdXkr*6BuAXMO^I#&SgkA;fP{QBNGyNIO&n&AFf&!N0mz2~q6^Isj(BYz93iCmdX z4<~sp^;UqIzXgRkB#Sb*E0&gxl9XuVfU{*+Hr*nzR88<;YI0XqucIXsW0%$?qW#eJ(43=rLHr* zBw(o_<0$Fp#p%(_t38z+K_Qs6+Acmw*i3n zo>viP0q=kJ$AY=}hr(TYe?N^Gq_2e%x0Ss`OkXn;56Zv9s|2g^qy+03P at H@eV`qw$qIPjCBqZo_G0;VQbRz z-fFGHHbzs>_Imequ31*cu+=es&3ZGvak`qXc;5l}vj8u<8r=Ku_7a0gB|1hecaW$7 z^w3Jx!jb9&D>@Yg!6irxcNO+Mn#zzjMHo0#o-*KlrI>rk$_V_vt9Urbv%t?KNXpAH zA!?tz+49yqc7qu8uBYSt@;XlX*Kyt-$I0agFoU6?wcmhtrx<9#Qm%ZC)aA|?Gl0p_ zWnA^U at yRnm*)j%t9Nz#WUhN-6592xoon`=416p7^n@(a_h{0tqY2%*EF5YZj-tX?` zn5I*J!iBRPSM`uAr(o+XxIF8|?(SiBdp&skBp&QMN)N<2_3IGIM_Vhoj+3BGfv`0u zd2(ZHB+_wnj)RPUX=VXzIFk?)Q97 z`5QKJ1V_-)!M`q at BiK{X+x4dxQ?IC91%gZW#}&xi{U$rfkJnBbn&#W(T0CejMI9N^ z%lBmKQLIr9CxA1(;M1h7!g62Z8+gRBJ7Hm$hLnT)Ta8xCK_43eXVlwYfBiaMz267C zZ^ZMbPXTezy#W9nO5a-M_3H8}&i0OC_uXE4;y(H0lUSpX7UKa*dxR|3;#s2}i}0f0 z;gr0rA+Ih5`*?jLwl>$}{mEgx`sUl18r{Y+a`^kbUHA!*HUI<;Z>jUe*nod*Sm at mu z0(iGqmt$qwJz)nJ{Q-b?mWCO135uG6ek!ZmY08VJjfT*}rE_TUzdGv2`|g-B+{V$- zVf4=r<8gC3e*W at FJloz#z8GK$-XEQ1!^ZU#PpJ0=C(mrTtPy-O>gV=Q%jhI0S}j2@ zXQP+J+G}xmbP==A@`8A}$}ci!9lBkkvVA=_9j9dMZvcZw)Wah5I6Lpg>E1ErUrRt$ zGz4D)Z0FQB at Tx{repDx5Bhsj)0pgzVsuSe%dBB+F(EB;t5Jqv?iS$^=Gu-z(c{yhy zA~(is(6C%0=T3NWDCcH4gfy6bX*`HQlp6EWEUB-<^(bI zn1G=I21Pd&CqmUlnld{v%-$DLc)m7se3J$}b(ltQl0VMYQPRO%Jl7MVjA;-P44Q{Y zdif6T`n|wN5ZG|2NXAy;_Pr7&Iy4PkNu!jbq+RrPiATL_x*5mhc`@J<07%I1p at Ck)N^B_Q} zg7+Polyt)urJm)Uv`X4?xGWfALtRX|Y2j^`$8uPVKrpX4=dvy6xfu#?7q3W5ud=&u zrA at Twjd=C!Ca>^3w;HsO#Qg+)6P|PoUyj|QZ1x_g-yOT_IkzpO$a7;%>G-uqQze>9P*V1F!Bas61F z60Um^(Ok$boms%&GD>nA<+{^c&It&cD5Eikr%&s71V~t4YR2l;T6C!1)3c+9K_@oYYem=ofC}Wo3nPDLBJ!J at E9<7iE*$c*KoTr5xIbB0fS8|1kQ;CZY%>3 zn~2rkYl1Eivn`8nqdRo=Iipw+X5WJSWqcZQ;L56@!U-E(&;x6<0X z7{u;HKhB`>73EKWK^!hb>zFsYqFhvZE--?W$wi^Rc=>TELB}he^)BP>@mUe-yVYpqtlZMVEp at 8$^81T^FOK0gm3*E0P(httTx1t|yEnj)M69i^ z#OE(QijN*|$I=|%U$)~0pgeyyj0el>IdtLcH*a%1Uk#wyAT4LY>uqwjVD6HFT&R>t zIj)hNfBL7N=lYN?@AG=^1Q72y9P$lsbBd*vMjV}=#>sgn_V!QXY78`(UZnh&xg5%$ zeDQgVdS@|n(~F15 at uvVc$M3%1e;<2$Z{tsX at v~^bCtJ-{^0D-C`JnCAX6yj?rvO&w z`?3!JZg=6G>CzQR=mFrh+dcmv`{~TZcZ{&`MOL|xQL at x zfb?!hQ}On+69TM$68}Pm%Mqnv5F$LYknAi_xraw&hSFrvbY?z`f}D?%M}b>zDN(n zAw2pY|L`?3NaOb5ljx(*_V at N^JT~GCdR{Aw*a3%cEC4oBW$2nx`B$LAE-5%n&xLYc zbr&W;B z1CI*yJ3Kq1q1T3oyU6V&@wrlheC;}Q#)nqQ`b|Sd0la6hfrCa%U at Bd*`;2pCB5yUE zey<86WSKH&>PimcQl6`>*Yu9So9bJ^NP<0-Wu{5IszU2j-6H_h>u>O06-wU9^&C2* z0(})&Dw90&XAYytF}%tt`cVBUOy?V#%A0CFP9{yNB^fFZR|6#cQbrsi#`l9UGaB@((iYL$b%0nW~ z at K~Vk+NF5_c+ at X;>B at snV6(ohLo%I{S}O2o8FB&}JTx2+GwzCBdKTU4G8uye zWsMU2$!FwidZv~=GOp2QPmcU2AEp>o_S^UDUg%&&^ z50?MK7v5LDX7M at Tba+$Tk#%C(EayZ4+)m}l0B6$>iCag0$mGqjwSDclNz>9$y#>l?XT z$2B0XcY2!LuP%N%oVt$Vll}D2Es}>V0NFzf(rV46JzzS!GBBha806dCJzDmC?lnjo zaBkF|>TCN;^J1cw8 z)_^;#AZKG)fyVD4vsb}#CsS0kP@(9-;AY;%j%<01gGdlN~_)=d+ at UI$PsxR=yHr`t|?nwBm1 zbqwXpr_Xboren`!Y(21chm9!vV04+?C^<-%bWF?Yv8%XA{aRiPoRfI4!72FO6P&AX z>}E{E14R`kXOA~9whg;2Z{5R{3-TiP)6?nMdQ-6~(yOcMxu#Pt-p#v1>f{1mJcnm4 z?8cs+hlc^UBMcq%cIOEf^$viogO2Tjd+_j4QBb2nc1f)?>nY&x- at gy{KDM6i0zW!G z&Nb;CJlr9!n>ai=iLHmva<`ciz|0t++JtA<076q^0MNy0{Q2iEa{Su{z+(U?vx~J& zzD}Uo;mKJHT#993DF;?NOKznFm;u08w=<(IK)4fI8*8z$`55Im8}DAdiG#QAVg+FQ z?AcD#mKWpnvKyzJVZ7cykMVRpMl<#J-MjtVdTwX6MY;gdt8Q%5i1_)=c05^k+~@$n ze at I^EV}?3=NtxV3`LAESiUCS at YvW0JM>f|1Os<=Cei1jrKKxLpkw^XaDD%O7dgAN~ zbtr_h>s{MU0N9vC?cZLdtT;|?W??yX*%h=;S(=^$_}$Q8>BJ3SJUs-^#jb4|EDo1< ze9?pTR*sYFU(B~e*f(&>SromK7Sg|cGhVeMr<@{@nmZ~djRAK z*8=?2*RONAB^QTYYOMq2`!RsWpFDjU1NgSK)Qa!+4&(Q4cjI=x9&?UW?slV%uIt^n z50Eg1M#!{)O0Scik}~FJbUA__0eO at yJssRrPuwW4oNXLufQQo4204_;^m1_9WnB^g z!hgl+8IfbN&`*4$N5nCw<^c2$2)vDLc7=JVPLEMwa~+_AXIV*!BWxw<5c zD)dNQ&smLWDBc%j9r_3YlRdcS)8e5lVUkP&z$&d0$~*ZgGN}H}a!p>!Zg_%*+H{@3 zP=)+NufilGU=YAh(yGq)gI$A`&w5E7<+mYun2-RFdw!eedx!C>7yZI(Lv^l#dH;t( zRjxk<0EsY9Req{-1psq at Tyo%j>7Hi~o(tVu%gb3uIlGto5cpNREf2cejr?f+Iw at 4T z=V3a0<6#%B69(lY at 5?tiREEP17K#mWoGZMQHo%-ABg8WtI)<+Rz6=!DIFf!+?zYgs zI+D<&nf1>(0XFwdvkHEn<(%Y4p0l)-2i*IHY+y^CL3|Yt7z~DQbL&?h-Pw{By zeX>x_1psHX1ae*SI047<;(tB>u28`c`NSa;nzGOfo#LtmBy7)2ehQpW&}Fy8K!>$d0a#;}Fqeu8n^;JpTf z-{7}iJB`QD;c?DzbzQn!1o{F)<19R^aeTA4pUkw4Qg))p3KilObB-?&usnYHWU{bv zpTffI01^jpFO!bts0$)tPP+kRJ2#=OJakr)-GWtl4KhRqluL$5i at -x;R;>|~v*UQR zd^>sf?#%tkIk!XN{o;Lui6-glnpX()+_|``vzzs79NUctC~Wtyq75K%kZgYpz|ni^ z7)0W##vQ4g3^l>Re2sYc4xr-_6(g!$V`NvK-aHj$6JYEhUe`+0o$q>d!`>iU;d<+g zO>dqIt{2R4U5;JcTx-UXAe4HaR~f+IdOqB4Z8$2M&%4Y@?-KCZK8a4J4IsVEv77Z~ z3*&SXZM}BtBJ!co2tMsDaNV=qDMk+?!39E>&`3^TSO7q*=y^sc9fwx~ll2udD}ZVPA^9fJ~#s;-%QQN3Bc_f0JgTinfccUI_7gs z+U_EAbO1nFT!JT%0qSdtd^yg{-8`)Ji*6@&_l~*0Kw47(%YK4LXGA+Y+6e*XaSoAL zAVUsYa2%KopB_ALczTA?ozL-fSDkKj+s6R=x%lM8quh>cV~NJn^{~vq20(AGti{HH z6Q!nN34kp4IlsJ!Yve?5^zGq!9MYO_=KXJ9zokV at Ij%=pml`A2;QDxNGd>0cF4j=e z{nL25-iY=3Og!D(2%*Y= z0cD~VCxFAl^In1&L9D|@nt;GXXn2Wg?mBRAR!=hEokl}?cA=%p+YQ$R^^0}sfbmIn zHBH`;G3vdhOjB=NDzh`X1qja2$Qj1B`v>vv=okRph?k#zn&XF$j}D^)s9sxc#kRZJ zAloiu^mhM{x}_0Iy~O7k at X-73&$DEe{YK`}ml_^$HkS%8@$i5&ZU zZb}b|jXORdZjGsNQ~o^-ei&?--pdnQwWpLJBqnD>dt!#JvYo(q7WuDQ0Zt=IDOLm3SBfB!=P zRwE=wWtf!m?}Z6D?&9^F{6d{dW6N2*SJ)!xZtsqDvC?YE-N1b7ssKUjCOxQpHyHMK zkL!Hjqtq)YWZ7M9!A6Y38a#9m%1dK(wETQ6en{E@@_6Xp{nn5%icNZ5<)_$JvPFH% zKjsYTk$}S)GA-z8$Sv7;$MTwwQYWQeJPh6!)EO*mp^Y+7fSmNqGHBl{lks^?JXQT= z930uTo9_#V3%~e{&!nrpZ*o*#n>WKVOl+v z?r=8N8?9K!D9jIfF~`wDxw^@-OTFaGUyN)HmL)#B{M_qTAn_gpY`0z)MeO8|t>wj7 zMzL(7^w*lrtSrHyYxOOm=v at vY_Xe4nc*`4rn-)9Q9*Mb;>jKTlXV&Lqx?+L=nGZ at Ev3JG!DAegp#Tn*EiMM5I5};{S*M#GtmfKkOhM0Mj8}&^W|x*@ zroI#d7_w}8MjoM+vol at KPVvg^n#hmq8S1Wge5BpP?x>R6^8lg(@Gv_wj?Vc}OhLn~ zm1Y{A&gprM=WI3CV|8;IA^|FEPAa$o6txoo&H*Zy0Dvo7+i`Ny%l(O+={zK at Y#j=2 zsW%%mxluQjU}Io;Ne@#!x5#Qx84C!JV^NcS&|2D!^iXnN;dV1|_fzI^nKS?o*+shm zU+IcHK0eP0MBlx8OFjX;(8lFy761vS7yUSbjy;fR7vQ}1 at L^nB4PtNiUCgaF0Wb at 3 z3qWjeURzs<&F#&oHx{DTYsbOCnbm(#h&$OCL0LzQmfIR>pZ(bv at lSs7Ipvs5 z&$#vV)wfO%>H(Z at Vyy*0U0DXyLTVZvD(W_%_x0gPbW!}xwRP%hAt(6Ekp37MeemER z<#t#DfFIB_PhF=xEdacs%_VfOCxA+e5se~cUd+NS~(0Ev`eQ=oyHo35cJe6GCP1qR4Upk;R# zU`ri=9uaI6!-G!J_!5T=P8-GTi;L93j<>S$gmsM>WT?(JFSj2 at 1DV4nySq}A>1gh&UP)(Ue<(>5?d4b;0Jaze`?Dvn#K1f65 zz+m31Z#@hd-=y4sKR_$WR)s2u1<;gW8kNnu57aXaXzhO1k|y^RR_CMVJtKn2XYQA7 zH?aJcKv3S}S%MrQzQSG at SK2lIk(Rt_xgEpj*mHe<*~=qe!-LN1O}dZ|&sGV=Ob;O0 zC3D2i;aKY25rv0R%#a|9FCByKSi$M(#e7oHwc-nd`I3LUUltL+{|s5;T!A%dmgmXg z4bRs8-TgZNNC`8K=p*c46-V+OJSESR_jUFa`(taQ|6u at FW!gw& zJR_B1JbRs8mprRN^;_mO+<#`c&%EiynudIy$zoxlWWzj9PZXCSJ&WEpzKYYxLk$G) zQt7ag8lOJ2vWx%j2^X1D4bhRTiW9hWvo`KMeUT5lhuwAHV1bd1mF7Lb9_ zIj2S6#@K7%kIv6x8PNOP``x&K7SF%< at h!#>(a$_vXEL+-$o(csTcw=z zqRa;CvJCnyooFBA<#zmrO3eJ|Z85*@#9&^_qN6TFfOsNo z8kY1ZWL;fP=-kIB4ltYxDa1BZ+^>0keVw#wxpa)c(_I`KJLv?RAqL&Wf^VUx<*aGE z;KfvA9CwOFqen13`9$xR?_1A~fs#j6fkXbefAHpfBYyJiMQpZK{$R9s_h+ zb{5cEY{RF8e5xljOb!njqmMcmrM8LD}sboC5f}hTT-)%`xClJ&As^CnUXP z8aU)tK3$n%ghZNK^6fAj39V`!dqz&PA z8YIr at GWp-2k<`JcXMB!_0{m^{NH4#Q4u at 6P$jYq>IUI}S?jXv54L^Zb29lPSbNx~I zn7mxtI3thd$;Ro>LL}`=9#i;`x611xzpMX?9V_`OzZ3f8_+dkq$%8T~rwKTSH at 63c zPtBXMWpF}*LEV)enEXyaSK_GXWBte*>I&~UR3_ygx)=mIi=FM^GBzpFy at TMS7I>_r)H+i97sZ&#(WS{RWUn!x$RGQ~C=R7Jt z at -(g9|3Cxt at 3~-_QWit?tvp!$7F3RqckzMtzS7N>G2f*u4rfZZ&UHm!vzHVUub^k; zOY7DGXPsip>Ei7j6=0-ko^|{z$)DTU3K?W_o{Qnr1#%7OkOV` zftd=1b22 at IG&z3j-ScJbSQUrgI(8+4C+<&A7}{qg?ot^glontKGK7d1!e_dEfU*e` zEgw3nXO_IwY~>^H63*F^*9e#60Io0?Q?$6(0SgaToAG$96`O#&tM)0zY$;dbw=2u# zUq=0&oJHKu?gSVn!%*>5LN3>Up*L934(xY{84daXML!;(d@E}f%?Qibg<0;$mW#5gpBcBu&t-F4w=dLd4+jOT+>{Xy!JtRey73UWxPY(Y22-&pA-tE0l0(=2 z`T04eE&^1(FW_1L=?*k+-tXrw6m^WP>FFht&X&{d{M?-*`HsUFJgZQ=>Dm2ModjWn zK>>5kLpK%I*f}#zu$O{INv(qvbbz?ZY!2pjV!%?(RvdKKi$Y!;x4H;W(nw!i4s+6s zYsc+f^rJI&hVX2RpqJ%yITBTu<@2cMcGq$w&(g}YeXdt?3~$#sPru at y2Sdd#R_j)5magwBc_XJ*|2(9zA^;$I!@SP at E`4^CS7li4QBZ zY!;>{56ov*tXssnHsUsb>CtLE9yDg71s!bAxFpg%gl)q&2bAwy%KP=%Npu0>A3t~) zUHIsm at Afca$RhDjig>yS at Vn{6KYOwrA2n;l3;2gO@=BLW9RKi=y1B&u3Tk z;?xkHr*XHunhN%tZ+ at TaDLSbucYdMH9ddBgy-1JutGBzcxC9*=>$&U9!rE5MwASKp zzWpX%9iAW?#app}jJTfOMzfhbdU8?rus#J8J6qhzDvp74t3><4W*5{^@ZFTVz&K0; zUhQeJ?=<4R$JxfoQVse5MD3P#c!!|Encad*yWj=3PDar)F;8Pcl>~e0zQ{CGU=AnI z5Laa>9>A%%)N7;ByUWvuyjOXu?iunvUsk^tNzdSW6#!J1ly1gibhCS#AL{nq!TyKaQ$<^VPsv9GW{lsuRW9>7zlUBtPH$+IgL{0VE)k3+u;aK-&qQy8LRZSd zcfKPHO~dOu&{olA^33{~oq?va>W2cV%@5Ho4OGFp8Td!Ebr&g3+Y0nWotZ%F^rt~51pK#m17pK-~xd&AkaED zFLJ~j#L)+2H at b(s`2S-7$Z^O0h0qyb5Z%7HGyv&O%6}J^apbDloK7 z^A*KO#`3w*_$}n+w|jgdxPUBynxHMQ62$R`t<>!6$7tTrvai7~%NS|90XH%HAFr%N z3#G3j5Lw@#*c_+kWRpcIR1aT`_ymX0JX at 5vDCz_$=7o1|0a_!T_pn at pK8k#ZQUuub zNpr-vc9%$JnQ;MyKjVFV7UDta at oGw6{X%e5xSYZ?!8a%mjdajnw z_W~c8unH=*6h_&HcdigXyd?gH`p{ccQ= z2iF4I>vUrm(AP$3yX-|rF9o@>t at U0rs@F at bi~HJynH{alXYH^2E!meWZZc5`J5x{4p=*S&Pj zJ;w_Qu!>g}g66gKcQ+K;@R?`xX1Ck|fXn at +m!b7f9&X1f{A7HWgC1!Ni>FZ_LB0)QizhU6UT&_%^PR1D_UHj+AI0v`Uh-XIegV}5Nak?1 z>|tk=i!j^e|MbyzeDZiJ=6HYq-MiRa+lYmwRxady at b-1w_S^AntwFr&+&hbh4;}y- z>*+myGaScvoy*vz(P0*o|16%ZF2rY>tyr0d z=db&5321U%!7f0n-5FXQu1KaGbQE3v+)Ap#k~E0?6vp$#^ktH*b{r!lp<6 at N#A zn8W^;Y-he&NNj!H4^etT5U)Scx at NmYwao)M={1X0e+RF~-8UZyO1zFfa; z2>l$=VEPJwiY)n7=O||8CFRVg=#$Dgdf%Q4*SBGE?DJ{WC-a%#}N zxC~Bt6+6TCf)mp*S at W(O_L>NRbn&#`-A$ zkmoWZ*TpHKr%T>NczI7?J2USxE+5LT`S*8qojalMy8?g}Ei8d~5deOlS3U&uZ5gV# zGDs&vrXejRA6M^q^}Y8e=@ri;_s!rWSbnz+b;AcYUQl-=y~r0Y^9DRd zRRGYC43!+fF(D4WllVyk8OH9?55S~~(=LxIZ)3zt9Gt88t5SJA5wh(2&QJ*IaxXDM z8!RbB8W2fPkqiovJq8+ZjFW)Ce2fQ|IUdPzUrP|Td3hO46p&lXIMGBS;4&~Sj at rU7 z%pia+MB4-`dQJsFT7{7SoOZ*Kxi+oIcGvxb1t|bdUQyXQBhxVqhUpuG3kBhtb9(;V zRN8TmxsWs4se*HRk zjks{et?T2NKMaB`I1Nd~uoaJ3Y5`~7L)qtTRv%e!>gUz<{}+v<*JTuc{Z^SJcTvdX}B-{@vbDg3aM{Ex!D2FTOiC zrat9w(m&phU;gYT at n@fZ3IJS0=({vV-3iDpuObh6m0f~L&!P*__K>%?M~Be;EDmoL zVg&8vFW=2Qd6P#m?C_~w#x8Yn36JN3v=bRBh7?|vZ%IcUs6c}ud6pwV59bW>{X{pW zKF#~w;am+c&wD)dx$oMW;=bVaM#x_RK*z4?@z#L5lTnUKgb_;)G`N;irBL|V{0cmj zYdwU%=i=!u4dochsvFW!<<+s}{w`pv1mnqbxyavhISZL|%Hc5mHqBSlJ zv~onQ5?uL?dGvk(kHkT_OD-H9QbTX at 9`RQIFaZofeMJuQccG!b3O%b}8VT5Wmb@^b z^CY_o97-s3^Q<-|p*uQh7qy at X=mdR}bL!hWLtSj7LEu$@h|hJClxtWj%T_dV3GQQE z1 at rAu>7KlXukzXCc@>Puq}}z!cMXub`(ZBz$p(1_>6y#QzQ3_KQDD|jbGH!p9`N at Zc0S$$KGP7M-_Sxa-IXD`{d-Cv$OQBSq}m at CpNf?MuHJNg5>`O<1P?gfDtrW4))h0>3~ot zx+r7jK~!$CztCJtSHAU?T^yumSrnKw z2Y}TgSXI4SeMQkIq;@4)Pg!RQ2lstnpd}6Tq*>oNwvcE%ykGV%9rN8y4Eum6;?P^D z8{OZ=;nEc at BU18&u#unqeU}yAgD%;6m4!@KWvhZH`81>ua(7G}*p==(*5 at KTzg2S* z5&*4H*6!;JpbMbKrDN>Yn}JUtZ#D?@*2tkMb6cN9nOG=tM^dII4OAv}*?8?v4F-Rk z5683^(pW$P2eGRRG}1Yfm`2P34T>!Q&x^H{SibDX_~;;>Z>+ at 2XFJfl4}V|ggq$(P z=Uc$jI}W at 5vn#mUiwA(Hjn;DPzke5h_cy?pJihz&-^40l)rFa# zJXlB8;5EQ=eQ7ziHa5ep7w0I~RsSq$KkMY9oB7!7T;;1v%a=h4i5RbPh2d(=74FSQg_2hCc z(qLxJy~^j}pxueDk5A*PQvfe4FzyXtXLw%LOB7PZ*SY285T16Ti8 at 6vp;zYy5ShG+ zT%>B{or#J~K9SSpnUocoi;(=q{cHfqc3j^*n_T-N?{h8Bmp#r+Qx8PRn!_U;UgEF` z-w_}c5Bn$w=-=|9{GIubkNIAG?E8+{6WW-6J at UQlQR)w6&x2G-KFFhI<<rS<7OOHqJPDP!gF(yFAVju(6{8=IDiG}FNHPD&-^GOsCr=7H}luif63&yZuL z34UkDvEiAHsgu6PCT0-Lc zUS08?!L8`zM=^%YiJWAlyhvb#ZA|%mu9L{K^_Pts-nV}L>$`x-o}s!|ovW=dv8ESEkD$wzn8qE8-qEaln-Q8PTmynca>AkHyq0tNw&-#Ovgbe*WOijiwB0zMs!Mm`<1-|hEuyD<%{fJsIh z)2h%z=-4LnyNofz1|q9PAvnj%Syijs+qpelZjg@=|K{C(F8V8Yb?K6_ZO&B8VGx%# zwqk0b5oZ{)(>?|b<`m>4urf{ZS!Vc^v%F>md0_<*s71h~zT~L`%=gw#Al< zYbw|n|Jl|m&r5yTHSCxQmAMK+Z%xCcKq$Y at 1%OuqX4203CXW1_1{Lulo$SJy?(a`d2Eq}XM1xR*{x}(c+w-Zw|=p0H= z7QB_Inj_?r0;t@Ne2*oClOrPV?N`qMX at gAAI zJM)PPFFSM9kd13~A7wJ1Rlch{|L|;~)4MzgcQmZdyr;fTs&TKPUGfK15^qSK>VxV# zMQebpf`1XSouT$uH{uqS#XwP22qOH}CnL zak^e&#RK<)D^$4I#rEoI4n4a#J&DV1mwK6v2D&4AQT(1L)5ak~rtdxT1OWW!C8a+S zs)F4SopAqmRn#9=PL<93?;5Q14za%D9$oKBQoAF5Oa%co4oPdollU#y8 zg~D&WE}u_`p1(ijr`Xaef$~(fqVP<^G-Wm_EhvDSd*jYHdXo2Tv8bf30SZ{vm_ at -R z!iSgwCXx6upwNYIm*;A+41>5Ff@`BSsPG2NzJzgTU~pZOc43AV&dhCGk;b)^gCe(r zY?<^2z4Q*uk&i_R(HrE zdJ3s{H^DnW&zZA|Q58g846#MCHLmjD1~i3sax*lm@?;*e1xTnAw&Q3rkAzAA>5&fV zeS2*+78}dS2S={UNW2bJ2!Qci`y&3y7eC4E7JDZLQKv!jF at S3cy0@Y2IR@}|y9e=y zw|mhUjH2FXWg|pSdAE0wU6)Q^n3{LL?CbP4-@;!t>S7+^x4Vu3+yXSgFK2B4-&Jfb zFUOy}co9GS^kodX?btm%ius2RqXR{M{q3tb-8+m0>g>r%D}MUyY3!`Ekcq1}+S^T| z?5tC}-_K8uqCSIyTxn3xQ^*H01uf4&UIIYte|f4CFE(1SL4#}=daqOOE)8-CJ-f4u z at pbPi{$IcQCcZp8iopa>2x at A`p5raupV}c2E`=k>rl`Cc?>V^NcQ0wgt!=Ny0kpdu zbmPI=N__tGS^VjXPtYs#fWL11;mv-$fAcmO6@>>9$ z-%;BcuOQEBV>U19P3hpIgxpJ-Cn-~tJgO#=E)d!H$Jgk1uhE&F9k*3o`*IrR3Ehpi z`fXT%ugt&nNS!gMr?hHB;;@wa-y8f at l`C}yzs*!1fLl z^1I at X5>x3)%vA^=ZZ7Jq($xm%8Td+WDR5D#$M%(w{u=9m*r#a4c#Ss_&$O!IIvum&_AKUgx=_YrN%~il&nQ z9c;8n>k0rG)V(H~-qo!|GJPA2Rg)-&9qet9#YC%If`hGkouox0DtG zry?)~u-W=5vG`8K2)EK#fl9J#Od)ngs)*mUcid=y21V=y4cAhe254#MrZJ2O&HxhWS;J5{*1#^Q z=E`a;wJ=V+iyDvq?N#je+OapdjCY{+ckOO&J9mbmIvWk+j5yi=q#?iUzt at W=sB~fL zmgBJ2SE8o(!R{#x^QKF5G#ar2xLf0TyH$@>l;!$T4FkTIyAU*M)3mzn3g*l^CnqNu z>TdLhu0iI^Jb;=4N;#(id~E>2>BU8y<|Kqc9Co^~e|DbTXYPZ#va(M3=HqI%7EVXF zKmlLU;=iJd1J14)ICd-)`9Hbn3W*W at zuBA#F#ql0uFxt>)*u1*;#BhR$_a7Gl8o+OdNGO=~=!c9|J&MZ+x5M z at 7y)x2D*0PwR6hTb%E`X;|%+;e|j1l$jI%em*e-A;n_O8+J|Q6E`3CPI#kdu!1Q7W z*diW at u71dFOypw@q%0uNn7Bu>4hfB#dx*NG-xU1U+}e(wJR+}Cm+kX2(i{OSC^!6e zcz8g|{S**HLks$-a~7!&cWr5K?Yf9Eio7|^{Y8|$y#&2}Hy$=uau=d&;y$NHPRIp_xd0ht!8~XBEi%>>0{j4HOkrVvOz~&>Jn~oPg?SA z%Cg^Q4JEC7#x1TXUzW{xeXc&Dycxgom>$phZA0DnoQRfNsFAkIXqi{<&t`faWsINS z`8g~!g#e5_U92;)KDtAfp%(Z#ulPr_ at EpMhUIqx_p`n3Vik4yoq*R2O_j zdeDz%Rw*}hbB%%I>&YSgj8A%GdHJ34k@=-Qr6cd9zU5r%yYPfZ_PCVdPVSd@)EV{` zHsJfhbLP45NS-r(N(=uNekt*J&pcI!llEM7q;q;0S2UJgm2h);A$x0 at G_Y6e$kg>9 z_av`P-^A)-E!NQc8;!+i)$M-%&-4HqDlk`_GiY6YB)|q4Y}r-8xMYI6IE|)?DisX{ zO=c>$e3w#^1}NSLb;tS~r=dl;Sm5I&zuqv8u5q!PBj+*yX=cgPDrl?EfB{#Ev^CtVXi$4 at i%+BaoD{86vCV+1C6~~ zaq%nZ=k`x}|5PTM8|#@bX_$L14mr4XEi}7-r!~5k()yt;9ix|g1dVd=u2P|4!{{m~ zS+`_XHpu6CZPH-z(=&PSJrzb;w|uV%t>KQhjgQ}gz6t;us!2}*K;ulFBmAgr5aj=S z%{>3$FbKws%Y3KGoODU4t~^)rV_LT}rirr2gh`8&>8V5wnO6?;lt350FML_vDIx(c zOrA+P$DOGJZ?5!^QSa1w880TSZeo$MlPhXyr8&|yx9- at ntOA=~j4$84jxlvB$g{gY zw;Dr9Rdi6Urjawjt#y%kq<-BQ!g{a^--WUhU{L=mu1^4ej{q+&)_i_^lHl$SfTV-- z^Jpxu#HUZ5$MeQodcu!Kop^r)fC9KKE&zOx59wx^+;;IVe)-dwcAVJgGP__;F5K6< zALm2Jgna+YFFuOZnQ?5)PsbX3?AnBOTbpr2m( zdFatTJ;*NLxm=pbk${32czryb<~)PhS~>20&oV_n@%4uJ1dE*yiv*`5IJD>v$loPEey z`O)B|%JuB)84o`y{^Wl0ug{56N4-;I4p at Gc;)QC#c5&lT zp}pTpf1jAo$@NOJpqrCElL#`8 z#?PVi#9;aE-_K{Cp6}8o^tE&g{q#ijFayScfYH0B)urt@pN1cv4auY819;5{jWc;Lk1{^7fc?U=9_bNBX9_y4ed|galk_Fr zk6&6!V)JdijnOHo;|ad!7(yK%x8Rrt at oujy$IfaK-3PsqA$t(YvUccR;;`YS+~`4{ zN!kDZ0stEBeyi|*Bvd4?-n)y(%lp5Dy99~gc#LFZ4)f_ at w}k*=21ZQAQkY?4TaGjj zBASaO9;pOaOvRu5ID z6bj=pZ!#5;Sr79yFgN+KQp|#Dyk$#DrZ6rlN0go|D)Udia`FXba;%;psgL3+vpxlq zGNek*IHqH at 0Z2sHb}*n%mm0A-XP2;aA&=AJ_~hYMt_5d{!hV05Sz2daNmC}AuUS^W z7ogDXm!LVxL+Ih2#Y8k>Jm0%|VstEBP57pRNoE*J*(GLI7yDMJiw#1v#Vx zo?f1xie#C!5r&(t<7_X9XaKz|$IH#tSev_zZ5nAS3yv`>`5sXa$JxCHfF5=(;bn3` z+-@%jJ0}o!qQ=hVN-P2Zg#s6P$xkn$56B!1Y{1;aLaP-+=q3=fL9ztMS=Ku-0F(|d zkgr#gKnm0R&Ll^*ctl=7Elq3DqOUZBVP;5Av(|$~>#kC*`fuGDwT6xR&G225`=6 z_|?Wd`jM$-}$VTU8#aQ04bS`SNm-E7I3#RDMm)yft}f8D`*{v;fk at 8xy+N zST#Pojy>~s;lJdg>dY_Vw at j(eJsa}960!jxy|s7f7CnO5s|Am!lVu(?`wLlu(eLebK=qD^*ye(BNCh4e+gPRwkp4FS zfFJJN4;7JrSYb)e`*F_Bmx|y>=Hx6%d{0A!h$OJf05kZ4ULnV&ITQApR(uBIh1k%! zpn8!5mE*(-<4;h9G1L&5H-X7mLSg_1j`M?{da}j{v-J~U|OpV z1?6}j^FgjNzonvi3J7#b7D1T<#uWh>L}=r4$CNmOP*CND at Q#mjhMzkV^W+`R@}yhSr2^+RSxCY3ei5D`3;9i at P|8Ej_tH{< znchTUWp@!F1sr;o0oL-K at k2rKl?G3$6R+c~949jepaU|JU3gjJ3TT^xZ=4L`@;^2t zFgHe>9_V>^0OG`KeVK0x at H3>cFF!Ll=_L&!N9q#z!E<((kSP~$9>b4QGmY$)c7NiV zK_A69N-wxu`q8Qi+Oj!B!3iYJn01N-vGw zST}%Gms at f>y99C&#m4I#<)Sd8Jd at tM1g& z>u=Hqz4+v1%v0VO=zKY|5MKlS{_3l5;{Z8aUEhosYn$2Yun$oE?bl!B?j-A5TRAXX zFT?9sZ&D7E{^Z3zgIn@@jgE3sjC^3_B`xG5D~(X;eLZtksP0u~+0li(4SuT}6<#Ek z2GV)~EHJ=gGCb5q?r=FRi74*8;$) z=z|a33x8{6HJb23op)VZbO`{6`XqBG#>##uALv at Ww@Lpz{wpVe+&4z|L)tKchUk8f z`1ik;pjlxMH1G0)#$WK4aaaHfmW8k~xi^bqhrC&!tOVk7OarAu at wy0epwt(mWfyI? z!@bfHvzv657O#0uKm&8R)PuH60-IL{B0C#xWHlqm(*UX~;!iv|VJ4Nm>!sB+HoeO` zlwX+qIxAnrWO~U?q?3c0i9d}6&t(9G+DQ(MiMvE$xx9l5zKUX9>~(b2$4Hz+6F~Ne zd~cv2=P=lPj9QNz+TZ_-bRUq%>_($pf=g%D3I6O>O`r=sMwIW8GMtSrqdOd>*CuL9 zac~askU%w}zC0J*%U*Up8|oP0 z`Nf6wjN0wz*fEzhxkQm;9#MuWNST{B1knl;A$fv(p7U8+VKF>(<0+*k1Bx(GVd&vSlfRy}jv$pazF$NMV!$>(=Lo-4}1au5%3%vnp>77=Q8=u{^)TN-1oXua`sDV!~SZ3S0SMj(^&J_)$vE7%%Gb^Cs+gTKef-^I} z1RW^L#6Xp!&@AgJ^HylCF*Lu1%pds}_Ro-Icw)9m1FQl6sSl7>((~I93eauQu4u&$ zuP#xDJ?Jrx89<&x9vU=?%(Ih)w3jjARNZ`{( zmX=#7+g)^p%SzSe7I;3(^Kq=KF7fSc?zr-BZ8aXQ0`xj(ad5B)d7(M{eFlK*VAyY( ztI?jGkH7uyeSEpU&v&!&d}%rARMgy}V=c?}bb9w!TC2H_ at ho&v-!vM;i(Y%PzZb_B z=h3HpIe`FrDR0T0hTDs(Y`H=fw*IWxT`BJ(SK9yms>!SaCpWEe8 zzE7gbBO~NH%`Nv61i};od95jIn2LwOGg2PE1tm*-&Vo8F&&Te z&X{MtJd^azmwJcGEO+K@@~!1};c~T*07x0U^YG_O0txeBtx;yuFMGw7vo$jqb~8WH zKJ_nU%5)|TH4mTLXuqF#@8_8c at qMV{754>#CT{(ZKHr%i+rd>Awo$ljo9U}`l8!$T ztPyE)pI-NW8!CMw at J%{P6y<$VzX`bHx4#!ko?WEe^p)%6ul&w at YMHd!ldzz_0M>X%TUT`nM+(#)Bot7{Soq)P%%Iie)yX#Pp-Zn6x1qI z-{kxJydOt)S&^CI!ZpZHFujHK7D_PJRMA at 83}OZaKI_b#0Y<4eh~>p4jz%u!Fpol= z!br4ub!TNc9yFI?rG`LKfp#mnN3Lt+$>^6L?~Bn)d~-0wz^qbEKv>Sgqp}goqh3GW zo*lQ2W;vRmI)nn at BYCqXCe2iaJ**=S795Y zeBBh?jotginJr-qnER;;etmX1>IGmv>Qw3~bgE0MK{tlu%NWevMhlvJK2?j)Y4O_~ z+eNXDG0dy0t2q->kb4e|29j=WF)lGCr&4o!i3k?J(L~!(g+(5?`3!NLRpSRLCIOb06;f# z*ZrNd->hj~mTpz3ctdgZx1kzOQia02{*pPk&cAZad*&e(p;7QhLuJVO6M;`p>OBGTZ~o>bQ>gafH3&jfdsSZa0FGyfb)v8m z^qB|V&8}U);mUi4lD|nhlXC(%bzJ7#dLSM?)F9bCJsju(Ee)Vl9G-n&^$Tt6w)I=P zLL4Kj$2Ju at iD@ug2l8e-NJDJB2>`PJGnU_ZZAJq`88dClB0cYW-jmE;wc#%fLD96q&)W{P`HYc#m0g&{d(Fhz*4*_ at s@~p6Av0^$Myu43* zCMLae<}~Ed5a)76*71a10y~5Bpdf%p$^kH1q+#SteHSU#lPx$_-!u?kyTPpk*Pioz z8+EnWqEi~RdNgRX)rrf!!R^vnT%ZAnesHX>h07urZa&+>W| z at _XfmP(1$fyz(twO5EmIQY5NCn~wh zMl!!k{<0GDoC_B#80ZoKi?fJrQ29J3E0}-lCn<0folZOR<&1WFUj(kcZBK&f-^tFz zJ{S6z{MmH8D~r!3>E29Pm!9onc09dxft+Q%m3*cW;;g;AA4)1E$R?(BKa_ea!L)sz z0EhG{0GNC_c`uza6PlG^=}JfzpXhrE!&~a8duQWQugH5`JNEH=&nI~^AJ$V at IfO{z ziR#(d-VF;vNL|kJie}bF;-87UWIVhh;4^sbkO+ZZ#((d7uWhW-Rze5qId at eDp^__$ z at Gf<5gDxG7oP?Uu<#$rXx^qma=c(C0|A!ZXzF)}u=etl5 at CTs+fHJh zB;Ss1#<>hiy7 at 7PIoSh-P)X%Nk9Jv7c)Kt#mBrxl%nB0#3Xb%Ax!gzx5Za at 7Lr5{E z1w(B>3KT5g46cV5CIBxVZvx0ZU0#VNE6v<_piisq_^KOo!^`;RTaV+j%?Ig`JUl#% zvx~E+)7q~uH7MtFE(LMay^Q0*IC`+x1qQQC9NRhl;?#Pk_P!bzh}*?B`JCG zE#J-jc<|dZW+mUz(BygYya5&)k767zg0 at 33IguCFez8YZ+d!|D3 at J?dXg-c z-Jx^vyAw8YoGZ`VIU>98N!+ybSZ7UWz@>v{qn{+3MwIfxZG4PUl8!vgF!h)d(IBBw~HP&Iwl zv-H$MC%wJ0e5v%vw?<#O>E(B4pM`!mms(n=Eyd!}GVE<*%ymYG;Sw^E&RM<=DzPEC zXxA@!TBgCay|Ec<$lS2si}vX$sa!{sR{6?WD>}%}+1Xi~pSIJ0*XoTNhu0qT;s{y# z>VPsMPHTYP?d5vB*jkI9eep>&ozU_2ZM@$)09h%3y*9%08eGtuz!KkcJRI?x9 at Pk@cB7ba0l| zvU+-gV8uMc6VqAIANaq-H92!%dK;{Z1c00?J~uUYEHP*Yd^g8$!ra!W`qkOc)@KDC z%~LkYCcLip<>4IwtQtDTZ+S94zPk?!GW|(@HRjSoz3kchHiW7PB^lS`U1?+Za9stN z+RX6=CmT-ceGPoxBfS!jV8w5x38mtj%07NSlynTKdn_lPB>(celC6v<`T6^K^7ka^ z?1eHIqwyF#m*+PzfbSDbOv<17Z1PUZN)_)!pLwr3GMRf_!tahBqlv8(=e49_t zHdN*F`}x2B-1n6S8=H5uL;e%Qqnn*1a+hZwS910t{~sC{hKib1$fei#&~lYB6~d%` zpT3DDY&h07F@;#fHD%35ZV_G?N2So|baOvn?{vw_DF(Tn;ExtC at oEUxS65;QMjl{r#+SpG zov-C~QEnBri;`|b-*Z~RZahw;S&?WKh&oO$OPMj5tdP0ZSV-Jt0;^dA1f3jLCFAE> zcjWWZZeHFe7kS at BvGoEa&7sW<@62BH;z_d+fBxWM{Pf|2SY4Qj^Y&4Ecd{FoXNU1W zeELZ|UT($8dMnd*rlY$_4E0vP2w#5tCSD(($NTec^rmWYIW3UG7-G2Rq1*i8R4k&k zHW1Vu0O}6(ZBj;!TaHnKrfur#7{+-IkbHG=5%11Axde>kp;iH!EEdk4JAZEBtXtv?tC-c5cfaaBsCDBuZQcv$8C#x5)hB)?aR*|-z at Q6xRicR|MV zL|%MHIyh6zxHQXG+^{inZG0*celH*cIoO at __15Ijh#W^$6qCiUfo1Kcq2 at 5}Ni%tQ z0sx&cYdY%KR7SS~z}sjp&d`9E2L#c`xKyV4058(G9pw1f#^M?@q`Z9RQWjIwPNpD^ znFWlGV+8vdk7Y`*$wTvPx3BkX!K>tvRE&)iGoTllfW=Uh at b~yK7i53Hv4niwTni*; zVvIqYAs_S8=mQ!!kTqvXUr&{7`{woBqI*_pEUmSgxr<02U2}4BMq}qHX6yA>0PJai zF92iiII;8KL9|v@;Sa5{)8kya=@*~9;JuAF1xUW%+mCm9hq1i6 zkwDw!Wvbb`cIUcli at U}+lhtK8YSf7y19uFv at zoz(^6gr*(Q7V7ZJk;zjxzey zSE*aQfCUhh28Onk2YYJ3LYv2F!|rsI-bK9fKFR#~gw zH3+PJC~NAL)WL-B0W at FyK}cRC?liz$n}(Pq%fuZghg7nyoaQ$W*XS#rt%C35d7_Jy zA!Wt)?f_sOCFJ|?bkf)OCuQ&~?LAlJ$g)pDbuR-p$O(^vzX|}WL!69Q=@UbhCxhQt zhvk%}sh`wizIX3BbpRByK~bHP4&FyEpSlf&?+U51(S$wm9m`k-dzHPDLVzDZZtEdA!6-t>?VepVYidCE at FW3+XGa-fiC-l>)0FK#8H0~=NRiDoaK@( z8+yeP#dE0y zWDw}2@=dVheU9Xz6xI^FuaNkycU2DZvDf#NNeMprz{|c{-Z7Svmpt=HE;BJvT2r at f za%b#Z-;XbU11nXKglcJu>d5z at v$Bv$Oqf2Ek!f=%7uEN^Zzy>zG9n#ZT0{eoK_!4e zHaK2Hdu9vVGRUv;S#>sk({`sCOYUwhD#J_e3FrLSF<7%Sm=@q8^N|bn@{aj(sDcw5 z%Ggg7pgKYz$TQ1G%@X`Ic`ip!Kh!g|A%HRpaYk%kBzN&F4h$aO)GXgDc^S6j z<- at J`8NA=BEyYE97>CG48&GyVt+FjkLFHK8fgZrJR7qS9V~Bi+pTHR5T6L+v^o)`I zm5Ns52E8uM+POIN6B=<#=(6MXDe`w57k0^Z0Fhf;F>0Sv#!)=l-T(;qqTO!C#^!c{ z?dHlFDtH9b9Kn54#3H4}cyAX>6Boqq&?r{Gc6^ws!N4oHfk*If>5U zE96!Fknbu0WT^PP8iSj%=HbP?pwZF5mPTCpM!rk{!ew@?$`kxnW#@f)gB!`iz9Yz! zh=fYsb2SA43Hi|Y8AqNca+GD2TZk)-8`qXQ)8T%mMH!bHi^K+RreWon7+50lD!an7 z;c7YgUOLF@(nZ}pa3T48y_CC%=?5CXy{XHM&yco_?^Cz&nhgN;Ly-wz6C4!2 at DO;b zJ?y%@o9JOaCh=*!bubhUj^}be9R^%G$x(ouG?hN2UCFnHULb>X at j8D`&eEmOmAq=F zC-tv`!ew<*rmSD%w(I{#ctm+Ke2DY=zpGi?)lmiCksj9oEYIf8Q0V*NI{DLl^3VJh z8RMaLQd>d2LyDw at aa!kP{3Utip0q4kl*;#md_9%(08GmF^P9=JqL+=0`?O2DFnMm6 ztIcM;jRAT#V2b%F^(xS_%vHS7?!&=rJa_4{`~o7Vn{p>BcuGE1uPJ<%HvuQlrDwI^ zwnMM%maf%iva6p`PvS1a3S2ho5*eokh=%*{v-Us{5FjQ1ocnVCpsY2iGf}mn66RFG z5)TFAm-h?fZ^x<3&XxT*ZcvgYTrrd1IjDE$W)$;|FM~j|XgaoOE-1<~CCN}@P6 at WH}7;IAHAw9MBQm%>e#G@{NhbhhBzqvJRm4x%qOTyWc) z>F5r73Gl4I?C7Pux at vQbA?Y|4K$;o^flh=#GSeHTQMd$sJ9cFWCD$OXW$1AWP_=9J zl>GM*3cZ%jY^}psE5tK(b`mq)c06n~;vsc zosnI>-MA!;s}cF_j^h1MI}Xn;;@WYEtF6p)2W9)s$uVHD8>>rO at zH}P(WJ~9i!-s^ zfKHcZ&|r`YQjZo_Vt;rW$Jg_5ie3Hc&HDt at Q;RKVUEJI%I~9ftU^_#*8cU_}s+5~t zp_0;@qe0Roc$2q%SMM}5vOCT+9nkMsO=p{4VUPts&bAuEALi3?d1PMACp=ks zGw;-aj3){i)KRZ8*AC^qQAK4 z at alCz89`5I+V7g(>ZBdO7*0%EZ~!}sn3OL=E%r5 at 22 zvzCc>Ra{+LtJIHc at M#C!PzYmNTb;DkegC2GwB!bZhDS=V*KQ}jOpXxY~Fq6 zYN9(F&y;dU2K*-DFe*awJ at 1rI&b~`aJSSwk5pFf_)dLb9 at A?j5#?D`Ip1V1cxEq&p3=$-C$RQx{Ys0}iRuww zR~PZ&Sg-)Ca+|kF52);9+U8xE&#}cEQr5Fe+vI)Yr6AQL4tGVd?D?*I!%gd1;9}it z=%t@@Fke;hw?N6pQgt`ufLRj|OAF$2(xmUEXH1$9yl?)p0c*U_)e`4@^69xW2mm<9 zk>}DNg>QVh#4w9DC1v75Y!|L7qOusZJo5_s&Us>Z6+cX&ll=9*|bvw^lKO$tOCn zJo`=s2&?jvWQJ_`d!O>z5;vVSy6anw0>l98g}a25pHF)K}JXmyO@;AH>`96UbP=vt6 at W0IB+T2#D^-D*0&;_bT6Rwwm$jPdABN8aC)O#}n;LW`)5%5ceptTkqh?6UB)SEd5X{O$Y3m9>f46SE}y0pu~Zb#_tCiDZ1 z<2 at m%mQ1j0)_H0^%98 at gdn#cWSDN{q^=GKQHzeau4!iX{8&WXkPp*q1NsiBF-t)P< zTn(z#6Ld2yvzJ}OH@$kCHCT?EadzhQWd~pYKSKWw4Ug;TTFkdv7;OO(`~x4m%ZIyW zlm)i+G?6EgwjrRAArq!R{PKgs$2H8AU27z!a4IvFv1(yvHwO9jRj*anURMfKmcE(B zdSHNZuTjXTbPBdy21NsqU^u at ov%*{!z*)9S3v=O~ye>w5rKd|;-_FHF?=nu>dgN`) z0CK5M$C=s9I;5f2Xf|SXbtShI>LE9aOH1&Yii?^9h&n8yTIJqt&TO^P(jrgDH|2F^ ztRagFo%B}sX#i!tPYE>O2jv|eXw~MUS*I~WqfV95htKr(P#EgSu8sn7uP%{=)>?wv zkwEkc-XAzIDWcU{juz$AqvrA~($>x0tF8YwR+=$09+0owaJ at 7EGf7iEJ>#R)BiV4| zJM&o8Q+6q3eUTjiST+_(yBI`ufelQ+Jzu$Xq`#{{*BUXqX#}@c;uSv}N9FPyJ~ys> zk9g!!X=#u*vYt5fA{lH3+*;Sb zpy8{$)yeb9=Hy$${ddi~1~QkEf*y|N&fz^=8-E&D(x~WMY?g8_#+JsWK at KPH2plmn z*(i5Ua{1kctISiDqbiNL^m=M=^9-5DVbY1X#tI(sR{&7`V;Wh{{3Z*TZ)H7g5m7kq zExn}FK`z^38bnh(k zDV6lei}c`Z&xfJ9|HH%lSK%(bNj-X4mg;wPlyAyARXnDbza>HyprzZqCZA27TNb~Q zm-t_LXq4*-oy8sZJTB8w5&E*_`ZNZH{2|1yk01wtg zaraXhTdw3Qcr>5O? zT}^rhv6oXAq6h5dA8DIQ_0wpxp^N~?Yv z<9prd68}x~sjkJ^Y;4T}VgYv28lKS7Be1+ny1mP*=#i#|M&)36>lmhKz|J?j2eEtF zj?py+=z2N^=b5c`>r>CKi}1>~b?Sc+aP|3%r{QABLyYC_$#EQX z`tTmt)SnxfJF8qpt6;fsc|lE<_jH0W;Jf_Ine(Yxl%N4 at 9* zhvns_S*797%LRj7UL=Px=v^nRm|ut%4VR;C8}Kz73)Hgd&5*C$T>=28_s%u&lmk6( zmFEr0Q}+v5xAyHio~=jPP84!%isNP$sh?#4nft{`H9??b>+~qQwV#OBMrIx0Mm5D{ z50D24a|tB90-Ca%aZfygNa^Kp4SOpRFi=l*XX`?{%ZrQjidk;ypezgS1qIUpV4EV! zbMmMBDr$jlP?b7_zty at JHw_ZCn)Q@=fH!84L7TWXE(~f`HA3#P^` zyQZxI=vAB}P`=IrdyK4$Ttr%#)UyWfCD??&C^~TSIaNdA1wYd{^bK_<+oi zXWt at ibs2?{h6b;dTZ7(Fep}HydlCuN`{JJ}jVk!t zZ2Z0ZVlbaUr|SNlXK!+?PP1WSI at y@B?x9Il2U9bD{%1)6g|LJo#1h?B&Ui4Q^^TE* z>FqAEE61)Qk4046C)-QWP<7Xc-Mc-Ov&H-M894Hqr;4!kEj zk1%+04FTi}$~AVG6u|P-{8Tgme~ktJk+ at nM z+l^X0SXqf}fMCnJcfx?g~I3^^JIQbP*>P00_IX$?F2o zclX}J9Drj)IR)ZJ0CAVjaSzot#>8D0^e71itOHf_0%f1G3rRX-9%Z)dGNdZx!}OwN zEmHr4b)^nzp z$URyG1?%vRJ3~C$T8Rz!TwYv={qwW-JNJuoTU^+ z(PY;BJvpo3<*yRTo7ET>yO}hCj*+w+cU>PEA-}B70ES$S>J8=;OM*;BY at l7 z(i*%z6BopP-fQ!2*+R|Pv}pjK%QYawWs|09u-qa?ddK7$7fE&TyNQsmlo{(31MOI~E8~KvMR#`D-9RI~9XA3LyOb~cxqjUC>Uu7NVAm7YJnPvm zQ;m&a!NtuN9k)w5o%41ysaHV{gyBhYAAJQccSsr;-zLd@!m8UwdDO(k^CwY(et6(WRB710;X^^hx`|nk8 zCrzybZhKC9#djAy8l>_*v8e~M9Owyi=9;FyYraii8YcbV)j~)3kLQka)HvF+Fspjt*-dI$xGUOtXxP&ONSVj#A at W|))#sTP3q!CJ0to9i^FloGe4g)x9D4>| z`fU}IDf4JgLE1PHNFaiIsQYp=1_bmSeBrlbC at 7oX0mizv7!9nDG5`UFWdVx7B zvxO(i+1 at PaDV?Ry{c}|xURU>|ZB<96?NV0;%UglJivIq#4o$~<`3^@Fq>mF`tC_)B zj!FGhhoR78Qs>+=?JE7LsXzbktFMy;Myl}5ky*PIpRKRQ5(QsD at vb3Ic0n#9KtKWv z`8XGZwT*1+e*`FTWqtdl?H1O!H|sJ;Q4%W1c>tiEl7)H4%ee%Jg;G$>Bnpo-Er^4? z&EP!7f~;Uf9FJ2=qtd3;J3<<-<`(1F^~f5lVW)@dV;v)~=Ty=O3htoOjrS+Ve9Jo$ zPiCBi!XPRQRR@(-5f-60_{>8Dtw1LMvr>z|rE%b&1DLCE6LuL1099-%j~oL-ya||P zC77T_Ja&CcBU__OOUr5CZWRXZ*PHdIH$d$e(?RDv8l+c4sOk`}p&?(W$NuBTEhrNG-t_I+w0L6m$^$WLU-suWH^ zE<#eBJyOY7J;}|b{;WI5V{Dm+%BUFh+iHyUp3T5hZtArP&puvh#AdS*D*(hL0Qd}a zy`YZXpS9yH$5B_W70S+`4;o_XE|;v}tk60f!Yn55aL#gYHZR4{b4~ibYp4{8`BTxT z+*83(w-&mnKd8dT%18o0;!v4bmK-+%?=LSka#pG{SKS4}@@yG&&Y-0JxKk>j?tN=j(uvW%7m$^l4CNV5s{c_1@!~K8;T4;X0Zd z&9&Ta&@HzFrSk9jpqD#?EC4(&&W_{Z)@Jf_i^k3pjlXO7-UgN4L+N9>c3B^up2T?< znn0skqaGdf#b^l4kzqZ92o(9hN&skg*F24YRNUk}>y3Om at hfMmLPIC0TwV%#=8I>e zuyD$vJZ!!6DSz4y_}encAJ!$0^Q;{3l=$IsiB7qESn+GEM*X4#G@>?`O1D1o11zj> zrHGFcNI0xwwb_bw>ff?oqm!+}e!okcGw7CO&QsCub(0_G>y4bLk75jWF3FjnCZ+C$ z-vy1*!p5qedrTeqBX8u-Y+DxdVO}fw^WNQW-uBuc{mKu%nf$gUHJZ-|D7RLw=JqA-~*9 at XNJ2-&|x7ps740%_>03#pksQhZk((l6I(^fz&uj&!ta(x)2#SLj-3=zAUpY3(@t%X1z>!~a#SGN2AJaz7rE!z-iBJAS?tn) z9MLF)nV_q*ORkyZLC>0F+Y(svUBwece^2U}#+T14z^4sUZmI^dwo&>fU4P_k8B*p< z*K~;2v%^=abh0KU at hh`_XS$x#v2c&B6`ef1FRcvH%^)rOU7agBe?OR?5|VeaUigMe ztm3)*j{2$cQQ5VuZ_1?|bP|wYFMFrRi{Hr?-nVfvHUE$Q$4N{IlohX|PVG|lGA|P{QZixzVY>&it?_D#nxZrLSB24b1FjZhlq$D^DM0_)3 zW(L9UwqbB`kmI7P00bq4NFk+)9mMTIrj7b?)G!*CqBc4TXKJ`9Tr$&fejYGayHoKU%*emZ-8J6k%6G6fsyLzt}c>1FFicCdpHS-=XupFPTbpB zHM4-8V`1iIYDzx+xPGdZ at 6m?A*3@BasQ$fKa^v26;F8 zAGJ_QeP2(0&b*iMILoL#dgOPD8pAz3Zz6#D2xAAyX(Tzz%_}+qs;*eOQL3MQ{Hz>2-6<~)_Y>FY zRNE?w?3j`JhcCY_fBTEyly4yL8{?x8jxs8sLAfA3hzduE5~#EpEEv2={4+hoC;+bp zX`3TxLJFcUu1)^-s0yGsR0&r?G>J=9#}x0#C*d>Z at k+^Fs5{@dg=pLZaSug&yW1+C zK7Uds<53p2I2m>YL%D$IzB|7x$4-l4fW)GwEyB^MCW+R=WSgTbP=5Nf=!f@&hrcV) z(!%tgewbhUb{t?pVT|@G?^=%VspYABr#$NOz6OmS2zQS?_mRX3DBI9u3!K=Z%b)G< zmc33V{oLIclRCn0*wtHLRri|Jqg$)6 at BakaBv#^9d& zR=ztsWvn_;KKC{@^F7No6b+3V+i2kbD9nqoq+CNF{O2_2?&enMt{~Kaj~-ctko#js z2vN@|ZJI)7j+IL7m#>r z4&IcF*KHsCLu1l-#~u1_K9%t)IQy4>_U9s1IXXQl-+c2;@VM26E`=lb+hY90!))wL z9g4VX;4q~>S2h{tSOqXMJmM#a?hMB*08V>>#rNq at MJfVz@!N9kZ>5WhtN9I_TtiQ$ zD7O3${qR5ZB>noX_d_eZ<8+p13Cgmeyu at Qm&ux_%5g7jBJ1%fg$niqpf&w3oQ z#C^jn8;^)>xtO=Ja?X at E<6~YIgEBjS;Kk`I?4nNL*Oaxi^A~?3yGv|{o-&C$iW=utUi9-wTMYCe z=R*X`A&LveQnG_Q{yzdbONh-IcG7&&zM$9hKK8QWF%CxdMrI zCJ?>KpNdZfP6ez?!sI?f)?>Q_iXJ_xFMb(81#k$`8oQ^5<_i8CF1Vz;rY4v}=2JhrzikmnalR$0ubpwS0()_B*BZ z@!lSa+O%vSC)V!}(vy>TbDm?(yQKTS`!ByPV;I;iV{-=sOn4UU|7c at aKHJ(V$G`n; z*+M|>?roLL?X7HPePLiI`ib7Z!^0igvIZhUl<(e`5kgv|>h)WhBAU2oAd2>Ed87R2 z-+fiSIy)(=n|%ZT0+#o$&o9bGyI`53v>s!1)ZCx?63b-1f`IPd_Rf(2U^_@x`?K}FGDwKjWBR#L4gS# zz(d8MI|RB4g#y*M**;_9H-qIz)+KH`?$@+kd>+6PRBWfSOK^4^yxc}1REUeeD#9wo zpS<`a<9o_ at oK8;D-(`$Eze9cl+{g6&9k4!whNWq}(5ku8kZsi)HeaRx3wnuBx9FdE zDRy(2RCz1!*&hzQXtlp8IST_OW2JIKU-=UO7397z6Abz|1AwzhT5agXKI;LqEK^pr z@=lC*k_)tKlY+9Ib35;cAJ9^_IMNH4X)$0dtE%lpNOKNd at V7l>MGgOf0$_4wYw=GI0zw?fHlp`7p&{3V~P!X(UT7xO^v?;stEBl}49IjlJA9&w) zt;g#|3065tj2>`GtlHvTllkPC**h*hSSS!&HHwJsQc09n%qwp87_SX*)}!BADSOC? z9>##XVCWNZM!?xXI+l7mgJCuuR_VK@@qX`qjEp&(@d(|85k( zjF%noHprpOjlL0tpf2IE)=oyJ at sb!5rIIc3oSnRnqPM!Fe-O5TaMgMS*}jr0G^*7?3KL%u$i5f zO~&RKFn8d-I-Ql at pPrZ3qw^@d21Gmcvx}0f*LD}!ug#4G+b+*PeNirX{+pMtIG1ei zarEVHDPL<&?*ikxxk-Bv)@MiM=;XA#d4F0uTTjZ`)TFC#SUT zL%??*2$`ZNr+UU3=4!c>KpKx3IA>iZ;22`yF!`)nlrmh(q(B4XCB~|7BIK`U#og5X zDn$f4 at 5yWo8W)H4h$TQ8;u1HUK9ixlV2V=7O#Lcg&Ph;@@93eE(QEA3l(YueXu<1= zwjHKQz_rZ}O#OktKO}Obj1V{NuhV7K@|S+Q7)$Q--*-C@#%&#V|KQ0%Vsw|Gr`=({ zJl`Fb%ga$>J>53xgnY~50*u~$^)~w*3_(5pFn{pS1xtr}yC{Nh%K!J@|G&$h{q#pL zlZ~?0ZI>Bsz5{QU!M*ddQF-(2o5ZfZ*xk!ld5jH`)|OhGas}O}XtcM$Zi6L<4PWZy#K{FW;8}2wev!RgUpb9gg^z9bY}++V>eL$i0p96i z4ySYd5{qFZD&c->xK8ihWD6Cyen}h=xD> zRZiQRbrI7_w&7`)+qG^vrN3VR*VmVmav^;>#Vv2L?c|-&wkfpe7AR44D7&GrM%jxZ z7@}F=^a6Jk-H-8jPCHfb9xH(2urk9l9m{>s4Lzu^RywarRcM4ZC}X5uVPoD*2Ztv} z at 0ISGx_#GT*Jvc*4i9%M8qc6f+A`Eg<4wG{l4pw_(lPmxNB*&Bk9CDVapqU8m$P`& zD1iR9Z9a2~TH1 at pOB~|Jb{;gKX=^h>V2csy6$j~`hXzFQ*1pXgo6?$}BZGt%@Tlz{ zyJswNK!xw}ine1+fc3 at i-_NcP)(#Ab+N~&xne8#zjvAj at f2WPY)pmkk%ACfSHu?Pf z=f)WDx_Mu`^lWOzVo}A1cR9S}woK+}4n>piR}sbdGG-Yg^8TT7_&C?{2MW(wS?JmO zD&U^YPlszeDEGT(`4JDTkDPQp_vJtG634NTAGT3mV!3*3cMQ=&zPk-p*F~iokG!1z z0N3|(}rPuq@ zlX46*x&^V<^fXxpo$zo^KBqukZR!f((N!rISR50G!=2(~4iZ<0U;$v61mhCqu}ser zmOueLV#Tcki*+EahpH+IyvL#PcV*qn3>=uS3c|Xm!x)HdfGk`#onn=dQ|>1(o(HK; z&Q8j=@7|Q-(FKBSLcdna)}T|K4G^3sCk!xxZ+=(4Ik_k|YY4I7PF6OHZJGK(8QR-u zm&0MZ?6+6SE=+R;BD%j at E3e-jm-mxdaYGFk%1BFo%eS|3SN`&cpOw|yd6{0EWjmV- z#`O1RXXPb|=n!K5A$|SP)*gxiZ31D22=YF{YkSaxkzQkgt|J`V3qoW+h$8plj z2 at n{!${1p~$tdWg48rm(Cq(Qcenp{N+;7HI;>bOTk3$Avy;oSFxu*gE4m&Q=Lx`7t zh%dgM*hSw#K}}t0EDXxU7IzpB5Ta)l28H-KxbE40sQk<9EYDS;6093Ti+2$fDX$(6 z2{@W=VDxD(@b+wf#MP=a2xmG?dfc~%vS1u7j4IzzF);?!*xqJA*D7%Q?Bi!B0+VtA zeYw&3M2{`6TAv=26@95)JSj)xQwU}q`nxLs z<3IfZBX6k;27~hFKmC(3xj4_lnl?hhg-EANC at k+IpZpzhcmX)_NV5kCk zG at g{V at 84lWA#lL|C6w~r!Djj4XFtmRmjC4+{wZ6w*xuC^_y%845mcy}y5KSd5+%i{ zzUL^vPV>7)(lUSjyWhqTT81%dv|K_Hr{@>>ZnccE-`yx(_||MZV?1s!209V8#>FWF z)~VB}_9-xM>h)lMKi&_IuHIOB*yel%y}Q5Z{?0CpdAYocr at eaZ=qh0Kz zFHgLQCwvV>iE&g-^*F5Z15b|IhCyfB&~|dwl#`W@`&fYFP&HX4{qly-2gfH zJJ0j}0`C>h8bH#nFfe)Vaayzhxd1(bBP#ipVO*fbfl8F`hR*0$6hQdVwH`t0(|(1hQk at I!^1-i<@Is_&b~)>xQNUzNI8RNOn-DUa3IJ7+?w{Jx3nV)sBjf) z7Gp2o+LrKN+L3L0I5&NJj0Yx-PE+&S=fc%~m~NDz*2T5w<`9m;T!Y|o^1bGL&nj8+ z0`vc&v+w^)&vm?bjxz*U1mxDwS at 7tA1p^n)7xV#s`kpZHTg%d2UBFd6eUV$_r-fy6 z=&XRw9X-KFGG|>3^@3LzGO)D%SAPcjn-&13;CO=|Y(qACR63wF+o<+V1$({0(dB+` z=?Z0V8RlJy7-6>F1%P-!I%H^FMSufp&j#QN5b%Tg)uIJT zO}0rZ?v6HEM}R0Ykt7%ezWp%xIY4K`gpb})j~nYIk1>EMihi}D4P5lDv;lOB-wNAd zre#*+9lOwL2DJTr(JIQ<(?PfVFMsr+l+h_dgLe>yCk)Wv|NiUpi*Mf`oD}?>a&~zc zC1MlHYj=o}iPitf<|glNls?2{T*bxZ447P(bA;&2*WWV0v-0BU9&NiSKSs!Z{>dlh zm%sgO`M>`^|GRQZKkoK-%Db<>E&uKR=6_v2>GTjbv;hITN!i053jWR}NOYY&)AS0@ zP>YY}_vMT8%kmqP)GrX~M>7P~?RvRcfyn`6;iA{h>);Y_yVJ at eHQqQq0e}n00xXGN zg at StxftysmG9Kho$Tdl!AmNxVL&+cClTI&{O4BnJ7Q?EG0n`x&^(!Sc>4?)tlPi87(_N*5s9s>mlXUh`HESq1MPOZYM z!ptK{Vez27Y(xLK-- at ZXFZ9D&NfYUX7M=OXo zQ66B}0$N!Z{W`d?0uHXhtos-Udt2KW2^(ef{-iwF$AAELdc#3+U$(#dr(c#gN9UAY z5`%W5G6HjQs`3oQ#z1}}XGWKE6tRu+ at kcMpXHO4H4~0#}bcQkW1_kK|y#L2v{j&5> z*47Za%UAQV*B_RH-2*?w5%1O?|M4FIAmFY5Q!#=6oSYr!Q)({!kl}s)!yncuQOXrF zrlZTm3hwOf<{h^)a*LTa at 7_k?oVZ!EV+sHH?Bh>RfOqNdX4-aodYlCUPPYy=H=?M$ ze*HR&)t)IR;A0RQW>I%S5E?jDc5PCxi1BOky+THRK>fW~rGUaR25Acx0t+exbMZg9(r8Ru6Z~&N{jD*CrNNkV%)P4u?3|L z=^TC`K2VdX@(0efX%A`91S!LY2SD-C at urH54h@yT&@IoLh;aJfDd0E`7R_*C+IlO! z)l!8+rq$AO6foXR6G>IEZQ8?gXzg)oU}HbMw*K%6u5;$S2F at Bc(rHuA!xX1{ElGYO z-w?i!cni-p2AcPp)#WwD*a}o?^~zQ_2|{dyI$l6bn2LXTrJo~597CNQSJ3wbwCDCr z&z?OipMCaO#%}};9i3j3cPN3z+uqV9!!0zL4V7p{^f3&ZdxmJ`KKX;o3s~D9;bY9P za-vD*dw>tgKA9SPFg4|wqz9AlI3}JSzi(>t{#R-7z`vIMht3rCFFu!FXYr5xo||dE z5A$36u8MA|;_Pq07u=*H3>EKF#|N2Ez2EYB)170(_-g0`FTw-NlS*jEfAg2Mg(4G3 zVXRJ%V}n9^+-t*hpTHzO-5Hb at 9BTaT=hvftw|DVVB-vOPrXm7NVScU*a^XY=%ie}p zAj8-YFn849^6z}G9A)Jk!Q!+}zdtC0;V{#{PRF_ at nJcdR>Vn_1T!-OaQH)=uc!!1h z)$5n#_eZDYc&S|`OY0!QeVJYxvr&b&9-VyrTmt5wodrZ;Oad+z1c!_=aVhjQf?8lK z23DqIT%X7j0h{+e5W7}XXSGe=WjwbK0m>!-cU7bDV}7HrkMPnOa&gEMCD0fvy+13h zc6ruaD?jVrls`S(E&H2(PHljqwN(E7-~WC2+h6^*T(vgJr+ at rs|PA`mRz#J+*F2 at EPSW2B@qkLUjuIo_v;~zvzy( zf=<58J at PHM(L?zbX1%<3bAO#@O`Ds#n?nV#xwbzy2=rzzHC=&vn|xN8TN;>@=cML- zb8hOX#BN6Es`gnJ>2>#7zQMz6Ut?QMw!o&_%Xm^b>nU=>Ta5_4U=Km(;{r)&U?xWTlWZ=d at 4HejZQLxpY`o_7pSx`019b$fWQi$R4M z?Uc6h%2q7#PleT^<;JQFgwW5oUjnzEX$A#;o`>BdgxX#(2bcBU-DH9;0gPT(Rl>F z_?ou9N2xR(6OLAX`0;0H$8UfCyYdP}`5q%cp0)&EQ0daJYw%ap71uo+Pw6O0`VQVn zOEs?^wBYN4wjLBf-j%K$*M=7ChqErVT;E4#MST8mDtk;<~-;YO+`l0})Jf26Rp+4bAeIMXrf9VJL>K?zmB at duL``GYS ze+xfG0KBVjTBrA#X=NQZzO!ckfZ>%ha^&CL8J1^H4ugMw`DcXjV$7c*G#c8OO6QqM zxAgIt&!x^qTbun0t+z?ZN85!-rsz3mjA)0RFRztrCe`;B*MV1k-yEKs)LaXX ze=b>8Ja^==9p67k;ravjoAYDOUxNjY&nmz!T1ku_{KB&&RNu#F$8c-f8SLXaePJv- z8wQYPTxSs!^(hn)mHJ zZTa-`A7h;x|94tmot|XX*gXp8>1bSj2eW;@+%KcMwZsU{;b6MzEi0Ry0DWL1^~y^DHrYn1YxVNxhU9t4OUqo*+?%Q8d_I;h;jXl$BU8CNgSC zx->psAUc%KmeDUieI*0iTPx-Bm3jH=&t8;I5sE#8b$`$+BN+8>u)tqmOiFwAY55O- z|I70C- at GZuldIA}Npvb|hDBBA)A8(m`RJn;Wv{;HrwyU_JhgzUP9Z;V5AsTNd5;b+p{UFC zd0)YDFB9eL>dxEbGtWw1v8|TtyJ4)h*7l=_dH>;9RQ1qqa3#}8;G=lxNBX4^@k?bm zF at oUh<1!xiT_$U4o|!DiXBrZ=(fh(i+!RL at VrErgwQd1#PJbuK1UNa>VCRmfFdy+5lfm1*C% z-+o&TcD4f}7g%(_f5&$|n>2a<41R at BT)Cbk&T<2oxJp at k$#~Hj z4I-zT{Tx?3)Ao^mXwIr=>akQfZ0&3%woifWid|zjZ>CjoFxZ>!#%nnR_wvOH%UP~d zNP2|zT6%p6e>yT=i+pp&^}f?BE5PN;uU}#iZkHX#?&ZsuiG|j4HJ;4i>3%#D?1R@< z{DOwSE5mp^dr(D9A`)ZJ;IYY>mP*SD+ND30#>LqWLGra6$_t$~^Mq92M2UOyzt zeq5I+O)I)4SyF>fpyj=Z?FyAx57HhL3 at CwQ@+=XuXO3`MMKYq zi};S$DW9>adUnk1ZTe}xzIk>v&@scCY`2|tn-=~;Bn$S>>`nQOm= zr7*3(MXjcW>?f*`$9c%SOLjdKfM$^nPAY z1;n)g%?wTx)32(NupaSLBNjels(t%#L^0&3)5AQcdSTfdDuBv!9V+r?Q(#T|JU8k4 z3ZTDI?jkkUjX at l^)BneCYVQA`^W(DqP!cEprKHmKIDNM~@DcnA{1=CB*gs+C`C6-u zRNs5lKJ_4yap(tO< zH;`TP!}nJ+gac=%gc#%=%;{keVH(SN at L&crDl#bC4PF%%_0wsq)YBMEF*sK+ z(K&7RYXBFMX*N!s0~A-|IaR8);3uHm8sf{hZ_1RiG9|pdU2fJ}nWlgZB{o9^QcFz& zOnbnZ>~OCZPFn<+Y(-(GB`w1-9>`BK$pm~~a`UW+7QrGMEeiw at DZ?N at x&&QPz67iX zG<&B>_`FA}5fCmaSVb;gqOi47w~RkqO8^VoGvxW7KG`X)$whfW{=>~qIoKYQ0~9hn zAHVwQn=(cj`OTZ7d^G;IobOR4_jV7Qx;+Jmp^VmG0H-K~TUcHgLy&dB zP*kiMa%~8=@dPF*y+~02881um{VF81zGR>>S?)NrIadbasAjb)=Oh_t82KXtXYeCh z$kN0zshqpNpY4`W$pg|d-cMcOvb9WOl(H8Uc+#{hc;@& zzW4ZefCJ};dkc^}ekOhzw`g+eN@#0|iy`l$b`>SVJ?aK~`&lWj$6sD(+f;ho99kMMZq==lTs&f|;1d*)$=P{nffs-F zqfblc_N??VB8??8hES)CN}w=zkydZ8gVKX>yLV77u{3}E?W=M!nv~PaY5Dfm+Xy2K z96ft4o;@vFD355O at y_WHpIx4oLAPCY1}KQo_|&azIP|>qH-_cgqw{hLJWip{BaEUY zLtlC-px0%5aaNu^-HZ27pSa%B0m^MQXUCX3Jvu6D*E8y>@seAE4bYwU#uvex{t(3y zIIFNuXE)I84E(7ElGKl-EI1z$7+M}jsF$z_0l?an*18JF21{@U6ZSM zVB`4j4Yz=mf#L2CI4MUL7v*9;M=NZVRr=kfUBCSGZ@`6>cuf7Oic{fEd27sgmakXb z5fc&3(h-NVDh-`jej}*8Hc3WVWzAWd^1eol&=P$^W{dRjenSY0RP)i71zmhMr9uB< zl6N+3RG!H{feQgkJJL>h7-c=QD*~B!77B_j%d>@o zW3p?Z&va20r}jH#HP at -%OhO61%=_MsM~|1QGTkJUFb#0&p8J7uR7Sm)3qDADlw~nA zf?jFuMV^8sA)IZ0v2$=Hoi at tbv#J7w?Lnjp7&>`E2WFKfQOb z+c2CBl(8X9b{i(X#dROVTY(w44TD=rY`_#z>O&|pGzGvNO!o at G@19_kny*4Ewbsj& z;h9j`6&NAY(YnljO%S|sBe0AxAT8*77?7TFl}434ra-^d?ZsksmEtABz^T(A z%HMjolQ<&3WZ*Y$v+|4%*#-&dCdiEd4)Fk~P$h_ at 3V~3EQ%9LtCts|nMY3n{26Ei^ z9(@+k0&KDg?q-TWxZU14{RGo+ps3rj9z29FWWPvY0C*4+BvOc(bbGr=^Wo-3dH?(0 zl#j6fe}dw-dOa?!<(sm1unPl*fv!O6M%Ia!8l#MD_?&5 zRk=kFv}p5_^=|p=KmC*PY`9VW=^y_NA$)~WzFLMmyXAZ|FJFH7ru4V=N_Xc;`Re5> z5Mn~!9!e;Jyt7;myKDKv%g**jY0)O9ukB~NOPqzGu`t<)8xT)WD#r}oTgLY#Li^k4 zbvZ((7{hpOS33ESzc8ogXh)t=Pg+ac>f1F{wk(#|S_5<`OKW^VXjGll z5THk%fg at hWNTEL8uK8sW`o_2pjQ1II%a1=gEPa^+%F|?i zRlYqwD^qA)P!bg_MC;L0)U^PSC|C{nYlyK;eI ze29{#XHmY;ZTsboIg0G0bm;dsd~O2&aPfgkvLPf_pt}m;1uzw^8z_H$lvc;iI6z|_ zr;{=7xt}KrCkmckUX=)EM^w)J3WIT&;-T$vd^Jqm=MJ$Qe30ik-RYjBrzhvZUlmuk zo^i^!!?ncbP;{`o8N!*e)7wDZNIyR}|zI3gjRe#H>#oLfV?o|Ujc)UpR?xrU1 zH}Sp=jeMVO5(4tiC1}IId3$U*S=?ZssZQRZ5|S{cnmb7jpSCaP&N^KDrg7A45v1Z9 zHvli{;SYT+6hDbJN|l8v-%yaOU(V8`g{VqD*BA1_^!R=h655~e41Whk^;#GFsU0A z7uws at CvR05R1YwvO-&uqyqp59i`Y!{dF5LsakTLOHvMblMCE2ewVoRVkY?29wFt^k zemsWZcb_-O_x?~?fd8LOO_~2(`cP*bqk8>etmsbq+Z>KZJ at h0wMhwCqgFr^-Yuz`}+MKNp9t|bSNjvN25 z>cuTe&`lK at Erf%!S}yaxgi$V|#EfXH at jP>@Nxx7ZX^7ulb(<5BL7&J>r9$e1VY%O) z7O4U}+r)sFjW>#>|(4GG8N2le78@=*pA03n~3fc7RsO)ZUmXAOGynOZMq#VPeZu(p0zyGJ-lrP at C zFTK8-&Tf{=X0Kf~=cDp71nSQaSe;uV5fK&$kzU_V^}yumyFtIM zMqWkfH1 at N?7bO+Jd;x5~om`dQoL!bL&z%llMfqGWm+t8%bQuE)?S2V`P_Ns9=+^ir z1F$R!+SDL)kQN3d$^@p|d+_k(xdfqyqrMj+$XM6o!}LXS?*n7=NIWJMtjybT5H}$V z8EK|N>90nM3?>#Kk799?W5xDTwsCHH!}3A-$QgZdm?SX$M113u*Gqeyfa_xAm) zyx1L};Sg zp{V(}L%p5~AL-cm;~PU4pt-j3x4l96`rZ5To3G!Lm#3q$_t9r%xwBFJ(?9%EIR`ge zgJH(VuNYljUPAO&S#hfut=j at S!FLy5?F at RQhp_gW${pZwuvMo-C&0?@mH+a~m*vY> zM_DX&L;qD;T_|#P`nF6iFUo9smVR!dkPQZ#funJTJ^0n2gVKqidF|{92De{Ha#QOX zX9e6DH;r2rGR at V@jxb&fLwWoDsBG=*CDv1+;8gFK3$%`p<4FyMDQv|r5Lv!s{8fZ5 zcq2|bT`Ts>J6%m3TwIK=xaWcqJ%%7ac-bAws51h3EyvSwczT1Ip&jvVL6bGvidvuP z0e?vm*y0-Z8obqjF~{S459LFL4Lz7_Ym=Hh^;y0D at LYxIdnuHq>{9Wg9WHv(_^}yA$ZRD+dOV1x;0v+fyFveG9Tbh at q9;bNfC@=KI(a~t)ou<8}+B5F* zYTX54(YM7}K3PEtFJ^4zb7_y`$=Pz7Wc&V*0%%IVBDY{ml#@JEn)_VaPx(UgZrT7I z)MqXN;rA6X8oY59O!*vxTc-&yaLU&*yl-;R(j59}$`*0%;J<-sa(qbgGgC8#Y~7}e z{^DBrL;>Wk?^|w at gn@_SYElN69`k46ev3S6UTgYk`ffg+EzaLh^ki}Mhf~wm|Ebi} z{cupMXUES&W2(7+oOE0W%jRenPzwL#1wOfNUY_N?_ at h3={gw77pZ;76QS1H&gudpc zd+p81FyZFp-yfE_(;+a9H!^eb z9dZ30Zgs|BU#i%lNRB~>5d%NALEM{wz~?Zba~s}nmF10oDQy^96vI-scK6HE7ca^X z>wgLoou8eBF&e)kYTd)Y at 31y9zfI>HYz3j+773glTSEY at fwYD!3)p3`C#7riY6WqR zTd^;FE?Rk(IvjohTS1rS0#+){S5VZbX}kFqP^+}f at +B_4e-fA572K#~@XocXYt`Tx z(^N^{pS3FmabA}uS_n++06H6 zpS&pdm*?g3;<)ryZp){8Tjc zX_Tz#$#L04hNidGR}U^D+4)0eBrF{mA*=dRzii=HdB}V{cviulBy2No998-Ax6kEJAD%mY zvWz- at GC-Ac(LdqaVQ}@I!&lGsYX-Jqfj^AV5-(f64QNQ*_oJ-Y{QOfW%SOz`P0Fba z)}SCSMB815DN_F$W8UIkAK2-!>e0xyFaU3biFJhO`M!+NYZ-bfx6DUJy_vJP=StqR zi9T3{Ab!Z&v=n at W*BT66RIYUWt3NRbk za{nHha;jF_%1?}qz~g&_))T>kYpukuO1E4acXeB1;a96spfPfs8-&T~}L=rq|`1 zww}XFCyalq*9)&ZK0A-mn~koaqpvW~PU-i___Cair{$P_y*W88uZ~V=_eD9TjAMAh z4E}mD8fBljuAygH0FpPQ~a`1}wICZDjHD3f_jMr&r8v}F=-m9VQ_kzWl zRTN%nN^hi7@|VzmSH1wMOi_A6k0_~8Nw_Jki90HPDo`p`;i3GlG$~*9T#prGjDkoy z%5$C>TkfV(>q{6X(9BjF!-33xKGUyOh>n&SB=_Qp6k%?FbvA6`Zh3Ap;>14MpMfe&AGL7P#?J^Uh+PA-u7A$Y?v`>a}|bhVL!lvJ5;bZ>)#$ zpiT03lN_hYGwjQU{LPF+^IKTf=iU{rwR~s2bbj=q5xNmR)M4>7PwhYb1mKmp5zHE9v5^*REs0ydg5d2beOaT#J(VF?raK^d8%Cchp*y+K_X;Ro1F z_9;xxw$avHQ;wFoAhn&Io8J;q2WEUbnUpRA_Q~E(`TW^oybmV`CK>%}82sIu%CIp_ zFct{f>GRF?RvEUI%i(anT#Zl4?#>qQUoR)$ex0fNfA!NpDnEGs0%krhW0>`?5Q5(z zXxDqgvew@$CkUTcr{nS-B~y>UXNOP9?b&fzzBny^{@Ewx2M3#F2=l$Yo at Spj+pBkB zJh at 1){Py;cexjTs3 at 2B&<%0GvV*uPPw-LCn%K!L_-zRSIdazk8MNT)Fy}`f$CtQI9 z7eoQQgb6yv6 at Dhi)?|GiA}Tst#>XTJF;$VFP(%3vzr at QLn&7m*47XaIeqOJBcCeYU zsQ3jYr2S60WvYrXw4NIXM30DVY at rOee_vPy611`A6Bft3dZ^}q73qsZLjhEc0blMwln^>(7V>~5x zz227?R;w-BwvlPO7TMz$5`SrD^<-3`<2~CMV+eSt{8h%VfHMetbB}=FN2N7N;Jwho z0?vUu&jTM1nF{y)ouOiEHN5V@%PLrfuW+U=0D6z&CHnH+#NC5pwEwXMYcc z=(rrAto|0*ACd2Rsa2*|)Nc4k$IZ*ZpZO%)wYZ<13sLsBcgoNHHC=u71||10PhFH8R{RUV4}3CA0y$ zTkq&`tDcT~c$X`WeKtf1-rC#@{Po0NP~IiwWRZaqm-aeVE8v+i)|t|!UE+MawTrQG zTG`LS34dLN##(kMTY5M;dY4tm@^U>`@-&n99v%u077n67R{1h|{zENc>}vh|%o`^2 zHK|Uy$xG$$Vgv7kZ&lD%8g#x%z95dmmCHT+VEM`rf&21g*w5zSdPiMA*WcXA9oTGrOW at 0RbeVPtKb0Z-sM2HkdWD6tDfmu`0klZAKo4(d2l#|;7Kgvg47 z at Fll&&JkMhntEMW6WA<{z$DmRE6mtGdY(LvAxQ^8^V|0MZj-0h&kftFw#2!4FZ at s? zGj%QATlDYy$#$Aj)*?06(yQ=^TDGXyBXv7aq)LAu(&Ku=@am6G)T3*A0 zOnzG%Wgu;Hqvh|{-}JMd>pM-okDrO3O_`>qZj<;=#CTB)Q}g^nsY8!x94a6Xx5 z53eyobISWy5K=wJtDvwD%dids$=T@)l|(-X?R}L{&oXc8bTUJm`RJM#y zGEpKR5(cn7-nU#mf0=r+JnJwQ*RV9ovL2Dy0jL8*mI!rk2L5@*Tj{9p)@KtK+q;W# z`R3 at Xyu{+4)4pqj;}r})u_g3fMW;nYuG}5cpmks{Twg0~U|`JVcCU?M)~EfG2(BBL zxK^p(b?ps?fsb%>W8Sa7`mz{?`=cLxTz>NT56V7*^m;ljB3p+8?ptI7D#A!%uQK&h{k?-2?cTz2@<4eo(x46t69U zc$Ge`Q-^)ZidNvIr@?)bysjQL2hYP3g_1vlVR6qf7Ps^qbU-YXmyOO^8332r*-5@* z>jH`Y=8u1x6|fgaZ_E93lIfq%e)w70+ug}jr^>Eom5sG*sG)2Px at A5YgKzg`XL~Cv z!1EOe+O)p5j^J}jUWP;)=x3w+xk}HocqtR|+VZME1a8v&;-2q{!}ddvJ;2YtB at +j! z{^j1|!?vaje^)w7fH?nZANXfM{&zrVOq2`jg67&7j(%bfttE6XxvO+vUe4no^V4wS z9J45a@{o0ug6?p$v at tm1dZaG5nRxs52xDxyeD;IS%W$||-k+V9zy15aFQ+I_?hxQE z1n#G|0_^7F%Q72XK>H}K2x&ixzeMGFRx}YLY@@tHSO`aPahZFzLl36YaN at 3GKE1pwE=cQQR62~oeFu{F^grXz1+tU3vHJEwI&N?PuaH8PB at a7}BHCzHNaQ zty(6B0SF3y z>5$u=t#WpZW3b7KJk!VQ2H}0$AROYc5uqrrexi*sgdp{5+)F3E at 41QbTcN*X34Co^ zb5==J5tBzX9<0Y_y8rMyH1BlNpjX4d83y^2xMi{7C21c&(p~>iKi5qP&t06oijv-x at whCmAOEhe zefXVLa~AK at _vH7w)>`WkU;RsY{0=Yl+UJ7HA6%p at iz9s0=jN|Dl5#Jol4)X%knaD$XjR5{TZAAOM!BD<5TuQA)|?Ss14B#aTubBoj%w z0g7<9cG={nlHL#Sy-j%vu~;wMm|v@;RRzK64BMsPFbKK}ILDX{IV9 zcn|3?Uti$OH8kiIgq*8lC2|>v`=q%eyhx*$=VDwx%{8?@djIHy!*)mA0QrGQIl1<4 zfB1QM-W!ysgRL at LYn1`aWVhEZE#PtT=56`pqZe5HSBVQcK0ht*PL9equV0qai!-{r zTn58I;;1h5{#{SY6BzGi2SIZ+%}U~7AHjj5wuTV#dyjtEpy$>cDi{F$M$Z^+^ZUYn zI_~WBtV~>C-07B`r-$X+Xo3UBs at t)Rw>O;sn7LVWaTbl|g6&QsY#b;~{ z7f|t9(H+egiHi!t2%q3e6?iguy)RB%y3+D9#;Uuq0iJ?GDAXWb8EkDqE3FtDelOF# z+Gq&MU7d>ZQ*>^tpwQ}pj}#9B4OXTe at B2lMeEXI*Md&EtC?oMNz^PH_0z>))cLh+{ z_8Z`hfKjA7J*+^~Fc$$rGraRKeq1%U5d~2E5w4t7sw*9c3v~=LmcC2Y$`ie=N9f3! z8QXQZY-jnVY<5>LKzrrc{$_c)w^??%-rjWI#a@)F(fAA;xGD$x+hu=u$oukea1h!N zkHo7s^}CntdX9pD&zM5nei6rUHNLW=u?(+tD7dDz3DVbK0HyYyO%TSL^5Ot>)}~Q}`{vgL{j^WLr8Rmrshb8Y-c^2y#8=ddVN at blm7!w*0wyr#(pfG3D25;@w<5^{i^V&FtH!z zZ^|(rhq%rS$BF-WUJI!0sr4 at M=BSTz&wswpZ&Q=spRU|)-pRAY0f1x>6;PANX1)v at j9$iUOrX;-ZHUkPvIM8f))?k8;a9Vnu?*8yu*Q-o zIFY9(pbPB6dLH;N~LTPiu$n}WGMDm1w_+Haa9+n$!s8F=XpD9c|ni2;&^opul zW@?`N3HYQPu1xIkY?C~H{qaYoi-PA~Vw=5IKDo8gTQ5BX%yc>qY}V<+4Z|{}|ECD4 zuU@|`FW(nJOue?4!FZZ2|viHLum;dma-<7Y=>Q))Uoqbxo z1S6lI6i(yOaa)|=gp3?m2%iRVJqxQC5RXzUXz|A%w=jCWA6oCg#Idq{ew{^jEK6^A2s`&&lK}+lUzZ=_+`QC)<4I%6HD|^iL%~B~gXZ?RcEp z at 4C^jI25=sJiMe5=vjgDu*#3$p)*jgw(|p=E6szO5SRUnRSn+Sm*xy4c;7x!Cg%oD zcMJTs|M37(Phi6{^H{P;sCft%y**I?$bW}&W&8YWo`P6K$oCyzIf2g_K^)`K)bJ82 zsbjj5m9H&mKi%6-%QhR`Q-}P=sp5XO2aR^+`1phNqQ=aMZbr+*D ziW)9 at T2>}-TR&&-(TrI`RwNs zwN`b`R>Ggg3an=sg^UK~a?9E2TvtC at h9APGv=AL4hrBx2?h}(@@OHkjnj%FGfylM_ z>4Vz$gCk0 at F{_5%`u{W0}ApOBkxtvfRWe)~h<#6w58E$M* zo&vH{-XEWqxvMQ#*2)mU*`fTU8RaoC%^W5z$97FoXJ(E_k z9=I3{loyX4h1jOX^H)87Fa5yX{XBXw4e*NnN`d`z+ z2|~*lm|G-)UO{8I6u`bGx$=N9n`JfX=Aakv#S;0X1M9rIyQbgLLG{e*jTVMtjauo?5AH9{wi20E84?HCDTgtzP=DC2 z)KlBG#*v_Vo{I;LUl#+)eyPNp*K(wTE0iY{UKO328x?x$lg5Gf5~S}r=bnq33{Ba3a!|f_^|IVEmbOuk-RGZtS`PNM!Oi8efimO<(R#08iCMKc2Pc+; z^9pahBTMD*;Glf`;%Pb9-6?IolL^hb!AErgizsc z4&iB%f2jbfK#su$l^4C883XDAL>U)`3?%`f%#RiEn|8VAA~CNVj-k_-S$IYt!z+2N z2RL{@J$fG9!shN8LxNsrPeP1L5G&hwi32o<|MGepCq9V_;tO>#w4qDK-TTR36+7`l zGrKDD;)_lI at uMErud*#3Hn^7OmbZAvareH8re$idserh9z{O}>j!w@|q~QT=_(``P zg-N5a^52zm22H6tYUP zkTf!~Efj6`uinx$aM8AguX|k=w at 7ofFCPy3Q;!;+QLihE>Jgj}kHHm3oL4xi%u99F z&AGy at IebR>xwp6m#@6 at G9pXc+vpN6Q*Kz#Vj>TCcnm_!nayo_`Wqs#Jd%do0;k0=6 z;kW#^hGNzGoO0iKgIhGvd)6Ur@~*#|vYRu19v|X;y|(YXLje!ZtjBA9*8IGXShRm-|$q>AB|3J4#KpQ_D)dR>?K# zu?H{$)!Prx7M+KiXr(#u?oVZt-KNEI^;_sk(d}W2R}d0wC_-)e(It=HHU8Is^l3r9 zmN81$*GI?YTNsLg`4d_?Q7EhU$Y)_`yt8pL2)k*97%TZ!y z{JhprKmROK-><%TRbIV%RW|yA^7O?=Wn+Na3v7P%^4l`l*^TF8JUT}azAWpE>8A&~ zG1rw61pO56YdI-z zgZW%BFs3LR0#=Jr+ at kH_Wo-BHM9i-z(EQdF z<5r$Px#rEnBVgm0YY?bRx+kBCiC#f at lKAe_dSfK@F>IXz)e|V4ii5@$&S}~;?aww> zv?8XHUIO8*;HNI>J)KboIC^zNPsn)g0n=HAIXtTo at 6+OPGl> z^;3-U3dSOcN~;%b`j^hl(fk%JZkZ-*9zQcV&ds at b_Bc;{E|0M-;)HZo+a<14XN))? zzDsxYzHO}@I%};m+Aaw1KXg{{@EpmrxS#mj#q&lMeLvYZlXz!Z3?b>^BB|-m z{5IA8Ia)O(4`U-odJMZ95;UoK$AcW-$zy8H>MJ=l_sRb7jMQ8|=5I~1?#K6=qxo&J zosaK5&SP3ahS&5xxGa9g>qg29BB}Q0LlW;zOSCtmy~poV z-t!@Szr3XvfAQy(RtfqJW})!WyA%{#6vmV95N=b6Y+=ReD3Oy6#zUoxmwW)zlRa{ zo!-_B43p0JC4u(swEVk2eqMh3!xv>||FFD<+5f|Dz9?V3dRvYzuge$)-|BA`*EhPT z#ZSrKQ1)G1BPeh5 at fJ%}_$0{`X{(IKXY$b~rtx-Br^*D`WYG3?ZN>Ny1e|SeFlLb& z7)vHHuJqfoDZsP8Z$y6jse-A%>j8@%3gPP23?ptkmHW{d z3Q!mGRE5tK=ZW1DFv(wGWq#jlwHYsnY>C4av%Pf$jCtMu1gST at Cf_=0Gr~p%(4FN~ z0EPJoWmu0>G)~^B#th at JsKdG@vx?tT#`6VZ^P2pQwj2CjoSnqe=zWF0i)PNw&cIV} z17W5Y#BD&XAU-GE#9fU8sj$Nsj8P)|)Y6kDPg1ATjIOe;n=@Cc2{WU-M)9j2$O^;2 z+jh$+KpBN$BM4MV8-Y;qs~)E2+P;4Oklv- at E3P3EXcE;y52RzmVY|#{XhzLX9kfS- zLVT>ADio)9?LO3zM04nl>zB4d8B|n5m3Rp&`d43w8jq zGaQ4?cIj^n%1Glup2ItH_?(NaMwinv28aA&hF?a=*l^I1;DX~~sEI;AIA^wjWL|M6 zh5>v_Bi6hs$o`JfPZBQTgU`elQwyYFS6PB!1m?oR_}-nZx&X=;=^J55E<-1l>4zRY>k?in75+|`2;*@L zZ;PVCZ{f%PTstFTk_SsWP5T}nrtb^T=Dtaz#`r?LaNmEg!DkQeH9X;Q%Cp|8br!w=FfVBfSq2hZzus(46w|50kD zMsvM*_X9 at MBn*UO^X_+fWP0}SZtY)95AOvAwfx6$^ejvo1H+`j at i;Z*Hh9^*Yw}u} zY{?d!T{A0OvWhOEpI+q>)n}Qa~RwIxltS|wdF*FdPgXvy8bx=)q zLYmYnb4vn|t0Dyi8{pLrnDioeDNw7mxH!1Ui2+ieeDDBI7Fr`=ngl(6PestTw!a>q{`LFMg82K<;S~1y%8piM{ry`&OUeIvC5%$xMr-ZS$uVRe`CSgMpg!t74;qA5`_Du#e1;<=86$NkwoM4O%&^EqJBf{z4^>#O&5Is(B5a!*! z-m1z-WrXoOBK#Xg(6)#(D$KSm?G{Kvn*8Es!$2#{KQQp-w`F|)XcRzsMm9*NUn+R6 zuB<2uPMQxTLdDZdQx>N%hS}nUerKBry(=%@zANv~PqY7Ee|x(epP!eWdzUiS z#t7D_H+eu6I?lQ*L91XQFc%)cU4;O8GM``K8C at 8{p~2)52bCCc4}K^VQeoEqq``yEJlD1g{vk zTMtyej3GE#aarC?;j~%U$y zM*ELa#-&NNC+|=S?eQ$mRDM$7TKNt% zi^%hAK0(}kqE1`D at BBc`Xio|6b1AkF)5}d(F}O z4j&>p+w%Qq!cOPIcT)vWKtKww0!~eOtN_;j)!Br4U3s(D|B?du*bs;@6F7L^dc;4= zNY4Cj&X1or_m at 8YU;Nd5gCuT~AoION&`W4e8#Tem0fbDGN~_=lMV(TB;cBHDNbkF* z?1+wK5ziF&O at Oa55Z~q843^VxO=^HA};|<@q!Kzhrb4#`8?PA at L95pDDB;^K;26w0I1i|h)& zw6w-6dV!p_gA_Pqs#_=ra~PRct4c;ZObSB~!@e2-?PxX#B3Qz^AOQPcW9S?jy(`99 zRWHj5*UFP-pCI%5-ot{Dyoa*o`08cxIZssD>vWytzd%Owrxpl+pN^;tR&IHIxylX3 z-IaKHO(bZo>K5>{ztijMc-2&DOtIJ~O}1eFF8n+f!cFVmMLDi;bv36o8qjSZz4($C zDm at y&ug3d{50t^R_$vePyPe)o>{yg+`VAaag15wh>v>}TK6~-BeDd^ZV19NnDd&mZ zD&-PI*Z8sRz1 at 7$(4hXe$EWd>xN3J*4}@U`v~C5ZVa~N*y~v^-;J4PHpY+N0IQ68_ zkxv=P1Q=84LU`Kdx;G)X;4_jjZjQZ2V4lI{EMD;ZF{2A3lGb3RexV_B;n)ZduEC7t z6DL$y$QTrG{4Kj4mP%PF6P9Ngv_03pk#T3NX=j+&f^kI==U$91uD^ZtGW4Z~Y&N|t z!(O*MJ3J)MS~*7na>0+ at N*5@&#ff!fst)BwCB`_f7 at YJ&W|sPak9Dfl7|UgniJJsT z&K%yGQ}z&LN2Sb9s4Y!qi4XPDmRiSd=Ir-!r73xc4RJGhand~p^_EM=j%T+I&eApo zl3u?}c*Qzk_X|kd0}UG#D&9Rhd5_XLr2)c=eqt!N3AW!pzovnH0&@yIxCyf}1=XMy zu8cW?PvuUUlE!bAUG*J|qAdA@{jGxDF?VX$d={m`*h~pZ*22rr!kHYC at K<2g1Ad=9 zf11zpp#qm9KNUH-C?6f{m))IhnBq;j25z^!^Y#0)^7`bo#t+lx*Jl`P)Y<9{%LT?! zcmr(-{DTv9jB*B?57)F?yldLu at OSADFjc%+;MaqogBIOMpyDog3-1&^G=72y9F6>_ z^_c3r3Q`rP75Jl}8j({}EeN9E0~bBwuCfjOn)n^+pw5IEfU^t_bYYkiV`MuYoxOjD zEd2iS=6C3da`bXGbY*JV{-Mnu?mf`h;#u9_&F at HF`RwAiZ-!QK zRm*zZ4$s#2{q#^L$#>f9hL|Rnw+s=$bY;2r(!u2c}l<*G%dd{%-PmwylEo`}aMBjD7pg zb8sYi(r!uy$sh7NcJP**tu6Oyqb12;AEnR>u(f`Zb=be=Fu!MY0Mo-WvD)Y0cfGgx z&C$?}<=R5e)yYIz@(bUU$uE94=SIO!8y9eE at -IFA^Pj2QX5edA$V&N6Z94Vm))QS6 zA-|dGUR)|SEtD3OnsbyMl?@qzOfJCVc^YL&^tuk93WfI^@H*%=!gH9RjUxHC4hD#0 zA9Jq)- at y%mbDj4|aes2DEQGDbt7A-zg4aO`uJMjSL;-b&^0w7#m*=~?SjQWbeP518 zr&#^RWuxD&OX2~_3VCnn>y!Q6 at +Uw2<9N(m)ptu<-<@BS-}ym#lt~4{PoF=Fpm5q` zPW at WaZ%`QDot>9C*R#9jGC>)}kWOR#jw+24%4ypwbzNP>C7v~kLY*$E2;jno z+TR7j$;^Zczdr;5`%d+s**D=B0tmdg!|7H+<+s~Fh@>kpxDXmZR0(kJ7Gj_)QeS>f!s40#(`|+`JaYjQ4Uu#Lh;y4BcRuws>s- zyc^+e?(LN0^E29o07SU^Rf=r#jbJ(P%PZt}igROYyL2`-%4AwUrf>cU3grz9&-g*T zf(HEu85tWDKlfj=kK%5=F0fv={BTN8<>=g%tDOz-infBRjC6Y8-;8;BRj*|fK5y{9 zIVyeCIvj at t9#g5mdHmo-whTQW043KRCQUjO2g?d$^Cj=oACquT-bcR`1|D9!(Y9^# zs|QQ;%WHYY0Qyq-e1CKXyx=9Y$nO at 5zX`MlFNN!!_$Xaa$F++SQVIF^T?L7F+O(B} zODP~{4j17l{HNEKT6<-?(=N}pcgn%`X6dxnvk1zsgIuB5>mlrQ`eEYIv*oT{`~6(% z1$JwUk2oU^>!Ea`XDrMZcy3PZ_8}T1Ny~wN3eO7{)A~DaQT&9z%h;=_Ozg4>%kTd9`p&*MWt-=RUV`HlJBFI87N7 z^4)^N%fN9D9{qf0P(D4}Ez^^C<$gLYyMun&*+u~bFP$y1fZ5f3nNggc`d4SC12)q3oZaJ{v;m*MVmOweQaOwM1Dkr(pd5 at 1WgoCk~Em{PuZqA{R)3^ zPcB1gXullo@%eGTzJIo#Ca2sV_pM3R;o<$}`oB7O#j`MNJbRuSkDq5389w&>HP7pB zniHC$9Q(t+`k#FKR)KVdxM!i=oc-@}`BWnxg#QQnr_DZhY=EKtZQA4i at E2gIht=7M z=G`0*eX1$fkKp6)<`B}&J>NBt?l!-30O0hQd`FeC642=jU4xTwiMp;@?D=y+AJ zCuI!<<$gM)Ggnwl2r;ZWn3Rd$UG5`cqv-e-idpt8f==Aug zygE9 at 0>{E$@08A96K3Lmc9;3=kqZYbTS4tg-5nHwr%w**C!^*lF!X(!>j8u4d3ST8 zJUiGchgjLejXp}}a#o`meC=vN3i_ILNj49a*EZhBW0hI*CggA9r~ff{{~fdOOs zB!lvKfNY|(fgyldS%uj7ot3G^|8Z8JWPwb;ENm*G3!_!{A at mGhW(x;}j3 at GwHFy^n zu|VhA?H5G!qE#;Pi}VU?%jQ_2y!PEn*<91rZwI*CmTPci4z3KLl@?=W8#@%}zI^tjOCNfS``pcj5i}jzxY_TO?cp#h&7Jsh zY-QpAwvIV{73|W0eU&nT*Zii)#aWu+-~msQ*Qs>3vFSD0)ci#e%teJp`?*8V;2?*1BsO9#(NKekb1|uX}^)K@{fOy>9vO#~+nX4xVH$Huq&~(Y`wr z`xt+Z#?5!_XI2Yy&;EE35eAdXmNMLl$B45E#RFV&eBcuu at Wju;twV3m_jhQ+3zVL{ z@`Q2O>a3N$A?NmT*=B6^TB~IjnDn5(wcBY~znPXF9Bh}}?t0nA0Nmz0AfKP=+k~$T z+AHO1d`2I^o!dEdI^mevxzg#bm5q%yeY&RZC2(g217ocWI_qT!?rec4+u)C at ot;Wn z>ytJ5=_XeY%OBl{eF*`f&7eW!*)h+QBLC=qJU**1*o43+5Fk*EL4T|Ks`M^XwvKqc zo-N*8rA+s4^-C+Rcz29eFzl`|Se6R+Xp^hUFHrdUj9UkTc+i56(}3ZyANWt<`+YxA z$FIKdo}N)-#q^AeXqT@ z`0cai;J0ls*4TG!Q*E<&`QbVGuPrJ_mrRFb{r}G<}4Q0T at z?=J=J7q^V|HnBvoFWc6*OzrmtRmPNwg| z;rqXvdk^>j&;P5xxmRJio?Vt#Uw;9^o|aFa9hQ$d5-5yi_?vHDmNz3TY?P#{cCWng zTa&bQz1xcwATjC at lo*YVYdjTBE6VsYaC9NWq!chM&idSfRNgWVx5EHE`oc%8bCwjaW$HP#cv)@Nxtd`k$RK{l)W$v^=tA{0zlIACw z?hsafgL0W3z$~?-{kZ&#Cr?rAo|JVI#Tg33Y<`o#ai_f2QO*q1Zv%@K41X1?*+msj z8=qcI%K*jEZ;oDEPO{yE)4yO(5X`+4wQBsHsoQ{L>Vx~}PS62F2l%QNpfadv?u>T4 zt-L4V(=CcZ0B|oz&RIbr{3L$giQ7Gp?N}dyvjkm#SEQzG zBE4;pVXAC1?wyqu0_VOA>G#&gMv6Z3>mR^8Ry_6Pj1UV$;?k9ged=@S{_W{0f}oR6 z*|}1728`aldzWe4KJdJ_97BX)34%KbI62;WW1JqpBL5J at N?439M&(wowJRPWO1~JO zvf)SeH4en972a3TJJ{JPyW8%GhCo3n_xrO>S-SzZYPnOusOZJ*Z^kq8&=ue`on4i4 z at aOzuTrLrkE)!y(u@{=t9Y$T>`(F%Bc94Q>r1tc_u-%#5*8P$K-PGVkZ$HSvy`fC<8d>ctw3 z2J5YX`_d%!@KCZJ4|Lq%DD$FqZa!pW_uJoqL9}57w!Q}cU|dalT!i(_t&0>2bZ}cvF-$J6?(>8!%INUK$t);WhVyqtJ2a0NC*}{2=`VZt;r3U+eTN?=miP+F47lm? z%3AHKXWN;XFzCPe{r$5kV=o-NDIDe1kIv#!^E$JpyA=+JROU>12z=858$gSLwwyyI{4 zr0hjLdCcSYn$)yCZLN8WO*CX2 at 5(`OtR_8qUqsuS1-7mzQJz29E6*1Spm9&X`TAw~ z##lD4&#CpdZ;#7McivxVXCu}5GD3~U7>o;_!^Y&Arp1-Z?*Nvw1Mi}b09d57Ib55^ zf$>m at lQ_I@2YfH at FAh`Q6)0RQaJ}sll|MZeEe6dk6=aeUxz?^5y&C`GRtOiPvv~Fl z%wAqbo9DQ`$r at i2M8CeEr|`a9qu|}nQ4UZHLItLG3-Do`59EIZsp|97~z5Vp8 z`nf1!sO2l{C0FrH<K|+ zkf{743G53 at 9g}+I0{H0>v;MjQ_qz(9g30y?V`Ih=6Owlqf{s$77{lNiMp5HZc%QKr zcXH;p_p9KmXY&hF6>PV5Ibquq5G2B-x$U~k34Bbag_(?+MolkE{+o at 8G zI+QU8nU@(q;68({RRaBt5H?y!~1g at H*oYN0!tk+&CKm6z!dHnnxis;D^G<%&rDJ|2*U$4G- z&2Zk8-QC@?&2d8;M&Rn}lM4+0S7mxvw-V$fg;ON5DPPseA|9VtETWJ zLFk#I>1%`LH0P#3D3QVFr&?ZA()=+9q<`)l at 58m;c^Wv{tm+ at BMWceywbrA@8 z7!&VR+@}m_i+kcchi3F`zmc{4(qDCV}X<0 z%GfI{o#ZBmYzvIugaiswSQH_MNdW0JhC9qxo_TuGMUmHM+>JVDNg>LNA=wM&TLs+ojj-W+8{G&gOT^ww=Hre*gMi z`Q^K_^7|PK10^uq8GtA^wD^h|B?if-k#3I%J&j&KDgffr=b2jIp;Nd4ulKn&MIp?g zI#hw+;R at J?0kyLrC_ at w_A=4^6kf~@LZ*C6CD#BojVmHRJ5zvF~FpPAdyQ%Fno%N5;7r zH_Gd9IQ6>ZyebS9QI)d%_`NH$4V-rDT5C&X0Bm+!9RyS>Q#|kAzt19^AAkO%7#&}I z^;Nb>>2370#fKgtmFajt(6DM71&QD6OM1 z0w=D~XrgR|=v2hksc(~f)zbER$X9ATG8>dg8d6Sp*ZA5b-peXE5+J8H2w%=J8pq!x zIoWReByK0jo}P<;j(?_jD53`3SA3A+#Hdh#A#Y`L<^$uvm6VnIl{uRtLuf?(Rezft z#wOV&J=*!C8C0p~smJxs=CE{uscANy$2+dabUc}%d~AWjZs2>C;C+?SD178yW6UgG zPobMK>)pxMXBIFql)?J_)wDx=%m%)C!RVWk#U2%=!bwb(KhMG1tP{;*;bQq6Yj>xPDVAhP}r&HJ4KX*HwcP3 zG(D5o(I{f$RNCyGKZT5JwyHie1 zPRhl_MOB#KPvVCj@(t)<&|52g`t10O!8MH#+c(&N??G$clfSumXLoxiIPJ=ai|KXw z8{ilceCT;RPzYj-%fpw at w$0H42|~)B+X?AeAV{-PUOZ zo)|$+&GHcG&LiXd=q!FawzkD~g$F-6d*6B!_T(%4tFd+dr`?PDo|~Aw at 1ER|T-jIbknf^8N<}ki0y6Oe@}Rj>o^h-}lG)mi~wT{ZH?oK7Uqr zwl*VR{UU|^xSCy;(b)(Ad0)Dn0SvHJrYMAW2=ubnF7Hpz%Rjt3E&s!4UXEAWFuI#e zYfLFrZ(yCO4d|@JwK?3`(2+mhw${ft>OYpJ2U}$a!a#TwNI9#6=x2P2+WpC;P#(=h^z&r^os(#mMMZB{cGv^QpxH7 zPZT%vx^LP#_uc=ndhIw`D+u9M*#U<-T)#O#DQ{2ShhUs$-`w1ckaD4fTL=xoOIKXF z(XaSv!M0JQ{*JLV_H7F#af|odD&h{IZY-Ri0oxe%OB=yvTi(2XS5A)4s<21-Y^FY% ztv!USe{XxrF<8 at te{kX z`^~Eu50`p+>6c2P;Svh}D;U6i8_ZUKQlE)S5`d*X>&yZIew(Ag|Ed6T05r!@L0pvx zhH{|@Rt8tcKls4dh=bxl7%uIrvfFn*FyZ@r|Dawyt at Mq7QZRiAkj;AZ&okq78-5~}RxO4^$U2wRd!uI_b|{_U)jMY;E?-N=L;&9Jot+ zT*TzJdtJ at G25d~mn5}|8+#uU+-7bkXXQev0Jx2Lk$<7IDxi6lIUmL?=;CsnEH~Mv- z$r1g3`~DOqa8}kacG}%Oja>=D7w*kr0%U=)&Je0S_PJ3hiB0vO)tCk5Tq+Rrj- zoGP%*t4G$2tS8`Rm;M``;kf8w_X|Gj at TDQRD^E0(WsS0j;O>UAKH%|r!dS-Tcdy@< z8N5b5l~4s*;22Z|kiLaIi;uPKo^7MJX+Axb_C?-U`N%@Ri9ej8x+!cKhX`@$fETmi zfq_PqW4tSlI>~P6NSF5ciAAUPE-)acjJ0_0rtf{XMS>69Fh&WrpszKopc+34bm>`o zH)X*Z$veWkIoo#mt#$ZYI*GjD{^N7aPswD8ClVZWN?JbceSbIS=6RFfas!)1`aT|* zn&*$t&0$i;nI6CQ_}YBUZ;z_P2y=eZPI0B;Ry7dqSChxX`{J1~^}f^8Ti;(!c#K;y ziT94HTM=1~IO;w5Y})V#+Tu~`tL6DTxRLU!!quc^yiDe8QrZ(-`EK9k5zVzpoHRW= z&wXTAXq~6x1@%d{>AT)XbqnY$c^BL|Py%v;EF6+zz>ZsKPahERX%Af?<#*R`MDg~j7MOJDrAe|_%& zD|AN)Ss%0z&Jxh&#S}pcf*^PGOtsc~nJSY^+=uK0Ht=hx_zllaU>L{qSvf=CyNO3O zOs?D^$pMfkY(xkOfZBvQRahGuvSiG2aP9D~0qF3ZM=5aOZ2?r5^1HxbIRZ_g;Nk|A zFjr6osMf_Zryz}o(wf(E7zBec=(%$WWeAg0j7&%4venx_AUM71l%q((F!1hj3&z`C z4RcXp==SS$mr8{D)6J&SD1Ul>gyj@#UqwbHB=Z%KdV`H1*LXH7s;BOSrXJ?rNbYBt zHq%1`#qU&Cmq3&Sj8s`gzEzmAFjWCEu1A840=OV*gUv-4JrZ at mDQj`A8}Hg9n5*$G z)RXT#SB?Zd!3d}?fyC75`(d8^HPGAz4=T$YfHgsZ+d)YB9o9L_SmkzeXOo=w<>Krd zWshgTJDyPEf0pk`i~98#>am$G-)8k>^=!}&`X+2 at o#de&y=_hzil=^uH69jvukd{1 zHYDA4rUF#}uTUuLw^Osb`+HI-f^MsfF3087>$ic80$ZUH<$|+}O3P2BS>ZTB`LHhI zH}#UJ2%cc at xLLOEhN%ILZR+^sqi5-- at ql_x))1`bSLyRRqca%f`REe-x{T7dMtM#l ztKiQZqqQpN>$I!j7tZvbo7obGbH>a5^0%RtD1V&A0Y_4Ne|VO$tK+4j;9g#aFWf-W z_E#Zj-}Ms8Sj-#d=K1~u%?582TGS!KS=_8;&`I012AvoecYDM5FqZ0JibCtEArI?i za|rzDzsmI|FFt}c`sET{6NU&)xk^`qak#Zr)=|dXPU+T32l7z z;#qmJw;#p(_rL#rzMe5aQ9YkrWM9c8l-~{7^8D~g#@3ik3NOF@`r9%W=i$gIYYaJm zE3cM2#WM$NRBS5#$>SSj0RvUM6kHtQO>mR8H|@WNkD21xkgJnNMM+*2!A|>KbVN6^ zg5L#qTb))JqC`u#zxm>ec#AD>duJ-W>^c0KT?=3BwEG4!xFOx|NANC-!G#c^*N-GYiYzjhVD6i>%#%;Lz*a{9_agV z!ZL(682hXL(_h`Y at vYts6{Ijxs7)jpk7bsfF!7V4)AIiH5eU};A%+=1oj&g_&&vve z@*N7ye}4I{{PGkFv(qnEtzH?+uwb4yFr|F5h|1RmAS39e!YYw2oRCoU1WHmWF>WR+ z!rI^o3X}rhX*xwDFSF2n$KjS)dB?>5E|v8(FbW+YSAB8>vaTWcCtr6M*$QDoSk}% zMGLG{h`~*WQRTYUv$pCKu!u{$5nN06?pwE%_{ZxTVA};DR71I^5>aDoC?w^<6ezRC zJ^(*%XM2oRCsRgS2-3mr1g2c4(A>1yxJX)=F}>C!0%Nc*3YiZ1=vqbcc<^pZ2Vp3) z3FD>Rfm@~7qzOXX)DUcg+>I5b at TnV0R|cZOE$;d)Vz=y&3F)=-tQXO#GUHa9GS;K( zA|aN2k2|QvH at L+s}T}Zq9GyP>)}%2Hn9E%IH&*_5&>|^>FEjM zyBts3*jyO$Ry<(}so^v8ur*BT4Hj{)H((Jtn4 z>eR1j7?)$;@}GcNKpl`Or1RcN?ccvv z7&cSX8YbeG`^?T~j!{)SZ^@^TA)i#xpB}$s%uqm(b6M~Qze#*A;5EEOc%7Y&fSn-- zE43bYjNuoCKDeU$`f8Mr2N!u>PDYXQ{lVsfC#{#+$p!rHuKW(;_#KAt`f!^z*S%DS z8yMQW_mfXvl%0)MxdO*^wz#*ZJAPQ7 at s`pT1(x|}1nyUFw7gOy_>|w<+q-2rFub5( zEMH^+oU%Sv9(@*52)L#M1m{uZGXT4wynpEgKj(t;+VW#yW&r%mFCsh*J> zj7gL_#!+M3g--s?Vl(82GZC550tPx?%$E)C$?N-#LTEnEmfO_vuu-=L1*y4j@>+be z3>wI9r(?q$xE4^f?HB*Ye-#g)h#_XV>Z%3OIgMul64yo-We%cwX;3idwp)Je>}7iN z3TA#po_Dt^W;mP7W;r23 znTYqmcj>{tUvpTF`NBYWPb#r*wzcM$@iS&T6E3C*HR`b}V-~*)w`3SlLryM88>jFje3PnS_ z+S=R+OnIFy0R{1a_pgno20y=if115jGv;J+VTh^U*$Cb$0HqyM_6rRTFm}*~GZ5}b zpps#d!Al};A0>V}ZhiQJhN?=k9(a`^6 at T|>JcBp<`uE=yzknk?8VZvbS>Paz>UFQ4 z9%D!mK-8NZ0Tu>>_~lnunz1vbA5D8Wf@}FvGnu!+SFv4KE9hY`$qV>0ZdVjyK9gU| zp~~{{lil)z=lk$?;CG4AjS|-Hquc}c7-RI`73o*t;4OW&EgPGgQBLmQnPYH7M}RB& z^@#h)$MqJlN13*Ll8}pXSuJ`l>h79=VsSd_W}+E?(XoAH$=eBOA^*Uo*zj zIlo~PDpDN`3uT<}RfQI>!sAo`eCKvKo at Bj`8d~{mseBjStl%G_%<0gOcM2-+Kw zJpA3;#?TML at SB(J8>L&! zkhe~Mt!zKtiE^?6Vhy)pb|At9*3uQs(doi92yT_ZacZ;vBUM-hk?(FUK{P+Pgi^t~ zdmz9e2>K}u>jzlPpCM$rFsN0So$+p9PPrVNLzkB!+zkk$4+cCz_+bpQLnPhDJyqfr@`<;r+iR2V7?bHIpZ=N z=)_&oA6FRamD3vRwNP+6%Vn_6HH8nkcYqN42snJQvsFIb+bPethh+z4rzOh*Zg;bb za(_K8D>pFj*{H0-Fk1+>E->rTk2dEu1dXdEm*(U_ at m%&iGv9UT)7}ANYkh5w#9{JV z!dS(!lgYGUd`<^P at GzdnTBrcKv%O!5h!XF+DupnW>=_B+8h3S##ed^=8xn>v0lpQs z9xCDpVHu$Kg|JcpbP#lzhKDK2*fkttRfm9tS0!?h-!D@{nd6yTd#u4!+q~~I_!L;{ z$+OKJ6rnEn$rgd(yYc)jrU)4^+U$VJ3o2uYH<)&=2n!AuC^(i9z5S(#2v^54???zT z5aE$BD}m-8XYukuh>~Q6!hqbgi?Ir9ty{99UM{kkHt!ieaf=b;;)z0^uAn0sQIs0+ zNrk at OgE8AE+M^=ZMfkawp?e`_&qeACsv?lZZ5h1rd~P{39Q4WoO5NV>7S|ohYM0Gn zF9KA&?}BqGmE-e^G8$hnKJD`CaKG&ABD67}oW9T-kWTxDHmLv#Qkno=P^aU at Guz?5 zXwr&sw4dhDgC}0N$Kuwo9|do8enuNn2*DA{(tw@oqqC;Z*ftB)IK1I~4-KYU+8{hsJlo)-c-IF92k@``=g-1Bj73&S z44+8DQTDjEyMF+UbQ6czVJz2yaXxhjj=3>CRFSe14np5l0IQc-u3KR!Ez~{mEVc>> z`)#Y8^_WAyDj`k_UjmC}$})mji-xh4rzBKB4>$c0Uqq at o3Qu?sawK5}wupD{q#yE% zXW5oT&~V5LtUT8o@?7tU!5K5JJ)jN2;Qe?-=!c at p#aTBhOZ>JFX~$0>%A4oYF}QSA zW|w1Nf4zWZ{Q}UE4h)#}GCbWWbL)2NFY#O$W}iUd+XdEL at KA$O#lPL={f at E8)uV5j z3R^!a5X7e($4VZ>gM|2~l&^trH`jj7v4>)|UIrWBK1RFVWZMf;6}O&Bd?kI=iQp$G zRq*`n-k~lqbjOKX_;C+LdWih$cYw$>3h&BY*~GwpvbR+>FtE3fX`9s1>tMJ>-+~s% z+8 at xLKD>%HEOBo(H*SAg- at z!;7&oYW8QCRHExR}i0&=^eP#Vgozk3_Qgs04aoxDex zHXEOpC2&;vr=!Dexeb`#S9WGXKBQvo7ocvq7w?!38gNdJyE1QxLD7{j>vadlwli`c z<0 at 0g3mD7S#EVMj{;v4qp0WvhP^Mb0imQAQ8WbmW(5O6CrLN*^e*4eg{I7eaQZ~(X zIK at Zn5GOMAOL=+~8>P&MXKc4WRbUl5+%s>Ub4YiOQ{)Xt6Rs5)F3t^2@>2TToU_*?Wj!4K z at qhP6_j+SmX#KjqM}8a~#vl`G7B398hFI=>6ubdM%cUlSAusPg%XXAGiWMYu1= zliTw0bXI=<{-S*GZdBfkuge(Af2Lrip-%F;^6S=)+ga|(URw-ehu()tw_D|K zYqRViV76eQTHdY`oT4G0BD7wgoRs%iI(ozuN}xnJ>~}Lg(4kXz)G>lk-<(|(dQ$FI zxVwr4(?SV?_}!3EYsl#+H<6W~RSfN`fd8={(Ie&R zOSS&BrE3Umz4T}g_D5+0N8 at 8Q=%>@>BBXN5#RtM9D=c~6dS!y-pbYAx4h4_9 at r!6q zh3gGAcG2mqe3O^5-1bH9qMKpQXJZslr>a%J>ee>q(OYPHW%4QmZp~tU#VMz=^hEf3 z&V3is7<%A-YL2sX!fOknukbR)F&i7h(6yA^IM#pucmFaVNxfQ;DqIo at V**a9$T=OS z!e`QZtm5ZA>$lA+kH%znyM37Fyqvi5_wo|PNn24OS5Wx$f~ctYZqx?HTpFcq!j`I% zzDu6`7VhANtC)q0c;>spRv24HVv at oZC`UZte*I`Y2fu}bc*AY(!E~XOH9Zs*?q=ma zH=hi{v*mmEj&NP>;-2 at P?Ck<0a0J1whj5*1 z71A5V)PCx{(Kw(v;8)#xO3o{;JKifOCimnU1Jk;YsZQrOMRtkMJoxC-GP<0ntX1+$ zlX?n`e-z)o{`O^XTwZjq((J%2U|^DNl7taR@(@ep_2RItZi6LF-e^oie|qqY1H8vT zS3H^z?Kt!&-qgdopd)fvt at n_4xz5UK4i|+zq~`kZy+yKo&@L$g%JR9cO6_&-i;pJh zRx#zYu-jw#MHgFnH%FSt-%uhtDiOT5x4jiycH6IYjA6rPf{-?W;%-OhsVi_(Q0vK~ zEqXOWUu)1Z{mzt}G{jhHaA&rI^OH|Mi{huEa}9pHe)A4_xLG!L56Tn;sk6ONyE+(Rn(wS-g8^BmE~6W%-gqb>;8`5;=%rIJ~fI~5bt;12frYQa!cEs ziMu>KN2V;5-u6MEW!duW3?soA!NmWq-XVv(WvlO^J#d at xavE2;(6?@2>7J%07vZ#^ ztL#0x;Cb%*8HBO5&iui at Zs4<{(Ks^$qbc~xeLd&$z2G73h+&~}w%`XE!cAOWVmK+! zam!HWom$7^mGq`s9#2z-MhDo(bv;z<;K|{!Xc0WuE2 at 6r>_wD5 at rCE&eKvOnC+h+_ zMnvV4d({JIL#*5TAL`8+m{o7yO~#?|0_vpF^QSjZUZZhdJ%ZH(c#Dz at Q0P^q5&1?# z+cjA>Wj;zD>IG*>zVkSJ-&45qfB4Da&#z&!z5ZqyZtlVCItXZlG#$^LIDpz|#f$S( z5c+}v(4$tTg}PW7R^$pm2VuTgO}347G<0KR7|sY};c13PAXUv*W}t at wrEjgr5TixY zE}5f2xmw1zC|cK8GAbFZ&T`qt(mH_HK6$cTesH)`hARN&;3vcY6%S0BN;+ijIytfT?g9qQO1Up!$9 z%IdP8h@#&pATpvgkX(hc&0xCCguC#2WM!@g_wM(%fjnL*H6N5+7;$i;XqJ-<6Un`M7*C#!DtPN?9G zX%pyL=8WZp>vI(76Nvk4JSpeXNjANGhf;NXdQnbk(*?%G#RR3`Vp2{Jihf)9Xf!Fu zCo5G&2+-T8v9gUqq+y_E53>m6yWTp)q=kvah0`cay^C3qp9aUp6;4%E|Fj8DBbeeoXDRWgCT1JUc~LX6qNmTZX9s zRH$6h=F_vIa(;FaZ`9Qlgr7e854d>HKM!G68Fsa11$UGO?#Jqt=HXKcO`2N{HizY4 zcc%=%)jq;?qo-GJ7{ya%-|>Uxm(3vp9O0!W_wD=F)aY~|JZoz!@uI!%MudQ|yW+ql zN}fi5-eQr?u@}!Q>r!PIc-nURq31+JORrRfA2_xI4ZHuS&m33#(sEXTvCva`qlXUV zT-sLw5x at M(j4Py_9r}r6mwDtv8gUA)JCp+Ja~4ofaqauU+rS~dN7yb7ZwFW$ zi!7v9_kki8mRC=4N({27 at vL*9HhsDyYQ}_PnGsN#zF;9U+n4WX?gS3 zP3qy}CCh9E-9&(jpqrv_mv`NVW$Ys=U9U56<={ z8F`lc^|?x$B}zNywLcG2z>9*b;#aRtiOZ#sw859W$Hl|(|M=hj<-LlS+h`a7>yG&X z`c|*U<#`$SbqkPmh9Wk}T97Cr zJYdkekYyZA41tSDbb-4Xbb=t%GY7h-tPCiJ{)SA;@GM at nRu}lMqYS~wDbul$VK$7< zPna2Jslw=rtN~V8EPjNY$?2n%P5mnI8%~{oG>#t)hbhn|`k(@JMft|7>Dh2)WjvxH zw)th6ymJJMgk=qmmA-iwCT70G(pV=X|(&zbrJZMp at 3ROL2s`C7Zef$vTe7PoO|u5v`NHz6MW|VH3YKCp&meEBgMh} zCr<+tgK!-SVbc(kNkb at Y=8%D^5IW9|h4)=(lK#^-$MtcLumooOoeU=LMu0-pT9Ne6 zc4}$b|E5N9$NGhh=f*3Nz+ryNupNh#hl1c9cTTgbv;Z||c80<$6Rk0)w&U#NRGC+v zJwJ>PbvpJKMz7~zEBhxu`XL5Zx1686MUbAO1Z at D{77E;~9372O*inM-=okGlSi9qA z)3%2wO|A0#-+mDfhf_>Fz3>M+X`ey&7bx{A at A;gdW6Jw7aAO4h0!ciex4=fZARhxJ z=8=bHV`|QNq@@boeJVdDQ8i4`Yo1*J;{is>vnTuU?76r at NOt-grH8Ty6wB-PC*@ba z{vC?v2;n*?L!Kc8%a>pN8s)T8hAs-)Fz#-cxXB1!+Vjl{PqlmWbE|d z`+gsM%#@;Dv;|*DU^{)YeJ-l8PWx(`c2LsY-sW<28slS`e(H@*dug|^aw<+P=vkHj zpl}#F89IV46NjlH6TZjzpxnD6{R;RxCOr&ch~2n>GUdKsB at zaDY=vEa0DgcYdhRbr zXW$XIPtTnSbcR75&oAKP_&S at iRQ}-~|1o{|;paby*UWy(=JWk*+7#j>&EQLV*YyUj z>M>OL6zA!K at CY6OMFy99z?gd~P11vkXABM({rL{M5iQh}`^BZSy z=(AgM8Q*^&__WG9l-zT0X=`V@?C-lErbpS-<(SxLjPkSB at 3JUV`L_4`X*|?x!qa|S zX&_G{Tb96|J7T0)oP{n7)BJs$KfA$ANW(1z( zON=1D6Bo!BXU55~6Teju?bG567E^y!&O%d+w at x4p8NGda`W#a~(I{W>UJVoCw`0xo z$V}gX at B4n^0TehnCsiGwNsZS}JZ(}Gz(?uvGp|?vxVQH6w=n8cEL}GyzCqZwut?T> zFoz`?qqV=)FTFvhDrt1m?^8}M=Vb!Jvb&x|G-Hb>HP#rtKq$F_7)uUhh!w}+bBT2X z!1XA|peUhBM~rz`Lz!7`1K=(~p at VfJF~e{#0p$D9q`W^J!3bga*H|HQR}!l at td%|p zsP%uivsv~~0=GfheisW5#63LNMks(xe&X%^D&M@^rEfjI#S7EXL$?BBYXjg7aC8&v zX#=6!K|r;Z%`>I^m9mMj({ngLGwp-;^?RYqMPO>aCX at +GL(5?pLQbfVw3{H{ssd9+W4$yZQF4pV&Iw-^=w7SQt|y zvN#2xK&+p};$;w0Gw@!bf_Sb$=o^rD3SLggamo1Tt((G7ClLPx!WuzvC*$*Sj74{X zU^+vPTtJ8;7?1nAjbSu1iPQ1s-BT>$H!z6T?~h>=XXV}bc{aJV>^V4jMO|}<^fHPg zKOmkf&iY-nl>Ewo_w#iG4sF3XmZ;N=G at b)u0xwh;RF0z5QMbRN$QfKb1K+^aF^pma zgVr;kcS6sd3Wt3ggDVQ!D=L|Qr&*Po_no%W`(e3N`Bc%>;}^jRQ-@?AVsKLivryb5 zYH8i+_y~TE#9ToSy6&ZYmGAHX{^Sf3 at R%CF-oi5Grmz$BYSz$Kl5v(xL;x$9CJEpZ+nyXY0Gqs zGIU&wTiSuXw}yHqRxyHl;M`_Duh(_8ALZ!jwO_8fzrLTx8{CE-RBq$Jqcz4?=_Nfz z!5UBIjNM(%E;^EN8z`?Z7xtn?%a}KeFS at m0%9UB83v*!jc0u8bv)I7(5bT#y`Jqp$9}9 zazTx_qlXr>10M7TrEzC_J5z#s+Ew)ZqK$137MVT*)_M%H=!NpOH;sMn$GFl{CqC=p zF|;LK0-E5n>|4ft6}^PHz{m8yC_Fs$D!LfKsd8gD-A-vh-*(_*2k at a9@7a&n#&=!G z8pTTmi2fLo5DSjv_{G at cobjTc3SMES!K5dPF3?sz>NmW*9Ng|w-T+u`qKpYW;bfmx z)Q;c3M^QeHV*BYQAEWru7URyu7s at sMItxNb#t^&sNpF4yu13Exkc48B)2}-jW~NcL!J#)ZagX4n4uBPK&RE9`p1d;FS?;@Ah`hzK9z(~a z at dSz!b-{A|JT7gwkw&kLn#%E?B1uqGM}) z99Bn*q=gK54)I@;pZ?f(`>{BLkFw3#2Ky0s5Lf*{9H%B*<^7eYodu zQ at yS~Jg at xK)5D*SV0hebi-f!4q(HQZZ+|Me)|!+^=4 z at M*SF=y%{t4N!HryRvT+WlQ1q+0%pa z`6tg%%(lw*Mz_3u`3j*5aWdd~4+}(jJH05d-2~_kRMfUM%9A}kq=W2vw+YkT!{R)I zSbD3sWeY3N4Q6}f?@-nT_3lGN2RnKccXF>yAN at 4d2F%*&=N|WZz~>N)b_t at tJU=aG zrzZ&I(=a+WrglFsXLwbtjh%D!ovIv7FXOG!MeS-?5y|9!dUKfFoM+kv*C2o#M^thG z6m$S_VbUUV5Z`gCLA$Yb#2gS=SN5&f9Q}7i z61-JeZrKiA)w{Psz3y45Qt5`z3URkPkX>BO!72KoH&3CFEj?(9jN0E$V at T``p$S)+ zY_sKzZP1$5GvV)R6uNa8ErcEhBUMAFzT at H*4;9Z11alNV#--Qom4kyl6t1n%%?Kr0 z-$)K#PY3`6t(@?j4YwE1edbhR%P|xNH*Ti@{-MNZ9LR6R;Eao~jM-HAqX8Hd)CnH$ zZVyosP~M;qS4vL7brq-4=q$?QE{dOw*J)v=A^QkAVWp+-^yB3WrP}E%r;!;?H`bOm zv$|4R1vmBli6?$y(J!b>rzpt4w2Q#*(+>H93P=;L)?KgDpo(m#av~oY0tJxqW!|g( z7qc8K;UorWE)?jqotP-YB&2h_fX_J$XHdB6!4vL|uhY7xGkKQF|f_{Q0 z;-`2tQrS2@;hA_dOIXCg-Zlp1UOb)dR&WDeG(50H-!g3>E#A$`jCV$EF$Diq0lkOD z??Lh`RDut!(4Hm6_7?u8AQN}wm&SLlaTeDi0DzM`VT{rv({#LC+ at P_jg8t=ie-oT| zqH?xVKXs`B=(L~8S5_kfGp7uD)(!sZr5AT2d|;@zl$&W{nl5a!K!c83_qQ*YU{!Byy}8$;^J^JgeNv&6l*Pp7etuDlhulvxg-BGwpp1+t60z`iJe zE`(Sc?!fn#GG2AHywmZTtm31yFE^#{SBAjpE9lAb{`#x0%bVBlieI(qSr@&7%y}1O zlD0T4E00i-));WywzfA)58As$K4n1w&sJ#T73Iaakq`2Yv>;Cg5x^tzacKN{=uI?U z at 0!~{5qPhbD~v3?13t*VtJw`^Yn=%B2Ap5-xKnL)MX}#!IRM>RD7V#XJKvF#T`>kD8iA zWVz;mD^sO7DZVYP7iV!JpMrxnytWE*bbz`Ujm)Y0ihzWQ-#&?pLCtBqB*gh0KA zfFvB4WqV_zbO$>C10e^XT#0GjdS={8p$8GmsP#~|I at CSdWZ%$zrVE``k{Re>6uH^} zvBSV&2bC5G+gpN|gaMY1l-30)^uj3cjG=48Kvmji=O+k|yE5z}RIn1RP?Wy<;&(Z( z1FSyER~N!xwm#ae`}oQ3e);t2VfpA_r##ykmS_7r<)g!Wn9p|E-0Ws`W4F6jc2VZ` zut-(l_EG$H5hiXd+gkN|xXaly2^)9A0oyR+=XJ!bj z`VfDtDhRN@;b*k!wDfp1&Q!On4PB9Vf?$7le2M~yzyn?qjB$<%O2;#+_z+4Wl}ue` zTjK at AZQbQ4cEC^JE+WZ5vPutRl~g38Dr&>7c at IK|pjs$ZGEh(|ikFlhd<8#5RN*M& z%KnSAMd4(7t373L}jo-#aPJe(J4S1Gd?h5YF?ucQQ%Rsjg7no#%uJ& zPxJxiz}W2w6ta2^CcwxT78SsFH=-6$u*@54S0z&qqRc*O6z#ALdK46pWJo`}ryvSZ zQGyzEFu^B#L)twr at 87;H zFTee!%wejoT-Kv>jj*wSPLB;x>}2NN>tYnS`u&RQ(Zy+mtShUHDZF;d1sri|P$AI< zzm`=hsP_^ftT)9~)2{XgY~T=#o3XcFPMfF<$n5n{tYauvWf`WAfhW^x;=iKgQ-CWW z=_X?;*4>nClp{ktvIkkFK!9Jo04VED9g|;WXA?!_{PcaMQS|z`g_OGv_-Q)>_@`61 zVnLuen6zDQhXT^APP&;c2Zb1K;{-EB#i)xT#)@WI#lF!mr-Gf9^D~l%PxiQX2Q8 at 3 zwt4 at CKDSZyCW+arW9R~oDS{Sdjd3^5(ADkSF2-!RvQYl8L_Lnp+U76|7ZC3e6k+<{ zitp-abNW_q;?u(?iGP#lP2kTI5+k4oojg4-*nhy7U6t|01>-a>m(a!N;tZv5CpZ-) z7-PllZsZSoi4~{{+t6|7L8D3D?N%w%z)YiPLf=j>PW^oYj;NgK_0yO+Lq2HWXoMLH zs#nZyg`7^;FpBqsHp8Ll7fhV)Io(`o3LK}O(vR_kyE_==@L0c|q;OQ}Gt}b}_#5LW zY at 8Akf8DJ6^z^uV`Ndb|Bj7 at 5<%_Srj6x+`-7d?xXNA3cjT+;*LS1?_^{`3hfCao; zjlm-ybLv&)UQbYVE^x+WYnwLLSUE$6UVig33Tdy~uiumBTAr)IGIV>LVg34$P7pu& zHf1bmLX=~PUT>2MsDEh~;|Whj_!`R&F!I|)78-_ne+*?&sqnEzi=K21YVYd=@rxoN zj$7wAl`EwC^p_5l6<)d{-^9g`m(!{+GJeM1_K;sc_~B=zgRHwfKP_{3+IptOp}TwW zUpRsjTbpUC2AhUbrapm%i=D)6L!2}$3=vwH!7tvcljdna~;0W+d`Q}CQD0xLe;TP2$bUnEjRdP zxsh4GQDxrnE%{NDBV>ifZT9<9 at soDxm-z1fjVf_Y?P|!nU0XbXDtLPKxGyY)Lsb at S zOZ}ZVLHb2$JmW8Q(HvkRzB}%=t1lI%^|s7I2wEPkln#Z7Y9J at X!GJ1+RHU=A zS0aKz>3vY)75VhQO31Owsn6+rFg-{?Wr0anR(p6&IhOAN6qO5C5z4 at 0#nS>kRO=F- z2q>Y_o_ISLE6;wmN#<@pRTN$Et-w#&Fq(Z}whjEVoe0ck3k5*y|0&kLiq6L`o+A7X z5Wc%*ALZQX&aKUjz}rKGquuU>aAoJ&_C)dC;F2WCn z)~7rJ>$hSQdj0?a|MW>jK~!Moe(9rw#p}0)T>+;uG}u7-qF%S|kog(N-{Bn>JSlJ_ zuy_$^gPsWqR|QMr)Po=)O0+8BQv_dCkZB+JWB`s)rhCcbwk%Jd9Hbq)n+QkxEiGwC z8BTG7qG2$33x!!iw|{zPjfr(U71q}Kn5n2-s+fvuuDVuutNf|Jx;Nbt47xIRmAv)x z^39ugQrxgwK{G|r_)TN;i6^)8Bk`IF8x?3SRSNy8je;~=B2l;fvp*^$;)b&UGIoQ! zRsKEtomKkRFMHdJEqGClMie3N!;Olg5Tfi#gL;cv2!vJM^D~w^o15Vsv8WSVK#yt9 z74^7sISLVq#B@?u|EuU}M5^pnM!XOh0LE3N;(~^Z%9`F%r&(PkZM>=cVHG9bK8?o4 z$JG_hj=kOu4Fh^fS(L}%_GsVQ{(cnc@!3hfeeHsUZj at TuOS@O7OFXbF+v)UW^|BtJ zWF1Fg)3{O?8wRk&xJfJC6PMit`{?~!l;RWc47>xEq_K}bdJzw>_$@w6FiT+rK5P;88?52hNM*mo%9l>BTmETg8vh=RiyT-zh>bCKfMy;6B(+}rxWUTHz!i5aw=_Lp|4JTBW7^U}v2 zFm3mp<#0M5{?JDe8uUsFe07(Cx)l`tf>zy%MdjbPP)G>lyyD4*aCFISw^Tyi zztm}$nFg&2Hnb96uUCzC<>LU{N-BOvMq$W03h)Yffc$Rz$&<1!zoA^^t6sz at FuFj2 z9bJHD@)Fu-d|{MFw{h{eQ`Pjv?c;2xC at 8(cB5IO<(`MsCjk^{mp(lk1{~aE2kS4_Q z>ho-g1q>Z?VJ00XBtia19pZ+{X|_<}MPmY~hA{!ZDNBB3;q{)1oqQ5m3olc_;|BL_ zKW&#jIQ0HGV-}^)x`3g)Bnag-r^M#TV>rtrV&w5Z at qS#03sKm-$=@bFH|sU`!Z-7N zBj3Dlw(4OuRa#|iIlT4|k3)O#${6b$-nUN2eC6MK^8DvDGf)-T0KoP2N}0@!wW6XW z6t!C{hg)}q*W-tB2m<&`OSfd{V~sCiU0pA=$~hLwyQA}R22rVi3?aZ9 at +n{x7=Bp) z9L4f{dQ~ncX9l3I0H#Wh05xAcfSld!-7kCm at aaMMXm?OP+21Tbc)DHw=#wYqXP>_) zfA-^#IDb^OH(KQrte8Ut;kxsPFa|AV2U9I~6T#_Jf$+|3im{Ml_KLMg^voa1m&vmOp!rs-tq{ca0mzUh>|LaDoTeiI9DpxO>+BXcV{=A z3a4C+h0_z_wTo}8Lu+_*Ym47)h)g4+GJ#C7F at _4U>~9ED(-WHgt$=To4-T@@UU`gd zhPlB|$0LN>`B^r;onKx?(bl7^V)*1>r}Sx;I6gpW-NO*t+V;yQ)zVeTle?xo>Jd*A z+5n4>tA>Z)`xJMz;PpsL&tj2#lKD+%S8!I3zj0 at - zeuSpMKNoSyy!0XJ!CeDi^kTY=N1w5FRlea7o%JPtucGMD&UolicrfxbIr|7tx3kzn zDeTfO_bP1BAB~;ipc?~WpMJX?jK?N$F*eM;>gm|t-io5Da_sb&%vL4MKy9Z?V+k(| zg(%^)QKePo(*5oX#&$8B at qa2H#v(~WiMvAh=qYufhSN9-3a5($V+5n|ejs8+H0srm zGPFhZ-K at -)4y|2%;97+frAB2Eqk`k982HHlyy;h(z zetPKS`FiU%pd$cF$Klx*r{(16UAdW!!9(y7ddtdf>ezIO8o9T#w+T5w8y!Pq7;`^2 z2oA4+)2kqU_Tbao54=<7qF!N*$sAbUqu{7GHG51-{Mjs;-!Wh?u>9JF%AaGa$4~wo zWC6x{L>(9L$XL1UqxOV5-;U(iL>i+z*og#-#I!vj#8;IrFYC(oUAAZ-XenA zqIn-dRNK$k3s-SeUg@{bA%yDfqpfqsEIgQYrcaa|1xrPWcE$@x+uYwzo^7a5UHGGc zNFIKpp(l^K4>+Zs{e0=W{ZWw)awrGgrVCl=)V<#C?7>JIs{)9Dr$fuKRgyT1?-jj) zJn~9f&2A1}1B*-rI|%Yhls|DsCyX9Gr-L%wDZwz{v5Ns*RqLK|=O{6A80W?8 zCfjuAmt)*OP#89f*Z%Gv7VIe&1_Xu at Gu(SpZd<+b`sAz}osY|X0IwT!AsiOdd at X*f zV6O-Ycf7f+??MZb;}g3jGVkiV_*&JcGahd z;;KRwHC?{~!Ko<~I#>NVbtf}FN8oC81b?GY+!uG$SD}?S&dyFFKveo at bS%mij5Kiz zAW>EjF%WtgvIig~C=6VIW!)++N_Ua+`sxNIhO!MzUF6`hbJ^cqLW8Mk1v*9EY-i#M zK$XEdURPDQcJRRol~Y$suQ9NCP`e;_4AQ5T;T$O%*96 zUC3wzQz&uexgzaHnDui_#5#zF8E)uWfBU2YqIJiYVXwXJ6&ehTIgp_xSex<{KGA(p2%MsI at rj$K zyK(OB=AayaFCRVIhgYCj8(+J*0nV&5Zq{LburAZMDu^iL(3{`wt;UY9HuxPyTHyoj zI_`R7T|p>M)61rpRVG?_8_FmB5xy!48F!U$fxxr-J3X6>8GUs6Jzra(?sY2L(Bn%R z?2`uKIb-qm&3oEVzf>d+#Gs;lr*ED1Uj`SDSi!l<7{N6ZCb!>-S42ex#X^sr1|cm# z!H|z2RKNpg4Gs_XqfDwGIhC*S-3z=;8ZC~oc@!Q1HGJ?KBSD40&;$FefurYD z1;%%UiT!j|$SGZELhqgmi*&3v(zd$6^K?3X=$r2wU+L%FG`frlJit)wUe8^J(~vQ`0?+ zPkBjZUC3*=lbXo3UtOog(>4NkgeA#M?Ff6zippiK+E9| zWD!TrM{iV|#VO-eRRaC|qIB*^s8}hN^m<)!U)Wb;LPgZLZs1JaDh0+t%U=>>#(1i< zufe|Npy}53b>wHd5wExQtljnr+B*T^T~s=4-xW+b1OXg+y~zkQ%g)-dG; zpj2`5TyZXa3m=n)=r#A1f$=JGEe<@sXA{Gt7#sP@%D?_-=jSrR3 at Rx=NT(EvPD9br z^aNniNI&1=>d86vJNbBgF)pX0%QBv#oVcP>B?KTD=V#2I_s=KuYzDp5*(g^$JN383 z4MS?*&r8RB$Cj|*ma+Jq-o>g~mZ%uW#7tN{?YW~}cf4;qZtqk@(yB1*HIP(~#yVDk z$TY at s$p`$gocx}!F?GVsZy-AORlAp_AxiqL;-;mjkja1o_GK91HAt(Aeao#Q3 at m5h z4L)55*|zuhvyFisJY#1RzM`GhgG3`DXo)%X=bm%M at d=-9SBAD*_V#vz7}pHy2qb at x zLVI#Tn;{ZCvRW|n8x$}J8U`v}g}*>}TKQVc+8R^}u7E5s1<*F$wLRLphme&~x==>t z%c(^@aw9JSAG%tRk-fHJ{AXeGRA3m4ZMx7+d3l zAeHEf`ziz&7BF-dYsiQ%f#o&VPPLd~0HIutQNo=jbqt&e)Zj3lGRiq{cTDvN`+2Fo zodLg%=SAr2&44#3VC|=S+bPV2sS2C1jw*n9 at itLr{E~=YW>C=+7EY_KGB8;H!g)oH zMaIu6-osKOM337*uWudDDJcU1^H_3%P}qo?Ru6t5WOu=qaut11K55SDg0{CF_)= zJfaF4rwXMF4GiO!#pjGU6?ttL*)-qx7&8 at 1J#gfI;1Tsdg7*E4U)GR*5O{Atu=S|u-}!>IJ2bubl*S?ab+64syZ%x zwxiZ3{+ZuZ$;nI at b_$aKvU*6yB*{b2}Rxi?VTbZfs<({D> z;(}Y%SdL}OTeH0qeQ`B^#)GkR?^-{GAZ>`x*@Kf}TznPz!x-uH?82X&x;MYO7_5m; zz{ajQTsm%y6*Xi4Bq(nEmc<_81Y at VC{6PVVCE<>rzinT%1SF+Mz$=O}LqS(Oq5rpx1Hc;?8$tQ2ff6lBB at Slq#kjng-J^B8H)Dt0I&jF7^s z2V>ttxb6)7o^Y?+BOvP3n$s at MNUV_u1zmU|puNv)z+2T7C50bt5XMchT{JU52=5O! z%G2Gg at _c_Mi)0RVHzOQXE>(~nqY+AwQ#I%AW5%_s>a%v-`%W zB)h-i7 at C_Rm{kakiBhnneOk-lk<)hxfxx(N?=#zJT&&ZFa}@k++oWd=_*srZ+THN= zm}`-{h-8SOv9sNWk-+?bqjjik8h_*vWl at F0pt1qJyH}-#mX zXjZQZH}PEjWKbigZL<&Dmr?J8ULWJ)`Y1U7B>X{Z`1s_!ynXvl5SE?Y?b1GQD;0zr z^=b?Zpl=12 at 5(5%YLqckDRr at l3aX2>61u=UfQ%LbYw*OIh^l}{+RQ8rd7FY!wDn;JDBRrci}nQ4G- z#cN?Szn%g=1a7ZgW-3kcZ~3yqj`HH=L3vpgHYk01PUJc62P%(MxadjT*d7))EB4w= zmo3xO;Alb>Xrlty at sa(yzn)ujNLTVvd7U07=|kbJQ5SlokCvm?A<7>4%&Q_-&jn;uvSon5=RJ)JI>Nv7Igqi>81r8asdoqQbrgu8U* z_zV9`mjf&BWq(U_40l0L at iVVuqw%ovZ$CZwc@>&gf-(kSuddv1zJXalWMS6)rV=Yk zP^19KoH&945>3XnNA&P zanN{<6_C^I2i#25twJP(8_M$I|9U$VIv1BHOsB`?=wyTtn-upRn?Z1D=6;J-eqv=sNrsEl9PqD%vN_Vur1_f at h{NqK`Gl#$;^B5v at rQG!d zWp|9CJB2yXo*BxI)|uZzcD1Ohu&6MxGRBAbO=KzR9_HYxO24PPjC87+x!VNL9*9lU zQ_!i9-QVjj*8 at _g($*YonAsHqsSE7^Ja=>_n* zKmj%w+YM_kY1;%so&b-r)~Ya;J4pO8G7dj`YE%9>gl$whB7}%(M36HdkdU-ocJC>gJL<1C98H}p8 zH}tesW~?&mJ)SC%7%Q!Q@#*5+si}&Ki9N&Mh_?xr#J5 at cQ%P3LnWdPo`TW+7RP~a&m z{a}m~7&0Db679eAXG~{Si^3~pYBGJ58>d9wHYNfVp^-%+THw5=r^rBZ2U3i_qAj;5 zPJWrgkIdVDz1s?RS9nHMp69kzF8*+JwPWnUF+&mDgDv}S!lCM at YB2%w0FQMDNUGK& z{g_eui0}da>Ie$?>IviB(346<75>s}gcFDObwz*NsM&Ca{k>fjw|)%kv(wXj)=bZw zMwLQQ#m{Nt%P~qXhDbs?fV;R~KdFU61zyQ#pB+3YZs;%k3=uF`Ugg|zmk1mq`Hxr& zvT(>T?DPVbj9sR+yBnngZ+34$Lz~>_+OI5)z`s>w(OQ3qTyaqsip&(D3Ll&yLz+c~ z***sRQTY@;;T*Kn=kgns2W6=BI&G>Plos?x4F|&*8g6T2oUTfpi$R<+byjFN90D8T zprH$7M8h*?I&Z)+m6l87E)?%bqz;V_^X1DQ at w} zp|fptIK_GCh71f?Vr4B$UZ>*GO#PcB-_EB_l~nnWGglf_7NCOX*y>f3Pl#8>66+O} z4>k|kcK#btGMh|Gb&c`w9}s2Zj~=R^WZnUV0E2( zs7qeNjkHT%=|VWS*AX|C|9^b_S&wepnkRP6==+EjvD)39Je8G&%h(`f7qSXr8-yiP z2rOY=BW{o-TQW9S!UBX2-1r8`2tELC#}yv}$=6t5m0Zru$~?{9t6wYnZbifY_aE+#YtKF7oy{1}c>3oV-I8qI!dCc=w&5oh1YR9{14s3DWNUQ$x-n=SgFN(q?Zvn^ z96!!~elNZQ8(V=-eajd4V;8XJ;hX+Wow*Vm?|TlO^Yahi?m zytp`xpOZl9AN|>@->f{`PRmhv7Df*Hb(Wn$#unrJ65%AYG9%ho00LMWm&zy-qS|0xck*>i~?uW!yHte>Zo7=o)rkNLbxK4KSPiUXI( zOBP6EZ%v~Q?>|nuj62RH?POeyQM1<3&0_>2^@=(kbzjGL9337;d0Jk;@-`+TjEDx~ z*;}+mx`S9_ at I;}ao8U+nDaA`*41^w;LrPKqbPY0sgZ05uzQyGOf~>} zP#Oaxb2 at dVq^_{N-Ob=P&V3jk?R7J~eDR{rkPHyRMk(q3O|c!DqJD4(fK)M3?Ybn# zz)&W?);zi@~;c_6yL z4CvE1EbT&%l7{D#&v9lg?i-veMebJ<5O5Ibe2%OxHRHkz8i&7j6$f#6sM%UFnL}2D z{v;nY;wguNLGL*6fRo|wEM|5D$;fWXjnQ7(&*Gwh?%2H zaz8X;g*;o{-ksKB!*=qGUXIJ)@8H|-;>6rc=Lu9KB8-RB118Y1{ERVldNn#eHZ-j> zoU-sr$GwFIIi`AqR>FhqtV9Amxxc$N?d_3q?hoL?t66CJ!_W~S!#N-OYS at 73MJ8_`c>)yvmse8`$@o~teae`P#xnN|!>co)`f2%q26~J7m)0cB6kbBFlIg-%A|a zBzQs-$I}1f-}*<7 at 8c|ej6w)bNMR>?*q~W<&h})+{9y)@9c(Fvi7nL3NG?4LgWjMK z5HxH6>o}?aITQsKA!i;{Usnjm^)`){p}-(cWjK861gLu$qSt}u#Sz6TVuw@;D2ye0 zwHf2J6#^PeuB)mWhevQuKYs`gztoWFLcIuc=BqF&0gGYdpoHP9?%tGp+FJytZVX@@ zBHOo_iPQxuqbQC)erk4ab91`{z%ZgcQH}O#!-a8G##@C+IUIGAQlIwP^c at 4qoKQN^ zqKjE-F at pJRoiQ^EPtL4VZ>>7b)*W#(T}4n|A4iGj8yRgGRfC6(QRG-O7;e$(?fZArAO7%%MhUv at o`r#`u%ICDYST=shw#Yfi<{|e zk#W)m2yeDP5`;Y<;?K2FLJrRcPf+HA7esjN>dv$BTj(mvt>aPw!b|vUIAh_& z2z``A$`uig^6{VYi>T at E|Fi$4;M*2(QGnMna^a8Af3yMK66Hk+nJ6UV at b+B{dhT=R zEyV*4D${o+?~H-SQO1F-U8#>NjS{_QOE>&#O)fC|20n}xbKn;TJ^(9)t#pD}K2Iy= zt>=7;r at gluLFR~9`owK*bRQm!=P-!~e;H6OgDB|G)r-%*$e0_75uUVT#X*#?3|U^B z_MYs8-{VMa%dU$4P4XG*Y?}Ed`}fu)E}OO|D7ujie+- at SE*fd$l8PSFQB2Kybb#;*=Z5nd3+F9}r_uBIi z{a-8U{y6J!Ms94$_Rth}tcHklP^R}jY3fc5fPqW-(!>D`Cp28zo6_B%7aciJ7U z4$k17ae8?lz8RqMBE1tD$*Sp5;JBfGWg=Jjz6?EV6ZqY$Z^}y{Msa?BdDG17hY$8c zK90i`r#SWKn%ShV_tPGZ3BCvp2LIedu7^V<1JxP97Tb-1in5z-QkJ0#XoBypMYj^i zDj!bo-n?n{(NY<*S=(EA7XH>g?X<_bact_}iNRd8Mk1rgOAAN-(?9=<_S%>nWE?0w zfT{eM=j&@RlBvgOy~8dtADWjxBHQJW(0|ARJklY8rqqXb!>1kQ6B(gvOPk=4v4hLY z1RvfLK;W0I at pxewn>c_eKk at jD|A=hva7W*FR2QPV#=_N|kq!HG0ubS=!=VxQccO{{{cym9d4UG4vbL!_|HH z2#?FUMa at PZjpT(oEPn6!a%&yZo0LNy2cN<_o_hK6Mey|`dM`R4zsEB at 3+I(d!*+D# zK8-EV-D+rt@@2#(C=34&Sx at DuGl)x2a}x*ovO35tZAZtPTZ?+F^=VJvBqcf+?aQo~WgKV&328IR6ea-!u$dqd8e)wDvv{!W72 zMOW_wUm*N7S)2GF at JGJP_;s3Z at R;v)LO-Ouu8d#_JK^+w^nUc5cGUg`@#U!;>@Zm$ zM~wNFGED$yd_A^qNL8Qblpwu-jkA^_m7kf z!^|oj`$#hELqXP2>M;zpYiC^fol5g&-V1IQ?^9&19E5Srn~S&%&beh<30lmg*CD$8j~Z>9D~_s<1 at MzdPeA;#mF}RSiHxG zw0uIvxlFk)UObz&_xD;xk&-&@tbOOO(64Vu zTo(ilk8)sbq^=9|3(!%m&;&I*9%XC#Rjd zN-Y?$j)77i1W at meMWH*~h3ZCOkcU((gVT6pkBa0tDe2R1Wt{HM| z(Pap~KmPcA+jn++(%**%Pa5%7K?jeFAl&Hoa_Gtft1 at H(@#%S-4uRm|VT>Z4i}EP# z!Z!>M1*(oVq((6GWu!tS&LG3xfGGF3(;g1YUalScm-3?E+HT8fy#LvF#qf4$t9y1Q z{Jh733r-zm#@Pjb1LOTo^h4SZ)((soh+(t}edlZ?lo zKRaq!Wn#93!A-f~oMG+LI9l|MF4gjUc*}d^$hYVmN2WnXc((5@Ij{EI_uhd*O3=CU at v$EBfUxf9AM>$-Uo!uZ(anT{1L@?o$t;+pM*9$ljYE?HlVKR z7LIG`UP-{?{brM5bIg{#2>%+Zs5>2pvYTx~+Q?}VbdN>O!$*(N^TAzMxcqr>dDh?z zkCvx%9cTJK<(fCogZKbKRU~&sZ%@Q3y-@;<~Z-#p$-mUkkSBb zRSyeCO?hY%n0&`scI3*2}3MjUKT z-WvNATe9>d{2qJ1mOv&*9;YmD94PDZE=4cj2E!P(S at N6C(ud+-l^007 at aKm$kj7^tbKpP!9#5b zdGR;i#A{<8a=g4Wz5m1ShU~#%j#)S=5xIDYYs_->>-NJ)^BE}rm85) zM7p_e`zcw1^&n^^2n4WGv}Mc)BN9Hz-;8;bX3loOK=L92)HQ&)blWtehw-CS=0h{m z#MHXT0_F5wH_Pv<`5)qXw~fvbWvcOcxj*w}9ug2d^ALq_nTBc!28(ALLa%P at q)gl0 zElpcbj;3WwDrH~9fjNz1&_VU0h8QNRvR_1j-sJvc6xCyl+Y;qlg&YP*)B%xZGF^7c zdd|GBtLON$F^@5xXB at aVC1ISEWkL|AEms>)-$V<m&;ifAFDRTsGa2ITJVnnXG5ZeU$!+1FZzAYbt57u-Yhg{u0DvWDF!10F<(`B5-+eDxi__eK`WhoB#wx*{s zFt*z}+}&L4qik84I5j!9S08)D+!plZu*<~has5MvYUH*`OT3(h at mrs z)b?j4qR5JErd)zxW}~c-2uRn6t8sah+d2o3(GM at D0UfLJ@#BZ-_4_yBxfrq-KjTF3 zm97VPqfpHn^SADLU8DA=v=adZ$q0RT|Eb+OmSyM;EV**lbR9Fw#bE?PAk^;QAkdgG z*+1}I#Mv-w^C*sr9T2*9R%oIN*Z4FBfb!Ihs(W3#+U*&d;=B4Fp(ADEYB6$SNxNIZ z&SuJt!hQZ^+TVt3S;4hth`Nw+>hFx-v-9aR#>NsecWH~IftF>hQVxYow!wo(Wb-WS zjXwMPCQey{a5Lv_XIviaKWUcHWGd at 73J!HE-6Rmvyo2=bj*|GxuVg zjd$wo;C!ze#5XmlLH8JECSo45BkdRKH#{-=)o;OjtoXDPJaBjiG8l}Ig2?e!^PB&` zF~Uc5moZxC*DfhaDd*giA~W5|BlK?MH(D>n(52y%IN>Hp6vljO7=bcsxTCzgcXePh zE)o88`6y4YVw@=5w;ki8J5^f+6sn)cj_TIs;2QdXPvOaA3OEbkdGBia at abc_+dD}? z=As681aEc9^Zu=M^3pVXPDbd4&Z^FdSGvw#$}kR(W~aN|pNIXxQJ3;bS$KG4H)0Sq zG=J~MSuop`9GBk%9{DlMgbcm6G}CDUx$uPUM$5P8s?l=p+()bMMVA6gd3xpGl-!R6 zsPRs8dGu(9-~?9AWYHYkQrdFOv$;B~;Vl8Fii7q0Z_ScR?KB{~I z7ahULLm#}sL2-2s8K4WzI1iu0K~CFv4o8neraL*@K{kVfG2`EG9D!Quaj^SjnQkiI z4BnC5twWSH4Bi?Es?KB%2`n^?Hik=(#h9JyBY~wgdWRVgt`(8{W85zO$oDC6c{8$+ zvc3*oa&P{B at K8efFF_68V|4!xd(5#jeqV2>pl2!iH(D*v-6!wl=%xu1f1`9Lk&_<4 zH^GT_7rc7kYl_bOuuZF$5qH9w^ZGi$UikMafzah*2-v_mm{M-O!6UUtq3_cF{$Kgi zIL;U at 1b1^0(K%$r#-Q!es0?RD5oQ*V-aX!iIbv8=(l8}MoY(Rv at 3`-|pF;z4x4-KU zLSp{DOGG>Fjf_GO at 0vGsDKrz32FLX%ziBx|t&$W|Bdi_>uhI>$%A;h^M>KCSRAZNF zNUJzT_oTtcE5;;&Hx2A=2ob(!@Crd3rzn5fG2^M4q0&rc2S?zMI!8LQaor=d>W3#8 zyVu=+QPhf{QR>DnXk&2M0rn|`klRwvAo%Mj)|=47qR#}=*vS$w=);I+Ly2_N;d#Wa z_~PUh4;qud9p2IXAlqVbU50xrOla%6qc~_5(Y4?;{7Q-I?&9q0az2kCwhM}JhTYpa z_ho-mNsWOno3`oJ+Htyo&9ohRV2UVpzlqQ}U*Kx=AE9^32+0I!m#iqf&5`wdQe5u) z8{f2T6{5j6#eYt9{_?lK9eKNl=V&o^*|+`}BMQsjwia!*uGi7QVFbhWXeK93-=4b)z009!|?~0K20LuRm at 15&+ at PKA;A~Gjy^aS1H3V06~h`#nuot zb6AF|Ykx(qD0 at bRoN`>Mb0RsmP<#3OMY97k9(H{IKmHlCA9~6A;8efo at P*cPg7CcM z=h) z8<(To`#O%W?7Z8`y<9j(@MX9J=gv?D^)R}47+-i-h8AB4PT|ht>p%XT9}^g*O;c{@ne~sGzBg;4Gu= z&$PlnvVfk0v2ZTz!a|H|tY&;_16>S%=!0k8M8Bfz_{M~bt7ZVLL2J9d4iUfy(P35U zp~L8g8$Bhf8{5-aV4NL0FwhOU)7t$R+#B}c`r+fd1Qz!7J(!*x9EBg!CJRTW-C?>E z9(v-7z0dVh_;BJNOiS at Pqcro_E%C_(Dd_fzH|qM*2lh z1!NibePwoZ+F~7j at Nf0-u}tTcU<@AO15up$<1XhG{Gp z)xC}5fX|u0<F)hpP%{dM8A1PcKJQ{pv%w&ewY4_ z|LwmY-V7pCoNJmngqzX_cJ9^NrtnLITp=L$c&QJMS2aMMMLi6MC5U3o9E`vKsv5KR zC|pidoxZdQVo4{5PZ>O1&-}))!{Ji at xDT1eOn6&^f?9xnZM?Gx&p}X{t(iS|XPTy6 zcd7jHCJY_pY5~@^TRZceNhlmZYm~Wi{K{Nu2RPJghUu3G9m3c}!7e$|G&i zt&52$Ns){;a{%uxvYmFMMdO>mW{I0_y_K^Aa2IXUW{gHjf~ELc<9-GvAwiBlMT^-H zRBsp&qu5{8BHKGr_|Kl~O}11!KKa!4=xVX1p-sRoU~HTX<8rXO*REgBbs6f)`x3l~ zl<)GM8g-r82b5w59|cUHYcv;hz#ab9jxuWC8+6i|0W;+_Z&{<94ya$ybDYD;AK$@K zYA1Li?(*coPmf%^M=`zr`K_Ak)PNU0DN+OaSGR(h;L(h)W^~|;6BkACA%;{iP-PUD z{H?2sV2!M|cJ5D~K8|r at BDt;_AGjGczrp2qX_6}^vJrXe)6Vir;Grxp47&&}tr^MT zcZg00uMRv$?811H7RHUd%6H`3SN{WYh_VnPJMC8Xy!nZ4s(d?s}p~WW5K^ES7544 zW2?N6M<~^1>GF46OOqYq^vBs)-x_7v48KRd z;rw-R;LwVLKriBT-zXQKaabI-nu7~vfTM~&S9k)mFsA3mFI-jBe;fj8mP!O3xOlr0lu0|Jf{M~P#9C!-TuSx!dgsYl12r5*ut$}yo3 zE-n{AqQC^~m94z~5Xag?4efpQ@kdVpg;4&iQ`di1AXjQg%!1y(jCKwgokH zD3on|yP&#`Xpk^;0Qrx80e^#EJyi)L$ffqe2b#h&JpvAEXu3Az9jB;erVSTx6`C7Q zy0jPg^qS=!p3_#a`I|iugwVUn)rQ$wFFjL{dJhtCkblQaTeibH_yt|vcXfRIK384v zf8+2 at --}+&)sij46bjzi^3X at JrM+qi-qI#(2XCxy4WH!^J%i)eJLCVBbXP|f*oH?w z$2}y3*OybTWKMK?02!yl at A=^KkpJ>GxP}AA$un6r%vndU at 5C|0dsZK?B#yCx%W1Ps z3wQ_kW^^m_2iRTYh+Pl=ckKT!@H57zk9+V3PmbAdL1*}_&imK@MCji>oD21mb22`@3Fo+70izmAkq> zirkfDyHuZc-J)-MjVl^aZ z-g6>Wh1w}1$+NaKIPmxA{)I0}c;LCyt^>guKF=4V=}Yo0^ndUKh`vJw&_#o1I` zt~GFB&?*Jxy=hOEU?N6cFP0LiQK zU3~A_DIf|{_sCI<-0HK#d?T0`k*ICg7#uTY&rgqINZ(E`U%m`%ut}eeJ)PlF8GA9f zmVH4g#^%6I7KvuZqN8Kth8d|(j}E&it=%Nd*fpb at 5dpu*4xYg}8+1agE4k}w#u!*Y z+`#Uk`0%t~CVU*Y=@#30b$gI1|BR4tiz`cNsy8 z-(j{q2(HskbTX-F*0&2M&cTW9?8 at K(Z-7 at l&N@{$ zBg@(az88ia9)9 at YSJTs1-$c$fTjspu5&r$=oA7q{BZbAeFz7#yXn3KE7UvynOv-?o zZ7q|ApUo`9yE4*bnt@`h(7NN4!jlY;E?xELN at uXh7wv}U4K-o#5AC at d7BtDJ+bTwG z at UF65tyxO$(Ns{Q+ma4~L*?n}-Hw57Z%Sl at 1|7yOcuAe`LhjMD-Ob at 0u(g{z<(Lt@ z9P**dpu5cGYQIwld|q>46fed)ZU&e8d)r;;dM^%UcK|_%@Fo6+LHgHk&ACbatMI5 at f!`v{9GJF0 zJbV{D#i_ at O@b82}$1fc~jwZUzGNK+sI4t_D2TE at R-3LZG1rAn^p0>NW`Xac1Gt`Tc z at 3qSf!Mpl`gI-gxz&Rg`C8hGFNi)c9_yt{)4;zpR#_8*&*lkv`Q0H6DDF-s8j4~A; zcsi7U{z at CloCKQ;h41r5-gEVvoP$t_?g#%ee7Sbziom3oa#qu7W{1YmhwzEE_!}Qb zuI3D&u5;hlZseJLth=yw;A%JTz)tb2ZgeGAdgb&GkUQI{S{IfbUHZTMYk&6G8)0e% zT3^ivvRewojD&-a(1m9yF~9`@76aW1PZanl$p?gg3`5j;qBKXAYgSZq2B(Gud?CPE zJntdEvSf*x@^_k=7DQN6ex0+t|F<)MYEAK-yz<9ch!hef?Z`FHXV17_b%Ryt`r}fE{t6|muYACM_HWM9}=Y*8wr{2DYIQ7VQhFkNz~Y`-IU`xHZLDt zre{|X`0ZzD?HI at jUU0$-=5*YJ;B&c{KQBfu7cETvvT`MSnACeRAcO}_IdQscH~_d` z#>nz7%MZ6-bQ*ukFJ;uhpzO{n3ymz{ zLMfbI98Z=w+Sz4D!v{I at LfdxsdCY8m^5ke*-+waN40mxxqe1dJ4dEOHuJc7EuJ1p6 z5`{dB(#Dn`1a9t!!imhj{^@PU-R-5!?X*>{`Q-GnU2~t0&%+zR`_pF~><=&aekdz6 zpQ4lwn-MSGI3bY@&u4yg%>3 zcB2PVskP$-FE4V&!e8kzEF6@~!Z3Oonxh8U$uZ5{=#I+^W0S at Z1)Po!#c6Deah7PKe)l-xo>v~C$Fz+u zn{n^?j308c9p{N-WE`vSW*8Yw?+d!nThN8J>Y)GO&b!v{Ykm2R--?ISiB5P?rrGy) zXJMGttNjhgBVTM!XI#?-`A)l2Q0R0seF>Z$DiwSi+g6$eH@>9@@%4Rzhz?N*A6d=? z42D&xTV}IEZvtm^M`$k~DIS9plXmW-FAM?l9iGz;?H}zKb$Qn3`5Qkk$!vl#^fC5O zd4dkRx at bF{0ycFv7!AJA0?(S1HgG)T7o7~7@;=T8 z!8tCQhEKJH^9o04OmGpM@(@2GwxYA9t@&36F|tG_hXx@^ilIYP6PeL-qHN!zhhsKN zY`3xz*%_NF5UJl0+~$7+SAjba2fp0%EIgy9W~@)l=?e|w#5btQ?}2l&Gvv?F at rEgn z+>gXb;K>2U_<%n%W(N0BAs$zZ9qURKuFJfkcD^ zXzHu7@^?;1E75W&E1yo+`Cq?DS?=}z0#V`_4iE!xAUAafWKwj%W z!y4v4IzQdXVnGZGscxtKt>8zbYjycXxDgWBAYL~ItprP11XV_m!ZP0G^x|&%>3tMg z7;3a<;6-~FiQ*v_b=L_4XMPtKfehT^C4M`uxfjY68-wbt_9*ke-m2@?%G2Mg2AL7a)eW-KPSW;%nR8FV zFyNk9GmXKc^zjLvaqSvvDIZ=O6d4EU at X!8kjO*KWtEo#y0t}vUKGmtLD*eJ5XMt0f zw(5>)7f*wl91t$>N!vQ+D(^>C#1TCmYv7%av0t27TP?~Y;Jw2*fE at BqpWlYQmI2v` zLpCO>gfL;CrRn6&`;HAeI(jxe`~JsPcXN6&ZN$O*vX~*fxf#O{ID?308Ngwg7W^Rl zV<JUWNC&GPOujEJApyBpUf79^V<=F z6k#Y1^_-+()0fXgMvKa8%F?|JUo(#27*1udBoubTqn$;|u_w3H0jZBH zFwDX6?4&GjEP^i1MQDqk%-C0lV2yzVi}AT=18*iQsFx!+)2{f84)dG+gj=SZwQNk=E>oH*Nzn=Sxw>VxWasIv29MIz2_aH3-2L5iOj!xhZ98hWt{Po z`ee!f7|iUJ7w}!n2n;fW at avQ*i+1b;n89;#?kWod51cE<+&=cpefG&cV|uRxlO3=& z+MPaLOG6v1;C~3xZVs$EE$BXm(o7vcs2g~;nKO at q6Q0n(H^2JTuL>U>=@}SjM=*w{ z<)M*h%D^Ks(#_DPjlOkyHq)Uv2yAo<`yL2VR_f2UvU+i12CqbqG$;w4jJE}=hISF~ z at Q$_y=v-sF&cGb2R-Oor*sy%NtQR3CzeZAJdBqsy;43h&# zcy&F>6wU#ICq0;@jS6QcFtlTz11Loldt at Eh;mpapj$Vw^lxDEDf-pE~J7tK#82+>x zL6;ngzJQw)k>4Xgv2L*SH at mgsfAT;6=N>z-mcXSD2 at z3>zd03$`+My+xVnmRUA3Oq z&h+HyVA_-Ui9=AQ=<0U*!ykU0-oF13f<^gk?xsB$5iUlw&~>bGZNwR;$YHR%0pbRk zm&m+rL at qw-N(?5M5emsEV-|o4)JBMq=QDG-*TMJ;)n?V>ln(L at Ns$M~Qvr6ZEOj^SdgWHGhJJDgB$=K!jUP;mOeH{;Y89<-bl z90$<5P|o}gCqNgd at 7?DJsSi)& z<0=tLVi1m>fBv~jjgwB%Bjr~3=bLZ7txy<)24)dC#dDVE3!dS`dR3w`Fs{WYKSsg* z;pab0uYUMuT8lh9#-UMH=^a=oFv_0N)BVPgvN-sw=igM%qKmc4R-#BQ77E`IDgm at J zUdIBdYtwO*ECY9KVb}ad*Ws9snRUjhw(B4?S>ITmws$O$E at KmUio9MXism3%$L%lv z;xAgyk3alsdUo`@lYDlM_M-cS@?N448DjFE_wqu2-y2-sC^!z^&1K-qa|$#@t45kE zF#^FAUZjgo&M&5u@qBXE`753NFXhfoCE at U;hq=RUdI=@qfGfLp#nX1BS={>aYH4 zlo@&S4Lr^K?!Ixv<@-D%BS%jTnl;)ma6Y)ZiQ~nva|paMU>{v$J5P?Lv*Xh^ZttoS ze*E#r=`ar2`=5TA-ba_tU1#XcDQ+E$t{iYyXV9USHAfHzn%X4&;NY-2mivqSSQmsX!X!R){C4359pja0(8y+H`*1q?lY*j zp^?Gxe#1}5$AM|4GvC7{c#WfLri=`u2 at -{8Wj*fG_Q8MQCFLh*SC+A5X+X!Q-i6nU zL$_i>-=RO_l&~}K%elS|Z#raQTVBfNl#yAptRf_q`I(B^$mwkPt_O}B;ej at J=)Oq zUGv?{f6An*TTAJFcx@@9?su-Rx4xS-^T=Lomrf6=tIqNt$ok?w~-Bg2R^%t;}@!@ z+%y$m1fC8(NLh;f;=8oJV+vh at 4^<-huf at d)yE8ciue1RgL3!!i}JLc3;-9_ at yR zThq<`RgC4w>C^GY>D%wWn+|m|1etdy7cqDz)A48BJddG87(2*j{0ne^(~RCAWxP zf;h}6^THv8EZ=~q;|SDEl6xT5FbeR7nJrmB at idEC!3s0vkonSHN?Scu0-Jl&&mYdG z+ec~kQRcwIXahLgrIYf?{9*XH?N$CUk`~`3Kq5m$dM>4ZHf`_DPeVj*F*hT^zEDI8{;laSW$KWER)e z2IIAkUObsLo*!YX={5$}cdNl^r7*C^D&_BK`lL%WPSNi6UWL^}gsnI)mx(w#FgtaD z!DJ!7&8(IE?Al#XG|Msx!7ZnIEsANzaY#1m30*mSb_Uts-=6mNH=7ZlT+H0#_}0OV zQ^zUz_SJXO{)?w6GdMO7g>u9?9IvzuUH!eDcdz2ant;%8nZff$a9Rg&VQ?F)EJUK& zoWN^#8%1y2C7g2n@!}Zc6vrs-*G2sM*U>%J-U?1A>IR||c7BJm+P;YD*DE=nf1|Hm zMf~XRe1{LpXJHV3zM4-Sx1`7vW_{d?8PEI?Aej0eIF)O{7V;J$?$ar%slyS9ic6ILxzQDRd zCS+mreKQ@}ROcnQjUz#(@rh%JBa+}L2rCcDM$g%FQbHQc2pE^CtQ>ev2;2vHdK5&2Is53h6lE+2*Fr<^rrFsJJ)& zwst at EC}nm{$^31M<`SL{&YGR0qzYU7kI?r)rY}z0oZ*`t!L%&*a+cEh##I at FE^u_I zr4Y(@_?&1jjd#WpV at 6qQ&PyceZ at Y37=)xZ2GJ77FdH;fNrAYKG6eTZ2&Bpcf+ z5d;HAEm!enIz9U|9iJUfN6(&?`E|8+RqQx;X14wO^SiFSWf1mS%4}C_jbh+RBPenP zt-60hPY2z;D=d( zIt?x0juIYrjKtvNAAY(01gvcnH?-z9Wymoy4K-3!yct}8b``bDGclL zZ=Q#KiEIz at UdoJSY*bu>m#FwLZCbK>MQAW3sJf4GH;WOjO}^=}45?fD9B`~l+F at Hm z_+rpEHe*~8B%B4ex=6Qo_9B}ci`y>LU7k-H3AnWy51z#E9vx1b2Z15RxDoe4L6z@< zXYJg1dNf^~d}x+;iGc=3u_Xmc-k at SA+O3bf`cW*7 at f z4_zf-Lq{hk0AAY0T7qeb*zmr9x zFPz3O;eGYY&u3XSP#zuBB at 0lU88}~k`~9>mu#im%kIK4Ue)=2-?e)UpQ0LHXx^$NE zw~UmG+Q>Sk{y0aRmDjJwPy~z83>Fe-5-}j9oc1W_N1WU;gEvcc+{gSMZ_RN)JE^ zXq(8O<+2z;IAOT;3}894;BCbw6XL!Z at +~7w1GZ-`pHHt6K*@BZAt at tzG41zGmy}|B zL(50&h&ID=KkyU0=r*Uj+U1sS7h{cFVFFkdX%ZWQTB3W&p23m3auD_ at A<|teVm6*(;R^nP3TLB5xoF+fzt{U at B;qz zbwhTBGX*E;KtF(0z~2cvi>%v9?7>!Sx^+*x+*j^td$^(3!ksddO-CwI{Tyh#%nk&o z at oo<9IpCxEGdg8GynP>hd)IUH)lOISv6Hhb%;nFA-@^|5P1|4CbK=>py|fQ|r48Lx z#7tA*fIaVYo539P%`$rDZ<*I_K^xkpg1j5TMSswB)0g1bke2YH3^!Vgp;vLXgXgic zRWzZAVsQZ1;Mc#IK|`Zq$%BvFBI|`E_rJmwn%gPm&VJUOmx-h2IDtJ=fAj_?Fv!jG zMTvAgzvP!!aHl;z;7IxNNofYpU!Q at jaJnw=`4|88Kldnw%Oma at cnd-2=@M#=!%dt( zv;L+P>GAbx_X$N}#rOzA0R9|fN~jJJ%^oDmw5HVWe)oq&H0Nozq-2mCq^aC665h7R z6{Cc`qWFhUgN+dwpaF9s`~kK?kn1lQfWgvzj1kHZc~$}HV8&?R3ZoRh;BW5!G;si9A3k|HJ%9eP0)G*M zZfulHsjY+r98T?XD8F?CI`GZ+XV{(d5eU0pVByR2h)S=FqkC|fKfc1uP^JmZ5^in` zM-1~<7_>c%$N0|f^?z#YO>fo5SJ0}XAT7r)>uk>b+ zD12kHC^)#MER0nUJ zZ9aWEU442V14xL*E)u5~=T&SkUwo73Z!@xcF`ZpoO at FUlSm%pzE*9p+1Dl6O!wAS| z;6(%eqYRBT{PgKK&Yg_W7@&^Uf&_HYcDNfER=deuHDhMbe`o9k9(bi_2ajuO9FUcV zl(#uOJvwLx=J at zi+Gek4!5QlNba4&-&d*MoF=2T6vbV??9y z=BrEyIU^DOU)RuUXUjT>P&+1Y^bG!7P0T_I{DU{pewK?_pE%Ho;Uy>TgV!+z;4}E* z?U7lstWy;Mqv3m3G8*2(yFK$8uerW?^Yh at Xv}ZPa_{Tln~Qbh@?&(6(2-zJq^*{sj!3)w?+| zg?dB0XMzU!=ByJrBu8+?G3B7xt>xq_*CEYKGElox`6=ojzNWneN9 z?MrxE1{1Cv_`NgyL%+%o+q7`(^#GKC;60}d3)$!d8QxdQXFJQnmOF}55X21n1h)^t zD;fw!l&#J=7}Yi~fe$VXUyv~e`;g6{XDgebp?6BZ1Y=-j=vPzURvf?G!=3hQ#0xF2 zg5fcG-%>C)myw6Sad&m!iAMHmCBqK;>DG=_w~Zi#o-=U}th2LfDJ9R#({TiJ8=J(z zDF7?_qrv=+zwvPOe_)mfK___Ku#RZzQI}`h=-M8aoW6CUi at Kf4b#Kts(5Aub4)w#O z)8B%5_?9*F9^BER{%)P&OZLF~!}c2gJIYcAeEZ$@FY45$wmshq+DycedF#HwX=Ask z4QQUv-?r;E`mGB at vm=q~rSLu9$}TIO51Gz2ZB2BVfFZJ1m1YcI+D$fXz`$7!TM>P+5CA{61pe1VkpjHj6x z>hFB4JErh29Kh>lU54SP(NPKm)p9J4wA1d13U_c&$0!WsZ;^zhExMpD!;um$E389N zwS7?lGm|>XB&in-k=Ea>YgGNUeLcVw+V#(1X(jK~LCXKeSgKSJ!YK!y2^c4V{jxKN zx}b;f$e_%I7sGI9jW_8!cy;_Xr;RxO96eF*o|Vx#tKj7 z82B3sox=lP>e6k==&eRUkM;*o9D|hCY5n2Nr-ug1Td4G+ygV`{iQ?04?SW%3Gal&n z-FM$jYp=ddeNnm(m(%Ot{?oSQ==<+fT7`$^T{a=`gc*iYM2L*53)~!@F=p^!+6XR# zqy?{rfd1wHMQKt at 96>>e<%wh_x-V<^)Q0$DA>@&jf(!dhYTs}&C{+XHS4zLJbO*;M zaLB-rk;-4r7<@LgK~?URe*>fOz3mz?EF|^II&_ieC{Vu9`i{suye*Oq{CB}0gS>3Q zNUq8^qwP!hUYRnOvJK^l1coU#4t65z;Eki*b*}Jxt{o%g?|>z-#(9jXU_lm-uDnOHly6J5_3iM1u6WK$Xv~58`2Is~$x42iP7)|xghx4S zhtHli*f|LAfCYbgpW^~1v&Z3^ZZbv?&u|hfc5a3+C;lLT{Mp4xdv(C%IOQPWyYM{t zv_;#<5V at dVYRp5cywq$Lqu%UQU|{g+8d*a!;d_qDz|X+915N0mmFzCa=TIl-mb{k+u_qkBZciFw8Mu#^ecLfy;pMq4euGy)vcEgV?#iz|n3 zNEPHSrG^*<3osYFfyVmdvR2VpoD?V)%taeWGc)1 zsWX+8Xc2_MFlbpAwaqh5f~XtO%pRgJ2sa_{ecO^F{!SUV&PM8$?Me};HOv at hQ@+97 zQor62EpUw8C!fBl63rLt>ee+WfTK3b4?{566duncOf at D1V2HpTCg~vIobIUt4_GIU zqo6DdT;-F0mf;a`FraYk{jggz5M~>3z$j17oaJ3Mg8Og2eG%A(P=gWel&h;{o`5lr z at 1YE8L;^E>sr$*Eg^Tw}E6&!t#mfGE`vyM1$9Z%g{{2=51-cdkQGDTt)RRkpcYJB+ zK{y=->wE6m{JpLiONek7rTLAm0N>$})%M3&7xYsOIygCAzPEgfY4n at htJ7cp^?y

JQx*;3@(@1;KXWU^G(^0V=Hh#(}>=2fGRc+`w+U z*X{KF-NzcJ{x&lrcVZtBj$Fv7r*9Dba8e6Z(kkO-E5f-`UCEq5P;dWZ+`9?1MxQwIPbfQle{Q> z{w9t?k)LL?W{S6e4&{vR;n~^!M=5so=XXzKg=a56A9o at U9yTu0gpX$v51P z7rJpis&{jEhX3dq*p>-=`tzUPR7Ou5T(WbcXIds;+{ygJ#bRCDd)j|Hox2un# zd)iAE?j7uO_{e&6!uDPqlgQj%zX>>bmrPw8k6o5-uOf4yC$RS-KX9d8*5z}hztFYg ziSe4mLCyxic;1Kk9)2F82fO`fXl?KB4vP}VM|TLU%~Jj*d~$Gf5Y&!cb1Z=*V?2gq z4E;HdVORZjUt5QM851+$#y!{Skge_F*6F}k^ds0k_nVC1P2ah%?72SnMBDxLo_8GH zb9gq_i*FpB&FAL&$lTI5YXaUVto9_N4Vw)nwnP6hl%Q~N@&vo;=hJ8xZhr_4JTseJ zHc&QRur3G=UQGzBOzebKdvO56GxUw+wZPa}!Q>+Pq_E~)ZIV!FdpVqV857FrhW|`# zy16*dtwFC2VTiu0Jx>X;dijxd4ql$ytX|j0{3-i62Ur8A14nS?1e;^-LG(_`Se#3L z@$dc%j|R_jDnui;k$OC^T_png at cwwZJWuq)F^S++Z~;w_gs>=rN1u0Ps~Vx_Z-~m1zE?$^cFC5^V at E0o4^rBm4FOn-AumkcPT3gLdT<8Q zBlH(aHOiVY)P{Z&n4Ka}-J$pvLxjUpO%!>Zli at U32%ASqpFHa*g z>+j(JhDEerdlyjyN79~#4ue>YRWMF4tz6(X<+d&P1|7qAF~3y`7A(EX_aX%j$tIyJ zLr3`3!APs48aGO40Vm<(++5{!h~C{ljpDP*2<66+!eeN`=-7G)r)^v|o!c{q*yj);%v?URc9RqI=_c45E%;MNy1w&Upf=*{Fvk?S9a* z!J(tgv$8Bd=7I8T{Qu22-vs83w98Hs=sq$yd>X6$uf$oL*2rPLMeERreA at S#VY!X$ z+6*1dKE`-5UN)FbqO9UM5gGT(6Gs2&NvP57c?3Rezzqe91) zP$@F+562?kMa|@oJRHy5^BiB#+*(Tz5E%}bX8w{hdWKw?G^Jc)yYVFw!0FS- z?$|BeyPU5{5)VoW3}Ko7-`KwpLGkW^({}1CP7`Qr_b=s#ZjIRV at 4}OV_ at d`scob}U;{4s; zIq=G?V;ywtESJiGyE at _E$Z?f6ltwA5{G9jZ at 7<$!=kNWVPrvDcNOIq`=Bc&+?qUE* zxj;nrlpf_cgKzLo^rg1ol?D^xdAcF^s;yrWw59+KYw&0_2le2=hu~cIFQ?oRPk8($ z@;rtqg(v9}a8>{Mb0j3b;?EBVWiRzM1+LlQi!#ZxILP_jZwZ(DHS}Qg at i?N7l(jg} zsm@=@g#*u=#ns~&k~Z7L`Pu9Ue!chS|KUG)6peC%-o1Y_?Z^3h_4ogtx~Jp6{PQvp zqt98}iPtLvv~jcS!1?9bw0W>KJ^$7BT{htUDQwqc}Y!aERyX^j_Z$ma&<85bR#NF(E&{ zb=Nd9(a>nQfv7061u`Ji4AR+oBUI=!7;z}|*3s|OuMYGT0S!aD9nXJ;$EjSf&I7Cc z<^;-`Xj4}?kI~`;Qb=X4)FA`V!R(6+;Cv8pPv=6_|2wrx0bBjXm_g?Vhwj-m2o zJk!>djnw}o4qBqCyvGSFd~Hw4ytnV^$Vw3sZ8G3>;Ace4 at G(bt-otp5sy2OzkSGge zzJ~+l8`r5Ur*U5)(RV8%wd4Kdf^<5GGt&;mLs+&B=}NeWoHBvWe6vpFq2beLpOq;$dVgB z|MaF4A`G-Q{_s!#?AM(^JEjEo}2fNe5*=c!sI#hdB$)2GVF ziU0s^!4sU>{XupC9<|xt+}ic&)92~!PmHWB!=gY}#?S?`LUns-lY>*^+qsQ!41N=N z;EV$(D+^}0dhzOcyRX(`gc33bVdNmnJU9;00#|U!a77PrLN_+HIoF7D>6rK&{Fqg;&Tum>K|uwsY{qA!4|}<~hFa z?Cizw?!}DPQm@}Nc!8_D9_7mcYFAz8jBhzfoWRZ0v1j>^IM8+Y^UpZR_rWWB;M+L^ z?cgVG7~A>maM~AGaDdYGfAXLHr!CiB=X3#Mx0OKU=vkb!1YCC?PN&uI+2_|Er+ at m_ zzm2 at 6@W{}uz%^XDvkO1r_0Y=lHFyr6$S`-(N!USK+$+C4eKGy&*T3$hr^jt1mw!g! zoFLL zKL-#EIDnj7_yOxE^LjdY_c=U4URI{uqsXD}Y7=R~e#*AE{?|-s+DaC0BmY1D{tpexo0$fh&X6Mnn&!uBgvYek7X&Zo1Jq>Gs?f{BtHH zF9h{BsmpaePI||g%Mx-X=Q16Ety?$dO4pSC_4MWUG7mZe-nK+%88%n=+3?6C^_y0V z;tJQ$>*E+U%bO1WukG`4+S2;{-SUPlcJ%r9V{s}c at 8`O7^?&&{9wFP>G#1yCrhdY3 z1uOr>|LY%DQGEXRxeDvq(NlQtLbkTI>bgN;z}qn5Ric@#D8uz#2o8~=R2agw7|w7Z z?Ug$7>?(@q_CEDoO&{KVNakp(e089 at dkz)_exf-*Bq_~X11 zs?=WG6c_nT;JrKJLmNJyjC~?!e0s-Nvb}xEPdC23I}f8gHxn3~Oh3m6D#Q3V%9q0f zkM79;x|UZW%%Acu>po_KFEyjJ8)xn|LS}NwMe3aepvo=pf)y;r5#B`!a)9?^G$}^> zP&$VGNUpB0-$!`6z-Dl0*0T1NR)LY?^|y$%--qZ1_#Yk}O-sf!1)g&XICNTn9{CCk zH)d=u0+Upd8o)O2jvtgq!EsJasL~x6F6eV(RAqTM9PsHLUNSo^Y|%E#xCjE$lCQWo z;GSU<&{-r{H?{?BtuJR?Pm=-GID>&l2BzI~@N{$AT~cJH0%prNJw2KJN=dx{qmr}Mi=<=75r7%_we2f+zE57q7n!qzzMh6ZAn#}FC zRMq{Lv82Rm=%6c^GwwIM;lFMT7=_H6vC at H=;vM(J(5x|1W6T#hR3-E{kbSr3fx@$g9R z4xV=^->L0g^qxbzfLnXeW9D)7>OJ7la$XHbKo_(Ezj3hI-y at 9$FWz)@It1X#8o$Sk zP)k;+>+05eb-`=eF2hF7bbWhQ-NstMwTz~$wcR?}JscE|?z0pb_`aCPWSCR#?S#+q zI{D_fJcOsamZl6&`86kg%l&2q*SFd}+d^6#9M3#|^>W&ebBAu9-+ZWZ+4cDXTPIwF z=S-g546fo;PgA}-{rOGH<2+hM$#4p|`rYsTx@|SyUfTsEg3S~V0a(b9wuBEJB7?rc zdnU<|%ahYF>CBp=T^cI5uP&k|gHrm?&Qth^W9GRs9Ps%f!Jwf!x`Xk*kHCZJ!s&IQ zE`keVbkWoT^z^7U+sBy>7YL#=I%+#zKJP>zqcPfk9c$jx!IOgYILUKr1%5 zhn6plt4^5#dOC>%j?cD2tMzxLjyF| z<}gq`iL9oa?cnF*=TFmZU<50FL3`-~Wf|&2ubMI4wNS&0k7*~|lkp{!jRHrRE#=n; z`nA%%F=$WHlQ~+qLLU!T6hT{#K$;8I|>|l}4<#x1oqvMM6Fd|72QQ-mX!59!9i3<);v<3lN7;!yyV at UE_5_4n~$KlJ!V?rkxO=nW%*^t|Cbz z#V8P>!2 at w2TK=AqH{aKzGq3fB;fv_S^BS!X12XgWC_9J$_x+rvf>$|*Il6yhp32A> zQ{rkrQulQo_`K`e#bB8sY)l`al;P_vrQnV65t%)j8ceB$P|XbHc{8JdL?%Pqy?cEX zBN|w{5Onx+d&dg!_BYIr7?{l%_aG+tisO|!tvlDQrA3x+Bg{?s7!EU(PooS>G$<41 zAONyR?ZOFz`sOiFR*j^0T;VaeFg^*dXcq?q&9>u^m^rK6x};<}O%m~Z)7Yc^IOt3F zRU8CYc7+ql(UUDiH*_86Fhm&H$?-c#U;z#p)fC-q0cGm9*>aywjt6{@pZEJ+jw;Zc z*VpGY!t2&{3jRg7y~eO`Y&zXP*JfssH}Ytw0TUzeqNO(kMBwAz?{4W{ildtP&G4fn zth2SGi#4=9c=lx4H#RoPO<;8V;awFW#naX4^LKzv8L2F=S`?T;;3!sr!v}NpYgq%v zs!nY_F*b8JB-BxOK7846X`bf=&g;p^+4MOwCa^%)U;p}7;gzu@&rRB8QFMQ|n4-4T at Gz_p*%=?eoA)AwF2d_tT|y z$t%AM6UD1L-2 at jnkqs`*1A at 9{9*`ZR7Fu15h#-g~?>U1cz%WTdm)^|35V)@W|XTh9dxUXxMxNACbFu!;p)>HS;Q3{n9BMG6FS2*Z57v zXt(iwmoI))-#h8EEvCOV#R{T>MXC>fn#JdIlwj0flb#qer>m4 zc=a+cnI*{~THyf7WYCETJ`4+`XA0{=z9c2?<6Kx17oORq%gBeNp`Ipa-b?Td+ovCn zr<>?a88Up(nc`^=eA0ck*0j)j7m*HOzyI;aX$8*(pSnLkEEbohgS8zE;Wsx%&p^u3 z)*w7M3hKb}yMb&D?`p@)W3|npm3HcKcWoe@`w}_ymG*-N z4mwmomcGGga6wn*{Rrg&HW0Vy`RI<@cd)D(}w70~#&G z4&rn^kN at uP5(wuXTn#--B6t@@LoZWDTmj$ALC* z=-rk7>A(2wH}=3=zrLH!b`ol&?J!#JT at be zLZ`fQeTbveu48j|lo2K}UJTR8z;YBhWIGgHq9_w>&~sjZw~*z-c|4Q958|xbXy3~7 z+O!{B$^KdO``x>@QP8 at mQh&;=5$5cxH%9R+O6~a5$L^-lZj8XxOwVPU{0J8O5Ny0v zrYl2>NGR<@<${1XPaK7{2(mz8C?5BtP;+*MY6Qoo{i1Jc44Qaj19B_VZ*8wtIoQk{ z&)}6MjGQ{6f`C*w`a3Xaiv>;R`a1h`b9H*y$Tff8=N40B=_02xz+l$1brNl^F7vmU zdN%UD*}>BA>NEyY_oeL)YfJ+-`h>EnKS%HYB0S^7S9@`MjuO>B3C at q6CP*?KPG&Ps zk**oWI_j?uS~E0p7VCV54=fE}g2piVL!ddx0RrRZ8pE3NA at 4R2$hRRt;EKT%6;nV_ zOiPg`&$>NV%BV7_0uRi&a;jxJssws3a+7a2g2Nwv^+STSooQ`rJC1BzSP%pT)tB^2#laXXzfLsT~!JA%rP!@M#0ElpiGI5hoj;#Ocku zCPnN$;XsZJ;o)0AMF#L2hX5a%sjX`X?``LvK!^Ur5B5my_*1yeO}}OOIJ(z2HpVwL z%1p`pohzeoad{p-h-?JLCmspoZoQ`5zGo?FlDaT@{t7|&-`h(mGY$Wa^TV84}Nk_CSM at F8N>Au z-F+vhlQoXsA;TpMU6bEYtGV8Gc!8OQmd<%9pby{f2JcUwA5BlqDvs_Tm&VckIT#aXQqwlA_s+j*||Z at hh3v77h+xYfz9@ z$c*hBJsD$TtH<;{jfoN*#`1oC*UqFoy$qM(Uk;=$NkP+)EP5iqhPV8#?MgcfbG|K{ z(GPZBIXnJbM`|;?y%hb6jvJ{Lz3i$I4vg9i{Q|>Q-s6a|KgQ4PMK1BQnYzYls!K)~ z9PFO%dtIB~zI at qbi3F*5vO}J7&e>mhzyrI1;dz4JCy^_(fOpPfH!*N>4)Z>GmuH-0 zM!TyA)5f$DUxP+(-*)(SGwoW5>~rYQ-+k>Nqa5F^K#@|>rLd(O^?G(2ov*8YU!WCT zfG3Pmx7O)Kcz-E0D_`NSlrN3}cZ4DD)4w?_gBAIl*1|`UBi at mz4zAfg^1(s1;>dDj z$(n^7!jbQm>8#w7BruD4mEF&Eg;N{e_igzs_&1!TXX$MYD783K4?%XArBRA^au5npKjy1b7ud%sLpO|4j}X(h zj;^EQ at 7&`6u*K5q7z=B<_sc^Wkm0q0rX3s7 zf-x>62H&`?55{1o1hb7PNwk=+%3oj6#m(4{MVnu|d_HX)?L|^e7&z%*{FN}*VBp{e z at zeCni_7Ws^YQfg?fXs~u>->H&VHj`GX at E=D2NcXZNUpg2%l+LVV+NI9Jm>{)uzI^ zXsdSPRAo7o0p{{uz at a3)10NiuW*206a}~YL_#Fy1$~~|s%QLgH(7?TRq2-&_kH$GE zrGAgw^F5sTyKO={PGk(PNEn`NgDBh3y>=7fUZ+eByut7_)Ep|x?@=> zY2i%0?i&Y5fJNb at RobUpqp*di+6LGR?Rqb~olD=H5ART<*4VUazdbtP3SMQbHVv!D z;d`0nptWVokb6(2EQtHczhekPBJSXs1AhJGI)*5UQdWdhnPA}EyAO4gjGL_y%ip>b zpFe#TB|VnLF+OHF3XHO}T#oMK@=9<3Hj at -;41d8dW=iIz)E?%LQ46k8NPd=C66MF} zrA;OwnDF9|d83;;hAwUCYW&)@z>z?we6rxd@=oyOZ-&*o?zuW0cm`irwQCG>D9?HZSNnK>+p at Nj2@g6IDI)E!w}rBqrfST{^`5z at h}u)ERjO*7jMDG zjPn}k#ou3t)POmp>^RM|t6jG_$fELIME`@oJx(!f=%%Z+d=&od$#cW!GjHi;EFK at 5 zrBn_%!-Jhb;yrXr-96JD?>8&`CA8H0l44|#48f=)2H(+t>pL4Ar?;Dc&xC^e&*#(S z$ytY+SUtlGddGkn->x-~(6vi{aRAf}E%wd6JJ;{-79`)-`94R&7{;Spo0 z*>mtae|f~*wTwDIIkg#%$cM~q7t)R&v1VdRahm!SjukXeYcGaM&y%haV_L3L#};~UTC_w)Gn{-*kyV^_y7bZ?sg?EG4u zn~UQY&z9c(Z~p6#h$&JOol3_OdR;JMhUT-#(^%(;u^_Dsq-eckDb|BX3L=G_y?#5r zfAe~}OL;XosnmLE2Hj#pDRg_k2F;!Fe{lG8dK(7A)CA0IsJ&nR$UBKc`Dxny_M1UG zNG!ksK7=)^&KLwUa4(Jnlbr-|APmN at vI(+8a}|zUG2t&2_;@}P(Ch^E?;NwDQk~hb zkk`yY&iNe&1xKm$+r={{hYzC=cy-MJUxk<}p`}#2=O)7C{@v-t^x=c06f9h9QikrV zFLA^uQpykt2%*;*A5LG&Q+$MhGTsY47#+ at MySEIS)|P>u!EBf$0u?EpzQoCU2;B)X z#j&^dWGIN>6%9E>x{L^)Q&+V1bSa7)Gd`UDX0#mO@*e!6!TfihrOe_a2jvr2p}%1a zF1vPK4)|)B5i&IF1eVa2A}Njw2jLt_sfHmu=YDCPce(~rVENm0^LOjYH^ZppcMQMw zaTRs>E_1AMy at -OQ3$=}5uc42kXDCG7S7&2Au$D(59WwCV zK9PP?T*itxl%)&P)#2GQ%Y8g~GCiK2RFN at 8#!Gq!FM9{wIWhCZ5W6 at Srvx{4<8e at + z*unZ|W*mO}^uD~id+=mhkD+2rPol)%CNPi*bWoZ*TRWXRLJwJ>SfF5_JHxiQGn@^u zbj{Gzr(Grolt&{G?yZY{Q&%{-_z|gdYRlBl at FYFsyt^6Sa9GPbVVRLB7~SfFx56{B zzLnHLSNCTA^4|O|9J at b1b9kR~4xU+_zMcd%hwNnA00iIb8Oc?d?wg%U9*2;D$$K0+ zd>Cgdf%M!3O at 7w{zW~qjBAa``+y3AI^y6qS`g9uySl1qW!7Ka88ppDy47d?7f<_W*W4iN72` z&*>ZI#mRVo{zg4ulMx&BhB`qdT=!%MbCg!O&ym#r(xpam5#X(kfKd-dou0IXlSr26 zR^P2A_{bmm2L4+~9l5*U&oGVo7<{m(KW$pvB-GQyf$)8J{l2&l?D#%(=2RKdAt13- zkD!zT#{oQg`E*(h4ewrmr~_yyRA>K3AJJ2Ak7g!YZ66&mBxzrShdvI at WudgM4y<;A z1 at i=V%`W*Jcs{@XFl0M;h0l)dO!@FNZ~QQ5ICzBvw-e{*+gC3;Nx~RO^>VD}1#sgn_+UQ- zzw{Bf(a{WBK9RuPTCmy#4*Ih}Y;+Mv(6_VWTW3^qB2cWx`MQZs+dXz3u7tZa? z^bnh7pIo?E!@Gg6{1I6RVC9qIJ@*7)@5123NO3?K^`se at iA z&{-S42<&i^{|&y*X8|;40$KdjpMOk#pdq+iSN?;4>4)E(M~F|3b at 2pGo4d_Eg&yI> zFVpQ!oUJI0vmo>m!P1JTxiXdo7tgM2Z8H$6K{2Cg1iu zi4f_I(B)?`fG*u(6ryxBN~8V14QKpE6mHr#29b)d at yg#lF?`z@#BQ(UIuFwb^fi at +kvkb#NgcW zE(F&k6AsHp7+seFBckgqAeA=w4UA5-)Q*t>8rhoJI9TYiUGkoXxjCPnDMxomg)D!g zgKz>(-}cVkoSwgYHtjt>N^lk at BhfbD6>(u+?O9DhuDSs1Z%LGlZyepzp)I<{ z at z5q+TlmQ|e%-|COw)@8u!*{F!iyayka|kn-Y0+*!BX*nM9Qyon({b0x*yeJ&ulnw zv`x`0K4mr_a)c4x7mP>rwcWNN!{MXcQWdS&&Q4q*5Kn<2BTF% zBEl{c5}4a`11ZUtj$Bi_fy6kx~Bins%vZc2v3BGz_v z!4G-`x^zbB^1g+oF&y~IS9l5Es3(=cv$El-&PeGtPVdcs7vI5}ztO0MHh&LV4H@;$ z_^ukAeHgMA`WU-s0tvWv4-3Goi3oNwV2w{Zu=u91<%%ctlIU{Uhy$n(aVd7o;`*|w z+jYj`)J2!6n`|;hbC)8W3r?qD6IdS$> z at __7!-^&6@&QRI}$Fv6rO<8bUok>>1&uFT>hD?A_HVA#{SV0iF$%KY)jT5_x-X%BW z#MoLBvD8~Vop%dC at YSxn)ah_vSGuepn z1w$NT^==2(x~VPX`z5%eJ63W(o?-L=-E!Nm%ntW(pm$(ips|6bw$lN|t__D?ph}K& zq}&FVX at 7NGPF?7nc*}5|=c>zhEKhY%N6b)wQAhMtWYbWD>ZL`QxZL<eRcAy#Id8 at SvvK6ox{`R&eGVO)W}Q at g3~zc9;M;wCKrd*k z_a#t_F*VF)XKycjoBILMcl2b(edj&SX2*Xz(*6MbbqE0Y$4l+D4LFG zPT`y11ykBUB3J(B|J6VFjm0T1j^mi!uS}aO+c5+QK8{0_GX^11?s7c(N625Dw$`@e zJ|t3kU!eE4F~wGxEDRn`+{A*t7= z5UfssYw9O3#=BUvkYiwsO9>lhse#Wo%IW{pPG$5rhiCC`D=-jJWf9Jnsq97h7~6A9 z?R(0RVxnxEC&$NCq7*uzoSjO9rD$iR>hR1UT25rgvxH&q*CNOidj!%T{<9894*ocr zQQ#&kn7#QJhMUK6ayn(+R(AHnfN|;xTNs95o<@0ExTSEw>z1RFeYcoI)~bX2E{kr<{UE)Wh&A(f|2s!eMCLMuMyd)gVS~M9wsp6 at B7qmjEoWu5XUvm-i?-MQXMq}=7_;7EF*De zOD&WLoa{vTw2L>m#1)hP8lbHOY#Dh5Qf1o0S()qT+K9QY3v;Zsn0nNgcH?=%+Ob}X zx(Q}8keqN$2 at L4W={t*pl}&7P?0bB6bTqAQZ?qdkgnXBviBi<9%~(*_9FmT4qDUyQ zz-(-zp5U}JFk0?oj8!_0V|RRVT!SuH2?6cccb`MqV(5OIozQ^WtC7OEL>?9 zrRrbG98MZIK`i^P`*ZNy%zN`W{|1tF`DT1KB7J;psLL%!AmvnUb5=oz*Stf4cN}VX z7G3mU9L88$V4H*3NkqAFxN5+|ud*Y80}k2JX1<-G>_eCGe`qSW-5?)nt2P^_w--aZ z6USk9FXyiHDC1m&-ZFT)UWbYk%qfou1b$trWB_i%T!OU*D=EADiC@!R{3sYe2m3`U z%y=)s0)D)XPVj8LdJaq8HCEWP~^n50JsxOZy^N3O<48phDzG3A;7xO912oT6>Vs>k{1ILhE%I|MCP z(YI&kw&fd{Q}r&<|70cbaLDKclX*BSaJ(G+u^srLxJw=64Byw`%$4q#9d&3#caEES z+`x0j+sXbd>*hq~@UHK4UkB;K$(*hru*S<`XY;TZw3 at wpbECwFC-oM}SZ65Fp{ypQIAOXkhN zAFwRl)|2S`$UtcXH*k=D*P(ltnxY%R2Nuh|5B)h|U2Y`@9b*g~r|Kd)l%q%g;7{^V zUQ7KJkyh_YPQ8_u#p-yx;9?%X=RNSVXXrwP*nv8B;g`q2i>}MT^9p_GZ}LL_kqJ(m zzg^XxGhWrSMs@>7Wdh&kw54nLG4FWS3}G!K3|LrS{XNGN at Uo7L?T8fni>}cu|3&09QBiQZ)H$91n{??|pMH zefab)?~nDatc)&2D`TJ`#y>cWKlu`4Ze1S=5pzh(e|+~bjCD8t_@}>)0PRd~k3UV% zzD<3vUQC~V|JU8}2s1Nm9EvU-ksIxDTH_psS#mF-P`gmf`thFSYru=w7 at m3T)A;`% zkFJ}R at -c#Ui|`00qtyrlvZAntkrbLGUCOEvE&fdJAK7ROI2UQoCF>YXo130JniuV{2aJql6y_-nU z7Dq7>;TucH=-!~rbV10%5z?;x6eWYnMOT!zb{lu797;=95d6wqz}30za`^8s(P!7L z6Fukfe6&A}3GL61PaDaJjKD0S6z#w#!LJfc-R;`XSvbPa$}k(Wv?X*17T5 at 3v~6MW zr%W0p-Y7M2RRQPVLsD#(Lr at o|$gH%ESy{6N*I2U;-Bv6xPT2=H#u=&)EHOue|3;Cy zKMaS%75yn5lQYZ?+>AqT87J-d?6ean_MS&M9-#ljbn)(8vu?V_1X(f- at f@Zp!P)2c zW9$|}GYAu1w>4#vZe)ld-|@HM%%;OATiePV53=9BO4e z$T181=5}%y}zxH)E=&V1|ix4OMw_yQYwhV%Ix9}TVH{XZVcv((S_bb4{x;V5=QdVci0 z-Gp~BL>74FY#7L{TtSGgZ{xyjA(?19MmXh!?>W#dl~r*Bzm@0>KH*;59bajX&*>1o7si6#EZ&_1usSut-xmGO*$oeJsOYBdE`rY@ zueDc#9NEEe%Ti4MHU z-v;m~vRRj$`_YrdLqpi}`^%T-t2N88GkAWa!?({hH>IC_t~ z%1))~1ZL&G&=HT|Q~2}S_cQ;nd4(xuv`49dZS>{afB#=eS at +YM*FVQeJDH9SLR<}q z1HgGxw<+v|Q8e}W(j9mlB at u!pN!`lyS(0;eu ziIEU}y&*Jg at q6=zKeqrXXN_+rsEbizIicS{`~W_jrf=l@;Q4!f)uU{ z!^+wi8?$V%r$(B_9-!|&ewu#!+uv3|w8zdE8VrdLA~L;){J_Iefh=ish&2HM+}`83 z?(B`dBE9Dmj*x?L+aCdF8-W_9wO_dO at Tzx>{zY>r>Q zRcD at cY)&Gu(%F&&4v at NhhHXzP9qnXx%bad2es?hWL>i}K9-oUA%!DhMOD z>tuUu1?PURDZhrObQlqE)NtF{Ng?O`HSdo%~mW|1fp2YE?*IZg9%8d>`}@@gts;TiicM-W;*$DiVq zp*2zA^ki(o6)@VS)$ls_j1Pp%>vI!aI3L4t;N-wp$8a&iF+?GLao3%K(iT}T_&4VA z#$=@n+oSDHKmO`hQNEG&@St`t8(WNb&^q6PW1ieHpVlyJZ$J)4m-7I=S$5R-%hTcc zd~)vGSD*5HM_+j6cljj7&@mj3)xO(3k>kK7%8GG{!H8Zu{qVMduL&C*r>n!-ugDe|aM(T!WWBLqE$yxnJBYPW6oT z4JS(Z${G&n2r%Yvl&8(VJZC()8V~MW-z(GiaH3rF4hFwI!?S<;-BHhQ#@&NI`nnqm zaKh9jD-?c9<>Q)f!W7+QL9dbTz@=W@?hZ021EkANV8tGAl#LdulNcjzY}TX9C&w&$ zk31?%uT6&>g#XSze`p}S5?*g(BBzO3rZ2~%EBXHVt~1E-_dJnt!~2mrAK2NW6KH~4 z#+d#>7xgf*GBnn%V at JsOvzITX=dWIc*uh<8KLB&OqBqWtkE?UoMuCf2{g&nOcbBdq z)10-)r+PTco2#+OZ{8*Fe^+|auf~^;@uK0a=ndoO>gc8Z+QOV at 1Llj%I6)E!0xxB{ zFK7zi_}Tx at PiB*ddr~E(|7qE56SMO(m~(Q>PyPtd at 0i| zP!75gn0QBdy0K;JIIK@!Jf9A7D&syh5#-9`k}<5J`xkB2IhoZ3DanJ{tJvh=>`SWd zctkjiEvnP)J?%}anWko$;$h%9A|A&9`@x%K!T`~ltirhJVFOOc7sP-N;eoWMgINn>1wbadVd3`y( z`2O1pnyw*^P0Ur`vhSfStHSgFqJ}s?Jw%bh!(NOoV{4q!>XXApVdr7QOBtlRu$`!S zKOX&Z6zgRo5JUj9h{_;pMp{EIV%%L z5wR;1K^*FJ%tV{Z&VyW at U3VII;9jluDTCHZ<#C=D@(Akm0>=#&tPL z$;|HM?kKSPMZ1$Zl~2Ww!|nShTS?&j%LB{^r#WZ5KWf`BN-{25m8h#h4$_H2POb1pXQS zhcAw%gI@NQPabQvgVefdlMFiG$76Xe+1NgMr z!6}^`&Kb8Ndb7`lgBCf7G(7<9{TU? zCt`-zD6-r0I8If_qx;B&5u4znk#5DYbyyTeWPuatuuh|H{!gzzq-|tLrf2Z&?9kvh z{0>(1^GvrW13kAB?cvt46VG0}s4}-M8Qf6VaKqReGXw|o?A8vcP;PWj+pR6(D`Tzj zmv`Y)o&Wz14)09UU-Gf~mE$_<9Si&}r~WFl=(~2E>B6mpmm_qs(LY|td)mm5`5yl% zA57qHwk0?rmy|phhC`IHQfC9Cd{+lB-&OX~M3v9_fWy`C*Wo$M9FxPyUyPMHb8x!B z)9ggPLsKvi7%1cX%oAJY_Ro9>rY>fj!kc}_^U~7y;ODq8vh?VpefX9P&v;W`kA1AXrHx<@Z`}s}AKt!ex$~))fa53Qg)iv5JZSyO2+I|IGW!rdw;kib z^QYaW?Iv)dsi4^6*dfI9aCY2b5p{sV>m2!qI2ot5E6r7pmT$K5t})2$6In9`9nQ!G zy3D&BX)os%{lIu3OO-3RLihay?wqrkueVdy%%^$}+NSW6ceMeY$`|23&Pm&vvU;Yz z>rdwmdOsxiMJIa61TWpb5+`~u=y$rT_AYRhf0SF@#-Wc53}3-F8g;20vaDsvVQdsk~o(0)o at ZldkRXIs%-boV*Z(0yI{wPD$C3%Olxb*mc{x=`r zzy7%|5FQJ>Lf%#)3$y*UH+SoBi3BYI{o#XbU<}0e#&p8q1+c^CFM8(XB7B?>o$^u! zCj_9 at 5PY~wRLwBQkZ~%We*eQX*>^b1dHVYIold_cV;Evw-(8pB?VFF1;Iz$MxfJX1 z=aYK=6thTz(v=m|Kn^klYJcj6! zIyuuwzu{r7v)34{;tvDoiV=H%@tl-^)9Lwjf&}=~ey~u4l%zd at Eek*}W&Ai6W-e1Q zomh}Io4_ENeQXtRAabQBW=6- at W?yY=#o2=AlzktEw918m28R?C<%kyQb;2=)h=*Q2 z{ibEwg6?CC4gTi<&W6j(b+nd3FMh(?+C?6oe)D`<+Kcg6qb#Dx at I4ykc@Ka`KE7VV zbJ}lTSmRMRs@(!G at 8jJrd9a|dtO*{Noh9|9;PB at qwK0_M#>#Z at aM5gpbrxIq!f?*r zfP2Qz;H}`H8Pqs=9Ko at Nt|9|JnTi7_+XDX#7{}E3T08dO+{4?)U0Dr)RFS6X+Gc6X49w znPc!poW8~E?HSK=eKMJyoDn$Td*0iaJa|6#-5%fht^Ilm$al+Ng!8 at ON8ZsYpa>@K z(tZx0C0jaUI8Tf#)^@!;+Hk!Xn at 9g_#c_%dPdBOaNUQbA9P@;Qnd z;Ao%-mM$CHcc?H_)w?qX-h81|9PH+!4&L|)l0*}w)2Iq(2ph?V(@*UDMw zFh7U)!DoXf{C2<}9Z{UJ`DqVa=7r$^(gPua$&FohX8~)k3x4hUDaSZxGH%EcJ?wdP zWWF7{s|-Ei9qk4~ZC}a-|6?3Zp~y4ocnq2m-6O)f4k0q<4cEj at G|bN#)Kwq z^Q|@;LM2e1GmvN_F#!&!CG+^dd<$N-F=fM(;}Pt==8xR}+TFZ>qo-F>=h8p<5B|AF zUZ$;6o;^K^EsH|PNBZc0{=@5LgmyMZS{Z<+$DgOw7 at nOtfY$-`{OU4J)U)Z?t5?%% z45iEvgDz6ifZ(A_bbWR;9l!f99l!n5biHl7IF?psfAS}P66D9&{Qh^-AKv~n3}KuB z-Dw8bzWnCZwDaV<7JE%QZYwv+)lYLO-3p`|g{rLw0g;GM(REN8!cEU)z{0 zEreA~q$tipQ?S8dx9tjOYz^neI(+StjzeMZQ;RO=#nc`+HJ$?D^c@^DGshq?u#IjB zP2lA$eR}(`!lnECA&y7a_Y2?YT7%n%2)D?8#j-4kmb=wj=%Nd7{psHHu#z at DjiYC1&UpTDY6&z0FymFW3m!NhTlRL%H=lm{`^qH# zwualvlQCdVb5sv=>!4#2u|qzg#kum8T~|I zy=NP>@(2Y}M+W~ZLwA#|`Zf5%&;?uYOWlW*)VKJWgnDMP*9w>%YROndOB)8UyDp561e z at 6|aU at K+}`@Nm{6#6^KrlD$HcdR#5Yw4G30Fs*>Zv{?+9|5v5)R{rRxRD ztFb3CR9$%?bXZOsZB`I7-C;G>`?Sb;lNG_Sp&{VWV+F5xLR;%xME{hxQa=9h{l>G< z+ysjRlD43`x)^J!GV-!>-nA{+P4GhwHX^gLv)o`l at Y4hSHuPvOcBZu8c*drZm1d~| z6Q>07FW$WCl2B|K{23<;W;16yd?`HCfFn3-H{(JM;MW$evurrEZ?H-G at DnGvoQ~k8v_P|kUYQ*!j;i+`f){d;U!lPGe-H11Gk(Ay1M6|$ z`{hW#H=}c17jze7O8~&BC5||MTSo`ea&W*t(HAyEm at d-JPsh{ab#!;yWK3fkr=Zxo z)EgPmZuPNGyaQUjN=#waz11#9g)7g6PvW) ztKuz(;X{VjGR)8AtAHx;nlMb0orgeiR0a5lSR% zHEsl3iaT#c5PI_5?fig&7z|x)CJd}{R^k+OdUY85=EJAy&D%HA`Gqd3Jc~16*N at 8x zs#!c{#+eCa?1t63;SOSW(bi(KUY-_VHfd6sxOV03A5Lqcj1Wb+2ts*Ohy#D~(9Im(@X+soq8tQjfd8hM0lDfMSMVRFD?4$&h zJ%ba=B%EIihsSfvEa+0byt(SSY_c+(+11c4JLTkDT9Tr( zdGj7&gCDpTSyl<=S)<{=KB6oUXOu~3XMpavarl;>KaH}z>9~&dtvCwdk9Qy9hz8z^ ztC0;eBbhN3#W7%<0^(*Z#${u4;&d%7x-8E>pGI+?gg$q<7e2sl`G%6i at H|D`A6->F zO5dRE at +Scb{bW6C%x;UP;{-Joro3Z#Lh+0TZIflZPaHqvEKPpVZN9#jdxD)@mz;rt z5$}>d!I!a16h at T_m>O>709W{()4IG71rYr2X;%)jaXHpz+#Ni9($n^8c5bo#Rac}> z*`MCMYlhEqKA&S?WGCCDwU&2M4TbiFQRJM3As!=Zvf$`QRyuRBTogD~*Q-pbEGWCQGp&Vp*7AGo4zX5c8|sG_;z+IQW(mzge at fMC$ma`I!|!>$ z@`IN6(+&sjS2^NWZOrjYMaYoR6P2sHgNOWPa~LTzUD1+rg5Nj|pj}_!>~kE<8qGX^ z$TJSwT-JTyTVb$^YeP-Uz_&pAd1#m*BQ&xgzIE&D^=!r at N7<~-QYf@(#FP3{;NTy4 z30 at hrmC%8#t;8WVgLAoKWb+(=dG!Gwr%nb!-4UH0uDPX#>N5`D=)%hf+C?^^Zx|GM zQYIFmn*H`={_Ao+Xck()xv%Km9)YWX8IappelU??;wHpEZt7>XxOnbea2L=|1!+V;;-P-k8D4unN>3!wZ}z at Q~Lo z-xK&uT(C5XwvYj37>Z)-A3Wk$4j`H}GoE+oQDu0}f$Gdsyqxx=k;R$brOue;sOCOh z?0rkkfS2>O6njd(J6VR!4c~4b#A)5yNwD-JHf+BM6{`@K(XBm(gEgDDyBE7*Cz05C zLYo6E*%()_barXsVjIVOaHDITz}%l_(RaLeVH*>NO83yKlc3V>o_I2_H$dgUa at _E4 z;P3tLdV?-E)m#5y(2HF)tjt(Yx}VbwKHqlYMdZ(Z&w7kFR&@%M5l0nnqbUp9lJ>zR z{O9ZvIw>a{l=cON)I~;QD%(pG{mw4R61V&MU@!VD_B78&P!_2H0~(|r?ZpdZ$=FG| zooz;6+MZK+4YqQSR86jL6W at uwW*4nOAYsN<^KaNKcD>6xrB3e&Cg at r)fYrOkc=x;i z at E`u^Z;Y#x at w<(&*k0e9E`pdhKfjx<&aXrGqZs4}*iDEix{EHlO~fzTM8WSr+mCS^ z%BhXiaC#(&FqQ#>Gz}bPT2Hicb!MgiL`P<8rD4Wpd^-6wz5o0vh>AJl|3R5m_JV|K-RC4k)UYmWQ7QX%x{bb z#^cYQr;qPHbYLn*Epft(2-R7%geBil91N~)bkt#h?$UkgO+>D1E7l|eh7ke>Ltg+_ zri--i at k^pW3OeUn-V52M<9xqD*aBCV1IZ^&3Xo#arPg)82u`k^VbTgzesiMCtbFEN1csx-mrK77>7cp7AUt(0lj4{~V1;Ch?qoX)GW1T8n^f1zlGsWDlf+#DF z?tT=6%*$aM-Iw3In4Y1_!B|-IDADfQ_iqO?1vrMsM3W9cCWLWZt$D`5TPH}t$weIe zQ+vn;pC*rNML5TBfML9~jhN7Y#>vUXb~bXX)>3}oo}N!|sf8$I2Q1(KK2X0w#XR$dmD)zxQw*;b|{~Saa$TK6_$!@1^IVzqEF%GCrw4E_n!Tb4}qoa#zH at GRh+DfV6={mC_+`OB at 4X}rQ*^%!40Uv>h zb7(RQ<))7InC72=klZndW>&jTmSjZ6vL!>IQhYMsmi*|KfdlOfNT-N9p3?hyS9uN! z6%P$Q8j<)c^YaN8?m7KkrM!TN;dG2|`ez+izm+)~XXov00_MPP$)pZ(Y3Aj;f171! z&AN-wL04HSQfP5*Toh+fz~lR!(9ZHZ)?(Ei)-^VBHlrB28|1B>HTXT|t0RAdvjUJ) zJ?_B+ossXpewIV~;k9@$1R%H-TyxZd{G7q5tKWH6=QTR;D>4?BI?~F`eYc!k!?dva zm)xQc$Jx7uBhFOs$pqycdKPe&3quF*Ih8o at AKjOCJOd9`P$rn;SA&^%@e4gIb9|G) z*7lZ8ZTHTAQ at 7bl9i-~=&`{veC4%rk97;>b(DmBm6T at P#F2$j)87sg8oXm5+yQ&miXb!!NtG}@bGK+ z7nVwsocS$S?^=h^qilwu0 at iHQD^3^Jaie@{QY%_J6G+`-@{2{Bgeaf zf`0Sw{0oP_IlDNH5M9MvUJq01PK$#QxMY49&&T{-1-}x8i1V_wZwh<>+z9}Q`fu+d z7;%CaWHaC1e|SHgo*n0R3}BEF6O%>;K at bpKt?SG9Azc<%G6yM3#^cBgsqbD*%Q3pV z`Mc|@Y5moU8ZM4r)6pra-HzKkox!z2Y!l?V|E}z znmR2TaCCSu*?%&i7Oy)onqkx8|K=i5S_GDZe;()03};IYJvIml^QWyV8!I)M4LnlF za-9*^;5D=~%1NYW`2iW2`;@yL0(2qQyt7t^&aMzLNugt;lrpw=^NQtEluwxAyxWiU z)}*EI_TycG3d$;qcQuaON}^~JHMS|~@B)Qnm3_)9)*?JQcLg$lqTbMaeY>*(zvQ0G z?31G>(=uA-clQZSyF!%d?BmC@{ZkiNr$FvPAIkN at c8zKHO4@UMemQ;q at F`B>WurvS z$L{WaBH%>s;bDfVYYYY_4>GRW8ouUW;{6)8z&jgO&hW_oC2B}*i$%cm4 zHu9YNXWw08I63>(I&jW~QE`+90`o5o at O-bzFMm7wO>i+E?#sq^t+E{OwWC`wII;$z zfR_$nBp5$VpN7p?-;Vs=4rPx-+AujSfSxs0{Z39)R at me)~pveJC+(PQ0#LDIrWfh_a5^eJhpejSzZcF$ezC=cM=VFhzxS1>P!XyoqQL)%@D#n-n(%|{K085&+|fb7Imfj_7y=7N5~KGfI1H#lp8Ay>w`jvX78w#e|? zkwXC8?0w`zZ_c2jKEq zeg}SuB0VL2zq}c~vnoU6?QubOj#t+jX8WR_Wnu*nwFzXa`Yw_aKSxiJy?d7=a$?Kq z9lQZo%|_B2c~?MXc{%)QUC$oib0pxPf4jD5+I^>ZK2>yoyVMPa49+Vn4*Eax+ci)F zKc`x+3m&DfT36bZug0Ms|9O_1b-;7GdMRghRGtYW@@rc8kN$`M<=>p1$3ck%+Z*&D z4%x=e#^ zG+idLHC>ZKHtp_BYq`H4V^0t^_GMZ2r(gfsucs$}@Ek at HbIY61?dsG+}AKp(@lhuQf*3nFM?#ftvsYmA%$YZoYKDf&qYa34i0(} z9!rQg2pYvlDT&59ej{kc^ehwp5Hy<$Lbgix8Q z5eysJn{7L07)P0hfp+$GnzoK=YU*G2IwRa at hLEOCziTWF5>7eCak at Xh{}>?B?)`&l zJr30-Ttqmr2IFe++08gFC+huES)L^o_&4I753;D8}{Nccw4FSl=G)xQ;=yw$sb+zO4dW z4^CE6wuu~=T9l&w3;+j6w+1Co@#o(+CGoqGRsf z9G^^QpN^*+V>M6CyY15!VcAL$qw6G2ia>#2%3R50HuHND{-bEtW9S4PX#*a+v`Kt; zL8gyjuIg8d0*h7+9mc?3PUFSN7zD1|M)0{O`+`q8&MxZH_(FW7%a=0tJ%^RiTs77! z{Ce`?V`SnYaBfx!9Dn+p*TN++v;rhMpD?^;-=n#$zV at F!k0OaO2|g_G^gd-!*pGqR zvP}#XXV3Bp%i(>>bv=B}S<|I1_^_yM4S4F2jj}PjndWs894W6yXs~+lq+J*XQD*z$ zL(VK?ZMT}W1O at _)5z$7GQd}WTcX?UxzNLv6K5GMVBF{q)vQwUri3^QwwyxK}0^z#& zC{cPJ?~qF}E?iGV2-U z-8!4$C7&`V?RtC256xT{IzuH~J8L=b7D=I<;Q{4GbWOP(y0CCE>%>7&{?zN0!@XOk6|_Oeaz6dCM}P&x1Nod8hT zvbpv|SJoKv6aEU{!zFzK`GzYgQE-dro*o{BzoUNx1KlgwwHURrxfT=FCCJH}*QIj^ z1Z8PDIUxsL at 3vwopOd9tydm(cLxJeISK`lf&3|-HbrJkUmu}?U at _rt{Z3FLI>4x%X zzJoLPvamC_m*Vs^YZM1{Ey1y1%q~NM&<1i~4v&%>_D)&q7=hw&?CQ7%R`1e5b9PFd zuG&e*S-D{)v|Xm3!ZVz{I)34SSvK(lXH15WgQ?9NVaX42aTQrXTVA^zpg4ar?1r#3 z5fi at q68^TUlN~iI%zPi;;O69Xy1NMfN4spZPZ9xv)3+AvR#z7 at mw*Y)>IkMyb;cs+ zX-H*6HdQ8nnSH?fDUl%fcF1I|cqZ=&ScA06AV>T?cQ0U*2yQ71 z3^EhOY=$1u1?rDX!G3Z$K1Mv~44rS^v9;A#N zp=HQ8O+j%F-u=!$^QY6 at rw^TJE1Gy3M^6fOx(RbcL0Ep{?Bl1QtdK4^wr1N#jAgV& zN?D#R- at ICQEQ;2&2h7E9$@l*OxJ}r&V4vQ*@Eg{J#0{Vfy{=e_z_e`OB9tr!_E# z!EQr~&w)(@`Rw3%oR{2BJ%u?+%bt+B_r`W{oYtYt9hlvil6mbm&p0^Cy2^rY0ut_R z>i^@!Xvj`(N?peFFbte%lSUZk=W&XwXrlng3Z)Zd4qo1k z at rr^HRq8UaIIS^+T|Cr5F)RmfDNFrnK%?G9x=|K_p6w_}ym6d%%Vx{mbO3hhpwP_< zHcm%Z<<;#~bl}6Z^JI52;b-FThZd9pMIoC at v7#qurbplf|7wCI`2P~RUk49(A3kNb z;O{DtGriy>M~+u<;#Vv}Eo(sWL_cu$wZBRdEvN>GF at 0Hh69sPsvw52m4(;n@` zD|Ir$d#f>i74}dYFV-re3*(z}Szr`>R>hj5GVJxpanA~p-)T?kEuV*f(GcC5af$46 zM$}2iDC;ZFBpATUcnzGGzb8L+#KK?3 z_Q_PoqNhw-yN&MrC;QP|3z*q0_tfd+yy6*rgts{IeNQGohxV|M#yOHfyk}^NEb>8U zq&{Q*nvo38bFL&>w1uMwmce^DQtscl&do(rf5VLv&$)V!^9^OuL+-&Jd&?Gq8_env zM1i%A8NScob2|;;ppzv^jInhPfo82E%N^=LW}WI>IBE?@9Dzq&bdjTU%XjKWGM?Aof|+-Ql9t8{VbyncrRS}zI7-kXD9VFcuJXY6aM}sEbI)2s$-y2 zp0U!#iqc1RE7||{)$|xUwX_nQL=gEUS0*l{?Cp)(Gvml3EJ}>7zD;nRz%;g%lP8%3 zHmfqoKwspU_L$u+P~Ja!nr~A!;IFSrd)Y?4e}=W~u5Q%shsg#$@Lk~VM90ubA_3mI zey-s}k+Da%AU3e=#~+o%fg9)icaH@>&A(^4o{y!A|M(w1in6*8rc_ at 9Q`eSV9gN at G z4ATHaM7iPlv=-xhKV6&-#rFBryBN*k#R7)2L3zoh)c`LT!otpnFP~4FucF`+RhXr9 z8>0O7Kl{%Ut*i|ujG?XJ=7b1Mf{^n!@0u00GYLU9I~GD9?O6=aLmI|tzxk)Xo&NCG zznv0imVrcd_Q!pQlV;4F8OtZl=EN at U>@_7UJGb-fV9XGMygcLZ$OK_>uoEH#CcKPDR0spFJ95kN86j|^q}<#8?uTJeMA9O*I1tvEG6v&)jP3I>|_W1atex)Nf2z zzM%ljiX||QVIcU}jL^#fpe03N*5+0mC>cV^1T&)vC0L=wNEBfrPE5EF!J*9kJ<|n# zl;>T7tbKTaF#BBxKsoRd!yr4>#Z==Up?Uc^ZM6~lT7(kw*RTba5T);ZiDO04SrnBK zK`ZTb#fM-4!|Ol%RNTyh;N9Is$g*a4tB=!*zxV6uc3HM{EKg&7utz))I&~6}u6N^1 zLfePn<74>IFo9=#htqn3nrMOG()M{VGTM_i!gCipj&c=IQlyoITx9?SOBMJEZ`u_) z>mCHJphy>u%nk$Af#l%{*&tW56!D~X4(BO+5F at S5&Ke7DyAwwYQ1P65b;^PdJfw at K zyqoW90Mcg4+yHSjxe3lW_IL;mhvAG21s7;*_OsxFOdKUBknW%-ysKPg_}g>1pbI)C zG<-~%s*?fGHP-g)0!)1Z8BU5V(h?yJIy36|-q at NdPHk{MZS}Wq?DKcWb%M~I48a*Z zac1DjiSNL~S<#l2))5^OT0EQ|*9o$9Q?q8+L>+Jz-64wq62;&h`hkO{8#REBcgb|h zOykFQF%bCVBsdZ*kjas88;;C8<_o;|#Q^nY6vN-jr_!u1}-v$7oF}0AMLsg4%I6#tdaCP`V_5axtUMdy&mWk*vG`6!Gm-= z`qCGI$`sL~H2-=Gr%Jhw*#M2z4gQ#wU?j)=@!R3u`NY at r-wt*Cjqjr$T+x?)n%`Bg zYr7A_Ut|m3tB(S+=enP5d5N|iOBht0=Oo!6EkU-(SM*nKBh zmF;hOcBaMrtZfRO{hl2h{5U@^Z5F3{^WnSse*RZHa+oA{nz;=O`Jh>SvQa&IkYMS< z$Dy-QXUE)iI7MJuTbd4k9s3x%H4qOkaR51ZmPs?FpAM4gy}TGflLV6qGGDIFr>p4p z<%htylptYuuRRndHQI;YcyLRrZ7uU{f}?y}f?A2e!rM7+&QGU@%bRH{I<@)(&eDeJ z20lgF#&LD9!TZMeuSed(09`<$zhiYW^NqI8M{$=rW?pf$Cv$NW?~5zik)@@7^6&lX zaczU5w9HA2L2fG8o`=SV-Q30)1PK^ky8I#hdKF~cT#jyoZDW9Cp{zBQqPUJ?C%~)u+cGZ4$F{Q?SxSo48c(Zn zCZ9b&>bocJKTi8wW5!|EXA0cck8$Ku9|dZBBE$3i at JZKr`ors=r(gZqpH@%^JO;5| zp|t>Icd)#6QF at eJ)8k>TI&5)RElzoHlL&m_ymCatVmZT4VG{4p(a at 3z0s+!yS2IQ5 zym?avXIF;xwC5(u-trlo6!jwhvmbvoj8z1>Cq~JA-H>IhIPcbQ<4l9m0p2l*#w-p1i;oWwe5DIoW21oGW^7 at oq|u)GDvI*D@=p13~0 z>VmD(;Z}z?d%Ma8Yy`N>AJ{OftKWf@(65 at 5KnZGB4SVnt9C2)Pb3Tb+b&b0yIZiCv z24RKg^7ZS{EtxWv5Bj+WClm&GLvvj(GN2s6$5iVZa at PU`GOzgFRfdp4EQZ9q30~~veo#n zPI|6jmXX{^8{nIvqHpj^XQINJ1J3-J`;5yxOR|bx26b)&xq`2hSsscEgQ4AMYu at 3ER6g@JCsgErb~<_q0*^LzJ+9m6l+cG>GQN(kD4(SqG!!_I zK at -)KZLohLf&qgA4Db*N$`muV$fURTo(iHqLvVV@? z>=y_49bKG0f6u3H9CJqSZ=XSFkNJBz?-Bfa?)YVSqWAg!7#|lIU*O%}=p|!~4~xUx zpZN_gFUTEUO`BZXihO6>rz_dhP3Jy7H&zmE=4DLU6`J41Jafd+T^(ziYXR+XvOu~? zc83<;mvu)c4zyu5fz7);e$n>1`wor4>|lSjXLSFM)4e(`p$|E72t4ukLw=t|_ZULM zNf+#>qd^ruPT9UUDWc9}__@#Vet5F77Z}2kmD~1=XtVdw1bMu#?EW6~8g=AvauR&~ z at +i&J{fn~!pZXT~T)gx&T>d80H@=ADSOmwLJwJaV`);E?rMCnWHo&~2jqied+_oc{86>&-FCh-2U`Rr>q?{cn9APDtZ}sBWtjVytc0BXzS(ECIzC zHlE2WmWP}B7 at Zi*IBpd(N++tT9DJZrNo?Gzw8!k+7^hH&@K6LH!8sS9teZ%ljZ z*13~yx|rU_!DGZYKQ(fp0z+-Ev~HeuO at +BRh#W2+cg$WLu`lPBCGZcgzMr1ROkj9M z1SR9?H%d@%U`{JLll0w(_tQ7O`k{(0*s4;yze#;jbW+I(LrEaS=&xTOFJ*#*viyAd zx$qEj_^|u{#CI>sz{R<2*Fqw-E^L{1o-DStx%d=^HVPGSbrlDYW|B(C{7rE^fBLNB zD!_-hXrOzthBa_J&GSy_Pubex+nLDf;$(6*?5qN>96fb(%-Q$f^5zqTTnvL1r(ub4 z4eZ4q=85s3G&*}RN`-^5ff3=A(pkb_%hTnjV)UJuA8WfTi?ZAch!t;0Ee?LuvCh|g_ at TN0(xR0~gK!AguGPL^| zErVm at F9o`e8E5dL%<7onR-K;FF?D281U at eRrOlp!39KELnr}q^%JH1+3Q8&~p^dDy z$vwLM&{Dfx1w`PXk2$`A6Aq8{M8~15arkCF6b%OFtee!^9XtZ3cG3sUfadDJ!{E~< znNV$NTk=d#4F_zV6+O3eHF}6V%aF5Q0;{lYfQeIf at _G6keQ!~Ey%k^A at eEyk3oZ^2 zc_DY;qWc9f#+=W;e|dlWj-#A!9^i5Ti?(Zru3qqSkh>1w&PW)f!tkgG6C;}nhsp&< z^@Zn-1quxva at 1K%*|P(f|Aja6K$+;XkpJ3}@SQ_oUtK|$D;qHcXZR=IcbseVHJTby zQJoX{DsKj+R^S^pUK#528}0}C|9E%?_QI8iUcdhW z=W*oXx9mMV%*PlhcfTY2D*o~uEUWX`qda^$Bcuoc*)^!@61Q-O=#>o z%jnYa|Mnj~0**jf4+ycPF+Y9&Fdd(Mieslsbve3F*F}_I96JgnU!;xeRp1rW6=_%L zb=_}qmWTwtSqPf(gR%_>yv6e&bwir at fN);G4M zC$C;q;a`9LJY7YBGAfMV0V9$3MQ?~-qZe2x`I&juCE^i{t8adWpnki0$B7v!83xI9 z?#k5$&o_3Xm|i}MmPsVyUJX+i1~CXF=JEbw%s~xKoV&RWd+>IQPiPUQnLfUIAIJK5 zx(khW)1Ft)UVQDI#xtBC-Q@&H<`djI2>|AC6kYmYf49y{yBC!gxPZ|$Ptj{ zpQoEBax5k-cFz{R0Q2Rvc;0Y$_a za?fO`jR-W4$a(gAd at Z=recgKEvdp&vaO zkjP7~d0ssfXNyD0VB5w}MkWk5UWyTVjKQ{#ZS9he8TV#s28`-#m%BEnZ5&Ycz}2{0 zHb>yW!7!Ae at 5wa7&qna&>bJJX2_5C6!K(7xRUqMT- at 9oa#|Teo1A5~5W_1>A?Gd{5 zNL#BDH0hUrJA4zG;%7Jpr#7)!0*Ednl{yM%=vg`h*L65^>mhZJ8H--y!7or^Lsw=nKAIyxgtWsj&L38y)$5{rb^ze6V7oMOOw9T5X)irrn zrmqt=b3bpljd*3AU?qtnK!A^5o|Tnc9h^Of`&eHfQ4v at iEC1dWu+2^FfVZ7Isi zvJuM~PFhpbtp##wCT{y~)8(-^wV zu3;Ew at Z-lS#FfDMF3#Sk&z}nGwjBhbB#-kO!Vk1n!~h}Tw|d_YH;!p-h0yDJtRfH;~bh(75M41gF%{2Q#}zx#{At`^M at s6FAUT)FJvw z*}+v>m}^Q5PVeJ97;tZ7#Oa>Lx~h` zVepO%Or1N%o~BL{D_TaLbASjM{O;&d&9 at w%{pZiSF5yP-UnePTv5p{PW5HGvCKx6P z1Rn5KGrpmju_zp(3W9o4w((S!8{wESo?VzU&-aYy$hVa9o-ULHy_>b{e1X*hF=34o3Wpw>XG!Qbp~4{&ks`;H66)G4{b}XUL`;?cPZp zn~9R^oaa4GF^9$)Wvk)In>gE?VSGs0)*$A);w$_lBPr777%@1yUh#+a3zR-5lI?_w z at +LZkM<{gd3 at ozEpFVz?K7IN;y3*nx<7b(|lgJSnC*O|BN9rd3oIl+=)&u)0CwXq7 zjb%8rA6?MN7#m}B7+Y|9M!%S;s*C$BvgBSoz+qSx*|+kvpsBbCZBo9rQKIXC-Ap-I zD_xk at XY1Bf`DQ74&dldJv!y~5CIg!K!C-9VoWZXn>d1G>r<`R;w&<-q;~3yEK}!#~ z%RzT>!UPTY20ihgz!qK%ZL#&_lLQ{xEJ)C13*OhMMN8LwgWd+5bNJNVO$ zXBK&%Z;#)yX}x;S@)_MWbUU&$hE%A#1}?C5HfD@?1O3<`-*%>VbdMDd$X?e`tApugJkb1?K$Xly24rKDM}M|!IF9LZ-gm#trf^E)gz9PX zts+hnDBz9CO)ABo<+aG4v)QveFWtxmyhlzuRxE$xSvsd{vF2)wFFVmpb!-J%R|dj2 zXezDG>DK5f8Seq-qOECTmo5QAuGP``P7joK+vN++#rqCC_0>j& zK1J-}ck!LS(W#R`Vrv_$z at 4@Rk9EG_IIs~3HnD^}(R!cs@@!^2X5 z@`Ma&cE>E|TLGLz5S-u%Fja2A7UH9~wQ#Ek$w|uT1exkGH7`|{(dDk*r!OmG at Ci4; zTWJK@?k&#Z*?W;sGU{1n&NJ^U%2 at fI{Il!7IXOL^K7RT*eHQ6Q8LvJ>5k)wbaHh%eOZbStUONFHn&f82*bhQh&ivWqhRCw zS;xq7BAp7Jlk?JeR(Cd(8Wc?#e at GyBt`*M4`k0-(BY2%g`_NGEUZ~TZvGvMWF|yT?|=9?#0WO z)3Z2k+b>^CyU(9Z`_FQ|j3f6VXa2U@{6;|FP!L?o%+!7-e(Ek5xz}}&2zlsimzEWR zBpZ>obD}$wIB4PQ-~$dW#|ZA4^$Sj|qtzu-a$3G)IR?~<>zBq^$asRNIw=4NZ=Z$dEmAHpIWz`_;YfJ`gwwRi&IOhzvTwJA z$jO+cE({rAXwl00n#Kg@&uJZ>X=mPRz>s$sRg( zpHZy5GLDIu(?%I{lSM at Q%MD=Cj?e+$&f_WtB(8PDLdP~J$F!<4ca76_)G$$wg zwkrv}y`)Q)F%4gI7OdyGXUTHThv*(zU(5d34$?{Hs$-*&@Hjs8os*+R2mJ92Z1_r+ zEzf$UTn^mG0_KVVW2`x$zBji}ee+IL?$=<|Xyu-Zzk>^1;bgBtSAPGE_t=QgkHf)v zz)p;FVaTBcoLNC-_vOy}4tj!9hBpQI_|162j`szl^24LbM>jei9}L|eI`;3JuF(B|5~U8VLxxTCg|dCEw;4S(1rJAxadnkmnCRAJ~nW%VQpj1 zI%9!%1Oxdl-`57_8C_CmKQw|jWrMAm$b62+8l-b})DMr^5Rm$wdj5Z03pd&Qdd(Nn zuXVUmXYrP at t&vLZ;Z6`~rmOOa{I&D|Ipkl!8miC-e`kGW?de>R*$ zY_f+L#GOEvdjiU{ljCO8*>&ZUeO>-tlb0L>H#hMe=#K7Ev(UxX^wbu(H5>u1;6^)B z`GWRoOX#x{SuL;UeYO!jwUb{!|FhGxGv{9s?3Mggc21kdliY_lb>L;!oGbskfAsf$ zLs$vj)$Mhhod~}fDE9$6%z1fZ84HUhN}Cg+7~n9rwTA3gKyg~c7;|+gl{|0O1q0-& zdnhteK?4*Im?DO(v~qg(GKw;d3_CXyBl3Il{At&o(*nlWI(Gzm>-k~y+FIAhqddYD z%?fCou8uA|9Yy=y58qEOp1&9Z6&M&_g2h|L07YEjB}AMgV+*^q2Lk3^yYzDAR~bTA zgfW0%7YR_-l%qQB-{)P8Q(q$lju1yf#VIKWWL2@ z>tRS;x3bhVT4{r>s*%|Uqvjr1I0|!QZuV%SiwKupAuLJ2A?i4|yw at ySXyrFXvLzM9 z?Bc at ralFnkYZTHWN9TUJG_mI6@f2#-ky(ysZnmT)P|ox0_~Xdhm|1PiTxTLGJBHK@ zYnfBsmAWKkF#>GP7^EVL0O!QGX-6|Jp^Jgwcl#TYn at QT=kw at ZMJ` zc3F?W#)0TMl&OOup*)Q1v6BWoyHD(7d6m^61NkQdbP$K?@aU-7Az2qR>6i{OL<#0v zWsOHdySKmpLl=rp%v)Y=8&ZGUnf5mT(^kTr=ad9q at SIX;#w8~O&2h9&A6~YQHRWcI zzaXXxIPWvmRrdL&`)ga{G0zPqw at 5ABgr2gbmSB**yHC}eHjZc=fWQJ)T|6;K;m?PT zYqJawILL*%x~*CqSnrSZ8q<`(UE`47V7C=kZCyL0yiG$W5r3#BPbW^}Re0_)d{bjF(;&|{`o(i#oGjaua!j&nX3!f9B1Oy~n at xy^ zm7fDm*MhfZ9lVpWqd0nfkU5nRKe05(=Ct|h)pYsxUCJH7U1^{g{FAFp5uQU&wAf7` zwaXv`Hb$fRuZt5$9`a{-I)Bw5g|8m-?WfnTy9~y|MFN1}Q4kLa^ zUFuUeJ)?f_6duoWuY44Ej5Q-e9Knvi%6-q+2XfXiz4>jdsEmzZr}~f67&>sybg9-k zOSw*Vqvhp0-`9ZQ4MwZiw4u6xocFO!oCti at 1I?Vu&o||r;8QoU-_5S)Uu7wEv^-_? z?vQ~x&YTy|`)G_?bM15Q=PF3i(_ at z%yhBgG2ma;EvO7y5ldC|N%`^rKjdbmrRoz9> z^SlWR`a&B$FMr{QoT;}?o+jpsHuMAj+(m&n0wvH zC-wWbc+D}>zu98t`#aC^L(A6&hcbQROq+)@llu}D(QEf{$S&j5UCM&8hiO|kMu;7T zcXppm41kgOo9W{8bM0vSu=+369l?ur_yoWk58*Mv{v{nFgDQgyr{b@*(!V@`*Fyi8 z(%OFIn*i9gUPCzVs~7(@Q6`HhP>cK)FU3u87F)pwA#-$|b!!bf(R-n%fSziGHSfY5 zzL}l!9`K$Ep2rV$!sq8+SzN2LoR9yf|L&uy$+n}C?fUrnLmAxSv;@ZP4V0RSjG3_D zEaKFe3Q(eUnV$PFGzOJo#!v`piGwb&5s0du$Wh))MvmsN088n zq&ZU at Ap@MBJUi-+6_6WlsesVcWnxXXUSHGGj3u}h)&6fQT+<*J+ zw}lCfy at zRa_xWvnl)=iPYHV>%@p4xiExxI4Wj$S at Hx9jWsk`!}dqU zL8+sT;9{bP-`b}OPMaR_Ver!NG2u--dlvleAMTeQ>@NyO47{#;4(6_P4-XEzjLyfm zZ(EhF?O*^)LKb+tXj)M4chHiehdliiM(HR&U zAmr2XWB4TuG2VBA3xBw3qcgCFfoeo&-RICojz9hH{>-<^C5O!}wtVoXoV?2j`wssq zr#%hZk?c^9CU?ayil4i4tPR$M`@8d`hHG&Be2dg2G-&?jHBntDj0<|^^z|#-9Re% zZdvn@=gR0AIPhlav3oGx9mf}V@@)F}SAUWEuuyD^;XJY9-Sau{80YPvYdDI=`{DVG z&7En7zE7LF{&CLkauR>S8iDpyw=U$`GZQ#d{P{`zn$_v#V*G_Y}PEY^j$LZ*)mBE9IAdNEz+1DY) zZ5UG29WZ*2v&0FK>K4h$l2rimo#=*v04O4gn5q^vK;{U3^xF|ds8xbwXOSgqV^SY>{+(pEDfAZ_dL7c%L#;hGt7kV^uNsV6; z8MlvrA=u5*JUyItzx`&~%(+A;lof=D5Ew4eDfp{|qi`CnQamY_BcRPPa~uRh%`xG? zTAoAXRQUXkvNy&FOcV=aff=;}gFcOes at YRB5-a;|}6448dC%1)gP~ zl#huRNX)^YQV4|ImUxe0P`KOOvK7rvNU+ju!AYEw&!3Lt_)0a0af1I)u#DI4-n_>l zHb$%pB)Bv-PjrL1bp0Fe`R at I@?sIz!DD|3r(F|M4zf9XH8126d-gQ at iwHW~QgkGy*|Jy{4 z?Y2HXt5BP4Vh0-gSKp`JnLog1LwQ}nEjzrAm*Ag}$ylnZhBS3`Oj~MX1Ud#WvczFP z14d3a!PUvxbe?*38=GN at UX(EY+KK^1H-Zmd&Vh2!R^-Q7^{%!%@QHUgl9XfX4 at nwX zfCmKfl|3wYcv& z{;sml_l7pmNqGaNdFs3vP$tw0>#YS*j`D*uyc7 zFZUJObJ&kMF{#5WYQsO^yqWV{oe~ndGdshY;q(pI(~dA)^jCNoUIae*TUQ!?W**OM zR%qe94s75_AcV$Nw;1D|!~2m<_Mu~9a|Lr9lQ8EV8Ktpk|n zPIzcHv(w+v(K3&4A!FX&xdna5vB_t(rM?X<(D^x;ElZ-_u#;rC*%rRrqqkA^flBJ42HMe=BK&Y&TfhH$8pI zwstIA*5EVx#}Kgf at bZp139)};XOGA)dl#P6osN&-<}Qw)0Be~Hgcq*Q60|2UpY1pw z0PVH)N!FvT?sXrPoroi7b1G7){t!Ni!;CE*m67 zX?dRv7*4?v123+u&<1`2O4&B+5 at mg5%t>e~6IlTdKNx2h$)9XpWdJgRFS64JG{Q5+ zn|8dD|H3;QDGn80l2vd|w{8cr=UnMvb`gE}JLlY;h!^1oZ}^6R74#^}{cgffIR*dj z4;HfJCuXMnW$v7MA1Gx!Q5 at xaZT;}>eH~Mow8PIlvg-(WJG~*cB*GSQ^d8c^KKW(zNwFxA;v6dERbq1Z7^C7=GfiUI5 zXvdamTG~FZ0ZGp3aP+NXrp?|1YwOAdq7W!`8Xhqmxljdu;Wl;Fa0Z?gSB5pWTMj(? z8*aborsJ^3*v3(y>+Yiu*ah2(a?~Ge#pr&XyRRo_4A}rf9Dz7(^d}y};~l at 7wt{;t za=Cu=bntqf3+ at ah=p>E&-616 at iyaYw+=dR?ruPWH$Ut%ahD{kdT(isPIg1;3%gy2? z_;KJ%M`_*f!~fy6Vf2F=&x0E at u03vhLZ|5U_RfU{<>7o!2PFnBk1Dt0{ZfuPtBV6y z?ZcvO<%~1st0&K7{$}S7pQ95V1Ct>y-c^Rcqt7k2oNIjs^h4A9*VErQ`<-j};wla= zdXpeaKPkh;78`k|yNu;Se0>>vrwq0MpVATNRi_S2;e(~<0%Mr*a^H>oXvWo5 at R#<+ z0+lX$RL0PS1d_4wfi!rDFAyDN=#_DZ?9F=KLu<~dp)hlx$&RM7I-(G)dl`Sh4Y?x! z+SkcFxiM0fERHzF2`W=DBq7CKIa+(AH-M^V>#Nk$|I%TKi*9{aU374VH08^AO;eR zscfFPf>E3fj^8j|1K8cI{r>F)nD=<9^>NZzgTj at OCmr`^|3KdMZC*IPxfl-CYEX?C zgS5v8Y?Uk?1XBoacIfV|nPMR{cw%fV(_q}$;r78mc#Mg$Oq?}aznJyK;BMN6EeakJ zV^UEPg21Zn%C1f?Ypk at +m^V(CHTjx7Nm(Y&9DVbu%RAiJA}xgG9KeAY!W5VtFJz54 z2 at D;hz#-G7b_WG!_+-#I8B+4ygnn&fIy)KNJ!x3J3p`Q&#%*F+scc<%-L5F_a(sMg9Xe8Hm3we0i$`%+iG|lJY~3X~f-~O)sd<;qiP8 at ar1tH~^6BH)5rQ*U zo(+sLzt5h&X!nhF)$t*W;ma>E9AnvqyqE8M!_mTzvV9a|hX>@ov2ke0Irq(+p2w%< zoWSXOPLRD<$;Ip_+HS4cyU at Gq?u7 at wwu2x?X_tTVezPFC-=$RWALF3whViTc4X%6_ zRQ2!F8DSbqHg!b^Yuwb&;dFqjzeUpd*6**%B!6?ly69?*R^dtensvwtPTO6lD>nnLvKUKnax&{61x7|- zUPdQ{6$VT#$cW%qmb}}^Un$r3;OC%`N5379d0m^GV2X$}!xZh- at 8~UcpaVQA1Mib- zvvAS7nP|>p=+$f{MHN^C70q_1PT!-Q at 9gSApJ=OLG-j at vrP%S7q3!+kSSpGWv}U|f zQ$}*-_09xnIc&6aH`Zq9W3)!J>+l?9C zdyEbqV`#%Wa7Y&CBke`QS&ze!ZnIw=GcLPwM9N#%1&krlB=1LI52Ka$$Vg{Gs|)}7 zHZ*ps13v4>d+uC3ZL>@7_<}w|WAZ3)#qZ5dhd29f>X5AH zumlJ5BQ^K^K4FzxQ`MAz8?isPPg!wVaShn={k9qg&069O9T2P-(W zlkVB%=x*tn4xaf=x!>eM4(+C4l;hxgz- at Ua_2F-PHshOa^0(8`p46OVsD4A}1&`oR zw$tBB|M&milgIs|z3IRCFaJv^@M_xr at flY<6ktJvIL*fuDis+h=N#PW39Kh`Z zS- at dz5QJhwaFuH$2To;}%kxG%x%OV(`~ML3XR(@PS$^2JZ`^sFZ_E)HnN?ZURn2NP z*%B#{qO4i6Y{Rq-cz^|1hHQC|+#8g#!u2-f>sfcDA410e+rK z0lyd`9&s^d0HFL(5#x!unPM`AN?k>oFkVGy2yXgikoQRe*)2pe|LL1B`Aj|;xX_Yk zTwY)bN$t{kG4kON5hk8h&C*?pascM?45MW?gb=R!zC!(JH_&+y+M%h59A at _RWk@;? z0j4LRx%wF5)u(_i0LQ3!4nPGO#;x-vx_NEr^nK-w>z{tb}b42iYD?d zalQK0P;rz;0j((dIsujR$zZ`?h8*|_bM*qlciM!1ZLNg%cpmTLNqt#LQlHlC0m9)i z at 3AsK{-`p{$i=_q#ORk?bJXy8+EKBZu-dg{TSymLeV=#qpzR2%}}RuffD^+ zQDKKVIdpa2Q+=#_Wjnn`ccj|=@BUs+0C_ARoigx(cR9#5+Bybxz|TeRyko#uo^w|J zMK1BNGVwWmoQG=0xm2Fooxu_Q<+NO!^$CKZcmb%fNh2;D1og>Abg28fz8ebt^u2eZ zn&@}ss)oj*Z{A&z+8pXjuJJ_Q1){Z`_02D3zGN`vu%VvQ2DWR^R!2ou)7DCVNxK0! z{ZsN7{^eY`m%b6e5Y)hTbjBc+f)1?JK+<2AX*N4IXv2Vp>QuDOsZW$y;QLxf$XhKQ zi at s<7yUyvr6P@)3I&wft&XljbJgZ&$gY6d>P%k>rDhU(eGr=n5dQQ8_4x}Fs1Re4m zow~WbRppFLde>;1pI*#+$IE`723P2Vxs~NO`p3u;IiG4Hi%adpY8{kSgOL` z!r6uv&6brPw*GRx_Ti)eYIbYhiIME?QTdB81j42iiwKgTvD3WwAZ5wvsx|-IhavME zCN;6Zr`bX$`9ws-l#4`2eb(?#>Pjgw at R-^s16FG?<q9hEX(mg<3t-Tm8#F8A=Zj_{Y`~K~=cKc?VxxLm# z7v|ash7av;1T+uL&$QEkzVozS8`4WPL~eHoyQ!?)xfP%}9wj$jiqC5H44S1=^tJUF zP1*@JRsT|K{x+-4eZW7%PMJ)`@aS{V1c}AN at r-Thg?GZbQApv7+*jUO+Fwgjgm2t$ z=B&sc-eJI5j<9fnIrTV*;K;SY)ZW2()-YSX^P(vWd}hWfr7cvhz4}XDD=+`S``>JH z?>=hQ@{@xoswKBWF?e_|b5?>qzLS at FddM*duMntot|1y8xnW;49;e8)$B|D%6M(y6 zZN^$X!$}1&OUdVXGtBxBY-B0#9Sji?atiM>b(WZKh`2z3@^hkpEeDi(;wk58lwd_f z!`Hwrp04E`uKSEZEZ~@D$WbW{M&Qe`;;^Oac-_$zQwJ#SB?pFx)v>@dISk*L`Df=C zp1A at BQ6Xh{)}d@|m{?e5_7wVHxT5sR^*ehVdL)NZlg3bsN~bP#MLC-J z+r3V7&V at 2=gP~#N*6%4>G#{OT^}%P&4pqI2^in22aoA_ln~B%x{*?=tEqg!!>W< zF=@0T}R7t)4tz@&iLx zbtw8L`qTDe(t+x|crtzAZ_D;n^fvD}+K&E?ZDCL7KzXKgoiep$aEK6Bo9oQ~&|%Qt z^ck5O0A2K{is!V-0qI8z^rYjfpU^aQRVQ_mCRR%cU4tC&7|`G0vjAKtNIC0xPk+g0 zrVq%B`_zH#kn`fx(8DLbbkHa6VaL%72tSF#YzZ{EyLjYva6si|FRirw;23FZfa39q zl_?f$WNw_37u7KOcBCy#FSMiGi_k3X#us3_bvyR_C0cZ_14wDGIq_Wj at g z!}fc>{kv^(ZlT at 2c`GcK_N1-T6VoOCM&LgA=ojt&+MRNE at eQ|Zuw0ZjcYB|D=DM83 z!aJ#pRW82x{PXGyYq;V~m`7V{$hLHIXoo+q4|Zp8pi$BOn&$ek=$3Ly2a_KGviuI4 zpz-kk;h*|5AG~`0H0b$8Jk!(m=)vuFc_=A;x0L$ZvsCaj%zG4rvY*+#5$XT{|MW>j zK~x6j1OO`!EP`uBq|ocILbY@?$lhJd(5bQ)L8aWUm z3My_f3SB;1-a{bC?(iJp){o=im7>n)c<8|!8_WGV zzAuy+8m6Obs4jIJ%%CN3vtdj^pf9praeQGIQR_bPtW`p{apZ8Jl){R5c zigx8)3?e{CxEW+ieo!`)b1m8|7c%{3SnE>X<#*4DCIChzgO~xk6ac*tu*tXro{K9h zZRO@#TUuLbbGdFv&2A5tI|)P8T2Tx&Z4kz!Mp=sqMbgW zv&(soo~fl*^i%$}7H#E>N4NUq3|YdZ9I1TA2R`vUdzBjIy{SWVv~s3w)^aL`@R44x7zX6ewzrG{OqHT+qWLQ*FO2>CvEH1ZuoPe{p9;U zYJd29AGLRGt+sa_-VeW7-C?rrY;Lz-e)P*W9K!wVM?VfgTx^S}mtlYWZ4zrOYM*-4 zgwfRTEI8`?LYl~Nn@(M}H at 4dE|E<3r+kDz?-MU#eLmu)V-w!_Gd|C|NNlz9|3N316 zBQ)%qy2}>&3ucjXWq7wTOV8I`A?^R;U;J-Ep-TTI)wzs`m%6Kk{ z4d@#Wzyh`^%uJZlX*FS?hE(G?Rv1-uCSF^FzYN&*%li^79Yl2x%@Kx7CEmoy?MRXi z6PCvqhG6hb447M6OXn?yQBv_VlCqsym~C at m3S;kUQEbci at 3+|kAi~UVnq^Av-MQV? z0-R=IoC&7|PfK}(2!x|laTp0>3kzGgm?35878jS>{OVdz|6+{%Offuhn(m2Hm_6Mf+kI0#A_S2MFD`V%tDX^}{VdSiXP^3aNI z={O(&XiTXQrgVG&MCCA5hlg|0j_TmtW2m$8(CVEcVFzKVv+5rq=8+ia+?_fRme8LP z$-6NjMJ}2JI5U=_Y`}Q;2#*7X;#uzR72{Hr6bu8xK-HqHVLZ#$=xc`vq}jp at kQ1;3 z1lQ9((Tj;NwPjnZZ3K9fH<@R(k5^=+eW7v6Pv1~r6uJe6l?MdYuta!_!siGqtgcq1 zZG3*gZjEhcYpZsv0MaJ!-%FjMV6K%|?d%YxYrkWWY7uo&z5){A&l^BQ+D^e)7tk|i znHH}^7Ut9E%Q5(iw{8HGKx at CX`I|RuOTXpYx7uO=q+wq~Z at SMH{SejJzlSF2)chVrNU4X7ONobuhTulxfC1-| z;{hW1Zv83!jEB*)qA=-mvf_EN;FHnJA6+51mO~x!C%zq>ohv71U?c{=Me!Hju- z%eg at -*NQI6>EyYl4Zz*ySh*ZtL$Y`b-OA|ZIqR%>wkFYqcim4>ccp$22PSmW2ilo> zIXve+Wg5a4RZ-^-CfWYTfpq9_(}cf$C}Za zch)2leXK4%Q+^r}8lQ%w>l4_rXts?E_M at j5NTWf(u7Cjjz#%Wd zTXf_k_mQeP(+)b9fv!4fTTXST at 98ItbC*L)_EKMMl-Efg(a9#;8I3afbdWkQ*hrZg z7k_ts8 at UUul&O4uAh?3J?0{vH1VCtNZaSYMsrO~*+n0^1A at SHU{m&Mti?sxc7tdlN zV)HohbX7%?(@p at coQ=Gz>_rZ=E<2mgT3#ogk))^@!@VQ1X?CqyDTkqeY3eOv#<8)u z_~h(-Eh}VQUfV0;O%A^NT8+h<>44Uktm)}h-le^RGlE{gkn9b9yHPoCu^ZP>u(RXy zS~&uq7)>2G1nN?K6P@@ri1XrtgT~1<%l at LxPcOBnpFIoT4!4E5<<#M#{p`m-OaG0u zn*m~f>$iU|{d3el4JiD at hab1)#kF>GX|)ZV54FuFuiN>-S(_V~Z5uDP^4y1QYCN`o zY&u}<58LgV_u3~v|E$>jn~&aaub#eazxc@~?cUAhwsyVC&uDn;XFvFP`{D2Zuq`jF zv=4vs^8m`Jwzj%bffd0feY(GYSay^XZL7KcgPxvo5XWtHe7bGC+HAk~TYoG3aMd2Y z_il|2rPIrqqNnkDU-nJ#C$dmMrQA_7)6=i|foz6VO2=GXmTch3{w&}aERjAk(rFIB z at c-)Xo&VtO`*)+fLeQa$w!Lp{wJ45s)b8d^EkjW&X{UqV*fwSCMw^_U3ZpEvsik=D zQ=&nw9Y*OB!rCTG!~?oLIIO*1$0Ot;sbn8Ij&R?IVoq(ZViXrAXKP0Vq0^e09p=_p zUP5_uVdk+2f~Z!Ze+o_Goq5j88&Q-R)=k4}=ZM@(k)1^OGCH=~If!8)gmyiULxEbg zD at N*C5yAjaJ8AeXk}yj6V$84JM%hG2uF6=47GrV~VkFLWY+f1gJG8PG;fohjId=g- zA at EM#37Na;ZI~BeGJM4TPE3y0g08bUbx!3DrM`rc(J2Ae^=WGj-9>SV08sJ_)0?vZ z!7u at 10KBTd1u4g(d4 at yllOsdU$Dwt+!u$i~FCrARgGZhf86DLpc^42i7b8CvK`hXk z{-XdVcxLH$z^1mR3NN}>Jt-dmqnv>VZJ>U6f|M7}O|(rvP_VCGzY1OQPVLiQdluh4 zs0eb at axJnM(JmukOE;dO2!Q at oHeQ%ce~D<=j*KDj`_b-x&Db5u{TETbLuoVGOynAa zYQNT#I2V`U0Sb~aW!U~FPQz4yBObYY8^f4q z%FCX!sd)Gu1Ehl~ZR_L>N7)aDCPz_ at M*+FjP5?7Jb9u1W4&s4cME)#MVi^hyG at AY} zdz=H{MACW~4A?0fV0g$SlXv at u#D_h&B<;<%}(N9Gd$RQ`dJzbSrdMWP!^hfFph%-~_rOONKeC}dXs0hZ+ at t9Wha`QGs~Y-E-Xq8bLyI*bYZMB1w!_t{cH&@%N z^qBP9o7ABqtoe-bDBEDBIvp59U;JUlESl13-brr(86|%?**t)+>`U|sSvMIW%`M$E zITrvKxi#c05~sTWHH`))RU8mDG at r%<eGwVD+4lC% zV!L+RvoBt?t$dCQjkWdX>+SI;pM_^n+RQ}X(sn5T^W&d>+JMDLW_xIb~2M;PQ^z`yDeV=}M8@&=fo*$lX8=r5sSI;)v zVnF2BeEMWzq8*;>#m{ z!w@>A6KC$M#hy&Go!766U&e+_zI;z{>Zvtx^P!S5&|;_e%V?{7J16PMJrE>}&(AQFw17lqrXRP$IzW{?>YJrj5BL zBWMhSNfO7Y%h20C6fCM1lDD^cpSp`2+KR1~%ZczVEG}NpM9uS|t04%+mg49jCyMP_ zfl%5t)XDHf*qpVzMC#fVW`vGFMmTHhr+Cc(2_ at 6_cuZeM7!64NO zv%E#OQd8K-y@?5!il{dkz9rMWie;Iy^sf9VN#H&!d$73difhqkr!aOhQ}Bt9hi6dUb7YR zKH#c;*PPTVO{@E)fmlKZT_)qO8S3&1b=9v6^Yf9Nh3Xgbs6Q*J5ME&PE2@%v_c;^k zceJTt+0=;)0k9U(KB0 at kHzL=LK8zCnOnKT>K%JQ!xkY=eM-8jPkN3oZ=B5fv~H=u~l za$ou(O1`|${Ksjj{$RXA)7(`0gYK({UD`%g9i_*vBf?}DK%dkPBFGh41{Bocy3g|% zpzX7U{&NB#<@}^Rbl=4Mbje9Ae4nyJJ9>mLXD3|$>?pL_h1R{lqHEK?)iZgwXp|eY zlMW~vM{lLG>$0rDJr>K|aYoc4U;VKjE4P4Q*uJf3%>iH2CFiQc4F zYXW7i)nvo8>nwdBI;)G=m`W>&p6>TVFB~4%$_Pa_=Vkuqd+MVPL%`G}{E?sVIN)Vj z9e|I1#@~3x$WD!lr2oxUMSp-yS{D6s6na=v%N>1<=M);#m_m@(BdU}0q at d-^n|62V1n5=xQF{@;Kun$yT=8C^ws2SyVyBw-~as| zwcq+1zZ3bqYR?`&4S?Bb%K_-e`^RnO*2CbGg|_!{zx{jv&R=d at n7M zUfWvVZU5%K{@0uN5DNis&jVH$7w0PI^xnJg);6!d{KaSO4}b8ZcJJ=JcKha90C#vl zJhx!vXmY-dznN~wI~Q$h>#*5<<(*%7x2 at cQ9qj2o)fQI*=%S;SR>@54f>|#$h_kM)b$~hwZJI!MSElrJ6-* zKiZkO>g*TK10cf)rvV%o%xTLp;7g$YLpz^nu+m?6Bd}%-jOt5p?-Z{w9!eCAER#VHhbw&z_S@?0Y*_YK%{Uo<;gfxmcr1-VU*)|pqFprsii&u3uQ$i5>kq`m(55=E$26V zhJlV!KdAt6_HIn~VK-~?$r+TZ!YkJ%hS^Z6HVzVzY@}37obo%q6Jh^@6>rb3NTbDMI|!GNwF>0aCkv}QYHSU zPKISgIcg8=2*_ya&$v4nZ$tQUZPe8%B4$#D_tyKOOc^voprQ^1Ho}`)n5v`(-N04^ zkdbpSG!)hGespmogRQT$X(HeVu(4qFjnv7;|7eK56#n7gbx$e{O6c8m6 zsB8v{-uHZMO&G at nn55)I;U(GE5R-a^Hw&0V7x-R7f2kKkg+>gG2^ONy4iOxY0CEIe z4VGhKuxd#Wj$3}G3w#bmPRAHK(RfDF^Z7?MYKf5ayT^IH=vR at Q@c$sP0`z%-tt%PA zT4O8a)^ai7VNSr-=6cbaJnMT=L;$~>zvv5XuLWJ5q2rgQ?*RwLQQ)JT-pCGvs+_l? z!g+szHT6jOrO?f&cQXj^CGrnad9 z2+QEd$w}EA3FOH8kHc&Fv=}V1t$tsv6?#>DEl;Q%)wG2S4g=hwQ3oxN#atiohkwcf zP5>8CaNo&f$z>Qo*&Set3>wZBx$9BNnvg<=MsCcA)i(7?r6|0rbJZX7r{DDT;9d9( z at 2V4>pxywSMR_?@CaZO at o4PAEe;))GFn(rZ4 at ci#-7s+`l9pEhX~0FQn(rc~B44o$ z0a)qIYaYryqaEO0g}$n#F4Yg|6Gv*0s`ns*RVK`cEdU%^)a>R|yz(`3`X?{E0BTM_ z0W|Ym<(%e|vsfA-byD|Wr5yO4LpoB9K at IPvdI!-{+CrA_E`TODVG&{ut#>G|7UmBP z$P|De;!R#U|3vOnG9FO2Q30b-weD^-WBD5aTyM@(H$XXd(Yl8P;G)0E31=(wto7+z))BGkt6;wX-N6&tA0;fA(Sc570GIwcWn=$G+44#IOJHw)*b-ZRf>C`y0RcyX~hxeA3>zf3M9> z&D10l`g3+(w0F9F`lBxb62EA_`1sTIa%;UkeD7|XnHz62li|V058gG&1yCM0DR+7% z*GJpSAAi)IeDb*L)O^6-;>t{WGm`!pzHDPN<7F3MpAacV>`nXRqmSFu&!4sXx9_*f zfZO5!^`C#|gVCvU8UfFXh at K&&T3C^%J`qKn4j!I}0iW*qbo)C2B>{hi5k(3`ULHv0L!`|- z8mRsJ%;KjbHLS3=wG+c8x)d!-X`IJHeKXRg!Z6b_(=8AlI%ubR0T!vJS<>e|%ZoaT zAa;W{h at 3E1m4C+QMZwe}#sPnZ0}OdFcurA}nUwEyHh^SyZnl1BR2V?#z_TZy6a{D33xED#V{FixUBlpUju#~k{YgVC2?2-pd|Br};HHLzHzeu?ZB!I{9 zGQ7rsogbq&P|yup<*G)G8B39Y>a{$l!z(W}r#ez-CQC`z at V+ua`E*o%(=||#e>feQ z>i-%xO=a*5p4KLGB8wtDm!YRV6KNNTG0X?ps+h8Yc&C1Lxla0!4A=WR5OhDVqUwf~ zPa0BD^a7q_1b>Cs at eh?U8Gurrc>1I}SHMB)0(RtYvV|T6 zfYT;&#<(gIs1?2SJ5XDZoAinARZdQH(f>~0y~Df0OqIj+HuA5bnxj$b2Tawf4!~mg zt#bWBFTe*KeD?eOuk!{#lt1$hWu;g1oKMdK4**RE51fPOtK46CW9&od>6*SHYv^6M zO5`c at Gn0R?V7)SHFX8;FWx+(dMY1N5nA*!WXUx^ zse{8RqsWxM^WEP=0j!so`TI at YA6YV#Cs*wF at Os1x;B=-gmH!nQa_Y(QX|C0R{?XHH z=UI)W#mPl8L6Y#iesloC^vH2&Lf5GaTgYx|i>NT0FeVo)^>vRNb$Yb;Km2nUzAHJv zL$Sm8FQfp-`%){VSHjCic#P0V*BBq3Y(M7SwY7ypC5+Qw&=BbyU# zetJB0-EVUXYXK>({gwatueXnXw%=~8&bQlZ58BS=etQuB^@BhBuzmE=7wu<1|E&G; zv#0IHA8v$)Q_leA&7HpP?dwg>dD at e5KY#ozwr{R|>sP+le*gPFYOmIJ!V__r$WC}+ z?assS)NyISe)$^u5$e)F3viU9 zQnQv)ukk38V5X{*Ayvb(lshk}79b8|)C`;mmmxL+SmEs`V05}VJ4*ew0v3+S(3muV zp(RCAc#=TnIiW4D%`zl4Wj{h9dKG;eZ_JEI!rr3S=giX-(2LlD#s4qfj#hqDU{QOX at CbmcEf5ha**NhYO>09AD at MG*RQ!)(abXZ}TC z43VekQucsUzjjr_z6^`9PEXFFhytPmB(#xH8W<M72i;QdG(*;}u>6cC`Z^Daxk;8FQdyIWh88&-xY^s9};DeZiBFIjjS+UfVfQKq3dH0}XP}J#KZW zK8%t~qswrd?eA7TQnk^0ScS3 at se9^JpeFPJ{5n`kJ&Fziy}8E_x}l?Fmfwcs??nZMN&a4tinZ&IeHm_DOm z>r8n_Vz|{zX?+a*0m^_!u>g5VIalFdZIPleGcy;yovRcVq+}$u6)1LcQZ4!loB^}i zpMrXwIj6kw+*jLDDnCC1>i~pIoRc_rmw1Rat(WyUd#!k;01pJDu5t>1B at vroK)8bi!PUg;NI|w&%u7DmhoU~ z=xYvZEmWU=$2WGzkp|=$WumKRPfjlarsqTO9`!rRJC1YB^^=rynsak&H#(Q@;dn at j zClmJ71~zY$t`oFiEAVCnD<9e{9fwmsAG)N?^k4NZ at Yr<>8U^M=CeQ?J at c~^J-UXCX z$HDz%e-IT!AF_gG$H&%>H8PbtA78|FoWwR5a^;kheG^ZjV?yW4pi8<%00Y?I2$gLr z8q%?$TmCjX7T at aYno%zrnD&#SqGO)Xhh&-EHM!GhSJ}R_iM=R2nR1ZZ2o>#7eU|I^ zSlMM$^1EoM5hN=|uotICr)?^zt z+c`+zP0h4BH|I;APK`{r5A)k!`uBe`&$KolhjudefBNy0_WZ?Gd-iOzJ%7E^Hg?0) z0b85VUzd6L`J3VPeDA#SjE~OVmi at 7>FZ(|-HW?ZZwV(a+(>N`0E~m}1pK2!;S8X?R ze*AnrecTGr{rJO=+Rpx2n_rj<{jS%HUPh|#uo>vsF~U;mTsCqMpq`}pH80%R{k=ZSW6?N0mX!(XigqgR8oMy5vE%AM6Vw=$b{M~?(=OvEudKL~Fep0%;JqwUjQJZ?Yv;YaDE z(KbI6{dx88{WF}+b{T^19d(ZxV*n_YPSEvctQaQXwTd)Bqtm04 at x15S#esaU7`faF zxe|=2nd{{YhPo%OJcluFJ3h!S6MeBh)m#V|POI&Utfe)$zd%eF%vMc49Xw^q+jA5) zVX}#S`lJ~BIE-g3{~+E^%zX(8uXs8g at BZPDtBRs6E}88rN_g2uujDxx{(MuBuCZB( z;~e)W+bz(Ru?c7jxEss7zW2PkVWRipOc&OIDB0Mv* zles-$E^T(d_mtq}Z)FUIb;}s%dp)0e0aMB=CXd3gc9saP{;REQQYTAX)VfhXM}*tq zUS*g-q1;+qE=JfjG|`S49!fdUSe0l^5djqHVo1KgdXzb!>KO_`{oMmJ`$P-TD9asK z+QU1vYjAjTSdEXi|CIY%)7^0jEdo)04u6NQ|628*H&@<~M=yxTj9u2FCWm~uZk0I1v# z at Z`U=;o6|q at 2OuDDV_mRfIi!nT~V-x#Pg1+ at a1{spW>~~SKg&e!d{V%v|k%4 at n74Z zjmiN_e_n*&H+RCflH^n8 at PvA+Gx?Pd3mh>buHh-|a27xb6}__qp1xa&*aG*;m318L2VR|^-`$XpK5+yM^+mvFbd*SxI>?6_3cnq0ysqCJ zKEHmV50Iw4XrOqO&hn|rR5yU+^hflX2+-lteqEnmn5~82$0y_+MIVK4(8cq! zi_7HziP8aJBDW%ZxC38Lg-=zah85FXa$=bdL+EtAb_@>f9GnFh(@r|I_y=Ex4@=gs zX;O5FZE?*xxCWKiwY*Rr at o1&%L_R%>&dQ`mM at FYZKPDtVD5rbLrTf$u7*R&)8TG?+o*$oPH(ZN;Py0)sRzK!)>d4ue znC_`k3v-JlUzaBrZSm&)_ICfY{YU at NUv2;DzxKQBU-`fMOKoy~wf)=wpTE at pjeq-Z zwz0X^{@kDa)%HL5Xa4bae{~@a&W-jL{>{JG{>^{=Z at 1u=wm7 at o?%lbUSHEf7ySr`w zLzSYjthKYc^m-+kN+EO`3mvMw1-o2C0&?9tvy}lP&@1sqJ$ER)e z=B;YuMjU@~bb1W9qVrg_Ih-4ZP;PyXLLWq47RUQ&SC_ld(yIb2c2Ilzxm`c1KQV>P6cTkJ=x5|88)_UiAA_o1GhPx9_c%^Yep0 z_ at dppYn6=DVC+r%Xa0MCzTLb%)poX at Re)oDbv62by#3;rU$oWG<{+T>4}a_XZExeO zhLKN4qKg;D+OPfD at 3wFL@pmIbMl=uF^z34L`O)LH`E)mZbk%AT^1{^C^_ISfBEQfsVP4ZjRj7_|f at Xq|D< zIT)TdSPCU4&uc1P!uHl)h0P83jtm3~`@X}v?##`9(jE6g0LtR4?AGy87L<+G!(yGe)kf zM@B?!^_PsJvg9jHL*V_xD8O z&?ue5u+>_Dk>ne4BVydcU?~GY+AJDUvbxbTRaQO;J7wi}(K}I-x;J%mR(L3f`Z;*< z-W#?mmad4Ty5zlf5|KlzpHsy=6aW&LnV(%qS$Ho%F at 18DHe7^vM#JX}&}sNKFDM!C zo-%}yB||ZCBngr0-l0yX;cM3!dO46%8$yKQ+dQ0hb>QLD7JVavz!6f8KJ5{+^jD0a zt;8g)dykpp0GWH~cXYPy;Gkamr`9CQ^$q}I5TXOngYh*C!D$+ReUn-4- at O;v4)xPd zK&)B991=2NR;_3;eo(&pmhlU(%c(0~3kiI8qN95NrrM)5yy{tPa=Ir!_i|#G)k}Yr z+~oS+;X&Kq2`GwOOpQ-<8W;jh8J->Rr9*w_4?tRZXrS!spD*tZd&`kdf1nMzIJ6y) z`2>Ilec|^(TLgQZ zJ8q&ooJ?S{^Z5MSO7Xp=B;*-~`~_&q8XzT-?Gu`+NM<>{;Z;$jT&GvQUPos?Ivusy zwSG^o=AF)>VeXMjIru)Hi+1&E9q9Gn0Qigg?(iw)KvWOrFCMM_rnmJCU7j-Xj=?hp z+H#Y+J2;dU at -99X1r(+8gXcnP_N%uu&xbH5l1?ezO8!L#FE8;z2kZ`gP&CN>+Q5GJ zjc%>q1p}^Wqz^Aodmf>C at P7ZHzeia`zg+Ktv5UHE?g#kUm>#hk0L$w>xc;D^tv8N{c}U|HuDZ`|QbO`}6;ef4q%{*ZzaQ`kU=%pT24*dH&I(+4g_^-~S8k zTaWIyPd|Cq{-6K%f35xIZ$E2y=SSP_-bMT4zw(```{$283-~^3htV}5SGy5Fc6gdT zNR^OEZ%&iN*gc~tlW{c1BTGQB=a-h2iZ(A^ysjl}#wVuQi}lR_!?AW02kGv;<@`O@ zUcY|bwzrSl>arlyY^A4h43yy*0CDXlQ&WOSq2g}9XgsffX=;x%l7`G z0Jrdm$M_;t(Uu?EN%>CfTV9M;jc4N_HHn%>yWy$xnkr5KAlA#5uS&pbtssmQbljIG2*Dx` zB at 7`D!cow33v-p%B{{f2PK5p7Fn}QjieX&}k~Iul(U_`b6wE>lTm+JIGj0?sPb~bM zW4JvD<6NFcSj>IC8i~S-fz3HFZr!$p0yC9A69zgvJBrbXaf<<72;rAk=3=--{urC- z7_W==^2K`F*xas8GZ_G=v-8FHM2v2b{={UA(^T5n18OkBXyxi}$j^9(vr-WGjiqWJEAdXS6Jy02)G6J3tP>S&wzY*n|YXc$oE`2Zn z$7T!Lwy2`6*TW(MgU-AhrZ256=6;bS^`~U3PEl62rPH6D*C(~Z18|c%az>7J_PQZV z-HS%)M{T8Y9k%>ZZ%WI7M(XMmi2;(xqoe4YZdEtGcktJv#eF#HE92o^wU2Lr5W_CY ztFN8fSd(_rmYQXo`Z)Bl#k7?x3V=?WpKf%+U%971LQXb=Zm3*H43>V>M$X7goI2P0xgveIq at J1nMUte0N@A#sxYljeuIM?YDPOkfm zfXE%(-{1YRJUpa54zzVHuPoK~IhJ)lL8;?W6bc5jwb!Y}T-3K9y6l5j`!Ui!aGJ{unmrfCe20?Z9^qWnYG-hBrF^4&763(IWIOfSmI2;6Mh at V`{wT ze~XNns07%49l)_w?$svm1MWN70S at m*$4*P7pT_~0BWPuT$|bC${|>N=VEc6Rez=Ze z=6$x~G&xE%vh!W1nL|$cKo8}o`rY$}?zNFD8hs%zcz8e`z+XQ}jViefji4mI+Yeu^ zs#9VwU2-C zMRfL1`_B8{Yd`$K&)Nt7^1m8 at HQiA at pdvxzs z`|!ih+Q0u7|8o2IlbyD>Fdu-n*Z$jo{?E7XfB*aKqbE;V%x-raL(5an^4lJaxQa~E z5xdc&laa$&Wv9Q#(KECL{?-HbEZIWdPon2s+dYU}o*otL&{@0i2fj0rMY at R5EPTFc z9zdErGd*$5<3`JR{{F?~N!#9k+unb0Cjj$R>AhRG*V?DgUbW at v*n{vQJAp>WFZyAxee{dZi>B{?_x*NwY{YH1z58IP9q+$v|FwVmA8Ehxoo}@1 zm6i6{=byK~@c;UE+pmA;kGBVNx7sHkKW>jV_uG^8jW|aq?cMk9x4-Yt{E6KEZoqh) z6KNsAG{*;48 at Ooy?|=6%wO3mQwW+|X?alTN{bT=l8~UwZe|WVYCK_IvZKuO;+9xlc z#xHo=?%Y~#B(4=RS&XESqkF)ZYvn zMGX{b_wdNuwzxXm?%Z8%vvY>r4AI&}1CTJ}86_3vZU0And)v$vhuJ}AG4Af zr at h^Swz(;{F+e8o!-RxP1k@)Xrnna8=kr{Y>viO=lt&Z*no*XAQ83FZi*0^t<{IPz z2y)GOL~3bex$1AY!gCag}NiN_d)6vd{V+8|O&2^M(E_0jbI!NFej1qH&unB}A{ zl*Z`DR7JlCihMkgxXX*vw261wm6-aMf(}1;cPW!=4FdpB)Ll9D`$}Bwu+nogr8 at LsP-oRM{kgkq7AA+ME6G9o40$p>uj579^#uSj#I0?jW!7rD zdGls`tE2FH2OMZJzqHb#p(=WLw6W2iJbPYkr at YYEaHsajAC=z+ge%jt>QzcSe-G%p zwY61s9Spy at XTS$NS1^V#eeb*W4z|u?l)MKZR2Kdjl>7A)4=`B~<0?Nr*!vOS%XdJh zz`!-_YIb_w$5He>m*X9aSapL{yE5cCK*)V8jk2p(`} zTz#jMwS}XCPBob%FD)KS`za-L?``RAsCH;WK9%G1tKT|M at 87NOm`|-vdm)-ZiohU( zh6jB2sSi0DgHP8jE?(9&$AG5QkC8o}bbz`z`_cct3=ehS*1@@Z>$&SP2JO*K_mUZ( zUw=oQO26bxJv!eof)hEvitt<3ru0QQdS4B7>Z_8ww9Bdl=%Ro8?mf!KKh_IXPVbw} z!>-fSDXAUo?v|s;A*NS6>mHMeYMHUA*#bKvGJv{1R~EbBT{R-4pHj9cIbLz#Yuh~9 zz(ARm3X%F6X>!lO?p{4F#mIii$~9W$Jr3pJKYU0Zk^}a_ggm4hfZ-dV3)-oZ`?RfO zDetZv=iDqJ>s^3U at j=n3r^Sp%|J5*Up7Fan`rWDTXQ!sG`L6RMKsWeKuTMuOv#&+Z zJmY!g*2Jr{DVI90*Kd7v3cXiXSKH#sY+Hy;+uGf3E2}rd$U|-G^(Kz3qwIF{EW3iQ zt6q__DYhn{=Ecj`ZF+LLt*qT_fBO%9*nai9zt;Y>f8*Z at 2%2d3?mlXN^{@P=ZF}b^ z`gA@#A6uS!?MB}nM{i353EQKpWL0o-KmMt)zInXS>NlhD)S ziz^GYdVwYM{+s{Rzo-2Zf9_AUqvQRWjQiscf8KuZhd*tTLlbRzcqVvbs{LYft9|&{ ztI(vif8fvjTKju`xB9!`$WV;l`LBU-vN zVDIwyti5`*Sy4K(bZR*DNDd!i9IBke`T3<%R<-O*z~jpp05e>Ls%_a+0!;a)z1}}F zyHIQY9Hxw!>G`%WAHbBJkodeB#K{?>24Gr*-1DYPs7ly>J` z(grN&AV44~yq080yG7E|qqzsTxahJHWlO#O(SK;&!H}}imwqf2=~|vIW$c~^kNeQj zEYrcYTAVpuT?y+5kW%y|9ut*e6h$;BVe;oJ{h9jI at 8f-uch@H;XKLF%lRL~ZF23K3 z;tXh^9koNQVk!Ilo!Zq|d2Gt{?p&vz(Ag=XA;RSTeqt_vR%@%wnzy zr)$^WJILy%>tU6eZG8|UdswG6CCy$vu89l&J_p1?pYxoIRYkp0-wTnioRfA`tcog&K6=M1 at WDo;Dk_d#@^JZnqG;75JzcdG={Xi{{uD2&LXIz_m0 zPudnbxE~GGN$Q3n(9UCQdpI-wZT7mgQc>SMW~Y`7I=8|>->2H}?&Q>1+uVBHUcP!! z^^%@b04j0>fYFN_2n$?$pIO4{4zS`m>j`o?IjYwFqnAt+G>Nb1N++dW=)u|aTsdQy zF4txQ-~a~0|Kv#D4QOE`44?F2-4s%E>Vbqh)Bm-4LFqM40h#V+9}x=>PF;#V%1b%y zRG;B%lGtJNjU6eDnx)V-UT?MiIJ7Nb<|H;oU+wH1w3EX=L1iSsV`_3fGDn^bH zONV1%A!bv3wWGm4sfyTLE7HX-t2F_M{eg7OkQvB%xF2&J&lTK$&1QixpdhT77D@{$hCfW>GSfROmJu`WY4z%@6^cNqOV( zHbenL|9HS6yoR~@4BmLvQ!yOrm+hUt=xy&GMx}eq-9P}*J(9@?7XNGQNb z!2)dRUPC--4{$D(K!mVzzVg0^M=4O>fdEV0F!t&ya-p3S9SD6a4IwgQ=$&*{@;Z=f z5>ooHxHxs)IXbAw0$MLGFBgqPRh8qKvJ5?FBf1TSlX?^_-edqeV_Z8!T$sTfWfh<+ zr^@ieXaJj`0uk+6V>0*hVga$Uw1bkHo{ce%v*4Y|_O9}B(_j5PfL{~^DrTwg5{${>Xc1f$MVUy<8iV zson!4HmHX~U6hA+2lrXNql{wu-gWo8?p{219R4Z$pX;sxbm-x?&O?1 at w@0W&d9K=~ zU0ov6es`TSlozJ9${!44sbk(5`uFzq(=ljA)t?o)zV=5y-P_wacy3UCpALWHnL*iu z-v)ozJyL8^PQB}E_tbqUMn8B*-J9PAZFaxQ!>Nbgdt{R_BwOUx at UMC(v!2fB89)F~ z?DyL}#ST86>ofDoI429R at OO9UIPpH!VeoE4Y$8}9OEu)4-_>OxBkskgbc23y(0zS9 zM0AT29vSu=zVIp1?C2vn;g85qMYmEu-BnI1M at 0p4kXQ8?(2o;nDA at 0etw|so8yj`6 zdYNJEaPOVlYwg|l?iB#EKCR`$w1YDQ at X(LS8BCCJsHZd;W$6dy*iwsAga7)_Y>(7C zr2ybFbR6_$Im&EaY|!Y~Rh+ at ECOUbicW5)4Dv&YYhj2t{@RjT+*NJ2TFdR_#bb9np z?;1=*5mg>MS4Zj}GgeNo_wB}MnjW8ttrR)x+mx-WtON)ilsz?T{?^TV?Zu0i?YI8M z at 3v1q`>g$w|K)$OedoL1ZGY*n{AQb5T5Z4o{hzj9eEg#H$gSHC+vlG>sfZz&WuFdD zj$%inABkji`a<}Bb at gW33H_ZHX`*&mO at yA;?pkcR9_aMP6W!s#W0C5#Uq95$cEO^w zvv$P_J at pHIM{i}Rhfj2J`S;nGOm}w7}5tj&%y7z$h(ssM(N~3JFM)bK{w%<%MDfIa+|E zVl3c`i5!^E`wTSz2xIY>8Tx~CmPjb+xlEfb&h0xp-sTq2NQu$=qM>e<;kZS%H%NnPX|0GJpT(DuBcL<$cBQ!EQX?u at o;mgiYmnh#?{NvBGd z$dI!r4-f~~v0^*SK|uhE9h at 05jdBx73;5oT_a33upd z=mh=i{XKb^JgNiw*Q5^~o&E}~C}pR5iXPNjlcA*ufQ5li(sy`P$VcB(d_&`-ZDw({ z6fL^ky?eh+hK7J59>9CGkoEP at nD@$&q%03}5AYsW=UTACvv?+F9r>h))Mq+<$3S$) zfCDpL`v$`oB9H2{cX&|B007g+-4OHyZa at SdbAYN1Ike6D9i_bf$k~lG`Es9fN+E{- z9O_j3o%iA;{qG*L#(nw#e?Wl0UWPX9RgUAU&n|O)=Z3G2Dlg}tY at dT?$eeP0`fcEd zh>VMD)jgpzC5rAo at g1g6&Y(=rm@;}>hT7utQk)CRqjaF958OA1B$20Dq9p*=;W-DO z$eEG<>luavU=X>KKdL``uUXEyUyEy~F`t9)^%;74 at 1ULD?etwe2SCX2_4|B={d0Ox zuiM~v&pFAUW6<{gTmSv~hv?bVB6a at yI|u#kZ#sQ&ZSdUJ-(w~-S?~_Dauz^Id9LN| ze&6*o^r7o at k9tMVtLESxbx)o}A%Ejl-_Z#O^e*2AvT72I^3<2JrZ0d*yz$krGYc;t zkfS9(uk%&4Cv6WEQ)Z{V=Q!%6Q_|Y zpdWpT?(}ETOu*p!d4ZW4p-WfOXNz;o^)9I}9Nc%_c~CiYAAR&uGduQI-v3V9+}v)z z`#ZniUT)fRdc_ zVd^~gHaaeVPHNe40NrVRl4oz^!y?$JJ~F#qU at zYd@kb}*8XiR0JdWFP-F>~?l%hXLiGH3hb{HSg11StOLw)eqMI#C2` zad|O-Vj&(6L5;wMVWvd*g4#E>Hv+D<3Zy~gK#c at Oo|*7=pLORG!9wg1x(jP?(IgXcbjdMoEFE_xzqfFiUt$ZD%BiY(XrqL&v1o-EBW9mO;m zU}s2^$7fB$gD4Y=N6KU3)d;P_AC^%#JUk84pH`curx&7J*4ph`_uBfatuX6Qn at R^P zq%9K>BHNV#7^e}E)wMeX7DdQ}rBi5_(y&NCOghtY0Lw9Q)=R`h)&t`~+kHYio;`n& z_FE*o=MWNbN(1oQ+}bKITI)Yu8+1Uc41Nuz1_+*~0s12SfF_3FMJa(L=jQrud;MZ7 z9--}jB$Vd4Na>9$ODIgGT~pN;7wJ1g$(UJtm1oGYI6j{@u9QEXzBX|r?J`u|!UyS~ z8s3OQjm%eO23$RYY>M#@t(fOI3t^~ zudmnXHFc)^G-~j!Qo{XmJ}FSI=%0gKCThWMkzWSLuXzVUJ~?e^sjHAAHCASRHOZmU z19IJvV%6E{2!EyWFFl*F|*_bQ$uQ|J8e} zrC7V1l>QqjN4A`y{O-A4&lK%nwJW at w`?Svu>TQ_`d(|)pKFu) zSB_kGy&U4`Bu)jVr`GBOYEzP^zV++u4_iC at q;B+CjRI(Yu9Y5*eAdGCk#$41qQ7*T zau((nt1h?JZq-nuw5000*p}tky16)e-bq)ONU-s0J3O@?y%V0yb+fcNlOvH?k)*N{ zaTF~+e&==!a=_-s#(FKQb^q?&T)Wj~V at t~>L?6jh1}5#}s$6_9bOC9=piJ?K{#?WN6O=L&7NFXEkM at G)9<(sMr z2El=S^bsAxU2+kg+JmTMlS4NW+c)o8Aq{SWZ97L at o^lb z at ZY`r?}W#;+mq)n+soLcqnL>C>6!NNV>_Fi#v6K z*VZ>S+e!4L(N|GPHVP0P{vUq#{s+JO4Ma>vnQUn^qy3GYuGqe`bwGga#@<409)N~A{lVnbLT4(ESlmJE9ld*@I#VvWO z`vGNJTYD9e1aPM&qiFJvLbP7dWR#m3a`KXRkLvpFyN}x1>Pi%tMU+q4tnI(juR_R! zeO~RHG1ztrBhQ;zti5?VB`%7%v%8zR9Ts!#r_E-=O75o=%czEaB6ic$bM1IfglM#e zbq!$yE(62P1LVn8j#dO#-|p>MthRgS@^otJt~_5muLSs+6awV?&I^&hXvD$nY+#e4!g5<&U2RJ%D{U@@K;El;c>x16UGeU8gi2n7 at 9KcQJuSdig8I16T*Z$L z;d`69JMlP$qfX8a1m2XhAO)h*0#a|0zxkDT+2f-XJy)(WIWeMjz`9fj3qV(XPZR=U zX;+T at fE{aAG5~hO$?Kw92!BrnojO9DPGl=eqJczQ5q%OAL17hT^ zP*{KsTGU#XbPEpiTPd`BWo4W~5V at x9rR*H;bL4wPEr7 at ZlIa~T`MsiKcq(P3rllw4i*E<`JJ%0S8 zJ;}Mfy%W15`a4}wc at F31=6>7RvI|te=v9x185vOrbYm0n!rZ(e(!TioT%0-_Yt)E? zz7Vik`{ITMX!Rzu-g)s{nwBPt~iT6B|fgo!*PbO&ugh|uiCYJXf4JIIhbc-0=0E>cF?2=|{ym@{cAnE86dQOSRi=J#wEKU8~V9 z)4gAmJskj8+wi4NM@?MGH97zY=AhQrbLRnsa8e!}iS3pMWoaBa=%abQmPMk|W5ef{ z=GwyYV(BNj{|6@=Kn~P-`Z01IUP9~P|I+N at 2X8J$+u55N0So8t>C3J5;^lTKI?^8A zdC>MZciSWYb7Q;>rH6DxR8s_aymI(9wl?yT-dF|mhUbgAuNSW?^N2%cn3QW!+wb0fdI9 z*Vb0U{Nwp9ie}BWu>ypE(eBQ6glQ!2Fe?n05-qxH3rmaX$QTOD6}ptt2n`ler<(z% zH*c-A#oS{#7(?zD4;@6ec2cGZ5f;cc^gEXGYAD9x%5WesJ6-_#mU3>cR=Je0KGYY4 zba(rp5{NI)!v1ekM(F1}J&y8^Qsq_FM4f}P0)(f>qKhW at oRtzU(2;*4k3NBA+o!z~ zujkIAciVXQ4Y;ZyP2C{ZV*fEDB5#Ht=72Ne8 at AJce6qi?T2f!Fe10 zx(Xc){Q_Yn5aF`|W|kaEeRxSgzTr^U03p0=({>^B+A}!!)#Rttr)GSqeR#b`uDa0x z-0`4DpFTcLzh3fjfu;gZE%e(CJ&w9Vc8mvr(j$Ci);eFqKw!%1QNREPm at OWn=$&X1rA5YT$T!70_0`)N ze#wuNT25EJmdx8)vVITU>Rxs5tg`&=-kf7&BES^iwI)Qr{8N{5a`KM>Ly&5c*Za&R zvTk_?dZ4z>V|)V^@HdAEP03Mel#W+CV;Oqn9q8zJdv_1Th?T*`8 at bP#sEn$V4{sEm zC?lGa5$d0*z5DYkI^kn=%H`BOdMUhBlbZ6+wH^uRzw3{FhL;0G^sBlK&Wf1j{XPv* z4@`~7}7&z<mHG=$r-CLi^gSBX|3>dj(Jq(Dt0f=u>iBJjRAth*#SU-FCor zl=_I^0VVc|-`(Z>TU8*mso=Q2${C>3ZAtnvp8^8q_(djtmTcx78ylPDut}sZFpGIo zKii8kj4uLqUK!!o=0JuYN2c3^;o#_flPOFbES|i&j9!{;@4fr5-M+Pw_eBSv2NZ_3 zcu(Khh2q)c$F&yb+{|pV9MsL#TPahj(P8nW^(VtP6|ocv1-vcVeRhI(ImRg~?X$}b z=LD$D%ZnF`4itYxUhJNM2L(~+&f>?M%I^IX*-!Zen#fzqFfoNwSu~4~+v#a2oelug zoq+e_C(kO+>>#xFhEG0w+_pqA({ESdJ!{UL=lU;6e4pyFqC$uzSj1`PvwjTTO6ft)DK97IXEHuO&SKVlt$KdTx#i~ zO788nLz3^r(Ra>WL^9X%9ryz#5GlX)TwYJ+2p at MHhnj=yov!_x<66i==hCaGR)N3N zr*ppl<(U*yL-PK1Ex!-+w8QV^VCHY~HWgY_Ff2N0*oa!_Iybji+k9GEQJ>8QV at Uql zI(pOgV^2n=W+ML=ZDKNxROoEGQ7e!bdE(e#yfHGiUpjnjES!+C_YN=GUTpFC)oE-| z_~5 at XJ@>)v&EK<(fK7X5k@(Jo7MiH5wSofa*umF6*LEVrJy-nDrCzIv2y%qj9Ovp1j4Owz at 1o zW4Lly$ist_{c2-93?4ukMzN%g-_h3465s(aQucOnaZ*%vD>+Qx><0w$Sb+h3VrWBt zo0GQ?xv8NG;1rD{O556}qN3 at Oovpo^O>7qG&h}C26(AiYHhjaxoUYK#c4lN;XM5iS zg$a3E|8PHwkMe(Wc_T_!e&b48U0rMQa|@-g-$XfXhDHp4sGmrK_Q?Si$*5>q6eED9 z|3!Z(PvXk+5o*WkyBBT!TO7M1 at OQF6^*O+MIqB+43DYGWd9h({0tT?PHP$(Wsv_X6-drsjl!gCIp#HN9ebb$Ye$Xnr=2=# z`^M;CBRbkBV6Yq8vAwlj?YE7mI!j;jX$wiTXA6#f{G-b`IWZzBV2 zjiJ(t!ltgM+;g?jq4!VcfeyY)){CWp=>Xx>TUmyR0YyXW6-raAXK7QKvQ{T$~?2D_Bww`+52q2kSSPq~WXH#tG~WFt{mgT^NY|<3^))Zcb#1D#?7EgKDa at yB0EeOj(ztdMy at h|nea$wAqS%IoIV!M= zJjw0D<2D+w{U&l?xY+VBYxlh)nTV9xnaKuY`d(a+z>u$UK z&D&vugLp3I?a`z6Vpwg<6XO-35*3u}Y0W*rL`N9PqHqX?tz%3GF}vvQt-BG1FhUH_ z(cxJXSx|mJ!a*1faIp0oBWXsbghmOiFJCwTB*CK>z^2 zo40ON&K<))8PAJR*`ahIa4ZraVA2Gp?9s60_TYyy)4ON`}gJitDKmC_fvN~gZ< z9xdi1Y<)&?&zsTiJ9qA;)1xOMz}nMS{x{olqC&SRFzs27GP$e?2&>C00frkb)^FoMOr?K-N$<2LrR84a?;Rf4YOgQyd|~avFrRX&%qaO9PP{gPy?ly` zLhHa{FtMZ?IdvE*@7GYO;Yf>WE`-KQ;l~?1mK0%PfL&#Hul7~7CY5$FuITPNAwz?T zj6_*!XWvUR1}?NNC`@}U^RhAMMkm_?Fz24vJotD<~uHg%R;~RQJ zy~tnX(59feFKk{DYjS#b?KpIv_eU=q2I=YIWFQLNNkv`D!H7D7kYN^V0Z^{jV9 z=ZcnD9>)xOqbz+#i#XEJx86J8S3PW%1_m}4i&mv8^0)LGw6RPXCkS{pu|xeG?(tsb z%+Fg=444^epMLsr)pzaYYE6njpJ&gW)J)5fkj$E*MjXC)`Xm7EqSl?Y%ZzeA{p9nq zDd<3k7UI}*{$9O!+1~&5w_?=0E*Q|-`_-cWjXFoa7-2&5^ls at M*9ZM#m{tDajpzW+ z&_C?jQRt+sDK?p&4Ij!A8=pzNQWD3#wtBtji|%;?W1e`?F{3EF1_z+nUnzV z{9JaNbIB2zNISLFQBnT%uO6ee(E`unEnV*KuOCIryu&A;Rr!-SINhaBavhHh`rYB3 ziuF#vef=1`XYh#^s_dL>9H6aT_1-RI_368|4rnm=-Sd^(oA;m-@>Dxg7r$G^XJ+av zXYw%m#birZtAKa#m-z~#Z%zZ|-?XK<;kLB8(hj1xpFZ2o_Z#gW_|t!~-JBh3TQ8oL zeozNM(!Rz+|Ci{`$@#JN>;K^2+pc1C509+_)Y^+LUI#Qy2eib?%1eey at LOA1o@n>q zyV<61jW-G8V^?Dp=HA;6=m@}JG+j57=k!b-70-O4j68x?&P$lMLZ+$6z9?9fR7g=E z$liz- at dVC}x)KxKX2iw=OqW*{+FU#_K*da#^76-`7()xnyoB)gNjvUOr1bciQ}d9F at re zgl3<~XJPah8xvK4gU4SytGZjn)Wj4_qYd)PL`KvZ7_iuIPXGljI>4ZihSPr{Z1N*d z;?WM>5Unz--j~EV`Z7w_^Z1U_&+>41%i7l?bAUy}gTU z4i49=-Dx(t1>hLxUhnW)mc|T*JJf6mu+)8sP-Nb3T=7XAy6M0as;U at izHYGpmc+CTs=_8Ka zfWOfl-5j0fZ|WKPfo{{+=b=YMnxf}in-~rFV$sn)hrcZ!gB}iRdDdTfR&QJN!0ddV zz5^02wXO7VW05lncyhTTjuLEIm2M z4F~#e-MZCQP1uT~`GX()Aoq6rFt8Ky0FPovObnTiUM?^ZzIpNbRrU2m?g4t)rQNN* z(@RA%a~Ee?`i)Vd+xPCa?ftzQ1Xfq?5z#Fg$4GbZ-*qP)f#&LOl)=ssRuURB zi37cI9z|E4r)|Y&Zz6~KDRi{`FD{Ry`ADyK=j%AM*IBb>-OeG^yJiR z0LE3EZtE}te{`z!pzg?pX-X%l6MFi6z~l7iAaZH=R((B3Dy^4Te9uVvM=z^ihgNaCU z5z|L^mug}Xd+_=5*X{Ys?Q&A?u8g*C++J+UQ{j>DEIogEIox)`!^8jVx0XI=<8Rx- zt%bIKwwH$<=LJJySO6#t7qIc>>MWgl)^6sW_rLR~%`Q*1gUiDR+S|4|z0fWK5;tFN z)hgn<>s#h_w)uD(_NRRlW|Nn-Ft^Z_=9kMGsSWvSfypSU({#X9z+ynf{_a7|>a)v( zAuvGXFaXIc*rk=l%K6&b+6d}B3Sj7A(y0JF6E;ML7?WGKZEyrmoR$)#sJj-GqY8NsiR^-7ejv`{#%{#Hgz+M zd2*f8*4KWkaw0s||C^kcu3>ZeGVElnx}T!nUdsImMTKxrk7{^fa(uQt(*4|TZ^4Q@ zMOmSjFtEun65Yqs`Lh9kvB at cWFN)|W9>Q#!yQOp+su|E4VJu>Ved47bv z`Yr%X-YSOz9e^A3LBrfoG_9Gdp{rqi&jHy^YDT}f7eMw|`9tBYnn9WVuVKx+Q+vnK zm*o_vFYva{4*0bXGf_x>i&6`7QB>tcQ)1eX`ZB;@eda%mmS-t_YFDH&t at DyHXoh|q zscsnpd5VTU(20YiLcZtMF98EEWXP|S<>2|8>Q;_~isr20o&t>do at bS!uDPk7btRuF z>&!iV_uk5rOZ$A*5O{&g{GMm3e6+870$!tgC|p0&O0lgKlDss97?-$vF$ z0TGA6B$r$a4 at 4d#$0j&T&ls|ttR at x!t~Q59^hfB#Sem%yQHB<18$|B3320={=@?Oe zhxWKvF0i4)qv)85wns;~UObb#`mlQ(nEcj_A>%H>-km7M7oiN{%X_XF?Ww5TzDftm z^M*!ir=V1 at B35zWi;waOs|`p`sgxw3F^+(4210Ay$FvRDe)rw?bX(OGp8?PZwgHRI zD at QbSHreb>?8e$>zW*~xqSt&iv; zvXon5zdE3+q1YVcldaHqRbD9%XMW4Qt~raZT}zqtu`--=t@{hO)wAB_>u zDfm3Uhlf=eHjthm+FMRcoc25tUJVbVkLIIV9zD2Ok#QRgJbtzlK5T7jvPEyiPEWjT z%S(%u&a at YscNRW8PMO31{IA{oU}K7RgLh%J|F zyuI`8o%Z0-op$o}q-`GT#;C at txfpJbfB8iK!mBdU8nR>t*1~*94=_YgrGaM=G{Z^T z+k5Thi;cDu0TZ>6^G1;5SRput?wOUfr8YHfJ)wh&M)6wr4z|O%+hM}D`E9x)8uG3% znS^WGcioO4Q+{TOy?(u3ii&p!(3DpkVh)tJPB!VFay3He+6E|0Zy`{uLVzeho)5t3 zSxh32NV#&}P7cpXIBo>cj0RxLX9#Ck z>|Mz_83S7(8M=}$N!ZbgK{K=nG(|*9u>rMa4%e*9is+yb4Z8UFAZK{RU&2sA8UhBl>#uK?N_#!X!=1D=6bOUqO)O%!YG>H-K) z&R68xBHMuK)!P7Q5#<=p{gkt_dzAAad}y|`-B at DyPGVf(y8?{_pF&gr;Rul7J-ZU5 z9cdf|VmMk(sad9GJX75A9__YJIf(h*^HwMp5o{4mid19?PzL4!%?NTC%qX?|&3NOF zJ~1F5GQY at u5;>EkEqV^a$o0Zc`U;?C-1NOXK1?ca#!N^N3=Wm0V0xq`WkyM-cj}%> zjE~_c(44weohhW$p`vgptJHj|s6TyoUn#N3Q2lUyQqVO4MtcTEAZPDS{S_LACp}-$ z*lWd476C!;!GB+#;UV|PZISO);30w|5|)Qj&#tT~NoB~d%9T{KD`4*|!-VhhHyxpV zc&os3bd&n^1G8!)%J`Gw?WgY!V4)%@p}mNj;Y7xhvF at uBNbO*Bdt|&v2)oR662<9D z|Hyr{eV|nqcEW>i&xhMloJfF%6Kv_F<9xRxgI#1ylGxeYshqas15PHo=D$>*@scYo z+6^RVR`FNl3Wynx8~`k(6CyM6{rbOx&h=^Ossewt_;H_X;kzA+=smo(ACRYw03w}j zy*Mcw7IGRrIXot*)aR`U#!MoQXU1Q{P4n$d)_amvK_3 zZUp-$Kq}pa9vSEu(GkO+Ks>-p$J2|oY*xOjPv0S=ul_I};CK7xtpb1Z`7WL2_4Ai) zePgQ~M7LYkYI%Ms?>UX(HK}L1O^r#HnF#S2-{|dtzZ;SLSFbkO=Z~L7_fMrBSMBxs zRsi5+d;0Wc?ALts$XvS3ny#X1#{sX=KftrP;?0UtI_WR7lRK4#w{bgqvX(-b(a{;)v)Z0(j1X#zGT;zdQn`vL#wz9k$0BKfe z_%eOH7kbJo8w&4^O-d&kss7f#W^SV^9aRy)bUDWZaO?e;Q(MB9VT(HSNw*=RUplIl z>sWFuwL`n{BKf#}==vDQ9jA5xjJiGPV6EgayrUldxPBtP{n4Y}&;e#Xm6dzCqgdLl z^gB>VM>+;8VaQci$G_Xr%lPV0SEoZ6RmZO#U;kZ|%fZce{MvUaQX}tFt|)7+lnv?n ziv6!&(w>QczpzLfiOyYJxDnhn)3(FAKmTl}?dP$z`H29&v?0aK&q)24XxqVATYJGm zCQ}7F4F7Y#y7<9+-+H&*e&=pmT3u-0{m!@BgS&U)xmiZ!xUJn>ZtuPOpxwE<(yR%% z8xZ!R4}aP|dGaI#i-L{U`iq}_9FOQUp45E1wYpYG^l?eTjK{T3+s@&B+lT_&r#LES zWu(o{%-6b1(^E5T^;VGU%uMC%+5Ft3j at kLyFu7sBiIk#oJ2$?W1>yM6y|TeL}f zcxQ8Cz0J?fwTBPx7s92)2`XdYU6dyU z;a?f=2r}cW9m3Dr%nPS<8CvxQ6y~BltRil0tXpfh^Pbf*c3T^pdB=Y07GZzOEA3uA zKrmo#@9CT at BEf@U1T~uQ^=OxKH0QsPqsD#^5T`RukVzhwTyu%p-9W&5%3*jp8lZ7MKI1{ zXaV9Ak?0tLqZnjHhJX at Ad_#n(z9FlE^F4UxeM(hqXJ-+u<0i0NDIq at 5|pcyYbpNz!L;oM6{E( z21~2YO$4aua{7|Oz1Aw>?GBtYqoN-aao%}3P{`?zQt0|J*Gtjnx=#kF*E4*a-)VXM zToGNMFTZ)lwd()+4)6jhX?p+wMa0=Lq`_FIBOWkoPuRi0^U*5KG^o7hp%`@jIOZ;Q70NNPc%#q%WuUaiWau04pMxd0namd`R=z z3D}!yw{PF631*A)i?w2dNm=^TR;Bo2cYC)zF$4C+tCW#Jgn*B6>wIA3uE_JGM|xxwTnuL@#Y`?X}t2g#vFTNh;f9Kf1`m?~#fy9lnaw zNd8jy?!!bTB6Ip0KLU470L{t~m#NFr>T0tx0sA&i9|X8<1{|*M?6f!dD*9n_eLJ>r zBV`1Phj-23-3tf+TyNjK8xVTX4)gq8K;wSS!#DsUi#JkMx*%XxU?zN#FExxyUPrHqv(XE~txZphzvN6F at O zc4%uq zeRpWTKmX|O{d at hMe`#s4me#xtf%H?&AWqp<9pU(ES1qNNyEr;@*6eI_#8`k|K3A7! zV-s!!6YR!8d)pRfZ?p#wAH|mKw3Ssmgp34#^`(4vj?dec`4+K5!~gPs at z*|BSXroi z7sS#z&z?SRo3CF6phZCi>`zQa0MqG}dzV5W)wR3#+Pm+5yM6le&)U|jqY6u|EUmV? zcW$@2`MJu`J2;JpTbZ&q+VtFfTfTX--MW3ht*op?h-Rx{lNMf{nXV|DDa at 7gbb8pP z%viZRX$MxdK0B&KnU_+}iGah&naKbr!=N_;{$?wOjDj)2V?DqRDAQn`r(r-!6i?W= z8pr^02>MW69=+H?!d$0T+#+-q$Q%6NK^0%qt zlqj!Q6;A#cXwQV$Q z?Vixo)Lfg5^I^#QMtDRYQMinoh)3nK=K1H(UX-_NDH|scY9aE;iJ3M%F&6_X1t3Q2 z;4EPID2Bv7qlayG>o~%Alk?(-r4b+0s@QUHCi`uG7|DjzUz70{s zH-^4MkH{^at)*uu#LymSDo{mJx!>U>XP1attfR$q`tV=1WBm6i75)r;tt^;%Yo&3N+U zY1=<~`g#Yeskb%o04^Zc#Il;Cc1<&> zKY%gVBC2W$E78N(0f2zqc+;yGN-Dl|wOniNR)hT`RpBDk_Wq)`zK z8L&T#Y;W$J2kf7<;s517 at a_j&+gt7F%a?6yYpcC}x!(4-w%c5o_2y~-(xk-nR675a zCy?6C+PZ9FHiq_~ZNJE=p63k3^4e=*OA- zJdR-=ZwvE=DFTKtZJy`#9;Gh;Z2fg8$1>&IyL+cSd~i1&vD~q~`~kyQpE(JZD2Z}9 z-vlsgYa9&Zz2P(OA0EzUfTtlf5ln!wgt}-IHVNmOv{Jc=QH)dJx1Qq|p$V<55hnNV zI6z5s%`omDS95f9>N*c|KJ*EAqzrT7UG&k%xsq#fAYzo%Q&h*EpZb!QE=oc&Mey)Y z0nUT-0(&P%mjQ6`qBf2K*yL};gWfp__zM8c--m~}?^x8*Y-Gb$saAmNn~NLy4lJ4t z4$zAVav1V?CXy5W3XqgrD%YzP#SL)4(;}eqMnwoMiViRy#K3Q??*sq`pr-wzkL?Y| zhcW3x;ct3i*~AKC~JSDP5A%_ zU1O-L^YmN(p>TnLoQ9*(*57ug;HV5Ddq9c)L~kcRYxwbv at A)lU92V;D4;KZbhk5dM zkDTUt4pQD$Z%n%=NPnx3lgztP&uNP?s$L}_sXJavUAy+pX#zwqpXmAx$gAiuupYW| zf)DrQi`uQk;$|R|SoYEHb39uD%=B)vbW_aiGP09vzE$VHxgtIe4s%8(% zxntPKIsnZ0VjhY=RMoKjEee94rBDELW~`5d?xSgZfi5l0cc+nV5v8l}Qf>d3_u9>7 zDE&qw$VbEP@@hF$_^qdhbkO8ebV@%1So(KvCc0u`nrP=)b?)*+hAh>^(Uyy3Hx|Da zh>a{;5cw?nad&U8K)OZuO{iN4_yYjPteKhjnDpe`qFY8aPEtSR^ktaR?s8V8L(|$>ZQ~r`@@Kr&$i>#m39{|B<)RiF(gbz!>l-U+?j=r?F>;wcva$KNY(nFv37T z&2Q+Ciih23X0nxbr0+P%c$oeNkQ~}1=pyQ8*9<@t;EW|H8zo12(o!vPXypgWXpUwtbigq-ft!c%Xn}cvoF-gjRNwI0C;P^Xg5 at 8LI<|q0A z&&58Wmx}<-;5qC%$nR$71QpmCyim;JCgop)B0x;r2cWC;Ovyv%c{g{*Clt%OfYG|g z!PYqIt&Z#aJ)3(KS)aKYGMD at m@KfLLg>!HWK-wTp;qP{+hof|44)=S+*M6-7&aeOO z&_-va)zrQHe(6)bYes%a`6A&~iU{xLvdG@}$W at yP>#wcO*Tm3T%P|g>(LX%QsngF= zo#=k^AGFW%WLI$%pn$9JHSIe5&wY3PgWZF^-ku0pOn6ZGd|ouuUdQ8+TW1*5lyQok zah;r;Yp-7KwZHk-f3L01ueAB8xmqOp)$>HG1wU18cd>t zJd1-g at aI4Lc{|!Wj56#)fmi9r3f;#DilP`!ofzvwq!_36hfRmndRY{1m{ne34Lg+g z%j-A1CK1{2l^h27G<~-dz=#K=^LV}#B(}oTouP!LMb-edDA?55bBv*3Q}}%E_FfSNz47)-r7&SMF|0)fc2Ec=sV0R z!&HojcY2=$*U1UdPQsYa*@-r5eXAHJc^=x=4Z7i$i`u1xQk)F)n9ZHiVhHSjXzye+&^(Jy8y>RY=Ztj{MMDeRMkS}-`j7%+EP21jF|O;c zHdCLTJ31KBI+Ya9aEEUVbNH;Gq3RnTD}0+W(VJ2=6d_VXAvs6V$#2d at gw@G#R)AQP zYXQg5blS{nAi(=_$~%k+3Sf(n1*~1YxlzESCe~EMDW))W2YA%qy|wW8?0iK|!U{E< z0x+8-R8gh0eSFv+$N+AHQ=3JJhR4IdvsGr%Sbky*xrpIGcpmVZ9F4P8;MAh&hiz~B zpgzxI&i!B2c4M4}7XsqBh=DJQ|)7S at Ju;RH_qO*+4v8XdWf`0m|hJsT^@&v#bd8j<(G=KxgaE4U5r#pq(0 at xTL z*C&*Irzc8^3IWHWW at HYGc#yl+bx(B4wbQFj zHE}B-h0}L8djIy_+tFjQq49D1_~Vb;XP-ST2LWiK&kUz>WUDEu7lVeEM1AE9E-jg~ zK{rPik!{22(bx30p>Sy&fMlo>J!3M)RPmFu7SIo$k;93|xoD at HxLQvw_GM`~wkZ8E z7CmW3=Bw8)DssIT8wJ2wzH2|u+Wv9+J$-8;j8QGab_Z$0`1DkWA0E2Sv0h$TN!b_e z3+Yo)UiN3VfBZ$1g8bOZeU45YkF7H*;%{w7S5hX57*>icjT4f0p3}7<%;wg1^nj7H zx!UZ1V;cZOhuFx_Kn|k`U$3^dYVl at EyvUIsOS?nR8pf{rhc}MXe$l#$UgmG9K+-Kb zFGU~34oFR?8U5*FIk`ZdXf=-HVC!>zm9OnEWsasDwM1DMPt<=e4ghDz^Yj3|aN-ws z-gQTJglL(Zx#S-G=IA3zmT9 at Z@a0j$^5xOX?SQdl!`~@?002dmwevEz%6E0ZtGzCq zwZF6cKYH|X`#ESw{>%648*&VOcMguhcL2~;?ZczJ?I|Gqtlb97a#y=J6{KkG=IUIV zn~u$%3Py at kg6ECoaFndgXbZk*#rS=pYuY$9V{++PrQ3;QZ%2-Mbh=L<8v5{```*=A z81F0>(rxi1`KT(;LCnRC7?&t+J30*C7;kIK_rknm?GJwXQH;%DyFItuE}{(IyZ^8~ z`{IizlB2eIGmN6lW6ouPmN3qV_{=F?9ee-s5a+nHHA!&I(&r*c+Tma0y`S}|v_N0=#fj17!pOa0Q8h*NHg zqDlQIO-f&#dwUrev;lOZnDXg)*A2hsRrNkc2@%7T!?k)}?(-blyT(vkM#oU>$PM(3 zA`^*-A?*D}D8qYEE_(s_U04W47f|m25D2K at 3(DEwuBVyxj(!4hgg!O8{`~4BbbVMt z9X)TmzfMO<@I8u)M~Cv8-|HPfMA~Ecuat at 5`0yv*19})l%f)zs?9*u(7Wb>qVA&95xZk>mhRo260TN-hj7e?X7&)@H zwRIG0_&4pfoRDQr941@!<#$fnY>buNPw=@qX=|;gmcG#r-|>RFdB0xv{-GGnuODQ# z_$;TR&uld0WY6I^1TpC7ZHT%6_QayQ>Yd6)H*)K6%`8bvbC5+70 at M%hF({T68XCE1 zld~dgL+$1Is{)rRE30MHH at 0?b84}wwc3$r7-q_jmi+Jn!DycWzc2EX~BBBBwyHA-jsa#TmsH+Bi7y zp~Lfi6re9O?O6cH{nL at 3iS)rlu9riWDp>Z3;V`kwy$p#m)Vqd{^Bnpc(HKh|4n@;* zpY}S?2;B#URz1-LeLSno^NZ8cG1_En#ri$Z=ntt1)=d at RRnP9wk5v@H-+1-IkA6|_ zu)ZCzXni(-Q=Lu9x_MJx^Gr?R1IoM?fGM4ozrD}dj~lfF7JwZ!+;w;Q*67Ga0FPy0 zObq$vd*5j9JbGB8TzlJF*Tc~PXi-~qu9KrnA1nLG(=Xbi+^^0rUp}v4%a^a7w_pD9 zm%08& z(Sx=UTX=f3*CxqZc*%Re_~J=hyK}c~$FcjtkAD_^UkHes>|3ryb{EZJURW-fe6jwz zt?zBOi5WXft+nkJ>$RJS(IwHrD2z5WJ)1kjTak&CwbcTsfUT`54+0iPM~BM(;%QC` z+2T0RKO(2KK4R)`shYkweUAdu2O?0wX>Jd{;iqa|@$Q#>7n&Qu6ND(E(lz??qQjl( z2lDK!{Qv8t+mv1p0Mzg5s$2(|AINRj)$D9fvGJSsdC%!N{VkU?vQ at Mb2J67I(nzkK zcOK_nIez4PZOI7%%DxrOhp(M!n~Aq6h{7uo_zkvix at QwJsg1(>NKn+ z;$X5zUw03Kb>tty#t1Qd%0(~{LF+&fSW&*U)jR1}tGb6V(g6~ODF at 07Ju2z;)D~t@ zz*7NU at t(izu#}A{$}ol583V%NVC)<{ftdpCIftJH*j1u)dCuJ{u^95ywBfSDc&!0R z>HHVZU+1 at xHn%We_s-761CLOA@%hUtyA~$CHV|gkD#uoC`!S#tzV=hL)>9-z>gW2z z^mr*q0Nf5PCLipkALPKOW11BKmy{i#9Uw6qq1E=jRLMz%UJhVqeDzlsv|!-Tw+vm% z(Vw2{jNPN7?tS%gE1-p;>kQwA7(*u!i#)F%m0$I}7BqhoChsHn0ALAETBKZFDH?l^ zsAYPmlo$-z%L*^l_s$b?Pm5lutM_>?08Hnoi+YhH_xK&k5m%nS8<+54zwRn-ON?$QKlT$rMM<(LglAo?f)zMIz=lsrCSWAtpI at G80L+(m at xAu1q4Md>;7&0Oau*3*~NuwdkcWDqYyn~66RaTBYlN8=-OICH?nCBy5jfnwh5T% z3$$9mTmAJvP&kr)FB_BgjA?7?zL)mM#TLy3E;)`yvyS3aOk4*Gw3qzg5qvnvO&@?i z*VGrCq{4)CBKLNa5r`l!sameN$Gz at T-2ng`1SvWzfz zzL(c!(DQ!t>H6U4@=xD>1rqzUeyZ2t9Nf!3_}ekKu1NKQ6QtoddY${T4)t)@F1CU= z(HUdu8>4Ug0qkrDuxCp?%iq~1R-4&Pd8J5pm7*$bq9o`mo8eumL=O%B^M7LH157l( zve at p%`!SpL=B?G5DK$Mm*+$c;i#D&1Lf}Du_VE|By7_1XXJdV%A~#oQ(Ti8FqI?f) zrtre*e7kf1R-0LvZY#Hz+s)gzYSGKZ0663Jrx7r-cVE7+wp=>Rr>urp2%E2mRKSh*eqM>N8a1yC6lsB6GxA4)nbMd>um=6&O1!+B;t^~0RG z?{K@#nD`Qp6$lpQ7aFI?9>+5 at RA?xNO|jjO{3OFm;f5H6qug)zl5Q{oU-we<>KdLX zMltg>CM|8B&*zP*+eHkfs1!xawf4{7W-Q{Ynq?Y;W>^Jqz{s`iMhTFJAp!40dllwq z?BuWIU53tT!i00rk{V_N%Hd(4<8597LYVYM$`IM*?*Kpqh;(#CpUzAZB9Pbrf>YA2 z2yfaRSqaT!91Vqp9 at e1}#T*Nr4N16%E)-d$V9-zh8_rNxT}WF1NaU1 at q0bG=Xzx{& zvzc(-UPJB?_AcCM2jz+uxy0r{uw;lEF|AgKb+W;0jpgQBwLMw!1rhn9mIIr_Y|JUqy25kNu(z zX6J9m(X&^ye%Jr<8fzOc;eqt8;oClYJ_;?@El6HVrCh(${nqt- at 7;H+pYi1Fn|Ir< ze)oHEG?&}k3$t=(Q-{=N+xADIa%O6?nE`GS)1j`uzp7b~CJ}T_%6sVp=qNlkZiad8 zH}uccngoI;XX3PqU~Fwa4Zzq*Jwu;2C+T-(gom zcwu-A&lpNF8z2ArTf50yEqkKPQRFolCj4669KO1Y-Zgmv5GV7sRa!veQ1l7eN$;0| ztF(grE!VB&DF2rpV87SZo41Q5fEPW5f8^bwIUR<#4aK4v-u64AhEg0?4l$zzAkYb9 z$^G(n0Y5Wd$v>xttuw21JN+>d{ViWmuIWUafBj>)&j^t|kQ+J?DRIZ`)3PYQKl#~oZ^!o?lyU5K^zzw|$i22)O zlgTOHt)+JqCwn1)LQY>Q9v$@J#a1mHwX}3Av>a)#UTuXO(U;-<8iFRbseMGW0tl&S zLbOb+bVf`m7WtGs)>E6pv?g+m1Ey| zHpTPDZVz8|JBHurMEx(Q(GPUm4I2RTT-;O>zIt@*OQ&Ldmj|~FmZq&19%DnF1%6Ct at 3RLDM@+GzBM(oaH zoYcAL=%Igd>F5KDKfkmXhM!GkuByX@`QO~QYI`RE0|7^y>szG+Up;r#FDTi-2% zMhQN6_%MR86QS9U?v4=0gZSomzR at NE&gPcps}T_RaXgR{3GNYqzU;_Vo1I)pxdBd5 zO!9N&f?3p<*Gl3EeEKAx-%&~x8TLi@($GkU!)V+3L^eB_`hG*oQ8HOf6-CGa% zHR&ca%$p+sLjmQt+5+GlTJvt?`atpOIvwz3{D1%WAiyu)VES$%9%K#ggwf^M7 at jOp zl;<$r0Hjd7J{d&{w$Ega2NB?>pF}DN4Fv%t6{Dx-<^AcqaIKku77Z`M8CvMGkzvEA zeW(oRWAsh};`}{}9mFI7Y5be}Q6w4%=o-5Ob8_5ABR|+xxTa%D-f6x1JQW70h zI|rU*Ke`gE^`TN;{hfPz^w1DG1AdX8 at C*z202A-R|GNU!cq~QTOjXsI4Q{ ztOPJK-%buh&C~DUKXfGXXzE>}fq+NxSL)pPKR_({Y7Bpbu6x@%(LMW-Ghp>1b?%_= z@#AOBezWp44L<__X0?W{h?zpkM>E0xj?Eg1FF zljyslleWA()$TvI-R|AJ*_M_U+QR%yEnaVpIeSWrmUXcYpQoKBns9bZbg)?StvJXW zQF_+WNBEF4C{;q<99OFqGdd zoPQWycb at vLrXHgCmb2+wVphIZ$}Q*OTK4K?{=>73=2<;YG| zu6R&Bp9P33q8DIZk*M$q-33+UEEC;2cl+lT48~TVs;_Nswl81Dl)>Gl8og!XR?1 at Du$;Pjh6f+ZpjJdH}Qx zG at h1AJ6MwJJT`!aF)2%)Vjnr`puj9&d3x$~n0J*Ncxxtni&uAJgHJ;j zONgk?^1_l%3lGHZ=3N)*mcf>n`dS)7Ple(jrA{fcCLZM(n%5%P`Y at aqJKh1TAzm|= z>9dnVK at 9e_+fPHr>PXI{3gx!Ybh3CC*u$&rDUKR|KL_3I9sqAJ5vFWaDxBi$8sPR7 z0K{MF-1Vf>QM%&#JNo+s^t6Y46-ibGUPlMc9rjjUFVp!)k1xxv-~0DLBn<{CnMhsf zufgwwPrtd(r)sd5BEITy9y+6G<$~tZj#T8kPsj@`LIV at 1&M!{d<_^d5O##NhruJs& zGJJ1>WQY?v5jBr$Dw%Ya?arynDdw7L5kf>-_x at w=%bx at aJy|hfKJ)vO@%ucEJG$|X|sKdm)Dk~ zi1K&9>HFV)x6Lok#lv2&x~#4)m9j5p3Zvjl$olST}gGcfW*DE-Q}xfT+U z2TWL76Q%Byzj8#&^dWFS`H3meoGONRb%Yz8+c|$VU{E`qoTR$|OQZ_|&_S;^T3ba?_4_Y2K2P zfdys^Elq?!YXVQ0q|a6a%uMO;iWi8>Wwi_K2Q<<&^sHJ}-GCEyujK-~Kjn#Rc?Ot8 zXG&VbJc~wV`Qt+l1fC>=j`@YT0JnR!guwKaHO%B+sY?gsUq)p`Yf}vd&gr*`n5BKr z&O2|LU1dzXvLn#!+i%DN94BHFTZ7oi_A0b6u*z z?OS&v!&7BkMXp2*W~S!ad*Aq00a(CyA)vyfqmzI>vc$UzLt$dUksd>7NayeE8e$x+<+enw00_BG z_7BxRBDxlUX2dG$krVA1WQGa|)|ZAtMRfeGY>_;KxI~}mN4n^=Xr-PPu at f&tuYkyk zv>oMMGJ at u3(W_=8j#s2YU97=rvJ&tIggkrkI^b=)EiA6J$$*LDfMY|uPo6y^h6UcX z(k>%S^2QefTmd3EYaD=@5Vx}%qqv{vXVSj#RqAV$#W1zD4%$oJeGcQ at GdjiO4$)i-Ka2c{@aRLq12cmG*^|@@ZLU&o<*P;412%vz zI^h#-t%zLeNy{DOJ}Cm#j{${7q@=6Z|Cr9umy_YQ#ijY!(VZ}Fmj!jN8KwCS*m}Mu zc!cNKLG1^mMK%3xXtH*s;ZTHijF at oRDG1cU zeDv+|)1BkN?}MXkLFtta#sFCnU(cpi?IgU}M}62=BS(?P=nE0~6q)-&uTg;;!JT}c z2*uK at TH+_VuY$&*pNJn|*liWv5Stuc;H)FVKz6H&1nMe%AN at D{Fa3S*d|>+U`uawD zwf?F+>H{9fPWPs6gxM(nxyku9Ju=nSpS)@Z8=Gx)aWzWTETS-b0L}XP>vZ0D0Tuwt z at P}Et0GJt-mjM7b-ri_aV|gZ(70t7g2E_;%nB_VXKx0U8eqp9O>A8j30)+O9L})+; z at fco11QY_m_Uzen;Vc|s%QH-Ehz9fNB+I^3USzy>o;zdk?CFaFbi((G0bg at -1i|o_gmnqBeHO6s zenw+z+H`%!W3oWoty?$Sg9mr3!z^HJ7+sR89a%7y{1rJW2S;Xi?zO%BodDd8Tua}K z4aJK%X}9mJwtEk5M==>13r*9xI(YwJFYS-v0G2R7_>$153lL7xpa(EU8SFessNQWy+gn5Irk$AldN2qMf847oD4#{z7RamxMq##T at +w}xa&{!QLfzBL0#3SgRp!@quisue(N;M9icPh&xkvD^m4H{ z7CgzAf+#-AW1K}Pi;htKBIx9As-okg;j01t@mGPj at E&8`BORmF4`fQ79z7#BZ#Zq82|trdL@ zpzQ8OZ$*Dx#%Na5HuvDKyfJNw9H%{{R|8JUh(ycdRYPX#gLgeYALsVY-CJ!geJC$# zWo4~ zPli!_IhE>2cabO0XqS`%BO2}lVs2E_ygx%HoAkg&8O;J@*tpVFW!&lafI`l4>8u+y zp at Oa8*m+;=h!dSmuUHwu_2Tc)lZpbwtS=}J+bnXku0Q|cN$HuLy at UGBmd(yd0gAk( z{vvVOOAamrGL5RC3-EWA@=PFk9=g(7bc(iE9>yoxAm2SI7l&_tI-uH`vVhrH_`FBA z>}71T07J>$SqRlahlpW#>ZGmZ8PRKU$!RU##b at a+ylGh2fo5dOJL`M?&VPKJYCrKp zZvctB(ZRMjV;&03U*~Wy8#T~l>80Eg2QK_iPaA5kU{ju> ze;uAL9j-z->b}3 at nxpf72Y`U2 at +-=i!)=3m`?LMKlRoi`=j(eu$>eyh8 at ZYqA8PYc zqitbosLjSCPmf=F}XQ~Zr zR_|1wd=G0zAH|mb3%`2%gHq at rmYG-9jgtVX3>|3Nuw54}k1yLV{_tmQ`}sz at y>zS1 z=9*QfXH(O|L!NwuBt_r5d$)c2{rB3P)y1~5FyAgB>=PnNZ)2pdqC8_X47Z&HtU;$3 z(k#P;cpHn$a^GTD#>0FQQNmHqzx?doak z?Pttj0B9DsK0ZBaO973Pr`$bW>vRNsb#1L?$Sp1|)Dk&{JoL}b&UQOKJIOthMX&e1 zald`|@sHd5;&d4KO#u4~UEAJy_kQiDA~}6#X0i;QHN`Fh0>X2tTlZQj0tr-L5NHCM z_>#}JZ+IrapdJo2Z)-UkJ8l?uv)cgrjfF?@wqnqJc3?r_ z0>_pG5r+0kOp8?sDYfgJPCJbZrSC=ltRXlOkZYFOL_mV at _jm+jG+N|_h(v+Eh(X%o zJr%`^V2Fs7@=6l{1j>-SmeA&RvehGvc at vL5r&@>z09W|54}s?1COT^N@>t50>q6;K z`gyvfEALYu$|fM*#1}NL%&P)2&itNF at 0N$fZ~&Ihu17-iA&M}v5gyE={wpdCXi3o( zXuMQwN+kxXlnd}vH|MwtPaPC*ynQQT0eGleUUK6s$~j;tUG&bQ+wJ~?TeV{R&D%@m zfE~r*c>Vfi(L at vtc&j|UfIM64!6w!nwD53`o>Hy><5Bo#QyWfoqMddEz+{C^;cz-b zxLU7M>d91|Nf7~z7e!P2#c;~=?H=-Fj}9t}r%Vr|pDfK{Cauu{L^63no~rsjefq2v zv>A+al?hQgJJn1vDX&H at ui8o!sbNb)uaq`L?UQk|<)n!%B5|T at 2LZRWk8jG7-*&Kj z(w;qDZ!ey0#GyP5Eh14 at V`)hGC^Rx+!C9q{Q+(QD=>I4NE~mYu!yea?WOU2UCq7N9izrmd|kM8DX7d?-%nWLsXEi~QXPZT7-zQW*ji zA}=%1KZ{Gz^D~B=h6TibZ z)ytRlS-S?skp@^qtpFK|6VETL1awY at pAMqOqK^ZT<`x!f{k$4xMXR)ZH#88H6J6Yl z^E;b+NaV}BUvz6ephM2u)8{Xv%gitih|6~oH#w1HJRMv4aDWz|TYZ~^~XSFOnz1_5}CL;?S^GqD8$U6nr at fGLs-NXhk+r)X#xAO}zjc#wwzq|qs9 zKN~^#1ub+qupt;y_B`}c*Icao=zRwrJ8fB!*d2hxtW;?)fSHLgfNSL_hR!v-7w)?9q!CAoq zaZZ;);}D<0YHuSWX=L=}c=|jxrLa-A1)Q6zeRNHYMCB2VJ$ef)h{)FJBWN9+kw&-S zfA$;8A0VD30Sv8NMG at 4l1Lzw?E)k`@LHoQpwm`i zm**i_j5mXO8X#hJ>%7 at EH`hve8NOktRGNVk!Uq6EDI{ixmhG*`N90+A36L>tZWy|9 zJkm}P3_FdSt1+)+_ z_^tQfZ+8Q(AHDOaChDLkAo<Y7N+$POdPU^I z&^CeKg)x?l8;~t$gR-)GjP(`)MnfG0r4rYpoa7SihL(H#0kEO{i&s1CF!VO8B{FNz z%RXCC)agwnczOD zOT at b`dgP>o%J}Ez0!2CfR!bZ)a``D&({DXR;Pm1!{St>^dblktOtxFM7Q;KY+s!*G zk*DQ$=gw+=KX31ZpUfNulF%KH+zD?!d-0^bc=;my_0^Ihh}9RV%^9O5I#t7w6k_;9 z|DeNgNTM$Rg{km`2%a_>`jsQ3y>@-5oTj2)2Z^T_eM_+PWL;g0OahMHPxVQ1^T_d3`gMLz z{$l`n^xSG3^LHNJ3mBU(dakal)ojm;i_>;x#`c9xivU>6&McY&qaOFR8ZpXn$34#3D|2SAKIaliMHxgM$Oy0Mn0qSMn7&M^FwsUa!yKGoa!|vKPxGpkJO?p1nO&yFLrk->o=OXo!H;s?R z1c_Q4**Ix$!)N2+z1i^Abm+i0jgoCY`O(MW(ZlGai}d4CTVA#ahmn_y=;!sm^ilML zAcFT839D3@(QYT%RG2ZZi>@3ECRuDNQdPnq;{p`_op+W#kU)53R%!%};VMrgLL*Uk zF97NXKl)h!%YJ+J-ET$_-G~71R;~sxV6VZ8!}C-;oZIL#ivcR@=iz at 3!}U$w+rzrf->x&Vuq2urj zplabxdMS`1bTG>`{gm(WNP%#`7ZB$Vh#KI}(||i`H|nE!YZaNWpf{tvyT6&bZMVRv zHn%k1?mt{<_wOvXhxZoSt+m;Jq!e&N0dJ5=AYR#`697leHV+{gZ0oG)6ULU| zz7q!s$1$#!GqF2EG=G2~gB+j{896mE?c}^Bw>|yhS#7B{I~gMwKsO$+#i<1Z-$ZZ8 zO&$v`7f+_$+dJFU_lq%L3}=|UjFxEV-0WOAsqz3#L?IR;www}^2n-iXe-VKSiPMJ2 zU7TV-TFx1nT3KFhFP=ZIWPH)LgXmXLQ4?=~C$eu(>WW4NBv?e7QJe|A=4PhzOq|Gr zy~v2 at lv%iY?W0dV4zPbk#A?C+_ujpqw!g^tdko;IAMf35Mk72uM00oCcbCr at 9r ziPU31#%k*zj(C7nx}<1JM{jM5HrbMJDqwW04UJ5+odCVPINhh|e;|!h#kN?Gm{GKb zAKUsmc0^v;Oq>D>`irugWc2Xf!*Vd}M5O(|Z$u;@>7e%Cy%Ak34=|;Ly~2axiI6$^ zDzwcz$Sy~~EMJpM91C%jr=ouWDxmJf1dJ$IL%e{CoVdfZaei^J^pgn}MxVT2#0U5? z*`;Pv4!>#lq8C;|r`yrl%Kt!)hJ$S4kWCas{W(}15`fpj`4lco%JHa)Jt^lh zr?TIqT-)E7X$)6*m(dX5i2X9sq)zm6U#MQKq94+JV5LA at 1f^s+|9XyY2Y=lO7Dx%; zi);c~Xli(wL#@B*AUerA@^juv7E`ahd!ihmoAqupy*Y-!E9bNTVfgIJGyk~r-2waB z-}%kosaokY;JDJ$a;g84AMzij#^0ja3j#stOaF)GCdP-uKW4z6wBf6>wzfDEo{wG2 z{Zo;j$DcoLpMCbKqQ(Gt9!tMViCeDz1>|3wt5AzWrw!L{Mnf}w*-XG(wAy6!yLac? zg9kUuZXQSe-$sW{hR3GTufzY- at 4fp$H3+%W0nokS6QO$x3}X-rKHI9ws{NvG*1j_> zUrw6je~m*73X*bUs8z;F>Z4NuCehZImmu|=tN at l&8c^ePK&1~J-j9cPr}9_~rCNGM zg8Gks at Wb}(>C^V|#fu2hUV7AeI1!G#hccN7h?189>6<0SJE$E2R3fjsh+(vS+kT9; z2^kFOOaMUaaEKMf7GrDHvw8@<*Y->yU at BU`$o`QQUtC>Xtz}<$Mk1w{hX+uJoAHh- zQW#-D2O)Ej#M@~LkJ4h!H3?%h3>=0(e at kIq#7heeCL_$lS8XGn^t0zr1Gx9ohO^Li zw>^FKEQ)Hfee}y;wl6;aB1&z)M=;aLjHscMT2n04oSR%|GZXV^6lOO=YbJDEX-}R! zX`7oH>BkO^PXaR3HImxBs3;HyQNLJgj)EPH0++`#5oPuK*~UkR!FRxl(d7hargA77Uj11>rXd-_B>?Byshmw)s);Te{?gYL z44n$?j`F-*EW>7 zuMCA-KMoKUI+F-(>nQxlh;gVWMEB2#B-LKnaYmx-CZbeCu%!#U`^|3z_}y*GYfA+{ zr^3UR5%`nvx5ZxNTkXbqFq}Ozv5}&TLT^0IRL)3Up9Z`f6!zsVy!>CIhBj z6JevQr9*@WCCfEKH|-oKP<;?JP|7#m70Tz<&~!vDXy|LZI*H1nAQtWwy))$INu62I zyU+_*J&6@AB`$3Z*NJI at IK}=oWfd{wh%59hNP at VX6|9N!nROCdT1G at S=RL{L~Fyn+S#Ocd><+M^O>c|1V27alM(3&hwM(?0gQAz93w8$k>e;lk8ckm zpBx&IV|8So*@5DCd>6hJMO8`BOML*;(wV>?K$TlcCN2aSe92)Xz>xlBo+Zmgm%PtO zXBpYTbAl{%a~@;{i^H&efi|zqqjO#w2>mtp&JG{d=9#_(thxecIV!~ zP_g&>bZ=NEe_t0+ at 5?*9KhJ4P?z%3o+nXAGC=LP~^#w;Ix+ndttzBo(PhZ)ozuPhR z{qMX_{T%eom%ro>_5jHCD?r`Tc6vQvhW*3X;B?pW+)(@0H{S^#J&Im9Xq$0T9=-cc z`;}k)R!!DHwc*s8UVicNd3&|7UJlE6aMi-nY}*cBawh3(cu3Sws+79Wxls`n;bl*1 z^enW&mqt(o-iH6BKmOo>qWmnKp;o at vkV#eYyqHja+}okcAm(^v z5u}~10HSA4BRJb-B<|h5-M;g!Uuo~Y^DxSPs=%E4;wqEbF zy{)5~Re5N+m5rUY{$jnoe)YQ9EBVcN1U6*13H(JoJwVZ-&vTYENFSMKHhx* z|K{dFTVLM|$UKQh%%D-YUD!x1L&fbe?BM{n2uI|(n7y-pKU}X|I$9#1H7u6S7frSF z4-d at B?*s!#6H!7>(Hz;{1S1wohjF&HpGn!{OM|i=R%YD z(Ar|=m!U0(2w&>z8YWUs7y&p>1w*3%tMpMVIYrUuAB~C+Ed0zV8XKJo`-p&$Y0Gac zr at R2-1P<|K_&uLMgp-#qDp^B%sR#bUhpqvT?l(k- zTSZP&S{Z2is3KC)F(G3)9NNNw`wj?kcFE3G^dr5o9VgIMb?UOPu-sm)Z?@0kEHZR* zrJp{1UU{Z(!`H)+C6R=&@##36`|XpDKQG`e>L`MOH`U*Y3_$wZwDHyJ?dY5sqCCH~ zoBm0k?*+`!SCtzUe#@Wf^O33t8f!B>Hf4#G$d=(>DKrJ7Q-4l+a8DZx7#j*8mr^JCAP1$i;a=p?gQg+l!0VSg+bO?EL z0@&IJR9cvt80lME+tE+9DFoO}R-vj6kIhnEZaaHBspCn>UzhFU0`MmB2y)0_+=+v7 z99fM9sdWm at fxLW<1dJI9t>u}*@2Z`ehBZ52u*?r*j0b9XG<-aWh&!~G4mdu(jGhTk zO- at xb6Y!un$ruof-D|0_d`?78D(^2ZD6pM2>8~0AOM3-uD(^o$Yui^3bArz!Q)oxN z@?Ufwh#J04zW^@YQPDYc*1lZec$D7tyMMW-4tnbP1i~q3dOfdC|B-#UeE at ZIy_e>w zvLovQ0O+V$)p-{X_~o^H7AVX)_)aM*2S_b2nOgbX-*T1>(c_6h`TctOON9tm&T7Np zRIc+s>w7*2_Yc}m_tfRD{f{oRC^#pcoRj0>@Uh%K`v1L$i|rc^Zx@}VD6pv)abC`X ziH^hfho=Ya>8lsPIO)$xdSxgM+FaUUUBKA*ozq5587(Orswrg`Q%7h19mYRr4^B=F z!_(;l`YC!tkfT2TXTN&)1Bypw$IRv$k3y6b8-uX5br68D*Ct{RhZ*b8TW-VZ+ENXF zJzsy_J`cdSb^l%f)m-He8G{y)kU%OIiO>vk%zy`HZB$NqB0RJj0?0R!vtbxRZk7gM zzqO^+yfXxdLNfD@@ie=zayRna*4}Ojs(d)JhD8u>-(3sfTZppDyVGc&lDXwMgifUt zMAtt3_=^~lTzf0|SMvC1DK!f(8;TMdm&7lLes6y_VCq$bDX2M}Wdg<4=2kbxX%pZ< z at eybfHO#)-JKSrNvneM4bUfbmSb(9Wa%}M>ksYJlytP(9Qf`p-6y at yMy35*s-};sJ zOR-Th_uqL?xe~lT-aiHxPM3FBQL+dW5H)-aiU1Z~!8hVr$N^bhT`3R&PyzNP7v!@7bI1Y+ykkm?N#c?M__wr9{So=hkhGhuf7*y0HhCQ?U70_xO2ium$f{cunB;=in8 z>Q#{df7ktaKJ6L_Ekr&GjMm_WAr#)I=i)Jkk42dExm+mq9vQOz;CT3cx at Ku<|QrUNEs3*hg@^SrnSnA<;VpMUl|*WSdy zF%lBe&9D#1j4`)`o&4JEje~Lu4tGT{q7OFr>R#y~B3eKcI{Eu3fK-HWJMy`ib30BT z=fcYLW{VmE5do8TW1Y3rJbRgEtc_QIQG_J_L|*kYBP)+rbZjpAMLL7LT9MHyGCDgO zV*oVj-Nf8rMTD%%`9DpO1{#o$oYodk3{?O z8~}$C09Z>eXix1YocHdUm=#&qzXQWHh*(g#wcJwp*KYt}wJm&5bXM0GKoJ(#JlAJz z0$`EhiP6d%6d4Bg>@f>y15E0O$2n#4aYYEG=N4+okj;QQJ2F^0M2;Zv>dUx-z?%mkfO<#sq_$xs9bsP##k0Cz&YLZVFIBf^cT68!) zpK>FNjO)z8VtW;5!EmoUK~e7cIPB7P0H)IO0d?{d0VJSIWGfxnZj24L{iB1_AHbBS zW!7@!H1wi>^*6 z?$;NFZUK9#H2RQjpua=_MfO&rQ%wl64xj~j8JElGCiEZ+N9mK}oQB6|BD;Opjpz{| zHRW<@NAnDRHM3m(3IK*z06_VUcm%yflhIDQ=>`05i%LV8>ZYCe7yU)k0U=<=y(i&W z%1&f(DEF2Fn(r00PCudr5bd44 zIA3-*!vk_H-A_lG(1zy+_59B|-0K+p{{Qd3l#u^-P=9 at A{*&?$CpmgHuFo5<|zSMBkqPonFmYBP>cA3ttC_(`zEC_t}$Z`;e~TWxpyIC^lbqIhS~ z0aj~B6N*pL*rFY07roRIPLV4ws%r22E2Bu!Eii at q{XYEPe{cB%d1NCIrZ*wpZc04+ z{}J|IJ+@}qdZ0JM`&i-Kj_uM_)u}qBBtX!O1Obxn^at|i z^%X&i=QPWv*(SXAKJ-50imE_2cZTZp*U|CpREI&SmW-<__1%~0E zGFk*nmUtNTyXri5 at NxpRYzP4I%u*$g!8 zhuK^a$^Y>0|Gr&C=pCP2q(A#@d+V^B=U!qNM+Tn5)ujN%FWDx_yn`*CKtp;=sr40z(f*Xrw$0`fZ(ZrtHhfjMo*S7%z!4o-v;ebTepyAAO zzN`9Sp^Zwg2!kpM9 at v$8=$DWH48zd}eilRjFcyGV3CNsL8F{%E0AfI$zae2CQ#-5V zth8$|=L8T$N2a~!Q8g#5LS0=X8h)qQDKEkjKuG_ at eDcWrQtj#<-;H}06A at vXMNc^a zy!v}5n!6Ip08JQ^T3>d*AP6LexT7!vNfr9c{W&Ivk0mHf(OAm{?8+Jlj&7~C4UE8I zJziK^$oSd-{iK+9*Emoa!;+OLOFQF2=oiC(X?{M7(Gyr-NeJn;xTgKx%vS`JEX$j$ zH?a98LVyJm2vD=k+L)S}t&o7r0{4`w%eEh|zrA}Lp%KOsy0x2uZSwE)z}znMbywhy zAOrS!+omRFbC2uLpJa{EC=<(3NLH%t%6W9_HRq<|tZ_G98N1uekx>^;V0$%gO8sUb z(L=5xR;8KVV$RQ)v0j8oGp!M*0Ut*JkXf^lFj-H)Pb*8-LB`-D`~r`9jxb|cL{o&M zT^?lXpPrpnjM#BND20;S&A#ERTP(W9ksCI*2%w0vn{`UTlQj=)oJDb?iO)ti!<6yqfYj>BS_yih!+MfcN0&q{0Azy}jN20Q=J_oUDK}*El1ANaguKi-MV<5c at 7=-j;JiL9Y2 zGO%Pwy1Pg}Z*#v&_)0&m94_F!qvNtTQEs^G#S~IvWCa7VZ=xj4hv!*~ly%k&rCE%> z at uuW+d0FG)3+)afe$Q5N6`!4ThWALQQG!ccsL&nAf#IR*^W|VA!vxJ8nlQFJE0nnV z&}!9E3{S_~00%B+;2+rWow&NnD9>;BXvGlbdYRCao1nXz5990^msv|!S-+BIsvhLD zY}u~1qWb`|;-Uw_(CC_r6xLRNlAS~}o?nuUab=mW`MUxfQ5E_>8T?up)#5|kp7cZ^Y zz5MHdS~a=a(+5kw2X+ByU+GUCpJ$H+&`3xGdI1=q4S!ENawGFlyrS;g-Pl_8omcl& zwYu)n0YGC$7LYfY5<(=Or$Z}vmJkW|s?d^vrT-ED{P}M`Kd1k_^-ygH-I9GjosmC$ z;?>hvHF?GP*+Htjap~jQQpQ&4I=e5ObX7>kCTBDA!|m$c*1Q94YC7jcyE@*F987=K z7UrwM$>i{Od-LXfJ5L|PxK_eqJr+(gFy6^43AmjsOZN+eM!1A_g3eGGtjC_*2`G%S)l$l8+#Ff=;Y zUcY~n4vpp9JS|UT?O-XX$<6GrW&swJl@%c%i2#Wh z0|6*^qO(P?S**$cNEiVq{XIR|ix#umW~O^>;Ay0+8rK(uXNdVWT2ThmYzSySKR?Oh zJxhDUKz0J%UXbcpl?!eXu?`hL=;C->PpgT5(}oN<=2#>V;y{a-4HLgg_g4|5w~AhS z_H|f#wD-|4k%f%C`iS at Gci?gB&CCUK_llX-?iIP0ZTHSjPhT?20$wwl>np1UJD?_j zH;c;e_TnrJGUF_+L^09rF!>sf-2XCtzYG8Xf{#LY4^J3Lm+(`PCqh{m0IiAE$5Mk? z8Ee8$d?jKxmq3i*b!{vFmQm36a(U+6(Pv^7vvbPqoR=G#uU;7A?M(#z%g!gk*k$Pi z=r1!DTuc@=tDi;fb{4WyD#(C1I-9__NBfO zG|m-gWF|+(hTG2m=eD at qYp-6fmGC0C6_-uZ%Q|;(xD&d}bJ7+dvb639XciC5(asmF zn&n!`S%Any1cJi86%ZewJDUE@=3eC<3#j7SWfcXi)qp$;lc#LR94Bm9%q;S2uD|qE z+>;hiJOCwybiG*A#-ecS?;aH>7!N2EdnHkcwR1Xjc6fExM)GXn0mBqWBqk290;pI= zB`M5INphIYQ-;!ptAG%69i~)5s|-PTcGjS=$ah>r6o)FgQS?|kq#4U_dr?9%uMt2e z5u)c|%oI>U#nx;rDEd-c8|D2v?K(|+b~7HI_V(K6ytc9?xWe~}n)e44S$c+Sl)lqC;e%ub<2uRKKk7 at 76$c6#^13ogo+AIE9NXoUgr)}0$)w|0-!0N#~hrVTOi``rb zF9iSqC*GuurTNghb$D9=??4^}%9>~Kl0apx*H(&IFRWeGv?X580*y%j{p8+3t)ck-t(QcfVZ)_b-+xlcVt*TbEE5 at _Ih`I|L|w= zHTQk_x}Wju`185=eEy&L)b{FQ+FSo}4xlM!*%;yTbzS}|H at jjYQs}Jl>vlVOE$C^%^VTYHD(zDh6(*< z%kX`cVDJJjVfr6=KJ>qyeE9Y at 6FD}S#g>cr_U(7r?VYKR}+vA%tDKWMq;}lEDWk%1RJIQ!`3T5y7Fb zE0jz4OpVW^(E_!fs^gf0iDrV=aph0AgcWw~iqU2PWf5}s%v8qJX$haOkGk)~SOz-3 z$pB0va=z4lnqL4&28V at HVDiG^d;ve!J_88A?e8f%z1?;)Nd$}bqNVFQF5k<5;mZ;j z&S!NZNY(1G&DFzAG{Z2{)4d4ut>bpGd)98a)%H(YZ(^~mk$YRG?bG+W6?1iaE-o$1 zC5-y+I-~TMMR)tuc0Nb&eb{ODH^zUwZGYTpyE}(%>(gGqYc#g0`GD1xv|*_2ADpJ+ z6Jb!g8cpwhsGT0)wZkK&ac(P{_sM;;C@?0SArKI)m26RS4~T0sXAcj+NB+w9OwGRI z&M%OP<}(&JV-;^kfMIG}T)Ct^JBfD666bu04P&FvnUjHxGfRf7wTJfV)k;9{c-psL zjG}u5Zsta;WGsc@!=XWt(?7z$FL(-y=SNKeI6L>7K52t}sL@`~cGtqd+(03ukK<;&Qx3IQVkmShORl?8znqO7r* z8e at _FDtmA&3cy|FQDFK_=%Mc-17-k?!{f7dmw9`N&>RYn8P1vy(F81pZX2Z!l%XW_wX#88#>IoAlT7B_6S9Bwbc at Wc2TCaKg%=t;>X z1?mAr7Jhs~f4lAtWzYhH=9}VUJkdFNQKm&@0Q~Exsub1k z>#S}3QH#2xYRaWO1pqzR2p0(L;_2-NEPI~yjv- zzRFOPW!Tu6f8QGiGOt|yIj0Zi{;9)Q`K|x{kN-ARFRjas0Ko3hI^WqHNNwc9{hjc0 zBiKUAt^MMw_qo2c&j%;%`1-DmhEG2Ppno51v40uGE$iSSG<*@>b?FuQ+CRN$KW^{0 z&%qH#!Da_p^OMuTV~;niGi9+I0Io9#6QRNB$Sa<-ks$+-hGr}RZ_45>BUmWh(0 at I6 z|1CmR_G4~#zO=f#++1Ke%YqmknV0(qyFt%46{|oX%P?G?TWn`Xr at 3LTy;@t(fQG at 2 z4_6lNc%GzO#+BU%Ld=A&g@(8)P(BO8K#FS-^ll9(h^owiS~>##F@?*sFn|a+TjVHf zKuctKame~*{j$4&(k#sRgbb4 at O8}xHe6Pa at EyB*sjWD!@Y5yS%vKMBU*OJ1^>JfGK z#~=XBa=S^i*guY at B=gMz8ZL|CQiS8MX0 at J3q9XIguu%37Usfgn?bCM>{@9*y-0>XzoQrL79N5x*9X+(yQc`c z`-`@;Je${C7%aEcWtARLPfLw4+mjVz$?b#{(4+uM2|kz}WhAqi+jR`6f+4--364r^ z!j!{A?S{e1D@(94!qN_mhkHi+#oW?D?aTrIUIZLnUZ1sJ{LR;GZZU%V0niA*j-sT@ z1$VKsEz{{AurG#;g${5-quTJ}#}A~Pk3l1Q4cyQc~mCDE*O=Nwu z@?2#+)rx%mYCZS4Ytu_}5s(*6EE{1V9;qw^p$T(MW0pm}y%PqO^(HxGZqA&?wq|IiNWF)N)~ zccHL6KVWNjw_3NczFzeKx!x(AJ39weSlA8~<^Wg%4rJ&8x$4rfIvL&JrG2dhi*m1wb?BKqf063#?r%SYNr5#eU5O5Sb%j+njbTxyLB0OI0v= zEPZtz7x-9sCX3U_X+T at PuXw#2=83{0T;RjUPq`+1F6)4DA;yt)6rdJ224IK_2NKo& zy9i(zpPDWZ#eHkJ%}#~Z(-x(d(x?K`RXjfYLJ1S#OZKWco(`X1=uOqS;U=A)N_(@O zS67xwKm#q at RxEil<5_c|&*T05Dve=lGV8nQdSX`rMB*Ydq@`$yO=A&b4X*p(OL_Us z69Ujmm at s$Z;3T;KjK*3>ir;}_VBXxIv3g}JJV#u$iVkI2N;`ZuU#eS>pTHwp%0r8m zD9FmaDA^-%4A>x70KRfl<{q{!B}2$lvM at j7`pC+n2>g<3nAJ0VO<%+ia$%CC;vXph zles^OCc^`ZTF2))y7Sp@=&zrRD at lsSp?1W`*bnABZgjgl^`g*_i;}?5?s?{UBD at Ii zsSuBhFPbXlzksB1=vx50ap?oV7f4jJRGtoCE6=j-3Ore5`Rv+?LA0jQ?HUH{HL*F0 zr`Pdk at Ks~=a&!g>&+ZHNIVVio at PxSs*Q{z0z1eY4q)!b67!?^~7|y)pppsr}o3_e0x`Y~FnLD$46<`w-rJ z7djjZwz`U}Jh0B1?t`L*H3T!sB>6tr=r2gTFUttIPoSe0Ot= zDqGuFoo!!#{Z)Ilu^QT(XhZ+)sE-0{ZI5?$+U)=`H96bX*ES;DJK(pn zvYbWr6tM8r=9jW~<^|f@`*0+T+BR|mY-yB&ZwWxA{F|Dbl_hlmr_$CS_Yl!}wCtP9 zptDTAnsw`|>jlOo)#y)UEM8n!JSHIY{5Y6#0+IuIho{R at E0)cEyXybhrDQvrMAlvw z*h`~&ncIno*W=&Z00j=qodCO&eNGc!Oev4 z3ignDhq0#r;{HZ}{D8KyGi2^XlifzSxV*n=v$=WEXk$2v)I;WlrL2T^K*v+&cFa1>8YR5?)~+LkeKVf6Kx5sy z3Q$sje0+K=>ob5l&&SQmLXdTZxr?6>m&9Tt_SGB%filW^S(CFF&x6`Q~-^|{xNeb{?phJ;DDM?6^R()7rDf>+wa`c zDkjK+F3A$$CT`1kn?G^gu!Hdc^m4nBSH250N}s0kU6j2%*X32~G4Cu}-L`Nqww|ne z3IS!4?4z8RGnOXv!s>@N08juc#Yn6?*~$ArZsKo#GvC5ww4Xu&?8zEO8vvkqM(t!h zE&!7AfEn|`$N>y$i#me%LiH*C69Qug2{GoPN+sY-jYWw$xo^Mz)%*7T?dz4X2mJcr&^^fI4upC6uK$}C8U)fRtSEhQ- at +T{GvC7x3`1mz_)Cfgdc)_; zVOiws?7w`~k>^>9KlR1S^Ybdpah^p%=h*}RYm2||Ikbo;DYUFcD;iVAZZ>lA*T4EE zvYiE(XW+RlF3r~5^Qi3YUWC^LG%`R0(9KR|Y&;|VxwuN7BR?omJTzxn^BMZ^Im(7n z!uO&I=lQJCltFaEfOQt!K(|<3$=Z97*^0kc63GAU>-XOp5W(@X3a>+Ck^OBhnuP#O zLcdF`XTBb&@+_wjZkhFVe00*DLyXef)pzlAA3uC7mos6Fi7-18d~55g0YQlWvaPMHg!rcN z`+1wm^MJeMaSwr(zA53^8k)QaT+o5DU}lS)($e13V9p_Cf=Kh3!#n*M?r6 zZJsF(HT)sk0NT0PT({Cz*O%MT*wRU-SR<0WH5*3VlbXIPA`$-Ea=(4V! z%Pq*7Loj1zHoEUNy^ru_DGQCV5Kc|aX1sazh)JcW*;WrTUCCGi4Kq;&#RZ`)HQ5M7Zujp#Zx=J9*j)xB zNLX1~$eIa#SX;l$bJs(6<^Ifi9|15J?(^)y_T}4+_KPpxw#@*B zwX}6IG_ at 3f+zaimryc4AqUrenh{1rkDlb)A;SChPnF<3Q&ls?1VEk`hN3#xXv6xUc z(B$Faemguq$Q2o%v;!yu+zK$J-?e*DXpgW^Lh19z?b5JkqmU7Zodt>z2!l_bC^@!U zBB=2Z1jbS$Tb1QdA_#sa(Sl_Ouk*Qt8=e-zme4`a5CjA+AlOehAj at L0Ytiwd3?MU0XGAZafJ0NA)Z7t<@=_O|WpMpgt2 zku5AJhXEdTc>=;%$S79$gmI;aP-0jfDL+D%_;UK9g;%EH)FM~PT{@UK%sCZ5n(KaE zr%qeB-U)YaWt7Mq_`T-j<*0MKXH2rx9 at dN7`{tm+TqsbP%SdTsW?l(-&tVXtMGxj$+5P&IF;|mD$d*p32kBRVdK#@_k4pxXU1?v8Fg z{`~o$I?%|Uuc^-0U)>mWzX92Rs5OS?`pw^BmOH at t*N^@^`p@|JyBFF+)A#_zS$req zd1jhX#NNuSefaQWfL-{(dDhx%YE2%dHgR z#mJ`x-p|YzWl4Pa*<}|ZV#~)@Yf*NFt$7BB&}$~dT%gIah-Zz}?oL^Xc#HX zb94v0AIn6SzG{W)m#gh`Tg&{Pv4b*=&U97 z0iNs4w}qvpfWD<#2)zIfD1R#xb$)r0XLaCaVzR5#g^5_SWoZg=g$xR)j8BGn4g`<| zU_B0m at W%(+Wq{63gwS<>q*%$BSz6y|Mq0+2_ at OK)D0%QHePJEFD_{f2VjdMQkv2(0 zV43*tk3WXU217)$HD5{riUqi-5z2%l7qGn-Q$D0WCHbe+uAa zIVI?C%k8!vK*cKh9Ppa%w7G at pjLAbgIX)}_!jhmaqxoS;{L>%*nD#qApf{l4A_Cpc z6`8>RsEOQbs%>nnR_q)gXs)@IWg-E*Vl4qV#VaWqb}3*ocSwBb%`Rk~Lt7GeLilI^ zpfZ2P-d at WeK73yVFGD at x!`XuqM^4g#)~DDzyxZvuVaLr3rVPh znuCghvqaj;YH?vD%E??i*be{=2qOG#!p_xpd~wwU(&zf?fccBG7o at n!ydMWlC at b+4 zW#LLcSPHTpxSgz#tgO&#fNXw4*K3u*J`;e>rJj at 9Z9tdZ6AmJjcDHu}7A1o{wAu7asU%@1 zb2IY+2v-4Z0p3~vXHh_}!oTc_g3h=jH#gUckF5njZiat7TU%kI+>Zn>*Dx3H`56~+ zctrZGD7cW3i_i%^QgzodUI2(vHsTD2S6wYP5Kvj$5QdMlYEx`w5d$n0Ll}Ss2ur}L&u1Aw!Wi9U4#~#?i6zu#J7p&8 z-wCW^_+u6M4=)e3gnwU`<%7kKwV|w-`Bz?Z`tOT;i+OWLm*LpuG&%7R|g(C zccVVb9JY4F7zQd;g;{Xd|A4HK9+9+fiVCm?Be`7p$H6ldI|4x;pcO{ z*PuT5%P7}8_60nvC^^D&gYF9i=AU)~K4M;{%LUsSV~6Z z*F0YV_JzgS`VQDDuoBQfaiDAw^fxIITczFM7cU%%UIi;-JH z523YOa~&QO?2&f#$F&21-4n40fIQ!&ecGuh&V}IN;IC*to>o1N< zy6}DX@~__er)Et2?H+xrBHj$R!xY-%H~b6`>Ynx24{dk!>7)PddoM;VK-QW?-})l- z%MLya75e!3^Ks}Ot%S8 at O>qSSq{}%c(4`%P$Guu!Yrp(rv%OlJZtq_$wzq2wSwp>c zytCh?vo;r_s8WEHIeLz~PS?WYv%bSit|_e7cSSe)IuL%Z8pDN~Xg+x0ppH&O?kKz+;cv`(nCKFVH7( zBU2V)G5CncR!A~7#S?X<0{{fUjcQ8KpapBQPShT+S>0WB;&=qdO$mQ))2VUsej=!URB}%$FEJ=p|?dqbl2n+?#PR(%T50ypAt^jJ^aUo^m zjCg?=OyVShk|oc&ur1Ki5 at AOB4EPRXF+M9R_L^OeFq^N1L4#K;nJXSBAe_0TmI45u zGB4u%x)@Qyk|Hn>dc at RhMpBCJ=4h9)Hb5p9qPRfy8qHN_g^9)-S|pHIzwXO| znCmiz73bqQxepqfnVu`5CPvD=xyXRL0dCl`^gS7qu0Ga7E{dt~;r88s{D-!((91YIHaqcfK`9Y(dKM6NdEMT=`zp@?9wcI2 zl|Uo(tPjkWkfNB#;@{obE?m00yi_!cuhmW}89!NoV>y at b=`8HZM~$|3Uw&EJ1D4e| z8oT{TRphUtxDgg>>l+0k6zgW0wI1grGNcdUq9d1UjJO8vXNq at V#NzPO>SI0X7xZRL z3z?N=paT*ErJU~W at 75R#EfI at tec`oY5UsPFy`9j|Waf1-3d3<|;kIgf=JEoB&aLd> z(4g}QY(#MrGtCl;>9VTXox>V1js<8-7zD&-&RO0l7&3>e&SCll!T?fav1in_T=`(F z`kip)s;X%pp7T-j{+;(P$$be=EP5N{+K#Er4|;Qbl=8c$oxg+T;l-~I%&D-JJf zmx~HmHrCv}l6;;shF4iP6eMG*9cfO at k^Tcd08l>Gm}hx*<56eV6(#g at TD{|c#;1P( ze?LFWllcSO$RNs$^_H&JTHucF#|Gj(6|a@{TAO{PNI%fLvBWd{1^`e@($(5B4%j~oLl#C;y-!(<@a at FUDJI|NAq__ zo89v}z{f)B8U6bk*86+(l{}dgq at n+AX5?GeETt^y zSllGF at UxI<4ii(;x!GOY+dmKEI4NOm$OO)7j9}iPRE)v^g^~N4OW77z6-1i`(L9-; zOIu1~YqtP`HOvmtNLN?tf^WOZ!DLXmUJ!6j%^+nWL!|w>V>V2eZTCEo>j9qphPn4A z+;h41(3R{g+aB%(9{;cC8?eO?8 z!ckWBXl)&4 at gc%~)%hvRG-E_yvk;`owMb>~xz0Hk=~uaW#-z|=IuGTFo}6Gk9c{1Q ztY?lpHyA-xg=;fj;wlx;etfzOQ#&ZY7ox}=qm`VWwwnm%Dz+V=dUSLU#(xpU(}6gQ zZFy-m<2RN5pVV$7=NE!^S+&pwi-&SV6BTPIhRwWN at BoKJ0C)jtb8}0%2QX{lXWr9x z3IJxxl1$*p7(d|>J~|9d5KdWSITtuu%A)K|^=e^bfGk}T7CJ)dNj9hNV zdFH|Xe$@k<$o&P(kL6yH7+Ajqn}_wc!zeG3jI>AJjSG+s5K+nqsJ(;3d`B8~RvbI) z2t!bh@$}@VEk-zTAIY+3akR66HnFs1S%onL1Y{jz^gzaBm<@0(k%n}m91Uje;34>l zzG%l$*3S=r`coTE8y4r6GA0td7SgEkwzU^UNA~;UVEYgy?fZ}0?JUn%1MoEK;x-_g zyPQ?ncmsL_vTy`$6~*8&C1C8gfA~Y_kp=&*{ZQK?o>Ug?L3mBoX-oUWEIVI?1AF=c zSL^HR?bpBlb^Bx5IGV9vf4y0;j{O)kbAKFuCiW!sP#HX?%5$Vo zfTeqy at 6$6$mYpYwRg*PPD;W^V9I2DWg-w7UJ|yqpKXInasFhX2yh2Yr9- at H{-o4pYX`T-NR?`Cd}%$E|LQ zMRDz4fAe*LMSGTO-+%n$AKUl4S8ZS-@;>zc at BgQ*_G$09UEE)`KW%NdkEhRV@ z&A6R2Xa#$nMmasdjUpTckH!1)BI_W}#gnV%U;2pGc?P7F=_s!R{!9V!s&N_Wvb=}> z&C=AjQ(-)niI>HO*g7F7wq>mS;;V0>QLh9rs52u){~-(TD!`{B^0}$GHk5IE%7Pq^ zb}<)i$pFkR&b7HP0-7UN1+Z4umki7x#+HU^3=0*Yg)thi&V^@Km2NnRP|9;&ge6eN z5&$HK5h2KA4`SZp6J^Q5M`xv??)udzd#6dY5Npv541`xH2M^ zFJSa=Uu>Y5vFidmKq at Aze2qOZfi_HnaF~mR#+|slv{YLZEi6UTSegyRW;An*Rti zZV21defqSMIqn!9V8^1MIQC!&uGgE0(4A>^OaTC^JV*Kl)O0}Je3~a2y)p!8!vmf9 zJHNA9b?#F0Y>&;6w!R_zcsAEXtBR1MkkF+3t at MG+LrhU=BpNII@`G=#flBLKLvo)R#zE2E^IE& zft<5aiCeGhn!!9*qQt7wMf0+h32$+)-1FUfsqzv<*Va>nQyL9O?BrR|KnmCa5frlP z%x$;3#bq(HPC#=x3riReJ!So7&b03-U50n5K^I@}IY zWyQ~!P*fF42J}yI4MrJVwe1A7a)Yz_9AB8ntO+z7-X~BVPuSkxF7Ve`)(B^;PTX6! zet;!{eLo<#i`nbOrE^zxKv{wW7jy~dD(tPztlKIkOlNNJ%F~z3?g(Pnho=HeS!u)v(ncN6Cr$>n{)Y zA!{VAiIsDIJVN|0AV`_YV{^YW+mmvC`{GlYDB5DU0VZo?I&%b=mz6wg!f#?Vt-Hs^ z&IMeqMRS*V9m!`04^j0mH0iy7VBUefTF>}sp34eY8Na#K7=&TF^$|`^T_H7iIqxR|Kv289)wO{_?7iC!|BN%4zEAg0D zAs1mQXt*24Zrp3cG4_|EenB^^e`&LIR++d_6sun^M*(>A;2uBwzPrOeI`UObr9bnx z^J}g>$9UxV03aUgJl~ry at 1E1S(7W&d+RGexcQ3D^t(V_C55ISisr`gi9wk_UMK at pP z`FHKBFTSX~e1H2N|EK(R)&B7NAB%rX&WRhhqfL0s-DUALUV%V>;HSutnVH;ouq=v_ zOsr`Nr%*R_|MaUWphRBdMPirnU_76^;Q^xv*gcGqO^2-nCH(NGp?@>gz8%j(uL{+< zx$L*fSV~JmBkkexwoOD^3!G|pZBTHSrGfB{sBg;?vu!HOVj}ktY%IXB7f>=8)cZIX z@(cJFjzD_O;9PUxr3JP3Y0lLe$pHWYS7>i;I!tY}DZ)BBK3IaR7*Ie30%x|=Nx;kJ z^0`0dm5$kPo|zXR(u{yg3sm7zE-x``tX+7^&2 at xZ1e~}O3(7#$$OvrB31j0KoKb}M zTy7p#D#bT3UY5R at 2&eV+R}~vMK9h;CJHV5+h)cBK%nMI85}@rm_<4B3lL-J+`X8SfOTUIAgnGg z*O>P$rGVt#-fqS`Aaiap0`R6RpLT&zS8G0icRHHu&D}+Wcm&IMaLeRK#YI^3lnL=9 zOyXRJCnx9aKpn);?rDU%SS;>Cr9!yNsy`8GT|&b{wBUm*x^5p_lxpBqEjhTn^7Cq0+WKPqDi`?@$_n6I^SzgRqw4SoovJ&bgqnuz? z!UJ0d5&%<{$*~CP?~nG{dCuczzKE828z4Wx^)ohDiUGj|V6(CS%>*#_^@Ui^tToxg zk|%_I2)Q62B$^PlV_}BC at nrf{U^H!KQMkyu;0AfO`6je6m(Ky)5j+6d=iR;bX=|ry z&=E#IZf#}0C2Wbc43G-_7-O-$nA%0a0inV=hM|iIJS+>`SwOJZM{YV6OK#362xC$F zW)}k at 7a|xVnA0cmnPa0# zo6M~_PoL+a(8wVF9L=4ODPffMT08!x{MNRG88bj=KcLfZVmWyT3>d{Fq9!j2Z{C69 zgQK)DTr+$MSVBkzR?%?4csM}>_f6K{LhS;o|MW>jK~%z*lO;+4^_MI`xexln zk9(o7$?$xMQ{0-e)@v*@Ce#oO{H=pImpV`nq;cH$N=jO6*r*glXn at d>htA?qz2Vekh zMxzg&Byf11Y6TtO=m3b;JIA~AsUDwi_00ibnNL=7G0tM{)P-AH?6vus$#$M~|NGx> zMROf#k3(ZwZvop;yc80jiZaCl`@7$LYSSS(p*#!1BVMe)b~m9!i^{pU4UkJ;@R$x5 zbpVwcz7LeDz3G<&4dJ~Va3agQ`hc!+{4@{w+<~t at TLk~fBXr^ZxuQPS$mH|SEr4Px zjgHUdhR)yC1f|%gqV>P_a<=)*eYoeXVV}(s at YV01_)EZ^Hw|t;`-~8h&~CFpgjtE7 zho30bX-V6Bvsu>RFo(9ey4IE$A1-FVBJJ>mHhX*GC zBVmM at 44_gmQ<-y%3jui%;!6Q*zxe8l0D!5AsgdCbXk1;M1t{%A$nA&eW_*Y5(q3BW zV?g431ZuR82x#@DE~3>D7W#L3c-;1Ob}CLxeMgLq%Z9sE-_LR`D`~~H4GZ*+K+60B zzV1;p63Y7c;X^w)JSy-p6+x(8Bqpxk7DN?k4TC`F7BPz~AoP^+;&L`_+GYcGS}- at W za|kZwRF)Q(1KL;8&-={zWW|Efkd~L%iau^a8(bPd>qOeRy%p{C___r4r%!tktgL6Y z`?8nmaX^WEO*1cfCMAPQixpAXpTWTh!i*``A#EJ1;l3fD(Gy_i?>a&kI!H;Ptyh_a z0Nvay*Rql*qDpMxNzb9LfW0irjl~;^IQ+ zrK^YM8I&KD<}og7L$cORz>$Onn~6{7zAX4R0kH(94eUSs_$gz@?VNsvSpc4_ihw2pRWfk*Gw7J3#uf;?u+laHWIk_x*T=kR` zWl3%V-j!ooUS287(vLrWD0k}OQh362FKwjstVYQ?=+(9%KHXTZ`_Z$AA$uCgL(9oo at BJPk{U3}M1s`3Ay9{2uVh{cFb{{H6l1qrl)9 ztTFmWC<~pDaXB0?L_ at a+Gw+1Jf6|CD2J8Si%88tuo^^53QG#~EXWUP0Tx~O!`C?^f z{gw>l9(bP at W3U%Oxf4tP^~eqSpbxPO(836v9f* z;|3=DvR1@~0+6LRUfs9JF`k%!-n89~6{lx0HSVm6YVb*R5~R)*jQ0WI){~ccCTw{; z2vl|S^o7M3AizHgfTp>=;~GYLz#bq at 7!ve^vh~R7)%|T{=150%Rr|dU(Ij&pZS@^R zbTH at YJCMr)=YH0PbpZsj;K;fJ1{pjQsTO+&e0i^!>x>nPjg0j!6biV1t~FDjFMU8G zT2a>BjDa~|IcLqmAH}1yE?1~j<{+)e80s6|)md#QVqYEnw at OF|6x0PAc|VJU%FJvfqPRn_Css`vw!u^YW_ck*L>dIX~&Th z6cVL%M#F#YpNyupy%ZPx!FcAttNI5EnS;Ajd$rxXuweGVUw3r;#dlua82$Al+&6r& z1O1uY?#sGw<}>q#hRCG)E^||cqO?)}e~JO at 9{E=fZKc##&0I8`=T(!_>CSrZ9M2Mh zM#<~q0n1u?^%z=K at cFX6UYl#1uQ#KJofMzk+dl};;O)DtT9`1<&h~!m&5X2P{o>1V z8(*J?Cp=1?N?#)jHy?qI+QQ|VkgUY#OxFQO|4~ENY`}Xxl#y-OQ>9(pW zz!;U>m!UFML;rel`rFJ(9zLEMW%5H{;)*JmJ&SNJ;O6!zX#e at 4-Q*^ixkQ4YFqNCr zFxzP^!QuA(?pFJ5XRAGPF=m35$(Rgd8y^^JJ3oBR`2iOJ3{dN22J%#Lf7Hiao2RhHXhWh}q{>Ro&N z{&fKCP`P$wmF^!NMlhbX#kIxu%fJ1my?*zmef&Y-JWJwpn^g2Nn)X?k|7H62Xp!5M zB%l*Gp2}huUnHU9{_(mq_ok0_LkVQaiVN^PyKkqvmu>62o%V1U5Ifupn0am=f81~1 zeYe#PjxO3^+Aof2HVoZ%MY0-KR~GY(OyFR&=m5I;nJ{#d97;QmKsq@*4S|IThbbWV z$dz&d0|+yru=%M71Vy4RS!D*>)(`t3p8I?b at nw;J{&A5JyF9;)1~QcA<=m%{jL~)Gc((NbWRl?}-iC$m$4w4E;Ob8WjXF06_T3UeF|)0)hAcFfH& z8DNnTW#(5_P5fO}nu9Z%sO+WQ#hw6ne4mLkY{0b=J7CU+71zyIxT+rRi1|FZ1{$Z at f+EH4K9 zTvgpl<8^d;QNU#KCz$V3dvyv`BUD%OX)@BTDM1+%mb1ypUd72h zgkGkmXTt+BA5jJgEZLY6)5Ke%C)TN>nl2a;|o<2`cxGV_QJiR)%r zQTk^pbg(cxQHlk3X at M@*s@&h25I(RS1 at A1pV92(YxzcxN&^d;NYm0(me9^0YRI5OA zcst7 at Xj2y3%pqD;Bh%Xk+Et}%#A4jphw z<4r8gc%(gQm%jXc_p+ zEs6)6XMIu{E;G-{VLpZ*d*x99j9qLb00>|S3Fu<`%@2jLtBjFb)tHKfW=O%4%!L=L zr at 1L>dH(U{xV99b{Hu%qiI+Dtq$&q`Wh_L?6!2V?6P)4w&oA^vxiLrPkYcNK^>ba+ zS!RKC at 92u*!+Zbx@;s)`E&%d?$%?bhIZBP;Lp)Iw`l)GKn%=dAsm%ZD^(cyqp{vm- zV~4?3%CtPS-hxddrb~%jUg}kR_sPjYWnEu}Pj!W?gSP_w?3~2=^kghEpG$M&nb#N8~;3fQk8^X|LT`nt2a at euOkE3+Hr8s(0?~I{4MJRH>y?0 z3dF6XYy at kIt%a6 at L=mh^S{ZC=!8u=r_WPSG_;maz%=G;6wq0bf_6`r)+3{%y9>Sb$ zV2 at a36WajY&K(A=_8ZIu&|L2W@|gA^;>U2t*{S&~wy7-Y5O_dGZG99%mJRELNLZbe ztw4PkvQ|~>2oG#FN<6jVi*6%wK*}8$s3)C03K<(TLxcfTy1vPaJ%fN4jR6c#>ALFTjlTHn9fXkWbDY->wu8AdQ)U$oOa<2ikv z4xO=R;s_WQ&5(vJo4oHvVqqyOOPId69x9+%3mJ_aO=N096FE7w7#hrH?sJ+Rw+*4p zdZ2*vVlSW_z{=dS@}-LbChE&QRv!=cb_2?;ssN;k+#_ zFPF=`?veI#%ZW$r1^kH-vnz-=GD?uOEeQsw5;ykx&D-jW at D5gdpr*3;)A#2vb6L$2 zB7k{C*~9J1wOv8>p#qjh7GM^T)hIDC&@Lk^tVM|fz$->HmU|6nja7DT8afy7_GxFY z#%3`9hn3m7WNA}adL(Vh43|JTJ`T7Gkra^6^Fp9a%|Eov3VD^WSK^?{a(jqUAz`80 zI#PCP#X at CFJXa>PE$7Apv at fph8giDlDM50P?xc-rFV~h}YcZb$h&T34vB~|oK2`wP^^*IH~X981C$YbBI;F){cL{y^zsQRH>1 z{sm+i>xvQ2_=*cQCwK*m6{CLs%q=pfY3p;=ry|Tx<(0}fr~l&KguI}I!TamB(3=TR z7k;5^Pk7S7K>-6`kXK07wbvL1zI(Y$tog~p;w zXz?i>PW#M}m1t}zF0yeYikR0L%Z%+^l<3i%zPYwgG5I_ZGV#wsOULJ7`Wb`T`@LSd zHZ3qj00~I2U^dn_3Y~}D6mj*ps1pc#lg0J at A3kK_B@xUNF@$x8IdC6dwu7VND)eZ_1g<0Q zxVbP%2_oV?xbbdSF$11wCPv!Z2vG%?B}&+&TPz$R;?@?Ab$)%?K5Tv0POlC#j;9sG zySe_pwvxNe*oa*!$@v7t-M5JlBft$VuwdFx5(A;{s1G+jJl<|kuiEfan9L(e| zmRviT0Du?QcVR-;VW0R=!Gjptm0k9NHN)=Xz2o&$A_bB1uwpN zz1SA#Gp at 6vd5yJ|rJ1%K&B+2-4cJ?cRy7xpJ3Thp1~WF78KbN8`T8Ub?Cd5WSbXGM z`Vn9hfh`_P43seglx(Vx#xY#Xq91#N(F4dB7^{i%2`?wv#_y{3TB)peb#iA0B z?iJ>ak$l|RDhrS`LtwFtUIes>w~@Uq`NlK4nr5_9C3U8vWURNjXp{f;@Bh9XU7kkJ z3dj#L%ylCXG!iuk262b>&?YwtZFM}g5uLw#{ib#VdA_?3W7a3*A3+!JHk$SNkg>Lg zWwx@?p?hEg7^yyl@!Qr*KkhPbN=C6vQ2_AS+IKm8K->yzsd5+GznCvq=GyvtG1SAO zT$ix~{Cp3HVeR6|YMZUJSMn0q_;{3#vJ|8(01>N417uFK~kVh3$Ce+JP8X at U> zW1%Dor43Ia)N6aPoKKjrW%JYNU7tk8$5mSyTdRSYD+z_HP8$PJUB9N<(EN3StQD(xNgeRRGvG9o-kI)UB z0?%YAo+7l0HL?R0<|PkL3o4N?W3BWSLy38=BrbEO&-(wej>uWp0bpJx(7X=heDPl6 z;n7QT({1zht8z^jKL~H-24$%yFVoeU*HS*TBh*lXlLN5jj+cZ-9+u at 1@JqYF&!WS~ zGGkqePzKw0>q=AvCdckUx>0FPx+uCmNS5=U+WCE|mR#T%qZ^~?HJ z1UzaRI?fs(Tjs*&d(%-)?yif9C3Z4W2p4JpHoab^&AO=D# z6B5eK<7)CvDeYeyEd&!vsl*V)FpdvTWU$5ySlTZaVdr*PI1$u&{?YznUi$%y8IXWF zjFym_om~j{Sjv4P%raoCC*pZ*)dnmBmn at 7^lgeZOpMw#!S6xQqQGUyKjt4A at i;^u@ z{Y(2;LihGF5&OF(R7cYLH;*S*8$lRZD~b9 z$5>lluwQA2A`6#Rh2dc)GEbS>- at biU^W}aRz45I&Rw3Mq`wAEqYht5$i~A%3g%Ahg zHlsn at WzK<6r5tL}XZ%=jbw-I1nlLp~If(-LVTM`d1^57XTL0zcLx?#b{w56cCcr6R zKaWm-2is--c*tC;S;WOgJ5^7t162V;X^;3B0AOihHlS|4y?(XQe)07e?bpBhG7IXy z&CU!*c^PfJo;rQ3c at veeRNL|dXx at b3U7TJ-**I)_+xr1M(FpQv+vhE=tVWp8N+Vn% z;Bl&|yOnpWu;O7u!?ZhXsucU2YwUnFZLZxAUYH6RM7ypN`?#~c6DACt&Q+*`^9W^i z^C$$n`$uJ!A`H1Jffo#h3vXq0H9%~lO#b*33zRHO;0s{QM6^@jIQInD79(&dW2{?8 zXWce(;qoPfZKX%(h{qx at F*1PkG_Tp{b6oa-}5nO6dckg_HS zr*6TaYgyM^mxGlsgAtiC at kc-}Yi1W)80MEXpuXWultbI(iTeu)m+rE)w_BOMw26bm zqpUZAT;cGHXTXR7W^p$5p2?ENjmwo|P6%Smk&sfyv;z7yv*6gmxd`7MLLv(hmZK%MxgF4H_wzD2q+*1+?_D=P}?C;D#>O7r at AO z6jkw6z`mFzUJ350(I|t!7K^8OVp#`n%j%x>>$#doptAOrpv>GRD=@<7LHyv=xGFmsv_5Klfrq>#GPcLyzb^ol!5`-@=Jf5ZZF+7oy=eMw}@*Z)2 z;-mOojZ at Au?}W0kajmf=xW%@XRoP^uuOM^@@vJ_52QXNcSwm}XLOW?d?j1pzXGBLS z0m%SBumS=UE=qxQhTjsJHQrgn+S0|Nd1AL_CA2ATQgY at o=esE(l2h<|;BR3%{3QZ> za`>^frek at 3in6pgGga<77GJbL<^&GZ^MNzQgsSzK^-MA1HBgBFy>a0yqlR{P9*jRa z7V4vRXcvEsw*$-+K$fw{Hn5vS(Wi^Uek_W2k_-@@Yzly+Q2)@ z;Gj at F^4&k&Z%4H+B1?xtzh!e7}q(Yr1S7*hP2 at YjoWR1yYq)mtonwXjH+$!l6rY=)c zZKUbRu at I<*a302Wly|#g*n4y;0E(Gj<|2VA=w8-n7JObK!C=r0MII19RKm at dG0Rn;E?`|-X zAnE;+fI-DmF*!tf at -=`@1*T>J{q7mfL3Km8H}op}o5 z<<3-x&Q at +q8J92Le^D`#Yhk#(0DzJ7sdgPXJIO-Z$$~Nu*JWkGY={m_u at Yd;F58D6 zK4x*;M5v(??i717PE`VlSPaU>amL5CSA;H_#wsu=Wnu^rRt<}v_6isfYGvKX_$eEM zQDcTV$&`fghxvt;SZk~+%mOH}a9IrrBSMxKq9E7>#4aSZPV+sWNg#-)lL^}~!Z6Da zxsVBK at H7JF@c5(+1?+O^sV6rSCPWB}2P(@#(JL*zpYeQG!ka6KYtGhOQ(339QlKVJ zEIKWIN4VyEE?n-j+EFCu={FY at 7i(t)$ofqGc?XrWS z1h53L>Zmn}FH~Xq2&lEq*P-3vwi~859YIx at znFH$0nZ at VCF$6*>L7}n0=6Z%(s04| z;_C-32~>~?+`i-7OKB%aeopjG at EK%vd(id9=1jknS-T}c!NAzW|88~U&E zxMZFQ4ZM|0je=y3flT9bley8}t{`q^IrL*acy>RA5CC*@fST}CXR<~l{V8QWe-Gtv zRA`@6LrsdIuddj%H7U+6&q}|!@A`*0LE~E%z&xB{3}i}f>yo~5pO<@iapjifNMyZT z6`r}$WwY}v3}j7&2ZhJZL^dtY_uBO6Kzp??(^jH*FXsC-VG()W;lXYtV5t(}vyvU+ z$c+zWXlLgv>l%<_LF)>1Q?9!@a4#<8yw_O!U*=gy at fRQ!STPR9zbg~Nikja-Th)_X z!@5 at 1$DHdH<+9IrsBA9u{dRMsJW7%j6%iN9$6f3mj5_AVVQr#iiego82wzZYL?R?Q zJPof9GJ$^;crwYkN4LeJr?F6mqh*|JLZB-eBm>(!-cVzZv+-4mBx3|Hgtxk9$w+M| zaFwYE?RRmVj4%K6tA-45Bk~yJd|~ zpAGn9Rs^id-4$Z)T$EE4(EUYFutbTG+>`rad2O}LFV7dCm`ukYWHE#fcb#j3rAG1K z(qas17VUkQgYB_q=en(jv(n+$G*%k!LB6-W6D at afX(<9R zKxcHk+>f#vx3+ikI?6Z?wr{@qD!}Z0+sL at STHmOGx+Ziw8bl|^voJ&N%-yRiYgN^~ zvi34ol?4^1k4Tu8l?VVNXrWbPI+9^>LiQSW#bkOP?LVyf{x(FM at w>fwEY0EkoaKe( zZ?v6iRNcd6n-13?HuA$ap|_v};xB z7Z-ccN|xJNh;=E92dFp;(?aM34yz{DIS?TuU46z^Yb#;k7)};jz#SJ&my~f{u2u7= zj$8F7pc?411tAv_Yu81Xquos~Se7=-8bDx0k=dx-n51VCpjG?KBAuTrZA+FSVTXPT z80I`LVB3Di8|$x%aVXmCo?@vmIZT?B_$l*cPgZ3FY@=3|tuV;5^jRh?@TqM=4=^2N zJqQ}0=sE)PbC`*RZ>(6D0NMrXH1mCM7%-odG-CU# zA98Ut=S^j8E(Jgh<+Hxw4_tAwVP(ro4w8jyi$yG!<(&HsP~a9dZ&+~&gV2u{DREbT z_ek0)R!$*fyPp6NC1f&ZiYlLHEHE#YQGgGCk+BW at R>=i?D8K#q>0<#k7C&w_m_D)2 at P@G8c)_4pp_L0YxmCv(TqVuGB4($MKQT(`V3qdTgr!7u%-brOc+JV|af2Km|j zb9(NV=jZ$`IVCGL-|=u*2L!kK^(`~nh_3?@0E52~o3T>Mk`>!;gmh*0zTDq%*fD85 z#LcCv{Xn0jj-|Po at SpIbyibI-N85c{3XfWt9B#{V(-j8AjeC_bAe*c;Ys1`j?(Od7 zxhfBkHO7bqtpKCk?=0l1Xz+BDg}=tX z<9Ftm1-=X~nHz0Xh+2%bQYYi1kqLJIYPX)qRBM9rsjX#6HfP$D&mG_!E``W=89(p; zxdY(sgGYxxxW;?^oqqY5leTpYIE+Os1{I zd at OwB?BuxilfS#WiHx^S#@m-)ZnpK6r8XHl8VO?+F5r5*2EAHejr_Jf=xim+ot>Uk zLLH at jF+AM<>)-w9yW%f$AQ(8D4PH8zxm=@3r)p;f#yI0&Di!sRweBolX$cFCJQ`TQM7e8W3fx0 zE5n2U#@q>QlP_TWG=SzTf|b=kERn%S+A?bW^^gTB>$2kf(mC~~re@~CbZJmxS$ak2 zv=lr*tPBFq`pSVBaUVo`PWv!843qVvz+sfb at v-3&mKL8v)cQbB^m=L>Ax75*2t=^5 zwh4f}3V65(Gc|}Z3wIBW>)AJ%Z1G5nUkXSUi-X{}TwZUyu8BK1+;7{v+XWDSRZOdw z1^D{)>nx(VXi@=ILHf+`iwnJS`JP{%wcq~n_wD1>r_!#*!z?hAeh_)LDDz5>FRxBZ zF!yGr+ci-5;Zr+1KFeGfCyXNFAs#2^R4nAvV4k^{MKll~xfF1<9AP+}bDk at eUyS1I zaJbnyOU@(msuGPBV%EUqiz52 zx*eZH8 at V1#o1+!)UuHa_<+?rsSXcqxI58z|FoQW9?PT^jASD2N=DGdyo40K}3Ic|^ zkhz)77>%UQEPRLi2U!q1x$jl?iq-6ml*{X#+n*Ol101>QTg!E9> z+s2!>nSTN at OgrbH2NrdExLyYwOa$24orblU>x;!67!Z%D>`Vn^hl9Ds9>SQf_#gXC zSMo^KJOT5V at 5G+5Fb>{7wdsJym8{P>%39jQjX4t9%|#hAma at CDsJ)KXTfjc+8SO1B zFV_wx;y3sA_tH<{9_e3*z#hm1q&;9KqG$o=XL;G$u4*J^U9nn5PA z5pp9hVG+(Zj({1#1>CVJlqD|jx0(0KXw6zP1}tpu!4g>Xl51RtpO*VL*P|g;p3WK% z+*rF&ZqrAWT&_b_f|&qnS?3gGpax?BWbtg)<%;FXoY~S4?UtpIfDb*2rNpx-!IInn zX5(KLRnjf55}^6B`c-}Nbtf#n^0*pb;XwEcH at tW@%1i;PoKK;i&Wk7F^5QID%e=KH zjyEN2gs)gXz+8piu*#+X?qAPK-_nWtPMd&>EbtmzhdC*CYWl1_^`5ro&j60la_B@` zG?&X-R;b#ZwEhfb+F(9ep}5d^uDJ2+Y%$mtXUE!H3<=;X!j#S)-$w at 5~hy zcqD6OW+Y0-z+;;k4>- at WWN}*C3=}NT8pgef_PBHbQDtDX$M^v{0H7|RCG(Fz>NiWV zIBDPyC<5xyNmqX}z$kR#I`d?F0%r;gqAQAsSi;H@&$w74cBPPbwYs{P at d^EBEee+a z9`Q`UHFrUuXu$kvyAY>(5B<20_8LQgvE*K8-NC?7iePAj#|OVkGiuJwpD|TxM#&kn zSEhXD&YlRL={zgwG##(!uyX!m0N7;-o7c`d_ at 8?zc8ngpPz%6 at uH45v9#LyA|Mjma zI!|}4QHmQ%qKI at y2LOG}{|o<^_NOrlsR(ZhQ@(TgM zS=$+xwamk80GIv7f#mhI^~mOh$c4-Hr$79zK-pvX1ci#nKmt`3ML_#$XhV_po8q^| z8nEleDRh{5IE at IOn7221c$hUFd0_1nZ_B)?uA&dZ_cG%7%$oSre(}}&0ML~-^nZP~ z`t9}Ibz53lX-6lA1%$YWK7IO>1v3_*bXg48q}Uf1Q35G4V-33a9_YW~DxU7!`ANV~ zz at u^*6IlRix0UNNlt_zX=2Rg0xP02or(JvvOPS~Pa=tj7iM$A%t?lh%e6ng3!>l-) zbdVbsV^({xg783| zrdb9MinyCHMdv>Hfob|oyECD?ySp_m%Pd!wtuqp)FxCFqKmTW$OeJxya@|1fejz}U z>sexhy=PgHxI7V!#a5a{ka}gHS{xzCwUyO!&odt{MI)1Wd40;vYoq$RvLuNWv^V4f zD_nm2ytNllq!?uwe!egFcHUVsxqdK_Oia57SSz=7zC&n7nLiqYMQ?%FalmdW3h!F< zr2(Z+?qCZouAKXOpf?N>pa^kESg|96eS&4k4Mfu(8O~gcspDwh!@1g|pN48rNo6b^ zLW9rgduj0LH?VUakZNv5LevWKcDp!SHG9J%bXylm>^VDA;5h*GhU?RujaH4SnT4ft zp;iJ##+5Z0ZMDu5&q)Bq4|%ro3ci!hzZ!sUzR~zVXz3=jI+TS=c$BbB zA84GkV|DUQLcgw`jo=sCRA40SW}RnUA!vnK6obpN$3s7W3X3NOl5S^idc_cmfu`N1 z5ocZ91&EG?AI=4&ajm=e1DX#HxXYT7yn{Uw><7_cB?MqjlAgR93-u2bIp)S7_yADb z(d~wZDE2%QKz9(@^2}b=MFqwaxS=iJSiM3C4V6)z`6AS+t)Y>zd^Zzt-HYJ8NZZt> zW99Ax3d$5f#hu&5=H=Vm8 at Lh|NDxhB43*$8AHBKxT6^4cWl6|))`auj4}U7RV}xJD z^M$Dcr^=6X at G(M0jC&=7hNwj)G`C9t*|Oq+!VDBDt=iL}Q!5(I#TeS2Aj(M9oK z^PhgRa#A;cvXi( z#fQc-7n50=Hs+rSXcHFXg~sLs?qxGf2D3Y!E;?~|7fZ4+ zDT^06>4xHkR)Cv~NXAI=B%qkfYkbNQnz^;c!gMNJL*kY9wdJKUPAHp$4kad0uvqYA zI8%ZOWNTdBj4|Mc9=$(g%_*o}iCB>xd2G=HLUoBYQ#i`1W(4x(SjLL?t*o9opOMD8 zSH6f0LVIvPF3KZaLlFQ5^C|bkYtff}SD*e12f6DyFV_Ii#-tAbyD)$kce-(VIoI>L zqelAA01!RqE8jYwXN|%`aWJ3SM3#%6W?d&A?9IQt*lU0D%U=Xkt=F1!4}*kuGW|^r zK7ddxHQr?XO5l#W!EI!SsD^_aMK`rv0Jy|KrN^w?jeg zTnm68ViYL26ygCen2&49)0z1&eDMLkE6pa1*#N6uwvvacXMFEMtux8VYM$RrSwPtP>XOnMds7i^jG z5pg6MY9I+azJ2}7DH%SXk;MOdpK zpT1R|<0$A|09zSlr0_So$nZU^l||sM!unY$E}c2e-p4 z?va_fXcGAj(WXHo;y4!~l*2qOGG?REsOPh&R~M$+o0WyOoVgmaCEMd^`_*sMTEcdq>`#0a;F at 5q5ZFbTDpFeU8aJOWUFyVZ@!xJC^>pjo{v z!gqIfzZmUu=GJH1Frha<1f2qc=sD_Afg+&dSHJvKl&1ZFDf>51m3GfnyMHLYP3eY= zLtdvJe8K z=%-7*$T<*J&Z}}W`AmjVoZTl~%(awG=XcfzRyxyzo>)5oOEe^$#rihJtYS{0YzuFY zK|LJ-Qwb9Jo&f8P0M*QK6 at 1q3v<;vYb6W9rIYX?ou^=SMk`&M(cCv(F+Nmxji{)e# zN-=t6>&P-8$er(lX95STjrt*s#ov at bWpnh^wGs|kIT#AC58ffh0%Nndyi!(Q#e!=~ z&a^`k2qnS2htt1-5rCByhc!k7VA>!0gAu?UrA7*nW{fC at gts^;@rJcGZPxPi1hBJQ zJ6xy~&*$^{_eD47-6R+DA!%~M|Hm5c_wfj0>tEVTe|S>f_LN^r%g=LO~q zhe4y{IHiP9rMs_JJudGVYxJ6*(!{(M5~y}pcmp7brt`Jk#EiR*3npsKcJ$4f6;>Rj zNCE%Md+q?h_LUAmRh!K*x+%UITBTh0uK(`kFa~|z+k8_#%lf5T3cRwm34OAw)YRK zT#p)!&jFL-(0Ou>@|?pchBpCzQ(0p|y6_r&?l-^rb;&Wg8{1p^0rAIazwnXcQpn!C z4Q|>urCAZSkl^#inWVVP=kI&d|{Jvf$08bO?QS at h>wG}l#TWO6#% z#DsVprdU>=iP9!b7E6 at 4f}5L%3_Ock7R=pafd=MJAOf at M3S6?@o!9GE zo9+GkcX at x^>`sCyTbQhd;#$geh;atsYDcCz_eJdbbK4H`oTHawyC^2ZS at CucGz z!_Tuwfg-VP-m`*#TIgc=s#r2!k?|C3mov(O#WHNcca}g_rP*@Pnm^Vy49OnF+dDhu zR%1PMaK8XG%CCqKQ}lN#YX_)9OLjQej`9JJ*}+1BL8vKo$O=oz3Ih$D03MjC7(w*1 zw7Oct;V5%=khQ}KZMPIOB+id3e<*8nEE*karL_lejO4eA%;S%rKDC_y#evW}FsYU$ zn&gf|OEOBu2+iiVncTzJD9dzse46*%H*F}(dfITAagvp{65fP*_iOeV&v zPF#5;_0k*k=%OI9o>7sug2Ir;8NfveW>5+DLGqTat-%?m&M#!?a;GC6mECVGOsLS z_)sZ8&dZ6~hhI`ssx(W+naj~#B6doca^Frw8MUK`U3mjaib55BlACX`5LIC6+4 at peSH6JyUasPAGY- zt=cIrTU!9X&M;%WWj(yms5|ASdS>4Oj}LmWUV3JTu71}xp(`xKEUJrhvYorVlJQI7 zH}=mi(3{S7);FCl)x6erzaQw at Jjl)Ei0F!V2p;YcGSV$JIIXBR4LTm)DiXU>Ibgb!xCPs#I)=i4{0GQW52!-vzhe|Vnj$sbir z&TGShq5t#d!ncGS#wn(Wi<9-Mo1o{m5P?|59y6JkF!Q?DIs5gF1 at wrG1FA5as??7m z%DBkt9m;3S2-p&TF%fM5VR3f=O*an_A|nrNL=E1dfSs0Sq=D13<85PerM>;~bz6c*`uF7*ucJBACdG-UF}EBB^&G%?TucEW&MnP{A&J!rXsp7XbTNKcwAsJ3lil}SF#?>h&X zz-Xn{>6h18G?B9aUh#Y~kC}j3ez;DV*v0)^UY!?Uwzsj0+kVo-!v71CL=cVKh-d9te~yW{Qd8t-~S7 zSpYk8@~C`G=wU9j&9u&vSGD^>5avwAE(V}H66WSv+={@&-28koRc=`d$auyew+=ldn*MOtsiFjGRTOvJ-Rvir>j^xECSlMD at YSwUc(81(f-nn^JsH7Z=jSh5}Ev zjv5XF!33rzXPVl5X8~g30>!au1E4tHTd1Jn%96|)qzKSlxfiFi78d8{s%{xqmh5kW ziF;XM#_7#vyHwa+oMc*cc5 at ZFixAJ)VCIA)P#|uYAi+Fk*ye=Ldjj z_?J8fQ11uV8`CU}7qDsZcS>LhVGiq;m51eUmSUgA36h_P!Z{UXqh4d( z-!pli&iiB(&dDgR<3o>aBI|rYMxz7{!S#9mVAkGk6r$_1%l3#i at 2=WI1f$==48xy} z+V01byx+E{ZN&%dp*^!X z3#8=yqS+$0e9F3Tz5 at vHH_)og604Q?T!6fu?>TwpzubZ1hVRu3*Zfn23-INc-fd$C z-~;oNJLjNjJn12Hlu3-zGE%#tY_6 at Oy#p1$ZN4cj*BL*1J_|pxuC*C00s0*^bVq+( z=%@AabMWSG&-9yf&|cAEJ{yY~wv4|{>66~L-1q&@f9>Ty^`u--ZObQdg?+cFHCfsC z>E|dKM6WM&Pf3G$;DEcVOZgD2dSvcg*0A;UH^2Uy^0Lg%PPMft_g%QjQ26w10NF`- zJYKziTa_TlJTZSCw|43!S&`*5HwwMUo|ZTnT1zV#5L6}^6Ps!sXMC3CXK}4knuL+8 z=6MWzssP;Hoo77o-J$lwr}Osvt+RFcu=qjg+7%WkyG2re{PJ$-EEv(S(;?i7g znX~!&bpXMua@&e&!LV5kX~xo;C5v2L+(aPXme%NdTb9{J)6NnSNd^Og#45E zFQ8p44p89xxw*yMf2aWJ6rq?2Q+G^YyKF3O4SRob1M8^lK;pdqna~h{R^}GWb|Exk_ZB^=9mt63`*THb6v%?O?c>ji`5bK4fj!GAK+G zxa*C!rIp$C_U(H6D&Te`(0Fa77tKb-wS6oH+iC#c%uIw&n8WVwcC)`JOA#%xR&SnP z;w(b*HX6wD-C(;^19A7L9Up|Sj!tU_7$6k$llf{vT5MczYQLGI(FiytW3B`IY!P*K z&ZQ`L|1O^eyh=V83 at t@j2vgNxZY??*&_O^i29RS;YIzA=xW5y}MQCL%(^RpO%4aMD zsP#fu6A at Av{wPK_G*Y{3u()x%$%<9SO!g%Z$TG=NEd$>E)8g4IDlv0_oxt|j at 86a- zR~7!xFY{F3RdRvY+0k+hv3g*h=ulRr*exIuQxn6-)oEPC#~hxXmWysC3WE%K?noAE z%wPPRdmM(*5F4J)62#@q8m1&q)k#YmCPFWv^e7XD0nw9HYp^WAX}efUf^l9Mm4LMl zbY9oij~0Mz;Yxf8U%0fU11=SDmuRHSiZ~m4R|CC_3EYj!>~K$KiVEa$VRIYSE(%(d z^`^gNsmr;tiGdASaSx$oV+6pllxh#xxi#FU8{ix1v37X*z62qQWS+zA0$`v8z?1a> zDDh&^qd60LYLXet5_tK}x!$c&fQkqpSPG1%y?w#s<(!;QW7t33vlCFAkn)Rj`vS_V zzRxvvi#pQ7{0(6;^7g5 zi?;I1oSmF at dtS=~H|FMpJgG2&09XZXS$ptOo7-26Uij>Y_~GZ9&|~-ko;CQ;#sIx6 ziLrd19t+=!-dv?wqQK6vGR;i3MGAR at s_b37nwwXg)oe~)=uPGK={A?|-)yY6l?cJL ztdo@}xNkQW+81x%ws)^ywO1=Ex&L at wZZ6V*z at B!?w at a5(Dmv{U~ zVu at tN3O(@nT&rzlD(gHjhmQMR!uM}BOAd+sw+k0O$m<}{E9|}aJY_03>A+vw?D at vY z(Fb!ufDk+3aepf4=R*53NYM)1s=D01P=kyksrTjgz0;p6Ny3UDxr*goEn zndtz+jJZ9}cf+g6{yi?+(1YUYyhmkWwr(TW&{qA+ at 8Vx4vxb$?dkjqu at zSMTylij* z%isU_KmJ32<9Wpn@*q%Fo}TXl*yr2d{_Stt(0 at Dp^liEsVcEs3C^V~cG;F07{APfv z@^z3U$IjiuO$a{BIRnG}fFVOL2Aef;et9{9 at m>4!>tD2Y at 4slPOA(;63vFs73ko42 zzH}NgU0hhtz^Owhi&OFAt02>>c64~r_V>=)=T8}s-LrPGAB25&*KRHYG;anYG=g;l z4l?XTpunG%Rb at 7OVd6>ptclu23fHWO7IPDACOR>Y#*(QnpgvT9eHaRj8L}7f%x#HC z`1b7)OtabFKWck>#}U*|#Q;tM;0}&Xq9H~D<$}rU at Zh-2#vNFdLF}de7_b=tk{doif0jKuQ*w}M~M;Q7; z1Yl-oD*c%Z)100T&|8{qUw{3ky?wXV*4Hxr(-t*hOA`=ao3=g#*bU#e$C3MX{cr$@ zKz6?#&=~(WITz2t-eI+4IOD+j zvwNu2&`tWEdxptuZSO|enrye}7oa47xi*K-xrD at 37=k^PxpcU26{%&(v|sK?z{%6V zW0nmCZX)A29f3R9o-!FgE+A3hHvRFBJA`!*o#)H4I+RcZe)7BiC>kumO6et_Nw9;p z2OzT?m4-`Bx82`Qi zCRkjr9w^I|OxhA5tY7Ib#-V*^P9Oa9?2Z9z3Bl3{;ZRkc-~Cp%2p#lact;-q>Vu== zv|fITPFl*Ll2FqT5;S+QMSzp!nnPu3LhJT!HHyHZ=PUlM=(jzKtE^K1AOYKz=rHCT zP_8&ieb?@M=b1Sn{Yr1E3tgLDpxsaHE~~5e{9fQ7M&jCSV)w$fSqo53i7Yn6f5K+GDsp{EA88i>tkh=~>%dvO4zqJ)eMwi9`ZFx?C zx3s0dehTdU?C{z5rP%4OFVp5e;OoXfC-Dql)Yt#XQ9vqv!Na;Qa?kw963Q^Nva}pJ zxv7`1xcOc$GET|0%x~^}xVKj_!()#Q?e~A$cK7zf8*i(>A3l9(+dJFA40{#-C()8c z^m%Y3^0*gy_t^gUA?NI>hbwkH2q1mNr#>B=hv!nDjZxr1zSj at g__jVYcRXw6|1mso zWqBz)WTMvY!R|@3*Zr&Yg at Dw>Dg{HK`0(TB^2UDs^;c0cbMF7^oA=+cHW1tdQpX0O zeL3JOT&tU>G!U at kEMU{{4UW`zpr!`G-$! zXKS||2j!jy1$UV&(Nb?7+NTe at ZExqOk{T|~SWhzGQ5)=``y6RM at Q4U<&*x~NDjWqI z*tU$h`~H#Ud)J;raDb&jV!0U|4Pk`P?o32Rk4uER4M<`6F_0`;z88RvQHuQ%D`T={ zP9ZYE?U!kfAj at GwFhF*2(6(WG>8*XrWCJZv0ibjn!PVTbS65-!`I}%+%n`5_{0uBy zhVh(-VORaP(P;N)#v_0ZmQCBlZdpX!$u`snNM)s6UYxYc^JsKe7is@}K#c9YmO_Z0 zb({8&M;lvg3kx$U=Y at u0Q?fB3d|DTV-bFUBJeB8BXhyBAS at y8HvuWO)C1J9 zQE?CUcTG2P_b`DhLMi;LqT=k-5 at aPZzQ%t4>hi)n`zKY+5evr}|Jp6WAZf-%`Gh1Jl!8yEbCpmcE2dSUFUxpM;oTrB2dvt-2r zOalE~U$KIDu0Hn`7TQ5To;XHs>f6vJOSzIZ+9Q^PwT6pO9H2N!+rnL^{{(^U;s5~x z5!m6zI*EcJJVE>^mp32-bY4do3X10{Ute6VE%hD(bk(C`A!O|-OH%rbYmC}jFpGj^ z(Abu%G3|C>#=sWy6)=WISX4re1u)7|lJ%P at FM43@Eg_oUFj6d at fWVmhAS@pW6yIfh zj4!@p{KPw1cZ36_HjJsxbr+1aj?AC=0(J`&l at K=N9q at 5h2_6E$xq120lO1?u$F~bE(TcP7D(hvQS@$-tln5S_j14!x5To=u@}dh<0*c3ej zo0M8S4c)SyccsC)cO%um0}u z+S|8pvi1h at -D%r=wch^OZ+?^Z@$603*h>ca>ixU=&7Si^|KH#I&9^KzG(3ce!MPcR zL6}0V7F039+;}kPQEZeAZ)el>?AQ1 at HP~}9UHKq3FCo| z0R{X$NLaYO3s_lgUw!#?w27G#LUwYvJiiJMRZ9o4L~sTi0Y$74T*;%AB$5GNm}>J8 zQX at ga+AfAq;)aQvp at C)rBNj93K7d)J`G*NqyjX}HIIN7p0ECm{(=Z4%-E75UVdm07 z8J!dP{iz+D+9BjNfaa#eO1KCb at VOTPISp=UjmS|;H5iqx*M;4{|TsIal3P{j` zrPPbf2$2;Nun#A6=3K7T+k7sDn0Cmj0#XP>jH477OeO#7bKb>*u!aH^Xisd-YycWp z9Ba22ALWaHCp2bzyfVKB>7p;zUVsJT-GQA3&2%P}N%oFCd z5a30lyv}uiuuM8z15F3uLB!vD`BiA;F5`JsV at Eh(NKdy9m3hg{C%YQ}yv}-1|BqjT zfM-p<%-RAPxjL+i;f%BAN)#a!ds$%9>02+aP;+Rh+sjlLosj?wV8fc?y5xESM#bH- zSl at 8hM=0ShmARjJ=(O!l!=-4LE3r2C0oq|90qVH?l`?<>jbmLKp5#8p)AbeCmv);& zb8YGV zW8IfUB+tk*e=c;qw5I?`+V6Y;;l5XF+j zeAUsvZ=IX-@*ra*0G(wW&!U{-s{??8#JLF2 at vx4ufyXEhBL({Ar$^d+0Nx at XI5Qcb zc3J(wcNIM+H_k5tYy*tX!mqY=4noJL?d0q-v=x33An_RfNqCB<74{%*9gnT>m;5v4 zVud5ga(^Xx0*ru{2yIDUEW8DL)4%B{h1``LiL5(2Erm~6rk(xpv#X3z#$MI#OEaF?PVa)jjz4b?L;=3=f4UMVdmC(rad67|_=GCnx3fOYPX zN9KC>$RGLcCl at d}!xwUH0l=I%Ig$Ab4c=$HQ?SJQ@f3g5tIOJzXmYQ;k%C#5v$vX6mQY>-+h5oK_GAKE``@Xz&Sw9rGzgTy9w)O7pzqqdc|DPU! zaVdallXYsm?SMkLrm)%TTr8iRsaBVka at tcnV9k?EmvQAKIto8l+RimL%TUC*pG?Q{ zXFMk-hbsYuH%J+w(*S1%j;+1D$U5Uh8I7VJ`t*#&@Bmi2(^KWJ7=t4FGQQW5#~G$3 zDax1~gif!ngx1)fdcJU*kUcdAZK%+jj{H)tjr_`_N~rSP{mpsX{`6xT`oF(>^KCyU zw_{e~sJi-2#_l|g6(fad*kxd3GKe%x12cu5Pxem(ZXyKIZp>VKkKGt91L~mJ%yWR@ zO_eSoAXtk4K<-mo!uGxCxI>AGg}h)=n{||- at s@T8Sjyyu`>Cd9G#cD`RX!^IpaSvI+d}1N$4uJ`>T^$``7yszCEWVN#1qEmfTC|P+CmQSYZIsKTM5AdFA8_}5P zdba&K$pTT9VSNrzgYECW`BjY@&?AmxB*FpsHRr6s;-D}$AWwERO-t=K0s}Czy&- at n(~`17!=gkG z&|>d)q9qBu$54BjGa5WIy|N$TYQ(r;ip=o}F{4`yumnQ-^5)I!F0(ibzpDim0TaQ; z{b;=r4?DX%mGEJGaWk<_5Cj$Dx478;@ZFy(R&go|w at Pp1cgaYY6J~#w{@jEaX_vOj zga`6ji70>I-w^h#6AVyWV!w%(h~TnVbL^^zBG$Kv*s zd60m^9YH8nY;DH-^2LQb8s($h85u_z{KaH*jydTAK;T4%oIWU>A^9bUI at hu2Jcf=G zj_!a8_n7%G$E+I|xAHW`QSDDKg-|bxK)yFmwF^W at Da$+aj;cC=>%b$t%u%(C;7C78 z2oqQ at f{2v at C@SIdB1}4g<8znLL*lruFK}x9UtYyejYB3{e2~Mud!~A-ln7Q{MTggx z#iT{3=3e;CQW!X;Wp!gcf`L`*vMtVc*@i+=mZCH(7EY<~4E&W~yjp833o|9CmcomvC$g9jASYj(};L&2=I4xrCXJ(tA^{i-3UUEO-g_n8CFAitI(TVJg&r46G+ zYc3c6ZZB`190rnTFx6*m7n|+*EP!bQE?>YWovpRqx7e4}UK{c(%58s5_20X-V~=#T zC4v4lJ1>W at gBq^-R-e0P{rpv2Ab(OeJMhVa6&?|#foT*kx3ih at K(AhH)Ve!7+Ao^Z zM*ZcRZwa?P{ zOa!9a-92a$M$V53#sJP}a0=kMC*U?TgkUV(>!9+ZES_Fl-CT)gEkk*rEv+p@@Xutx zGHBPAZ7rZ}b|wQKka&A>+$IMCz{UpJ>o98tN0sJ~9XcOv0db4T0-CSFC at q?`^_4J! zfVxmApZwXO?6VMl#^Wh{jXX4JY2R&_-%vo(OhCj+d-ramvY|5#A>0sgCOiBlOno2# zs!D))UcdUH5_4F?#t>(IV^PAKoO^JnHsWpO z_r4ubB0?8q6KVh0Q~<wE1Yr%d^t~{Buo#^dGlB*Rzk0j`N%@tE_K<6q{r$G3e81Z!D+4 zOb9x!hs^Ct(U0u|uhWKuFsPF-2eE#@x3wYoo93t=7CQ^jO6F}WZ9R$rQ?cHzA=X)K zD4$iMz9r54K65b=+8oX}NunWeDH^AQY?$5SNccgR-#vhkbxF$?tI0xXmlb1EAq{!A zUMXK?`3#uwow4 at 3u8RM2jW4k&p19n(;l at J|`oLc&@H;Dr5Cw3=_hK4>8NuavR9Wzf zA7ovmjU{w*U01fEa~%_ZEb#dvs&GaEjEe$%r6 z`SZLmY?-L$2ft`x at Mkp^TuF9(ISg|r&haxKyp(0aHf;a|Z^Bp7_)^?P0>-qB at +>jx znmak?0-+g|vc5UroXJYW_bc=zeb%&jGFM{OB&5`KX)=h at PDwU{ z5#ayfcOTkH1a%jDpS7NK{_6c#wVrH^YR4XPEb+>AlR(;h=8~)wQ(M9du*+B$9fn5x z``u0kOaQ59P9*`t-#iYd(fxi&<|w5lZ4;JMKsfhOJJDRoq^%7N@{HjK0!pv&A_`DJ zy7X1(j$}l#8?6cxzzh3Uzd)$84Pl0!&`4;nti0M$wBJ=l at KUH8-HP)qD`(C}Cy$v^ zB~6qH}WB|M+3DH^nS;l#bcC!rHC%l>4JaJ8d~f z<}oGRwrRqWTz?Z~HPoFk?UWj0!%HNj1TB<>Hy}#+GNpmWLxA2FXoPhEiMeI ziZ~A{KACqD5vJ~Mlh_FY+UrQUSr9T8+QHsIepASIG0zBK3y|ST<#V5y3IiF<;tulm zTV+FMEL6GQ+udqUVP*=AzTQ{~p-ohV7>$oC8qI_fQc||nS0e}&9|lmw;9Xywwr!~V zV6UC1OLcHi*}GRk^4C`<0g*##(_C9wo{zTQ%fzqM;#A^ARrZ?zYN7MCMcdmyZ9fFW zefYSYKAmOUGhbnd6UxGbAzlPrkAykiq+u7=SwLCm=JFzcu;?9~T!jF8ZE{=;Xtecc zy!L*+xqXVpz$J5+#W)(mv0v^%h>96I8eY}UyKf&qe{RD84Fg%MnX$5Ra^?2Rgjf(5 z1>l0Yi4EfRlv&M!ad&kZfnoc%u__uY at n$srpPC-e0vWG>Zd+g}O1v~X->%M1+QIIp zyl24$IAZi4cMo%ZuV};q6B|T}7thHRdlN8-L7+v4jBW9*tk at M-LENT&XisH#fPgT? zga8pQfQ4m>&=%YF2!Mx?T12c>rJ&>-mN@{~`M?lHOsljn_H at 9)`H6iTJ at L8yu=BaJ zN11c7apwZuFmx^}3`Zi!+|pv^`?l at u?`2KgS3z(QCd92jRx7u-0=uFK6V<9Qjlhw7ghA@>h+AH3R(NA(i!3SHUhUALu84mms8l zXZ*7!#9k3F=E7RvvPFqBqR^CcGe2-4$t>D3#j&U1utZr#p6oUU at erXT?t3w$JRWn zVa2y)4$Fd-K3i9WwM3VyFIjC(Ka86;);nucI+yd%N!7YcTZ~CsQZe4z%vH)FTBJ}qHXKqFEY?xmuhm zK at Ug?TVe$g`-tC&LzK*CZ&n$bi*t5fnyi|xLS#n5b0{9?w~y`bf4dj{5b&P$t6(~S zavnaWsQ7V|Sk}S{&&cnz_^P=3pG`6=_vQf)a zLI#MCo~}ZMml-6%`>b669<9dE$VZkcSs`-B|OfnYLr#Y+4i0Ih)Zblw7T(7I?y21$k{7w$lw z&nzkqNl>RUHiTifx%FKbNCxb*E2=o331A-H+}J2oj(AVbZ`xh7v0X_Hnb at cF?eI7g z6b3RF4fE>yqWU$O1&u)OZvslV9n$u>nJ}l(hqkdc8xT3srUN`>?#_gWuW~OtKTJ*p zz(wAlpFOmr16Ah(zz?q5$x*=g#X|`Sd#6q>&bR4>xr!CqkG63X#ycG3e;R`S;qz9z z&D;!FXaR?l(LN+v^zse}R?xi#o`og$O7ZT~F!8&myLNJM*rw;lTW at Kyz59Bzt-oDv z_w73K9>5t8wsmyga*L{K)FrtnKpl-H{Zu#U>inq9jMJ2506w;v(dV|(8)}%u7tzXt{o7CT3c1dN%hNZ at YV0OxvH*)`vz9lsSF#G}Ml-?pklT zi at BhMvdVC?1ATx#Kmqg@^UAeTV=@LO!*rwR2AqrGFt^STLs-luzX5VI_Ih3j3lI{d zi+=QzK*f-0=f#Y}1i9ugv!O5x*{qT{SR&k?a210&942y{Is3S~Q&!?$7HVZ5X8~i@ ztf#dNU+9I#S=r+e#I~HHIigE}@T^iJ5qx_m0hzhB;?Qyv>yDC?j?|g}pen{Of9spy zF+YEIB~XUSdTUK}uBfcboKLx80mZzWCtF(L2RibZmCgH57z?)JD29y at S%sl>&twhN z7J#KJ5P80P{^aVZ^9eFwAaj&IeD8A|IiCLMO)4V&1 zIeOKn?(muQ#XvO$q7mr{6{K?U3a2#W1xK-W-} z57O1FZ#7J__9IMLa;pTFIS3J&A0au`pgHQh-1JNTSQ=R&C9pjP__Ev=z)Slo13&$Q zFeoT at xi=6}`$31t0UoZqIt at q;4<8zQY!mt3e&Rqi#mcT9X?ngNE`B?eHB5ne4$$Up z0h}@$l?i_uCiY?LC_sTlGS{VZi_2>f at XB%o*aq;CYZL)+jq*bVmdiSA$*pP~cFIfm zL7syKi)PY)ZAN6~qri3e3S-M;);OxhZ at P1HqZfMcVgc@Fc4s(?PV at izqX46OhQ>SE zLZ#^Og$6=T!pf8o!|QHtG49b=Y9g_RPJTSSf at Rs>#ueJuU&E{rJh@}zt-^DQYyU2 z`8-42LdmPF>)Nruf7aGtEtSRG`eB^F>nZyku=bo_fB-<-nJUB%eB_2*$TwH2)#t}+nYtG}d^D at Z5Li&6b z>>+GUtg!L2HSg(ZWOL-&{`PU&a#}IpUw{2&mw6qUvb`HGoZUW-qkM at GKRrDwP%I&H zQjOQcqueb at eLyAa;D-+%+s^iB at Iz?ee^{FQR?MI5M?zNyEVHpr0(W< zE_56asC|I#`uav&URuduo|>DQd|8h)J4Ez(d%OMa58t)V`$qwR*X@=2tfC&dyGO#fPVksoNrt at DKo=5y~PQ z&G_}gkaK;Qsv2BV>I{w#Yw$@a6O4U^_ZI3HaM8 z(BE5HEbw}D7wxCF)OJr!s?Xdr;!wmoF~Qe%Xz3FgLf5Q?=wu{Jm0OmnorS}$EXqS* zNGxS6mlzfWNPLN{+5jj5)}mwyql|Qc(_umx%Ua;M0h(6)bRy%<+F~V?B{FnD0T5U6 z7-98kZ?_73zj^mIlbAWq?=ou(aOQIXoV16)A!yuF91{SmFexSo49dnoy11 at Q!9$px zYWC3TWM8p%(zD*ud$?Mux%Wt} zv%3;LTqB1CV-K)qy7Vb(Y%Qr08Xrn+NimLHOTaicFYV7m3^-NB&^5Ju~PBUj at 9-~E-=fUVQ z_uk1ffCSAH4b{`~|D0b5SeZ|><}lws(RI%E>RSL^>w8E4Z@)`;@Y&&d)=lrgA3ozZ z>&!Z^9`F+uaivgd?$ghsLnYBNrWp?wHtV>mH-!HJZ=R3;)cy0S=X;(m=3P7bAr{)} z at SV@-)`8#Q<=WJ>B|IziVh(FOGT)Q~Rx%c1)?@Bl)@q=QMNef9vibN(&DKs{8C&Z> z4Lxz9Xw`6tqb at Hd0Iq$ZFSMxakUmhzczAgA)Zv>B9WwARTy at G7cQ)C5RdYBS`8yNv z$Jjza68iRed%t2})%ujES&Hsp#yan0&&9cTzpgRvn~; z at ENmCOa+Wg&n=YYhz4XkGKC4ttQ$HsSzIQi1%keTx!3-$c+ynt7kIzupn znIudaz}r3C3rGrK2B3(;!%wC}e*x9>iFYP&()!(n)W=rLFz14EFhqmuvYS8E~A5DUhgegPTdX~%N3 zfUkn$H#RmR)Mqn6mnB%wu5QDKBwE~6mhs*5aGP0JYfAPW24L>0L6|X|nqO?=A*9DV zt1E>PjVT1Vy|>>!ZtYfF+K~8x+*4g4?L!cD(~!WDlgssYnFU}T)?cj`6By4N0W%?m z0Qt;g=G7Q05p;R|(0=zHziXeOAzxpLF^N!l7MC;HzI?aQRu?AQ%G`8YnV+cA4lD#K z%QJ0#trr0$FgbHS!fJHWo&xlqN1~nO at 3ZT((u^J}WBal_4+l8fVJ2Wr75>xX^n3fD zIK at Q3({#X^#eAB%x_cUJQ@!N?U2fh0x6p-y<_Ek1dNdJ!ZbQ7LY|TF3!f<0 zKNcbmj-?HN#2i`nC=ClsQ6BRAQYP{eXCppE`5Frj!*@P_hau5Q%NnjRVWzBq%1kJ4 z0aWjWUQZ%86;LPiZ=#0XTwN4X!|dF at z)P;v*8(|t9#BUcRsXM;Xa29Y*0Jorv=0ri zK43Q5i-{Q*pK)3D;kM_dw}T5S6Z$z1=*%=XT6h7OtT8kt>45v$`PWgnlw}b~!>SMb zb?#mxN9g4F)^wf&SO71@`18_O<5QNWe8 at Mo_WNLuE51Nr&U?xWo;0onRy at Z!d9RGh zx{pWY`&DW9Mjt2f2TZN$yYi^p2JZ9ts=!%0(e1puY2Rm`flK zXcrGzmLoj4{|YSu6y~yPW9Tz9R7d*Yv$9F$<+u&Vr#OfH#iPv!ki1 at 5Y;V?A+s0zA zt%aBMlp4Vpa_)WTWgyp$g?CQ?c<4QCuFmApEr;>oTI}4*+S<99z3|0;rX|bYXs#hd zXJ;k@=G0g-zTLc`1F=}D1$YO5&<{(``pR;-&t*1p9rNHAPryic4;eH~8OuEYXBJ1< z`rfA}!xJKuF{r~R+q);WUc8FJK3i52Mh<*=es!bd0)W#2z-}$7=f>cnp at h9MWd;7s zb^0$$-fuO#`A%g9e8=D9q%apT;Zqq0ZO)@=UhUCdH6^nckc at R!Ksa+>Ya!pcX94)) z86Ay#2bzkma(MS0Uf8G2{%=36Ddz{ZXbUoJ(rC49P?W)>&%%=9F)rOx#}r~ zet2NSzv3~Sl~Y0Z%x(JY`POCK)BUw29r2lEFTGEjSm8qVd08Xe{rDa5WghWw%Cxri zt(xY+TpDE=^mw}XejzMX<|ps=rY=P~eAB$BJxtl4E<+o at mbg$BVlI8_7KnY2x=fWw zKk$093bY$D=h(SPm6OZM`}V6}zO7J$4?ljFiGOTgee-o$_&x?ZD6o&0v;I-!K7RUC zad|d3Py>+nv|=~|Bx?hT-b^K~GQ8XduTVVaqoA!V&9-m8c-=PE)@zS`aowA*U$y`6 zAAj2pgUgODY{i*16p)N}R6J$)$oW~?d3hUr7di_+k!(dyEG#UyrRB9Y^uL=P`4*vK zZGtW{!nK8r@)q45rUE=)GFoy|0mB3;ZLi`X5E6pPi+LPEw@{UDG5Hpt36e$V9206U z*vhuVP(#0-Ytwbe6o-eJeK#H;%CZNL*yc*$EtfP)6(Pw5wzI#Vfz5RxYD7ku=*v}@ zl}+l!Yn@&w(tMc388n}PMYIC{Ga_wbs+W0AdnYD~c!9{Dz-X~`5clrE zO&baEPtEq)M1YY at 9(CO2re at mm@_bX3o(8ZHRKC8pW<_TV0zO&S0t{tshP2DNy0g98 z{{27vecE=_j?bf&oT=#*t>P?*{g6BPIv|3HyS4KO`Rn{)2M|lS5)imO0-nVVNy#7^8LpT3*lz08C04ehbSSV4dQW_rd79QtMv1E!4W%jW%5VEvVa&N|FJI)Ou| zbbr_S%r}@Rp3oOKeg5M|^j+r#h?OA9OZ!=Is_p&`?cd$Sl(mV|BypWr^+ zNL!AgjPLI4)x5}pmL%f7523%|>UZWVzbScS%>pU5C7g at URR^;Qg{R#asr1|SZFhC= zi>#rG at b;}J{d=cZwYRFu4C!%r*+P`#*X=UA_miZl$S*4F$qW6z z&~ktHLqiJHXVNOfO5g2i%^I_m*S!or^OgH(A4`>_NlJ}_s}b0DFMZ5y3q0jh(N-4% zfv!4>DOy7x4uAJ~U;lHT7E5lU{j|?Gq9aE>*7=@Qub01FM&1J^j78RCzK)`P(-xN& z+uFuPjSHS2HV)sYx|bP`x=-$1ZOp6Mk)M1n(4MwvyF*+2&SRkM{IX8 zobyXLe+=!MqtDQE6cZr>yqdgLQ!~@W&$YvPCFgp**?J~( zh&UkV2uu~%3Dv5kp2aHAc5+OCL5Q6;JzSbWzZP3fUM9^zUj*b7(WSE`Omh!Rjg{&m z3-Tg@>^a0d6!3B)!}#(hL=+$s=BMn4wy->oWReI_i&3h%KwU0s0<@?qt+9B-9$NTH zkw6(xuRfIJBhU7`*uk3!J@>0 at Etb#_F{`DCg4$WY3^b%ZzofLuy8yq<4Ej_h8LZh5 zI*Of`l5nwRZ^^0LqcTy`?mzwZ4{dLEuif9=S9uoOg=HYx-u_YhytCg zE6cTEChGm12f0_}@bsgsKw*?>=bc|27pUUCS)E at BaV%9Cn98g>2}?|jU45k6t+!$TPOKwDd#Z?9g>r|-idrqTmGGPYS< z7_q=@M4u_iZ{sES#zv$Wss?-6?9FbmkH&*gq8GD%PJ9ap#bl!&aC at pnJJ``fF#aX#mKlPKN{ z05k>O&8smI&*^zA586r)dM1EaZl at Q4@^b*_=nFE!i-2?Bd*-(LyPIdfKSYSx>lyEn z^+!1~HlALKmb=$#aNG&(+Kx^Z6`+ zh=q=V$xX{O7g8vYCzFx&;!-J!^YZ|`lPbX^j?B2oie$Cf4BvYH#g`=me)#aQ{qW;q zp83#ZI#w2K`04TCaTM>R^ff#sb3Ztk_w=8<;8DRZj!tA#D=`#-9FTi-#?p5h1^c3% zQ8Cp3UPs at L#jC_%mg1M^qNkdV9Q`F>%+nns zn^%Bi?qEwgz||IiN;KK5z}A!Kq_h4;X%EmO=Ugelio#*+i;^-g+{snH4~Iy5tkwK4 z=XNg-?LtUGD at df;oR?XybG61LXv7 at mT(q0#RA2JD>z$O#3KSLXqW!#g^lr`MUucHK z&emsQ%_yp at m%JdXP1ZsOzPoFE7H8*ng$2?EID#vjC&t)x3Nuh>EqB+HyE*O9UtS4( zw_6Dr1(x2d51~iG0A?Zwe24EVSJShLQ$7QBc)w%}?qR#{;4QtLgg`Fl>5 at O)rVYGF z0B+ivAN5t6Bn(xkM#dgMm83Zp at Fn(iJg;AU^QQgn-~MgMiQoV6`wA`Cc=e`gT2gBE z_K$-vq73C8%Ca$XO$0wZ$b8N{XQwCH>dJguSeUCmoE#rV7Ow?6+_jyp?e_cM{=RMP ze6D$+`|`-z2YzODzD)$cO3>jpo?Ga(H*ek+eKHgTu5lAM|hTeA6V3xO~7UpnseOZ8EZFRX!jFsk17$Us93>HhB*df!jA0%rp zOCZMHpxp-A5tw=AMF!l~C{nx?mSy#0S|u!jF$+adJT&e4rNx!{4v1qloSN$PCe2J0 z!X;_|I0Zcs4ixNN2BoqX3v&i|p-BW#7fy^J>x={pF)6g$BJcEJHO%ES%mSlcURnyX ziFSyfg+XZ8#x6m$*mB5LX8pbk} zF_P&v6k&d}x0TmUo5-TOIynk+o at h3V2IAJ2=c65sv^TGp0_;}W^5Se3Tjn{7VQp=p zz1o;>lT!oji+5`Qfi(0y??yR=v$FE7ECcGhAw2O8<~fTt%z<_as7_3Y{TU6jQ{xe1 z=q$jp0WrX*Xx^BK>?^{_4h7 at mtg%W14b)a~r{~-OO6c5%sAY96hL%nPfG^u@=5T2_ zTJ*flt}|y at 6<)?bsSE;XeSJ0bh at lEq2=gp+fiQ$HTp&O56gE at VKlDy>DhqKKg=dzF zC*QjU^C$2zF0r6!j$2XIpPEaocwJ%dv08M1oKhxS4EkwT4S- at ai%zKxn|!k-Y=ov< z%lb at FVfo>HrX4DJZ4nD$z>}|U>?_<^)iGH`L$AZ6E<%6WZ#`l97`?T^G6(n)`kh-Q zpa%2Jx!z0Qgc09y9Vp~r&F{N&o$DEOc9GZ(XRgA{g=c4 z(F8 at c%3WkY^fCW+eSHCd?u&N0Re{w4fP`(0Pxt#j1ps~Se(MBXzfIkf^Nie!HG?;0 zadELMe}oTyg??(>H6~Bw#W2RM at AuPBcy2u}_wsn)Uw?~MYos#vnOp6r$%B7U1^DnTKciggg3X%m2_Snlr5 zcH7zhT$T*UEd*~s|zX67o}|JBB3`{IlD5ty$kM1g|z_&ihq;xz5nBXQ`8 z?gIc65TKd!hwR{`y2|(VP~SZ~s<^0A*7fvLM!rx7RS{&%OLk*DADfs{rs0u+apONxLc7g&+X01+B7p9Rv24goIT9VuD-DFL(tTAGkYlauG*?5cZJKD~y6)jks)^7(c(J$a;4WO~U!hyEX z3OaH0X%p at Ak3L=2z3X#lLG*pmY5w!~?5vpd+#};%&&vq?ypFsg|e#A8bY;Sy`GddCV{-jv9XA=Ix9IcR9ZcW4OEw{b#+gFdj#~ zsqe?4NC}!AA8Nn+#TV_}`_1$@z&PWYrk5AzkAL`MyEr{>)4?zj#XfxIxw&Y|s~hDV zBNtz7ysF(tJOhRkqrAPnlY4cZw!^FkAXxj|W6us&Sv*7ktBIj+2 at Tm`7BHd2bX$ct zLmbMW9A+_JUYv%A!_-2|BLiW4Sq$f=C%I`BMXpyqMW8yD6&DzH6L;xF2z)A_We^x( zt?5m-tH-lDh-(MKRr4q^Zd!dcKY;`drYtpVQy at w09zNaT$%^KKGo> zLg}#@gg_7X_A4e}F82z{3?U7-cbn_AXXeVnY_pO2{?3nWc49DuI-9ngrj2>t#B+!> zz~K2J%;%}?ZhvTt%d_pPFW$6|pTBQMhg)rBbs^(-l+_wW7Z8AtEM~rDW;1>vK;?2q zN3(FE#n}3c08);JwpIx}=|`1v8OO*XR6`RO2eUs~bKiyexq$LK08>D$zvphaecC#1 z`-ivfu{p+#X!Ig1{*+ z+*QDy5QU2 at I*CP|=N>>DK|txTXwR=MN&yj9CrfTB%!+G=j2O>)Qv(g-rx8vIzrYBy zNVSECQNztnAsB1eGTxlgY?YYtJUp6L7;6|Mkbo%@UMxTg?dq>~Rw7myD&Z;Xm$h;> z^yaw)QQ!58&b6xmb2uGFh+z_TmH3sl%0f{BCKQLZ-PflQetCJX1go@%)|rW}^Tg{6 z7nmjd+ at qeDb31@zYc${&KPqciUKqCPe-b?T&-I>1IP~xTb8w`+?x|fq*DGt7g3>7| z-Fa?D!6K}4%NjfH?p}f4#S00=4z#*1r_^~}pSlcTmSjg+fb(2D!nkeN$7mzmItMk45JsP=jQv49mJkGc=V2Jf4=WGFr&m2d| zHJ9RB(Wr3&swr~|QQ*aXNt8Lt_10qTVwHPq2iot`yuW{b_}$Ao=>sSLslR at _@bFq> zx!zxZA9_W@)-L0UgEA)0lDie3VG(6LRa%85&{&u!ZP0#)`@5^Qs_SSis1v)o6rPv0 zM%iO9;f1)myv?($xh}rmn%mpoulr9=3(JsXa#3qai58YW2AIQxgK9p&Xh$y_5cI<5 zSOcva3Mcu*6>pv1++S7MmWRlhPaneXqY$`3#lh#^T&6r%{kKTh3U4px6^+A zyWbYS{8#_-U$uYu``^|sFRNKQcAP3t*u!FJ67CGt7a2A8qmOCEnxV;T9d1dvlzXCWBV7Agmep+^Bcu zs)a%^V>gu69sW>pd|S}~2|(`GshO#A9UY}%uItQ`TmqP7r+EsLt$3ESTUxgX2IznY zCSrdBJ4GmIi_F=#Z{9Zhn%-QVrOh`1a?!e?vEBt>9b_=qR+mD6_vx2n(R)p{jdNIj zWZ|l!y|%L0zWm~CnRGEgZje_&_N;ywm~H6}0xq~v2zW7AW9c)l{5rsa at D`tCMzpeiRTp*uDs1%><~ettvbTfU-N=ja)h2~&;TDMN{GwQJq**3s$V^GVA3Oz^xvV zQZXj>&*qz`^CaG3jZpL(ZBSGznT=WrEO_ORdc&wO_RBR$NuC9M4Imio=wk`MaW z^{KNkIQl}(XKnJi{?2pjpZC9bg?7Uj1N(AbuB&tELDjXFp~#{0FMV*HFY7#QVEyZa zE(Yu9x5wwAxm?>n3QXpEFBZOX!TS!=%R3;>;%`j4@#{2rG)NHk1+XS)B`x0E*m}!Y zh z-dlEhp3r{xryl||!^=-1xN;rE%obXJ17(4w$!J?M-JZO;e?Gg%VR)H%EBk2URZmf} zS@@M{O5DToTz$X3&txTIu8-j;9$MZol1r|C`>lz at BS63 z_<#4xm`M314Caac#E?1o}b0S*4kmir1X6+r(UW z{zw$_oAQhy6QND$sZZBvv0Csmx^wh@`}wPXP5<|Q{Mj1qKqZ>!DtPEu0lTzWk0}V| zmA6C43;Gw1;;;ri$GbLGCU at Q|i#>dKCP0XC?pbQX at _H%XVrT~#9`bw^K*|=2BHF2S zpYs98YELanpDEFiJ)W0;Dh2%TVJqz-E4uh>yxKEtk@~0aw)6K{o at 3=$y8+!Jwo2 at j zHn_!{;91ru`K7KaE2UjEWWisMAuMhg6YlG)C at yGaaAYFuE7yiD+_Q2aGKMh3ROBD) zJGr>OyB9 at ntSv3}f`PK|(q^)Ebd)vnp-oNBL;>vTPxf-nvigQg3k3klEpm)kEdx?Y zS4R`PPTlzT0XTz8H?Q5?cFKKd=l}G@=C{7G#g9t+GO<`?)a4Ph3ynjTwjEPh`zau6 zC`@8J;DSb!`RL5yVOkhrrSIonNRS1Qdk-L3U+cDN;|^dl7Q4Z;dY1;z1x(lq>HhY* zK%o63)zl%P)O8YL0=Y78GLPoe3O-e2cz)hqw$a$0uJi0H^1En&4_v1Kol`@(CR*w_ zggy{JFx{3HdTn`era<5Ox0 at w+Dh4Nv6{FkRk2V~^F0O>tgP)y6lRM!q!tzpVNd{bO z;9wZqV~A$w=(v6OyxaB_YR+#aok?Gb5nAwBZ7-*y_*vR)Ydy&zAw>TH at KN<~vreX)mx)5SpTU)O&pqY=2 zD{wjAc6QFACD|=yqrG|aKJyx_>H8mRujkR+{4t-e&cnPjM%V&{Vr6ML?H3O;*#V=B z>0QpNS3sS3BJqA7J|4H7{p)sh8)kfy`()fq^ubXynSdh6NG!sXmD$jQcp&@w%C_Q` z!W01PpDZ`Ic5!(z?FoniojjkC&v)RFfMcP`qE1`6$b=rKBM1;l)UlZ67nVZf zj}^cRT#4Vn=$s2&T4=1fN+XC5vS?X;Dn>4A0C003E`I>65{;ttuoTa;_J!}*@u8ST z?!|JhKX9se!O9X#doWaB!F{b`)KqcPDFR(w;b3Xv+)n=X z&$w`*K6KKrgdXdyzgar*DDy(u5nkdMcocdqAnf at W*Lr2nD~>8J>w$}Fa(ujEUMWDf z;lr0tPWDTg$I}P0e%ixL@#3)etmm63p>M-0S8CUSrL2XyC~du&Ztr4N?J6OY^)1L; z6#?|bDkaQEwFX6j)gjwEI4p2iTS;aepJn|3elqRJ5A-Mo&o%g~9i!|!{^RGJ(Eni8 zIzVU*sf~Eo>}4z*!p8eRg~H0d2cjneNaq&ktB`tbkul16+VLs<>c*6 at LR{E=cy_>T z?tcT-TWi`7e(#<_IxZvNB!HOrvL0s+&8aN#ieJrGQhd9kql*eVC at LWxA}gka-pn_Z z003cD8%dD6dxzmO!Zw6z1k8jNvGU4VwQdXGSc9QYYoWH0j9jMVq7#p+9kp0GGxuoK z%ipz5^7=^udU-j1PODnk{d2qg-+wRX)irsyhA0h1f00xASKCTvO?R$R_scrYJl@?> zM)4v5q*HdPE%~jIM1u#6;ca9$>mhkAc at n>NPvA)+_58zJX8UIjnbhF9jM8S6i2bZ!*fd;`?bug+I;B&K3Xln*@mp^+s0z#)m z>AQKtOU%7>WjfKLcH?99U)D(;(1!l*`R?1#J6r867n>BQm8OaK3`Cg;GZ-u(Trx6l zFfmy(5=UgvvW^juCV_xwSwUYIhwq?NZe5Ivi*6ynXd#1ctDuE6el3Dp@&R3ZY?Ky! z6Cm`|)`NCuGWmLNb#-1^>v{kah6e49jZ14j4#+zxYZ#xp`g3yu2(JT-zW(NYTU%X> zb~@KKH`dz5`fA!9Asfbadn>SBiuPz2(?!K)oSjQfp;2bhh2TO48PI4TVRo3C&jS3p z!DfQS)pa|fxki&!1JHnSwIR&w+slmAZJX&$a$ySE6$^J7 z4SaY1D04B~mR43nY-ludsp$HB>yiN`%W^K^VstVf71N8L0*tz% zr31My*C~J&CXhwXLSbhPhv#C>v{whk#@Z=Hp1$`PdNFWglyM94Eyk@)1w=BA2GKhv z=z;=$*d4G4Xyo@|Fz%CaB1ABoPMA2%LiblOp}e%C0HOP9M}5vS^y#IKd1whkN58Fg zdc9*^`3)!adwrX>9kGl4sd)u~gbyQgQ=BWVCZqtV4kf*NRGE_ERY5TK7BUF5eL zK;7y&eY&c$GAlD*Lr(_7Gw4Y@&)SSS)$!&(gAwsJ+br{2X0HuR2F>!j=W5W{KNvKO z77ZB-nQP=Y&e at v_zo7sjN|}$z00=>gFRsW}d15TyB2S7Y&m)Vg$j)x7nGSZ4l^g9S ze6Q!qXS!A89CVlu=>j;D>Gil+cT?qK7})xora2g at vwx1Dyx^fymge*(&Oe`?o`+JO zbB6Q3ge+O)aEFexycT)k3rl*&nJW%?!aQ2 at dv9)#QMBJ}@ha$*bwHaus<+bT%eQ)L zqMj$?qlex4wklwEO&W|ahU78 z1x8FdQ!PIVj7&LriSVNGBD}=V(BJZbpM$1eznj12bU8nQz+b z1(bi{1AmKhNVG*A5b_?m5OPF7$nQSicEq^xy8zJd45ylk<-cg>d=S at Cpah>Tu%0DAT8X=BnrniUi8Y8L$^nLj70pQh2 z2XFSmPD1mGvIxzBSQxvvhVoOtqETSX|_E!VjvFDGF7cr&0`wB|ue at p+cvhe+6W?0h6 zgLD;!2)Rp`IV>`6Y%-&Xu$JI(!G;W~XW|xt<(_ojSukU$RwS=L4+{#5MFx0a0G}Y* z*z})sEhTU_xlUz>y9nSzU4~E+1iGs2dNP7h?gJHTAvpE z)M3Hhb%05W0nRIP^k!OmM38rDf+mNnKn=%*!e-FY!b%!mKOnd!v2x7MZkIM3-$V|I z3sm&JFqGllv!33BF_1ti!xjla1HQgVaOq1aC&@#5Wsena>)&8`SdgD9B+Z+>X{k4Lb^|Z+>+nX+s!2*Sj^ZfqaG; z+?Ei+4uQnjK%=_N^**aW!)r(X1=@mqOZ!Z*vTiuPj{=;+ScZjMQKhgE0Lty=Gns2L zVq6shDi%Em3Oqj0PC&HW1m8$cv5zN*!q42g$e&{l^c>8zcwumbdx zo*w~1Uylsz96O#!XM8Tbj(g1kpzmHMu*x1F#zguyhm-d>=hZVgf6breOT{)n{7wL< zlJKR6BKqn0(FPTuU`zTAuMW at Ds~r2nLI(=- at XUHd`)L2FAa*grww9ohI+q!nB at g6W z17i~4BconVy|h7DZ3I;qth}m z)}SGCWAAc_UK!B{X>*QWgdtlT48Kx*WsyR#F9nhR|- zM6V;qYccA)UiJnk+6D^Soj}Yn%;4Mo;mrZefQEVEc|m?bE4fUGi(+3!^4Z9MoARHYpM@?Fu7M>SD|M335pZn)`r6Q}X+U~)v)&y+hs%-A+GlQ$ z&MyFLdIXEm-zsgNg+6-s?jYu}cXgST3omJBe<#)3=zi$m`@1^W{fVUkh&sm5vH0q% zcaa9?KGy054W-%a4&4eZgi(Nup!0f=m5mXJVoa2Y(uc-{a}tKU^AUWC%=kBr%J=T@ z(B0XN5i;r6d?%A9S5Z`2Ktoqn!hrXTw at z*AutoU`9;)Z7gr!(9Sr|l5%K>AC=oVvn zzXWX#mSHbz*ckuz$-3E_4FJy54F>`V at X%;f0dKE>kHIuqv)0JPpnF=I2%FLDCSCHk zo+d*cCoq#}e^ml>QfZS(zA8xfvHi<0zeb+oa6ChaJHUGT#sGnvba;4%5YR>Y3_+}g z(A5R3=SxNGc$mi`qd8!0Cf*4&e60uc{thrTVj>N at 0*=;8divG at f~#0|tDIlLGF=7O z6(CL%^%)mnSR?3`HhrkT=Fg?qFLl|A+HYBYju)tU-2-}<8RBN^YT39(; zZeGh6Aa{CnoPMRBhLqgp!*HPlA|c)|pC(aP8!g6H0Np?kS>nSSybjM1n7Rs4;EFX1 zAmfrW8M-MveL*R>Lx~EnR&S==?g78U91wl1UaSJTxvxr1Arj#z`k|nZ^;KpH6rZUu zok6hX{7oS8&&L<(d98x=y};ZuHZX?7Dkw6?MTWRIKTYF7A7VzZK*L%?di~0kCUf=3 z9Ax)@*$@;b6rlqxGlid3(XG=LLL7x*WqL`5=I3s{(H>e3gV*aKF~2%A^s^qu<}IyPrbo^ZTFNpStET8is at hUe!#00828p8NVtWsNU?pDVU`+vW%V`OgyifM5 at ttE9-+OPLlWE*@=E_b*@BMQ-{<%GVuM+U at IG1-7Tf8_& zknVf*gTZ&4RGgk4APRcb6XTdf2 at dG??h!t*z&Z+f5&E-8^D^JBXoMqIhZmP=5#U!Z zuf*Qv?=axr9&D#K`&(&$cO%u|TPp{+m7#Sp^%`25J5!M zYpE46vX4$_$7mX0PzQv3CA}&PG`tO;S@>5Y at B*c(u8W2xsL8HxFcfpQ1#`7>=M9&o_M| zf8ju3 at Y3(yoi1{|kj~Lnli4KbM;VkCU`aF324f+>k?y4>6~9#!a(St|-)pR5<++dY zJ?BNb1lNYq1g-eJuQ?wC5B<$6(|qQO`7!^_Hq6h7cmMIX;M4OA%g*!ve2(Ayk{*2J z(5JuWdpHO7!Eur9xgfr`FSbh%Bq&zDs7pNG6coLB?)u?QU6EFXj8%5(?ee*XSM8r9 zAUO52C0}f#?0c<&4 at Que4V9X1pj`I;%JA6om9{w6ra_cSYq67w;a{bV7$WM_qH`J1 z at Gkli3_qZB9oaJa5SFJ+!&mQH-ZQ%dk2oH^SbQ>zTvVeu^=9LB9Nbc|3%hS?EiUp2O* zL2LZQLOrHZnVV at BFz?jzWyntSkMB$Wx>o;Q>&>KhJ$))3nd at pei%RsX#WLW}xIP1q zl6?#>nMxC74srKJ1C;1f8e%1$UY?`auVI3e#TxQz)){ku7|b&$h(aF82b>xa5 at XG$P7Vp2!N>8H_{@5X1S0)7R1Mo zr|IzM5|B4dXQ2ACOTZoj<*~9>qvPiKX_>8IDKMA_AFGGEV}!&fVLAbuTbmK9H#F`F zoAdJ%2>2Orp}TmHE=~{A@!`j`Q7@)OrI0G6rBq&9Os#qW!B_$$7SqONCGG8ZQVSqh zDMMIRz+YobVeGu^oyr+vR+!&IkW6lDIl~yqB(WWoVRpdR(vqPftAkr%{Q)3zPdjeX zZ@&62T at SC*1c1A=}=xvyBFE^M!J3b0Q2=780 zi&#r-m~;(g0GTcV^iX_dXv^Z(i#*rz7E$Mj at l&X3{f)7{auIEqMvIx7Rhyl(2>m?) z+!Y`)kl=ESdz(~ixI;I(NzF2m7N8+fJr6Oy(58!l1b~L$weliV!%L8$aMz#^0P6X0 zHM|RoYUO%*yo2s|hM>$Xdd#bF4^=}}y6@*XLC*?u4neHIIbQI`brvMF)B<~UCYzj+Cgy at zAvJsn-z>$Tj^XE}~>Z`zQbr_#-U z(NXYv!$qDmSGe{o+Q_xehkyIsT!A`Qo@?mVL~emyEQ0e|`|AAhL2zZ>tX>J_l24R2 zy*2>7^tJ#WFFq&4N-A@|1~lCQkhRtesZ}nfulKv@?apR;ySJJ4w%Q at 5o*s~+gY$HS zyzcej_wfjWc+CA!q&&ymTKgE`GoE93-qplIjD1%vyTC%(EO0lM&5?6_^rpxUVZhS| z7rPl5vTw0>HQ(8f$Tg*}(T5n3JSK+4!n4bGX at Fa=@AS;n3;N3i&hy=^2DAoQ0a+|S zn!;xb7=@)&#~|%&Zt~t_+$^H4rwW-j7(22k(E;Z#VASuyYxn4g5priSD{Ewsv at OV` ziGbi-pD!VQ1%OhrZMGbj{R;s2qF3EH$n>FiiXY;$?Uj at qn~jZj^v}{bb5E&Cn!)C? zv?q-(Mc7wEI_khN_dX}*j20t at Q#yNQEWFpFD@~Dot9&ojN)vPXoAZF5Gtbx7E{km=jQzA0P0m**Lh)se#m at qGIr z-TJ*HTU_`sos1&H>7q;L*lQi9i;D|}li#5?<*D~KN}{|lnqeC1zmJEH;}ci#Gl3jChJwY=*E0d^W~h6W$3o-{`ByVhKbvyTA$I`)Vbi8 z=poig#b5LnTwtmM- at B+udVS!e5uj3VUIkwW()1SJ!7sz1q2{~Ld6!@bHy9XWmQ_0gI}ioE!!iwJu<*vys~E%_zecG{zX2|E=7##EgAVE}I|f^ELb( zSKmX<(vN&FxBu?DufEr%T(JYZS5c(a%8S}&oMCOGd5A3%R2c|e>(?k&UFP5Y{dXbg zMxfs5^bTRc#BgJmD43(R%z!xou3j>a#R~6Epdm5CiVouJCg;^%x-Z_vfF3O~P><;+ z5b(7?fR2@$HNHlHTcQPoZZ&uX&NUsr#7Z<5&874z{VhFZfHzl67W4uk1YEpfnVFYG z6?IDOjU9m6M%wG{0GzgiX!RzlR4a8om at f#sOWKOnc{@tIiy=ccP1Q11#QIX&+uKTi z_wBp1zuitB-t0iUbtY;#tqWEFw9JbV4yNy=K7yx*B|317CbtlkMN9#eXH5S1KAi%T z&jGpS9~k-=4lS+Vil}>lj$<}US6Hv77gvDnL0H6sa#8+>^AyYqYHKW7#Pp}X{KRJj z69UA&g$-dC_SE}jZo>IRpP64xt#&t!^@!58at$yDK>Yl<$5^c5a|NXq{+zCViaCI zJ~y-torHVZ{}jMhkXPv;IJkC;xq18HE!P2hCsXFW%-HbUlgqFa6$GBE1v*2S%ESs^ z>qgq|MVMKm#QYfr>V!7B>dU+f(*w-u93p_6u?HBYP$~T*y)h=G0pYCkOxd zE~8r(LqRX&%FLPBGe9soJulS3D3c#KRE$wlLxq3>boH8oS`U`(66Bcwm(xA+bL7Wh zc9oZW>+^X<_<;V)8{z$<%|KU9rO$lt{pQ{-+ZFE|e*d at o(JK7Cy+BKgUU?Bf2jTDa zdW`0Z!#4RIpbw?v%X>t47 at -!cWuuMU-Fxy$0qk=_F-IS00*8i_##Qu)8^?QYNF2Ti zMtpb7<9ATzX9HMlsdb0e$e= zW}}k2Rtso1Qg@>j`}dk-y^7p?cyJ$7jA0ax9+&%jXq#skEy#=D3XwV@&p8%`$T}OF z;eB at QE#7b5oj_k>Mp987)#415^apyaG6Lpe$c<#(h0I# zpx4J}l{XIFy$^%S`n1<5U3UP{)2<;G0F^$>kRJkb`NKJqzU-fl3u!F8`;4DnP5EXX zV)Hk3N6;f9SpvLS?#rBH^`HE6c{M;LF?Z$!zF^>S|KI`MyWK5x%Wkr^qE!tnw4Ff* zMj`yIJc#h7#u#0W$O{8$Sl+fsqtdGL5Jm>=x83ogO}?b(;8zZx8w}uo&fol<^P(h> z{b2sQkG$du(xvAKu)L$ZoB57*_?r)bfL$-(oT?MUW5~q0pi`q=9lp1_&Ae7~stt12 zTCm~+fxA4UL98q`_br}h9yIMyw&px%fvYO8cE4Yx zF}n=X- at kvC3QYRN(GinYj9B;ebjTg<5nxYIqU5*VeH}#b>C0tmZPX$^$}O#y9~RR4 zH*cBXwb)y6z0pk1bl&je$?+)yZZ%en=^4BN0Y7m+_gQt)&(DYH^U)=f2UD-q((&iZ z^y8m at P4_bwQy{38Uefqxm=@Qt^f=PXO{x_@)&Q+K=(r4sw8-)9RtGR=J-&6vCI-U# zh631T3qXjX(2|`&q`!VX3;`oy9|It*g>_5cC$|%T$x*r*V|^^UZORpjdo}&be{qlw z-ol(a9SC=W;j{8MO8A=bVf>4rC*yQ=ah+(P0xG8fjxvCI1Ax52JrcsfEs#`(0 at cM-tGDUDd5(pM{h#&vX`ldCA<&O8gwhAx z-M&1eTjuGqe-2Tuq;J3d5Jaz_mtX}frYc(-%$03p1jZHM@$SYvNr-#3lz#g4F#U2g zN}Id;X}#7+hi4}dO1T(02%F}d&TR7*AIqm~=uVDyR2n%+G!(P%6y}ASw+>KMWQ%@Vs zO6v74Vs*FSp=Sg at xcO!kow0lG)CyWtp$GW1{=_ZncT7evpYLPS9=;8TG6&+-PQ zYD5h%_)0()bvxtlz&ZhF6_74UG2G^26+x50Lzp4}G{-ltBkzA!ZE_Y2zCL&e3uYC8wx(37oJTI{zYFo zJm0>DmyoehVadlP>D#8f%S;A_CY3u(V$-}^0)KOH+=ufWN897Mj)&)X-w4}rx{6Og z7b_LHMvrcs&vU%S?;;tVzC?cz>bDO!u{(xfRj;rL#B&f?=?NO1V$`lN$6Jjy#$z?; z$~mw+ke;>2CxB2KfD08l<0)8BaRm at T{yyAbj6clM+VTrBxR|y&HDp~q?QJ#FW^Fya z+u2Neokm0;AT{_ZFPb~C5IlhI9vU?VSP;i!qW+lqQhFIy3Z(#R9^o;O4;eG*z=eH= z*aU-a0jUE(1H&9C=R0zZ=(9$VKr at Wf>M-1hMMU;BE%st#{bd<_PD$G(zPS z^S at o>HpNJF2NlUu8nxV+JfR`$xIIb7j7Lp_64|HIW`ZmijtNp+E$civN6It)fQD_i z{Gx&R6b7~B*i5+z+J5DM at W670=?)eIf5NEMz%(-F?~mvlx(N-_B0ZPR0sjOXhA(es z?j3CS8d(oLc3L$+Y$+9Z#sfOi98$Myt5sIfm&I^+EG`w&6`=UXpMMS~gSqk1PTIY? z%GmSF0KL2`Cj{ThE9XLQU*x^XOH772^2$(k|K9!%zpXHygQyW~b(6E>lXL{WQBnjh zKo?ZOH7<}`L_e6?wXpaci#JLxjz2MPm zvmN{VyZU!|&AOqpY|uc{6?AmS3+@}wgqAGaUBaMLzqs&EnX61w{yBe{MwYT?7Fu2U zfBgQt?}sQtlY=V=G7+ at iKRq`)C|P%ZfYl*12A03g=L;*YT%bV=Joj}gttEt*%cSneZ|94A&`xXAXo6Ci5>dfR><`A?Qvo`so>FSVRy#LkM~t-F;+dYb)*V?*^FZ zbemX-F7l|RO$KzcRZsgH?NnLI1&A#{kUdNg1OiqD at TGOC)$suHE0M`YG`9AX7h7&Ef7l4~yBg=Lu6j2&$)lk*~j3-0A5WyoBVQZtC z8m&$mAaFi@`4X#i-8IC$Ev*5xwY!tvy#J8iyn7dn_~z|F`s&-Sv26FTsMaBz5=2l+ z{i}X>UnLat69kf_Y7 at qI3s~#ITx)4}dpEu1KK0f{gp?H;Rft|eVy>g%huyvHaEUL# zRPR5075RiC&TTb1>3}&>V7E6KX={gjpsbcu5~WJ|^y!#cV6Fl3j~oKs#f1XK!&$oM z14x`0Q^ zN@#NjlMbO at 6UQwFadp+hV#FXRE at MeA0Y=<^v53%HjQmx@&xnoax57}Z606;v7}{d4 zsX$3jqBX=^{p+ESF(rlyOA}O1)=3pS#3! zfgy3uDm3R8;eF$CJk&??96hC$rqKIl-%OEkShDvo1Ih at Iss;Gn`}z!DhP7xW;K9WV zf+%K~`-I1gIf!?!p}7hx#~|*(qF3VunBzN;q={whicZcx~ zaLAl4+7IrxuQvzzV>nljf}Wen^*9U&=f#{Q!Jd^5o-x**9&dTpGjxiw07bS at PW8%K z>NLt}qft$rW+}Dc#d-+^>OwNc(IWOL*O`koZrx2tV~-bYTtkiD!TaY~(Tikhh&sJ+01_9wS3$mP--Dm;qYekGdz{2r)A5$IrUtUA^WY3Ytm@>i5`Ymj2eFz!An3>#fiiW^m zdNe{{PH)f`px^v1(}bjF0jtUWmg{PvudET*ZdF77xN5o%09h~T at w$fLGH7y at sI-w& zHRRa`zAvWzo$a8VW59}hqaIbxIjKG%9w$;815SP&l-base3;k+QY13|8Ok$yK+o3#g zp^CCyKx_VDwPM}I$EX%@4)~i)XY|ALC+^MoD;qEQO_^ha)5;AR(|XVk-oHzK_uF^y zG=>aAbq99PE3M&Wq(#1QJR--DcO3<}&ZWCHxk}!WUoVX1UW|hwa at Scn#~#kTN2CNv zt4yNu(3jtPj(u7Bw{Nz-Us)CDKc>UeqjWjwrL}4$6>BarcX|IHO$L?egE6&2}ffd%u}lts)lT5`A32n&KRU&@zMm zFu6{%;WYjDhaXd;(n{Tp{d98NPk;L1*VMb3F`#)B at BW*wQ?0R?rnk at OYIu_hntj}MLInUBO*Xit(@9&;d z!$hI|rSRwu8=MxC9#&ZyWw-5BA4NW|z|NO&G>D;nGFoXLT7oeLq z_cGbn!mWD;djSBoQ2dR~q_Zza=@ELe{@4R;x#;)OY3~vs{2s-vWod~3lV43&0O;wh zLztRmuJ%?yD;(V#>zR3&LYHG14(1T3!GocY1sHnx1YO)H?xFD18|XRCNz~6nY3b=% z<5)+DxM)QtlMggP{5vxs^Fu$P5!^r~4CaK<6{PaR9n2W@|2QjvA1|3(p{Q3zfh{2Q z+-M`;nM7{gGl7+_5WC)&%T)y4%XE=v?-s`mOJ;M|2?mwtfB%@UUPT*U!)K-qMmouBXNKoYM)7GoO}b zauJOlLB2$ZPkF3~<1RQ;Dc>VY>fyOYa=%*EIZ0g*`|$FRRsd at E?sr{e3=8f;af?8Q zf4Jz8zq^~()mw=?Vhh5yY8ax;a at yXgr`-*d(b{rqqi|fI+vadrpfb;1Wh at sRBZk8i z0hN`We8Gg{=MSdCNFRnx9nTDQUodKB$c8EWDxk=;paEluQ95v3^Z+?-N5 at C-um`jJ*I&Ui&WWMXob?p2e*dMeNwF~{s9K^Z&uEAzy20d_& zt at CIb<_1A;FbLpg6${-2epAGv6zpj7C^A+bBZNyP!aj$JlCYy91HD&rFArDKMUc`2c{US$<<|SuB{bThXCtXTnZsU;|c)kWqBd;(VC)X zs6|j^0;Dl_3-l@|EfU(<*^hAFkj}&^J1mF((ArJr^TA*!aKmi6P468igsGtDXyinT27BLiRbXFrv(^g)%=!8gs}}Tgb;)w zhFA&5ho@>*EVyTYM~lAQ#ln- at Tf>XBwAI~7ho28)(kw4>baGCcuDDNk9&ZN;RHRSUye`Gub+DeSIgi4P$qqt&*We%kGs6bt?uiy zlat7saNpY>fA~W>KRpa$h*Ap6E<9L??bDhYTL9x}ve>c$FhB$ZB%xZY*^)Nr(-FX% zwtqRH|Kqg0u$ry_u7_VvL-+}xJ{^6*S_dF-?Wa$Nso$G0ubt%9Nu_oJgQ1M|R16{g zz~EwtFiw}uq2Ab+WDeuKV_0uzK at 5|17`v~&`Z_)Gw>fdveR373xkY*g&JddJ4Qlo`}dR`9Jtjj at GNPjoXn_sVhmG(Qw zO3Cmt&EL5yZWNwK&ht9I=iSdf%6AjO<8p+riy&-^!rol6Ro*o!%u}vbOwO;SZR?40 z)Eia4%lXCO!GtcQ9mn+c-f*aSehU2CR0Y6Qkbl! zd?q7+sC$@NkIb5Fk-o$C@{IDy1bO*H&$-__>o;5@{YPp5{S=6Xr^R^}pm3}J4i=D0 zMxNY9T^Vf&C>5i*TG#w7pDEi6qZygfF#iSF?0&*Ul)rkw>tZ1e{f+!G=+HLkpvZ=f zX$Y_29c3+_27fUYG&jaLz_K(ge{xv$tnK%N*u~Kk68x3mVSykBeqRReAvR9Q!QiS->dx(dhR&Jzs{A^~k#5&D_5-^4B(M z%xeUQ3{5AAty#HGmN!}UnA>V;Ha-6<=qdBc?615ee>n!8?ztLh^}4A78WI^u1aRP9 z^K=%yo`&$PpK7k7fKv~gd?Oe%|4p8cMH9?#X9L-7Dj53fmye&IQ|JxQsf?0-=DExs z*S8i#&IXRpv>!pMPDapo=5h1#Y@<1{iwjTb-TrRsVm#f=#%Zh5OcTSo7%!Fv8jhv` zlvfJ5{Ejr#0 at rA;7^3g>0d3H=<6ExP13O5|8Z&M9Ut{nQ{zjYfw|V4u0Q_E>jGY_H z+*s$g8bI1{Sz9a7{%1g<(NkzzLzzxJ@(gL+)#hiGi~-v?x8^r0zoYC7=a|c{r%v$b z?;5;z-|qx|Q!9PYM(5c%at`NU&-ak?uk;!;%WFQ*as2(u?0XCRPMEYxvzAtw#H(@M zaKBcsA%xZ=!MM|Cquh$g;+SI|{N)S~16bSH+DH!|?SgY+V^Oq=fEMUnU6dZV&*jlH zVc4b>2%+D*0X(dxt#&hnu6ZvCD?=)=hbf)Ug^m#tOt4-j~%k<0OGW~pV z#K23e2v1iMuRyGTr-w%-g8ON7Y;EnNc4w2e)dE;{HoFm09Rmi{iyz+ed#eJYm~5@( zR}Qf2s%8cFHy_ at n4{!ETt-PMzbh~M9Ycq8ljr8r?x2atR={F29l^~!=Sk${a?X=U~ zVDb<^&$n1=G~($xt*uxz6AO(=t20i!o0|}KJMF*Wp4?x8anH)ri$S^saG4`|(i@~@ zgxfvsE<%*s`}=9VS_jyfgY%r$8?AJ9e+z&fr*rEdJuj!}4Z>#jm at 52MZ*QbW7-I+{ zu9Yik1F)_ at 9gNL=TTN5L=?FmSMGzuDzXk-3U8I3!_Xrqtk3|Iq9SWwhD5eUl0&`h< zXG9y_YudRs-|d>Y>H)@&0K at J+b8&o{x>&=%|L(UaBa3#^C*EHQOR*s6^vg%a=QegO za0|FLbhU|Pr3G(+asi71Rv{|*cW+UenMOB&K8RGs9Tn(#zREAajKa`!`79IK_5e11 z|H?cHUn}z?ZvvpGcvKcey$y_QE&+p8kAexs5&D90;63M`xk3#ZMYy>F+2nK{6QLN` zglFg>F%J~F4?%$74FRC&F{H!yd=93U(P+Ov+x`s5V1AjNHv8FjgxGxjU11PmNdeUS zJg%89{7{7GYtX{fyJFuJjJC)72mt97cnFfS(8=Q$-}9W< z`;&GAu=F|cWbc_htO`lbi*S|K<)1k#o)Sih?{?l0xtDv75Q1^C-}~9|@tv>cH{oR> zxH*Ij0%Pw^GFBugrOnMw)S$GND*1K5nOmOeotXgS27_K2U5}G{)Xts(fQ*F(rFlXw zxS**~UZsP9R4En^m5=ETK6!!1w@`ow at KzV_SA@rFD+{T{Girc{b!2KlTD_uxJwtXD zR`K z=Uf4pIaeBUk-G=Ix}eVM{mwKLL%l8($)4!N*eOX*qCi65MvSrai~zf`a~%o? zZw|sk_UY(^_Mx|`jaW3N441deZB$tszL!1>JIYH^oI8X36$JA?!J*+eIv6?XhFbOH zXs8?3mRDS5EUl~+7Spf?9bDf7I^1u3Cji#n^(5%Y2#O(jH|n>B?Ns2(Gc at cNbYx)$ zn%vapgz>=}*XA-YZvU0NQAWn(WyXv#%<~Meh#W=b2XhTD5zLvd=X?rk1yb^rhLPY; zxdSKhS(zY^5R?dfSAs1f9~*x38hJH#I8s)~`yAPLlgAt_h6sJht)uPc&bhcj at aO7f zy?-utv+ai0t99nMfYz9*x|C=M4RyfP~t7p`LOiAE-if at Ib$eW8C(xctewy*%C>_CVU0t(=Ksoy5 zOIl*mU2*0E^tNba?(c4=9nkgS!#EuPeo7EzzlRWffC*51)1lkD-G-}s3#DDaiZCZ4 zl$-BNx at dhd%AaT at LX3j58A=nvb0Tk;2nXB+DoreM_rERBu?Bsz(zkV|0?4AQ8_hB4C?GC-mne*J8us(X=}!or7YN!E2{#9K>{~6B1np=x(|drSU~wIW zezUU?p&*mK_qv_5*{p|0wF7{x0m$@bXmwei(AqS^UR+nZ^H`A`}upRNX1AxJkiwiyqs z>3b9-Z9g0K)2A`OG%@4Q0B=l0&Nl(NiRXa3gU*#LdWn{9Z(Fj13xTN+6*yv^rrQG3-Z^8_s!( z?X-p%okmqmc#l=HeDCfb%G6!-OsP~&fByOBbaFmQZ{EF6#Y!Xn>4zWl7%`r)XDZLM z;((wcN-Ocab+_MyM*Q7zmd0I`X^M at 2!yHx at Uxa}||AJ2WUVtN*v?_!lz^~qS(^p@= zOBa!|c!sP)XE8=DG&9$_i4kjr<>=^`XD|fH8|Fyhqi4s(AJVENQ&imMtEsExHy2vQ z%2)t|(G1(`{M-R9)pwg187_*^iBd#o8C|O3o|0Z}(VK1~>#kH1 ztWF(6yOua}4{MEE0gW=#MPVg*5F^7a29>MIH69CZWVsoA;@vjd?(5kkfOdy5c(d0< z_P{03W)~pn-uCj;=H^y7a!iX-S5A4p(Ky*Di~=UbIcdYU?pkKfp*!0MwtSXD6Dc5o z`MtgE)S_<#e`j8nz$Gpe at tRxiudSlDz2~AI?r9pFoTv*=l zEqaIR#=KtN~Q{Uu*0MN5RkNz2EAbjn%jrxC^_PEXvM|yXHoWK1UPA>l3pm7 zMNf{qZ>%z5_n>Oa%hX+{0W&pfDC&*P)T-3e!TteYXaRt;8E#W88*?%Y`aCljE3|1c zxo3g_i&Iz6BA^jyMJ8TLqEy6c#`@_30`}{rv|BBvP1 at 6i01q0q^p?r2pq$Ohv^Go z$Nh{;0F!UO`zC!nJWOW*zUy0aC|#|C0J(cg7Hl?z@%hssV9Pu-gscqrv>3#%Fc3gr zo}EIxdazI+3Y*a&_0EnXq`7GV at y#$T127k!U_wJa2qz`TY&=WH2otvy(wcGK#Fat? zK)Ri(fLXmyXZ*Ihj-Wyq>FE&2#@2O1J-h(1*$f803$LZ29IaGW`kMEnlDO)fhoy7R zb4OPfC at dFJAcVMg8D%Lzbmi6*0ce=&dUO?u>)nkSZ5^b=mm36Ag?<_?Ee3-YAWZBI zlpvNM0L}b3H at G$@#!?qWb1)GA)<2Sd>dd#v!@cu!#_=kZVZ7#MCyfy*)7!>T; zlYoGm3s?H2CJv7qAUp)4ZS)#C;O%Wsw$Ql_Zgs_?=kpfrrzQNY(3IW*B=**4b3|xc z3Bp_pF1+_?$h(eB+&r;b&&eiL^qJ8lI+p9-$nfc6flVADi at gFoA=f_CDe*OA6 zzh^LN5%+bJrZq_Q^x1Z6a$ciAEt%p*@2W{tF|5bs)|75J+1=`-?)Fx+tA3;OUP(M zTaIc3K(sw>HV{S{yrfLj8DN`D)i9s?qBo!)7W+pg- at 1q(UvEKw&vooqkT)tlSM&e; z=}Q2{&Fx*tZ6SR|R$E5p4nB at m)$pBRO+CiSN5`v+p{fBgr7dB&FTC&+g0xVPKo+L!dFKmH+Bw639?b2t`IqtVEH4iB^8z34rWzmAE( zQd-svu0l3UDtY>yhH(aflhD70Ip+qR_kCtuw>vHjs-z9eqCrm at 5`xm3380nvbD!Pp zbvHz=oS at y@TRp2+*4%Fwa%jZqun at TF=@Q^7Gv!O47v;5Ri at Y;G!lY!b-G+5>QCX7! zTFqqfVjV_?uwyd_?k(+Ghi|5yMLyq}#$}eiMu{C}PV95YqgQ$BpbLS<%6lMOSb)Hb;Q%Ecl^l;lBXo4yLh3-FZvUyLzwRlG9a`kl^0fqB!J zWM5(nP-syDR&THoF8_8&mFXV&_ouY+89j2$d5$9s5 z-y`g%!*o5y0 at WjkuDW5Mp6{?yW at C;KK*b3ir^~@*n%==+FAt#q3fALJdUwzTVjD4~PXX6*>~QNyRr<8Wo;t*^*n@`}E|_7}nX-s>{pfJ^vg=a*s^& z4zGG6+F64L8bP=+jb5?KixY$xll^c5GXfTwBfV~$*55*Lef{C<7-K-%PzQoY2>iT za4JaJ?R5%rb7)@>vNSpRtpZXQ>va$)8B%D#J9-LS0j8qW2($Hicmzy>s=tP={r>fc z^a{?8T4sLcJdX_202C;m2b8;lBzxEty6}9oLjQq+LzCW_Hqvf zCeDkg_5Ucq`Fo58WBy-$cDDGun9nnmLx)4Y+|DMUtR|yAUp=HXgt5B>NE at wo4dqgU zP8oBQP82xjUWVNCAg&=`mZT+=O#?8w-E5``=O6&Xh;nxya|$hVY?%}1+msP^0B|p7 zi*Y`AKilb9fu{%GeX>&YV5dRs>@1rEUJRyB at h4 zP}BegxM}bi<K3^k7V?l#L+BGaV2kI3JYQv;f zW6;RRi+fPev_W35M2hpDy<8e4*&8m<(zuCIM#xI%UoTK7N7|!26`(%9ET{f(!nwtu zIgK>u{t;P0Q=lhkPdZ{8?6V5iaj;)icUXW{^g!taiyT7-NXmtO96!B>H|VsgS?GEG9R?&a!o+-mp!t24c=3qcNYGhrjNG>e$jz#yMRF}gYuwqU)3eKX zt|7#1lGnggzk6>nB2ZroZ$*!b4i^Sy<^c= z=1vEMMt~kicfc7z501IC?OX`9LOwzJ;u3$m)WZkeTKY!1)|sLFa#ycP#c+2ntrY2O zyi4Em0Zos-SarlPl&>aW2+WX)Z=GWO{s7#NYiBw>>Me6tJy$vu>}5Hc$H^lD zWz0qH;TU>&t=~(-8WR5QYw7>>Z+`Rrr(b>vMN&eLfE7{^LReyIDh!Yzto7RinWxc41)E|9 at 7OD&;x=^ zZ{R&PTVd#NH5hQsBsE&qv>}1K==w(q z!mvv`&m6 at W#D at 3-lw++FN`NXWt5*OK&jGe&`m-;e(r>@{kaoA4sR)p4H>&Ah{_gM6 z+npWycAE;!&sXohPNlVKIzJ!8apT^FMYmaN at LU%Lao=Jo-95T;@G*_2cWH_Kt at 7Of z&?#W~?%S`@Y;u)W79Z1p_uu{3;rXjqEXG|!Xxes at uV*mJMeJ#4F3u5_`r9|}B7XrJ zIV%3U8_Vw2c3OuxZNH at xv~FCvc+VWf3UY)^t=$R_L#!@GLAyxl at XHZnvyxgcwMAAf zmMyT-`=AviILaa2Y;8xvI7}lbaTf)_fRKfgWQhQ5T7HJOLSb-y1!F~v-0%A%Yd at k0 z5d_vda|wwc4Z`F;(k}{?_6zn6xw~K^@`qs3NGRtVJzN&Ab_KHgXlj+&9 at 7(KSV6oD ztmoULdA&ElXvQEf1kqEkM<$dp=gn7M3Y7$p(G!G at p(KHrxrH7o3Jp8I4=~6%vFL^N zd99xrsu(Xl0ulb^X5PMgZvf4k8MfRTUif42zw1&cUR=`z(e# zLLseoC&t%M;KV2c^J-fa>b766qtAEYhMrMZvZ^Qp%woJnzT7h-1Q1hp=+O}HaYcR? z{4v)Nn)aP0M at b+QrT{MQb!tNYdZc9N<*Qa*9cr8H7oY%PrpMgcnvWb>-sU{tn-s2r zgPd4Ypz~Sf>W&VEvh1(9tFD;$rGj!0-LmRpFis=-fnI0OF`A(_fsYES*6c*dB_kn* zh`=R5H;#ijJ{Cw;p;(w-AXTk3Ql-&`?#%sz2A~JG^IYOQ3)8yWlg6kXEj`16L36ZJ zHimsyI8VS4_2Mq*f8Gc at k zQY9K4E|PMi0k=am>{^EJ%`Y@;DPS}w+>n={w at 3bVrLM}3%lS(-cn8NLsL3*&SH!(N{H_y7JMV+d}oe2=$nJ>-JntP z@}s68bZ at GQ3o2ir|Fw0-4*S`J?|%Px=^9-c1`RynJlluu z-95(VInol;&2FzM=ohFN^8MxKpVIK^3jOaMzs+RHI%!RVP0%LanBHUhkh{BHuhI9zyqT+vwjJNM>4F`X4(h-ya=* zP7MIwJ5c&6ojE@{MgiZXgSYz(5=si<(MlamP}BgE6^P{JF6Zw(zzkqJ2*+HB8DOUs zHPiG~j6u;?=e^iH!of0pS147}6ZcZ#TF~<2(U-KfhZTlEckjDrESjC}W@@a;_)aQeDwh&y%m;RcW3Lhs3SlOL0<2)n7m4C`SlF3ua;73 zZC0^>Wv&&7?IrE(x#e3WmX327#}f>JVnFbh5i&D~*3jSW%|klxjnc{GFkKFBxZiqe zbhaXQNK5+S;wprwyNiUi3jw){#@i2;DRIS at EAUK&tpPUQAlMtR_+twOd4`b%3M!Me z^<{w4PTJ~jFhdAj+8G`v1cX+5cu-*iiTN*|KcOTxV_}2U^gn<35 at FI0@81S+zL^cv z!A=Xpu1Bts3TlXI<1a92Lf~T=VZgR|UKQ){^yD-B7r-d+^me?YUw-`vC0MEH&xMrdsGMEdWxeS{ERZP zc3c#O=Kc!xC}V=KSMYlnVGw9JchVAf&ku`t&cC-Rzv%;dZw=SGvRSXFp>)GqF9>v3 zvn~gHx;nERe2VGl+1<9!LL*_Vx ze?cZXhVqUJh{i=gzaVCtdiG7FF8jX1g1W zv!!AZMEVi{N3If}FO7fDKPiBLkz^&R+9d!7Y)O^9i4 at LnZ%GY0y||j)%f!{K1cH9cZWq?uv z at PST+_wH`5W6+{*B(l&Nk{UC`b?Yc%96(D=08=&+kv)JD55e%8gWdGI-+jvjXz&19 zZbq~T5Dagd2VFz=M`R~Yat6XCeD)Nb=Q*bKD7&RYJ(HG&(JOawun#}3MSj14?sj$?W3PVJo2%S(&NTXz zd4fqjgz`%)Xo1d+y6QnTm)Lt7KGyRdd4ybRezr7XE^6=vG?~45V1b~|c?1Rd7-J&c z(3R2A0FUx`d={Ago>xVplMT$eNY`EMH=EkYUE| zW;6ZvTfJ7DR4=WiE<*Z+0YIjQWjPp`r#DRtg-RM at 5FDNlus)0F^7JZQo?S&=oOSM= z?j1M?c51s7J}QglAVP~(mv#FxAPP2f9~r-3xJTOgqUFrzWvtIdkj2`HRxu!LaV-t6 z0f8f|cC6mvGZu at 34j{ekodFJe0T@(t=U107d at mHclcNC1d-|x;85 z0noM???Mp)xAd6YYHnqPKHQEWjvENdm1=+=1PN11yBA~8&c-%CxZVUr9|b_M&e_nS z)dh3kAh4SO0{9wX03ZjDnagJ_#Rmm3?cCnqOFsZ2r_8T;5*CDZHJui`7T^tv?3&|- zr}n1+VF1Z440QwH&aNl1vHZ>C39wp?gptTiTf=L}Jru%` zANYDr_U74g=$}7*r(t~OxBl(Z^5LNJNOZ`2a8aPNJ;LTHHTq_kGkD~8-fW{vT>&V- zGj~TpXcD&;aV~=a07Ovg$y6?=1kAzH;}RiQ-k15jhD^~=v`})ria{1$j4}s*yTZO! zjPI-E0z8!$X)I&l2^KB5EO>ljJR*lt;730#U at IVvI%v$Ed4EPc^oDvws9PR%y!jUu z4|M)QLkqM`xHCg0$Tw4-F`;kLnV}<%o=&r!HtMaQ_ZGZsf!E+`1wL~jz!320t#Y4U z`M}+iF8e(UaFhk(^ME2We^jqHIwN*0FfBumu!-$@u-vcR+~B_7&rq!VE#0ex1>q_+ zX>DBqin0 at MYHS^yT+kO+L9VBx z0hq+ram-^6aN>>&Do+m;qO==jW*AQmz3gd*=ID!at!Kss5LINHM&LY0v(DVsjYa`r zs^yjNSn0uWQNwsTLnfdr0!%Tc(lpPC(qr_`)xv at p`9v9QUjm>C at ENZFt;~bGECBO8 z15XR%SKu4^!@atjt~lNW7*&v&MoY@!>35R at _f(d?jf at DY1GFRa%&#=3(Na8)vn9d2 zMv$fQ56*!fJ>(VTM65i99+VT|p%>vod2Si#n4ABmR|p&xbG*E~#(34}9w37GaDk&? zQ5R;K8)(Xc;W!NBY=Q34o^S3 at A*P_z|9Mn%dMFgD|9&`XBs}yt1YN= z(cjhOS+ZoCz}LPTh0r_Os<)$9w_#I(igL&B at 1+3n)_DL_nm)pF-C2Wa34o)gE&vYw z(5t0v3?PHNaABowGNNQCesS>$esZDAQ+OrA=|p>7QEr(a%dGA1zlA0rxF+H!(6+P$ z9qEOpAA&!}yuoJ|6$!EpyPAHZVd1Ddrm at Qnf1CSf#6meM=v21OQynz&q-`DpUwXES zG#P)!L>kqox89*nH9ek4!Qcadn5jiRi>~H&a*e!@>B8%?=gu?*<+M40&YRCND&sjh z>XHxnAbSq8o|((z`QPyy$I}0$v+%t)y2S$RU0%|-)%4A`U!@k{%Q73642H#rRV)4e z7$CNqYNgfm)&6GM+~@#;5DE--1L0;E2ChTc0AlE*t9^g-^@qqs3vr2X>x~CdACRYq z1>FER7^W$}Y}*^HSiL(&*jXCHT{|plY~4L$;WMu*ym?HP!qCMq7w6~UinX4Qd2cH18?1&e zpFgIn^Fu6(Zu;h%_XrhpVVKbcz=_3;A#&>zy6RL-YQpu|seAv8W8z&=H=*%=_~B2% zxSI&4r1$N1gb)}r#9EP)V0x`H6WguBmEGeH03SdsOuqmlS$5)XI-)(tY0z^4#SKKg z!nhS+C at pjgNS9+_%Ccow(p}nYxX0lwbkGbh*=K<0(dl_=G+SwNdk>;4Fkepq;z=qu zx6&=+>TW4|IKnz&=KF$n#=iv6Rtj7Jq=yJn!@g6LXBZ2#O(iL~P=V+omnrppXq*U= z1dFjn756s$YA)3?OcuLmsL=UaU?&#`K!c{emzG at A&Eq=A0V?%;=AO^Ko0Kk;({rHG z6?87?dVr2paDqGk$(+9bRfy9*S8AH~=PyDmMS?&nLU^=Y0Hz0Tnf9y61!*ooQT?by zY at d{G?Lrm*-K?g!64TidMy9Zld7M=!T2iJd}k#$IzxBU4?sqL;DkBWq?z# ztgS%bxVdAg*Vjr3(p}F*Aj$)1C04ycugtX=zq|Kd;w8Q&WcMIOL z)XHLNZ+1e^OTV^94}>)cRbql7#|n}}aR3;UIoyAWEFVp;BR6;m at G#m?Tq|Le_R|FL zp=U)eiJ;RxNL6<7MC|noAgwh3ru6Fcyq8YSCji&XBknAuwq(Jx|b#bj{_q zd;Ze!sH5;*@S!L9{k#1z*i9o4=xlboq1ZL9^rBgXz&*cR=@E-OFcE1=kT`CMnkp}fVexySoK5WR{5tfp|dOJ zI6`-?ys8&p at 8LIJe@$PC;aG4k97pF~Iqcukzw_;6%mH9{_0)&VVLq36l@@pf4Zr^F z%ek6=7D#)KM`%@jAmCp5|NQU&;d?>W73h5b;2?_Vo?V=#FNdE)>2)@?g1~NWp3>lI z2+?AN04R3aRT}b?e)@DAB~IRKcM;k$6^-V7e|w8_nrR)u)dU=x=sBE at QRpt67EDw^ z at b&?FhW!lh4giK%7nkVAzRS;2;m918{a;sBSWr*_4Mn>St_?W zsny+1BS4iUNhW{{b6=hp3h6)n)1OnZEchz}Do5$!_%h8#H)-0Rrt{+~6u2&1w;if7 zpt{@L#}?tm_lalSJuO7O+c}ofnUf2H=@ELyqPjzIog!dLje1%rtffmV@(ae%FpXhU zYj#PL=K76{*=s2)WC6_rn(N6Bg?G<5JVH1YzaE6g0sR(UIz2T7u3vhAkSrp}HLbeK z)Efch4Edg2UWFCi4xyC2hda9+1TGAQ^4sd7KwuPI?S{qgp6{`I3aQE5Eb!cSZ#!wb zvzEHe_0*~^rFLm4Z8Zz&V7HdOdV`f$T}|~O0%X-0U|gTBQ+qw7?Z#@V6x`lzooAJp zujlmhuZQUx!fLd;$^4}O!2Fj_rzoSRRIGN=1!F!O!^kj}E5)_O9_|<`m}3>@S3tR^ zvYxmXXvi&%1Wy7Z88mX-U{ck)7BpYNWH3AbEc2tl)L>EJmaEMi&PJBc6_y}}OZiR+ zk^xyH3d0~Wy7{h#j3b0A<03 at OixNob2^8=lKA{uNg<?nLsW=YqrfB^IAjz zWW(L((r&(Yaf!^GbEYgEG!9RN%%~s?Pm;{u*!PF at dJk_+@K4OOJidcaEvRm%&lqioC( zGZ9>`qNC*~+BTnKpY&8`uxcMw&bB3w-MR{o`Se&~uo=A=H|b5qBH$6ATVPzz{S=xX z-b~W)4q$fgagz>vr|If?$oFITWQgo?H>6qchaPovm1^+UE}*bwZXVBArag^PCGBi( z#wtR$MAQ>zsgY_OuvK-z3V;jwr~wn+cnEQV5h{JD$eim3P_~7AzS-vHXR_e`D7Q4h<;{B9-9uS}=))PXDDhJ$}l33qxDfSN at SE^|)IT zP!G0ccJ%(~u`(oQE}&&l9AA0Xny`9^pPn#Op&#ohCOuVfuyb{KIY}4RlS8&vKC;Pbu=#*{+8(Uj#?&s=O z7o0t%!{f8G&RiV4*$c4cJeaz13uw}dIv!6LXIFn_a4IhgFy&iU>6!;A%`hq<9|SVN zXUIA|JN~VFlaHlBi$q5$Elc_EZozxE&C_78y&C$qUhw7OBY~P at ZjNn*bJuCpJ#&3| zc0r$CQXOOcS!cka#xNX&eh`d5A{R_)+TPg>&~bxK4I|evq2FN?a$h4JI!l(9)}VD) zxC5A&i- at QpKM#+<2aLh(o$}Q51!WPPgvp)_wJ8(e_W+lLVro>O at t{q?kc%L1;yxN| zIRdbpI-OQHOuqj1t8{*T5=N{!>!ngHFoQtS!BQu<+tnqQ;tIW>tkp1LIs)LCQsZjd zTX;lcM*7z{Z~>CjAeaqZ!`~5cFa-%tRwh{X$ue+;;+2Ii&I+BuwK{&BV`Z#Hi8?@< z<7e(~c_qhEC&m-J+v2;YXoKqoa*iOpMV}1?YjFCzD|y4v;%45PsbhSUsXSLX%Q=1@ z4u{uwztd=yH{*MbNYC*IdO~LYzyEjt at VyhHwP=xGy)OUsr#}W_FICHFclQl{-=y9Z z00t|jiSSrK at YWIBJ;2+aemaN2Q`+Bc!^B8Vl_)6M{JD~@YC64vfYN(nD32LLAg!hr z0KuG)V;E at EAE!mGlQ_-08PFbg^hg$G=DWf=1I at r1X4Ugy*sc!)1`=mLwD#5!=uZro zZhDuptI*B>win#H(daOl0LZ}v>u3h!!_b0S5cl-jkcmm7SdqPc|(khC;Da#2SQLMqrohZtP#|-xhe at -r7KrAV}+2 z^0jjM-~2cKDwcyAK8T{Gtp?xMxJR8aeVcZ-4pO_mMIWmuGixIWoC~pP%^V_gfZke{ zi2JX=#LZ?Y$^sM$Sj~XRBH&PvVzu~U*`kpMG5~95v&mRKrpfR$y})mD{!WWAUt+wiaL#>Zcj*h`y|fCLE?0SeiTN6& z&xaR)DntE+bkQ59 at dRKCGb@-BFslmyIKZtIz6s`nnH9Y}wv};JLFpckg#>~Q3y;F! zLW(GB!F(u)tf6SQAxb7d;LEE;l;3R#7UgS*cHWgenZ2{HS5Rre3yNeM1)t27UnmL% z6`uoCaWBsempgq>NbA*&`fYp;Yf$F&;Cz9j0z^RIgM)FE0=xvX(qVbsx|HToWeZX3 zHYertEXKr~maGJ5FW;%)6fA}m%!iHewH_~;Cr~joA%L9=0hP2J&)`nWT5l9qKljj! z+)pkxS`<;B;&m z<2bmcu!NF;Kr|{|M=i!kdT?P5)E6L7`pSdJH#AxU=NTaD4ov14ntK%sTX>I!UksKh zBPs;%EKrD at 43K#OEptpgK7IKV-ZLMa8+tqg0M2ev zWn8OwN`u>HC@=J^$g4h2kf4IMkMgaH+XNcs-txHo@}23kt#A^wCe69P;8mWt09!o! zW at aP>!;SOLFM82lLA8|{lxwss!t;`m6fJ_%jYs3lcr(*k01^ z^>qv^jGr+Ei1bjVE%pEa|MW>jK~(3pQ~G7COKIJ0ET`A5jy2?(y-q>pjFI{4=FI7V zG|~f6Ghf+ at rN;}7p!*qkc#hz30UaQ1YRJZpM1tx at ncrW+bLqY9li_Z$fny*IH0aCD zPB%Q>Mi=$|xx0?W*e{=c4H;(SPs7+k+X6rrQyBigxHxAFvpi-HBJX^?Qja~L5uO3y zY at a|%*=mU0bCtX533*z*qO;0eNgXu1+nX3=McT}Bd7gQm*3YeSU%l(LUyr4-RQc=s z5`EVjY at ck3?2y|zlf>dTJ$_dCaNp-h9ivS~RB{AH;#3Z2L){Rt;qe&9_|1E0pyuDb zHjH*&KGRpoaDLOc`fCp0|FHh>z236n>^2>qpT~A^BJ?*{G#i~QfYvmf9$lvE$vpyl zJ#AuTS~j6xal5l?0HXra+HYMLnu(HXe*f{RlD zA-WBNe%Rek at Ah^BP`G#Hm*akf&n^W_J-4sJBI9{Ed<(!?$7(^CxuVA1Pi8Q%bpas7_ph6uMftUI`c;@rk6Zy|*K)pzgHX04ER0bO73Y^JYvH`4o^W_q{XN(bFW z>bAIP23LsZV|L}Jo(pIO;RGK_GL=cqe+fw>`d>pITv=AnMq_eX at x|u$vzx??y z4X$p}@Ctx>J`RQ~6v_zWZhEu38*M6~m)Bt4rnM1KEZ0+W|L!1GEPMJS$WiHsbpb=& z0rae3RB-?pgmjje0|bO%Z_(@ju@(uG~ut zN)Y|B3~(Nz*a|2$L5nqtW@$8>GQYaf1wvR*{H|BRe3C_1P4nFo&s2~ZiZI;!h(J(5 z1|SOoNPDoP!jgw+^o+R^LU`a{)N*k>yhkc`&0PhYOY^mqwNU*|uG6C`ebP9N?7>o? zx-wBkB;$Im9zDHt^R0fgMiu7XONR7%6}l^MEw-xVUx6l6`T`>@=KPqf)MQe1iT#MA zcz)Dal38ojTKuiWr?7Y9d0)vV7~gdEb#_0({gIe~%%z4P3kw&$dL zo=uPa2TJjBSh}1Q9+UlOHYVk#|Vm{T>+7X zkf2S4VMt7miXrz3GRzSFpg)Wd-?DswjF-mdd$3B&ri|zbivsBMRj;IDC(jAEEo^UH z)Sazv+6M4dct!)dwz$97$XgaRZ`LeozY)h~yMun&h{a!iZz-x;MWYx4*nBK_$`UBb zAi-65_?dincW45})-lGFo7ea7&a=i4fFtJI*<$?RRXu`w1~Y(?uAu?Oc2%bW%FkRm zdER_8>EF at Uo1^E at FsXcEN`OXrx7%jyR_Xr at 69nBCG~kv1K^=7DFu=hz`s4xqp_ghh zGAC{U`JrbO*>D zpaJ(GmS+|hXcyyS+b~a(MY+#=7s);O7jzm-Z=u;|K+V37&kxu^b3YS4%@0H^e6?OLHD^j+Y~HI^}IYSBMYCxP*4^LR+SGf8lq*0TL2== zGFD$eLn}P1i1BAcQTb|~rt;m6o2Tm7=mECwtXt4_HrhO&`@o~tSQLEy^6M|*eYQe| z3jz(Zx}9qs!y`a7LP~?wRqOJxTaa=AI{xX^$umyozFP}Znc>_Ekg^93Izd-CFM1yB zk5PyY22;CPOAE}m8xfqI^*A3|p>ICJIW&Z9IlPE8ai7R*e2|_v_|EwZ16?`HePc|y zR{8FnYnVw}%42triPAmxCnz+7xW59xAYI#@ofSF}B0NN3l=g1Al=!u{dbkKuZCIljtd6#+Xk&ktep)tlXPu)CA2FyHGB(!u+8>ATJYs^D({#{B5vKIb`wtLhGhJK`(&_mim1-S$r@~lcO->9WOKIj{Ji*A5 z*iFD)RaO{Jg_g;ILhm95&b$hGC zRAC4>1oWFX at A<~n!HcO2=wy)7(d9X9cuB2tn>oUI!NPOvxd}q&4C^uqttF)CV!s??PQIML}$sCShtmuYe zwa^4Y at NIxT0ks(6W#K83p%upVCj_?7;s~boyLdhZ4T{&*UA7_^l;_?shZ-Ml&hM&Z z+ajcibO8h!&;^+VUGu$w!+zc)?2tJQVSwe3uilU6Wl)=inTLtVh9NBc?InU*1&WGL zZ at b`702u-hMdJ9x0u2s7=}A}xl!litWDsBy;TQS7 at cYWbLxf;g;01;UUU6Z8`Fn;I zml2pKb_9JD-mI3^LV=saFK at Xay(`mQ1vFqj`1&m0Aud_so?$W9M2VO7R3Ax>T;E}C3yt+ZnSR5R^a5oT94GR z at _fiR(+q8MJ~Tvz0H>MW0`6sgo5EW~5SBVe}kUh~Bg_a)+fV}XKbAM?fR#Nj!%hcE;X~Vj5!^t&D_7>S^{+|mkkje0Y%334C zu&=W%08!2x{#8c1Lr%-B9~mEc*5doF9zMLBBx at R){4V{x%WrNNNC(6=bZp= zK#;%bu_(s4TR2|+vuu(|bvU_6{cGeP&s6#QQqhGc1zy%88a3L`KauODg67bpqb1M> zEW~0!zVjtLs4xY9&WEc at EgfWfjd{-Q!#o;t4YI)n1A5^rm1cw&w*VOyo!09sxHLCb z at 2H_)SNhuq!?k+%H73mM3Yw%Jeiva&+U~o3_-hnEI)ks}2Wdn8)=Y z26u%D;~W{|HkhVYO_)pPzT4ep-i_EirQ@^9^z*N$K~r}R)`nb3n;n37vyQ$)|3|2} z6f}Q#YtHpk%$trAh#x)>NavK7bLKGX3gjd*Q5hRG1d%c3q`EN01)0ij0hp04X}er2 zrv|dY#ZKM}aYNtfGyON6#<>U&K02DOnO|uVeFwek4RqD at 6?A7A7U@>QTi`fkPOVql zp+9b;XTEa>qr^I`;b7rBJ;#DlL*jZKZI2N^(~ktL8iImN_dzzV(}>0jx=G+y0slPS z&BDp0j(L2NUXa<~9r;kcHw3P%)iK~I?vN|5bYU8WtIv(VI8N#fc_)XW-R at 0KHo%jc z>8z3Ol+QY7ToD{AgwgMO8S at YxV)*ir at 1)sigTL5r0)6y8rjr{4SA0w&%ft%f8DIDx}QQ#Fi2y+_eegdJcmIJ|` zjV{vB`B8*B-Sc(=k!^49V67HY4RkxzJj^f7f%9ACX at rM-F5lCD4}e2x{dU1e;c4U9lb?I}pBX}96zkmNGz1!SKPYC?(=5{Jn>glJW)ARx$KkD_;$J3Kov+VJa6u$ z!_Vgkh65ONi9U@`ex-Dc(r{(9R^khw&wYhIo}8yE81>7=S=2EsF^99qg*5C>)5|Ri zWBQPeP!=mo+E*&fY2Nvh|PnwKA<5ag`7e;s;e(@e-ydpcf86ln;=|9)_Yii z;kDznX3cprTziKScJYV{BeM4ss}o8x9H=r18N%tI*;7XBGvlB3M=afpc4H=hyv^b^ziRN#@C2x*Wx|)?^IwwOLk(8jk!hq zCTLLkarZEK%0+~uX&jY8s;)1lW at R-st81x_WmYS#M7_=ieA|Gp1%@lHf=5Hi=mAm_ z3mQR$)UPTO;X7-QDby6m=0>@q-SJV(xp2gKnR at +JJ(!Pz);eSCcq>;_$~M`t7I^6) zaTTdvU}e7GHY{lXq;p_?Y3#Mhb1m?4Zw?R7clE4`h$a9aqYU&l3RP4#xcr#_j?#>52ZFAZG>uw|m+=0v!GE&mYtH_9Y at v7sE;F17NSl zlXTG=#_{F&JbgMmNk at mK8p(gp$SP~4Vtj7xrJp|@MS787O0Si?ssgrdqAM`vXL(W3 zrBZdlfHb1g*R!K+(fD-E^v=sm%JnL=`{BcW`ta2rU~Lf at dmUqMxbyRuvvhGWPVLT4 z`j7w1Kc*J)P+3yJh&CL5d~zBKd8|kH>o1=|acfYxtB6LKJS8Wp++(*PXvK4sFVatD zzWfpt*>*$jdT~|sLB|{#vW6dxvOr$wn^t&R^^{x5p=r3EF?X at UCqTILYf6&~W?Zm1 zm<*xih4h=>{3b2(jML9w()i*sU0Z1bxoa)kO07+MF-W1;C)y&NaZ|>BmPUg_mm^aY8k^}v+Q1lb5CmYu5qgGkcHvPS`gVPT#*F-+URj1VgseIq zG}xpaSN~f+jz{yp0BtL#W{k6`Y3le=+TYtr`@6fLTl!aw9ruxLk?`h#GculBR at M< zYAj`=>0a*2qMUXy=<1T`WOFl>f zenv1KU-bcSt0??hwqzN6!wFa8aT+ at aOz!eCU4WQW=300i!B at 2sUWzJ=(dYaMgs{$J ztT7o(YjL*I>e)D zu;665SV#{Hj5$B8b{j?h5|(9;=g821_|JbxSLbJ`j at 4)0-4bZt`bXB^aVxbI6s=y* z8N}tbUkmhyIZ3OGfjLaW;T4wYMLLBsRsg#%i*AZuN?SWSVfmLUx~I273Ajqnm3$lB z%?Js)%-{B`m+EP~j5UIAF0R8U>opjun5?b%<*XOsmRkhy8Gz4Ric|G zK&D7U0477gRRLraKr+2RArgi;N3Vg3N1-U73r`pGt&+}`=?cOpCrc}coM at A=1%wek zRM^ts>;*8S=A*d>=STRN`3lbWqy-TH&te zNDq+UZ~>6u0)!_7P`{@$I00yX>-z at bYy@ywVcALB`pa8eS57`rt^Kbc&$&PRl zpwGQD1&drrI{?3cIM3(G5E2YaTH-fr-SIz1nFhki at Yyp;`x%g=*KLh45YWj#mVc_l zbJ$P;?i$c!aotdE7M@{!s^GY%ps}DJL+5&L1*3J!@@M-57=qvR90=4^%&ydSZ{0`< zz!G-e6s&P at FF|_bgK`tc*tr+bg%>l97-9~Qj at wt7kCb2D+tr_j_X&;|`~IJeHFVN&Tv8uNa(#cloMR~1 at Z$7lZ*sJnblFU>OmgBYj#d-I{`WYE2utMnMdQ8OU8(8DZiA z58Plt0Y}RGIr6BRRHFFOnW2^MRE^zGBNj=)-s0oOwVmKOD?= zI&NH?<2i=*^;kvJ0-A811-WilsLXRmBx^akvegx^0 at cY3Be=K}JC|&C+Nr{CZW3_E z at 0L=rF!s_)5gu|uBZeR>8sSmqKFUo&i-tty7U{u79eN<0Gk-Jmd at FDPJ69QN5g)|i|pvI4zPxZd?Wu^{^gqAO)+r&06ZYjgZ`{V z==|$xc5?;G*$B?`wwVfq$be=T(*RI%J7b1SbfJ-g)Ur8nEVu&sj*c+0nHQm~F#nIS z;@9dYhPd_QMIFT(cx`4#{Wj=K5a(_nZo_Is$f_saE9VZ5kbAeWi&lh~gC?0Xexo%mF~e5U};j6t>3nb!D%sU?Hd;=H?H8lEeNqO|im&rf0?Y!aN7t#+LLl<|F;?>4&R(i8UR5lUR-=&icbZt+hNd6V(xYCcyHx9TQn6l1 zt&WQz^7b&6oX}fYgILZ_E&z;xLp>}iPlWs;O!^G5Od&RO1ORuOW{i)?vHlIIBCN3x z8Ji1)+XaB%-9X&=L}lcbI>#5i at RUS>aOmR1MJ$YI-P&f%v#Ymaw+WsjfxC*%y^Jk3 z8e3{P<_LxNdj~XYC2HK6=cIz2yUor2xtqbX at P^6@@=$^Ypo@?$wB`}Q5kPC=t`@Yq zKZk8m&M;LND6~!RqY^O at ThJk(v{Z{A&HH=Y+c+nzvky?G-!(D>MEkV{1%V*HMFLk>A35MBB_C6UfH?sCO_j&k+Dx zR9LTpg5Um45FodVh2g|UgxbmriUII$J5*w}-;zu8JS+irlmg##x)cYX~jRT}3#qAY7JtH}$~KFe4K{$CvY at GIQJ% zt^y+kwcahqRxs_H_#XL^{9fh$DswCRJ0_856kZI$TJEok(|=qY?@kN<@w;Iqzzyx! zqbnfOqhbjT>qL%`Jpy*;N>CShttgow5bk691b)(7C^oLoK-6i=Z4INtzR)j^n0L;J zJXzjDsq=sD>)$~?e{;AKfo%z;?_9t$=0KT4DBTHYrDu1oF@!ALhqo7c)-bf6@~!*F zN<-2y&4640%F++A=?TV|%^o9HYZSoG#Voce9|8x9Ts!7`jDA`F&wXRv`c9202r?9| zr_V(Ljz<(4cU)+*b8RV}$0w8!ADY+MgL7X&?z8I z{-=NXM~wUmMt(Q=^#0x*A|BFkaGlODkTq2FbZHn%t2{dB$mh12o1ud&QFe!(b3a(U zlG3 at LLBJ;{$>|!I#smsEq$e#JdR*Z*Ws_}%Z=?n0PXkBVQ0AD!C!*0~ZW>lDT&^MW zkpB3G{|rdKh(#afeLI)RA at eFXHfjKhoa$s`rb>U!)ztWabkmp5N1>B?=y?}e$ScZS zpKl6A6?q}hvft)6o1ZPfG~BM2%&iCQpK{q1%NkemwuX%Dw=9x#Am3!3%${kDs(IRk zp>D&(ZY^ghdmEkTE-89UE$n at 9*^hZ~ETvo1g518&?=*reLu2}j^1(hiKgt!Kp&Zu| zb-pbF6*Wegmo*F>oh;_JwwjG_P?#=d`iwZo#d{hV8utDc<&9{o#;QQjc{0sFkmmQ& zNR+Sv_c(tMYGxd()p9rhT)b-IIMozP#w6<&0lYfPx%FDTrk2#x!)tgqOCB8?O9B1_ zn0hjG2)Lt>DG9OIi(7;yL?^zy-q-mOD=hsV-|mJ7kah!RPOxm&(t53){`~n%8ZmGJ zK;!?k31v=4VHhpNI~pwDS>xI=MB29WfL;h5WK#5y0V?pF!od}_<{fC|HaD6ub1f}m z`DlGrn9wQAx(t{r*Bi8SIRvK5qE*~g6q2DHmvBdZ8x(VP*^7I+#m;!DfO-j!$pWCP zzOl(Ox+q}IyXdF?`oH;agCG at b?ro{(ZQZs?Bv?5#HSV**WDEQ*v7W!2UZzXi+`CGr zSC;^{0hYD7Y3_A=AGHtN)no;tu*Q(qDk3INBFu3O;hB4(^>l?$UM!T;h-=S!SX~yU zMi|^-5#At7&MvVSo^!3iF-qYH=Iiln_Z4<=!slOp4U1uAZ7CHi2x;C0A+Fxr+};L= z!}KYKL?>87v+FyAR}TAK140e!Sd8=<1<@N!Qy+kRF`T9|n0m_d&Gi{GzYD7{5##ac z%W-%s9sv}FtR5J<2j&ME2_fdNtlkDab#M{)8l`6h^O*V8dtf*m76x?CW|-X~pRR5U z?t at q*b{R~IMJuwhW(vV$)MnBe)DkxNR`6%OTX=^RauBW79|Md4wLTkks`rlT{9B=|Y;FUmx0CWw|lGjFs-Ax3`$4LN_%5mXYm zLyI{+3g6%m#*qHgcK=qZDOVJD;q|1w)|DHZD;r)YbB|F*-jfTma&&G4{+TAG%)dEA zG4Ify&-Ps3eXiEAbg2 at OemqC866d`hwk#xYp;|CzX{USwY7Ld3%3r z_)wzE0JEq^9$NN1zgDruexxNm7uI*fKwn=Cz-z7h=4$4(bqu at N07X0qMZewc z0vtDyA?lMmfLtZo;Hq$QL}O3o#V6WosTzy+muaSDPo{jY(sq)}$!j3vR at 33}5jsS} z3uBFWH4ji(;f at d*62WJVl(ZLfoO$o{>-bK7HN2`U3ORx<6L`h$OVGP>-Dor;En_ at F zeqtc&wOd&>HDeX9QI3MbhUg;CPo>Mfq+g>5dZ65sd4 at g+uQc-$;7*{x-<%q4%DG%B zXXSOy1GBV?vflHYSLsc8C{51~hh2}Hl^$%j=^6rpGHr6c-OJso4$9mxHW{^a0rkFlNewn;Pdt*@(-v>~ojmm($N}N7I zqmJv`A at pA;G0vM>-brN2Od$)=PA8RJF1m=|!g2 z2;lU#g^Z=WrWn|Fb48VRzK3^^!?E{}e|>j7f at P-ERZhQUjfSHE0ChFIf0m~bu!qqG zU&wRH2DcRS*|EZ&w)%X-%7%+wl;tXC0h~@2b3z>}!K*pc=5Y#UKt$g6_V!^h4FE`Eh~}ARTH&4%iya at Lya*Fr z#2OsmVtI^u0Ivs#V=ajO8b;Ests6bu%nVYc-i$mNU`-kz5Jmtrm&r#}bp!_5Jv{=} zrYN-+82%1|?4!^|v{#G%N%r at gxWeZD1DWKw~e9;EQ**e32Fko1E}TLBfx{V_fa at uUx(vB+`nWr|O&utFf8n6NQ(^C+_ znd^CDj_ISo5uoR97CN`T%bdUFZW=`wNH`XH`nlGz*IIuCAs3i)sE7O$>e%}_1qcS3SQw90pktEZSTrFCUdBe1_Da2 zeK2WUe;j-Xoj5n^fQAy_uT*leiAuv&p#Ta%R=H&9AAlAH+o~xCwAdUWOUPJ0L(um^ z8w_u&aE+Km8VmHG0;<(89-vhXc*Fc3zZ_x!AUBa;@(}~W7_P;<@Mm}|-W+Vv&nJux z3|0(nje0|0g=M|96ZpXWto3#dIYtp?78FM453rX#9Z#V|y^nkDs;sSjI*WxWQ~EET z3Mk-Vr<8f|h&g7?rKbS-P6Kn|yT3_C0$k at p5073sOS4$CUr(#Yhulwn`GB%36L%)csFrXYmb)2+^APp~-W1xX+oBVt3 z?G9i^yXA`jG|2T>=t9c_2*+=FX{9+nGg#rB=XXa$F7+N3ffm#nG1|m<5O7~y^wP=6 zS;&M~^&U8pYr{fN*0_KRV8z(#ku*fC>=k2#-dOQD-XGrOTMZ8#5)}@|#LXD8j!EeT z-Y`_JoOTW-7^S_-UN|0H3?=XQSmm#t+AOOA&BQa at uio4|<%NLF(68Qb0imnQKfHez zbP)S4t0U1xEC_#)%SN0>=MLOV1nYI5RPct!Q0>4i<)yyfT7Fx4K?ZcljtR81)^3< zlXG4AZ=Q?W$KC2JK`|Jf(293OrYq{)qRWKl0uy1C`;nmm2HF_7#B51}&5g~px4WD6 z-WF1fOH zfRIqITgh95{s2MfJ=uksbg%10DZ#*Bju4Uv8NrbRW!TTXje#PJbum`Gp7l=|gL{Oi zc?JD&M;lf*KdV!1#2D+18v&dLlNpR=-sMsnk8jhz|Hq%4TR_eVR&kj=m3eL>)jL~h ztz1WN_0ko>eU0%d)!O0dyQY6*w}+y?7PORTE$3t5WQB_R- at 2mEu&mx(Jx$KBMTVsj zL&{nsdTf^0>}Ls5$1?7=`sVO$t9R$TGCU{u-=tHaE_VGJ!K z8djjB%bW;2r4PqIWgW_x_6nX9*5<`2gu^??IRYt at sU>p3j0(iu2UoCLDL)HI0pnr_ zwU`u+D7(S^1rhNK4m|?WxZqFb3k#b*3*uDJ_EC!}R`%K^1fmRUJKb@?d&GhUeslaH zSCRg__AZ!G at MtJk0OV>+g_=P28Tt#r1e5BrSIz6%ceSgYLB)$XT85JqWG*amMf{7x z5&yZw7HI;Q{lVMw}r-4n0j9Cus{{w0xYf2 at Q8$kMxxZ4=a}RYU30Z{Gt_N&!3K= zMdTykM?MhjJ4#Vpcz}ro6?o(d-LMh{oLft(K;1G^uwXq` zJyEXabX at gv8BWx*SFJT*izQ^#ZOAdJ5X9U_7aY=;V>q9)|8m~)`~(QGrGQKUhH^yN z5DWbnA3?7AXgsu<#DMdWbLf-hCF|)4L~oO2!)_S=i5^O5z;j$|HP(3&M#xb|h=xo6K*t$A zHBU_bbC(WzQZ97}lp}ht1Q4<73UlUo80xgdj$R^Vn}+4)RyQ>}n^{+4l&bRuDA6(Q zr*}yYTI`_2m$pMsynGhy!x8zW@&Wf1JSjT at 3GeD-Ee2o0bAJ%1@*pi8TFI3|Kk z7fTtA9}g$#^0JT2g7;{v`dOJygCb|#999iX at rNMIh>&SN%1LEd05x;`UUW(r>NSts zu)IdY1JBaCX(YzKd>y>I5G3M9?@U(%ZjFDgfDuRJa-sr%fu#1b}+gCI at 5 zaq)&;##XzP8g&;9jnjBEiRh$ws|r}RN`P|GoJPafrgRy>6gR~}AmoYiP at 1_%mJ47l zQXadn(FVWM95qK+peX(8i4Fb3eIq at G?>v_N$DPgZugBwb%LL~HZQYqJbFU^7_hW at 4 z*3UWvY~tX!Kg3!bL)3R^9RPFBfGW((Fo0F!by=1Hf|X_qp|k>0KMxB^rcuEe&o(}8 zm`nHe*j+Rd+2Ra|zeib??LE=G(x4mP>F;B4{8z!K}A86Z&-n5JG4SdTGSbY#~e# zcugj~+ped*&1TwamD4r?aA&)by1O+j<3jrOeLKDF*3*Z*PWs)~2k8K7tlMe4v{+SbXM;K`rTmzW)5_ zW3oEGUL^TWajk`@GL@(VW(p~{d~zp?s9A+D5!`7cxC;TD42HfzXq%5Sn~l>m#AV3v z8FTUZAp%0&3u{;61#rrctIHPXHLT;RGVZ}#M3OXw9{Y(3;t-+|sQ*G((rLk;D>)S| zT891=)+d6}#Aov(1d*0R5lERArZsQX{3sp5^)iR_taaof6TLK-yE2rD_gp9)>& z<4a*>zhyo}D7RLtg`n~taWC7+_pw5g^P{M!FV1nrn|)B2C|Fgr7M8VFf+9madUpgD z3{3!KJwYCkG>$+J7z$p1AaDQxkbC5CH|^qlm5^x_DsYY3qRI1N!gE z>i~7Hhr^@>2*Ab>UQfou-{zoiexCCz;8F1VogNeqpEVEZn!XW)${_&sT< zOs+P!?wx-tEG-FPdj)#Zkmm|cB6P+W2jJt#x3;~uMM2HEzB92lEtD2l$9KH at IjGQg z+9+s^oA at 2qdPqka4L(C9uRL`Dou9+Yh at z1`V>b%=XG+cW%mpa+nb}5Js6Z^!<4Qy8 zYK}(_$Q?sOtH{?%c=yaTGSnLF<`9(I&KMT at leewYu+I6K7T(T^UT?t~K+2Vixm1vm z9c3atqAhpONFIArCVc6QvZ8 at 26;&_-TY>rUc|XcKxzb)x7zMVOKg${^&)r8 at nj2u4 zAAUIs?{^EMdTl)`OaYrEF-jP&?$aI~GtSXlWSNeLuFP(cM<~hL2V`)C&bck!C{lc0 zlDjw2e}M~qfz$%zWRR6#8y1oEezd_76#yGbjyTi_?Kjl4SAplr%USf)=6H{V@|p^UOjn0ng9nHH(` zzD6)KN`0Q5Dbt1o2Zu+W)7jZsfXcyWlupkt(G_1fr^@{^pGmhgnzjKXkPUK#i|G8$ z=X&rbhgbxHPLO7$zjdCW z&M at 3RpO+YaehUEqfBT2ue9uT`Ma9DvZcb_&0HjBTF at brn7^wB|UR?DqgYbgTu_mVw zovT!z5xS0tNx1MYAY+z({P|NV0-$mT<|UX|mv-WdvIRW_AILt9`Gymy at Le^7>npi4&%4|Ia`D8jB#b*3GXPU7n_Hr=B_h zG*?B|%7wHA$lLC=qpZzVo4;d^<4UZ+sg??R_XuQ z(MjsTgundqYY_1Yb7H9MYB*xzSGaFC_S`jr+!8cL#|T&EPVn>RUw=*4%xAgPi0$cI z5!|sTE92`5YxnI{V408LYE6aJIdiOc!W<8Qk3v8$Tw{{`<25zC}j zWj{GN3A$-Etd(U*Dd)0XaSv-p8J^=UyvL1-I}e!Ow1CB~3s?A|C@<1hE2Jfsx at -t+)#F7yu4}d4#d#SOuhlROMws zQoqwHL!-i at 7CUJmu)MGDGA}=JmLYK3Nwc)&wZtmx(2e7QP|(WMqoHAQ1O00}X(?I; z!0?SPg`J>4<3dlA{kq{g$G|;XEmC_0KaAMbg0osC>Yxpec4bo2!$Jp-by;4AF z2;8A;oZs-8!E^eHT!AR)(zD}B1sk3&?l(UaSb8uVTYvL!&(kZRfbxD39;ROkK!Lu0 zD`=$y53iZuKfI3d{(7J^`Y7q}Rzq{KvYYXB-W*%sRTj>tGwA&le#)Ng0Tlhk?c+K2 zKi+wc^E5wvp##jimeP7DL#H zwRx{njV=2JFClZQ=I%oK-YIO)k2u<5PPAkYJ$JTw&M!ajF+_~zU1!T>cd z$?ippfNcTj?CtG@!n(TBaWDgDHW+(7WfQIi+(IMf$~9l>le#n15%R>y5fc>UHr6qM z-JiHzR(1%M0mJBk!dex*AsEtIgF(r29K7IVUYUMq2mSZ;w{z;@j96VkBl7+GcWEC( z+VH6L+XPUtXFB~b#UW%t+{AoE>$@Ry7z5K5)Ds(>O%+nqz|~uBs8kwsTwJUm&=Rbe z*QXI6T?F_+uc^muw_YL%rMSKtW8RM1e2o}ScZYCAZIq3XMqV=ixY{~)1A+$qO*&A& z#STybNV2>%#BJ?DX~Ph=;MTd-V6j|^y1<1R3U%kiU9bcuIz;3i_l~Zi?=>0(FfL$l zM=4h`3obM;{&sPKq0}<+N1s~c3nGUER_cp&N^T0%O1n@&|2ozBEYm-Z`e`JqqMZBXH~u!Mac)!lv+= zx&Hg#a)&J at d9Tfj6PT0 z?A+4ic-Ips{|iQ?X%7vOrT at O$_}+bC4fVP~@eu>AV3c?zip$H37_hTbnG(Skgg;3| z21pOZ5GFCyBG~F~Z%0_eFx5{#|B at y*SpCabEVQD8qU@;P7$KFhD{hamI6CbP12T<8 z6V|U%%?|jiKv$uE`1P at B{*J zmw?SiJ9T-+1dE|uSdZ0RDq{<*e)#6QG^I~}{Q1{3gI6qza(L?I;W^x(!Zr3^gP>I6 zQHdPFbst6t(-ojk*ZovjfasrZ)4`jqw7cDA(C-p71u?w<1g5bA!057<+%Gg+WQ?C7 zR3`V2KmDAhqiL!kNE4R#8eqwU;?KvYY4_dx^u&Z$0CEMw61F{sLzLA z0x&fJgIaGV=NAzoR4}|CSSoc(&{VQ8q%Ur>XXw^>6v#_Z;hBMWwN at 1nGLFP<$W~8? zf at FjH%K|GffL4?JFptEN0b00vg{%=J1L}I$k`dgv at 2^(9Ii}_h9_;P|o}ed~IJWLV zh{opKjBMnT at lR{VunB(#Z5cjODGL^40#~wG_QaZudJlB-_k(e)&9xB>GJ;M7CjxJU zF)a$Dt~xS z%evSW(*cT%#S})C)(yA7h0xCu!u2|e-rn8=#4(P}Ip+qUsd6#L)Ey-T(6b&sEkeh@ z4f9>Z(MA~v%xsSZX3dW=pX&zYQha$x2N-Ql!2QitKTU^&m`n3CuXx5Ee;K5u;&bHm zhP8-1AWj_B-j>EI5++a0f*3vZIhsf73Nj2;Z}~8 at 9{T3 zS4tJm0n~Gz at 3H!MnR{`*G~k>Y?p8f3I6dZ`L{kO~fk>0_4nIm4*=wRO=Q`S9m|Z&3 zcoYC=EX4gdI5`x7!dHRq+)K;yk6s0Zs~~m0U?(hXjyV|gJV8qK9Oy~QO4sM)BQKKB z(l^)2vD3n at hF4mUexEFSKXnB*G-3q=y~U9$41aQCWMwf~E6wf9R*RJYeCnw(fZhdW zt_Z)vaL!vOYB*TN2vCC1FIC;@1pWE}40{7nhgm{M^m-i|NzHFVG@} zDPv+8F;_Y2oltJaYD8qvGwpFDtosZrdo177Xc-2>_=eu{Cj92(>4`SiY8K%yOU4MG zq*0UpudiLj3Qb>4(kaikz_8v+Un7lHdgEMY52!{AhBNfz_&X;We$J&zGK1i!C}&ec zr>LyYF3!?1I?#g8_FX=c&ZS=s9{D`eY&JfabUxEw`W;3V^B3M3bcJbB(y?=*m&(<~ z0y*bBQVryzW%!VnN}7)W5ZfKAJ-E;FW`F at foxtCcFWGw;;w1P)V_pCnH4GVlX;GP| z4wl9&Fl-oF5aFC_5XfihYwO8bZ;xpX*|^4cv05IvpiC|afS?Z-NJ{&;P9esw`M}V- zlTBUh10jN7||H)#Vy)qH=wmKp at vLzO+%E at aTC zwQ#Yu_sj*g+m4Uh688I7^aW63NBA;4)r`S}`>D$uS3Po`ug6>GmLYXN3tU_68oC3W z4oH^zb0KzU6Z!3;Q%6|+rngk*i$G02SLcT;;BXK%;x*V at EiUalhmLgB+O4#Ur50VwdXy7(-Ygz+4SE z=nt6KQZRr at +V<Zw;`R<#qW2NNa;xyeu zz}6pJe#Vk`F=-!xumT~K*HWvpmi9N=>0oCoKI`2xf%FMtbA{;Qt8#R!w8{7;ygODR zcjfFYzdbCjrsJ#Y^zq|adcFbFE$N-XVg!i(<>)+FaN!GpZk7HRmi}^jnr>hiEj^dI z8 at kpzT4D^fRutwc5M9Voy`A?4a|R8B%UpnDtt}=l^#NWc;LF4gpIhL$b&$C=3Iu6U z0Ogi8($gAaI90&HELDVZSW}F>o>tw}E?l`6oG}^Z18Kd$)gky)1ObG({~C-^t^jsn z?*6bJ3R;81b6f>$h~AZxTJd at z^$6=Zk$XKa7E#b4frQqi%kmM2(N_h6*0<>ffkO7Fre(Z6kOW?os5>#5!YCf!7QLDA4s9pEJhyjN52ti5(S at 7CCguJz~#I zy^mp8n)3)B!rvy3Tee5RsUmfzBS)9}XJIX%@+iR9Skds5pA~c-j+>u-cODgX9&=zd ze-~^?TrThtZ2faRK&Lz3$0LB3 zAwda%tmkibjbgr&E)8LEKI8x9&2A`?^NT)XrTDjBSrH4KwEhiKxqq>J)9_+;9Jv4* zDk~!;f>1q1;l1G3O#do@?1^>FaukbhEJQQd)L|t*L!EM`P(|_7})#rS8s@>XTo~v;Wxu)If zq_01G6XPYYRxYlsm1#c)G=B>kHDsjwph;xAQHxkvEAIoiVp}xjIs6?)8sij2#1+!& zd1Q?qLiL at VE*IID2NpaE4~Y1K4!KX%0);k>_{455fEAqq&i at PiZc2_j;h4Im+*Y?% z0q^tD``pwbiJnovn=ka~nqe&>e$* zFP$78M>>P|b-{u%$f${hp9O*|)|yHWe8!MR&bdCp=L+=99oExnB at yRM@0;z+GD4n( z(V(&U>UZDQ(a-McrRqW=FfR9D+{(GOA!HQe?_A71bdIgx&tG$%*SLoKRWYG^BOQQy zIiJ#(_i)}ll*IyWdDnX?`#i_*oY%lA$QyxPY)KjNNm+Q$Z-V+lY9jyjR(cLk4G?Gv zA5+lO;mWMJ?D1V1vfZ}JHfg}yK8-i^kVcBKeCg}^>+cQqghkCz=uW*jyGXaQyY%+W zTNK`Mgid3%BTB>YYBZReT>ws&7yzq}UxMzn97PY6Nlg zbJ{AAhf#=HRWhnXQ$Rpj*5&j0N&5BdDE5;rmFnQTCjj1JnqsltjfbhcjD at uLlp4jQ z^wr*0+U-=+PP?48JLR;qQA>)%2#@k?6WXYh5f~B-!jt2ceo3fP1h9J~K0R8? zjrWCO8s5G{J;0OEb^7IOl*SK*gmIsCyYFaABlSkN>3A?rrxS!RW91^3VyzLmT1J-y zgL>Fpz%k&$-q?OsArb-L3c^9*p+Xb at uk!2{KvF4^hE1Lo at bm#zhJ|Z-WSI-y=r{Bu z^3b at q#BCWCNlh<{gj!-O1%NLIBfX(ogNFVEtPiy1p21&c{$N7R6pCfGKYx^O>_%8$JA5?^Htmx0=SVD7_?{qhL^M= z^_CTA<1)g&gW#(`|F;-h3tZo+H_|$MGrj7k-HldSL|83yZw;eGhSL$cLjYd$+!N;P z41j(}w>@O>8MS)lq|fHB6~FtKy#^(w&d$}v~c zuHetlo-6$+Bb>*$kJm$|THAs!fAfKn3&TC*9`xNKUt{K_^hu)>E+KsL;m$Jt3-1P> z1<^E#KQoOil9&XmHTM2x?Ubv3KlR#97}1I>WNaZ5{6|MPtc2?qTTMqI9y&{hS$(gwOezQk!{kt z=|JW->H&A*!qwGP%)Q&HW$$XPji*OYgV36ShMon1-q=Md%C<4`^A5l$pjRhl0Fz~f z1{u>3{ny)VzHb0`$A>9$zUgErSy$sr&pHh(VWrG)479%l`xy5Y?x!ON9&dDq0#W# zAO at qn5ZA^0&?jlZ#hTL9tuip=%tPo_z4kgoG(wa^0c<$b*%joQJCGQaalG at 2U3pK{ z{SpSePM27?$b0At=FxDtfK(Efr5$7Q6)n{x;PlYzD_2|Z)dhMM{Ic1PQifhX!C3}*Ssw(@lht1T`9Z$UUON4U z>c?yV`+Zcn2r#LUi%tcwhaTem8^+W^)z&oBvEc86-X(Wn>`;*Ap=!Jf?(|T$8h~T^ zQUymD>J_|#A{fJ$NGH?tH at hCkvpnQq+n^ICJo~g;Z?*D9I#KW0-jGl9Q#xMycVEB# zULm11?b2fjS`=!oQyl^~?@y(oP;m8&Zf*%vx8lcNeogL7U}sJ*uVF&K5SCg4%T>VD z?rx?hnB2!cqsY|tu9}qCZy+XdhFQys>mEf-h(dZ3aN6?xsRw?EU$qo3Zw5^>ed5lJVCL00IL`0nZ z{y9y at H|gZ0mmXdKd9&yAiNAY*)zwN1s;s1|DOTN+6JAO0_uqzh>-hXEy$Hgvnze=* z`2gQCm)2_Rj=;AHNEd{}#@Y~{gQ~Tm5>}yVb?EKX6K3M8Orf_x55w#h%M)U&H)}Dk zdcaKTceS*uJ_S$`eh$T%SAyjyqtTuc&uZ4)AC at sefT6+F*lCI|(3>J77)qIr$3Z9O zm*@20nXy}jp4I_S#Rv-(ipv14euVk;co?R$A6l+@!t_=d0yV51rCKCj_)nr%50_}C zF8gPmtFkL_u8KB??z6{5X1Hf=WoT(!B^XSK5H(DxC2y!z#p{h_eiz(K5iklv!H+!e z^@c0VW$Cn=X$vbBeunO|2Q`!|?bYqCu<{y>8grx!vn at ftda8!p!|&X3Oc1Cy!ShOm z^;BJ5M?jfqjFP#vaH=cw6NX1CHRz`vZ at t(8+opL`{JZ0R2k at 8+g-ow-UrG7s8R2$E zn`g}FC4D*SVVKdTx9F`*^I+V8@Hebtfm^Iqt`)r7SNTi at CG89_0!tW2b8nqT25XExwCv%z0n~VR9Q9iKE%0-` z<_G#X=EAvguJjbmckOUK_|b0W^Lf7EUil#Ih0KTr5wBn{Jd_;1|8-Fa-~Sb8dM^&g z<-ceH_l@`0&-Tr}>y?grXUwPc>UpLt$WP|dSwl{bYqz_dDu#vOUH9r8ja;e)$mW?A z3DyYKqozXC!*z1(p4$pwEqn}ccwC-#p4_r*ql?014(TxW$>AS?o8clCY$!)zK;{GE zfb&+7T`T-<#qGjlmYaMu?)q=eVqq^u=UCUFwz(2Jklrh8Umd3hzSzREwwC$ z`NA5GKmYs}{;S7j6%0hC?MTh5+V#@{?U%lFg)P%15*2}Y&_ zHO{qZ6#c6~JlAlw`|rx at vFew$J9p-5DX*N<$l<14&gJIjM(h$5wc?;pogK;>rVsgW z7ik|m+q+?WsU(#n^FrL~fZPDp45B>iv*t3<71!q%XK78Z3fE2qOGES-ZB^D<&de~d zUV9DPMP!@6PnwknjHDU)kY>Zkf&Qh#2**MP$^z4)vWLq#mL}mB&*gd2p5QNgefV9P zXRQ1)^75DuWtqR^4gpqTgx?S z==2R_te$4QV#pij`wrme!X)z=bqr}FsMDP50Cn_vmG+eZmG0f^Vj8PJtXm5cdJY)? zKg41v#!ydP7`b#Jc$V=IZ)EyVhA{KA&F_7wqjg5;P_X>X9O!B2=}C5;q&d%zYnTiT z5%Vp at Ptt}!TF>8XI!+rHOm$P*0OrbW+veB^80Bv<(JF0qewR6%S8KHT`SJ0e7duJI zKAR@<%3e#`?swrm<_N=$_GcsMDcvE*m;SGBcfL0%RKerY9zAb4G|&^Ciyh9EO>UGxTNZ+|a{!;qND%Xq&6z?>(oARB&b=u8ih zJ!hb3A@?r<5)e!Xht16{gjK_uybc0YlU<>}=u6tz*-4jtZ+RI$W<|g??(wOG4!=Z+ z5-oXGJPINVqdqZ!51|Ye(l>9n)6MuIJxoVwedRfQ*lDGm7J}(<3dmz(Vd{I7_T3EO z1yc)#_1HY#yrjwSK7BszrDq61A{NNhuu>LL?29kUF&3+9bpYL3>Q5fh&j|D3>@lrX z0f5WJgh-B6xHsc|T6$7wn4dQTsFqU=u=EHczS-E|H<$z~%mo`)gC0!jwsp76*(#Ih zc5V%s4+GIGAGkXc+g?stME=j}NR2bh#Gkcch7YzVewd-%nj4Wx|` zG$}}t`AkYT?7 at fd4ye>r7{M)^>w<=R{uXGfz_pB;2q2A at xiEmGVjN_6Qz1--H_YOS za`U+q7M4WN(hDHSeOla<}wxz_YIuI?RJ%n(gfk z1nPDO;$H89`vZ12T50wSPt$&PKG6fFr)L4d6M!N-Cn#8WNiT|iSjWXsd*ll7cQCl) zL*G4D1>?$j6`bKj7p-`Xzh#dc+`|#!aL(}_vG9ZM!t2MJ_{sn-&&hml0;KqC{uXp; z=tcgMZ9;~4jpsfxKPElO;u z{j^Vh&+k5850=11508Ms{=2B60icOu_(P3~1&rej&R9r`TP>>O%qy~Vh4U6b z0==Ok)aX-Gw>#$dY3RJ9BMjx^BX&Ri#vt_izRle at vq1Q`eL)r7q z*I$KFpP at WY0hNX_T}eE0K_L?)Fq58~2LYFKVxE_|e=b6ihd+FHA9+{u^$^|Rgl7eh zQe{j9h|;VcOBXqY=Nh0D;XDRn2&lU_ at 6o5b0M~}#1sykc({uw*e|Wc_wl=nM-WdGt zPAA(tTj}lFeR%l_L)RR4GvUqS(vxf9{-^M&h4+SEg4Uo%b(nwKH);E-KMZ-M$5r_! zeaZ)VFC$C|ZJXwzPIjS>i#y!T&QPqNH}X7TDd*JtYP4B8NZwR7J~2^HGV at Ejl#hOb zC(7vDcC$@e7cm-Z$-Ra3PMPK+s8I%r6$CVbsyRS3Y9PoKE(r=X45Vq(N;D|+xaC!_ z<~J|Ie*IDI1i7t|?YjWc9W5-(ys^=NFI?yVRsh6|2P4MQ#YO at xcvpv?+U#>lcJJdcc% zv?b3t20A^I&GLdY?%x7Eb!8X?j5VSm#z at -KNnx1Vl6M;78ZAC1=z- at -1-i}zg_dy= z9_3s>z2(Zfyzr#n$oo)B&$daxr|yWwW6Z7jwSErzp}pZ9WFFNO^7PX07Vp0AUG)Gd zT7(a=2t+0`8B!N%2851FwtmdtZ~=%!q(IsMgsB`|HKssRD9h9ibQ=Zs!u6I9G5J*Q z$29~S-XfUX!4dcg_{=$qd=u^~m9H!#cpyB+8xSQSJqEFC at 9buQ!$90{j|V2|a?lTJ z(S%tiC2|OPhHh*b!}iH=4iqP(-8cJbb7wofdwYWGGu8QOmET|#Q12xA^IvzP{WF6#DkcuY1i4 at PLtTzbt%29uBYX- za#Z$rrJanj+3KVzmY4~z>k#}DkU0X38X9*2%i0rG%`26!!Z at cWZ$pVH6+L{;kIDMF z{#Bw1Ll@^b2X1lKA0rTMuOYN{+S}a at Afe-0OG2xvKei^H-k)r3EHj?w>ABaaL|3cp z1$GNDEK|nL+Jw6JUHqWHdO%r8AiATsTaC1fLC^pgRuI~25Ze2%-llGMGX$+;^8_>W zuP(zwXC9+K!o^2=yz~YM?9votqGbfD!pC}PWVDCKHBwZ1 zudr-k6#J&dD9~UggCQ24Br}u^Y-7%(ph5uAf at U>{R3u)fkk!klmDYm(9Aj&lU18M= zHrfC}pQSfj1uUR(M+b|kFRY?889Pg-^Z<44 at M40sdp4tHp&5A#Vqh*6tO8W`!!~7N zk!#&G0ew!tFn&+VWHx+uBG$$fUtDIi=mnup5=z^xAggfXPsXSLZ};((#t52 zr_m91SuL;eECe{$D3}FmCZJ0L3`+o|@P6^n`Q`tNoFFd)9mDN8wcFGXs+hX4b_(bn)<@ba1v&NhsffI@(vF!np!rs}kn zJ|}L at y?qJ(f*0eN2v at F~-%Ea;gAK3q at Ls-@WxhN&z at Gh<{-vYWcMsd5K()V6RsId& zr-0RfktW@>XgZz6n5kUN#qIaU at Z}>)&M;Uf0Q@}`y^HSj7-`@Lv at FS@M_2$T$d(@U z3{=bR`^xhQww*bIzao6CtU{L9S9=|x#lp`h7-`d-URN8VKKTxC4sF23(7K}0e)`UL zfCld)U6{t9cV44g-YKf=;Zv2P{Swe&EM0yQ0 z_yq%1529^R=35?05NL=`uf9cX4HIg>J6F;}8N+84nLJ?p^r$*x8WKKR;HFo~d_+B@ zVVoi7+z;1Om*H?2I$=&vPO*KLzwM{j2%ZM;lio#hTrE1xS!t26)$?V|MLjR87}nix z2YEK(9?xlT*#lr+12(u1=ic4BAmKKEV6%-8SF1t~E`-UUejl!<)xPOHbc|HalBQr< z3=kn|6r9(o;A0#ZUte>2HEknu1p#_`dEMU6MI<$hPWvO+GXKrKD6g|eI|Yz6By0Ls zHf);!D7Q5OY(Z?! z7njja<*#GzyOBEEr at UkqqWzYM(VOKCQsz@%b8ib$n at bq$4=|+5fKUwtb0PHt+7CfY z0g$Kn(L&{dJ&g`Q)54-v9e5AZmOtVw6yC!$5n2^R$~yHHT0VZP|}0YhCdZu*6h zgAAyxDJcKyCP3eEzPQBw(CxeYXuHKXdg#p$%`2jrYrYdJ$@fN^{QkaB&_xSgg_`YswlO)^y}x3K~NI?5Qec_ zN}y^w`t>*8gvH=~zZ=DJsuc8g0fH1v4ALW$!q72jfGG!p3D&hM at RV>=(ssn+(Whr_ ziIxlHYGvr5v8buS?daqv_9HgG!WD=PPVCJ`=iHRL2~iI&`w%hLAuzxB>g&|vJBjGi zub)!Cca_f1`dr&coz@$`Vk>R6HbM!S*J0^_C-bFb9>B&U?SFU2Nl1q6B#f|e)@;}rN at anE6HxXiVSO!x(g{2Z&l zv|3KPn|rB$%A6qZ9`&L!;YY5d0 at U6EE>$4d5wRP@%Ay5a0qII^z~c*J at Wl9jIX;H) z+>wQGF`-V&b$$Q8!lJPLOk zFd4mowbn(*9bnCLnfDI!)_ at Uo>z8555zH(=x8D;zAu#*?{+q~4{CIR2p<_ck_b58^ zdmJ}GpjL~D&m1+?nT!(~dGpsgV^J-x)1MpKn+2kwDX%eCM*(I5V}+=%SJsUq?g6O^ zEN|^2bQ9hq`rSr(O#xN&&|fewpkKy~gD)PKJLk`I23NSs{4$$uHK%Zf(p}_xpZpo4 zVobl>F+qdH%Jnj#4C(VqRW}QV5g9A{cne*RFoK2%kL$Y`JY}eDmhPUgAlCo^0JjO> zpI%&~D-5^2t?dA!dbJDO%k2rRhdE_zAI&>@p=~JD+Il5fPR0$}3uS;Qig?O>?2};| zc}%abIfhRNK*tD?5yC(JL-{bys3OLYzxls2q98M5M^ANIv+|(7XnTL`iZ9*jh z;YKbFe3^?St912TIUR^yuJM6?3;cWukh6y`f6g?K&+{8|IinUJBVyW#yetjF?BThy z==m8SLa@|mv}lhW(G`?g4TE9>I(iO4K4UH(nPZiQ^uO8ZB99ue1BjqSV?@PZzN>MiT(jim`NCGsCTV zfeevGt{Sv0U52CK6^tmYBso2Ef}<4B6GPRozTRR_ zwY-c5uAaEyH)KGhV=zvQN-cDi at -|95 at z4i!gvO~}EkR-sI)kCSb57hf!{<7FXXj^; z>T!N?o{rEp=5&S(V9cEZJzVmpp9MO4Lro*lS!15)pMUsscq4UUxLVvOk&8X_iir(= z{>#q+q at -3|jP)`G*4INM)lV0j3yB zWr1TYk0_I*W%)el+V&&F)FH}ryB{)ucllGJR`b&F)L4?vHIj4=DHkFKmGKJM!#z|s z8i;;YHaQ2*i%}3aZg8$GpQrOIa^Lwq7IHy{8duVsJIuD zzmO^r`Q at OO{_w+RZemsOyHu^!A at ELg

3NqN(+eh5)ShJ9~jvRW|N8;O6%9HQlB=yL$l?EbXFKmi}dNs$7KDb0t4>m>Z9pR6o=e@ z^M=V*h(0nXea_D{cMS39CF@;Y1(BOKCy~0Hiv^;0x2#hIXhU1;4G_&=(r)u3wzs!~ zAi at e@k_Eg@$Rg)o-#(?m4Fe9SngE(CPg8?%UFj^bn;%zcwo-3AOEbpOTt8PF&j4-a zIL7|1+}HcxAat$(kZzM_$kSC~)nWx at jKICda-rQP{eHSY$bDf9nj2d|D3ifB)k+oA zv8z!Z(*WkOgpNCg#4a9K#VTsYKMHMQt(O4;y3d`r0w4`(rp5}3aFOrtVa`Q}P0y?f zM!=$C*Rr(0WC1!bhfj~3l3}w`#|jpxpxj~b3GI|UOk&q!cJS|Ze zKJ%L=3Z at jSOa<3w=9Upa4I$7ZXIyul&fJ^y$^=5E!U$V6;^TxtPHG7a-Z+H8X;JORpjCF%MP|L9iYf9*WUgx5Rykmkghl{z!5Q+DVE$1Me1==3QE;7on@~t^X zywhwB!Ks$N#zI!m8m595+wDHw=BHVv#Pes2WuwtX(e(l-n&al8g3)M-e7lXX at H!w* zkg2h4m?&}vX&1wj&QXvWMq|b|K%Sl at Xwc^?*947j`z2V*N|t$nULr>g9#p|8==B(z z=HT`2@}og$uJ9EyA$!kJj_ at iZ$vePL?>*z9S4`P#Xw`g4qXEuUgf6*8;OM@*Pmi}K z>}B)-JkL}Mwi|9a=zwJTH(}i}n+VDHFBxMhY<7uAR(cw`#IX+3({B0kEKms2P zSNGzL>J1jc2D}Qeov)q!{d9VMK~DwR*T~g+IyiV62AW$czC|ZUe};80&d&ieMcU8~ z58Mqr?pW&~Zg*O=aWS2qo%`X&dyo8Jf-otPMXJ1{L at NB$+?+lh-RHo}X!6-D_zp%eoDvNoYcSF9kl(r1j&KHMhXwyLGMewL$kn`Hi;kG21rFrDLW9GDHjah#8v))>WO6p`hm3hcq z%KD66UlyhZdynX2*(=3c^-(yuc^3;tF4i5GLV5>__Epl at L4On%)UQsJb z*hj}xV^*)9?G>EbAB9MG-x{WTZ^K8S(%5{I#k)e)X`nT`8-#;lFm=s;7hV-s) z=&(W#)MuD(z(ly{z{Wr-hfMx8qG?6a at 6U?~RF+f*FVptHm z2o?y{FfTGYl%0 at iihwG?2r3E?UTi6*xI;+y`j>o_QX_)K?e>=H3a%;ErI%9J18Iuo_ at G0}lHr$Ww?HQ;)Hb z0h_Ijw8H1h{wRc;KurTg>)J&hmL4)JC1^Z4IZZWli=gA1$LDm?>!r_^2pz6(a~~H3 z1c+l?q_G)-Hau(0k$^-Ypy$QpXjkysKgZr&Q-&~YLQkzyHGTX3Yj|lb9U at E(C)NRu zyLBvm1c at PH6N3BDi%H4#W+zsf9Uh+}^iA6kyclZa`om9=19f+u(!c)u_o;=D9>PNw zSS=Q;>6pExTC at +(0F3}X2r#T?Yq;GZB;}!JWek>pg^14%8H4q5>L{pD7JAXU+XtyP zxK8Ki{nTY{HHs9d+$`jS`;DuNRbC;Op=pFb05Uj|sqs4%QCRVOf at 8ufYd)@u%Mv at v3g_BGKxPVnz*P%erSJFIWAdB}GuQCKY at 1IOv@!Pm&nl>X^I{eXb3!)xv`GzqzhnhuNJV#q35fw2nbhB2MU z>mdhkF?cYrc$QucL9+Ym+7=BG^J95%7#ac+^KMOvsnl|wm0 at 7L$nFWMCnEObg?{xW zJU|03{7}YCrvqp&rL9gb&mov|T<_s+Wi at vXfMq!*%g(4M4Mpjxa_`}l6=b{H%ki9I zk!LMG(%yveyOy?4#CtoN$Z6y+pwPX2JMDUE0S0RoB?Scp zALz|;0l?e+H)#h0M|!s=pyhJL=nkC+)-^R1$whvpS~-3C{2Al%E3iA zSqtTDA#}Ypf>0L{ME)-Nz=(tSg(}7vt9z9?GLPp>Fh-xCALXUMNl#{xwtx4V5A?5` zrh+-zdNX at OIYalzNKQ?I92F}DH& zA0S-|DqNIs3w>N8M=b#+ATsh5HRI$7J_{6-f%4+Yijh3 at 3%bH>39TtBA6PnO6`GZ9 zY?t09O9~l2ciTQoya5j){XqV+uAs)4{PX7EP2|50CZqJHAAd?e{Pa0p4*ThrHr_+) zM#ijJk*ky!186i`zJ~ICERn?~YsB26&GW;#yS#r$9B4QRXl=8rxuM`F5 z at LD6%c#V8a0~srfNZO~DSn#)m?lkYw1vN{^0&6JOxp!H^_y5pY|9*xgqQ_0EUg2f~ z-K5{io$#CFC at R*~E5qI(Tot131*r?)k|ZX#3vBdoi9*8)=RVgkg*hSSFMRywpyXv5>p-|UeX~}J6{A%;%^0O!fXgOI)-o|Ff~l)Q4YfebK1U1OMFevf zdRYB1g%(dFK+*|4N&ar(QTymhIxVaI#RcRcwqw?qWIYYRC=8s!$=W-HluW1t z@##e>R_dwV+DvCxeE{Gf6pKtKW0{NM2HMPa8uFZ at i+;KT^erswp{etH#|;8Pb3eVv z)CT=t!UHIiTaLhh+Y1CJHW?IfE0ksXKRWX9x>-+0fC{lXGlWev%;8`ncJI}s1d`oV ztg2i0_>(5Q_ulLKjeW8O#<}}OM#SE0%{AvR-|%Nw5%SrqC`AH-#mv)-fbVXjc=BFe zMPYN#(HSPAtXPmY;e?Z%@o5Cs9cnG%@>muvp(dn6nDAy&#=;+!QlHv~K^&MXv|S>4(Ry&aUNMg??#uHPMD!ZJS({h7Zl zoG*t^J0D>@%|4&SLN?-RZZ15OpEY5fnHdNupDrU|Eb9_77b26JRt-iANC5)@R at n!e z%)7}07^#x=XR-RoWU=rTfeYyT*px5m&)XinZJ3%EN5RJ8%g zi(IMd#eB!hJSFzFrKo;4Li0OkY|q>pj}eNR!?xP~wDOTY_bhZizEgxk{PjI62`0#Q zU%6j?kA_ at R8yd7w8}A1B&eHd{@}SjctS|rX{b=X+zY)B8dk#b%?8PYjw7L`p( zhi41yD5FV4K`4|*M+i%(%k&~%J;i6dU85rd&1isMjav-B6iU@?K;v>-I5{!a+(;n_ z|DK#2L>ZpsdUEr4 at LHj@iK&Uo)5a&p%~c=4*}38s%6cn?_TKJMt{dJ9&jUlkZD{1f zr;n9>@aFaFx-MSTK1nn}9_4)j8Ev^*g)_y|`8;o$3R^j^_H1 at O23`P$0v4YY8R-vb z>FXP)y^upLOh^V$H|bc{*0tEvB zq|cte$~_08_l{b6HT#X8Ti!G at Nq>_|`M2*muWDgav>wAe)?pP-<#Tz8;(cr3#RPEa zTVZ9nlYRz#dH<>iA^V_U#Phok{cL<6?>3+yHx=(F00bI&aTyY#7IHa(R#n~%AYn#2 zRfJ9ZAE>#t7J7u2zIC?N4(O8Oym-|sGSAO at mK)a3pL10!PtETF=qF=vj|A+9^4$x? zlQ&soc|ZeXJO_^&UA^+ at L+LcFyDF`U4h!gyW{VhlahRCeSIohnx!xak7u+6wtI6WG%i8fmIG4 z{mO7-`qUZcI=t`BpNAHW`;4faTvkpW>j&CJKAo3pb%q`Q>%PD>dd&hOFS4Jx*KK$& zhf_2}wwvYeTJq-&x#;+JT{qt$dhT{1DdS>vXCE6G4MPss3`ZLQSn>GiAIEBCRjcIH z*_~Cdu))vzorzahwOuyv`1mLSOl6f)?N)n)iOE=>yiwWI51-yw2ua1Ob{G92LRGJ$ zVJ^wW1RsyiVL-!v0H{zg;6piLSk|DBj@`xBDl-uS51KGEK`NvmkyJ?A1`+;}P=)mz zZdvzv#+*hmr0||5mOA&_m-p{KHCK6F-Z=9*tAaB`@Gn39)SL-fVy0ZfeY98+mNF+* zgXtr}Cx^wN)+Jrvo|EH)5Rm=uFAGF*jLJN~r3ECTcu_2(3E|6i*xB7`c6au&rmpPG zKrN-@>cQs6rE--fjCxT@@%EUek!?4m?21UelXkE{`%6H6~ zc%?P0<}t?n=of#;X>&h{UpSl);~mm$oAs->hZ5jHLDO2yZ1aRi($6j}R~{*k^!~|V zp06nnta-uOFE|Iu>{l^BB)ao-12Vi+(kCb$4XlL}DRN$56DI6EMb}bN0THF3Sh^jd z`TOP&FwNa~0<ZReVZ$K--i~GjMR1j~d-n2W z_Tb-x&9_Sp<+TYvDGw}>52xzYmnj()fGV*uVWx(QL&qZ0GwQ7U(co)zq z4{aceZ0!pW$?(-CtCW%l%iqeYADRPj_Vg at NW2UN&goLg9^koIPc!^|49K2xlCaL~Bt_MD&70svm& z?2*xd$kwcVdNliZA6dE+Srfw~bcALqY#I4~ADVS;ULr}?p?Sp_=jS)o_fY;XPrvRA zdc8?8l0!ExF>-(a1+YhU}(qs(Loh;MLO;+Nx~_L~e2q1$HD2zgu)d z{wB|@qa)`W(j_){>njf}JX^p%d=}xKeFgeNg3tobVBQa4=FEJiKwdyQ{`319ahbpI zexX62zB2}f`|*clp69649efd)l?SP{s!c$X0H;0d4`v|`fu-74;3_;T zy+Fmg;SV}Z43&Otc|>`IIciiLmrM>lqEE7sv2TCKlLF2;PnrTa1nT9*i_kHk{0=ZA zL-AYb?a-)a$0O38%2+Jfl2^V1W%AM$XVJe}vxpAV;r`BZ6;{uF at WwJUs(3Z>N*_@) zsfR7u*^*~Dyx-*)gV}w_D)+LU(kWRtS=||VN481%!SnQI$G`7wzOzAN+Es)Y+p>6X z){rjqkE$;5jG2^dSFHPK1DMWny-h>g7Td*6vj1U zv10QMCkL<>V2C-#Viip5`!hM-Jm&YtSnG at uFCcGbz0rpE)PO~ zgwW|ltl0<_^AbO;MHuB8eG#;(r92A;8XO;ME_3+r0}ir5PPDA|q5go1Ghv{E3UipI zavUY8JqT_lq=Z4_VDa9SMVE7sOR}}S8HO8(A`Ng0A?TMR56I{+UR1Pm9?Sba%2jR- z06UWNL&$O_6vYTrP+Y+G+qbV`Ilqc^93szoAS^k4R}q{P&t%^73ryEM7A6 zI-3xoa#Nr0ju4O!a+Lc3)Wh;_Dk=Il_t7E)@VRfs#`Tx#4&d8wc6Uz#090IG)%*18 zv+b~IX8=d4w7{763w;rhe$Mvz9an0u zOQ6^06{u_p!~*FB{PMoslyC;n(S&RJvNq2wg5c%;t$VdzC18Jldqtu zVMHEe5fVU%P=5a6Mdh&V#}ESsDpVADu`b3ZrKh>Gqid5wPEykFYrlHV+ zhXzR8-`{JkFJ})V%DKfK2S*11n44KsSLK$iZEWOx^tkOT8B^Zuyz(?T7kk?}e}#(9 z;~{IT5txykfW>Ui1GoSH(G0qjXDx at +o=7v$D$BhYP>d5}FabAv-rcK^pt}qTW=&*jE42=r6qD_VfXOcWU at 7L`? zDu{dH8TwhiqFh34m4HaRRZ}~nqZrQv{exwU!6><0t}FeCG?CsEJ)CDK?_1;=`A~F} zJz|KrgHi{`QO01_7oN60zxUk+JCBkde$Hp|ztBK__Y~cfEBRYJNA|zom%jnH zz%ZlEGx=GxQ#2Ib(&Mq(BIUk3#+(^=ihKq%=|_<>x&H^xTpakh&mtajp^Fgru~1Vk*FiaF0UAN`{E4X(`5sv4&VsHl zV!iRc0e4vxqHpD+81%fK4ST9wJb7x`uiS<~Rel+St&rmV`dX`{+pKJCMwx33VuD8mZHP=0V$X`u&E6dx8*h#y3_opdM*;AjglV%MBYD2d zOD!QztNPOr_RFg9&tYMzFg_*e`3f`@b2(h#5 zjl^Tgo?{_!pS=qa>sG(8*c!;LxP=uCG${%(Q}O-#_a&&@TmGSNHzw)J-iJJzUp{BmWzV~sod~|8v#Sc#4h3L5Ov%4`Jho+ z0HB0=vzFzzXt6=Ls*ocPh03|_c at 88o_YaO1PYCr=`SR18Wwqgn1!kWytv$i41gvxn z)}Jr)C^2`maapv&@{)=fIiBhL%6b)mI12{VUe0tfyk?Zx at Nj=sHBUz1n#%e4t7H{n1)${Cl|Ple6&YY? z=5WJ{DohodrvwQ2ccYZRXwhI_ at 0;N^1gbnzhp1U+nIxH zdA?e||NK(yauEe at l81kzi=ACEEk;aVf3v!_(|q&I*O99y6=HXez!AZ#&|oxYL1y6D zJbHm at o>DY$aT!A?=L}@=gaZ{k((=5t6>+|dErzdlU>~cfE&Nm7J^Ph4xG0&0zKmq!iIJ-+gpU^}YCK~*G$m(5ZbwGQonsULbW&Z= zwX^~~_S~PmDx)CENS?TJl@`+9Ka}@`CPPcc-tinC9*~ofG2I65hqitPie$U54=XE` z5_6V40k&VgdKshkU1;#4Soe#VBj-`_0C-yOO1$KShAPCLy_t-TW;_ja4K%}% z`90aUj@&CNC|=Y?rZ?vSV5w2y%_B!{vN!T?=@Gezc-KDJS5Is&J_CH9&~ua=$(rhU zf0vuq9*)bitANkhc1m{SAf!V1FPK0<7!BFpDx$-qKHhzo(E&&;$rci_*gt=^5mEh;+mW4c6 zAqUpAzp1Q2M1(T8te>+Tbr?=>LLNtmWh2iH4EM*{BN!wAv+fU0W8w64#Byl4k0op0 zhX at a1>3bcYwZf at Jxr~j<@wv(UPe{?`Jc84pcKggL%Ccg)jz=kXBi?|;@=)b((_uPF zWo>mWzf(~+nKL_X+M}d>U0oapAayivUp~*@#+uUr!mX{XDsEuG{`%olv+`-Jgo29R zv(uyIIA`0{+uuw~Pe*Z#6!F;m(ecSBt at Gv||K(o;a_{Py09;`eeHwX-D_ojAS$_4b zxrn0KjKwbGsYQ%lT$CVz1K0p*@=VS9d}#Ok?izKo{Cv6Tih^p|TO)-=v$sI+R zliNjsJ39o=n&gr<2)`qH&!X&!5TpQ3E^jJ18Q2pVbe_Bc7z2PL)X=mqgwN6^v=#XP zV~0^x!aMx|%x77vsxwygMS$((^h6ZKd@_2J1`d3v{Z56asSmIxr(Z+7>#bB0-C_RTsYBXb5# z?Gr$PXLB4SGpcYUd&x5;zovw1o&hZoUiRHl3Ztv+1O5~u>GdV_(uykMM(}1PwFgN4chs4l1j!i}s|yn5sc-N+*)*%y<#T=M~x8-D&oBx3gXe`MGxXrT|bL z%$}lk9#$tzu at 5Se7>NEkxvbnlmDvEO+(YZ7ILF5o$nku(Kox@;uW)k!()Nc}QFMpg zKFV`5vW3J)hDOVysH=ve45=HukmZ at q{{xE)iz;_p4UBp9MHd*9o~ zL&|H4NdT=FqB$3BxSF=ep2#sCL`}P^4`P1rxq%&Y4e(W^X}*(%pT7V%%v|Fkb5_Fe zWn|^~c)4D at d=W!&u?lQ>!>aHudLEckC}J*i70~32$YEEucVtwhNJLNa@>LF9^f2Bh zU(o{ot;q@{3|a;q=K;eIosj5Dc}kDRSy7sN|8xF??G)u+pWAYDsb zUnKMD<}$k5BpZc=SJ5X|&D7{rGn6%r<~l<|k+(UAiax|(#UJ!SrK(_*oHt{ra6;B# zkOC0w+3*YgEKhs(!}>foh9OJq%TfLQ5AVTCa!OmeNuIJjY(*UCCi`;(BZMD0g(rInJ4fAh at h)FA69^p4Lw@{5!Kdx;w;{l=o;Kuq& zfmZJ4%iF80DGCU|0Bcc_`vgINq2d?~spVDa52%O&1M)82W&tYP+>#)XtI<5()g+PO zDBy=MI1p4W+gx`c)-20(V`IB461i?XS at X}9bI|Pp(g)>znv4LDCkQkmuHFc_d$}t) zH^O})io+;3(<`{?C+8OPp23`72rlOetegjE>_(vP97eET-)H|MJ3lrbKYnUVd3o{b zO*1(;TLP~w=VIvm)lJ@!XYb1S_EP3K1346ct9&Z0c|NSKH!FL`)uyJ0!ke1R*+xKR z6Gj6XyLbm4VsT|{kM~i&VMGF?ti8|^U?ap0JOb2h*)L%MBW*4M{)BZO39=9-r78Et zwfx)pmIB9wzbm`ogWMa#u at qT)=5r2J&ehRb6i9 at vwW-FUNcQ%2Dy#=o$a~eaS5GO$ zFdCi*(bc*}f$7|ehtJfSvnVl@&BE9r%JP2Una2qDo6xK^wr8#Gg+?@ho?s>C`3Ved z8t^9&iR^hQc)tm#kI2ig2)F+zHFYP>m!GTaKCsGJs_p$vC6cMAx}H_<{vg`S4# zs?@IKgm$z-o;3xc&hEB6y?C*h#aHePDET{J&-*S{iz1kb96%@SS(j7*z))zkMiYjX z?KcI&8>H&Gv%N(xQm;{)Xr9_Qcke%!}<1Ys*8Mz2eyu0`g`w ztfBhk%tY~p#_?K{+=T8`c4vEv?vD?TBlIJi0zlA-aIj)Ho)*8ibG|b=$axio zUbo17#_T}$2zW$auKD<&br%nKXeNZ-+cS{0+9+$WCf=1+YQnR~y)VD|sz95`5I_F# zzCifIcwaNiVbGY?lYPaTKu-Q=?LxqE(lv8G3@;C7pCUGD?c|K_o>xw${5<0o<=6pF z)%Ga-t(c1LBV!M<_b*?*jDfh6v+D?t0+%DjXD8X)jrEO6+LsHj_(LdFg1%G*g%(%W zrzHnU{^tzb%lQh|>O^7vNHUL~7urRK&M~}`m-n=2H?$6jAOu&+#(jQ$_V%G+hKcBv z?|_;#ld4+PB>|trsH^rc(H(#wolgGnD6g)qRa+O6QCh7{q<6*ekL(n3)vkz6sr!cp zV26slWrOKbK)6-7$qO9b$unwYB)1Rt;6da;1zhQyNbLf>05LGgFd7IgR{=#{o}0mX zA3aa6S16fK4%) z&V9*fd>ScJpCRvvAZz!$WKf-B-V5h=#=36a*9q?AJTa%yI-T1fD&M7K7_5iVm> z)0J=M{pfZqmZX`mymY$}hE at F>g}fJ~;K1b?0Uz3pj7l2Mg9EmT1}apZ-xK6p+dBc? zO*6mzEN6XO%uNsprL*+(HDl#hMKh0BKJ(b#TVUd7Z#&O%S2-$}_S2`2&Fsu%S-b}U zyoVPtAVSOl9&7rSAAgFWa2`u6z%>l^5P=ivQ4HSd|JK#?Wvvy8sW4_|v$!x@#VrVY z?_j@#i6+|$k**_nSfmwB3tg7wlXF1}l^K at rb;g82=xrciS?HBgkxHOvpZrw0knS}- z8NSHh2 at 5obv0l7J(67BB{0JK<6WPQPI4wof z$`7mXVF2S{p3fOgj0~2?Rrr1B`OBs!pX2qh4_~}})x3T4s?LJ|u9?R<1kKZVQxyiZ z2jJvDaxAT|g+yq3MhF5P?rHBS6YIvXEc5mNcwmSE#q)ro at DdMnevCp^NEUj_ix~Dr z0k^7;pDH&CO$g0Wo)WCxuYS&XsXi?aWXad8FTXF~nd?&u`u?q~ZsdDw&M#pNUcY`_N^w2L5P$)s2rI5{>;}*sGz+0^eeYV{9Tm6zq3;;Q z`Tjb4h>uQw2NK#gnViAHKNgw;Iw{YA{vihzdHXT6INl784wv#JyX7|f2agYMf6NHY zzLfgOK9GrIrRTDr+LTxeBhHzV!3d%w{0 at AcMGh=2Jue{f^Kb7%uiAn+XT>=!5a`^c z9PqqRNJg${Rb<_rZ8^hA>WIS2v0j|t4 at mho{v|v>G6r7YAAesykB6&{Z&?*Bq7I}*HjdU7t0zd2l~1-1DA)39x}*48WIl+ zkBWRN=k>)GUp6nJbF59O#=rghe^<}sJUJrhpWl9c-+cJE5_vMw{PE9!E=R%k&Q4_E zr)=G0GZT48e(?A)Xv3_v|LDtir26?K*RfI~LUU*fIH1#ard z02+W{jcCbd at N^kSPmwv zIFKUqavz{g)PVy- at 5k9$d8$K2N7pe1&7=0ZWAtV}@E?!bXX7%9%HKrgZfgP)04P_J zvxrwxf4{qHsZ!*2FiZ3hhf~XN$urrfqB#+l$obF?Znw)dQ~*EMp0~wV-j58(^W9%H z7q_8-(7|0ah4d^f((t$_go=E!kzQ6wI~5Ew7};{~`G4mrYXI!%Yz8`P!Rb|C(%SN3 zWOy$F48O^_ERYtS;aGs9oUfc;UjsQa`_3TuRRAt~^m(rs_aZ=fl$>{~8;UQtA+KGF z*OUQjfBYVQJGV0I{_VifcanF{W35k4OxDOA6<6dVL9HYo+BJi3CqQ95!s*50LiL#I zBy2j{8gpwYW4S(~7$yYMm4_yBxf;^6vB$IyyXz1$~g`9nW*mH`fscn0zAwrayw0Fn9uP`a)zOq}{!(=>6N~MS$RB zgcAZNi(zV}X(Bi!|LZqZ3Gfj(>+5R~cK@!bEnCz91YMxK`b5mA$_Gago8V$aM zDTKd;Q7K!Y!H+8|0jdF8u~tWi`|}wD5-U7{{p9?*nO9Xx`DRTNt1kPW2iDI;!LgEO zre~YJ;nA8uyB+%I?RadaC&qFXZ8gVnBKz_=v3PQ7wz-Uz50LV7^@S)sYk%%L65;yx z)r<0`@|pr-rx9ko0sQ0A0YWRf%^R)c95%C;QUHWj_H+IR0mmJo6HH$&@$9EcGeR4^ z08Vm`c;dndC1?q`uI#x!OB9xn8&2ZVuUwM|lRSRT;wHZnN{(T4aaUG1H#%=1fIOS$ z6t)H!f%cZwecyasUCX*#v?>=%KAe2m`@5?W9K$i5IzoH>Q3Q;GxzNe-{9J|q&7ihQ z#XgvOWo5q^pNs+=j568UEn`e$=jELHZ1#I{ECBBIs(HDznCofKJCVJgsN$^x=n;5} z&t5ds;b-(PI1+^zWiSC8O%`I$FH??eU$z$_fEd2UzM!*czwve7IoE#$K~k^D_)O*#pWgtjRF zU=`xzy{hb;iNB*+bTBb8kZYfpcYh*6xs^v2OWEtOGm3aE&!PEofMDg*w34eOtMfqd zV(?_rcf!4%nJ3&c3U$`ADG47%+QF z8Q8L(`7S&&6Z(pLIJ*da3-hi$Qb0hSDr&_k@B;ZKi-A2jik-Sd<3h=Lx%m}aTovo&dlVU^} zAqgZgHh{*i4*6`uy(ljBp-k>{08Q%U)e3maRTIfsk~=*UCa215t9QVpLyocqI*_2wCJ_v;p4rd=+P+} z_9CyngmfJTM}DiS6C`10~JJgPfJXEP8zlaJRJN=BG4cjduc*(EFpK;bGV-CqJ96CBPbtvD17>m zW4pM&ZjLTaYSgM!H%+_G&aR>t$1BS7eDQfR9qe-{bte4V7CtZ;i#M|z4grDZk%{CG zy>5Nd)jV5obV)UF&U3&)403bdrEAbNzTlJ31uZokAm7Od*Tl0TJ)&6Xfe{T;iLTI> zevgJ2uH;R5A;YWWF%*U#3jF2Y^jw9j^OODV_)~xXcbv(Do^XlqBrA)88_a?vm5WR3 z$zvm1o!WEo0Tg{*?alGQZgaTDx`}|gRP7rg$Y)i>A~r&fq7?4z$n_~5mOYf-7XjZ9 zLRNw<%&aAbszyLjQ&gei>FN1qdHH$sZ0SWEJkY4?x&hv;7`q4IPS1LNCv+P|i27X} zMmEat%qYbyn5n+QT|75=4$9knW7fe!gb$15D8ih#B~(-GWLPpl@%ZRaS#cBDpGgHL zVQ5yp^$$_3h$_lQMW92Lk0(Eg;xNy5VNq|k=}I0xIohuT)IWUvWre~2>A(CKz;V%h z^YvF*f2$(UI6SR2Mk46jvcE?Wq+JwK2z)R?4sg6UJ!-F8lj!&_Y~Gb?{QBWT zF*xgwRVEQx4kMKR&7c1mm1z5ObD at VbeTI1kX$Ba+v%nzja9Dk|YY zvo6ZXb at G2Dm>Dbti_pA;X}J}~KCuRQHd)-NuAlPRP*|9z6=E5!qK2v3JBA10xSZ!$ zT3!q-jMeXU^W1>iWRy)PwCKVbDlg>rvgwWRAIyE9q7?u5#k(l3iJZ+~1Vn&H&g>$J z=`MVu(!Hu$^EEWuU*R)KSR-2%&8oeZ=K!qkSfzOLIJDH{{yW9T@{cyQcgh&yN#S*t zq7X?@bXxSEHE2y_atJvv5WuK-;9xJ{HoRViJW;qtUCG~(Z^aOkoAqgRJ(hNVdAH6E zLo3<4z3}?R_HMJidsuw0;Vh$r2i4y2+T2{8g?EOU*RNhRoAO8(mkR&_d4yARQ_d+s zFy~tR=pt|Qu$qrDUtYA&Myi?O5V;iIl at oTsunZ6ZYKDda1bc?E?@v+A2YKAy@|uU` zOM&sCskB%9IX*F4pQ*x|@CX43bO6K*WAditSN5l-)I_L~IbOVh-JShqU6%|Fov8Yx z1Sla!ggiA9g#tUXZyf=@?sMB)K^xaDc;3eYzq z?IE%)`w;#IEc~5vz%vR;^tf{!AOr9-a`NgbfIQ&eb$GWnHh0Qs`{oaSY^HKfa;z!s z!6*$Xz#VddHv>fd7(BV+a&TkbM*gTJ$UCg zq4(Y9;tVfd1?=g8cT>g at 9+sY9PmTf(&LY3$DxT!toCR|^mp^{{Re?XzAB9hH=I{mC z7VZd;*r*&!9zh1jO3sD1uP0}sXl83?J+um#wUviR_?ofJ+ZJ{zndPibO%e&OX at RC{ z+n#Wk;F)|hXV>zqyAIuSA71zj>;OL=Am>Myd2S$qXB1Eb3Mzye+2J$gS*jP+C8bMV z+yB1<2EE8j?%(LD^}%TcdwPa* zO7B=Sh at W{%@mGKLP4oO`G4!P9NKe{`tY44*vq^KaGi8j?`5XgPsXdhUWgYq-!&rc# z{nuXWJZD(bIP%O`UsQ4wR9M2Amlq!=CtR83!#aM3w`hS)5!354-vkqcvWs5M)}-u-#$cH<-qzPzz!myY9?lWe- at yFky+b> zws4{fz^)D*;kz5NL1L{2^kXyPr7yyFWHg@(5aepEZsTDX at 8z-u0(og9xVJnx zoz2#k3e>I=jI0}ZS3Ck{>Z)393!g&PEsLqUF}erX`~2V at ny~22M%frd&O)m^o(?%g zh%Ka%e~Z662-aqHtOSL_;~|urA%u2xuu})bx&a*TLwF{ad|F$r3QgV?BcK$|5Q3z% zdAjEpss*o0$mT&yNdNlN$7W$+qWSjgx3Mn9D#vZGx4rrmvhujbS2wqt)pY9P-+%__?I<+qOk)KQcnIM2=#_k3x&dHwoT?W0QI zUd@|>jjnRGm_}=zvj_$`b#m2)bH0F&^F5D6#>4m&#yL4VZuSFIw(^{p(b{cU$53yq zjaYY at Kl5zvZ*4SJIj3lfW-Qj!Q+sci`My~UgL>xsFc>d0F#OYRzt&m at wFn3e7-uI; zF8>WE1mI*vZ0_tfAG0UuaVYfEbmn=5tnxmzAWw#;XgpRt0mou(i@>fhap8j99#c=G639wfY&!^~*NRUI}TSM&M5o$Xr0g%Ie1$VS6PsBrRXWB7Dr7 zcvAq=tMj7(_Xvy#5*3g4VdUZ*ii_D?RtUl+~DKu}6H5UYEC7+Co>Z at fc%4=&r^hWl!3(hjLD9 z7ISFGxoN4?%2|qaO;%?&2l~fC>rJy6 at b~jC8;we3-~ym at W()wbK)%!cLtA+BI`kJB zzLcxT+Z{j`fF}$LkT9MorjdYV06C8nLjf;kkF!_ucmO#9oM#qap&?3I{%CdK=he<< zi5oHnkD4B&&|obf!q?N0upPiN_lE*s>a4C-Xw6Y!=xQ#5C zixT3c8I01n4k+6yj~>OH2QKB#3s|Ahtog9=1zU#rixPDvX=qZxgk38g!SbDY;u%i-vJT!6~gZiMR8v*%@1_cBr z5NTH38$AJ7qH{`jcW1^ z at ak4oY6wCOZpo3HskzK1jYxmt!SOfXmp4?Z2mQoY5Mn)zeB)K&B;YVma3L(O&)(?h zK=vqW3Eh$%<-N}J9kdWQdGYe)^8$XVe#s>Ab3b}anhFOATA{1FpdIV*olc|B>-Pa6 z^*csK*6O8QjWmrGAZvvhff}C!_T-WA;(DQF-oREdjQqFOBoLhx$jVkOS*t)qRlPh~ zg9?OpdFed2)+oTYJU`)05h at Y0?mTaQS6}4mUF1>ZZI)kQ(JYIOCs*)=i65$Gc^vT? zFPSLa=jSe at 8RGWzz7)v85bi6 at WLq43!rzUNp1wa|KEd_V=^M$L8JJH_e+EKR^HU zQ`Xq(K`6DP8h!r`bjeg-jD^nt(90KE at Na*!eojH at N=OBL!WX`G{O!c>cVf??BMA09 zAm{4tx-lMxcV{vJb#oIHoD&`0$p70JPu0z2M6Rgbj8}*$ilPw9H2 at hE_YRm5^`+- zH!DKKL|#6Rpb$5O?E3|RjUXs+lY<5jTLL;3RGwuwO8YEC$wP=>ss%?5j<;`dezsAe ziYbJe2)E08M>ICqfw5+fe+MdZiiB at 4nS6*Zzxuk`u-xarhX{^|SW1Y(2rlE1UcX$9 z02ykwH#P&7wqg}dm*vZYbAsr?Bm_M{4oI8zTjC+l6OrEZw?zS6Mi6H$V?)ESKqiV1 zc at Ko=hR4R6#Ry_vQ(hQ^tSE*z)!J3k4g~#8jkQ3|VXVs4_3h?TSUBf!dU6;7x+_68 z9!0`ScCe=r=55O()gg3$ANq-6%9%c1oi>j*=jGLWwlp7Ma94RQ(~}d;Km_Ic)vclh zd1^oX at I!MP;DkZ8Vo8|{Gmv`}y at bAiRv{t+V~hX^Evd2tv{kNm=I`3vU~tS{{S$jb z)T)HD*DUSBoL8$a8<-yk3DKhuVYw1~p(lAkDr{R!9IJ at X2o3AlPFbVNoAAJ9EPpL8 zcw%@&wEdWv8Y?>Ul5;}=2-P_wy~QX3maf8>$0%v-fCdAW%9ETum4kvtc{=s_>&l;`Vdf9^!24ZB$?OhaO42sK} zhw>N_{&Hvs@@xd*?)GN0zP4FspaygHJ3#d5F_k*KWk4 at fB29fGOAjkQ4 zWgk87ZiGC*MImY4E4K+40CZ^!z=n5DBWJ${iiB5JBbTgUaB#TzU3iKI+Ox9Wg$_@` zZ$SNV3}}`;dC5y;O(Ox?gt>X-%gf6FJG0sAjsoQ?p)*Z{MLyOy)_(_M*VI)h5lQF_ z*UEpQWTPOL7v~FXt*-D;ZPq!F8}jqykCI#Z)=>|P-}^i>01Si)`%zfDE~*_XWm zQfFu8%hQz2$eLrAWq+aXv>qPS0nzbM#hl?zRukar_^ci5VLV&p*+1BzvwIUyP0kK-q zh=$l>ModkS2(JKyJlG;YGN{2Q29*4MdS3Wdalv?KRnFT*z#mX&nR1jh1xE)8#TX-^ z5on(wPu>83fQqM5uml^RXV1<%m2cS(`R9+-Zpa8u>qEmPLK)WvOmnnodcGAf59Bfq zwnCS5p|vUwK?mjF$whOUdJY(*Co-`kzmTeRdZO_jy!Q59871Sw~eih0(!oNvpzV55eL+wL4s81oNk3L7}9&;QGe0} zMcRUy)eL9dIp{cmT6-=X66iu_>zSOZ^Y*iIrXR}5k^8j(U at NEB&vLFsq(r+q{_V`r zcNEF+=ui>3${eoJ`!FuA-CitnVK(zHizxHA^OL)pZOZbx$cCGw09Y8~HWhR{96{jp z2(QN|5IqEqsJf(R^F9fP01LvURLEMfa2q6ata7)ih$1X`5D|-J(yV2P)V)0&&0#F4 zN)Ww&3c&{m7J|R6WJ(9C39sMT7=Aqjukr^m32kduxv{ZUc{>%N%Z6cmp&u3m)SZ<@ zz(tsbXz%Vq+yTJ6d1ax6uq3bpDyn^ZBA7>WP{Xm{%_atTW at GJAHv1u-wVj>12O(kX zU0errv_iKyJeB-f at 7YypYbyyZW22 zUf1|GOi?`$qfof_dGQpk%q}bz(K#RAC5#@#$~_jA&Y5&}WKCH^pB_@#tFx;B^UIs& zA;7EpI)?dyCCUopFcNxto|^d(sATAY{^90mUsx}eUI=z^bg)^R3}6jyXng(Z`BGNa zYWu?@^=bdGxym})BdkAu+=_w>XwS7{!!(ltIWzMMF*X9)BTO)j>h87G^~x!s$libW zRA5Q7Vf2Y+0Br>#RV5q)rafmjHrN{re>w`|Ec>c=(?jmi%E#g at YtNeGaSAE$@Bn~j zH?~Kx$St%N!V^3;+H+h*32kgRqnlLWv1Wa1t$^Kj1PVbU47j=# zFq&swUYcpfRhj1OTNc1o~5v|FG3m>N)F)a>W?stpa(pJ zI{_}CwD<3S%d_zsJQXh(pT_bY?C)+~1=w~4kh~9w+1x#;Hc2YYpP5!eDcxQ*Q{j2} zvH1Soo3}N#i+#vw159|Jgn&X}Rg6&d6h1nLA;WTJT=FVO9})5efK)*i0L;%qGp*{_ z%kbJk_-Qh7M!sc~iORe at Kf`1w02}bBLX}XsVuQT{efoHMwVVjwW~~(baQK(xL>H=O z=N0(`IDY*2vH9hfpGuCBZ#?>1=kSJ0!;$VFOwEuc!vJTVCP2^3Uvd-RtVYPgk-6C; zMlB(4S_MyT<#tl);dOaut!j2vu=_m}oWI=NH;H03=q6vHXk;iGD at SZ>axDCL8TuB|>Mid{<-Uans%n3rJK%3Df9olLrGSP$LR;jpO#&+9wd(D6 zlD~;;&;|RETRlC4`CH4|s#}7bW8O##Qa-ux{BUF%5NH47v2kwETRJLC<=(=jeF2Yv z-*tdB{ZZk*{A_{-p55QaPp7rcXUj{?XlO^@&Npw~6!5R~m#oQo*$26))?N8)AVp01z4yK360Za>!S%lmnd at H^iV7qLos at K%$=^ z7Y+g8T#-IbgW2deJ$QBD2qV;(vcR3_Yu;O4vglWyr<}9&qto1bH_yHudfUlfY7-{9 zCo&=z-ZNEH3VlDc+Q8(WC0ld*JmW)XhNG#oA|k*YOaKsTTeTkj&D#sI)m-fG)XeN$ zuG>-c3P%7#{wv^D01!JsF`cQ z at _<)4#NH613e=7)N{%2xBNTc<=vDNQ6J;S<1n*a9s+o?}MuuN?1>iYLySzUdTf at Wz1b*=G5JPMv5*2#=O#v~!WDy1Qn%rf`ghJ5 z01x}b!ivJk84BG1VJtJkgZ0mYO#m%KnJEh5$+^8btG$zZ$zuGtdeG>}Cd9_$D`nv1 zH~{3L6(*ASTYV7;gV3XXQ_q(cBK&w!qQoBa91rcyafI1kn9;bw65#nB4hRs{BeFHl z${EPXVHKh;JhAlRSs6&^LB5G}2ec^+YWDHQb_51*S`;kf1I1Ag`nvhPv$Jd1<*OlN28;($<=wzC@~d%#TT!$=B~<@>xf}1WGuf`pR|)0-wH|OzESk#q)}RvlS36c z0uF=#c at 3`_rg;z(f8GQb16JEnf~|aO9Q_D>&q#$a^D-OvvHiAb>uTjU*>}Ki zKk`L>W*L5Y1~glqXZuAf=PZD9?Y;CJJdE)z^ed%Eg|f5_AbkI5zl=fP(UdHNtQ88{ z=*_yF4>_pF$s{Sg1b1RMiDdBB>lz_VNUzfAnep=eaeUB?bep{KXV0H!jhqhWrMGy* z>@}wb;6vupV~i=DJw}MH0!7i4{tny$1LfVx&!1nwRT*dbynmA=mD`&0sXYwMynFd9 z*X;xo@;=p}`Ap6LFKa4JUP`%O5X*byK;Y%O&fZzr#43C-c#&ol>zTS+5AB!gPoG^!?CtgMRw?dzJ9*zU!XXPmG at 5^tGffl_d zh2=6bxq87WS_z%?L{9?!i~#4w`z)P+p}V%VSw(Za{v1mqp||B{%grDD at NJzdnJvnN zpBT?*(DMP%4 zJ#Trk^Lw=Z**ggTpetaX9xHnK`@ZJ8p)Lxy(f{QXOOFIXD5dttVLpFhGNQ6`bl??!BZlCym zf}mqnkLK?^QGnf9v``oV7lM&6dJv?~8ade8X=Zpla*(4DMt4!{C&Hq6Xo9VTa2}i+ zmiLXq(I$Z4HTud%n7d0MRlZaXnJ4KuU{+5j6e7u7afenZ8ukux+2?+8p;(t%un7AI z$Eu<-%zZ1L)dW}Ns$z<}Tz_YKD?n|h**b}p0}SN=xUBo~@7^X#e`_P)XP{YLdKLzh z%zNJ~EH5{m0ScS at drj;xoF0LAURKzvmoJ+?ee-RE&On6wW-OQ- at ZD4M<-5h2>09|r zIlrzD4dpXAGZUhZ6+JOgmV+wpr#uJ2&+DRL?6a3kmCq=dUMrx-t^j~oKc_bV#JoEp zEWOA^W8tXO)8<2N46mr3fbS#F%{v~BVD1|T$iB;3+so&a>&Ehk;&JUrq?}&_VACD& zu+cn5KrTfn at Q6YCB{U;M&U0SC(NwHN;{p3ZF91Ma&W%CQ7djh^GT{YOnDm%?cV}-F zW+$8F+3{wmr!AlDFHezK$gRpj*5qdkGsa5xe|l`NnV+3$&V;k_lJmnuXx^vL2-?GV z!pilT at CVxBQ6yMcygb5`BBtU+VGK+~08Isq>VNs>)r;mf&vJK@{Ry+Hj at IXr@B=na zqI@@Zqjc^boAaFgd4BJHa%fCLQC)m-Wd`S2fOwRC_Cs3%XE+d`r-8TRd#xUTEJl at F z6Zv8$(A?#X?OlD9GfKFk_ZJaN&z9zzquuRhb at Q_M;?-9* zbhK{bb at 6<>OtS%6in$nP3a8A3fNoa92fNtseVuAFdle*<=#w{c zD+*0GmcrsG at I~n?E-d9N_dr`2u~Ipt zF37+B at M$$5LBrsjzmQtaT6H(2$4g1x19dfjJ%8*7U7JpYPIy}ZS6vK5y%f~R&*a%7 z8|22iNAnm^;=T9s;tsO at i^$Y4ZuXrV0cv at JguZ!f=VE-!%}*DJoqm%FMHYE)IXvsfLwz(r9Eoh#x} zZDhg^bq*~xj+HFhv!TNg2Pz_De{&B&O75tgBiNh|&-CXUHeO)g zYX)%MR1u%h{B2}Qp0b=m`0Cf+eyfNL at 4e@koR}_;Go#$+6*RSO!V4Y+kTc at amg~J8 z8e9L}Snll~DVcd5`T*8iQ%4>Hu+DSc%Vse5SK&X@$16M%T$9g-rsbNFZ=41IJ{?AG zFs7U*K#0zBG@;j)r%;MOIr7^Tp6Kl-bSq7zb!MVk^sde)3Jm4HIzxRE<;03?&^e4< z4io3?oH($^0AG4wa%wPQVQQGpzLN=@Sshgg}!+ad^me35tYq zvgxNGR;?hW#MiTVy+RN9lHAUt67A5+bIL=r{#T+Hc~`D0?;}b(hoSFTj<-TwK2+9m zfRMaGiTSk|c__WW9I_Eos!B~{c>jJaAT{^P`#i)QK@{tqOI25JZd7Dn9={ONWrUUtd1z$Uc`MKE$ z`JnFz`HQm%mb2TY^{hgUxEO3l at U*;aW8!OH2#c3&3eeg6>{fB at 0G1rK4&U@}-;TsH& zfaGJYe9CpBM2{j^yQ9RlkvWNSd(7EmlH2P5+$>mcHX%kkQ6 ze$3YTc0Lz at GCf(=sNx;8`{MbF=2ZY5i*!2s2ACW+GYkh5-v$6K%+Cg} zP32tHDiliT8nJg0-lCk^bHm%4^X4J~>n8NBvRkg;n=fBCT4>0{<7txQ?DG@{BS!da zbJGN$^B5(-=|g#BO31eoxl!Vjqq)28Tz<~P^mRT{-L6vHcPkHD9(9XVQp zo~MIAl-4pdGT8j~;eC0(~1ABcv0g}tl3s7qF0^}`44*c at V zF9r5Q8tgS40EhxMRj`)x+>@i2^Ob9=2yran`Sffzpiw^UROtG#p6k=6!}2mu1Oy0~ z3VZQ#M`%a(@%}_%=DWRGSe(mQ+t0 at sm#uK}*f1xYwM^i;Bq4wM^d!p~XcTYK|w z{`ODNAu5^alf$Cj at u|rIHF(h%@29C9hX=bQ|5b_tRrcenufJ|qH`W6nr7c{R{6ia* zy!J6XT=R2tjjjto08bH*B5T!7;zC59$Z!Vgr&H#?E z^!W5x^ER^UB7dhR at w{nAHRC>jU9VcrvD at 0DPzmD07Iqk&%yZ8}2$0hsfEgpoXzvLBz z1uygR0n;1}u#qBOxwPk(tv->w`qCRZ{--ZqekVM{#i-wx5QYQU+}O^+K1RXcv9Tr;9{_b89ots9C~c||v(azgylXmohYFCWtW&`^5GMTc z)yoog>)SgKg#7_cQIk0t^8_{-AbSx<|9RnDyghO|my$JuaW4*FEo0A;)Lm1{dLY-&J zbP}y at B%ZFUd}=;qKfIo!5ey4c!_8=KTeFz=ynXhpz#bvb zV($*o%X8WZ08r7m5aIgQpMGstvWBU-g(&f at LhgV6_x~mbbk=O^C)MbRlW9jKz{tV(%eVs9tKeS^ABsyWj at n8IF`NKYP$MIo8xO$-jB_2 z_7X80r8Yehq7BndM^Vm6G|e-x5Qhf40 at NcAW2L=%w%C06?u%w;Yp)D|z7XzEXyD)c z;cYV!;ygPC*m=){zOE}&S{6q3 at x|g|fa-OaWxp8-6Di)f2>5s&;Hh#_RrRL`PhQoD z(W#~{%4}2>JWo$d zv_E|PRT(qV5O`F1+B9>1i13)r8B0qbR26`1g|05c3j at RQ&E%`yRD$|rXy-$ieKnx( zENiUl#q6~fLC=}Y=bxK+yi_*kykb_|7Q0WKpEY>Xuqvz8inkqH5W0Zqbe&m$;R_O?fHXnnvV z!syU at P`eSlySKB|{QTEnvL~TApgDr+w+}1XAG9|ZV0K;YBSykgZTA67J#FRHJv-bD zP08D7O}|kgejTOWJ2V^st=M6_gd(BGnA2Vbuo#Qg{Od12H!oklD&w*@%9UqxWp%&8 ze_AmO4~&)o_PpI_V`4IU)K;k%LMu`yc#(PkfgE|iT9-&gsA}neJgu#Ose^;;OP>43 zAAio?oi{IEy{$ql`G6GhUHG->h;g?tljnH|Q27u=IuK>}P>Q}Uye`*uabd1Pg~CDl z`@Meoyt#@TGw)kE&eZrsly6^!BY8;dt$Dgb*$0iec^I$nE~89F%Ub{_9BIFkJZ1zykpt?x$aVYqoZdb2b5Pk#X|rtly|Wz5IA9 zJO{&`r$p7Ux#>LLGqaPq7tgB6GgtNR$%z;YqcQX&%Vs9#BR>Xn-oHl9cD3YU4543t z{a6Z8SPjTNI^NAa1LXQ*$n*SlKSp8pgcb&y#rcV5Ix_t3_O$72yKCOQUTT&WrknZM ziO^+tv%EOlTnErB=ltZM--V7RCWf1y{Egf&sVB&*R6G&0I$Dg_sS8{>!f z5ts_Dug)HvBf!snKvF9l-0C05ARmdm(SnLsh*zIsD?LRnU|Xl+k%0RA`^EA?^E@)C zyY04_8jH at znVp25UcPu48tt#^Y2yQ=k52T}9>(@<&W`q)_R#k2Nx*H4#--`G0CVXx zx-GQY&0XCF$c87S{us$xAP^qOnzabCPMdibgZLuy`67lj5I>xIk)P+`x0_&;uE>~o zZ@;V@)1}BsvY-s4 at HEgD#NNuw%e55g@%nRQwPo)HIbV*?0?eM3eo!3vZ~yMk<)Gpq z;#JpIu%oT3cueagX-@;g6O~@W at Opd_)sX`k9?Q8Y2JP)1u9OMJz~=U5b9izPK0YfD zZ%n7C2yCTUz22$&k?}w(4>xcrgKuhXsX5Hw=x&k6FTeb{Lc#KMdE2vN<*k&$0vEON zmoJ)+pFUNaBVIvGt~n)ma2;0eaaCb?I8l;+0DS^&XOkZY`=Sd`PV)0GJN7y(v^knODI0Hp{@ z9vYSrE9fbpFEmv7h*h=wbQc00EFlZ|%faY~)wjI3P+`UMfYV1nH^e6lGZ{p^Fe`aK ztICF9Yy+WLNf){QEpI`9oW6TNp1^^Eg6FYrS=(BwsOBZWSaT|{KzqcDPcHv-ToyMtW&D);6m*@|+!I6cfc^%R(!5Af^j>1$TDcAH;AG+jBP zg$2_rh5~ejLi?J3`Iog}86%Qvr!p0;9fQcOHY#z-CS2c(9su5%476lR6sL$52F8_i{el*Yb85gq`$ z0-XIQK_1!dqr(DZgW1>70Ec&P-^R#^1t{Mu)@*-IKu&0^JA!a}ay-g2#!jv;e at W%` zR?hwO=(Jg!naNpAR=oiff`yd z+HPXBKXkVkqe3Npdow&S)x3Q3vXsL{p5@!GzO3i~u*U0la&Z#_NriiqeAdwwp5nb| zoPUfWrnsCkhU4>>ubZEK{Sclp@#nE}LWc%An(^?KHL#H7s`5%X8#zgO5^8HB)T>$e zG$Sf>Ix!WV$@v1{`jtxLKh1SFcMmJnA~cU488HF0r z31=ZTsRfk-nLP&jcnGzHstV`;W+6zSH#t6g`})nr0?*GtBh%+Bav*}J=!0c0L~4S7 zszZ6WQWelY-Q3Fk1n$Bokpmkm0ZtoxQQ)olq}MUXobyG1fvWRQG3 at j`V-ztwXR;5% zgjr_E!Dr8xD(1)PnS=d!)6H)qsdQ3}T8^B9h=UcZhJb&+RoRZjOu<_!g~^0e`SO69n{miwj3 znQ0|w?mEDNhdXp6Jt?v(kCXF`L7hG074%+_1TxR`7SSdn;Dr5o<$-Q#Bn(N$6(bAS z+F*@{nQX6Ku~e*a_SSU^BzjOOscZl$R8kOXkX28Sz>B7H+dhTff at nQoTmq6b5} znv_>0E5L;(kM1c?S9sBXysvZ^CxX28ndth7G2!(7=u0V9q0^l8>1hnP$W`Ekk-=lm z`=%2 at XHM?!Iy4wVRHRR+6^+kCcc6!Xtg(9O1)L5JNzXXVwT>$#EKkz(b_7(#SicD` z)byY1fqR=Ne--0go~-%b^7eUFBl at xzH~HJ|#WX-^_`0q5FdP>{LGejfhvH8W4dC`6 zV7^so#t^SUoa}?>hiYKPU=`>^9sqSJkRP(&iUz-U_cna?vH9WqkIf(d_%3>BsQJf# z_}_9w_qBItX9i6?6dei4GA782-#&cIJtH^iix at urp)IK#@*EYl=w~UVhId{k2%%p2 zty^0ge!5ESG9fdE!~Os(IdQ(FO1A_`9LO?{dD)_Re-*hfUv5PY~l> z^Komlxs7tX%EMjf^%Mjxkx?Zk^QEUaHKi!hbY31#6hRm>ho>B?^-7>u+s z)75-a&5U^ubV9GB$p9>eM0g0paY;*HJr47ig_6&&=fI$IZ3W~N%7yBVV3Ru{(Y!67 zwR(I- at ErsY@G|}>iW)%v`G at brK4E0m ztJfh)V})3TcacqxRoSe~%4L+I%4s2Vb%c*kx6R4bQv`d{40N|fM(v;9G)MW}W|aA5 z7)vE{fA(CGJKzXxDcTr_6 at 3=LD*${zgTD`9X=$O^+}Ui7qL^l877Ng^$P}Z at PmDIN z7w4MUFi}seNL~45cqr^J%bB<6=bt{rXgCXVXc2JItVKC#fIJldNXb#|WdOt|`0yzP z000=lBbR7=ayrZrt0s&;IyBY{2ariC=nqJl86B%$bXrPKzCb%;27PMVaL)1!jS-?6 zfKnt!0YN7x0W_gYG|I#9a3^Q4Hw!Rr8ottu6+{^Wrdy+9JqyHUlp6?}@R==2{+Ugw}ZI(nvTx^LX;) zZ$*AIgE{B!eD4n}>X){%u^mu$-JCOM@;mKB7U$=3wpy9wE40c(ynh<-C)|-Umb$?U z0(6*#tTFHX-BSQ+1YOo)@`{S#pFeFi- at JJqem%_oN2z6Bfh9ED8}MDl7ZK`mS?KdC zsRTk!v1n^eF-kN*&EW?8Jq7R#HLss7RlxyIgfRHC=PygK at l*=OcyHzLWQCB^W-Nb|hH`5qhs&)|5lk7V_!W8)YMC0JuCy78iQcL8YCC0o9|ZBa zI$Yrt9H%|1t8EMcs%P9_S`CPDd%iwXFqG5Yo0xO5s)7+8HFf>OyQnHxljOr z20(Llb(hcXl+jJenRCo*X^_ACF?1$D-dZ&ZH}iBke|!Jox9s&(vp6>v*&5? zwI4_Or={q%5;JRCqj at 1IUJ{^!@)8E)W%hM?uud1$~A4T{;ZUWbbFjbLJOYlP*>*B7GAxG>VE)(` zGdUJ8*O4`uIArYQ#PC3U=O`hU<&TyJ@%ka_4&ce(c!s1ENa^Sco$6QFqH7Vpu^2S+ z at Onxfk`ugYJWxWP%gd3Ekp;)$866FJyN0q~V|n)BqVMy|))X9}Ug1(hBczY;V#|H2 zP9RxRgm!ZkFy78fn^#-tu?ibPYxmdspGKFR1W*Qm9!5TE^~GUCCu{X(s)l*d<=xD) z1NM5lD%i=5D>B6(U6`NBwN8IO%ll at 0f|FvT+1y$WU7qDS!9$@L#adr}`KCEI+-*z% zGvSJ(gol}~nVf93sj+rBiZ at rSE(7+gbjl-7CP$>)M?HRditn0F>zg at Z#Y(MqHwq5* z1LeJY@#1xWv5)10k(Y3Zv?!e$q at 5|c`sUAnXx at GKMe{bsjy*KphT$Y%5uK~)pj#B3 zF~kQrF!m2iAHzZ&Uo?;3$u$5d<`$-##VEa-Y}g?SD<|0*f`CXdIwr{}7O)Tw%sJPB z#HWv=0EJ+MO@(WPa%w8Z*l6?W?VH*hgs~K2mme}bHe6ltKYaKx#2-TO$DnL+Yzm1b z$ciDXRX83*r~?b8h79H)$HIhp-tr_JMSz>e!Q+C!2&bMfv5g=!S!jR|6ik`$;tAOi z`oc4(dCx&C#nxO<8y<#@;0rw$K#)HY8qf1mi at csH) z6kn8LECnIQx3At-uEg}@Ob$g~p6KMR-bN209rM=%w2jNUkCh9^3Z)TjsuZ8UDg z>Cb0J`$O0PukH7j1!g7sv)F}%c)@07X3Oo50nIg)m at ltWg&jat9+`mkk1MOq`%kOQ z$F-g2IEqeQ9f47!;i9BfHeOr?sAoS7bVrv4s>`J^Ly<>LHTQ8qtp0ht9odvHS*-II z7?=>~aK6lefq|}iAArw*c#Lp3Ke}vAPxhM+?|&;7yO5b&*2loHn$a5i27FwjRi(b! ztVBTf1k~!Yba8Gz>tGeLXdrwWVXiHLXL6|Ob?L>H4a&Lk{vJiC zjz;JlG%M?-i}Y5Qf-%A>OA49G0~4PX&NO{XhI{3q9kam<^|Z~ z_5vwD;!qT&aGM@)tmVn at FS(_ViEWO zM7An8Q6U*Q8jweJDq;W(d2rX)ccKTbYR@%fro8p`lSe3bSH2U^k$pTAiVnygkNh`! z?YG~4>zP6R?$iCm)0q<#;hz- at J8ZQ!#Rfa at Fh|aGtdr1ICMVer}SBiiO#`+J)$E7t+o9F0;Qmhsa5Va6)Nxl@=p8n(WbI=^W>8{(0r)<(bfm4jJUC zJk`6NTz0&t5{A^pT2&5;me-zjB)_- zc`!dKLgQTnfFh<24 zE9-r1RVD*~J?*_QggdGgokq=bF~W6^K%34`I+F7utL*LQC@;SzIz?fE-gWgcq-}`{LOUw{GAUd3o$p zN;-^BU~uCj)&Flb%?1T-tpBNr;9eMSxWjY=kC)m9#54TE9N-)X1>rDVuc_ z#YgG$C<^7});X+$Y%FxFKb5?fn+pBTMyT>QX{^c1HxMNN^>(P1xVeG#_X6&&V%-jmOvMV>$l*OTGXZ10 zJ?#;2s=_;({hh6*EfzhnNtp8f$*a`6jHRmr%$TdNYAns(0L#&)FGA=(&(oLd2&EXC zMEPM}V{**Y1jw|j*xKH#&^V=yUVspzt z83 at ht6rqu-qRctyJLUbJpYrLBB4-URglT32!n*Uhn<##bHZjVw);0lQ!m`VGrpeL4 zW+F_t9^l2J at s#@tee$%FCn~~Ffr<)txr6fSh5|}}f5kW>qy5dBS8pO{11R(Ca(#pi z2sU1d%P=Jodf(mK>_y-lU7R*2xt{quQ(0qY!1KqokL8W%=!+1^g6|`I&qCX(OIf>$ zVY>TAvVvI4u{Hrfp-&+^3D>Rsu$)7LSAU)*KV(nx+3ZRFSHgHA0 at C{W2cl3V8%Ib~ z%0Tu`tC96jn`MwVvl?CayQc;(5aeS4cxJt#bs?cjfWChW4-B<{3E>nC)Gf(A&qPT9 z0?wM}h5R6J<#d^g%7c^>i%^xUucy{zGcz|^{WV*K8mje=qR6iz at Kkx{z2V~ui=0M5 z<+uu$L}^Hg(Q-q`xwpS3MxlJa>liu5Sy!u?v9rA^*W9o5 zky-LG7oRPc7x3qwf6JK+#Yk9hR at e4Iqw_JG-ex_!MVGu!SC at A&76zJXU>k*_ryS$N z9#AGim)0(QMOd1A=6$s{`mpjMFw5ujP at d1rlw~rv?jD_#1>!< zTmqCT5zUs~+>9&=u;h6J(hee*RJZaL>RHI+jCX~h<^J~M9wRZ3fXJn#XQc#rx%!0b zOF>;miA@!7IypIvoOK3Gfn%+iC_Euc&lI(q_dmvXIw{Yn$cwfwa(wZ&QDk=oc- zwt*tKs&rsJSkGR)`6glr^@YYG4-{+Y!Hc%YUj0s`4uQ8K5xk5%x;%e)kKQ_o0kRVi zbAB1{5jm$L!{ym=(;m7ow|snfJT!aPdAN>>E*4NVtF)~QB zo2kB!_^vaCES;3|rMrUyat=JAt=4L0 at B`B1KA?CLJuGy48>_VS-(7`=t1>nx-KqHU zQN^-}8n+d#(B_9;RiG!m!FehC+6&(*n&f;E@;(kv(gh+gfVTW^z5k|XW-H?!@>VYi4HV!ULz#>8Itjlm^BbRihQdi$cGQO81c7Qn~zj zcD)jLrtj}N8m-gX1F&x+KNweNSH!IXC(bWRCB2 at N5 zc&rCaNeLniUoBKVkjfW~!P`|$dvh2zl0pzp^AP6&43M%A9V=Zvpcf0;OkWOe;Z=xS z{*;g%%hkZ>+Q;B_?n*cn1MY+C<7 z)nkMe at L30$Ju*H>PEg=r0U`vxwEQYm>zWd%ol^b`{Y7;|X13F_P6Jhl3B5c5WXn3$Ziq$eB0(5(G zJHl}<3?C~yX9Lvi9~t2{T3`pTU-y6_%bglP1dM3{ot4;_S&8z(V`l~PN^Kx~n z*H!Mr%gVFD12vcD)mKq|ED-S!z8xMMV{Vr>KekzcRYFu1_`5eR3pkniYQl`?*BYuq zlCh|*O)e(y{b39x9y`sG&HUWY8EX=)07^wPfG6xHl|<_q;GY+=LX81y!cX#fJs*A- zCIfDd+&4Vn1pxQ<#DI(7)zo}`ajE*u at qVii{o^115VGhh?~^`uz)m(N*7|<48R1UR z&V*KYj%&trgri(IRqDJ at EOuTDiugD{hr$|*p|rbqn4bfXLIZj;?&R5ciRA08udJ5G zUYi at 9shcQ4d0)FxkR4qS(Rps5RDRXi at JP);R;iv}mpobuQ0R@^khABS8v%GL0ey1k z{QdHhr`2?c;qa00aTDcz+PrwNP(XWEL0k4n%1MoP>}xgdm%vVWk#+dh-&CrF?_ixg~aZ3jfgK+m49tbVHdCKbX at 5p<(j#*9^)E%|K-J{rT;zaG4}GOS z-20ZX8Y7afRyfLoranpw8m(rs6#+%rLuo1xSE1Fe0=SR)%vnI!@ga}@b?t-VAx;}Q zPCoiY$2eTf6xb z{#>e53 at IEY?HG@!5Gxi}cyc6Xd>LLdWB(yW>uf;hROt6C{M_n^tmwt)Qed?&`xtbQ zpW6x_nYzS)7NN7ZWR+qzz>(@J8$Rk=wy86>-RCE8lN$xYiiq zR{W&6%9k_|a+T2~a?$a(BR$`ZN5ODaB0}T5y0S1$ow>Tl^QOrtUOoEc9}Tjq!$|T2 z}sUo4kP$fN at -H9D1#Leo(W;7jJ&BZ5YG`HFg7R|J(gq`t>z}@8kEtymoLhFd>M=R z_#}X0e4s$7Jgv!*(Q0tplY3c%16+$x+}PQy^=|K;HWL#-M1)fq|6qHsawN4E(68&$ zhmTdsB#iau_1h at 7fT7Ui-26<1>W%Hn%EP?3&32gLr;j`3E}vgmY_v!rh&{i2Dd$1C zpIsU!)oLy&3 at 98hJ(=r9VC`k zQhwg;Wq#-BLhC}s at _km<*Q;;Q90kSt=9X`H!>@Dh3yldn#wW at Z zx{N|O&RT9C!x#D4RE+Kj2zfp7=cEO&-c_l#!g>@@(igrk|kPx(Y9Z at mck9 zXFEdYlDv)L;<2l-To>2jOO<6(BO+jPy|3TBZl(huf`Rh8o8q}L<^m$+FKzAZG*b~o zz?>>moEl>|c0na>1W|z8G{#Ra{nXLEgFTcoL1Ns2|fN;s= zlu9XDvML+IxYc??HR_9(Z$d3m_EAt|7-=b at _rwr&Sy|dYf;qlGaUzK6Sa|!6%3jnXx%doxqFaNX}StuXrI_r%=61tVc%tNMsA at 9$` z)J)_fPjPqXtFO+(muf=Bn8l1 zPUccTY)vl7)qrBTd6W)Q)D;;c;)S0?FVK at l@%X-{KZc+bko%SqBv-8`vRpwLeZRYXnBPTr-ULYZnv#-z zV0{GqD!#mm&cBEpknhGY+}R2lYev7iu^r(~_YJ`Ltt%dH}cki2N;M4 at 4oIqFLAm_M-Y*M zsm$GH9DR!MC6sQqy!KAyfKhSeJ6XZ`2FvjFX#quk)^LM7tNZA$sU3}6TXfv<_fv!4 ziA%FI#seDW=a))h>rEtyx7?c{1j+gOPsuCjj<5yNwD&L)g%#Z%g4Roj&@r%Hm5ZcR zb6pj6 at I)wkzYZao2+`Kv-#kSCY0&sN^iqkO5z>(R*~vjw72Zc7160Dj*HKX1mJqZ+ zk&#u$VRB(O;aK;Q9|ZgfPjiI}B?~R99^z&3Vny2kads_dD7)UCp;B at -QdpAbO=a9w z4vveRB4Qj0p4Uk02wpqP)}F&x^?10y8%wGu3V*9vTVLg!F3;as ztjMqb_-z#Sd86!qVQ#v4{p?wQA}g&uM<;~DiqE+OD5$a%u2@@LjpEq~VZ<8CVRl3z zKDC9Z!;cC$POc&tvsP9HkBS6v!ms)#Wp8-ol=;imQ7x;nE2WUz)>(B%NdN7h{}_fE zDbRtq%yyNdc6 at eK6`fjoXczS358oGnJUh8=-o9AKK18VG`Vx#W|8zfObIORaf#K3`&+d(0!Ijd z_FbBvuhDcWW`Fzj*I3&pbst^g*X2N*A7@`9m_~GYZ{><$!s)riW at vn>EZFUw?cuRv zkf-u~sP5(d*8`JK%_?Kv2IxhYP;yZ#HGj1&dp4PSn<@I+#}Cz-B*$OC;$?(Gd!D5~ zfJhF?r?u5mJ`5Cjp_+;+M4AXK@=)Gip9i4zHsga4vQa3)F(2)JXY`g%uIf_8R26tHF~R!Q~}=+Wpw_WCNu&&K9W$^%6c&z?WaGj&$JtV%fGPk0j`VW>$! zmm^d1Dd2?AjzFm#Hy+{_`8=c1_&Ej-uODx^@ZoTT=Z`=A*bEGtfH9e83uunKGq#Nf zAGwJHoaek)_dtbQHQr5hynndY3dLm2!ZI&&FL``NN4o**mjN-uQTBro!W+4c{Jsd= z(CYr~UWIr7iNS%9=7%bXk_U8M$`KGTjYP+TufF;wilM!g%a;B85C7rcH_sv`(3(&p zPl~ojo{3KW=9_P-g4VODe5|Iqom!@}^6JpqSD~TTuU{9)(LYkFB-OI$<1xx#gvZQN zfRG_o6KgN6*6cQ@|+zXWX~sZ{pSThHLu50 z=t8xmnb+-+U!OvY45l1irHnW;0P-qwSmM5-5I{*juCb8b$Ac#XCnBNRd~xAftx@~3 z!vo6rAfG_~Nayhf<%P(JLoeZhd@)p)S?3^>to2d=Fe?pTyoP$GJf`nJXqy8;AqPUHN zfd`$(8Bftat->9lb8 at e}`4|9B=RF1Z?j42)>A|ea{-9+BKk(_9I6gQl}Lji)5ba-@^ zx#V2mLjFcvSR6wQm5x}Sy9@)wJ4>+j?R%pR6nw*-* zUbmb|ogF>R58wZoJN=xch z6`AF^_3slw0Bp4p+Kfy$WWpq#H?Q6X)Wr~s0cD1`{9*hbPgbi#+w zcgKJKeC|7fVkifKIHHdO76zm6ubbfr#{B at SPpc~hj)1^}{k;G at W7zbJ3m6#eE6)S# z+4!s(1spj508tK>(q;uDT*7ilGm1x* zuDLif*K|G+!BI*f^qFjIPn6_lgll!L&xYtJSh+2EKgOv;iV)b3g1ioh(mr86fWv at q z0+J$s_Uc82hk2wvepqX!f~3Fw_79aGBuD8f7PsBlU6`FI?(@_}56=HC}ixHR)Ap#=E*f~j=HOn$gEO%%x0PH0<^TK>t9?(Av z5%?j92?UfNah}V&eh7eG5yFX3J($fK>Q=rN3*|8kc@@U(?i+6Y^FRG-1YSo0ZD4dLg!;Duu}cdR%~j|@ z5zq9vb`$v&it1s(3-A^-J&o&uwB81NB`R$kY5#-lJ#L@h%sytnH}(#ihqmsfKeTUL;qj at K056)!tZ{37vjnp>wZ(D+5;e-k z_`<(0mSziZvdHB05FXRBp-Z_Jp?gBanLS?J#L8?{Hu4xUNM5{n7Em-0pnBBIOpZn2 z_cgayXN}p#?_R&C?(jlN3ZCqh%H_ToG at HBoF`~}P8*mhGJUhQ!-s_nFQS1K at pwJ4B zc9%EwMZf|e$RjH`*a$_?u=BPjoyA_2l?>F7(wST8Z^RHh0PQCLulrdc34OtiUYfC&zAoZ!7ZmzL}q!sfftz ztX3E|k^B9j^B8Q|dyTzEM*5q#Z(arTo|ayqFr}eLlVD(r)X3L5%4f2)C}qi~?VJ^L~p(AnyLHapWY1}JLE z(s^m0gje at tl+Q+%nLxCdd!5Fh_`}!V*0TW_tI>ydk9Sr4&=XzxumAdeDcY9-$l3;( zBvoxie*7uG7J!Kai*ZEGUd7OOte?B9 at C=`+Qaz194t$E5=(b>9z5Sn^nhRg5;J;NPt8BIjrPR5`PkA%ZqM(*=%mqpML%^JJ^b9h)$wcYn5iA>Rt8w^z2N2ABY&)!Wi+qW|{j^z?mb=Jx&Yf z(BmIhJ_e}oRt2^(lqV;b&0YW}BTAv#v*l-b2I*;JN at ROvw5TZgy`M8%&0dg?Kq)}n zF}i#BolgI9>Q**(YN7q&BEexZH8Q_6W)aY2+VnRucZ6FS%^}_*t|7j{ycLvY(I*NH6sz0`Ni^uZf=FYvv?KN2z2Ih^BYr*Tsd(igS7T`BqO_i;K z6~A+^TOJH?{@z$5y3)%TvsRVL6e8Iv2?>ou)v8G(FP=A0Q0QkdS-$#f(L{U8t;YOKkZZsFMocjV;fY$y9kye!} z?@Nd<`xQD1Vd-(!UY4rXAFHco_hua-rm3;vW-yZZ_VP5A_iQs2p+i_|0fOn#OLqjL zoRM7>RQ*F$@g^K0RKXpN$v#9#YSL?60HAR0c@&NQlV%}nlQTLtU4;M#InQd(5}~dK z7}{Vhy?nNu=Q$2wTdQj$^qW|eI{}|3=dtqhpYYFNgrcN+VY|@?o~LN(&E2B_!l9yh zd4vy7trikIg~CGw!eA^zg7G2O25{s94G;EIe?#MWv`0D$gGy!>mgiO8+}@5*jJ29` zlR_~VK}C at XZLY3;${qzoMIgx+x(Lu{gk5^|9_#x(T-6rPFfl^Q?femJ7m8 zW=|3-l*Pxjl?uhSXT4@|0$B<>s)=go4gk~^g69j*p-ZEZb(nw?R^fJex;47BP2 z7rN#_>Bw~+Lid!v-x1itD9+4TI~$;nrxb3{LPeVnd8A)`@w(~n>5KwcEui8WBclN; z*<0&h3&^ha8RSX6vwS5^Bk=bDvwPv={31Zga|Yzan4;|MvEFie#jWIhLU(fhfFQ*W zQc#5HfgMvwco9B*TFDyrn{WT{rvQ}20*fYoFvL6)g=%sJfUgH7ASzV^paO#I4>ucc z(Qd#dZ at GNA5AT18T#8W^kaBpqTVM)MaE?Fx_(d4UAL|Bj9Yw)%SG7v^PzD;@ zn=YdY(=-dWqrm?8pZ~d(LbW#G^@$uXa%?{aT7h&?f{WIyUhlULyd7HK at PJTmLUM{s zfC7M9?vIey+WLBA>0y-JWN6wNyPMnV^C-rl at K-=$=!${H=#xvw7?Os-3nE1M=FOY( zj3^Mgy}N9>L$~MA9SkEC at C=&OkMARg$4lYxsA!kLo6oal&j-RcFJHZiDAO16uzB_R zRrB`ko5-V9RreQPyb3wohhFweZodh5q-0GPu}34}L6zsZTt%4VOi9xa2Ho2aA3j_) z|MuT~8xXvd>+cu%`}@EDcQwU_vC4?=&+mi>r?O5d7YgX~TSb$KP(FV6*enLv$W at c0 zM{l6>xuxX-ajL89oE2i(g`k`x9{FH&tJSO1 z5{@HFTFu|_6}lA4`Y_UR!;20cuc zxfZ;|!9zxBQ)G_!>(_6~kX;Xb?B$u{L~m_uMn?u z at jrk4`a52rt2~UcRM9HUeHM9~H=IXU9EF(l0ff5CTb2i}CWCnxuE?(5wkm-h85pUS z8VE&_{3C{jy`3#5%Ljg zSq}m>?P0L5)d~IfmPLNk>{1e03vY`<;pMmtukFt-{Xig#kFL+b34k25L6|e)+fGC1P zi-H2FLH||65++cYSNTynSPDXj(pWTkC{K46<&Av%_HA<;h5h5NTLDbx&2SD%h2(mK zgYX)Qp{&*1gtgA=!xKB6^WX{5F!k-LtI|m8?UDeU{&rIIkfSW#E?)-Zz zds$VZIcGrn!CnT4w}qLfCP$n5AOPNQAtJek>ziB6VTAruJ1R$Tk>*m%B<*LvLZCzalp#1u4 zwQ;e2fQR=T&GG1?!E9aVGFOgLGvZ7WW^40oz#%1srvOfQSZLGdLN?7%fXQUmr$9*F zolD6H?jIa28&inKT(pAv at kaj8l0$6S+g at SAR{x)8U`@K`elLt`s=6W)5o>u=ITM}RE4unk1m_v z0%9m+;EWeQeyjqwp%`6yV(Jw*9fMNHk%yCM{bOhH=68T=iifM z6arPIMWKm{6FJ(KIoGpNDyCuR11hmzA%s>N0|At~yT+UyR;Y4qZ6k{IA!jQUC*Y;4 zx4db8G_Vo5-ZE%DuB;XP at n8#0D}cyb ztJ+?!p0FI_5HPslr46rZfug-vja3Y-GrzXW+t=H{pKjK~y_9t*TrbrAA+u+^^YaQ)} z128Iw(Y?YbT|$q!ro?eT6bP2T!m6Om_76Q%Y_9z69&zW3dl{Hv^eikti-21!PaNT{ zlB`<2`(MV%ZLX z at 3wNB!fZeP`b*`)DHbsM_&Tqf{JWYIM*!++I2PLY_KPo@>4}LdM$xEqZgw$1KEgao zxAH1=;ExGw92aYvcfdp(72iFBLoraCNWgji#=9z1bsd3HJ?OHBrnbnV;Q{R%7;f~E ze37&3#57OW)d!C^!#)Ei6z2FyclP_K4a5p^E$`xWkUPRcPMzHP)JB7a at 7fL{D8={y= zxP$N~AlveMtsFbbB4?L9=*$_RcV1Xt8{xsH7<7aa3wdgCtO`F?-+ySHEzbvF0bG6g z9z!YD6T)@vxqzdi2u^FN-g*(tWB`Fi))1&SQJ6wij3$Cq;X8~H~cJjJt^>H3qcYl9f#W3>uzW at G*3b~oWBJ{PoYC6S3fFjT9RE*MzY7=EY z-+b{VU_G+r^f;j8FiLf>a(96)bY&vTn>Vi;GjipRme+NBI(so*G-8~ZNd;(8_^-MQ zWZk?GMsdogTwVPXC3auoTOnvUO2?6Viuj&An-6dZ#pds-&uMK%7Dap6do6MRWFhzM zt(`pUMHxFkgn@>mMHc@$sq1EneXmTj5y|9-bGT z)j^XfqOeUWnO_*s*_}t1>_^V`l_9?#<9}mgrS7S?$20xqpZ}@(>-T at H95vpSrNyPt z{qGY)Vi>my;Eex at K^)_Y;R5`01zeb+ZOkMydPw{85G-jyOqo7qPN zJi>=F;Q=1j+sJM?-}<%sJPm0B0(1SaO!IE~XTvQ(;bqGTzTlE+ZTDy$lV7cD;C!8FkSRp_|Y|cyKB@ zaw6xm5LrJxF&6H&zh}{H6O|J#ruamEL{@q6_=bI=mjZaB+<25l$mmopixkKJN?Ov9 z%W@)tO3on_!BeiAGx_j|eBcCX)iFFg0B_m1$VW8ari&uuG3Q|#mV4Nj*7Ok#yY-&D zE-+?ZHm}}Hu5W$EF at 6pX)Eo at t_i|qE3qZ?f?Pw3a%GsDiwh*}xjF)R1lo5c(rGAh* zc&Kut!ux-{Dv;T at eD;5r(WzRkFZ>;*)lvy{z^9%4&g708PkWA4#FH>XDVr zmFVvG<&BD>6N1#ciwEf>z-lNK;QZqAoXbeo9c3KiorzF5KH%cs&U>{23i!{tb>!do zxpsS$)Lj((NzN79=As3VRp(7h7|#2yqS)@jT)hFN4>4dAzI<3+3y3ot^1c}Ei#M8X zx0;soa`R#y#R6>$U7bcqD*zDQyAET at M-`IPvf*=U2o|WSJsyswfWJQBv8(gu@?<}B zr~>c2Szem2^aKFCD~$beej$51o^^FK)8Q8u>U{)|X*xXRkxETRxcDK0rZcoWnr9u2 zQW(sB^RDoIep>m|tgNn==TBbQVFZ#Mhpchc&u?BmgTtfzwgR4y!&e;zn4O!^Q$j`l zeiqA>HwuuDkHxqvqaZ(P&46YI8J-dJ$Lq~AqRj(~{3?LcEZ_0GP6FJ%{^~919N~3e z-UoscEmjyUXJGP3TSrfn<9I3JYG;spvdnb^7>ojJrD(L3F-W&Upb1p6jKBXZ3swsf2w=W={$AaO=(=DAxi?5m4D4U%1$hffBO!Mn6AG5y5qZbP~18FA=dR~j; zJkMYhZhP|&|NB3N7OpBJYJfgE6RGIy4|slRg^*|G^?~b;qU&npuFuRY1sqQ2JYzUS zZa>EGQc=pgTYcIhSLLD)#JB_+wi%AjIJ`9( z8o8yC_aJ*Je+|gv76UqGqlaF;c-0(6=~pU2c!*)npyd+R;X+;nf=$W8=Ww8 zhK5F~Maqxa^NFe1rYFY7r;Y6Z2w5fF*_YeU at liQ0aaG~HPfS-ZG6 zQz3K?93I16eS*WIHJb6}sSGX=w!VR^tvd#5Xhy%hnv9WqsHR=t*r+HGZyUMKc$%3C z=!;H|$SuGlvOp(su5|K-X5SAvRj$q=uYxZg!*AKk9BZXhkSQcE2ZKER?(8w(4)kbu z#`6p8lka4Pq8`Ol_fe$4rCIS$j~(G#g+9i|okY(@N7;moBJcqVTocS6*Z~uX+IQAD4qj%7m^f^K(-H at 2_gg3*D<_3lJyd%sC}b518aQ zfyG2E-CHUZqgds%XOu5ZSCO$W7R9$ zc-fpqkyROcA#^VF&SoG74-8_slU#dcd#|n|rr(u=9E;*tAqkjWwLOI4@<0)qs!0*H z+%WA(AZ4u=cx!;kuvI1E@@S~M;}fIJxE?+2JP2|h z51Z?(Pb-p+5S*}djXjIi{&8iyEYrRq_2DSD>RFa`Y5?1v>m5YM1vQ0;m6rok0bc-c zK##vyH>E5o3C*63$$QFq+^8}MxRJ{^9VXS~9N3lw&$FWi4?+QA~Z;KUe#YY^-z8 z*fyv+`<8WtA9!+ at JjR*ni+2`*cN*qFgEcQSv@aq=dGH<}7kO#uj6Z^14q(@$T=%$dRiOP$i_IXP@>0yd~yTv+@}e z+IvW+pp;qftmmSe{H#Fab1tX$77GEd6e~}qsz at H1_NUusetJ9taIrZKp8;!KeW8)i zja*}4W;wm`SP#!4Q1g2uwlqA(pPCs{COjsLK>25yrz at i1)!+f)9R$n>eT5kktGgm7 zS;^&n55HEk?A(I~Rl0y;*;P^IQ# z_qT^QYa~F^( zshrZ_u{Ci+s)L-UxfrzXc6 z<+;ND3|9uwasCFV@<`0)9`o}#lgOO*U>Fu zyV+RZD&T3{sA3?z3HWYqeoh~msPhBfe8=yi5!xZ~fb;Nae|3 at HZAz2b-U;7G0Wy7I zEAp)6QM<`L>dlF6MR|-=<@}JFtEZ!pnQ|0Gq4Y1Lco*iE^S$N8`R9NAzC6y-N;*2* z!h4(^dHxs#QlRJrVPkyDBc|8|zl~)-O=w!*TCM)BjB)7@^q-Ur72WNawXuI1U~u{Jr!OzFyt3}3Qj at aaRIXK-{VpzfkPzs`B at Xusr{NmH7> z>(^LK at 3SWi)AQ(E1}~%IK5|{r#OjB&7||`T@z at +h zcs)k&X%WIxa2o>t<-PpqHMxONs$Wqok#5~-9#q*s1aF|Pe zm*N=S<-S;NDiqDxlvmLiI_Zf)as~*6{s=1-TQlR6xt`pL!OCMXu$^+`bvz6Gu at EVR z00`SbbEPQd-3YFT+$*HI{Aft|5L!&6&1tHV4KPSK8KKeV{`;#vL{ff^;R zs7h$Y^K|D$;r{UBj|IvX<`!ZNE{0Y|O3|ML+)ac|06+y*o?pfK;^MPrAbkAT7M{rZ z_mJ%}ix!19%mh%3c9X)ea}W(}T;T3B4G3^~@kv@!OZz^QDDm zeQh2-T7!B>+lmY{O<-$>#57ERFv&4Ujj at O4p%veFx zLW2wxiPV52PajW{LXgkXD->Pv{CW0Ye*P`AbJ~3Q_16V_h5Y*ayThvla4Wf9vBq^| z-uvHHD`n%`Z{9`NYn5?U;8y{)%7&9lsB-^q}Jy`uo_kqS8pi+Y~r=Svk%dP7R_H*X`G%=6s{jSo~6EjeQD=->R!x6Pma=9 at -w z8d;=?G+=NTAUQLa^Q|JHfb`H2(5GFEyh`3ro-;)l7okClfCAC6;p&1XHvlkv!n at HK zg#bx)=PW3|uD-rfjDw+-4Gpg&s{k1lz6?1tdeOPimzk at tUoTUEIoHu|o?RT_h)zgn90bob|)tr^ouQmWMGM60UU z=tj;5vt|8}#}l3M7MVa{+~QVfRIk#P&$K+^k?+d$Y6z|^7d_({-ztrzo?X)N5D{Il47)j(43;hyZm<^TDy(BqQ^v8 zcy8tL&xBWBynfYm=RRB6)8pv6sri|pwa%<5U_Jmz-&nbha0I|8eWbfT24a6_b1!Tf zKBAX&+UVj1yUe;nb0eZfr{~cX_vQU&5Xz;iRIeE7`s11?LWas0Uf*61fa=J<8IZhe zdW;HF-ZJ4R(cYG#BU4ATNdrSEwP-*c*Tr at k3j!4i|UL`(J(w zPYlHXiE$ZuB?2I4_~lDZiIHYJ#- at Dc8bb(3hE6!8jJ}nlN0xGoaU?Oyh4RsWb}}MA z1_!i9CJPZO{;DEdk6SI-!+P$gHM?#i?dA=Q6$UtQdSP zmM_as>jItlxo;$~(^)R!_MoG~x2Kwe_t3 zyqVAbkLP(#!iXx*wsz$=>7GuIj+K%Y0vsNj3b>nWzW>W_VJ`EchiYAbGB8Q_$@c-m zw3IjtFsGo+heZzkdB|9lifc3i#^}CyK7>hynS?oAhj&EV9%0t)-NT$+M>CUsJUu$7m!xn4z`Wo8 z at BjJ_&G)~oX$h_ z5o6$_If*=Y@#1-f^bQZTWqPU#G%T-D{EuZ64vegm*yzJ6Y`%lhZB*b6W at F;eU1p}@0=8k%EQ zn~Q*bd3T!DiX!k7yn3k$(%$uFA6mV~RR7lX@={>JyTI6xx)FA2`T{nA6(Cmw=bI== zdDFs7QZ|gX(@sMX%Fgyq8R|eOc|ATk5;`!)+O_us%(|$7tD?Zbz<=HLChe^)eY z%pWF|QQQMuLs!~gI6}IryX8R+ at h8xY@0c8=QcVB!J`k8Gu*Vm)7W9&vA&n_&Ke0&VptkyUI z0V?lJUeP{8zc_iU!pI7i4zeb4^&vVs%gUb26`0{wk;2f*X-9v0u09K0==)h2AAi+Cxa%#|W{Qy?Ni+-TYH56qeR-HUJ2+ at mKkN5s-5gLE9ON@G|&1&eW0J2w_b{CD;l}ALeJROuD1A*MK at zF&M=+xi_--sxv%-r#6}$zch!y)b-aP}bcU zA-hrGMZ|vD;q)-lb_4>&tk>IPgn?-tvs2^cxf7=1ZI)v)8{x>arv<~t%7^A6 z2Ec#%yRVy>q4s8RYOtA~8*P60;h!rsH_r<J~Q8u7Qwew6I|D9WSWx z8$c at jG!(G4872R5ZL_)0I(uS#sDcwpUEe-vjv@@tukIsc?wi*!ZszBvs~Is+dl?1v zDf~TJ;RHPu+nTol0Qj1)kQ%X-YseYpVUjScqMTP&m8qOy;FXtJRj`V4o*@Rte5`w; z^yKFL>2LlVx at dXuy8=E4HD at d*>E!6N!uyxbR$_YOi|`UpHP468*F<+n3qH$>yJPzH$o}0&IB? zcuq|+)B^5jR66e3f%!zD%6c- zl*aHeV2sC&cjVK at Po;3*yna-$P`@CAfQ!l&c&t6uW3ce<^>+0J9GW}-l>0sg*dLW~tTK2uz)tvZDsrSFI)psYnnc>d zc4&AjV2Zc;B=-T_6jZ*5{C)9qsac$#%e6b2of!8bEmJek0|a^m3y^ziCIg83qCe)Q7bAx{o8!p1Uw-&L z_w39wPGr5kF_sh~1ekUAhtH#nBNH at L7GdEb#_v&^`7Q(-OtJE*q7lHS)QR=g?b-{K zymDcs#8G=Px4{FPhz*7(d}{$eq#D1o%xwCfW4={11PL z;Xe^}?W}fbQbkn1SE1_Ycx3ltvzc{`42=~{)bA%mcue<+?0&J-Ol1!T^Kfrpzl at H4 z(foh at -~X=|6MfB}{_uy~@+lxVpgS~MEoo*$cjLp6{ZEn2C(-{g?7kiz_)eHBTo^DB zq at FjMjR`51XJ%t93=yHqEqruXq0Zp*<{=L^3<=~SKwU?eZ9IfsAp&8uyhqCxiOrK) zw0?2pqr=VgcmU7DOmh`fYJ}WHz*|Q)@G(H3F9$U~MF9u7<}iRZ^Y&DnJ?0P~S#j~# zvATyxrlWkWV|nbA@}HWSFJXIjepL!V^^_T|yj?tHav9{b97ai)KAJRont+}0>Yqs#7dYLY^ER?Ik5{Yh{yMmY$lnbtBtHy&l#TWdK9(O=(%Fe-!^ zFxnZxnSE+C*AgUu%hXyWOTD6+a4*# z)+|do3_AhY>roIBIiL3*e+~GMW)Sd`^VNHeGT92)`SSI0NV$351 at I;tpxAdZu?_ytAdBERI1ekN( ziNMhUMcan+oUxu*ewLTWQy47NXmCC{HCv6c$a1Nm#-Bfn}ON`dD_2){gTxxRfd<>N7i z9fihQEaWA``rC*1p(#VmkLxqT0alYUYP-hlid; zK21!H1XOL77icKL_2 at JpHZrb4IXRG;89N-KOE^2iQW}SfK@%jjz*2M|Z`Y)u!Qt`n z%=quJ={kQCY2b;ysh8X+9&BDI9#B(Vc)@F8K#V#0X~Tm9jf8dHIRJ2LTdrPLHQd!w zW-RXkE)=o7dht5IyRZ4_#~+K{yK=ru0mZ<$u%rrMp-e9k1bjt7EBN3wlm92QCW&6_ zl%u1aTz at FE*)m=v$yYm^d{#4Kjp~6l-YjxL?zC!EP1S)lMGfl#v}TNInIZ2^?&RBd z0mM=AcmzK(0G5^)0`>zM!q-wKgzkq!KMG%j>wo_Fmx?Cf!Hw(zdBMOX=Xpzo)!MSp zv$Ip>x#n$QgdT)W(8|KxQuAEoC$gA4MkB4p|BtQx4PQ~j3K6!p_bL}rJ}JQWuYdh( zXeJ<$V<3B=@DWh{@{4Z at 1b)oRdD}mpZ^q=ymv5TwtQ%0#H`F~TTOe;?eyPIB4A!mC z-N%osb#IM&<+dAL#xqN&;{EmYjr_f%JZ5MRAgWeRq4_XS&M?3;?>)%<%!F?Z3($A7 zz36FtxHmc_bQjqpO6OU%D7(76EiV#>#;uf!d`LJlR(bRO{ii(dU90f1`?0F$dD!V7 zjhfN=Wq29zd--y?3?Qvh?qa+h26X;4G^qMsItCBEi6io0?SrBk5h5~!p~;}!2pAm+ zzwovx0#Ru5`pt6XP{$@KFLW8dxziFiSJhcuGsF;c8wRXK-5O$rlvRNWinLN^L}Rs}9Pv3 at el=h2ZUh7h^-KK70$ z8V&UJ3>3gU&39)c0UGi at Do4x?QJfDG&I?P!b+Rrn=J#KX!_rE#=rNDL!R z1QXeS*N*TJzL#?>HLapA4_V8 at b!6IP47bJR>m!wc7|5Pyoc)q6e|cb?Y-Skyl^j zpfiTHyzsNj7^EkMF{~Gwj+fmJ-?0{RN)cc;IkfWbj;2gFU6Vg){dmaT0a#V=yDWs?JJha;?nVKw>1$nsv~NcLVFK$^Ca(h0b9CkPnCoI_;VF4Fnrc$i?YZ7lgjHuil*YElIcVMAgku(%K737vUdASj)*OWfvg$d|@si^f&-!w0R^D!^CG75$K_Ic|jVW z-erxfeWRcd9RVRxmVy#q`t13USdOWMwlyR61&|1fNYv%=&|Ax}ec^7Y2&36gG$ahd z^CmPt7vtdd%V$y0U19Fs%4ZxLiV_(eXf!I<-ePWkq1sh!ZS3Tn0s^B*Mgv|30 at TMw z1|syw8bkd5`t$dB=7Uo3ZL!*%t;ihuXF(c4$7slMvag-7^t;Lv8;*={<2?ra9-7m` zy=FOJ+XyIq;#A`4b2&N;{F;u_7r=d;=eo^x!Xeq?tyqO?vFLiDkXN&JA6E7&b%F;} zE=}dw#=7RI&B21xkyio90sZI`lMCCkv*&U??xE!lFlkDNN;<%+r at J%Hp0fxKJzH9? zqAN-E@)*s-Jl8&?ucJIo$!!Bgznsn(!(c&`_<)Hc?)~G+X8kC zK-by-sqP0 at 7@r12b+tcMDv6dcVeAsfC5WOFB)glp&03Yy2Tm|qT z9=jv3HDFZ?k?Z9%M(7!Vr>&IAI+irvW#B1rb56kBYJktrzpfUY==G+dx^_J$48YI` zgUdPZ$)k-y>+dQLjhi#hvRY*w at 0YhN&@&2(@im#}xvMkAvkbFvODSW3iq}V&jIuzN ztz5U+nr0$3K-lT$Uw+Qd>(v&87o2g}nQO^mHrIMPU|+Ptvl^2awk$AAap{AIZ#A72 z0(L!xT9mV}5l^1qGbnjv56yMYD+Jv9;g5fleV0R~UCwm#eE>rBZH(NKk4p(|h3GBjNBjkk?Q)3d5VCc}gdqN7zkS} zJzL84qpJckzxnp7ia?nuFa2kC at 1P8k;ao>Pz5Mdu0`BE;%VFjX7UoxMM2;VaMx^z~ zx$XFRxaYgF67z>@3laf^Xf-Ew0gWl;((x1%Bw2Y5MOn8>;LhgNySE{Lspj$aAORvz3w#>v6U3_EBMq zpk5WeJO`>tc_PpSMc;C#kLRJTvX<*G+hL8u+P?@RMDg(cnV?{HucTkS_*&I|@_+I@ z&$Ki*6NNIA&Djki4v@>UvbNou$ z5~2C!{l}_Q)c|yBPc`&a^xkdL8)PrUA?et;=^Ho|OOA!Iy&DG0zPLB{v}p?z4-bdF zPQ0RgKfZWwC>;5llJ=d!arWa?m~$Y6s+lx}FJ}rsmdG#s2V7H{a;r3|W&O#)BRD8l ziWsm26z;QzN=y#Z0D=SJTX&I{CWZELv?hZ z!+)4!F=x>u95 at qNkpFqqynFjq^XqRPip~gp-agfpEOgct&&^ZLvOOT)sIEcYxq<9? z&JxJuIc&?`^1$)7&Br2ViBoFPe-(mb(F(U~@Vq!R-n@<_2Beru!H5z9By>Gzg*lub z at RT#??1 at 4>XyvhLHKJ;`r$6fmGe*Of!3FH|JeocdwkkngN;&5VboS at mr&zNA!V^9h zT5B0M;n5gQ_FA6SyU^TV#%5_a6>FLhiO^${}Zex{Bm#1oFWxetq z%aeAe&_wUHfbguH2Z~pp$7*!g6qfmBVywSeTA0f3Vx)u)H`dk)yvdEzgw`x#!rk~K zo^3+9e;@`y=$3Hh9pas;9K*;HN`uFi@$&W8UstOYMN^ua(6m{i_SWW3&SoSu)=^#*AwGQ#$x3N2F&A>j#{y`oI92>I zQ1l+VjjR)=?vUMZ2{Y&ESSicnsk95e~;-fIdJ`OI5_AFNf*FNLexG}~OfdU2tjYW5 at iL{YYY)l$hQ zI>p{8j$x4OW{>SXpuro+t6HPGx_a}u&f4Fh at CENJ0H*0bqn50}FCqc0oNclxIy7qn zB;>RmMyGgIIkg-o at -R6T3Qz_Fk#)cb at b0`__hS^knaMzlM%x;R%YQfKt-Ly+cXU)a z at wv7t*=$FQTO$A`0~8jU#b?U}6t&~hR~KmGCG24Q=N`biTw#Q#!SF9J7+%G&e)fDZ ze|xN|*@5t#)P$V?Egs{m+vx7>zXAe=H$B7PXLJfJYQ4gXuLT*fUmXPU!b^JiYLi9A z&*nU%D54pKdFAByX1|5<1XM<8Yu?mKK%*{MV}@*(9yA=)r&b>%TTyqxI&@ zXXc;f`Aj9zv|9CS3$URJa?siHY8&asu$ND~w|5*}b6v6?uArCY>b2 at 0TKdVep`^KS+!83TJTMhF$&e|#lPK at pw)ih2*@CEjkHe$E!psBI4i5X0^-|NMP)+-}h& zy at HlB4d<=b;*Mt+-DuVK>C?x^j`NBp>a~0nqvyvTe=hwQB;AbUzP#`Qkri48X=Xh? zyHHUD1)j6ht$FzXx#so}kxj?HU!3^P#$4s0S)Hs~K#Lm~z>rX{0i;SF<8Sl{1O!!W z0Uq0X5r`3PHcCI6i6C!ER;jn9mc1A^8rOf~@)~8{1;uVg5NWPC5rVwnMh)>$6yn at 3 zV;K>4fBD~kYZeVv595xH4n;w?2uDa%W#n)+)rc?(PKegQ&(9bUHB^b9*Eg~1^L~|J zyc4QCO?a4$av8~eW at FXsOnz}CIk=!E2!6+0=k7#XkWC_j!h%Flc+8 z$?1;_bVnJ;KVy+~h5=`ybXN0ui3u8u%1gU$B>rPc;{|y{(Q{RO?(gM!ubY`D;?bd= zW+-&J5MipIK=@TtZ22KKj{#p{LGZho!jYGRBMCqi?@>-Mo9bSRP?YcR2J8 z{1)iVegH9y3W?R)7)jxlTbtX2Ruv2hcWF$@^I)7{Ybt^EGeY?QH^q38&kEN9e0mDr z at dEOIW$*X4w#rCC8>$MmKhmnf9OIe-lIzY!u_-+I>4)F47Y7vznVcSPv^DAKxNn|E z at GFq`6!11NHC-NJq34iZt%s7+`i5tCB*1SpVB9#osfnRxden5Du1W)m)Nl574vMCh zmt(}``6)%!=sh`KN^3TtLUr9)dFg~xdRxF3SPne{H9|@hz3_{CuU`BU at Ifgu-mIl9 z&nwi+TL}POUdG4>Faxp)V&JbUR at -tEzqFLsFW=;O9-7s))$(p>`uySJY7Es at _>iXv zjM8XaZdO~?p_iF_9!3({axVR$ZS%m3=OXI{2UVqZRnDJh5Pmy~0tCABasvwWLAAf= zUM`L%=9>X>i;J_(^vqa+DY;4h#xp97fwDLCLkfu29~wUkHJjHAEXy_8k8zuiMzMD^ z at 7}!5drwNh|Lwo|o7}&*_+OqY at Jory>C}p%ty2ypZ|PH=U4@;ZsCnU3l#2M^b>1#( zrw0`J at PO-ms+|;L`o;5?&0qiZ*MOb&YBBNj)R8luEhVoRHt^ugh0ZF3mOa&9O$9&T zUcLK53);xYRr~&@pL2F{t`wMEHLu^i313}B1_W4L-84%}%k`{u&GY9*x$!#wvGT0Q z79$QRak5{_B3_}(fI&J(2L%c7Ky_=h-&6DR&p(w>v-lreFZ63KV#ec)|chhOkhl z at VfC~{;jDqAg0hj>mtPh03oj(@9{tU<3E;xsi)jX_)z~%;H^8lYkh0G`Ayh4Qj at F^ zg5~{pjZXpTtJ!aIQY$etbf=>?O>OB8ntb_uxj8#NZOolzjH7FEK$?I54G?4L+QNzV1Vtd%`zJ0{F2W+uM8@=j`onJ zR3&n?f(b3aABq_nR-$BW9sQL9SmOwzPfd*hv=owRdqr;M5(P+wX&*!)uM}Kr^AbZp z{94uP*&o2YhF0Vm=}&sw`aK8Q07yj?q(v|~qylNdB7(t7`?-0$evj_wa|+wgDZqGs zj>bYKHy5S*yxzQe*V?-nkmMmFhQ72GsWxOr>C2pp7mub?tzUonrR10 at UrqRR&A_WX zisYreI6FF}XsYm3${Cy_l}QfwP-sNtsN>(yj(xX(a8wNQ5FqKm0YR=(%*K<`6M}|n zLx<%>g8G3#B2z-Fct5L;5Y?5P&}TId#p+b?v%S4rD4pOkMMK5oQ8we~_@*&@Un>T# zbNPOVO~s5{kItvtCU#i$KI_d(crj8j3c3}(xQQ^E2vO?uCf~!sK)KZ at GVe936X=t? zT)>0JDwY{5{~*lu{+Ewo=B*q~fMGss#Eoh!xmpr+pGA4p)P=ksBO<1w5Vt}1aw0!` z+74m1#j1$K(;?(72XM4`iooHX7Jg<4`a;N#^(vd+%J0kHLu7IVRQ;&(l=#f6MyT)r zX|vK6AxW|A#>y5dW{ql2yBmeW1srP0dGScyH7hGC`Q1S&b{?_QSQUiq-oEC(TH^G# z?s2V;P4X9(eJ*-Rw&igQKnm#)3cN1zWc2##&5b*Hm-&8F zidyBqYJ9C}%DWYiAV2c)QDS?5^Tly^b|i9TsL^G>eHbP}K8#mh9E0bzmEy&gQ#2eI zA>?;;ecwz>&gEL|IjgJYpa1eN;md($ae28EI|JQW0pw=wYK_E8$WtpSA*W7 at 8lD#C zpl4lguRgNB8^ZxBW**}KeFCSaX7cR!2A$*Pj}s_^zvwCtE at miX?E(K7X^!v%F#|=|wtM2ycpF0Kh6< z<-P$ICP2(ZXZ`6P{;}B)xGZNt)&$hkUz)@#+Hm&dErXw~m3~8>>oNgkTz$UEYe%X; zMDJEzAMh4^q$jEZr}6RW at cTlZ8=#P9 at M22?;LOp^==HnT&HUVSg88JuFv7$fcBj0>J z0GMknk1l-y!1LfLEIJQQx!0Q*(Y&_w89hhVRsX!`WuTAYhR=X75rP&Wk;|V7X9%r& zZFS1X{hJo%-q1q}=yK|LCh*391#kgN=?i<2NuwjxrNX zz?+|$Do^0$#Yu#67$J0eD{DUq08z~=58*7Ii>BsjM zo0*B>&~IBr)ZN!MG8I-hy9~`opnUGQT>_k^PsQPNfZsq+ at mG)Um#0)-=-ZcXnxQ+w z!m1Dfm)u9rnB_(}6hH}`_k>ov0!qe!*)YF5!9x<$wJd1`&UFM;?jTA}K8LY?p5ZmX zPc`%o_!}AQtESdt0qL``=(T|%)XXTITU;oiYYyd5geD5l;W at fGmsdxvBMpBhoo%lm at l}DEw>FW&$AMDMudqW?00t%Yuu1eJKixGPYq_o~~ z4(8fY{5-)tNrX9G0Qe6>r&1ESd*vaSJAA7IKP2RJ&Ipj_N!HXHAmnjYoCfd#R=jWn z0o%SOat3{ULg*T~hmWF6C15BnvRAoRn*sNTP`^vy$)4ps%GouEfncZJBwCx(EM-Gm zDVDv at -rbK<4S3lJFAL|o8y*3TT at _l*gx2Kvj7G*7SIHB{3-I{SqXMuDOSyic4vOJE z9vzf|nwy!;mCLV<;@jP7Gz$h6fh7}6ZN9Vn6v8$)7~e5ODR~B)q3)z8u${`$+$&GQ$( zl^lO?|54HQ=%}Frx0_e5UsXk|ey+UefBuK>Dn-d?GoTh=-;Uv+r{h?_ at _Ei|Iy_wl za`;XK{#|4U zk8uI8(68bkGOk+8<=i=yumlnXKdz?U-_>I;921kmTRvnFy}v4>VS(tTRvo#W=L z{g>wa<7H&ZMDy&)S5d^qwubj(NZnhE;TpPKn4QZSZo)qSexYFzg_>QR{dWHMcc;Eb z+ at k>uDsA*nE0ml|w^$0BB6B$UaA71?9`69Ru8#gH1!FojT~SUvUz+IV3ajs(u#UwC ziZmPByc~u$4+pTZoPi1>gNCE%Tgw46^E64+|9pK_{cX0l^yrJg3;5GY;A04AB*Jts zgfcfZ8zTKwAtJy>h)Ryq1aD0K6l&DiS8pca92HpzQ-zjlK1Bp73%UNa5b4R`vrHjs zU;7a_h(bcG3O>vVn2FgNBl9t9HmG|yM5(M?Wzyc^Nd)?N^I!huw>&{I@<@3 at va!l> zU=3^kz>BCCAmz`pBrt$)xhe0n&W|A!p0Mr^9}5 at 3371~xJ|wz63 at B37Be#mzvO<{y zxd)#b1{IRn+}LX#JiJ$gWVrZMm>+{7`s?iXPv1Oh&Y~Pfb0&8%T^NUg7Yf3V(g7qJ z14b1p3xOg?$*lzLREX;&pF=qC?qJNy-Hb)g+cdv0A0gXaO3NLUQIRzO3dSUjPmYDK zFJi6qRj7{jOE|N<2 at x$_&O-F(F%}T9+z<>&s1g3k^bOkoFTd_LOAAw>vRlogufA%! zLmz8VLP9SD1q)9rf{_5Dn)GqFQ|B`t;4>8fDO9JyCV at K`W(81KxHkbDnkX+Alpmqn z9gxDf&??~G;&kP~U0=0~IW{qtlfM-K{<89A6f3zyNzSSjfisEvHI6EGi3x|JG&ajy z8cR2HVXdp{TTM>@jf!1Lby`b{@Q^B0{o|}($coVEiLf`JKxpvYs^;iLs zNZZ{xDDQ-1W8tj*fDa)Pxh%%s at ywz#1{gY_*k8U{i?SRj8jvUtNC>-j=37yTN^@R7 z;dyyf_(y*;;X at Yh&%eD1T?9CXHhF|8avoxZFIo)&*t`d=mtwqlP6K3uyUr{8S`#)x zhn@?3Ff4gS4TRUuNVpoXATUEx1-5x0co!*l^aI!cE8PK%RTJ<}nCzyVD?Lnk7) zC>vhwql2BcZB%)J7IMc|+3R at t@^*OqtafH7sD&^u#LzY zDKO20&rmx$J;<7`npdx0MYas)UZ-;J`K;Xa<3|t5+jo^`4 at QRa~_JR>3pZ{EDl+3z$apHS9Yn_Hz+|NIYsF2 at CB>)Fyl=(KzHmYVqh*|VIjRxyAr zg9)IQwnG2819HZ?HJ0}UVEH!#N51Z5=$eP03dBdeNh(T>9^-8^friHrz*t{jtIh=s z+{J~3(kJAnVi7rFJj42 at 0`77j<;;Bu2v*(A=#hJe2IVz=8P}@Eu0lnwE=DEqs$#^x zoZsL6_CwBgwhC6BKYx+CInTZIhwjfxr%FrF9~AgRpECi#Re>Ah;E#X&V}P0{#OLNb z`|QphW at qQii05cHi{7%Ynf$DJG=|RMg&ac}Y#a`%$@QyK)!JX6>Ll;!t9D+-N&=#a z(S(tKZ09B&O;x*Gy8ZBx3f8;#?v)(+>)-ww17Wq!02t($G1`o=M!6PkN8j%4i-25L zI9&d)A{PA3I}98FUyKZ%Ol^s at bd$4|0=V)}Q8UWo&0ASz`Z!kDa`XNI(Nbp*L?Y#Hi z@>15V)5cmbTIgv_np7~(Exe^ly3La%b3f$H$^WD513p4mimz0_({o0zu94fzH)r41 zWrgus*MJMuF9{LAQ-)3H69PiQE|(CLqsL+%75|shC)ATg5e&zNVYr}Dixqb0%IAR+kXvlzb)_X81h9buFJxd?|GbaNDiq{kKoiXnJK zud>EaVp)D#74U*x=G>I|Z?1j_C|QVtzTK>UP^Bh+DwbycJkOa5QOfnh zUzmx7Fj={c$Jqwn*G@;=HkLuobvDf{ZGxG|M)b5 z{HS^P;#Db!&8^+$;iD%-OUBxa#sd5lg1NhNzdS{+-n}Uhy|oj%%zxccW}3kEjXAccGcneG&_1~1q=Zi`d;oG>0@`^3{OnQ z@{Ur?8LM*B43|e$KA_y43Oxms+=;T*SFbbo%wipn5|RJNi`cf539shNwU=PT?Hnp% zI1UgziZL}-DFG at 4dB&uINZ{rHxzl$$yce2_G6l%z0u*wEQFK?$Qg~UjVv|MIqPQ1A zuQO3JybwOu{mus*pRvXRT;+RJST7cIcjOi?l4r2kO|)QSF@$)|r5#M> zu36PmUgS~=^Ik=p=?&Nu-aN~ld+K@&9Ag}T1kGRdSp4eQlQP1#0`!E!DNBG`v_k_{ zpipykt!zF=n1B1tv!VsLJSzQj1Yv2)a3g2O!}O%Uize>Re|u4RZsZU!1oSKDFbnwa zKmO1>efBUQV!ZZk9OCl*#|0Ql5#{Vm!qH&<;^H($=y=xG-R$I!KE^NrCQqWsHv*ix zy7~e>8F4Xi`iJXofSzjQkv%DXk+Sk7gkMD}+1rPejpA2#{~!P3-=p+9epiq&U}7jO z-CL}XmEU_Eqlcj{e{MhY_R~*4R%ArspAavjQY#s+5pE{`C}e%ncrX+h%+Jefyi?DD zyyz|7T(r-aXK?eb@$?=Ar1A!m;XnTPQ-J1S^M^k^E7}1tb^_Feid6wq&cLzv at j_GR zj~_oRV55I1ut_%nnm`y(K;~BmjLN^-E4fj{137!eVDcb&{wa6>1i<3eszRx6zbOOt zhaY~b=`Qk<8B*l at exA#i*5eNtS&Cf4XRiWuDfDMwJ&jU7iOgRwN zkO#|eb8Um*3tt4<0_qbBF6LjiFTJ!1*yUq8org2=9Ugu1mfO`_ert z at 7|SBS%ql90Me)~&puViR0DYDqUx58V#H{OPliY(5hh2wcm+`943o~oKm-C5*oYi4 z9G&-S0IIxWdaTAPhTj!$l-`RRB76FR72dx4kad18 at 3+s=lFh8-t?fhVG}jS%72sG? zJ+dxd)f__^r;Mkn01p2=SbmhxxT*C&fBv%gwQyR#$qx}cAo^|2MbFt=p)C`wM7g>` zzny>TyZt?ZrA2`1E8$pfT%%zKUqX(6J)Y;12;IKxcax3AykFvQtAM#mEM|Zje`hTTC4M~GZ>9na^+dF;)mW*&{PwOf z+N*aULL-E&Z{T)>valpe<0#B5xq54Nw<@}gf8(7w4Rg3d`64EmU~&SRN5GJG!o3JP zj1KJU7JvQ;*a}d|*hF zI1gZy`!*SiUjCexGg=L4QL?f6wrE&sy%3#tLhBpb0f7SrwB%Lg0}If|?->n`7z#d= zJ4Bajz+Hr=P`PO}3=cvSZDVHpqf`hZLd<9&hQspGV)Z=JZ*nuj762F?8*U_ew=+_Y zL$?v^0b0BkykABv0e9Wmi}}%Lj0M}~#C)oIYFieJzIGjy&Z6 zmh&bU at sN-WtKYq8?hZhG%Fk3aS20WWa~OcjOQ9h+kd*BN5FbX~s0`0?ubqFOYThSj zQGPH1T_KY2EC47VtzuN at MMX5F!~o-kmTqAbCD7~qC?cS|1So47eT4QX386xb(@jF5 zWU8lI&QY5qmH7(dHuCvEI8UrS$W3a!o!gD65l;iQ<(uJ29(-O+9xL9tw{KU9PNxIR z+^>-G{OoM at mvihAkqD4IZ40G%$nk&_h-$YI(1KqWLh=_0c)(9Z_|L!o8aBDrJbe7H zysT>hq4(}Tiei||GmmSwIl%IDK!W@}IneT#7AjY|zj>c^?Z at CKS_{vSlk(ScSTRWXV0GIX9nG)`!*@wxG;3r+uPOXb;>}xefw5{A07=+ z9mNy8AG~qDJ%3(c#N-i1vMO!;CQTGUi`ERx0FWkmaC8ZQJ3seYxmA$~A_(%NG`w!} zwD&@1#z5+ac^P0infLId#OMoH=Jlb}$rHJaa;+rSquu+2bJF}b|Mp);)(=MJ$N~IZ@{&<21qfKA#DN0x(^$ZP=my52Rx(!sAjdHt>7-BR z1|w+k6B!%13}h&Z(ZA7{)T_u{Q;$RfwB~ZR*2f#BP-Zpq({w0aPF_0>0fwF2HXv4k zmASg(Y=f z$BOvyD}$VYt;$)7gb=#|4m`auKVQ0YWAj7adpiaZz^*!eH#9w8z!q522>?H$)w>Hz zp`XJlasd$OV*Kx{{2uUE#ZFc-6x}D|#qZk+_|L at y@>E~EcvS$*H=|3cjHy0~|8 at fY zE6OxBnxD7nEdw#O-Ou(GPr7a@=FXqi-8;+W&>!$d&!RiwXsv;=k?{0~;wii)HN$%u zQ9O`z4==M+3XU#3QMe}jFf}*b9Lk-}>$hVh?Bt$5#JHd at JO46p=X*k081FcQ at +q6; zDNuRji?DMz7AurnasDXjyevzKpy`@t9IvrapXhc{vN-9bPw<7*CeGi!3DqETBB=1Df

s?_< zqh at Tnt-KP_kSlrb-rWcpo!SS>klKurGm^~MC#Xgk$=y2t>H!%rtV2D(&?mfpL4onO z%XMl8fUD5rCE^*n2`%(RInB>aHIJi=<=u4z6tW%i5C?&Wn1CL#Rkskxk; zI}EVMc at IQ+)-)K(rvTn%8Ag;?DM<94XHmSo*8sZE5 at ieE3dt*o>(%DbYPPfiy= z1tga6oE&d%XAd>VJ+urG$(3qHQbl}(Uxdcc##juIi;ppYBD6szON4eP%8IATkWS39&QICx3mF&@&<`E9L2z7C;&pjko)_QQCYWp zU_ at U9j9GGk at ycsW@e7-h#d19-Cnw6Ft#)2VdjS_f zR_;6WE{B#(0G=2e3Z4`lC>r3+6cY4rbf)>grrSQldGWkZt~~nmo~mJ>AFt3E0KwUr zWPe2wFVn}FNqgqx<)yE4M zAl7>nY5{>0;RAILLbe<}oCwwKEPppfPj0lZ zETE4kwZnt272w)Zv{1jLbnW!<(9YFH`^^br2zS;!jal{Le0?;_#+G}nH#LZ01Ru%A7 z6xw!xUT057i0!H at Y@f>uV=iHEVRJWxKNsOSIyza3?$hHNy>`hgQ;gjVt2W43i2W${*4qLo)Q|2vEWfipRLBZvhR>Hi0h!8=`0R z2)hzUEL%;J2XpYeN^(@>w$VP`qv5kWkFUOZmLF;Haav3dUL!P$L`de*^1Wtw;7(a# z@^A=fO=3?2f{sFThfzvA57y_KQe#1=1VfNQpp-F&L0|Uc5)`lugpnz6$>_U#+w~a_ z^Lc%_8^smc+{o7yCew*u4=!MFeo22q;ofW}j49a^@XJM)!p9W)9BNT>83F_ZDM1Or zhJLe76 at jR>qaUFjj=-PX8r}hGnF-xki%_&->+%mN9IZX3=O)9fePQr`n$eLk zXe_`eldaA5tc_A}M|)wK%UGRrm6JgUN)#v5w863Wzx>0W0~iN#PC4Iw3BxLoS>jEj zW4%3?PQ$xEaccF!YsdqrVs>%qUadV#ZtmY(iq(D^nmR6_HXQ|8lU#n!DLaZXG?q&) z*X^v2S5p4WZWQCKD3;AwxRi;I9wDpU1kZrnKGoI)453cwu~f&RG-t9m{lHElOf+oP zR};wV3or(p7DFpCeOZ>?r=z}5hd!C;TRO&_ at RG*H3MT-2jmhui{XCy5vD8gFIgjym zd6`4$P|c5)y6Y_U2g6TN4LtRyDPvzVtv~tNF*ahSnk+)p?SiWJfTG7T?wU90RCi%4F|N# z-4nL_&;Rnb=7%4DYBr)oc?vsYSY9(yvu|FGg}ciE6w}4;*a@(vWNwAVDPH+Z6yok~ zjM3a5?{0Y)!fV=|$l38;4WPBbkjINRI|MP#2 zV$FSI?>tisG~=`=kA=JU$^*_2z|)KYVP%HC*Ox5J{gV4+J-TAVsC*RSb(VVm0YAK- zMt(_d|I1(gv3}>ZIr;*Aj80&g?6MvyMQf|tvGnC026K+HIU`N-^M67q=RXTJyBfDO;7+^@(uN|LuSOD^y?5}9N^G9&)0ufERSPxGApW-0upebjj9 z0HF7Lo<`x#AAkHI&u`OI6kd2v+f(r>KM!yVzrJ|!yc+8(MiKFmnnV9oE2Gdg17C!Q zCye(^+Kq6cTr*KMT`2%XI$`CVezPXa^jDrE4-+s at Mso}}`y?a)1)fCmsJ}19X?Th5 zTKTXVUe<=^RzTcFtzB!V$rwFvUcCvp*{>)7Ck6vhp#*wU?Q8F=A681f3%&DtKYsc+ zK>8?qe_3l at U0sW8+%Dr#GiOer?&xnk1w`ZH{QxbvK-fN)TxaDD+^NDrdFw*>qB}RC zfrIeChqcveK2N{UnGBCIBzf at jW(dtt7u5peWP22M>+MK16#ua!O&!H`Fc*F-FxnHlYe0moYT$uaMUvG at 5_ z_K|b%{BNfxzDKMQ(GRll+(s#V?N1OYV1c1sxN1(q5|Xdh9YN)a1RzvJ9UNl372aEx zN&w(+EGo at wuOndkW0~ex<>kB8*WJ8$|EjqPI5c}uc!S`hctTZ82Zo9wpNsHRnf7jN zGvM#4InDdma>?4rbcO(d4FaA;KYtf;zC+ktT{ho5 zei$J5xq2>vy_MUtu at ixD8KRnufEq8MO)>BYc at e-$kWtpA1=zpWak=m8NUY_Zh#-i< z6^byrN2Q^QAsh^L7P{bRT9^qDW*-Dq4nD*Z28wV~RAPp(SbcaSpD#hRO{6Dq+GO-w zmE+ at n7CsdYzJSu?zUA41HAuiwt^);88lDX1=HEd!c0^&w32w;$d$b9X0eMyOmu0IouY zclw(*v8G9D0$k(G&#`;Vog5zN&*#d=ylR$WWlhL+%Nb%i9v#)pM&>Cf;T83{!k!eL zTsYn132*P=x%~0xpDRC7NLLlD95+lR7turrMF)hL{G!j1bd;kpb&_<2s&9vJ9^AW| z^<3urQx!gS<+;WTy^9b=0d4QetT{|gX{cg1es3b6cXWc12jKJmrQL&~d#Y6>n01Ul-yHiTz>>|o2_a?WMa-WJ& z1*%xPKrU|pfvX}>zHL-S(XO6$`Ee;ec`-NPAxb;{S9fYplq*k)Ngn>>LD9$=`1C~v zRY6(qO at 1H%Iwqu^bKq^1w!j0TxD1Z~da5z20etR)j38XAC?vGAvhtz41-Emq3YApG z6Z)83I2OP1*zmk->%qt%8|6*L)QgO0bAk-HSGB5=(S!uigVFJsqSK#$eO_rOJeG2+ z<*^FwXg*uKls(rxRbHL!6Ca at U(+FzH0s!V+CYKD02SnvW^0+$}J=PARxYt)V0^TR; z+~i!T43!HftVu?bEqQG2unn*By7Nj1Ey`UYyIb!_KzIO`(7L{?C!s6FD**p>&V;cm zq{UFsGG%jJiiXD7pUazbZ)vf33&{HL-U!0nTh=ab60e(>G}u4f?Cl%`ki-BV8wyRC zFtJ;5o0rn$5uF(BhmO5Ro;$km#{oP( zUWW_$ItmTUp^=_WX(bW{lK z-qLdT)V%WjtT8g=@Hq6OV0Et16PCxAC$+^(*Udy|a49l;dTK26e;rW&y3(G2?X!Wx zr}ay3)^Qp_`gpk4bOxyE*7xnB$2kTr?voJLcnPWs(FN3K$3j37@|E8dhQrWMcI7YS zd5DlOlBf43)*B`^%$(vEF8J*?jUp+3<=-LN$O}M|vLD5w9J{q1gVh8bf8 at 9Z_h0SQC>swIW|J~bn;)>Zj+IL|0po)>^Z z`T(%SDs^f~vCPD{}M*Ae*J>^KJ4r^rvY~uKF1g82r$V#+Ye!^s*~rBqNwm at gbg9#->*ZjI_m?tl>O<^ zL3935L-*U|oqF~1LwG&B77*0iCqKqSh1urOqkGj_p>nD6EOfpfL3KBZL at zuF%7g=> ziT3x8BX~y&kfVRqag0ZyWX+g`hM@$Oxr$MM$l at sw9zTFUh*1bnT7h-RucF8+j24s{R9pDQ~l@ zc}D=utr&VA_ZKR{k# z3cMP`e~NLOeX9oLC0A`K`oMF<`}gGz_F_b8ZR7Rwv4y9dM|V%_B@~9!lW*nyYUu)C z2?$zUT`9Rpp;AIT&Ujz-BeCw^dgnQpHMv_^lZ5#S&qwxsX$;Q`1Goe2a$+aKHx#ki zsN{~~0}~R^VPBu|bn at 6gmaGt3Q?wwOQ!Qm;m`S<8$GnCB0fp at R0AfZwAaif&Zbc>- z?Q+N-Ja|wv0~E<6!^^;>{hHyrv)xwM1ArU^m6j0Q!9k$VWN>7#(F;({ptB+K?3?p| z5wG2l5U~59#C0?fDY}z$R6vDB$}q`2k}(U}m+_Yu z(b>9dFkE&Hjw}C53l;Nztv8nxJ=^9;0*Lac- at aR^{QJ9$3&j(1pQm%rz^~MVFX4Sr z5>XL_7Jwcn3r{1Xg{M&%zJOkMF)uB8C!6UkUir?PH^W4s0uV$;@Nkl2fH#n;rP6!e z(deb=tOcDY at +7->KszHVHK$jsMu#a@!IPqcS`(cF=rF=`L~urE at FK>c2+_%D+t7S! zb~?XnTe6hLIkJ^;Z=d)Qt)W+j(?*P8-fP8#?gnTh_lieCkIvhe(xrv@=J;SQ2FA-g zSMSKZW;5%yf2kH5Ynye>A|Z at r*kW>`ogO8nf(|g?Kp~axCtcmYr`Uw%$X4JHsFq8r zz?1w`*fJZSjHcBKU}32*(*dXC0-d3m{Oi~6qv{#k3U-H@&i}_(PruiT>~n<0$9#Z_ zR%6s!>p_2`0FHpVYE&6w at nH_LwG2XdIZ&RRv+K)P(t%PpnmB)Ih9k&$Gk`;u*b%14 zrC&uYd(HH?Rs**}w_K62WR7FO%V)|)kAckyovr{l{f9bZ@!f>TboWwKDQtItCWjv4 znTuf7>&8a8N-xfjLp){`<`i#~edqHoPMfQnbdeXNACG zJschGHiuhV%}ogQ(enLfFyQu1EPs2DKc+$GVP40Bffgtc-bqT>pMVBsCDEEvRRBS$ zAV@%?yggy&8k?1KEzd)qkBPP1SXtZ1^HpCCR at Ixmcps(&pG|lX_BV-OF;>{EJa=vF zZ5b68Ig{T)F;hnogIg4j$^4$HG4+^z at K9QXTPjlmS@eD4Y1+WR;BLw zrh%|pPa}X?!}j662cp3A!sMYNgaH;n8egoeu17%4hrVvAxhrLs<%RAd-18U39~*nS zB~S at S%0%PysrT7;vH#S at -frDA-c=5uzLU-F0YqAu<4v)-H)b)qT6QO5MZc z#B`$@|HbbL)MTBN_pc)G+s3X0jOuE|6hNmuID9fPHXR{*ke^Ai77mL7$!Cp5DKd(9 zOt%m6=@}w#Pq1+{JlTV6L^rWP8ctk at ep$`^rcqiwm zVjYkKI?Hn%8Ujp4a<`@nsN`?+akXMPY*tnxAoIS7+zXH`7f(KuFp#zhZOXxE_&+i$ zpKGcQC8W7K>s;k^+l~WhIxSBmk5W~BcINK#dZBKkw-ggxMHT{9+I|cU3`b#JMyP*m zjt(NPa`w(a*cq=YT63-nR45Nd-R{~>(-;1k&d*LFOFmzpH(!7CsL>68*P8NG{mAQH zBLQ=6nx{`r%EgZ1ADINCw*^4LT>xkFKv+#R=$**md-oReyW7pnSI=`6=gso+y#h=; zFa5o3Up-1vssnF`WOet&TZ6YnW*COT%#!aZRfRGP57=dTezsYa&;NiWUJrvxO%31WOOB``~HK6&AYd&q2>PafXiWUo(pK!Ch+zPh-s zG%0-CwnrN*{*m*>kYvD{7$nblD)L84)b{>SMI`zHtX!_B6N7GgVzgSL?H`#xyI1+% z|L~W;#K^nf{HOo;zf?;#g*8{X3#kRtUpN&+x2jKU=mi}ZQAi&MvoqS{B)@t4y4eZ; zawgSRfEU9~$W_#0Dtl8IZ{E9*C;+W$m?6ybCmjO7_4#u#JjqRfN2&@BE{6f<$3l!w zDPAw%zOCHwp2#)%uso8y$UL7Fg^J8%%%MZMn|c~OVL|-;wMLQW(UoOmDS>_PXUN>Q4I|k z4P9{J7^QoYvp5N_AMKy!oO7-R(E;JD&aduteSeb|u?~1I2%4%k%(qHKN!HF8 zNF-EPv13tiy-}ocbvgs8hKBmRpgzoKC~<#;jOgS at aq%0q7Ae&X#wyWf=GN`rEH>aI zRxg3Z3J at mhjWu`oZj at h?^~%O-ESUWex(1yA9#MKjd0l5NQ$nhcXP-+17CX6Y7Xk`< zo0`}Vg at 2jL`4ooe$lgXm(6g~%>`f1|cOg;=nnKmGf`=)aZ;YC$S&r9j?nZdNzzhqE z#lqqjt{j^T!VZD6pb at Wzq>?xHVnq>#O7sz{N+wCu1l_GDi0gn13I7_Enm`}~^?r4u z`LMYgpnI!1&NEN*ITBo1PjXD;ECQjztG5D}2pCg878j;!Y6qq_@2jLRME$9T8VWnELur}-M zKm3QkH;*3NEru70c>L^H^YbsimQa8D`dz^7NEC}o*u%=HnhV{`&Mwyd>G;nhIzK;I z?OL?qn4O-<^V%k>x3f=G!~J3Cj-1!})^4*FB}BOc6D(BTfZ2e(xtXcl7wG8l_uGr#LKAHZ9p?ZD4h9gh?mn!wXIxE*LnFKxQUuDwk-rOf5K0u<(QyFVwl*YL zOV)87Yfl(!WPB=sYN9-&0JfYa#RiNMIg>nSQV>|;S{u1DIX;w?5m?rt-4Uhu!;e1~ zFB{7?oo^lyy&r|1(YSNuz3PZ?ufmAX6acgvFvMu%y_SO__fO;7rGO1!_){!z`AL$y zwGheD1D1{hem|FTFbQKYV2r07AbI;jQd$~;xk50;lg=l{RlN>Kx}q5Ve4J$r8ZfxUgFXW(e@^UC|T zB@;?{uD@^I<=@7gG4PC91UM^Nkh^pCiW{`BiG<2I&*hH$N-6c^Ji243 at VZ{dkiEM& zTYstw{_eYPOG&+ZD-5f#H4j|CbofN8ovs+j?^ixFKmGhRXY)Dx?=5=txjYqeo5(Q* z89Y2ZekGf;*Udb~+1*=ukbAst{^1|~G4wo8ZB%%U0NTSNy)6$LmA|}Kc`W9a?iT1a>J0#ugGV+yAMHE#@>%x#^5vTfZ}OnR{H>%7PLN_jYmuHsc*i~fN)$LnVD}UqKkO{OormATVB4O&j>(WHB(;I@(F;7F!oOsOt{ftfjO2s8 zo#vnZ`5&vbk7CA=QN1p=D;;DsvYebU`=6X?dkMBtnl|UKD>QIjAaFI{T69ggncQIz zGmz2p`w#B|c%?>t%xgPCPwk{71yp({(?>kodTmNKP3`wu3D>(`zl+9BaqIbyzfWpnFzw7P-GyaaFf?-ZmH3wxx3vt zl*gMxvL=Q#a*VK;VEF~`>}{_{i3wK*90*0_QmQ#>nCH)b__mn~ zGj6X1l*GdP`su@*VOR6(FF%&0?;@0KyZxbo(ejX9UL1r`g_a`xB20Hfm`4%9*HN^c z5!7S315Jo;-AH5)ab$mbblqH2P-o5K<(a1IIzTdle=dxnjR7KNC9LTO7I6Lc{b~eJ z+l*2b*JhYo(*M8y*Z)-cH^MYPDC?Wo(m1)k5ars=ZnF_ZW?WIYsY3Ou0W(I3sg}LU zd%u4ABmm`B))ZwOqGrXg_&RRg6w`nH9LqHff{9qijDWG65&8hG&>NxfIj`s0lix8j zGu at 1Z!M4NTW)@D450pjD(xE0x*aSG3T2Q73#eR zsQ=^Fk3(Oh&15XFq2aLrwl_^j&fv{jET<^!AdJR{ybl54thDI}lHY#*IRbGopb_xy zX%_G0*%6l8d&glqb7j|JUG at fqj}H&WD^6cfMd%55ypy5TV?g#amJ>i$Tp-Vp=((3pBR%3q71-od`c%wDvkrxyT; zK80htA`9dv0o1KR(*8srED7&Dd?R1|x?3pmh%Vm$mR zt$W4Xj`GGQ(=o%K5a{grU1&F$P|iR=LAX{r2)jb3dQ=_}Sx} z9~p2K`q|9$Vm!qN{{Q^X|4R%Xd9Fg9+PnowK!%||ed$E2Zt^>vv=?5GUZI*;;m{9% z|FOBwo5m-n%cEz%_>~T+LWWq!jJA$|vx_hkFYDCIWHT^yC-<%bcs)EZS2QdIOD6=L zM?jVLP0lV*rol0N1}FhP0H)r!e!dkRTie*qxpjwjCz|KKy$TMw)7->3(4%-ZG%H_q zCGU}jB|mySd at Ahz^*7&^EYULY-~1XHy2f$`Z0#`d1Tn=@JOB&Kpwi` z!Nzl{^64LENt9{Na~NI9QB!?W=OdQ`qWgxkreFzq(C9+%Kh at jQvs2A~`rrOjIY_iv za&G`FP%4FHc(}jmd^FJeeN}PhgCj9>@4PcaSpJ%y30XLRsRuM?srH zLqc=}xSSkwKQ(jZ7L`{v6=feSU*TYf*mXMx7DkpQbo}wCP_FpB5Ft;(+{{dQ5D|1x zV=<%_77(~5i}Q2iO?RF%H$Pj#ZfAEppk_PIjeyGr&!Xh^g4DG|=?gH`6`lp*AaqF& zZIr89`;5x@%IEBUjAatWR^6(P80HsN>I^YaHo~TQmG%Fws1!BM%r9hpoz3cp^|A^i zPj3cLC#eB zO1d4P_4UK$W;|fx=tx)pL;APCNbjA2oasfgyYZ&^>dF1)UX%-~!wgH_r-gg>0~Y(6 zfBE|l&66iz=UfS}gYp3CXV-J*c6lXdX4<4 at 7QFCsC(Aj6Cx1<4nE9urcysrxBsAbz zO51q>&dyH?oT(b4aCtj02EjcWU?4;$*_e`2MHLDwFn^s(UaKpx83?uTfc^2iZ<~=p-m8sf ze|x7~?7UY;5mGF$@MnRko}B04;BW~7m3KTMyi}~a?Y-TyGKF$3 at _gOsKjl8FF=}{2 z-VfpF&h?9wU at t$ia$fUZ&4&RR9xJ?L$hn at 6_+vQA$$Zq600|96hoXSTbLQs}7Lu8T z26$-hM7aUi2icSM7iA?!xy>ysWe+VN(jA{y)qS!S<@P*SzSoS64wrRpHmjT_)oaFn z$z9Wkd}K6&GJM1uR)8 at T06rc*WL&ig>fzn&pYbAjTFC1pN{L6Q8gPf+!ztB&4oJNp zKtpK&qUc!e)IoqHx;Kr*z1Fbw at Q&(a=a%IL6r42rZaF6fL0*qu6kzZwvxw!0*{d)& z-h1)-b%nNgG3Dmgdaup)?$4QbH{X5phw|1j{Nx{7i<~N8MSh%y?2KJ)Gc;9qr#xnO zMaWoFc^3WM+}X5NK>@}_^7Y5S6Zv2SDt?kIZas_>1s__b$Qkx|`qK%I3aRq0+{>M) z3Zz5;2P3I~XI=nugclr86M2w7#w#aDUeVCq$UmSFi20Yl{-Fy39C?OXoZmpn#Z2n8$UHO=dJC at 84GfsrVt z;ku*e&tKQMq7k`)3Uzqz7~?*JE~y at 6p;a?Z-S at FJPFerj`eqa*!(lh)ZE{LL<~X^i zXl^a?_PTlY^y`vM=;=D3jV$V52t}Zxt()BS^^GRes=`GR(3VzE(H;4_y97=tJh at tc z at yN(nbWPTpeM at gpLC;hCEFcN+YjZWX>+I*}mve>z!T}AY>ZsaO2(b{^FAwX(`wt~2 z+!63zN%)~bVLg?Y@}}uA`NneTg)zxTGzfH;qK}a(A^<4kQ6R61#zIr%1uvqi(;R($ z4r7wM%Lelqr*+Q4rF5K#hulN0WAHB?2ll;IL-5Lz&!3_*9eLj57Df|5LxN7}stS{w}`Npf#RK`LiI_p-6R6+lC_ zw7KTO-=a&R4vLYSk*ORak%}VI%43DMH^chi;M---;WsKKqCW+$JI7MztP z+CBsANFPvTE;1q~oDQvA$mkaa3j at fg$lQTB2Yurb;v*hmf|AHd!&m7RB+UoSoA+MQs6g&p|vGf&b5Gr-K z+4Dys*?cyuO0JgVdy-VV9B36s*I;>EW7SwDJF(p4cb%Qx#Og8o^>+0i{|on)2#0xfV(5s%UIJH;dOa> zT;R^E;OlVhWq!u;&|atK_I0zfxgHDZwDzji!}C{fnr-2~JY!|eQ1*dxgBue?*#Yo! z1G$m)k`p at QnUWNGCrqx0K@QbPEFe{l@)g{Ft5hh5u2Kd7?r6Z3LJGE!UQ5+_9QbwzAE3E&=N(k9)OSTl(E12uosJY zBw+nk^YinU0rN)z39;To+?CH4p`<7S$Z@|99zM*T6_)hpp7hCkQ^1qZp7ub3f=Cfe3V&P_-aG6CYxa;MS?s7Q_S%vm}& zyije2@|nWqkIkwMKxC~0jWba?lq(aArSH7uy?TaFx!!m at q%1uOP^d-nwQ!SaSPh2d z at A^|n3m_Llu@`$RD=_q_5>3m5jVM3G2Py#_h)_n&z|Cjx?d*l_0$TFl;{Zo_esX9C z!?hSXayfaigj(+NgyejLZ1qEwU at a7WcX2U$VUol+%iWLXx$;val*p-34VXt(*n$iK zQiQw!hlq*r953Nec^7zI4njA=$ts8K$62wG^U*~^=zy0B9lI~ZGZo&6fkH78szRF- z{zi;WX$O+X^$;Ui7v|?8q&)s&m9HG zawlw!Ez?5`_(S`u_$oIi%9>YPng%8B%<&-46|e;`IRot|^v1K+M~@#CT~ba$t$;GX zCR|)mn#csS?zOv-6^6(IoM;uWHwND2Zm8^K-M{_%Yk_?7>~DYju{>>(_J!Z9v6B}pbgYO-+l_}0b4TGDa#JA* z5HEia{|nub<$#g~)Ybp-c2Djx%J(+lGSIwz^R@~b6oUa#nA_y2n#~=#uIf`>XRbHD z*PJ?fB6qK-IIoc_+TTo08Dln9;L!RR4ALDKVAYo~M!;G?yuVLG zkC{!+BgUwpBk*+#dQAKQfZHCh_QrSz&Vj4~kX1w%BRD`v{wA6?8Yd_;uIhF*GFO!{16_L9($c-igTeAT0;uvl$$4j#8>`Qf z$IZBdtr)__>MG^ahB()%IsQz&kRDEYQbuWXwp-Hf4e1g3;f`;R_+KR4{ntRFuzoDc)NV>T;7LW%q}$ z&EOr&#q~!4X|mfJW>wY=Q1aBQ at 0>Sh*XPYm7IYGHeW)TWpCZpr6dtN zKqL(0JQ*R{_Q-FP=O`qeYY5x5)y~WJm$PaS$c|=iVJ<>PW#o9X9eUvbL%({^5k`}- zl7Lxxc`x7YHM29r%~Z~lRpfP)m at 04m*)-EtoWqJDY{qgAEIc%?cwk_-ule&|{v2Qi zbPX2cvK}>><@p&No2q<0IfL at vfEv$cmGX+(gNYA>lB#U|`J9Pxw$P^lbwG;0 at Viil zN^_OU`p%(KYt+0`u8}hUq6ns`^5P8Vjsk>N-sSx&i?tmx2}2Xr0NebhJEHx4ynnDIJ7C3s4_b!n#5rX#;wc=_`dsA3c5? zIdDA`uR)Ybb9iF1&6pV^C2jRb7}h5z42>ia|~yLjp*%k3at5 zyBLZSB~PmOAhgYc^C3X!GOw at w28fiWDgp(7 at jObe`n`n)?T^Bf51p&6I})Bl>pZ%Y ztY5UAp(utZtuLNKo=CvL5dJc}a;^ZZTtMMn`Hezp-s^J!uL4)0CmvpW;5>!IoUXLHzkYa&EK}iwbhN#PUJ{rH^2c9 zi9l7}R?hrO%Em$73#hz&`8qVwUw;SwfEIGjSryp&9i;fTNDuySX7?hm0GI+UXe#{T z?(bziaxHgq{^)sVaJ1SH`8$y2nR at w^H!3Fp=%EM3pgXk|#)b%hN?CNpW9h3pOJx7< z1An-a*RNlPj<)N0j0JLqj7Cr7oA=;TAdQUj{%?K{jml&7ZyvtWlZ)J)D8)&PE7jyc zm-c9K#s~6DGxtw(p65Bg&N|1 zpKkK`Je<*EBBtai-e(*!0!0A;Vf&V5;%7p`@|yi!e_Bz{_pjeJNyy! zX8mWs3^VzzJfd*TtaSStdp=e<99P)Nyz#W?@KOYR%|?$7wcMcSrt~Q zF0J2W1VpQXQghnQ2o(DjYS7x`H0zg3Bfl?5E{?^XL5ibH#ai;K at ux;clB2Tga*^(?|=D{BFE zre`KADgPp8JlK=F$op0A at m|~+=!pOvuYP`0;{lFghCe*}x>^Dlu_tFkXq$(2C_q7r z4q!!ySkFR9$Ie6ekaEV5`Y~yJ!b^D>qT!X%;Mu=nb0DKjmNQ&0zTl)_2ED~WQc|Q4T0CgA`(}g~G+b$!h zv~*AuAs^=|Yv|7T?q&TZ4zPR)S3MvZCo1u-E)}DgxN_CJj>0A+(9_3{m(AU!rMzc2 zbo(jm{RkI_8HJ3lOOay2&$;uV&=jVvWcdIms*G!0{?g0WADZp#slZ0)QRG^wP^y>BaumM;Be`}wbc%V%2o-+T2>b}= z@(pUCgy($$Ab;bq}AVIF{*qFP*B2*2-zXWln6^D3W*bFXcF74HTm(2fceF+l}@xlpv6#XI>s zL)pyG{4{jTBQ2yVj0~K}J2Hn?qC3wwMJMl0Xic&_Pp%$=00 at t+a2apG39n<;N|EqZ z15gUjo<933AYi17{L=YG#?(pTS*D;(P)cepNLr)7G%7P)S=NwvP*jTRzpa-4< zMupa2ywiY#`vDdxe4tv$w~Af@&;TGFPD-Db0Wd+EZEo6S^V at H~HRgo7A8n`5i2IbU zsEYxQiF{@rQ=TD)a$hfRm;CCz0>VJA`>&LNd~SK-6#)eN8T$n|Re#5TiudnU%cE+4 zygWSA&XI!M2=J(U%Z4{6vNAG8n4V%UFXY&00j`>lo%_?0N5kMM?1>Twj?pC$(|Upi zvUfA|TMxDnaoD&3mNNj*JR5)7rxr6n0?(y(EJd z3d%^xd(oU6UWS$lV;mKtBtT$SK(Ywf2Ebb~t at SSY9b9Pvtx2lDZ2)Q2wjobl>MqZ8y8w4%OFe<0%4Y*S9;ow>ODrtH95R-9Dr at VnJog|9aC&?+;zkqJ&06FA<-5(o zLI6;RU;rRy0p$4 at QW!-DMa*B`;b;`NP at 6o+cTr3#G+EZSJ3lvvd)rNKem54Oba8yv ze2gU{F`j}zZ2#3l48XX|{R~C$uo}!6B_M at M38k%AW-6neM4hzS~h^Drkl41JlZSLDW898xQk>_3a~s(UN7z4XJ5HK3(1opGO$+xbYeQiV6>$H$zC9fTd-j$NBmk z0=>e#c{X7WkN_5#T=>$TypF=f&d$GqO&*Kg?d__BV?3Cs(jEF at 3~3NeNhq3;T+OKR zjNt$Z!`1<%Ujpjhy?GbGak~^Y;KLg(KS*)I#?DrAC$BvTfHs(4UX(AnYP|9Q01h-g zWHgp33zjF`-hn^#Aq_)AWnYvl>svmZ+#A4SdS<3_YwV3OC;aqVENPK_9E8p&g88|* zk`F)vZ*}EJhUWCv^mE^JFOg3K46q<{O6ayBrkh6fG%wxzmACcTfNX_?!z0dKIM19} zvQc&La=r zq*`xS))@W46Rday0Q1c=N#1BK>}*nU0p}hsVr(mW>IXk8$HEn$U_78^^er!@2sMBrqb9iqt+P->-&6ru~3GV%GeJpD`gzWk;U7( zQuu87p2q9-_mdsxG2rz`Y at HoIFwZjM(ZrtWMiDU2!IP!bb2y-+d{_fLYE53l`@e8^ zuI{p$jprPDI9+nCqDim{ya8a!8%J+ZRnfCu_1SXq46AtX at IlTmK=)Q~M=n$0WTi*t zzVRD+VwBQX3RlQ4dfWcw`H=&9;qD&oH)kRA>Djr`({vMKN}hjT=v>!{b{6wu8R1*& zTg{7CFWX2>=%91CUlGVntbkBd2#?j}0xJ|6VnrO38DY?RY4WlxiWiLA{!SR1*Uxkf zvvGMRc%BBcxw8N`txVPf_B5-_8;hVMJ#R*6^+kZ_0n~BbTAtD2CHNhtWNSnQ$WdN| z4#CwOg{y_kVwAV$!5Cm97patJN!AGk&&*XwfR#f+vy z%+AebpSkxavZ_dnP|@GYi?p9$r2>8wKH)`K0}2X&Sb#hw1U12>qLNG&y5doP_3Cwv z^rDoULp3Z8h}zuV4RCHjqhc6gae|!!m-{9MjI~NA`ZuG1vS_CgXgwiu+9V30ARzry z^YhO?S5e3M`f9aJkOa(f2jYNB`p(?|5?cLelOP1Y9dJ$Q4 at YRYGx>YYihyCc4g`4K zfAX}NBAXMSI*=K*;0W&*97F}N6%WR|ndg_R;_7&$LFSU!UyQz;zA zE at 3TUp3EcT7$F2Q`ewxg{{7()57NDSQ31fh_me&{UoA1nv^8Ce%^8N|mw`0O?az}c>vGSt?vIcp3 z6=sT+KN1DY!=XvJYUVw?{$hy9^)3F)Ys{)H13$)LdG51Hz{^^!16Ytx=;wG4AhTA$ zMaWJF&0R6_$PxuAJZOM28pQ`Z;|0VcO8^f>2fhQw$aUZDkw at 5F4)hP#U7m$bRz7?P zZRGX2HwGgEL~9^zk9g?hgmrY>{5~441vJ*`Y_B7S7`f)<@&b_uLi at lfLmT~jtvlvz zqTGQ%9usm#2=L9D*G2P2(BW16Cq;wEe<3&unio=jq?ygm0c`_`bd3F at 3Em=f$5X`M z6f#uR`{jJ3BA_4tUR~2e(d_DpS{G1>R(a+;zXhS1vd54E6r*>_vmd!=Z|(@Nur`3} z^{Y1pL;*Y?0?T(AfHG8J^Zskqd$vUI7re~#m at v6oU z8EV&g9ytsEHo2<;x>>V3K_{L)Xf$GUoH1;`sXYk2TWdKGLPtQHeQ5Yy#bA-UzU&n^ zCZF9GBT)*1&rq<0o_GOy00B`g$|8y at uU9TJAWL>LKGvfn&oqc0K&Kzu9;u;o{Uh7+ zvlawk!4Nt_Q;))7zWvR)+h=RnUm)^ivrjj5doSbec5y9 z;4CuzIQ-TfdE?B;?W3&gEZC$g*s41ir1R0};P;d~HzUHe2trN#nCHn?<-}z(n4h4@ z+0-H~0!$_bhe_ltl67&`?CxJSH at 70Z@}Ac#ADTR*fCH=Dd_X1E!XYOSy2fhFOibqB z&q at HvSEGo{&f`KpD+?-MFb`i?SSUoRgZf2;`C0zN{Cg2LTZko}&9dV8KoGt$o;)qh zI|qV-U4)#SV2c1gO?#ur2V0Mu;*!AMW-tU+Qv5KKWf%mV4~T`ad+U^K+G# ztn1UW0Np5?lQRu{wR2H at co60oE9;k1#TZ}m8>+A&0vJd@)f$&dxMx`^Z~y{3Zd%v+ zUMx)EE&bjkE2Gop`}doj?BDP2^oG!L_Cvkh&4Zh!VJj#G2ltBJWR=w6XFK4 at rNpGdobfC~X> zz|HeXx$>5M^Yu5)d;mPA8T?`KoMo5MRKHrnbUydR76 at 1U#XfMMUHXrM00|MMJG_< z68!>{YIuDBDWJ;ZRAI)@R#>J&d*}?%uqGY{V7lHL+OT$?F*`e7;Ky^_>s5f4f+=1G zUKn&pt_iz4OQ6HIN_C2omuvOIM*eK~&d>#nkIS?5srI6Ylu!|b=;UWA7B^7r9tTFptY76XV*aSy;JLrII3x%rvAcDsy5-b?aP8z*~r=YHm# zq_Ws6gO|ZaIsf&qf6e&;|FIb0+Kfs&5-##kJhRf z%GojMRm7r4(H?ZiQ})~QUvlFn>_TW;Rzt4QBRE-3KB+e5)!j57s$Qq?}? zoG*?)Hls11IvL1^C(T%N{%H1LPP3WFaLZ`$mTnrldYJgqIosRyJ!MaTQdoeWLq!1; zDAzm!;svNYlPr(`6ADvNI+w%JmxdrA06%xMU?LFoEOY4%(QS+a1@EL|mxp0a486E?zX-5; z)&-z^zL7{Pd?)M{CJd9kc=xu-%O`RX@*2$Rl at Q+Teep72;<7R1n#bhglv30Z0iaJ$$g-j1C7lbY3^7hr7+< z{8V!%faLgizrt*H!=U at S8@achs&XX=Fu1BH6IWRGl?Iy=TFusfGwvw-!(GAejly^eR6{H*n44U{?Wj^9sBPnMGQIqtUF;6yG1=T|ZO zc#pIe0bYETP>q{V=sng6+`7*eBnv==(9E>Bj_(t z2t`5Yi07Xt)BC+fDuDNse`tqXa+gw4bcgW8Q&t|TJoigF##di`mEW`#usnynyY}fb z6wl#{8qN?vChfkZc)6n%^ z=rlS?iosE2KBJeuz?109nYZ3I1!!8JaeVpAi_rLP$tX0bkZpHsuXGZg;=Q*%7^PY^ z*ovtVPq3;q^B(|-itByw(yoT7&?fYq<5SnomM%Z zdGAvIMIa7+} zabj?;S9x56QM at BV{Wa6DJBKB&g_~4ENljGyg2YwsZXN|dT`C+`75qnlu+!eud^I533FT}6sQ45L*dCG+#=8Sgl{*5_# zg+n$Ggj3Ds$HQhW0$Me-;n#8=B+v_svO4u$Q~AgPBz(>Lr7e)@5ysyAAO83MCc=57 zLOw#cgflvQ{Paol>+|1AsR2>Ew1hK5MvjVnkDO35QH3yuh?@s0&*->>nzj`}cJlft z1ff>oXNPeTzS7%L$dn?`bCI=(*#Ufa!qBLEqudvv=+ at Yv|P$pfyn(B}voo-t?OvlttUh%a7K zK%If$?-YVP8;3QV`(!aoL%_Fke}vW*qVQUlCn9_<-$(%k;vv7hPB;Y+KsTN*LPnmMavoIiudrzgZod))4&^##)OCG=NEEL z?b--%g%1>pFVEq*;7Mw|f(Om}7^;*|dGEqY01(Amp1c4#`$4lln{7^W at f5h$H8D< z02IIu9J^0n{to0ZaQ$7CI$pfL+*S*_1M~`b$pI4%ef#!JfoC30@&cH{SKcR|&3b+N zJoF7f2uHgQG~%T^43}TOr0VA^rt at -z4)Bz at HIN+jbpT+AL@?5C7heb z#7H;}pgb(l!^j}-g(=-x4yz1*cj+1DXKiZ3`NuYm4DUIssVUyEHk4Z)`p6<{LUYau z;QGQBzU!hS*%>zgV2;*ZgSXXklUZ5LvMGs9R{MjOLnYp zu9PbG<-EvjhO+ZRvvd*~?>u6sqCB`anDBtsAIV${#zJkB^TTvQOe40wv{Jvb)K at LpO!p`n- zGaVt#Go|sfF6F8>_5Bk*k{~)gG1y$5D`#(-fq+I~ZRdd*RSchhjzAAg)*b-Lg%A7)8Sz-j at 51DOoW%PA zE4g=#y(MYqS9wOx at P_A5)%5MAJHmklNstN?=r#{bSJTSuAvBz49~JZJx2Q#kzYBXH ze50AT>H#^z&U&m}@57Oy-s(eW0QY(BU6MY_`T6q~#USQHVv?VK_^|-2aa4rKhtOR< zq;euBBajFq&o;VG!nw6>Zf}*~2YB^;(h8*Ga{$oCw%VE3>)BV2a;LY-o4L07p#Y?F zbW8xsVwlb(i_KWVCt-L+PXnPJ07&lM#Q0?8fH0DHLhy$$E>B$RLHt-#0!+<859n5( zJ^O$2_HEu1;2puIADvvotD6{Ap-p*k3Ig0KA!dJH^4w}VkEYk5_rnM#(@zv+>1hST z_U5&OqB+czg%AkALh$;0DFT}DZtpms&S0u2p}ziV(ylFr*AmXs3I+y8i~mdz00OHq zY4#}W!Xr{e253EZLcy`N^-Gg~Bve(6v;$m#JSiRSNQE6C>Wi=hDyvF5?*RZ+fumu3 z0n`bUH$3M@ z<=K%VCZ|q*opte$ZHB)5DZG!jdA#&jWuz598#fJ=bR#BlKmPX&JC)nEkK3-4UrSB$d#gPr_+Gj!NrAP3JL zAGe+l`B#c0v{7<5Lce4IBLbiUWC2Qa6jG at 6Rf?NbKT=qJ23%6s6uyX$uspCpN%AsM z#*~vDiC!}}*iIq=mW7~sW$aOdX04q>kI;NRI*Kj&B1+6z0HH>Kq9gfe?yrp3JX5Zo z0s|gV6E(qfVM93f)T(2W<6iPB`>MaXxmBPbIxq0Qe5Pd0VM^b}J)2fdnqe8P}k!}*Aa`^aT z4E*Dx0G10qEVYT7VTusUJtad zudfw7NMZOAaxYI?zIZCF)1L9NZ@>35{Nb$8gELme?!26vTs&Y_O3YUFs3cnm-Z|n= zpBK`t5UQz2WQ)Cwp`!zx^t5cb;dr1`=gw9Iht){v=!9$H?Z9QytHA#gBBVy^;UEIG5Zb zy1`3~1U!b<(cDQsLxJl+_I?=ozP`8JT!ePt#K;uZM^{pGB)>0A%`^|@?>2WL-$xPbc$gMjGo~Xy;CT-W4T5Irqjwm>f|#w;6#LCDh&9M8)SaAoC^& zKKr`vsBoA3f&PJ5X|u6}0valW5U?pZ-6h at 0zZH3W$~olZq9~hYD*|_8bGO{xUMnG$ zXHhRWqi-b3>YF6 at jgT~FRE0Id=CW2rsmhtB2jL73kAw(SBJMY15kjL;m^y+-KjmzD znvO6Y(07{8y3ASd9G&I7Muz*Eubw`sFk6d1svd8)n2O60|q zb0s{F`M9%Qwb5lV7KSh2!Ytp|{m z259x=b>?3V*ZozFTNLMLEH3$m6sq%PSy4zVvzt6$=uvpW;R$71v-Q_hj@*UTKyBZ> zTg|(bmFB~TwLGgY^x0L#5j(8CtOH|GZgPEC&ys9;%e3x5#n+XO;ItT zP3T#IIbcwI7zg at t&bKQ}EkCQkN%)iU*xoy8o;`io3`Wrl5&CS^nLOjcO9k z(U5yA!iJ&;es4uyu*%T^Wjq)o?j~p3dN_DrF2kRyqS51ZjG^%Y8$i-w?%6&=ZV|@z zx*Hnp$ep)+_auJ5^r;V=SAD-WG+C4@@K?Q zG%8a80iM5V^%8|bi3sTwpXAP~KqsJskC+$6zX@~slFo$3!|$zwf&vC8?d1o0)X5c8 zxTH#Yr0AY((Q1Pin=!!{wN_p=_XtGdIZCf8hqI>^sPO)t6(7l022e>_d07*JL z__eWdNAwXR!5yOY0!ES9l at 1bc=yS-4md+GLkQ;#YVC5D%cL2LQZvlJ$j#pIaDo{NA z*xnKP)RKnoafT{&r4o>t=mY>lmyBQg^?C*yk0iYSZ1ZZlN1%>wpg(*K=02=Lai7!% z^uwE{Fm7^Us`P^Ad5v|GLqO_3|MNfRwW3~99AFM%a0Nf-(N}wsC*74p8iKBW)B7s) z^ODFQJsVpf?C0*4=Qmr;&%)y|RK~`Kn(@hrYS0fCXm($bxcr at g1bZ+R7Z+xmshNpp zDraa2!9+mf+{|1>gUAJYmo_483C at 9-$Vye~QeVgebby|{rsP`aMuU2CUsQp^rJPtf zLwV886iw9n%ed;u`D+@#Q+J5Zc_;0YOrnzqf-!g=_ai$3U7GXARAckruCA0fa5l2! z$&)8VU+$`Nxv%g0ye(+Na!nY7>9~NmZ#r#jN4e^R{W| zc at EvUt9gwV5B75C*UiKG_saUG$osQC1O;Ru0-l}Y2#`_;8y}ka>5+h`2;Bgvfmoum zQwzC>DCJy6-_Tg|@hVIatA`b!tQ=t&T?3u7I3&EEhj=BwYx at F>XcZ$b$^~6!o#veK zg3X2bG+sVF+-o*ARZah9 at ALFgZS!&+lwjVhtd;Tt*1vDqw4dg6>vtg5CAWW_XRK+tp at el?p@}cTPe4!ZcRNCGer`U(rfqJ at JEq9S z2s%QXpa4R7ws-=0M=&1&BPZ9`L}4NxL(R>3{&?9&L#soBMkfi6_^hi^W)o4Q?b!>D zd~Eh2(B)3)5y_j9E6JT`%`?z^{moaEo2r25FMs-Tc}aw(4sy>z%|eY2?=Mwut~&w7 zG_p2jp)b4?QCRI_c=?@^y_dy$8gP8H*Bs?%U7_ucoQKM}?d{F-zE(Ku>ar5Mt=oIi zno3TEM}(q#r$BkfrA;8Sk~hvP!1y}+Dr!K!pp%OLBLebq0I@{w8q%I~?TjKthYA=d zeEC at Go9pGx72?w?l3e1Ug(%7(&bKxlXtO+T5vInRwNpnf^WEOFr0Y`dSzGlHjKHTH zfIjO4|oXevQb!!u69yPgnOPZ#IMgHkF9;Jg z^hV=}MZ at l#M^S#B)+=PPhU4f`8z9OGIP%TNP;6!o3IG_eKn4Q~odTp;Xn8=|2G~NW zc~9<;O!7NmiAT%+fmQTD?lU^=o0kNi2)PM+Ql1L2CZ{LD|CCwoB=>LK!l}F{diafw zw!I6tHns}T==k6s-92Ey0A(cUJcF|3W%GAlB*1ZNYqx*|5W}Ftr(`m^^w|t_ks3}B_XX4;9L@>(&BD+k z1tI`w*g61b^rlkV`AMTHFKOhQf)a8;zfu6qIif*wz at 7m<(;|e*3ozym(3v$eE&wh3 zz|rspKr$T3z#422{Yr25_85ODg(*Cr`*ZGZd8Z=xdC@|~jk)ih&4^>H<4OClR$k2Z zE^f-GYJq0(1GyNzL9Q?&hNT~crmJc8O^{liT)C@}spOBe1fgoY<#Xh$;}`nW^U#~S zmDg){0D!~m%eZ3r?QXZNkQCl%K2QJSOXq?&>&yav7~y0?dB#HPbe4X5IwlYm4FkasP$gPxU}D<6<|kS73${`^Dp0a=K8RxCY1BgEs=SLg`T22#79oqlE+PcCw>IQJ!W33N!KOEku!XJ3C|5 ztojOGhuAwpRJ^7)9oNlK7>M$(O3}6TYLipU8DbM!?8-TuhJhrus?>5OLZDY6eATwR zXtVS4xd()5M46no&M2iEI~vHHbVP6fHD&_yaBk;ZgwN;i-OKsUH|9UzM5|HOh at TJx zxN1my_9YhsQ|;_-*I9Jrj(B&sL)==;$cxi%U`v>R63YDnia;PiMUY?y$_yxzv#AJS zeQP5CuP=)5vhGU0>C0DdiWyi!gg2qU>o%Uh>vMK*c{zans0x;5XWD$p(TTBYeGmwh zyWGpqBzU*^E9k_&fPJ149zCFoF!OufgdKe?V~MGL?aF#eacBPkvIJ;hw37%x3QiY& z%5yc~6 at N%hw-yR7Y*Mt%^Cl!nfZ!>`N&0i~E_l!E{9IY`^Lei+FDz65jA!m7;Fj=R zS<%ou!X>;~ZG*xiyuXwU-s2JBX*5NJx5HLH=FEhD<#-Mc+GBuh_)cQ|$Me$&zW|Wj z=XTD1Y&f7k0+w}p9R8KA!Bcl{aUpx)`HB$}8d4c6zw&l>Z-sqymhw5+bJM9^MT)ww&T{7VsMos0z`&7(u! z=e9^r1u3t+dzN47T*~>@UOQ1_(owvQ za^$&XFe#z~)}#(p_%r8DE|oVv0G&}@>&~8dry0Zaf_30WN|#40* zTHnx{5K!QixfKIqH}CDMdvd;>!MoAZZ30F|@e&2A7p$-yz5r64hepa2E_q7f0}o^i z at JDAbV2oAcy%Pc!eVCnVXJE at mMNiJo`IF at gbN9td$1?>eJ0oi$KglfZr4))VP at IRB zAmvTVdD?3kA2~-l5y+w++?&sKE^;gZ8}g1z6kQAJyBpqgMH1Gf*Ipi*XWrBr(H}s7 zXVFBB5eu*R^4yY%`F(lYvxkMdF%t8q^FuEj3MTSA|LvCo6rSs>9c9!Icd{)nvN&x%;- at NZU zRbF2JGHdW2U|8;KIZgaLpcXg=Jl#2mQ`@ye2z9IY46QSYd^vYC$vNatv(`C9sz@<1 zg9mzLezt1Q7zRUx! zFmN^|LE9yLig4$$HXqm`Dz7KsE)tPmT?Pc9n;_}YzF6;JY!#6Cqd=z5x(Z?q$Cm;w zS7`(>@1CAEH^5>x-5aJF=njC|-)sUMf`&Dl?5XhTf!v2Mfjm3C0Ha%)iyY!<2!U78 z#dSmgfBWoVfy&RFhV@^?^4=|Q5p3KX2hgnT95j1JC%MqBF!1f{_auLI#k!adh?s14 zH(48UAY=LGxwl+g7zYs&BCHH!u;jZ at WWrgUQ9#kG&G?KKD%`xEn*JzE3Kl>;3t+M5 z>k!^p1hzcE42<*@AqxW;8s8t~bZ`D{ zGe0#~=h+*OE{tNz2k#Un(68}h6w7%SwX!|~1iM2-!(7Gryt5FRd`gMVFW$Zj=AiGK`{Yip+f(8CMGFB z5K!yyz;qs8%+3lI^QLsn*&Pko60X8*dW8W{hhch^*xKe0EMrkv4zdj6`p z9p%A&4;1 at +J;4eP<(eo40vjmC&_bs2v1Gx1_3T;w46hON@?X&m07jSqn}i_agVNKy z+4wBeDu5v)eORqm5qbn8&?{M+5KxU~I>tnV9BW?)1|KTY0I;PS at YWeO=jW7xYV6(! zJq0s9A8_VjfBWiX^D#ma22u9K~}*epF~GiXR99F!i#d(0JE) z4OO{QM2a1Fh~B-dz9)t69 zp9Am(F`2@{0Swy(8K}aW#?aKgCW_>9^YJCar5t#( zp8-TXq#O!7{ydy(t2|S`=a&aq at cd~9H89v);dAfT{QB+Nl^DdcSwmm*%TK?Q at vS*A zUBlDK`}n1B2)JYr+ZzBZq$xyOVcLMRwE#dB_FbLfiM)1bSdu at mW7hLo8A^Z;Q04iI zGeEQY)P`16dOJErE6#8*2Bo$8Jn|i=0hI04zX4PHNm1LUyjC))a(zRqj52iH=6h+) z6UmV03$rRB8jKOC-=a!%_rf6LnX6Vnd7kjJv1b4^pn%4F`)tbIzTIi185KP;7~7f8 zU)ok_ucjKA{ukC%+=jOGx#Ot<_^z%^in^UUA8Y1jCt^&@R9mT+FW*IG$ybeDi7di< zWF=Wau2=`)X|KMVtNck|9$f;Q_76CEEuiLHr2!cysC^0jh<2@?n+h#fyOzi{#;yEc zvW{+LIFlno!4s;#_3HJRp6mI%ii*?#aiLqDT5_9=Z1WR!uQ-bQ9H}Pb&!7Ji`G2SM z4kJnL&6W4-xzDD+;pj-)myoBsymFyYxJbl+HoKb*s7=lOPX#c1=+&jz}3>O&r at rS?HL*W=aFW5gY+`M@&mvA`yzbRmMkUM{{wA6ggnvL{RZ7p~6ID)#EysT8T zEswIZ@>2<0e+M)PbO3iih`)56rDeS*&E5Ig^5jW`7edA(!bHG^^DECx&KDpune|h`JAUpaK?>$c>C^kK+J9_evQa^>F4L}R^gKQo!ZMt z-2iIzuX=EADd!uSIsVw(fB3lgO0{}tXp^C$kRqQ_Am4aJ-u)9sSnh^rUie+8bN=o^ zoxzJ2FS3WWFu|9n}#Dr7bfwN>BoJU?z zQj-&7RmCc`VexKgEJ9k*6ad3Gs&Rk$EXJ5nkM+ncq-c23+Lj$1mA55qrf5O$H}|9= zy|DGx`gY}N;z9C;%p-__KQm_W8bg)h at +{t&7Ia^hf&th?1WMr?9h9LWrNg=an>TM> z1>_l at cDsN-P}H`D>8#WR9RPS6wZxD=N7?5k<-y`D;>op_h^IEqA#?}q9tJ1_(*3=I zbq|tfVA)+gOTiXrk+E2G9t)z z=PrahKet%Q8jWb{0k{Ch`pN-~?g`Cu4CtRo=JOi5oAot)>h*kE&O9T*+u>daz0otMyJWCjp zQNT!IAX>ZLe(uW`UMZjl+~vFV!YS0!1U;ZB_rmxCngMpbSXGTy5lW9%QrGoMv+dX-vT*_=SpLNPiPeV(G!eKG(gwzIEoxNi}H|1H~Dzbk+IQ7%b|VIQxn%l1BgGKDA>`U+u(`bW+Bhy^x#f|0j_?5m+e-ai+D`0Cly zAm`%%oQ?7ZA#lx?&8av%ZNoSOi$=QdgV5#e&CM+}Mq72|0(c&JLr4(0-hA)Y51Z3V zOc at 3VbMgGWdhsC_G1e^1jfFTiqW~kYZe2FL-6~U$E1%{n*3M-|Z?k=R+3Xkvma{7s z4I^~k&is~DhMLV>_--!wW2}A3PW~Ye2G7;@P6)KK ztCD2r zcXl$CT9|bwVBqPa$JuWbZ0H8C=9Q8E*e91P?*;zLjh$zpA6`B}SEx=$e3o|!n+S-- zr3mF%Vdt at e330ES3RAy+_paGJIH+kafBw^V+5bqhx4jyHcG at g2nE|;Tfg>Xl%v3qbodn1S`UWEG*Ghp1(Y<~1CV;68B~1sc zQwA!qg$qW8M#Ar%5svz2_Cx_FLOH8`niCPg0My$E_lI}y#o8W at QtoM9<#{_1<`c7X z&F2V3fc)?%##EG!^acuSJ9`8^dE({a%-&sWI&PQwS-dZdW4v2W6sqRe<73k$5Y64r z_5AKJ0qWb3&*_PrS$R3U0}52;TVR!Yotl}daQ=q?b3Oi8(CAuT*?xq-e4K at ax!lw9 z0*z>ufc9KQq{RQz7=l(zZA06AWzY!y?T=V!)9R?pRbq3x>} zA^lOBFPrr!YF-}6?>r>(uYeWjauC`jrx^?YD!I+Du{R)BKB17?PUu8hkIyUPJvR7d z3~)+UyCia4e at Gq%`MCg-i8XsME*BS<3YY*hyvFa|zK$H7Y|L3VQj_V%#%gD0vp_~q48PsT=0{KN2T&Tp7#$V5 zVf-k9(z0uMdOr7j*}QqXQZyu=nUa<7DN5iRL=^zHZL^*uFVKl+0b(_EBzxo?>gtY6 zioQ54L!&!jf~?W&kf$|@KA-3Aa$Dh@&_V#5usxZ}`*?K?sGXHZUB?6706>_b!NA$g zn#-FWdj8V8l4sW}cVJRZm=O4Jbc6NjE-J3gaVKx(n&LsdU*(~%ynWwHPtFto72(nXM)k9TF~9~m!aMgP zgNFwcdVG#Cq9@*N(V(+dsPgoyr&*7YgNKcV#)`q5>E$Ibb{P3{UA%G`**Z2f9)t2h zGZI}V-|=nMpjYq>CrZwzflG2%JCX6gDGxE(r%*-lmAq}n8e?QO@{e)g4%7o^g3cHg z71)Tb<3yqx?(}pvljFn9kAMG{rYE}mPth^tBm;tM?7kg7-_(mW at 5z}mY@~dcH_Rjc zhi|`*Z2l0MF~O)ia!q6^=bdw=^Nz!RFp)1tFI^>tf-_CW4I^1BF5GUued{{TTLYY*=|Y6i1r^d}dQ0c4$M+<6b7C!i_I5UDUFhk;Q! z{mVmlzDLv+iIF5t^IAdQ6?%ve5U%1;g5n4b3PaHdL at n&=!GeAM1N3Y+AD2Iac*97N zWmR$&2+X03Md&<;&{&9NJ2u=O;XKidO^1-8fV#sxa at M*Dt6a!LHlZ>{f at gTA<`M&c z!mX@{(FqDrB~64t4&mgOwW1}AQ9y^4r>9LtfPMbG*K9bTv#aJLKfe`=M-Ck!$Kp9V zH#aiMDneZ2&*l4f>%a*f?K>{B=hJ|;lL*)ItIo=2>m7{Mlzj_Fa=m_bc45q_06kJh zf0^IMVm*!`kv9;9NN@@Xmo*m)7z2I`Q}F;&J_xBdmV*&$qZ88w47av-a^7K-fU53T zD0=0-di}atxc{*3sq^N%xjPqyH=r$wxxa(W{K8 at pPma-! zw8eX-VQ=NMWv>PPL(G_4m{~JP1u6g^Lg!Hc=!MEynOx!A>x7+F997{IA>=t2j;B}a zl)(tHuDqAhmg`_$69J=gP-`Sk{*y8we~f at tMatvL+SNdMVk~=`QSk<_we5o at CdbNp zpAX|dy#JsSVoyE`!B>Jh>p!m at jZhmL9na@TnhgU+a0s^%fbuGD1=yi!=K;W|l*OFY zJ|Og`b&4>!;oiq#E(XLVV3WIc|NU8KM`&~+VEkhQ_0^qQ&C$hKGZlq4K049t1Wd>U znhZEO$el-025f4fph;|36yH?y%{LL6W9B2b&DmLtJO(_dcuP}I-i?UG>>)H1g~Bp+ zj#Y8amEa=ZX#e0i$`bu* z`x6?^oh$O$-`Xkfke-IOLq8`u at 2#Ah`OnTxpFKq)qeG)j9-il3mo-~S=20SwwAKO& zU%Yq~I=ZQumW01aD7;vBgCyb2=6xkJ706gWemMz0$(v%)%7fww{BuXxZ at 6(M&GkM$6v}ts{;`ZL`E?8^kotCFA z_eRNdW)Jo#&zPs#-72yXg6kg~sMnee4A^)^<^KjCs}eQqmqHP$)0#q4V7fvWPNgZzj*no zdH?=HbUB`g&dZqtzoKALMLc_L?L!${&PIokqXYWO6* z&YX9Up^yJtdXgtQSTt{4oD+1dR#DE<&!h>7Ld0GxnX|UBRt~!H;1;8JowYv5oL0Qu z=vfh!HcA`^Q&}%Bd*{+X at Au`g3*pMSst|9sP(>c at EeivJSo{*Qg?rlYRW_5u6k{(D z9mOo)41xCMXL5=FKkrLl%;KPlie&L_SLLq!F=RLk-feU8#rA$u5rWUYvVZaO_B^o}aL1{k{qjkV1| zK2hnDz4k^3-U?H=tnmoahXKEf0l%YJr)1(fZ(bpHQ10YgO?S?gfSU`Txx5zsrr3l0 zkN0y|v2p^Kgnld1;kg*MHv5cHsDzV01KP41q=yA!coYAmy*(^kO(0j8=*)FAabz; z5MijefIGT8P$6&%Lj~5+p%F?FuLI^oyc8rM?fsJ1tI#I`cRN<#n>X*8d&`fSU7_+= z at RwoGqcFZPaIaqQ>Ign}gb8$>50m9g$0ue&Ls!lFC at djh4!_>qgFW*UtgLNDa2`}u zvl6E9sjMq&21GUJX8rAF9XykA-M;<99|QCvl*G8Q!A|b~C>Yk}MU1BpdDebDzjt6P zE4kfle%OkEkagug_VOG>MCM*=M{$z7{oL5EdBu|ea#aI4Cn$t=n;PIT7D-UAv_2$ zM#J6t`4}+rd%{myAAqAD=V9($Xpr){iP9G;=J`2^@uBTeNVbF=K=r@=$N!jh4A*Og z-~bKPs(_FRRe+0Js-BzqyMMEW3Ck*E$m<<_wTe1n2x?k8TEbRZfEFJ!GZPWAra}x? zt{Rh!2 z(koL)2q3kGiJTJ;o6wrX>k=ASJ0MHp2#%|~Yw4vyw`nv`EmEsB`;ZMddHyd&9n8AvlhCQlZD))^W>B|D`yN?))-YeWaUtaY|Cf4%PM{dBgktM zY4BXKfdhnR*yN-Vz~Q=!@cGuxcBAPz0IonoNY&>%6Ldnq1F#H8oe_8?>rQjWA_~&R z?k%=+=FdLne9rY9RRwOE4KH&~dC1U(lo~t-xO}4L^9*MwT5*0I`i~A41v))DsZ<&5 zu8sosPU*2**G>O$o)aC2FX^sQeNvW{DzMNMeYBL(ccq9f1x{L6a)mcCRYZ3TBz`PiU z8khir0^y?yJ0iGZy~oPb_*liQNf{qcqmjc{+}Y(~KMiwqM^NTHCIN86){MPeBCo)^ zcXHmeNmK>P?+dTs6!&X9GXx0-35V==TopIJ at DMf zg)-r!BZ8P)Uz-r2J%WkSpt#!5f)KGP%JTx?MBPceA}67=P=7)ygmT8lDwdk1q~$8w_(K1UD(*PqJTL;O4>s)iT!!`vMPWPLIY9=?XiI2 at JV?Y?*vFXgS$)15yEoOvd##={^2or zvoXR8BdMxAjD;*mLrxYiu(J^UQ!T4!62&_ft4c^lDB4{rSh~zJ+bI`O{zCyF`8mMV znV`*T5vhr>ssA`D&wnowvSZFi{M#--f>0(NSUt=twJs){EIDv7;$61WhqU?S)5YCj4v~ ziWVdcx$()dIx~um_sx`s7teny#rZ5iZ*zUE`Sq8di{6AaHBZL76l0dx%nK)l at 6U2> z!a9m4c&_Z#pMwE?_|>_}>EX#I>*VJEh^n$FI=sPC!3*`{Pp_Met&Q44wR?$-;_WOR z%6XEDWUi!iU(PriZH at BqPn);68$R>1w$Gchq}a7Csrk}T3PPEMF)4=dBVeFv*O^fO zfP-FvKob7Ikc<*C3P at rM@J!%WdAxvG{3ubri953NVWRGW+9GX{VV zY~@1d4x|}ypA-;?OmjC32 at wxqi-G0Yiq{x!?w)7bmsA?-AS2oqX>DPMJ#l0Rm-A-v zZV$$wsXndIm2%hs=$c>^LjeG!uNhQ4KpZ7>fe1_G6G!d?# z1MoiASi|{+g}P at n&Il_2mo*RE8OUb??$eQ*Q!xx@^Lc{>i1ghgv+#af#o9KFrcZ!j z>;3qt&8^j3UpQA(rV2EIH;Vy$bJp)(X0mV-scM)SqD9R z|K3vM?Zf7`-=3Fu*PsERb+4^)bdfW1bQPldQ{}(&upaN%zQvuJJj3W`M5;cPrX^(n z*yJb?A>?UPSi(>vhcsb7J=NBYb1l4;{qR6?h?EyHzc--ZIyy at 6>{LK*NA%EHWZCEF zp%ZBl4 at ZZ-CkTqj!gQI+lO#WEfq8EW=IOd2|0=RliSn3NOO^Yr9oGZCSpHg(l=4 zy?G^BJ>ar2D>4c?Akch2-TGZ>{x3fl778&1A?y7mCf*T7Sqsze#}b%VtqcY5Ka_pOciqg#?3h`vM&1i_&s5)7X!DiVh&;ulQHY$e^ zwVAxmPQRj#fXQ4NDc=;iy>Qt(3#ta8 zwoSpia*nJ^b9V>w+5m$96yAqW(krUZEK8$- at KkO@I?{HFJa(NOorp1p0qunD5!<`yUmay zs3;{Cyig9K%_u)#`dPUP%8?SZA0bRh<<-L~e*%Ke*7 at 7>?k*s18i7805pJP59xS{C zu#N<{ny-8lp2)K5-hBpMVFB~l{@47MSnh+v1C at ist19gE+w-aAT?N07oTK$Xvv^lkzH#m+-T*#pYYrDN=JD;!vjgyy5+}9f^GN at L1^DeHTa$ zoeJ|RcJMQW1#MIyU^0e=zqbI|8Yo|YPvJxiyC`$Ym`nmL$tCCH?`^p4a{)d8h0K+M z2b_5ZfFXAZnD%T-ncvySSk<;D28_22_2Xv*Sv2SDiJ&=k8qu4lg@@Ml?f;EG_S6Wb7AOK at aYE>E6BaxRP at K09w!n z=qmCFNO890g2^BKxo>x1M4jB}YJHPC1?&Mma+fEYjvAX#;oM!IZCa63^d}Foln>!u z=SX%4Re$b?{0UiybVK7>vN0lpA3`gNE0^!yZ~D3;Z?1FB=fMh}IFbT}qOYW;5GZ7- z#&4e^^G&YmiUB3Z{VJa&ngT at 2&((s59K6%3iaYPkS>1^)laJV at 6J2CKW04KL%|`aZ zZN+$(ZnC|zo3($+`Iv#+P8KI>)*qBY5K&X*bQ?7`r2pyTBQPmn>R& z_rCtFV}Y at xz|zLXdO5r}n*dgh8wY2C6U0Prba!d{)YD8<57*WS!%4zx8rI}*3jO3R zv)`VsJ56VFuS#A8Rj1*rPoY71X;MON<7H_d6DtBGwx8AV~sJ0qA`xs*-z66F#lmdmqo)|B3Rd%HQD z5clT@(3NcF^}DrlZ}Zv#BXU>>&EX-<6NgG+?d9O*ePN0}eDie(?{ihN8e2!`bM*>s zm}Y>{RmK9anA~d!_FGvG#SHlM+>WIZkN^zVMMdz*@d7s6mL<8QV*a4?Fqkmv#Z?q@ z6Coc)xca0GLe3?OC9LPHg($Q at zi8SL>jh&6n^a>%@I}xu(oKGA!qMUcP#Jg-Ch=M)o5Z zpDAmfcu)gte^5wvM*cim9 at y*!TY>I0Goo6 zjacYIxgXI4h5)PjBJUMi5ei#aSc)*zR)ohUz%cJ~PUxyaP5CVA;K at M)!o&Ddjt}Di zXrnk)ivu!>$u!kf^(?)D64g7AQAsfYlPbrBfq-4JxZB(>vsAUS;UzIuWnFNiU{wto~)k83i)C}wYSQ1$U`T at r&pLzDDR?l6AF;$5MUwGeKSfu2S^4|P1t4h*mb}n=F!RhG*U?D at ZeG9_I>dv0&VEnU4NlRhDn>NcUs}x)-$TzQd>C-;P5m8z5pzMqKm`nu^hQ}L>Za{s4qh&aw(VY%}1^-M7JmuYiBG=IWmH?ymkS9n&>-U zyg)C&5{!5tRbh!db6qUZb6e$}HRRunsEZilK&Sj_5icN)2M_N{WAX1_fBUUKqO-xr z3|Tpc<1yx>s_^vtt^ophpZs$`k_>Qe=$Y5N3U~58AWsV}#^KGybwwJDcy%s3foN6b zy~v1Sn(~@5E^{&R`s5&rq`AOJ?TsSuw7r4C at D*M}Lpi3mE0 at _Bd!e(PDRutxsti*N)K?hJ=fbI2OU z$|tF2nt5MY)H|jQoHQfjV*yO^501;aG`n?iZnmDenV;Q+FbtaK at f!|Eq!hGv+1U6{ z`BTDc!iq;BP!&aYa*1~WB&Q<4bUDXi_5vWv)A1R+8Pl_~m4l}NHRXc<%L>Th^@Wgo z^F1>=Swf$?)eK{!qbS9JvO+XO)pO`mS^pUJB!_-{e$t#>$Ks4I*N=+eCP;*Q0Y7nk zRYu)?Jr&Yp1uicyhp0a{Km7ftW at Tl&hzc>V1Pyu~9vW}ny`#_nOO_&gSj= z_ffEmm1j`Rswv at E0$liK5r!(NZb#VP&SmpB$Qv@=O7Aw+Nx~Nt0U^ms2RM0cDF9&` z0{l9}D2SzfkNc4KApFhM4KVVmsWRuy!2IZla8Ov(&V*#qv}e}#V9NQN9!HtCIU0n3 zet~GhJz+k8i1!O!@#ZSW*S_Ubl#p;^t at AM5dzr1+UY-TTJ@vaBd at -FsAkQ(3i z`RcT}cTaU2m-?OD>Fo%CgMhBLp~Z`8!6Nxq7Z{@qW at 2Q_FU%L80x0s^Hn+Bm9)xQFO~2!LsAk#uUcP at X074(OfTJC3@@1S(p5?kxaSQLR^dtHvC>*WXfz)dz$725yTW{w0Rabi^CICB^y}=< zqo1q96~d`JxX2rYJBn5)M};$`_(IEmPVn>2d{|v8P>HULK{F at R{VE7j at jRS6R^S5& zs6qxLRMP at E!v6p`nIfMKK&YaWC{^^QFPXo4FYlFU7r?Cd6V8=Xp637&(lUS^id6+V z8pz8^#!x7#+bQfXVL2cXsAPoj-b!0h;mljAveQqFG?SCPHLi7j^$y5w#v*MwPSCJ>x at +LMb)w7R at XzE;X-Sy~$@?6#drc3qzvI z$O at eY=tZ=|h#bv5 at GfqJ&lTRek7_3t;l|nFUKoR2U6FG!t~+kYR|TYvk=%`LXRyez z{2V>(eUV at LJjrcw1sQ`@q);iYs;ObY0gOh^7KzdXTErr!(&)+9(Evl2F|a11-`ciX zEdXSU+$y6Z9~T`xS#pC+AV-`Fu>ZHe|ClG;D&vtCeS24{owMi%v(Y1u!idIZ z4j8fp?Zm3C2&5@#V?Y4^H?T*~Z}zK+#<0AbS{bqeIQ^ zL4bRnKQR+N8jVre9eu4;N#I-OLU-r)z!oAZD=6P3tn+UTiN}L{0VqhAHELuSekOb< z=!+;)C{!zvo@`M22B9w-pg4N7xVD#@B7 at 5!AOtVzv`W!)$g2?&+uN~t!n`b6p#Y5; zfgH2#fIInkLU)zm9HBiv5+RV+bw!w51XvN01h0aYPqAcGfKpJ#pQ&8+RSC$s2y-O~ z8P#_ at TpC&mA^rB^W%K6ko4o%f2NVlEzgyqjD2C<1D$6&_-{zLYi#Gdq5Ea2ekz-J;G2{;c^8RE|$RSgm+A8Pk0-fCf zfN~?{I7n{gCGEM>)o4MWfh}c12x~i}65DhI;X+od at YP(vzB_P+Q&Y1M7RSv-EJH0n zFueX{Dm#UPD2qE$=I_Hew*#7bLVpnj0Xe2a#3Egc6&HYQ)ZkzK@`nJd-DYcJrP<2< zSYbxI5n3uZ(Y4|do#FL$qEz&qV_B&Xq`c)~9)CQFp)eQF-xrH at wOswro;)mC-;K~| z6V(BQ&&@=P4rjW1uv4 at rmz6*w at IxxO2YHy65w;U$McQ+X9m~45s+U^;eE3A`7yya_ z?ao;-5`^O at za1XX2o-c_vBo*!D^{$1PzdtJR1X8@^3${&p-AP%00qE?2^Ktutp`x< zlnEotysPJS6!li4H45I;dW0eeawOdkhsRm(ij~kZqriO4so9xkIOnP#+28*9 z_hx5nr+AZamZhjTzWQfm^-tfMc>rWW?I6UmmeADzPS4*YEKj&;AwR&6&MCUd8u5wOJ6}A) z5ODt1=kLxOpYZ(JCz|%B4FNl%2n8tfOzU89UIs)lPKSp^%DbX~0G*gqTltxhzm=zz zr&Nv^MPA^lqkt?~avC1+r}b`SFK7hs(Y@%L at yzq2wG2>0mz2{Y^5i1CxfR*Hzqb>b zzEhrHUN!B#Bw`J$YKPhXI1-)&nM;Cpjf*La+KvgAIlQ zUg(UDoUt*g3ceU3^x5mcqpIN-yA(O0CK9sMO^+K|8+wr4Sw)PL& zs^zR_=NF2<_G8FxhkoVjk_F^8(Cb at DnDeRT{lOOKgZyHwYsuH&KV0jpUarwgDuDIq zytx%#i_%~SpizdLa~O`i1+s0P;LiVXD$R)8WUMM at l}PUo|+;qN6Og0qAUaDWK8 zf+;sbA-k>%Ys=R2v;1e27hw1~uYt$`2+f39;FLk at 1^iUW at j1Id%^+CNAkTu%DbfC1 z_KN_n%3~6O4a2i8T{5ek5L2#>5vuYw5Bd}UsE61{K3}!&`!LUb2vAsu(h@@-je=Uf zw^-JcoCAmQ{{3o{^xbl)T9Dia^LqcofBdnTo(a&&x()((<-xuCuu*wU at 7GqUUB^m5 zp4`D~FPEbudYfl<`_ApE_I;Pvon~D?>i*$TKKeu8{AaY?NR&rJA1&y2Tu{=N9 zOy*}j5wQKe0nAa3hevx6e5Y0UV@%DjzrJhkE==cpzLcaq6UqBPAP?AYFJCrYEdQMI zdO*{y5af8Q8r7M at I&m at u9v5Q@}#5R#)@%$>XXfQ(ZirJ15{C zKYiT1dikp8m(rEfVdkrFVYL^^e-fR?CwRn+KZ=OX+J|C!X?MhPEPrk#Km!2eIUsBa zMQwP5K&n_F*0gGI7XNv8gJ+Q^`L|zxtKuD at KRGzO>?}-P at x$;~XBlHR<=F-%c-MqR zglBvaB0MgX1mMmSs09Zv9sw_O{`TG50s=fLZ{EJjb585$s`hxhDLMHsLiq$cMdqH3 zP6L=#vV95Z>9y9~-CK&2jCc|dEPvSZ>vYLgjK~&3opt_rqfa{129)aTWvT=bwIQ z-oE(|nRF|>82}vyV4$lM{&b1nB&1(dco(n+>d={V3}BqR_8u}pRLJabd9Quk0tll^-D`!S14huUa5m#giVsg0fC>aL7#IcU9q3^w^E^q> zA~#NRJ}n3hAkWzWC88;S0^@^mELCW7awhjamMh8YLMs3x&$az1sF63US0}@9By!Kx z46 at 4<6!M-i!($FSS`T?8r`7#1VAmqU*K&p;41TXCuzmPefH)PP*xMB#5`yF at e*Z28 zcl4QPhl0MB&)<|$E-j4wln;3m{j?X^FIqDieR&jM`|D4Ck12oCJb84#3PYsa$h`x~ zoTJDRPxnw{yB at dBfxO~*gkK&$SkAfKY2LkgovUm6t4jCKN=%vv-QzqNclmYk`{O51 zN`CUd17=mUMIYoGIfpKCA3S{TS5_JwMDFJ9$t$y=wGm at vlgs#zeBhu0_T<)bq~KBW ztkKoh_GZZje8T`)j~=U$tuROUY-rddo=5GCCQsj}iw|qZ}>s={C`=IPuS_FYaX#n!-%24a8%3-STWA>o+MK)0To1L32 zCK0~oF*Ef6 at Y~$oZszVT=I?v8Hy%?}KsULp;{dYmykD<4CF+9#V%93`sA@`B1GkI} z^)v=`tEw&wFJMI8luR} z*B&W!U}af(S)s-L2vNB(1R!p}WP~R#rt{|AteLc-4?<0XFAEOv)2c#v zS?{Ci2z<;qIW`_p^SLqpY%9XzJPLpiQ$a;3vydo}3jgLDHS*jHLkM4+F!27pX)PaO z&D{?`UZ|W>GijfF{dF-b!w<(@qLs+b)pAS4M#-X<0uP>Y^Uli^kp4O4<3Zp zhAU*taI4C>eDP=i2#lvnYR`KRsVbNw74Ka=;&=KfmG9YyQ;6r!qM`6m>(945)yEGb at EfPPN@u_!O0 zY+g%iRYhp_xAmKEeLu=ZUJ`}lKCBT<`u)=4-2j5ftk#)1U+IoN z8M(kK2 at vu?UtUQ0XbPnBU@}HSF4^-{@d7X{zf-;;!vxLau{PZJG4F3fMU=dK at Yn+w z*1EO1U7)6lHgcbO-vQ-*Pf_}^Pwy4t^TmT!lL at j%NL)&mY at -<+BVsR$` z3i&9+T~lsy0Pf#spj$v*A&xWherwbqSH7d-xtem5yU-?xl6MEz=yQ0Ffk?DtO+Yz- z#M6%7=nFrmwEStUzUYe5C!wqIZU%g}UvkBa%4>5U0qktKzC?F;#3*y0Ne+ at zic>~I zM~@#rsF15h+0NH%b!7m^oHM}Yxd0zy&6-RA at mhSrP(eR_FBI(W0GodUnREcX#86=D zdY`kfP6a65&meX8K3haZ9xt5*v?!Y6Nuv)qNVI{W6TOcDr%&)T?~l*%e(UtvCyef# znH*f_wG&{=L&~eokSSmg{xN>+FtTzrAd221GZi7w)sG+EFOOKYuE`p68I{6O)y9#3 zz?b`QR`RNWC!-;GTAg$CoQz!J0CE at fA(^#`r}JJ0Qvtj1kUNwUN|w|A^0Q}W=Bu at s zv;M*Z=1gn&j29Ru^d#p6 at GttqP?7qhkD|6q3 at UeTBp~BQt0oSGys;t*s`nX}ypRm6 zx%tJ466$s9tVX3TWS#3V@)%>*Ahm+ysRV=jg->$U?#NmDnIbT>EA-9FYW=M<>a?2I zJOAOFvvw|w7&He|$~)AWjOP*dXnW<}E?O{G{VeZiDrQrSR&iR}-OA at lfusBH#yA~_ zJdw+9+~!%AGtAqIdGJW-zi(@7eLb$d_oA z(cZ3RHu?yH=*nmIg_oA5CYwKh{jB-!*^_25zCZM7Yh;^5RA`BO73>RguJprO3;2>WJ*9Gw)DlQOqkknsIrgJgEq!>b5 z3GEhK9za8Y5oi<#_jCzaW{gYAx8j8oG&$IwY^pcRKykf%{U+9Tti5cuCm?I6KNk{( zC8=L8I2SC}sVA3m9ih3M!_^;&vQUh2Cqh<889>>Muo#GC_+a^7UBrGs!n at b&&E&{H zDJm^*h9!)KnUzo<2Y at Z)K!-!fU12cQR6^tc>v5hx5M~jQ-HP&Hr3;-+PmDAp0}%!l zhK%su-HNabeSgyFyEjZU6+w_AkJ4BOxU8JEC^9qsav)WiNX9CL*@)8Ii!k1gH7?hL za at pOdtXRW{ST}k-$Z|IM5Q8gk%=ZyIK!w^-$mDgIghR+vy1|TbU<^J8J+}lN%B|<(5iic}^XQwPE zAV%e!gj}CRV6c8DS@}ZpIpm*JqHzS$bbyDJ7sp`=!jfS7Kv+dd4UJ4RtLr)2@>E_| zNCkj4^&`YmAYQ0I*meI%epgpsb5Mmu-hUO)MlZ3#h1>}c7B$NsV5FQUr^W*M2ePJ- zI%7igPJ}Wcj5qL$2Fbikr#VZ)ng^^3dh%XiT;jbP7v5)Q?s5sIv4G&=p`3T<;8Xa= z=KwnIa!%E_bPDqZrTuq^;$>EM2mOQUJWGhgiUxvyjI{S at ZJB-zh^i=fJZhPi|5eG=k5hnyaiA zi~@GhWB%5B{nfK5>!yS!`kN2U%;x+#BkR0^!{h)0pe%XbDj=dpwq^Z*CwT}IwBcqG zWZHgdymo*j!w^jZq-cf5AD^_nH5JaONDePVHuy|3)Hyg;rWB)?cL0xBa|?pnwn?HZ zz at g8fgi0imiQbpL<7vQ;jP$JbcMQCoMF9`MUqx)2zo)v8aW8Dj>!FYX9|QmP at TDCK z*~+`6r4N9DF6ahplh=zj*49=lQo|@}L0jtq0;te1I;?8e at F%B1$@G#d(Fb`A-Jokj zr9b3-Jba#kX6 at DJv@bb`zUdjwr8W4a at U@natH)dC?5)|E0Bmyc7+cnCPk=lx>K7x! z=L?aeR{)5SBlW~H at HTH9x+7Dx`O)6P*ZTTeetxHneIuV#y2@<^;HF}PD`I%HvXL_z zh=FzDX6x*EvVA7HB5oDXb9BjfHaF4cZKAJ`_Z=@;o;_Q(s$!)3Yzqp3|jXlI*u-M$lgh!K+e z1my6Y(S-K$Fvh#wyV)3jT9RmchK3Z+ at N~Nu;eGkK*DN at z}S|*?)w@m#>~SUo9;)4}#&w!sDZns}nh|-rPe^=wOUj z`v3I!-uHS}@j&QrrGqyiLvZPZRn3XBnepKeUIYmXh%hvVwh}uuOF%S!I^s)VzITQh8(8L-qev3kR-y at OHSA&B!Z zug1pKOUSxA<^Gf^f#d$l8jV1elYu5$AQJ@^;Rg8omN97$!rm-W7M6y$2Zsmc#a#+v za?P{aS at a)PH|wrcMOl}D^}L~&UuEZ9ET!4(2UwI#LGch$t5F6E3k#)8>~m&rq4vj% zc}BTZo1NB!>HJvg6)tc$xwB6X-H zbG#mV0j&@2EjFtwZ!^Hv4TAB&ASRduY&|QAU(Fa70mC3xH-1 zJnCk5YWP|M;VXg=<1&he{F0aEp7dlC+Tsl~`Gdk7&A;)-`8m+sdXbE`5{UtoC~$%^;LaYw5YQ{Ktvv_<&ThNRSCurt-f{nIUouoeE}Knn`f at hGiT&J zyq01Fy2u)L>#lnBB4e;d*~<;%;Q%1Vrq00g};p5i3rgv*!ffAi4A^>a8WDuV7It~P5G at UJaDE*MnWvDnC z>!Dlfec=!1$8+jDt^W(J0C4yXKwJnfqB-)NoF&)12Tk4 z9`@S7=zjcZPdxJE(`j^>gV!LPT$lbNrw#y=*IF&tLR&f)xM!&gc+AuaXYb#5Wkm~? zyk~W7v*c=TZ|Ey`c5ScuoN@|;o}?SmS-hF&xihI|oGlx>J2j%v=kY at 7^5MSijn}!A zjl!fk$NZaTuC3J0z2w{{a+iHQp^JdGlY_nHI>xrvY5?5VPoI<*t~)e!JO9>VO at rx= z<(=zjh6nnhJ#U&j5xo=Pi_!i&0ed%1Z_a6ca-w;BZ>jmmKm4J2_TWMD^!~l(AHMyz z`R70Vsrl~Nvu1gIKChW_{nv4P$u5}+B2Y+aZfZ-#SsgZZ8q%)h6nnu+ZDA^`MocdNO{UM?cbj$$-v`JxVB zDDu-Fj`PU39C6e6|NP50-?MTFkCSZB1cW;g9IDDBG at CQoA7CJK;t;q;c_u2krXExyGysoyyr05f*;ZcaC++lZQD~PXU7ExhN}Gm0f^U2wsQ*@fRZo zu at dY+=N+4lf?Q}fMfNapeo_X at BB*s?mQuf1h0B$t9DhCWEMRdY?{@TsU$9P;^Acg}Oa z!n9K=2J>${qwM|p%h$~}fB3qDFK{kbhjj{^I0r&}bYi^v%oULOT`>}rj32pdow00% z|GUCVnwjs$T4Z_3pJP1TT%T8n9LSJ|%Ghz&s^!k3aQ^tsSD~@9yv{hL at Kfl8wW~)J zzTu%)xFx>_9}4BMdMRf2!5FY6 at AW4TTm2k=SB~2?i!!_u{*tHlWdQu*qP&#eD5c%( zZ at rYM_fq7Q+Zh3hFNC_~ut->b_kJax(NRjpBoyJ_-JQ+mFbWZ{5N=nUSl+H+9lg9v z(*Oc|jx*)8bgn$J8gk2vL<<0d^*SeB8A2YQuerGS0*rVYch`fSBb_!T%tvp at axQ?H|*=Ubp z=K>;CRXd^LGcrDapJ&?rRl!RR$=S~YEXju?KgLGoZbcF2{+%xn<8?f4rC)fPa>nS_ zxl3tq9{w(B0LTF*=nHscV0Z at L0yO$O;Fz}%-3S2=opaGq2bJVg_rIvH`=YN z1dN`9&fJky0Duk9vUf&E$+NEv8$@6u&-&fxGVuWWeUeF%RuXuMb7;GXWz=A82= zM!`{dvATHV+1EMqBPlc&r!{N)>9=1u!($_n=_k$0cdweY?Tzf|G_U#C9K<*f7S`C< zz3C3p7h`4c|I5^WHRrjm`GMaJf&hq|0|_wamBWs`yVa6fQcEL^M>C^RsYb5yq5UCz z&|k!-K6H7eTz1Kl6*}+UaplDv0V0DWGC>ml|E_mYqjzm=5WxFB&;8u at 75-PwzkBfF z^Nrw-7*1K=+w9YEbZ38fN($MDFiUp~i;?K~QwlyqB+|1^g(rOtgcdKITWIIb%mtjy zw(|kqzAgrcT?%-+8r<{V)yr)nymED6zFo-gfV>}n{Bipz!12?YH`*Wl#iHkaFX-+kTg- at 6l<($Y$ve=u73)!8T(k&|dLnQGu{ zN}HaaZ6AK}QS1I>=;WVKut1;DRw at h$7B2J>9$_B&LvJa)fDsAvHd at OSO`5s&A!<^0 zAcV>TcSf>tl=^tAJb;bBA#lA2wJI{nmv$_yLqeNCe{(E0eUmTKhLJ8^m*X?8g!fu!#LMLlABbD$n zc1uncFOjiid5Bm|n_+^(Dg at xIeEVuQ``)o62wG?5^DhFhxxl&S%~77pb at Xd{wzAf4 ze(*s%8DOGeuxiz{07)ToV7Aj|E?_w40tEI)!C+v5)7em5JSEx+P at b$^O=Wp733-4~ z7>Jj}&(*>wYry0b;(G4odcwpZo(MUhr8k6{{p%kpcmGN(V2Xs$0;uZe2y1<`ObKyD zvk`_H`Mno!TNcu8-MQD+pYKFK>O*;|o}mB?y32p6yu0!~K++mLr-t3~yq*Pg^B(D8 zMfvfh7FdYDum^adnw#hODK-tOZ{NLJUP(V=IMz0WFPzhTBF4~A=<(It2&|oak3tIl zR^!!xsY70c at Q6hGQF)S4+5{($>3FQULC+uMsVO=E3 at 8J?Z(5XC6rf7H@<=l}BIt#j zh4<{6{k8^SDtW#DfV2l^SUtF z1%$}ca&5DC<ZdGIyT^W_g4weNbq+6!@dK`z%-yFWdMk`X6MFx z17zWiPT$Cm=Uf${XK>H at eQ3#kcS3O*Li6UCWT7`C?_E#cFBN37&Z3%&XQQo`LHh19 z1v+xJuI)JiIG at M=9oil&ol`s(8rLh<-_a0Y%c}|e1CYQdI&%$0VE6{O at eG=N^JpGK z?pjxWZ(n*9J?X4&rJ<6ei&L2H~oIPQX zbO(%g!l-26Y=E!*+7Er<{VMPY;p#p5I%hH+P#cWV9zJ@~b|ddEU%eK6E?O4;%=;K{ zyui*jZwo)Yt+TKXXoZ1ZJRf6FVUehyTyWuR295VCe4CjQX=_E}q8+ at oC1>~KW_IY9 zu|N+nBt$xfqMPMl!wvfZaVu-jI`fKmUIdKA7|j0cM4!CaH1R6*^lGo&`tDA9zV@^o zM(@84=;Qp+p6hh<+)(IBjvKGo(ca6pv$@uK1LjV|s2&LF<3+oAb|C=mOzFjQGn4HC zKow9dS9;G72@&Oxusp{cwvM#hCQtN?W0%}aSs4YG~WtyP2{K^ep$5erljeuTv#QaI5=WoQdSM^-Zv=kQR;a=8g zQo<;L6-L#AudnY!<$pbRvQ#c=0FV&Y5c7oGjKiI5;(9TUnE!k>ji*fU!En}n?(|Fn zN#p0HbD+GR`n9bE?DgdDn-K;lbC?gF1{h{ty}AF{%U9Z|k+HTJ(6$mK|JCj9+T{F1 zn>-UGoc-cu6!K+7v6`Oe5XS~bTi{{qvxW$i4{uy)m(GTOMkx5P_H=PM;Ab#eAXaDq z;EBGW0LtM4GQ37|lPFeJr*IE&IeB`n?zg!7tN=()*HP>5ejQNT*Dju&Z8KA&?Nvau za3vSH#9WEHePKXNrh_%wKp64z)vIC7!GPpf0f$i>NHGEj$RH>QKQ45hTNWop9pWfq zuVRv?a3Igo6Dw#S3Z%l<5t8y9x#?9;YTmsZOVL^>Dr5CbL~%di03Kt+t(;z%bUW7t z1ZiW{VhdqV-YO$TP(KzB{NBjRER43`%ZAZ55v_Ff%jtVKpADPAFvy`pf0k9fHVi0xhN zPTt0lin7jiO$?c?oUrjcFAq_^@=PN!O!OtwW+zgvfRTJ!o(B_Yrn2v<0M|mNibf_T zr)zr1Gv^%|JbNw%K=@Ika$p8v;qBH=hnGc2hXUs{tg%{0ov9Do0WjsE%d-JpDr*5d zKihZbYD^+!`I6T<`?iy_c^(5wUYVYPJYgFfTP54QV?Cn#QgU)Vd!yjPvsK|<&XCv0dl+H>wx{NC zieAdGQ7kw-8xXlizA}!-Mq_kj{|m52KJG at gZAaef%D{sRIex*5Vm}UFi(YzVuHP#(;Ex-e95MnE(Jl-H6LgQKqa1osuoUnHEEylXsej5btnu zpksSOz7$x>Gw?3rXGRYtog3tNJ84+}yuFcMtpFE% zvEep4IohTG);!ZxK)z7;%31(iu0h8Qk4?t-I<9FZo1wG!Z at k~;=gwA?;~>2G_(8yD z&T%mS@%Hz(!#}I#5xjQoTKn*mkK3o8e$p0#K~Qt|A77mNv%a9*RSflPC4wY32rxmc z6pnDH4{P>1H4_C9C9#}?ewK~lS>nkfWC$b8V6|j1Zj85vXF at 3Gau78T0sRtxF5qIU0Ioc%v*+g9H at 9w;yR<(H z#_J^CV<7uLu^AelH|D;FVT!37>R!8j?|u$NYn$-`Ar4;Y{p0)hqgZp#fMCTd@}aha z!i^}?6KrsJszBf4rR8>4SXN`nC==c&_aoemk*VCT2$<~BqwGvdX?1Wc~3L_U3HlAl|%ry+R(^e)x>GAZFWYkgTv^Gk_jA3IXISL;N9P0^;I% z+0!m-`{x{+6-U{ z4bPmOkD%$Ua2dr|LLYvKHBUgl$#Vj at OL=zSlE;o0f%cJ`$V;Kx%QMvU32WNyj2Z+a z(UTE@!iDdD{9)@0Xa$HnGK`4R5$AM(a{}9H12bVK6Bs5%OX63%vvB zygHOK1;4W^EZeD|ojY^7a(v`|YUN at 6=TrL=8q#)QHG)JAoITO+axli5Tuxr|=g*^H zj$E(fS-ElJdQ~(EOIXWzgq8$+3LBl-Zy at 3P`O6hzHrLhqJM21 zpY0XnM7x&#T$iVUtk9-JGkWq%e at amVqo07ZGG@Z}6uReUnB2dAHwMXxQgH6U(;_sg zH`vDdR;3TP7vPHi%FC2zr(^*h*0pME;O-!6;qkMV(a*IHcmXi+1!x$Jr*Bzo{sM=* zM-+Q!x`(2aygvu0MH3K69?7)@J_~#U5m~=yksnw0iu~hgV at M3-eMTZmIRO^sJ-Id> zX0Qw8@*bcWUPYcJfR87Wk*L}n5U|%gw7h1U8_z2z4oyVjM$v^=1F-F*LL6RMUUARZ zlf4JF at STvUNK)-vl$gB$dhCI4rsv>&W_+2pqxrr4biQ)Uoj>sJx~^f*z*_u>|MjGE z&Q)2Ta{=yn-~cHgvI8vpa*iAMyp}fF$tW5z=|n*r9Mu8Fz5}$r%Qe;#r*d*dZNfWx zATp>GEqMmTNS;UYe(5LVw4xt3K70N`yAawJ=9Wsrh>&LVI<%y!U#=zHMQ at 5;R1SL1 zOp1wdk`MDG42%}XVo)&0c$yv*V#+?Y~%^R`aC?c9eV#X2J++Z z)=Fe1z^AC at tsc33oo)d1ZbetJMzq4vL%3(d_gZ2-dGfGYTHX5Yc69ezTYdJVZLBV} z;emkc=;6uG(zzIc7v^T$)#%v|uU~6F4#4>Fr=PZSr%&fS-R+7TTJ_(wl)*Ds!H zr=w$UT)EUfdH+WHgP(lf{^dXW)Ar*JKW+cwPyTV6l`|WV{ZYW++35GFtW{CO_&{Gf zjJ}*69d2jmX4>9n4Dra;*U>8g+wSv?wz;~PzYn#`7tXfPfY0&p_;LRB+h6`|n~MQF zlI!$`KYGJUo^>-ac`Lx_FfxAcGK-1d*IgBJ#<78h9*vQUm+#fn6 zvl$Gx at 7`;- at 7%4;P$&mZ^AGXJ#2?dt$q at ey4C$UuXk=;{^tT2G`^vkG}OV zFg0aoh>+cnVq9?E36U#6?4Igwf7X+Q^p8&j1ip;GI|?C;S56&`S+4ys_+FUiAjGko zg}uy0y$`|jZn5OoA}pTA3g3tozMao?#|l0*tco!#8$#>Prb>`JI#5;B7f^Mw+~k$( z7iG%@&uYUg!V+AdJPIrhfJM)~YHApT&+SRvuLJ<(T(b$sZ7A=NOnD*?H6Fs$%Z&$0 zyMydh6@^TXjtX`}?l~HieqZ zFpcFJ#VMET+45T3$>Gl|oNo(JtQtcLbzP5D#T9K_TBrR*ti9k0@6oOoFz8cWKR=i%D@ zx$geKQTsaJZ|5ig`$S&=fJFJ at 2o!yY{$c`x^tj_Nac5B z9k*}YX(JKJ(gzgx7$c{>PV`)RlJ~s~(7B*JNtpCjj0IKBpMU;Y0p2^eZwJ(}zUKl& z^&^zy2rz009>o`>C$&N&@Q`hJU{<1}^zm948LjH@?vdX1Xz6h~Ju?^Dc-dCN2jAbh z)jqm at qn(dovlZpK79LS-pgJ#dDuR8W?d44N141ZFML|<}-l?32+{uZ_nKlvSxVXI1 znXMTsQYcy84kc#Ktx*#A^&8i!0+IJ*;oRBE(OV7x9Enk5eA9~;`)%>*a$8(n&K|4U z9gm^1ULa3SCs3;}tEg z&**#gyvhMcDi0DUugXCGaO8%94^_a~x16_1M#5G%Gh(sj*8VJ@@trWCNj^wZwi_xR^P_*s)b(7`!wnh$O7=34Z|D{qALKA zu{j(CNRi2n?aMWHqCmBturEBj+mTCrOHw<8ffdMTVMLL5Ky=89$++;$XXY2O=7I9i z2bpK(Q9 at Z4WrWXo$NGBvv&TF=(hPdbNKy&PP_)_Z&C~V^!?e*s7YSte)ACNX1 z1DVI;T`Mdgj^YLc8H%12uqv6x8=f_vIyD#|x)xyiDzaQ2dZ!ZtM}?@2Ja3VVx1n=; z^E^sf&N-#d<3^8}(<=0*P|5k2$Yg%2ygeNs%!CELFI~78`FT{+bUM$yQ{J8`V9TyE zM6`=~mFt)vFK?S+GB(r~5ZDtPycrPjqP^{off}H at o9FoQyYDNHPNxoezX$s!apW3D z0f+}LLSF$-4%ZKyWh6|^ymL6`gFbZ1-~p at xKMfC@)d`(mQV7mLy;#s1Wd$W(rEhh>G^7N z^WFEiN+yzbh+uaohQX1-vA1ny^JQC%eA~;>6kJGS4;=qkcJjI275X-OuaR zd*W2v+IZ2PJa|;|eCfN-Kl!X2JPZ#Jif3!jLZgxEi;wGfFG73!q5Utu`Mza)A{*qp zPUhLRDw at J6AU%a#nV%E(K41BaU4L()|5!85p$H54PrLgX*^cC9hb1If}7kRdm at M#$%L6BQ|aS=@98@=X>m9IS`gtq1qocMl)6k at 2Y# zET{Sgn|24RM&35oIcttZB+pB-BcLF at uBuqYuI}JZ0%%kL3gt?!lz*tYl5!cJo+_Zi zy}llWZ|qym=#0P(%eH4*>*awni*$1-3Ne82C`@wY($zK;qWO#8ebo*k&F3#(2;&Bg z_jd=p1_)*ok59a9YhifqcqQLE+xzWxcdV53rf0+STiKuCST{M7 z9C9>dSu|Y95{)OD2+8dSY>!q*9(ds4uqR%ucY?Pp%qXW*5t^RQv$DdUEj=wu zT|YyDSPmxTDYx=r&h>eeT_^viRT$IRKYsKeM{yJdd8WK}gebumYopy++Gra)ui8-* zg4aOkRK?bGzzrd~6QMp7 at IsI>3XFa`8JfNrC9)gZqfCXy^xE4ASg>!p_CIK$RkIsr)5V4CHe7jL_B1_djUnaX#PLi69n!c^l9+-V7=C`J-1a zE7xr+0(fd at yv2kG015p}_P6^HcpDLr6l(Wi_#)@_&wu`l0*|+squfH~ zOFr&Edzt6hJJe$>U?>7%K0G!TzIga_sRUYAz`Dr}Ls42M0(=8WqNIl^bRm?b8WQb& z at ZNg?gD=WUx*21j`g`WuK)zmJ=nuGgw)m(lX4WSD?cs`t26JilQ*c3UMJVClVi*{WHo!A zHMo{%((g_FqWgN!nHW=JdK89EUg!LtJbD^oxfy}n=}2Jiw-Bx8tzM2%sB&2WOW!GL zIdG?9h%i*}jO!XxXc7^l!q19&+&|(fd=@V566&SW876v)4*l1C)}970s_qmb)@<9p zpd)9FUwAy_`k=w-*|}N+FFe}x+`L@ZAGE#5zW&z-?aKN2fP{{Rc_hZ$sjNZo zQ&EGt7>mbm4s%v-OHWqUj_4z~$yJ>md1Nn(rz4xmF7nUZUa4J^IS;b7Cu?B+c8Lz< zS+`@L=~t)da61O_#&iAl^0(ZHygl^3(7jx0bNG8=0MkK6LrRC>anyV~wp-3A05`O8 z5PqE+)8Ko)cuJeAS8reCIxTX=G?iGndH>#yp1HiZ{W1D?+wf>7A6KLh at bmBffOnYN z&(eb!%5|OK6NQ=RdNZ_OB9z9`7osCa$2ucpnT4X6KsYDB%RJwdyw%Y1lLt?t6Q8#M zdCxg_0P}KW);9rvckkWHy8FslP`5ubJr at ig43M+sKzI~+&Y^&R24bx9uD*`m&7($s zo-Vp|O|5*KlNM?!lJNq*MvrnaU27-5SDpX<_3On?Y7fqxzu3P2_Ez>~xP5q|Ga-k; zasU4Pw!HqV^o at 3N?tAw1OkK14z45U>6B?3FbeJ6yHW4BdHY-atH2$-YX+}O76yjO2Fi)2lX5+WhG#VGCVC>LObCEq)6szQ`D7{eUp!Wys|V(;$~ zUF8(;8U at X?#U~GAp`2)^a{!2Fefe3emEB5q#nk5Ja(m{~!YKKCh>)j7=+;^^YIGoa z3iZcQ1^QG4D|+C?9E#H2+1|^hM0jT7%=A0iKhTz=R96FtPV_|qg-8es)-#K^KUQr| zfDTt{|4GT(BLN1}A)B7I5%9;GshXIJSPKf?N|vdHlq}DqJlA3N(fj6SXR8|dAOKmv zx3 at VUVILkqjH1iD3Nra}%H$8jF+w;(ANp41RC1jl{H%?FBdAn#5s2FnC|9pui&7hG zj{>;m0?4DGeqO{nlIt=!crt=XqPn~itu=<)Myy8fS1}D3+Q0E1<{NIr@{*e<7bp-S z!clWi$>5!YaA8k55EX(90gvUJgsa}=D+!g^P`{He$0NWp5dtRQFqA}N`4Q+(z7UU% zDsz43V^3i3lcd65SZZlS}_ z+UnYJ1as#e(hewG9!CO~SF8Z-P%PoldNnD}`c(7^fl8!gkzS4kC{b79G^HTv_H>j- zXEI1n2_WH4d8%g13L69T7h>^is{GxzUss>X6Wyn3(D-OTt;XCdJ6qwCmu+t9bXz!c zzACp?mY3UD_WsF}#r8A`t3Uf^zq$5bN03*3QudC32g(SL*WpP0Ay$>+flS7^aGTX=O?toFgOZN%RN at 0Mv-VF zPmx3emtw2$S-iGSMjEPU%;GAqSyFd*-k+_H72jR^54fp9?2T-yio|U8$*jY7VL)D^ zQ+XzyGR0R$MU}D(Eg7-rd>J2a at kl^d^?=O!Mna$cp>>{D$@+|VU-(evCa;xc^YF_L z^w0{Bc#-l5CGU3*a=v at p`Q3JuT8yCAhXGNi@;M&MgIxbq(E>TOm-p=lth|mw?g^Nq zd~#Y*C^?%tpH3)^7n5NiH&P16T6h+?<5|)dQr;XRUaqAxu)dvu?XD9lrG<9&(%JU& z0QAp4zR_-8I at e|=2HNb{K)ZJSbo>1MtL+?fS*D?ee*W_Q92l z?b6xP?P@^Or|(^Br*d910jYBXeeFyD%-I;hXGSL5?BHnigqs at 4?4~AxZe(U? zZaC+Ac6O$ni44nOwATR_I~&hi1Wg+X9_S7IY)7uGEH1SjQLM-`{bWaTZQ<`LSFg8= z7cbXD6yQ>n3h&EfWFYa@?{0S at MB1Uf&0d(zZg7ApJ6(|<8 at cDx$epLl(xGGLBDXIm~bAvV>d46_ouAMub zugK|}Su3Z{i at fifFTW13ebG+jvuH|j+s^a-7zfYW*w9$(3uu0L>p|NMAROrp2#?M( z#p@`%@-Rj<(E8qcH{1F7`5Ik!w!ru67#R}*kmE6=hJ#JsM85IJnzYo_=FUu4np~$v zQtlb~&r>aD5Y2z^@u%U*!2+0^BY*!N{7K$FUh)L!|M^dTS`H)6I2&VT@!^wZ-nR6_d5GOVKY#Ym06uv$s#>ex4yz;oDIOram1t8g zIrlJBR{%>CW;Ulc%%JBU;347OBm-4`hEikt^;oWlQ6iX&yHvPB_=g*RHddaBz3sgy zh*301(E at F|^6NS3Zn(Ey5Xt5q_qCn50k^Z3MC8UR5x1H7bWFztaliFiH)v zZNyqZ3_?W9s~ZuthwUJL6UrFRrtU=$Nc at xtFFyyDySuh5Hc1t8PlPaGCofA=OyO4r z8p}&6kH^|>xO!=6HA3=T2qa1`3^y}nfVO;?7X^xV0V&8%PRzcJo*`~60(L_zxoh at Q z@@)7lOv3_fmJq0$G;JE6e%L^Vg{~q>uDD6t3Nh at EI9FTmcnPa6&J_ zdlxTVt~ttbZ7yD1hy{P5CMryYP~W_g4*wsA)ekIyRa0yb28+wMW@|72%gIUZ~!5W5WY&e7L`q4scLyjlxL4lJJnq zM84wf0G6 at Q{4Mk~I5HTpyOp!bwPUrZh?AEnPstuA(0CLJePdk(b5|wJPX_o;N1qw=;?s*pP>b#~6_E zm4!9&7a-xiP*@o#p;f&|Rbc|F>sbr%FOgmzsrTa_wCOC+Bso`MH~>G_#B-pwJq9*~ zrR%>KM4eYQy&L65 at l zz`Myfen-wga}?3UEpJHv=|yYf6*h0(!pnC|-!{ z5sK>zO%0t2O+R06U7 at Qtd0tI@Pv$%aPj$EP0NjZH=+n_t?_a;%KD>6deQ at JS`zQb4 zkJ`WeSO0zcXaD3++I!b8w4Vmx-MDhTef<8-_W36tcD_D*zkU2(K;Px_0ceBm^1 at u3 ziHz!vf!-heaC&06U7DY1=jUcxUkuTgk at L@>^f7^!?~w4;#5ivvJDs+q<1xb#?PFyBglp>2S~32!bf zg@!o`PE_IGdd_n(Yh2F#q~6 at UcfV3|mYyz^{DUP#IQAkV4r1hg^WE)s|G}fmeMcXP zS>|FiT)uRveH8lm{IgHm`Gtj|r`A$L(w zdwQl_x^%v<0vhF5IKL3Sj@;ba?R5CK_wZp;VEORLlbSCq-D2_S)11%KqJM^%?k8i> z^JKxxfMq(KzT!azmU+7s>DH|L7)bOjT$lfA-5-pP{~3mrzrriU@>Ge70SP>w7?V6O zuorO0H4GxMbgD^i7+m;?^#zPk;5Jw zTGng!pY|^VKDV~~0AVa)F+~)BBf$qSSHsN^!g at f)`1nwJ|E8q*b3x}(oPclyqN>;P z0W%bk{RL8lBqVRE+#K+X;UYbmC>r61%E!t25z%(eXE6ZP2(0txE*60S9RP{^mBpo4 z26?Ux$*rnl1K3 at kr;CC$U$YcTt_Sq-c(HUf72b^U92*5LHw%K0Q~)20~+5 z+h11Q+ZazBK%VCboqurSMuFeA`MeyglV~IRFRuh}0X_~xn-n~6hWW(k3}6G~dM{<_mMRK2cd`l zgi&}CdV3;EqNr*fX82fxYX4TiV0}gxu5GMVQ(Axqts3DNBC9CF##X>k@Q{`yCjt~t^_t1b zD}S6XA-&yz%7cI+laEFtDP!2^XBj%~^8S;j>bp>!e9%}b(HWy{d~!O^5MIjO;%^#X zL at 7Up_hV256aeDRfoxWp|Mm at 8soEPr&-JpO+KwoYQ2oy!XQ-5slJ|F<18>R;%yZIr zs;dnRi$3x4zbskgS%vAO?#OS{j;QNIJ~J5b(G%mRueF)E at yPbm)h6V$%KXr}NX+cy zXq%fFZ)1af0Z&uy=GBYs>V>oIdKC5L^Jm(nb7$Js$mx%6Ty3AcccuODXCJhme|)|D z=;qb-(+{q-pMUaR`~2qR_Sv8A{fEMvCnLy#$u0mYvhX0l<^(|eI%gccaW;VR%=kz<4hUTiC{R40qWbLF zxpp=87#iveuRSk7+?g5N6F at Ll#Sn~D`^xxy^7v_c`s86`ZD;DmaCrB__dYI=pi#TV z?!lY+cYsi2SV*S!pQo2 at sBj`Bm$h?hkOPV#nV|CaE?&x>W$)%@CnCq?g%5|$gw8t+ z+MfrA35UN}dmcHvTT`u;8OPDlqEkQ at 8N!&KAy;z`^McK>9~>QMBNLG|GgC1VC(77g zn4c>kzrMN at y|o!RB1idA&i<&{r#y-7a>Z-WA at 6_ien9JN8=e?%-7!87j*r@@d>@J) z-U?uSw)w1zBA;!nl!yLx at W{i(C)LT~L_ohDtgDfK3{J+^P{7{BOIO>4i%(7S at p zPSNMdO1pZIzbm99 at 14i#0PwHB_$qs=nD0zm%>A at FTMZ^Lg~%*sP6_-Z1Wvy!2mE%Q zJ$d5KfHK{;I{=W&b|^xklmEx+7RzTbS5;Mn_eiX4-(Tl*dP}h`g(ZMLH<3 at lQsh~Y zJHz{zXAWZ?RhtB%M5WOLy6}d<`-B&U at 08+ajMFb`>0WPlcHRR31Ei z7QrFxNI;mi+R5WEPKp`?dU&B!QUQP3l<=(V2gFfS2N4>hQQ(BYnbx6_ zOkzB1LvnJ3-|{(tOyws<%R>WT9lh=lj{RgYXv1O@&)KsVO2KN545*(yccIqY0o+Tq zA1Z at Ylkv=2JH<(1RcI{dR!}@jn9%@?a%HmsJIa*Mun#=Vu~Kp-iZpoqcsGO%<^ytg zT`P$`duAv&gv;|sfM}fjHqz<-!^ff9$+i^$1q^r(fVcb7IHJ9*uRmZ*%as!mhI;fx zaRUxf5(L>$XzKd4YZY4MiKKWGqVRO_o>b0FfUh2zetsAFZP5_uNN8XvF%C9(5x z$tALfa;DClIa{EEm!0w(9v&<2sqtqj4wtg0a=duK?c0ekyZjEq#vZmPU*`l&37hFT z#Va%zLxZKdyZ5q;0c-JK3RrkR7!or%tFT1y8gEnhFZ*vD6fO^rkm{7=_}r#IN1odq zd1 at +;DKyOc!-!$Lojn`y86G6;@u(1*X+Z$n_Dhol?Axm{IvzcWP(%su7f}d3KNRxVN7t}sq0YJ%MVa%a=*Ob0g(^MEKzN5? zg~#)O at Xu(0CbZ>q433Gh$pX{Q6?tS2w8L>`DlVN*(P*9 at osbV`7w{!Z>XpxyC$he} z>zeiN$T9m^ASLweI23>Ip!(T!R54QIB4g0A)jsBT)j}(0mR|-EQTx6gqlSS@ z2FNqalhl5|aanw>m9^)qIwJJRXY-u-%Dov*au5snXFb+<6wp<47KP{UrVnFoJsS{Dqn{D^SdYc>_Y_qxN$p8dF at 0p3w@|L}S z?Q;9{gZJ8v%NN>5G0JBHnr0_Q+H?Sn at 8?d>vHWlD87y#Fk^VD~4F4q_h zh~M4XXnO%6deR+7ckD$T?dRuL0b9 at 4m)qm}ciKvnK8MCZ$&aI&_i9e;PK=gKsR((- z!_E>%efq+eF<{5XrmBin at s2_v<2OaKbRZYboJbVy?b+J8qc&~l?&6n-3{_?-HufO>!`u=HX^JVdXdA($!mQk~_^R1f^ z5hF?;)YDlj9SR6VndB_DqMrw1{0^7iJ=uGro#^Y(9RM~lHqs`dgQl|g+X4M60kiZ2 z#|<5V4 at 4IjhjRgm3Yzp`eH!_?yt>>LR~Flor2y&WrS>?0Seg;su^W)s?XDhPofj23$%(f!XkQA%E28Q9dGwSr}T)lvwQdMl}_Nz#s_$H zC4f~s8GQnQbEzncj~7ed4 at Z6}-T+?Z>eKh^dqthv?|l3H_w7mcS|o4i)KFDxE4Dhl zaJFp*OG#7v_SUURF%lkD1EE(g4ZRpc at nLjN_m9t=`7;)7UjzezDlEgTFMq|&2y31M zOiMXX at aFIigcu1p$*6Kn2t(F+d3!=sT)ia}BHSo^sFMHz=71CelCT6`Dx?`O!ShuW zbP;ssKzhIT06a?KjWAQK3vkNak!NRPeV!MLKqsgwd>O{z z4LL3)9 at IQH+dlu~gL2ou2*`N$G)$TG6xhtY5tz0k@}3kF0DmfE{hin6M3mIli~TT! zJeiKg?!goVxHn*}3de{wLex|OUZYOq(4Gos0#qw2OVu`H>DkjTtX!*rfUH;BkfneF zb0K*Eg at IYmLTW&rAoh3&n at 4Lmdn377UoAiL_(%}fi%wY0$Sol_AdPspCf*YHH@&BZ zW0B==vG|9E#`4TYwCxm=0&2WsEJdIXpqihbZX?6G=O2`i*o&29HYEXWIt$<^m!|Tx zLN$Pd{q*lFzrs at 0*fxJB{CF}cT$b#`%NN72qgCKj%~nH;ye$C7QkdKR*n3vw>zw=U z!RxlPyjI>%4MqXgw{KsSkz!^grlE9spyV?0zVQk$IMDf0=<3d$yLrwi>g=!Csq+1{ zLMvWE6 at IVjCZoanEA*J($&GS;ol$WCD?CE^yHK-`2s)O7(bd(-&D8u_ZU;a at kxplQ zTTu+)#r#<_b31(HntS`arV-42*~bVwpoE9KH+xo1r^CpKvv_ZLc7Q+h0Fd;?N*#=# zACCaJ_5F9{4bw?qGj2`4>jiAYiXRCL@&=)G-a1AaAtu~XGdOc*Qa9#i=BgSSaN{-X zX`^&*1Mt$eZ*AQKY6m+ws(YEr8)HF zyIxu7Y^?6hJ1kv+BuCeTH;?0S6t8N}_us!+0$%P_hn~zdl>^gT(@d&OLe?-8;p!QA z(4+zA>qwwgUTJ9~8YvU2%QwhlDr*V;~RBMsHRwCPRhy zlvjFfZKE2kGY-%Q!-O&JT!1k0kXMWn#6Q`d0+T?YwRc6Phltuvz_HO=JeNnge}9aJ z?tJ#y`fBBB%gI9fo%}=Ip720u at i?F1)xqT|tfjeZXf~_rR9Z{cvlpPSEv-Tx*USC3 zzjIJIN-rbRwLsb4T#eG(Y9|9=7}}ew8*O7HU}$e6dlX|ipkaLIRGZEj_h%pbv!Oh6 zp9Q4-!$15SP zgUjdJ*#NhTF?v3|ajjaIyo`Ju%-LMObfGPTAEk}xR&XlzWMB8&iu`ovyc97WY;Ogi zt+%bUDD7tf4bc}*9zJZFk(X!%9jSy?$*eb}%4VQkM+m7j{%w?{NluJ#0NLm_z;8dF z=Ty-vTe3%N&%uddmO&}7FL1(2jb$rF_?x)+{( z8G6!(b^j;^V(94d)$1j%c(N40Y3EbDcu&M&55T;U{WoahOx8aeeWM^_EMMlmA0KzO zM@#E%dGlp8$!ECHjr!+4Uk at mHzS)MuALq^n)a2P2cw^DOr?WR>(;`7bRa7WC)DylI zbp-k}rN*lAS|4kc96IIIufmSphePGjblOA>{kQFmx_Yr50Y_+`ii$Eh=cs8D|{~Oq~TpCMWXTX55Q_ zICq8+u&0he4_mrwc0$hJ+33(U5G9ouGTYGE?=%5e)w1A z_+$i16fWzX2W%t<1oQ!HibUifv63}qrdZ4d77i6+i7YBXskH{n98t2k9md)73l%!# zgAhUmEZ at 6+qX5DeUwl#C4LxekES#%+B#oVco52wH>s*_sY&-(rHO;r%VG#v*PDF{1 zPffR1QLc;6)+(;A^@e$O8nhZ~Bpk>>;@$?(DAcp(FV^z_c0c*i=WQ~8MkVjkz5B7a zw%eIlAB68x6vTJ;?zGu#C;Im>Qy#X-k72C`BnSf zSGU7x22l&MML}fUqk~bPu|~&+J2QcgUhlQ1`UF~Bf=P1nXqa;I#YXiIv+m;%Ft at TwVD4>W%g$cB6yfu# z`VQ(WFXsw)ljrCh^^kk`=zc!4RsWWgCui%*mCK=#k#_g)y;zr5D?yd#MmrOpSMF-- z*FHlProL&e>kNDeO#n39`X)wv6k(3e9z3{LXVrJAyBb+eMObT at uyA&+e!se=O-o1V zNHdt2nrm;m2HF?j+{$^+)tWmMf(K<83L!sz`lRxucu$vdHmZ1eDuAN%p at qNxtG_F{ zvq!v&un00SIrtU^IYTl$RcW;hWGzd1NBAROtbf&O&9jbCpAPzIr{LDi5ZRoY#xZ zPGvO1?4yrAD8T&a at x82bq{$B at +*<_rsXnb-9uKjKq&j~@6|>k0@?F>R{Z0VNr#G*oGPBt{m))v9B9NsqC`!UNuE%@L!k5ETR+xv4fdRk))I#pM0LZQ5 zZL#K(r at 1#d$w$_B+e5TS{^m`>na*&EDT2$ zl1bJ(tf_eRTdIKdzKNmsHsA^<#=m+>@=RL;1!)aNhXVBXBWs-BSag$IE6+`SybOOT z$WXK;%3_~9rx3Ao3Q(X^R39u>A76vIL2IblfB3}l3P6as)-qDp2 at yBPv_xfPv0Ejv8+4tm#pmQ zsu*UW8~JXE7tpk at Hv?>RSVeZnnC*akRr)bzLYtG3LFVIbzSwDt%fhKIB6|xF1yRW~mNR|ClVXRFYkMFrN zr`wenM)=FVFrIJSjcgCykcZmRJ>S at jRy>L>MNb|2Q}ksI?X!K|T-&Vm>U>~MupW<$ zF2)l_)%4_eblBPG-d6#?&$14DkZYYhRgJW7-FeV}5uLvrU8l#NUWBT^--{9QB1SCwLW9yLHdfcm`GR&IKYE(= z&bJ@`?5E+yTfqUhqQAxp$1wIsN9DR|1bwyL|LRtI9i#Q?wHxhDbl&{UYwfRo_3Mhb zjpVum$31O0{6SVe5B)4YkKq*=)Ah%b1II!o(-GL(gH)fmFwA-^F}Ws$km3&W`2avj z*26h46-9HA1@*L z7UmnPmJ2*nH{W|dfVs6>_a3yKfzg1)z4Brxr{4`I)6jB$Hh^PeIro3vKL63jZROc& z5sW>vuR`P8z|*G}+LH(>)x~~C=?c+!E(%xZ`NhkvHq>*f`WF(cRh1Ut%+unWoW-jM zn_W3O&NB=R1QQgK)B1DuwVjvSAv_8EMq%|tHy&p{yV~qrtl}}D{0PvH-AvXE==`-^Ms(2<{*V+g{iRWI{!t3j7SaHIOJc0yAd66Tu z#)cJ=Xlrp$z;k?Jw0-l{mvx=fXU-MP*c)KWS4|6uaK888VTBbbOM6;_!XxB-4m}W> ztU&XTUu5lCAYf2oP6CI()mZt#IXh&VyCW*z6nVivbys6uLI}o+2F` z7^=M`ki7s=;aKazCk5ED>;h_eF6|$jEd|aa&eNw|hR}XTsRh*L9P*apch~iPFZ z00#YR{l0r13bqP|LZ8-1Hh%y8cab&wQJV4zjTaPM5r*yLZL|EX-~Iu)5o7gYAe`#A z_N;YJM}p4py%hIlduk8PpN*lP=MwpFUq+_9ML>?cor`SF@(Xayot`Z|$|q~xCYZ=i z#3w#ykL>5WNRfTq%^m?8!rS)Io|0?&!2&p6{PuTs4lBz`b!OMETrIwGR-ScgY%<_! zul>be{$*tLUb}krDra~Zv9F^)$YU*7wC|~N&z at 7X(g5%(`l2V?3*CAFT7XX8Qojd? zTnqhs7R7STgkgKKyT5<|fW~oA;5q~c955_hb2M_<^SZxhV|@7Hq|ic#F@{E6Q(sa* zRXZMiJj>Y3bE7?<*Ioo|fZX<2({_S|td<5K?`&yhBSuERP-Gu3zP_q&UvnNDwCCG8 zaBQ`=*^iRlZ~80OkE4a$RiV1K|1!W2Z8(bns_;Kr(tKFkB7O15iu?B-$3Wg{^K%OY z$ZOto at PPbyZA?s5a!zuv?TM(snT7M=*Ntj;OkZs7ZbXOow~=6qsql_=ZSq&~_SEEb zQ|@PhEqt-Sm&}GIYN)vM{-#% zx6rC+ovtQitA2w*u3Ist(a2tm)1B~c<>3cd;&1Ejblwn=>`YaXN6b()edBrz&l7oG zjkRGZhJf+1^a-PzClm(KDM0k|-~GFP*D=O|J)9{%-+b3JlfHQM zT00e^{y+cnZ`#t at di(72kK2RqzG)v^z1;TJUIbVkm8{&3t{#sZeHwhkQ8Ae{PxS|X z_xl z$&7?|cB+71C$tbNIB1tJBBX at iIw8?0`&hiM^RvyF9+#Lp)^1!r7iL&%Uj^ar=Q_th z-p?bbUU&6mv3qrYDBHES@<6A$kE at 4GcdP`0zb6WAcJ54W8)ne&zx&xCd#OJR(~DCCImYTPN0iHG3L!A_f-8f|lvqamP| zA)5Yn{rc6i0AJ+*304a1`HSrUzttkV*SvoLMEVjP9(3~RhKEOMk2^|ASN75JM6u*l zk*b0wNC*&&ECU_G5GEwHmOU?HEzg}kTcFKe03!AV^Rk!;b{`I|bE<$ne|f&gM+#7Tz1%*i>zb|m_kaGA7$XDi;iJdxVctI&A^awS)lA at 5 zNBac^o-M7H5YtWaVu0~sX!GHdrTlHY!bEE;OSx)iGK*XmVV$>GmB!4 at p;HC99WWe= zI6uoP6Sfjou|5Srloo at C_tEdF4Mq$wz*QlTl#KlYjf{EOLIXKlg7zTRk3D0cQFy at 3 z>nIR(c`6`I-k0|)%rdu`cUIbiJ at I+hp^*IBz5|`U^F-L|PLtQ20)u%|?H})wYx=vF z0xxI6Q)2JU61V^M*ykBpo at p+!L*WB3Xs^gLXDE3aeFEEPp{^PJwI-fD at 8Q+ZlS_Jr z=fgwqybrGB+<}@>+>vAW#pjF1@?JoYN9G{BC6C87 at Bo=dj=g)odpUCxb>!udtDcR) zv=ln91)Pa_TX`0Puj-XwwM*xw%0s5Pvk4(00?tDb9)nJ+5mm3Ha3g1>w}?boAG+Yo zv<|tHo~8O92C#H;kzcmy at R!sTU{o6v{XKcMIRU=;>Z^9?(uD$F_|pFKlso5*$VTZU zj8ylksVBJ)J_ee!wL*V9gS=^qI_k`GE%&lsfO2wTt_&=pXZh3Fo8j3pvNAk#b~O$9@#Pa|Lh}QbC%c1Na7w zIVZZ(bC4Yc{-Woco!^PNShwH%LR*#lnHTSv{YESH=N(YNOK1RSmQrN at IZW)Cuh-Fg z0PEZQUg%V6O3aLEiE=OU!vr4bJ4XRy&K;l|47ly>AI|+wwRX_c`lFi;U+uQXkM4(W zSDOaI(=+4Q- at W$ZAOE=Y3?OFo-gEjs`-TnyC;%9x1)|n^rIi5vRd^HB&--{fda{h= z7)4K(Rw_49!BKAvkPkk)+WH5S8TD4Dje%ag6Z+y)$H-Oiljful(DKg zS6={ro^Nz=DnNd+^8D`JyHj#T{{F$;uFmd%B?WG?)Vbrjfukmi%*q6hsUBsP5fZ$v8WI_ zf`8|dC$uCU9|Zs*)WK6HYe4g*d5wtQRQ&w$v-P&}B8Qsm4USD$*YnpQEZ6c7`|h6u z9thf&EUXoXd?ZY&p(~~nW*v{x9nWU~z}08V%_y|}Ftf37tYE~zQp8w2xt4shp`QL& zAfs(NKv9U1vU#-hq#Z|49-j=T3rO__pf1%y1$ zeY at Jo_)L2nYrm6MwAZlb$Y4NAES28g5Nns|Cqvbgk`e+GDRCBo at oNZ9rFWWk9w>bQW&_bJ`ipSCkU*S?rY=6G~=F8CR>t;sf z>e6Dnas9o3(9sBt#nwMIQ>_G^gg(*WYyittgt7Ir88Pbm=8NhhB?N~iBs0&Si$V+y zQQn8KnB9|bpUZQ4-o?$=&7 z2m>SBOfvzb0$8 at z+UFmB*haffwlAYVcS5rR0jz2_&&*A=moXZwb?M1!K=N+2oj`ZP z5scs6zL&ijX*aK4X?JzQUpLyZtHQA(qm#LQgxf~P3TEKQll83DgN_LGsR%h%E}=#N zySAJz3J^$P-M{z#jS^({A_(!mXEvhH9-vF!P}icc3+&`Q&YVZkx#KOM-JXn1j+X-S zZ(dg5%=5hy(tcO7uyf|tf)?I^E8aTe+%$EjWC1Tg!#&WXb7v$vKcQ2`6&maSI}K_( zX(m9Ss%(ENU__z(@b%7fWBq8*I)PPurPb1Ql%4$P;~(+|t{(vHHAs-Jvrc+tQ}qRq{6pks!(ab3Kr&Tuuxv@{h;U&XSsqwna4PF{HjxEpQi z9KFa at Yj29_^)wj=aw-Df^m3 z&dYny_fdXX^cS7bp&gagbZo8@`pf?U8s4;(&6PGeJKjb at D1oHe<4$)AeHC>Js8o~e zB at Y?dOFo)ep&YnHp&RAmz{y;!{csJlg zZ$Od1=i7%>4ZM at R+40QT2Llo8ooA$@CvskBc5-U2_O|3f^qImw>1J!8`zKEy6}|c@ ze$82sDd^DNa_DqrFYJpdaCBW0b at DQgzH*YouO=%kMfY+B_>3r!v+s^R%!9{1jeLj& zCg)bj-Wv9@{)PGZGCo|FVK6Z at S@&jG0DzilbKJ-WU*1}6>n}H3|Hxq7M>zby|7ZWa z{lEVo|F5dVpPrd(+mWev!jG?lPY&}u^wm#q-fVATAnk2FZ`ZG1Zzd@{UU}B`VpuJO z_jKH-bTOfK-}BnZc^u{Qqf=w8>+jD`l;|ly6mat8Z-3wVdrr0wuH7glY?FEa7S~qt zwbt=+#9ASy`%Kz)iXS<_#M at J%rx_+1- zknd)N%LHF%%}W-M1u9) z{J9eF7=KT6L46n zE=;5lLVv$f8aWI1!~BHzI|b+q0}{CU9#Q&Q6c{qDDC5S>YwgVJOw)w+Tnv+2x4x_O zsm1~TA3k|picsGsMub>`RSg>&bN0Tx#_+Wy<#7%T at l!zZsHzV at _a#XM&*Lc^T%*-rEm9`;2R$g-D(P z7oOM8jD=gbzpH1*mEVGk93b;5wE6Ab`{kMc7$#UIiil2eDeqgN6q~Lxe7V zvERJJWC&{FEdgPq=h)>Cvz{^t6MU3d%M$y)^(yj`jq*H_otboNZK69BjUVynQE z=bD`|>w3DqjPd~f?Van(Pby<3=PZ8_Z=!XdLF3Nd+TDxn`}X#onvx*oYUG}xoUPCW zui)j2m+Bl!Zf75yKgYpxz?dpk^u|Nzoa{GVA+!9O<3ZxPv%rtm=sQ5i`!BT4qy5*v z{B0>#d6l|V$YGOaz^GVSd=k00P(V*Em|^-n#S4)Wp2yg=yWttnOCETB@(e$e;T)Q& z-fr1Hf2*+W>rQnudG9^Epn$H348_hE6y^iqRIQ>*k%ekIw6{}vz`Tt1Lsh$3vEi7K zZ;Wu)MsGsZ)*)xkeYDd;8)R~wb6ZZx`KLA6~iK at 815tbhopYj)L!j(6C+Qzx8#$shP}Ex*V!9R+A9UEJMy(Yga{hGY1=cllzwm~+&Cno+^&;e4Dc+Fg$Bd=P+SU2-$^ zi>@LeEyfl$Smu*l2kcC>~j=max?joK8p at 617e z8TuJ6P`vtNvC<+)6tvSn)L(s- at euhWA8$HFPGl`(9CWFXbx_2iQVu;=vhk~AMY$&t64$;2a+if3y_+eG$ykQ;0 zDwZ=RxAEe_x$?+$pL`o7_^{1R%(M@#-)!s8mdd+#^Tw5S_x_!- at OuK_w)T%|+>Mg% z&{`B?5OvnChhfeA&Heyx)(QA*<-i_3UTPyzzJyL4e3)V|8{e7uaoA?3N89|F>B^Bf z6#?LImYy0}B`@n at 4t%ri20-!tAwD4!*XOw*un8{2hya0J<^RV0l%R+pd{;dxY`{9B z2npHe5kLpImSp3jJ-L#4J_dA$F=8GDm>f3KD4Z_-s z9SMN3MwYDi+E?Cdf>=uzjOMzkVgV+A5#~0DkmA=ujBzpgp?xv>kSto%#i1{h5{VsaObm>84H~v6B1hs?aE_fu-H$%!q9;I at OgWv zf$h!ru13K;4~=%J_<@yIIY<2=^T;KGDsQV#JD=`K4PXRpsH6%6L`A zBWOpXFyGO*YIM&bWXc=jz1D=z$xWd$FG`Z(rY(ztB{XAwlo*9TnY?Q!BP`pKvqDci zWxR5pSH6`L3ilv-(H!MN;Pcw!F}asgVtD3ks6rC=vHvGe4Yc3ix?eL<$rk77ywHPZ zAjn2&E`DO%F|Nf8?{#fA$a1XTWOZbAI7` zor~8yIqQ19*YENyp1sBpW^L9;)>vQH3E-=>8`rNy at AX#2wb6Wdlt;cAC@(Fyo7b+l zi{~$d$6mEZ4;S0rhuN#AtI_E(PV-Dx- at 8`DJx^j-cXz#MKmXZJ+SwR(_G>9XW+Q-7 zLwk+zPn^&XbtE!TB`@Q}NWYwWXo=S!*m6$KBF7nsbJ5cP`6xLO9$`m4jI4V4_(?!c z4C$PWHYx|Nk1KWO1>F;b_B{M4Y8NRGevHfrfnPW`*DlP at w$oE%?L_{jp5Wf?2kpwG z%M}H%C%mgXlN?nX8d`X*#5i@VX8b*-6 zm7>kpK(IszB8U8@^#r?Y>}|KlG2Eul%#@+~C1Q1eoV*g=N|%TknYuzwiqE`K31ySk49s5$};(MEr_p%D6ZfRhSY;fkrr z(W>U$-F;Cp@`ErAiv=3R=m>rw50A*rgJq>DNoPU0cM0x2rQU<3I3GT|TR`kM48r0V z%==UjjYeVUq2!P$j_xQRQxNVyd{DWK=b+_$W-yjHS8;z&e|s;C!UL#Z)0Io-+wFU| zOL>k>pKjZ)j@!z5goH3kPgj6X5Olzh{3TYDyaC{h<+t)f4jLdOpHEUd;T=k=unTW# zmegivCfZaLSRBS`ex7IUOoN!3o^6+}T&w(|2Vua&Shn&I^?F0(4w$EfaN=E&NZLn0 zWW16?g2#%9su2*5eHvxgK0_>ly8T`LiR_p7W zx%;RB7g{+pJD1;w(L-1~5LeEhEg-n^LvE!;!0S;`-2I-LLZNUGXE9sWR4qGGAF(@4(aet>X5bpFlK7J^c-xF3M@;q{AcHAABPN&x$tbxHUI z7BR6_F3wnf*g^IZzwkr at K0@vUxQbKX{mz%O5FU~=tjh6e6ct4PxZ9W2SlK?a{qmrM zr?7Kxfb+lj{O5Jve|7(E>&`xoL>bR7%(ji)tu_(5TY0eD9!6Py97E;8&rjfZb at w}Rp+jrHFj0T%ww%J)Z{#Isms5B6S at vG(C|u z=>f{SsTZHnAR~t-hO&3|ihP92E5A3-3ur0201han^D$sW8sy9tkLTsyXn;JEc zF}^$>UOg at vC1=x_-%DOH3|vEw9dM^|-X7wIJ9qBYTJff9esJ@> zlHZJfxxzg8Ji_|1{qmQ8+kO^0q-c0>v!qCqPO;I`Crgz}Z5qPl%w+M1^Fk}Ujyz at B zC6OsU?{6dHV^y`Q8kB))8pYwu{qXGBk~s`Sd(|n}>Z_2LQHXQdALsTc#*~oc_~b+Kb%N-iE at rC;F>-KA?<|2~1lPFzxIP1N`hw(NymLDn?ZlP at M&u@?{_Gjqm8# zxdHyd!qx9B&w>^iIepn{9@}^65~WM!+U9zU4EORmKWlH|JCN%+(f?TXT>nCzOHrx* z$cX|ShdlO1y6zRIMX$B50fY?Ao&7hZ)2Blp?|t-sI}_bpDL6}u1$aFtFpiedCpj*P z&>PS;lsy?6orp06L_{8DeM>8=?atkY0n-~52|`C`Q1sy3LT7fnXh~iOP3x+m?CiIx=Te;HA|k*n=^9 at F*w)T^PSyX z^G#LWlSycjm-_$tzy80gn}!s+JNNEYy^DISv-diR;V_U}&qRL+ z_ipaz{G%&W=+e<6V-qEl2J$?Iy9ebU0-nhWd8G`3hXK(%pq?A>^C((?*?S&J#i4Wv znlS?(eZ7+#Ca0m{u77#s#xX!(tV%>iJvc;sDuj%Yd_a at kQWjYR1*osun>;`fc$h>& zxny1;<`X>~)XVLD9OfDw3}VgA32NcV(Xsxv^;|B-VdX at vt!!4s at ulKzji`mt=ZY|7@&ey~89T>(i$)kgHZA zr~531sU-9sb8qKx0YT4$DS21yzXAqA-JmIzbJLUKRl%%>laLxg5l$?|6Vew>vmbhZ zt%l)$@yQ3RFYghmdKJrQI{@NwtR-MKo11-?gE$o7+Q~&Jt09-

WUP(8oZ|LGPl@ z5c!_AxYTKGjCOz<0*hcIlu&)Lqj-OwtlPrt1`%n?OLNWJOmq!mn# z4Yu8#=fwd(0Df_x{5IB at B+e?2Bm>rj3+vCTMdm1(@<>&FG%j#JYH-%ljGu zfKG+NKK$_g7&UqK+K)N@^C430GG)`rXx)_9yRsQuq5`fAzO*U~;UDg)Rug zXU~`0&B?jp3?9biMpF zXVo7%oT|pRbDm$&2f1Sd8L3GFY(&)MvV5y6^`r at L75tDm#$olydUoDQ2B6uU5- zGsge+mF~0GK8wGd>*SPtLJ=Ea{J4OyF^2ExpS*Exw4vhP+U2kTe|Y)fgQub8t{99L zqL<&4EPnFjK^4bv?Kbz58z3{CwrzJE37jzI$ofWaj=!MrPECyai-4p;3&pI znZ?uwDatBOvSA`^Cki;g2VIKTp&s>qI>gSYGndLhT0 z%R2yQf4YN4MO(W5XnOKk2uUT{t0;>~G|lG9*<yf*nfsyZRto&XSoxwrFR zhuH*HG39Y0r{e|$sW5TwU#@t)aVV4i{+x5A-_&02M{UymgjIZcYk^WDR?zVoULj7E@!@p*Cf0~#)0 zTxdrDTf(cDg6A at LyS!n_ at p&-yJaiD%D=a{WaOjB at GdnxeW~113pr?NxJa|~GBjhk5 z5DN4~h@%U*{K0yp2)uYS&2{D3(SNKIY|c+k7?9=jqhUM*M8K8jAxy at D<=J&G9|_~j zn;XkoDgidl!YeMzneL!C@^6I|MpTuVCo1^KtKYv7>tthyq$?0oy2+q{=4tKYd`<_ zPisHFzx{n=OsCu*Lw7}KF%$sEo}i$``^)WL{n5{>-_`%;H-A at _;mJIMkjvet52|n9 z)KC;#K$Sk0!qm5)F0~ii`{l9d2s4$VBkh;J`)xZD{vH`IB}V1r$pX~d+27gF!PZ*G z1Mh4q_e|ayWs-d~j~j0gw5(d7!3ZN#&T(#c$T0%Ct3ph|-w(5Ao at FY=jmkJ4eO^}u zB$b~{*ha$R|U)?7wy&J<6$uD)Y>li>~5n~GvlkxH?U z8S at MJSU&x)p~o|GojJD*64xUSZr{CA{O?OBzS14CN1Ksh40xmaT;JcVM at 4G^_!t43 zTQ4J{fZ|R%hBZH3eD+ at rf6)Wp9v%;)Bmu7PzyH4Y|I($)b*9>U{W3<%r=NY?e)f|e zx8MBs*X7~4cI`?PSLkja|88AwbCj)IP?MreOOS^;JT=@FE}YB#PQ`dIZAYlTr}lss z*}d>Zc~e8 at 4+21i(yPB-o=Ih?r~^9H*6AQ;asB$ub~y@}(YF+!v6X9~A-SUZSgNw@ zJ9V<1IXxTN>#tD0)Bt~$7sNt+K|nSBO)uB&nsaHj|Hp at JIyG67Z%vw^dYvB at LY=^Y5bas=?YcZ`@$ zXj8NBM~kZg#hbM*xw988oUNX`bce8 at oHo~5dAeLJ+0a(;V0hOER?i__0KoLV0>Amr zd4SFi at +|rcp6p>z$EXbebhe5oL>TNPBOe`bdhqr~SrsTB$ouTU)98uS$gH05wFd95 z2}`(-w4(F#3vHz5RE*Yv?ALZ142=l?GXn6UNQhiN1_2r=$5Zy#zS|#q1g-Oy0jYag zlU|X|14!iozsD2k9P{^TA=9UhK(ATpO+)Quj3CB4dKD3);Pjs*!f*-tF+} zxuQ>b)o9*%(>d at 9J!&%7#t*zsm(%rK*@KJYlhHxfE7j{!?xW5^3fxrALsU`azY(C> z*%-XT?ex at S8Kuj?CiePd at W>&Rn(cL6=>~c;Yy0GdHnr{11p>w+H!FG}$3L>L>t9 at 1 zAU at kw;m;fhE5#6P3S8I^$Rmjzm^pJcnIMoL%R at 07W>Mw1dti`x-kRUP`|eBAXhfwv z+`wrTs&*xmLT|v_+auO{+<_$_<2}PLEC2Xt%BiV-<|Q`pxgE`eotbrJ&(h z+NB7+ufOowPZkiic;>~*Ub4vtROik2c^*8fB(ZMf%W$E!JVw> zWPrSCt5`!}wil{_^Ephb at 8Y$~7qf at QZTZ>Lrfm)-UOk*bpbA^GmxzrJ#+U4UT-G`d zk at KKfYJ_0ciXrR;VQyVQ*3UOLD%qRDI}Gg!QxL4Y!vrQ}TuhTQQnWlfEW}aw#Hh_b-#>gwz<|&&S9cnkPULrf&t=qS& z-GF<_*$^txl7Rom8k|@q)I4{30X=Zd}~&&kP at NpES$A7(00Xp&0PCU*4f&70VXrk z8jMFD^_bH1raW`y#S0D9Oz+66jjb0IW#Mf#nv<7U`>4lKbM{`gn^yvo2YKg5I(jkt zi}ypUMW=w1eFduhp3#Ta?4>a0$sg=;NF3Ze=ZtWkmncFaBPh;jkPuI)ALK zE?3GI<3X-AaEqSt=euyG at al;G58lAt=r^rNjsrr`<3d0Xek1=y0O=2Ws0irU(qhR- zo-u8Q?8(!-?;z_qid@}|40K;<3sqt5p80*Z5PM$zd7s}&XHW znDun|^7UA=VUR4)!yR|^)TXe;e9%+d02h|0;=2bistq$k{e`yk`~UXK1|c5F$`-6U z8nnRDx4`b6{xI8M1oW#g$9UuFc=-5XdFOZ`lra1JP;V at rv58o%+fncV5)sbUI~nVS zXNoWdWXzGA4EUKE9&4v^e?XA655XhajS%$m^Pu?%Z35{0naK*TOij#|Rd)T#<#zA( zcWrKJq!}RYx(9Dhw2kefPHUR1dnrs}l8GugPi=|{0xHY=}3TNZ-lX&73#Mq;mf9qfmwbF|abbImMLo-&gfD8c;@G9}6bTA`DG zSj}4%9a(E{n5V;Fu^LZwI`0b!v0fA@=mSWBXgh*|Z{EBf<6xq#EI*AU^tfHTaIT(H zC at Y&;q2iOFD?I?$qjY!%2m-lGXjUF6M%UA at H}t7zB&Lz40WhA(8OSG+`*HDdEZFS3 z&tn*#RP9I5B-#*iQQhfGHU8~{e*!MD7W7EqJL|8$`l>v#fbADwd{tmr^{(-Vk>YJQ z!m=;tbrfL&Fw8~BJNJM0pZ`lc$n}l_MC5hklFbl&mE_CM_S*m9zx!zv-;)?ep}8IT zWPJe=0GU8$zq8HYdow~!JgDAaZzDW{-`n_8I-ieIqRLNX0MG5~LOY zr}B$tL*v3lA=Q!tK(ImsGncorPrI?EU&jDAm9;Z4qz!DxNP6`qG!#DLIr2H)NmE9$ zn%uX)lH+@`-z0-7&WbK%F90Wey|S`aIkWbj_r~-Va^VHg5{r8xN|W5N$LNsv#90uW z-dE=lZR+#(oF_*J-db{`?atlD;pMUHX=vl96BVR&8swlST6nz_=H z>7}bzs`|I`nB+g at 49{G;-hLh9n2{pK&YIjy5yc<&A|efzz6u#W>I<|-0^$9dLn-?|%GI32mx>HUWW?%lat&nG42?71`Ty$`R( z=pSrmNAvD0h62D&boEvaAGyGjXAczpIY+tKDsAP&T?iPZNT<`T zt`}&M*UVFkzCAboRNN&;7=TqA!GXbJdc^QsTn^m^?DuPUKNA_8Gx#CrR-UD6kZbZe zdBQGVx*DTpu%1;89-zFKz26I6Fy{n`Plo(EAT2z)p7Yuc5|Y{kq-)a!2n*NKKWI^x0{N-r zDc)v)l1I9U=qY><{UoBM&@!x7VP7J(jLPts&sJJN_DgpHYjAJ6(R0W-Tn#;PW&}D_ ze!MOgu*%!W0}ZOlI{1N+)EAnQ<^sIyI#NX!p&i%sRo*oKG=Po+4R|cvldrmG_JIzf zD>ZMoUqbj%!$lWb29fn|^Gw>c@!kQ~!pdlj{vltymyz&#XTM}FPcTOWASjXrkb2qc zh^CS`UgS)r=jGn^wCn%)v-ghW*9_6 z&di=^SFT)ZPZnb>=b;8dC|`Z~P3t=m;b at 9`8^@RV(bW_w^^fR zok!Ul`HLr_DBk3ETITHKTF(M7W+FsiMkv48+i5 at h@RQavaH{?4&aDcC_XPy9-Vlgz za3!-343`o>s6$~sxf%|fM-@}46jKHLGRo}b)<*U0i%r(!u#MUY^;O@& z-6*N=zP(idygx$N__oDoOGTd)I=UqEh5F=W3LhGC#6qShTl6G=)XQ3&IZm3$2Tq0Yg#~6p zQ--2z-y)2?NvY?WJW`dXI5JQl+K)`*3ah(6>iHuznxFE at B$Zocx2gw(X~&_C06_Yq=s{@Vec{Sn}EQEJYPM~Vm5 zdiJ(sU1v{(w}p0$opcX$?u;s*$#wEwZn1s$H|r*!@SkV#T}zSEF;vJKW9=Bka>$(N zKmI5Gw1CU+zW9Chtz*Re`CtA;XFqN?FP{&{8Y>SH?}-`Sj1kG{p4UAoUVBQh zGkBZ{Ev3!W%$(}bp#ZM4q1o5%ag=dLt;QDqfB(b3Z&$D1Y(M+?FAA7`d+XZ(pY5z` zw>&#HuU>02;c2sD71`m-^1uc>@Tfd|^r*Z#64bB8kl}^r;q*RWQZ?uN*^4n0b_(>Z zN2!~c-7(|?8N>J0ZY4jXRUH^K|Fv(zQbI^)=g-x1^E_M%AO-#v0q{C}ndhc}v>EXp z*Et<9CNeP>VBx*Ok&L=;zx}pGUrDVHN+c6SDU6%6HqWnFyU?#|udFPWSM}oTT+PBA z8}7)|rz;z6Er$4T_+EODfGr()bhE?&NHsemR>$~Zm~!^=7i z??=a?1wbI(Skb4 at 76mIc#QlHt@%yd6Px0Mg?H3O;CC*qf+K|HL0RoVCXu{$FxSbqQ zMF?}V=K at A&qkE3ZP~aV#&c2k#KQ!<*`V3wBta;3I!b)WJY5dt61`#wE6ULL&3>4|nCvSD?7rJ4}a zt9aJFxR#m#6R`lmQ~jgu;>D|VA7F=*!&$$3t#7T at IdcH8F72~wR`eu7HaI#FTHTBM z>Tee!hmHEvzi~S>32#UPz`LG at v%}})6!OgPGnQGb(pS0z#v0Q at X9kS55u>*N^REBt(@Vz>A3bR|Z at yp5ul0n( znw*%egQV1L#ybG`CQRW)xCwD-2NL=$B8BbXivgw*gq4gxilquapSyG}dpJ-48j*|!klNFwm8IH4hX8yi zo*2qC?b%@t(H!0W?4yL&YPuWZd9=D&tu9_gk-Z3z`TY8gN?`uY-8%(xrbkBGMl4bQ zisd5DOMaYsMAJZ=iQFjrDaS#@mN3-i^XCExj!N*3Mv3&wbyFM>s^MLb?Edyuh(7>x zV|k_BymqlXZ%>vM+tTVvh-y57bvVGC=W?|~#9Jbks+_OIbtLs$TT-#`iivbW30%y)lM(|Fz z|L`CFLn+j^ulU|OP1O~z9CrnzoeKE;;rZ>)@DEk6_K>HC at URbZpw`#cYA=Njyx-c( z(haDn+>+3NGvbK?peSvP$S+(C=!wu=ID599{|I;tKyuEmuP2=84V~Oct!gySkhVc_ zb-Qnr3TvHNwv9yK&C?cUN)XNKE9jBuN zh1{Jtxq11*#qt0Hiv=#i!;d0|O#V4{`C`e=FTVb&6rkMIH6gyxEe{3x0SHM4c^klI zN{pB1^Th*%#_rv_S9^};y_{Jo#_X at PEk1pgy&Vp(Uaqq+(MbN#2OoV at o>rcQyLayA zQMyaHqsN^nKE at ZLMr)qUXPa$pZ9QlBvJ{V^AGzdRCq36rgWzUWR^N3);KJD%|NX%S9DR|+oLua at H0K$33-av z+>3!l4elHQBF)CP at 3DS{+KS>ppkzq=x2xyI=j`}0$gx988-S>s(a&LQD>v|=f`-|NUS zyf700P9_1gx5-NM8U4rsQx)CWgYEzje2mTjeV#XKS73-X5A%#XwXcp8J9Wa^_*JgH z9C!*0xrb|_9UgXrD at ry+ zz7>efeXZGbdycz0q28>YUd0D>jToB1xu^|HVV_Dj@+3~@4I?QHdiweIt*>ps%qD3DpeR%XEyu0|c z^@cd!?TLLZ|rj|Ko<84glQF&o6dgROn1Xv~a-5D4Mqc#KIFN_TOZ^{UsC$jm0oJ;+mY8 zE at 2C3$oFC)5xNLUMI%Ky5MlU>AAQuGE4ax8(Kwi*BnymsYx z&ljJyPp_S?is^43K58#RXft!!ldYFw at Pk+{{b9_v)q at a7<*w%1F7F56m;0T_IrM~3 zPDdD9=VI2xlQ=wXP=AOyz})+Hcy1AA1daDz2;de at xOMMto1I^%W~#gtlo^oE`?$6B zJj!6Btapmn3J0Jv-RazRy(==h0xI3PRPGEmi(iqZ6E+} zYyM``#HzSp(vlJ@{Y>))a{*s zs(lUYm*<4Wg at WqLb~-bY(Kniw>&L41I}MzxbwFOiq*@LMo%DnsC^_I6!(v8!#EbCd zmtWSkZr;3E;8cE>d+A^I)%RaVQD;v>_ZPCKlL2~%q1CUy{3^=tc`W_dbW*^Ojk9WJ=6B)@F?Ir{2`yu zyi@=HXu+?}(>dBxKT|%Qg$G$~P00ahAWFD5%9nz39?v&kR1pSVC%kzQhDQh5%KA!q zrONQhwYs9Dc?*GU?TCP}&S=Nk|C5rF-o1RrnaaJS^!&R#zqyWoI~V;!uim&+T?7=Y5s*e365>lwmMi&N&$@r}Z~jfz zK2mf=aq&jF=JD}SuK#trczz+*+Ad>?B5=;$59r+b{!YEO`k-aq=-z!K+-p0tys{qI z^`>Y7*t>A)Vx?yYEg5s=T>kp6|GIeZpZ?Q-(%!pyqd=uSqd4x}{l4k*2kdx$Yv2t4 z&{kL1+u#4=f7pKayWa)WXd1sze5tE~{6KraKs!A at S9Gg-R^>b3Cro(l=6gl+3IGAL zy8*uXx5;PnOkHofW2l%@y&YK+xi%*3Ia;}rLXZlYG at Ts@jVJ(;!$lDSL(c;)qN&^V z>l5v_Uw#uHv|D+vLT*ByjF`typGM&h1dN;t&^ONWd3zdJ4RC1vu^Ab8dLo8Z?n_R2 z9wEv5j~4?TU$x5@!%xvE--W-QWuM0bl(hBGZQxY*+jcRAwK>p2`}P^2(*_Og;3+w- zz?3~hXLwlj1}^|d=wmPU at iKWrLC%Zlgi|qiD04DH{vOay?)z at K67k^~>Ds9E_DYm3 zd?=5bOqOR#clHgPs%O at I$dCZKq$fsvxBba}dwrl7Cwdaimi~=y26oW8FLWsS03 at MX z{NM3lMkhoUKM2 at W-D=-Y$Doq4KOV!Pa=bU!i-yURv4C}S>pH-%`PI(@EJcm9ERlOG zx^;T?Og=wawD|Dxqgu1n4f(Ialg=m`T+gY~#qnFY#sM$UPx-%cO3+nk*cy6sZ at Qh6 z=-o>jGVdqf$VLFpx(E((2LN<``~T`N at 6Ed14=tBxo1V)VN?#Hg@?Hg%+O?p4sW!a1 zQfIu+XT8reD=6ii2T z7$r%7<)d}*u3-~uB1kq~9-)GQ(b3Li2_epbSOg%UvhNRWTo2I=wc%Jt&te%<;xaRj1!iOF}y_3TzV5Ej*$$(eE!o4ZGuNZ!^Rn8&9(R6yV1UX at Tfh>d5z5EoLD(gBC0?Sj-s4%RsebB z34~bEyB6Kv8y*?M=cQHU^BYXDc zH(%#0yV|J;bB(0+7&_J8Q&ztjvqGY;4&M|pI$s2fp@#?iDi6n)H_v7I2SrKH at fN%Z zU^1D3M>bp>0C5y0w;E!PKskLT!b9$!DrUfqhpl4~D=rbvF2Nr`Lr~ji`$y3NBCqoq z%1WM}(DKB{Sku0us&B(oJ7pOMu;q-iF+kjge{tY2R2do>rCo ztZjSi+3c$}JHp9&X#vo389k%$wtXY;fDpw^3^oRh at 7l>IqOiXMQCQsr5w?*DFQ4yr zydP0UWX0T>xk}U*0%9bx+MUbuP1A7tBP2U13Iy6oyi at Dy%$X&yC=8&4P{S`JF!LT~ z*O$**A4M}UIT9mhH^$I>3GMH0-7Y$`SI!FUXrx at lAE7G%8X#be%WKn) zVkCSwIeohJ+_RO(b@^EVSNHj&Kl-Egmw)kJDxdbF58exp_7wK~0fU(0=mYF0YMtU>P6$4>)>Ry&4hXyn=Yvy#Jj1buJie56cxRU{yM zMnQUZd~mS;s`4d0pSj=qS4#Id6A&qfduU`JO0qLI_he+SXE));ko;G45q-Six=iwhwmfpDCOzsoAVdXg_p-;WHH2EMIUyxgUA{C z{3iO*`-TR1x32^6dEFIa&-(Dc7cV{Um>gSsWF0)--op#%IeF!s zZ|TeMps+2#X}`S4no>)7!8K$E at AJEY68mpI3m4@}IJP=|L~cs8k)8%{xo0-AcnLtP zpK~1rRC3`@M%K_tbgx{_+G|18Tu<=_fL=8b`5n0|<&D0c7$2!l3Unbmb$LNCIPAf{C6 z&~gBBO;ntUM>{N)h6oe@^k*Bk6VyCC7*(zp#x{D4;HB^sfAIVOEN at P{4gd+Qg=;9NcOEMA zrq3c8U61lXZ?7Z3G1hzlSaZc_Zy{&V?fHikJX~?4Kzs1eZ0ap5qZfm-65UZr)s$HG|IcP*Q|f0mbkhKm&vx z=D>Nc9)ySFL0!Loqpr0cxdHge+cO4fCUgS?>u4`cL6HE3VPCDoclRZ52}jBBz7ujl zz31>Zyp4~2_H5QJcdCAOqSJ4y8V-}K5jj=Z6TqMYQH3Qht*0ZIjdB%JB+?(ptW)0}`C%^b{=N1>Zh z9;#P6O`*!}_FjzNqe_jaME3BbevfjgKKl660Koa0h`{qIRHk3u!>3Q8ZSowi_DjAp zN_gtXNNd5Xln3L;*;d#$_m at JVy_Uj)y~vzS_2giIK7|z#FHw%Ks#xUKceg8FaU!z1 zWZ_=GN at SX%v98FuCqlo zzy8f%2mH=g5r|jRZUM^u18qG{wfz`4TB`uoLY^m1_P5Cx06SZN&ry50xZGaEh!9no zJ3UigNDa81RCZi)1DryF3MyS=fNylO!8kB$^ zMW=M%Fd^#c`bs+$S-FkqPoRZxWD{(h!E$Rl+DRm>Jp*U at V| zb$&i)pMg%->=<7G*W_#Df|NJjXK5++ek}W at E<&1*5W8nCfSPM++REKTPaosDZI at 7PEJo&zuvC@%Rlnn}I16ZJ zW at g%UgfEvd=AuY!JViyYZ7e=+9|a7Zd~;AuF~=i#k8_{10iiZ)Y4K4zJ2zDmCxFLu zm#?(7{WtBe|K>OC^10Jd7H3Pjy^PSlar1+$rLWz-b1ww>DpoLtJ**^e3Z at 7q zbdHeC`+Xfoo>z$)0h6YrmHQ?orw}PApfx4 zv=R?cVc>?);SeMR(+-+_lmrtyiY5S at m%N0 z!^c%z08D6u^ZAc|-2Uos{<{6eU;IV!+UW3TyLS0no12_%-+ujF1m|Jp)JQ(Q6Jthl zxQaj3z;n3|mwtt*0<3iO=W&VXEK8Z-Lt_jLAygq?c}_feiYT<x^&@O$w44MZ at q)af?MBxTi!V99*e?417swx$cG<(T-W*aZ+}<7 zpSQU7B>T at 0wZ8jz?^VtiQ0TdZ#wkS#2z_h3EKR_Ay*~Nm(*k7Ao-XE at w)4E>6|#4( zU0rY53Ay!ID|%<_;R9y`&;q55Po7`;y>p(O{mxR_e)e}eUxPfY(s3dyC&$MsG&&Il zPATIBg+2I22)8R2(wYVT;mh^NG(AwIwVa3o9f<5zq4_M}^4(}m-4G4}$ZGUnpBz-l z?K|y7=;Td*PfdZi82PC0n|y3%2h5Yb+mS<;-n-sSvif=P4os=|Mm9{+)bt;s at _@_9b+1kaZ0TeTRnq%wS-6 z%%9ym}` zz;iN|ss&nKz9JWR8}XiJpeGmtnn#nNL!x-$YdsPfEYjmR*X)IK5%N#FB2ExRC{h3b z%#l1Voyjwceh-78$S*V{oomrd?(5g8ot?BcX<6c}iHZz^V_2 z7`aV_RCaT5fA8(@tpl|o;fi8XRaBEd2y2#!gNBw5vN7^ngobKnWv4?e=%y=kNUys-Lun0X~Z%JYKp-cW$+huUu*ql6kX9CVD(r zUTZtK9uPY;*wcn9PpFf3)*T_Yx&OAUu`VY^OL!sx#3*4|tC+)AA&d|>V6C(MJ78kp zeD8#~Myolt{XIN94uE(W!aS_7YIpZ>6?5zcX!ZtN&qM%iEp4>H-qt?;@T0c1b5Qws z&ktge<~IHPA@=MQy`0-e at v!{#CyVlm;NTMOKXI}RL?};WkETY(@}B;7bmFKi1a4>+ z2SQUUg4kIsl#NgjU=PspE+{YoYK_O*T3an|g2 at 0m((I2i{h`W_5%ybLdK|*MS!=_qSnA>KB5gA^D6C>-T;go*D)#>rc~8w;H`hX+FE{f!?AR?wy}J|0Ckeh0wt z!V+LWCIO3g2~NUpd3mWkM~8=<-ggA3&jAo0fBa$bi^1|=fAvLqPK|#u+2P*32X(Em zTY+Tf#6wDOQns_xQ>DBJeW1quYY$AgA-E!IcB4FJA}rm{&+hd$=j^&XGU%}f<7lt2zZcon%N*M>(z;Sql3(a at gC3%F%G z`>bo(LxSJ_3hiqb#8bfAwzav|regq`#G&{|(m&ZjUJeaMj>WnuZ+8 at p>VD6{DB-cQ zj%Uw0{pHXmIpp77?kO_kOn4;7cLul5TdVW``kPyAX!3LcrcSzpP7R&$k_v4UO;I?E zIpgvMb4~o#@nm!qtDdS1{!ac;WJZ{pVv^2aUM#O$#A5aL+s>YBzSxh!wbyyZEOl#- zXY9BwOn0Vlpm`09U*&*=8GCXbPnMsSw^^~(%EKp-fxYeQ>}=b4z7_fYq<#AF2kpky zi$#a`o-EgBJ9&eQhsoiN_nGY4jtqO2{dWdu&rG)q*%M8Mbx;tJrZ at wY%b*p`wx^W+ zJAK9Yr!&xxuGAhkNoz;ek(}j&yzg<&XKHS~+KAP(jeMu4g=-a7>FLOmI+}fwQ%b(+@~{=)zlAsV z1CV2sSSPx%SGsL at CJ}(DD$n@}cLF3Q1B%d@>vIZ?X3g5L$yqxQSub6S(T*PNKhGv( zK{}0GX)F=&kC9n>(M{T-b@~k|iu~@* z?ba80KRa`#Fp3nHPMes{v@=GDJv*~-u037RIVI~sH{t88y`73W&}Ci!%V+Q9bXxTt zI}G5cZuntt!jo`({$e|VyW_Ru;#S?{ASq at W!2ec+oA&}cCSZ7P4P?$CSF_v*Qyc1V zDARXLrPyOMOl^__#fY&8Rm5-e9UO~y@$r)a84ld|9qZebI~FDz=pPFp=(v`}{*NP6 z%9E7OV_K_{UqGSA!DHcQI4z;uh at EqnF1Ig!^XqnP{&brU(|abC@#5O^HV`1`nfp{j zV8{?OAv!WX-FjkeW8lrzrSe1+01R-Jr(#rIrw?Gitqo&zW}Dh4IYy!THZdBYG#XI1 zwZ`7ae?57>kwsyEKFTb6mVF){3&4m)KR-F$aRY}zD1!ayH20be00pc7Bc=3|3L=y% zVXpyAE at ycHnrU}sZ4o~qT*Ts8LkwX`iP47v4RRMMjFYue9&%RzdkPcK(d-(~CiD^d zAN~AimH00o$a88AUcxd;9v$=zDEjFrSBziho`09?J__sJ<9lr+0Fd>{lOv3QK>=nt zH&PQkQzy4YagmwNEIk#-0e}$_fSYPi1xQBySTCWm8L)$fT+4m^yZT3EUFi2P&+%k) zxda7^Y&_?!7o(yi!@SX(Fc^j>M0ub+1JBCc2lsP{<2F4t-_D-zj9nuDt3^o^JV54) zBEgXO0B{71KliPHn#~;;%7WDu9_qWT7cVYf)o6H&V z%mcY!- at aY_!zfQmYbI;gI_B_IC+Qmx`RX}&syu=~2W7RVB}@PTp-MRL#xU~c&(1e< zQJpouyrX0un4V9ikG)r`xetrHrH3{ z8qS>zpp31HkY at c$zL%rO!Uf#U=|dJ;fA(xK?=i14G#kUEa%m#1-i6 at gkM6$?Pzi5) zR%-_QdC at 4miSem=ULjRyUZKd)leM8$N{RxpCbU6OJ%040&dYunCf_9Cu3loT{vIsa6h2S$VqKNgl41%%uY|%0DqnW!2dY+ z(y at Oh^t!Q$&)ziCgaAMVB0^L~MWR;*QU_FSH%+=-6W>{{RD{VGb^7GVV-vbWhxlA2 zwG at Q+-g_@fU?_kl254x-GvH}wAHh)a)808Z;~6P4IeNTMUaz8*7-*DkDJ5V!{D7V} za!=0;i0tP&2LXG%;n#_o(-Fq~ZDr$mzB+wbw|AeHe2@~*(;W~H8s|JP2VFB<-VRqdh}k=mv0c4!-Q6 zYx!O>C$BO(LU;C?K_qY7dxdx at d-si&EZuSxIrrfQAJuz>26=@GEQbE1uP`_j+MqFw z^~q|HH}AnO3MUy=iYTAOQ1g7_F`|VZ@$jAKz&HKFtv`G9mi`S->e2xKRslxN{~$5~ z0CInYK)lJiMrfF?_wR|UpV93Z at KF^ucs>9x>yuZ9ue3IiJ6(~w{2Ml4jF-nSfK-k) z4{~qlj1xe!a57tNIQq914m$gzc+I+mqdO6V{2YCY#+Nu2qV(;#R2q8O-{o|}2pT)% zYdCPQ>9>w<>Wo!f ze%3M6=z&w&`vRib6LOk?WW4TgzyG#!aZP$+DQO!6 at W~Hl2+YO6y?5tU*3g->C7pm1 zX76afJ&ByXboIR$)G>hbamG83v$PK~PfyMQ|M(#^t8>X=)<^E^;9-(V*Z+9);<1OF zoSH7L4uPuyp$!B;xKSyTa;b7%hvECfuq=UB0Sg at k(NU_we8q%*)-m1hLKEdOmfKds zB*bi^26Bzj2<*2JZ1O%vhdR|e#&9iX(^NZQE=0A at y&VC}Yh%$A_i}{HO5UsLwHPVH z#Y5!9Tjhl at g&iqcNWVtWg^;yL04NdIe3ZhiZ at z8|LBk_CL?I7^z4kmCJ)wc+VHFw- zh9Mj at FPWI*UY>C;j3q{oX*xvn!&tT=q!4q6b{b#}&>}c%7H=32p#vKQZ2Xr!89rqY z^>mvUi69J9503QKfxms-Q;j|c1CZogV#3w6jdt+*L>sps0SC^CSC*m at ItQYa%y%lZ zd+O{EGDa$oYS4o`0m8aQ^3BYY_3|#cR{jFFvhaOx1h%ksd3Qo!t~nN_;ZYz&gy7^Q zEI(Td;R4;A at V{^t?~pyXcOxO|p4-- zs^DMe%vn(sov}kj|B)oToaiLKE`x|b2Q+}3yZ0VMXdbrr1L)AS9KL7ImI|O?dY`fH z1Ohsi8^geQ|NZw%0Xuizxi7!^svU%8?C(w)Uh>O!Yh;$ZN#V9qB%!Ihu|hr9V18B^ zJCJ8JPHAvHWV*!k>D>OA5>v($Zbm%ZVAFw+R`mh&-HY=Lo zsC=*u;}<(txWCy0UjUfrA{0-bo^OvHJgl=+gfuifT7uu+;JpvuzgcwV+^bqG&!}|- zpiU_mgJz_dkPN_HMLw}i<-`!yYjTW2f5Jz-vD_&xJOMD&p!)!AbY>Kjy;nV}X>+Ha z-@{UZyp+P%6aj^xF|j?NtQiLcm%cva(g2A14ffbYVEOC?(X z4#hs?uCOuhZ>PwvtIonXsoE^SAKA%Rs4of{aB_u}4r09jz&~Xu<~fYFs$!nV+^};gWOB~TVKRdwK$ih+v;YlW zqx+AZR!*N>GPC2I3tC;)KtBfLi2#7T(C~}>-2#6Mn2pc^XTy6}F1PWlaUjos<^07m zRG&P0*j|Sgda?)4HeOV#ub$q4@~oc8*W<^Js(fqQ7~T^+4>&b$G$(A5H;10?{_UK_}bU zd+$GgcA-L}^!rZu*jjk$c6S2uMu$R29m6XNE)XRj)tSHy|=)l=-eLgvlWYuwZyzh|Z=IkrR0N8^R3F)!^lmAv%mL1Vp$?OjdX@ zko)M9C5e{T=H#2`$E?LB+W>hF&vWocuerE8{jCrTm$8lR|SSlpw?dmJ$>^{MB7XW*r10Z)Jpv at _klV_CD#`BHrH$f55 z)E96T0&`DHgK at 2er$kU6DtM)QU#lbE5XPkBYX=a zDI5s}WsgD_`BGZ1v9rEogowXuDe>-o8qu1|Dz8RunztMjCyI+ at w=3S14khSw;g?6m#&g at s`W)D3NVF3WHt!`$09R)13 z!eAf(fL0)qaKtz6O{r+tgYgJvfEHh&CH*Du=xezf>oCTMzoTokPrWxDZ9yeWJIWn_p;yEa=eS zJJ0PqCAjqLY3&K%;P-y#yD!g*SA8As1(auB6htW+5e|}k&Cq$ZzZZbi)P=g9}xuy*IM9wGSf;e$36BhPhtJoMxv#!Q6J|L)reaNb&#v=mJNg?v`8 zL at ai2xD#QW=LsLkQPxIlFtne|&9eq*PR`jR5_I7_ z=oC%y&2m4=dl at +@K><6 at fWA%MSX_!x6$9twslhfB+5#LayfqZS5xPAULInU-%pQf- zPESu2jcW7No8QST%Vx(oK8`HN`g83^F%GnY(U;YzxmWqyPUOw_$f+pC&R9cUS#p#- z#Iw9uQvnP!Ije^%kh32(5kyoX at 8e)_UieRB=}pdpu?R4r3-nA+h)R at h$mdHghb{nC zp9QKoPyki>QBe|4w^w-p^Zy$Al50Q<;8SDUVyrWI08tZ*b^_XY5v3GV3P3a%87*(k z^UycWKgU#Of1I_tA3gwNxAX4^j?%@}O!mHNB83dC}5Q at -aovCA5Mh#V^!t(Tjh!m(T|}wQ$7YlV}!iVqd#k9fRPUm zW9ZQtDqN);@Bmw{b~p5%{8w#_(B5DF^-;R?X_hYDJTH)BoTP{-7KrKqK7-Fp^jH$i8|`H1FILS&%`${N=Ao&(hQA zj1Kadmyype@|pgeFYldcLC%c)=#RYS>F>(HUA}m!t*tyOeX0;~#VE at 6ZqyW^KmVIw z=9~sAT|=r at b~$o4azFI1K;{132UT!HhFKpkGJUH(PH*r=*Z=afkB;kr!_ at w;v1tx) zM}Rmi!qcKyCmu%9p=wXUrK)~&Y+Uvj$7hi6y90L}0?F at 7Fy(Jmotxh)I1obY4KXO# zK%~7PDEV at xMvP8&6b}SzWJ(}-Rq#=Y0|9W9`kSNuHZ$1YCMyZJJ76JJcN7_mwv!7% zgmu;-(b5`rBVb*ll0#!beR$(aJLS+uCn`khSpfuq3BaiV)j#A?xE>*g(Y!G6P~UKb zUPowpQ6LySd{XQ0AL=mpy9yp%@!bRXLlB{}9R8``wT{*E_H96QK-E#!#)F`Nufr22 z+mC=&{w?v`5N?Y8P1Yy}Ge%?GrwAx#r6DHol4iMxNDn>CiHRu)0Psx~EeY5D5Tr}7 z2<1ZomXyMw3cpwNKm`Il&*{0&M270a)P2-0- at KADf8Bohx4$Ydbd=BV)&N1gESLe^ zusnD{REuM1U>#VQ2-sG9BupWRLutV4sN75c<@6s)y5OGC~Hu${xb>cdE}p>=d^AJM*~e``cH6&A|Q z^5*zAFAzXFJfzv_dO%GCUj&N~uydub36;lB9v1yG7Jw_X<@a)CPBeo zs9m{wJ&cc8J0Xp~{pDXrS&c-=#-h%8=jP_iJ9Piy)2dwl=}&$XOLVraujxsaGs;?5 zSIpED3O`W_LrCYw`&ZgG-+a}6^ZVbmsQ`wP-4Tj8cViP--g?8?gY%az*7|^Tmg_tI zaVFTX1Ub6R&-n4u`Kz_B_Z~f|(DG!iEhMYi_DTex(9WeOVDxSujU(jg6t)mnBXj(| zLhwHTwemp5&=Cgy_~Vc3>-%B0Aw^kMG}qSZ7V1Xhr22 z-M;`-_TUwHk5BU+;F5P8 at YUdExP0YmWO{G=>ih5WY$w}z0P3 at q*5Z#MKy4Ue9U+?fn`zjfzc$x22oP>V)* z0OhWeJ901;_bEv0r)Z~VqHu at GTS{;8Mw7Y!E#PzRfFOWdVbg#e01>bRs466y{diUS zVHnn7 at 8`4G{o=JwI}%g2q)ssabY%e6fn^?cGDnKiZq8K+1LmY(>MNgDxa4|9yLowL z&&S9`7hap&Qc1$k;rH(7J7AbBmBPXZs+qcEWWYS{lC at QHZTpVhyO>GZ-g?+g at Qxm4v$_7C+&_s^7}OBwR4b7tf%#V6#0Hdw-*&U<}zxqbfG zCo!zPX=aMg=3druHFA^ulUoe90)1b6 at w@i3pZ+x9I!0>bMS-+jlN^@AhZnsc{m*EF z7T$7xJeCUNMgjnUK!3jgCnB3oOj4lvAOF)|w4eXv({?ciG^3$Y=+fNZX0Ma^P8iq#K|LGt6fu3)Hz~9p=;Se;TR5F9c at wbrEI%K$Pk#Ji zh`>DG+9m%@P0rcVF;qg6 zio}FQ`@=&AbW=e+|DUgJ9^lBq{EAaR&q=_EXxZAi5G5)K7yMX2QRU%e2c>dbtlf1p*gFZi?SKAP|6_ad at IiROz<|dEvKe{! z$GUuuj*#d7 at kaql*=t6Fv%tSz04Xo#iO{aUTXRUOjB5O9EU5ILff!#|m9*`(ciq!#5RP^xQ)Oy|Hr4z=h_8+f+(- zyn=Gp0L5yG9Dyv~i{b%-y~>Lj0EiKIn@#|kxoX#81Z6-{hY5Q}{&Xv%HVv09#eY)w(CY<3W&!N{~4_ z>(rcfCBOoh>*g&ZVWJGIjer at G4>=GkLg{?=ZzX_&cjeNR>vSK>p3?g z5W2G`h}oXV-IQbE8pc-y7}PYfUhWB at F9Z8Hj|6hk2T z_q#75==+)qJ6 at r~SG#R=Y at kA<9blzldslhOvXudSb2+R2q8}D4ub({y>I|Hx0C|Cg zzvNgd$T1LKdk|I108w?)&);``06P at Caf~0_xLy@|Xucy at S4tqtd$BL74=Ik4Cpji}<+)ADk=-mBuxcVnnJ06*)^GdSzb00`&c_s-v07chxz z=?P$Xljo7=V_a3IP#_>NpVQWZOe8nto2tg#h;ahQcplXCPN+%?;Qd7NWqlD;*+)|* z><1zJ&g(2!Q5%?rGqVvf0Sp0ngg!4Z&x?W({PrSXj`4*rtH3F1@=O&z3eDo5-pEvW zs`gAF4VovvDR`e1_T?S*eywSW2DkSL?3E87XS|;Eb at ru`ngPVvBlqQj_wT`6Q#%#k zd87a&x*;Uo_QH2$(M}Y&@UFbghNTkTaS+8;qO*#@_+m>bsURvJZM;0^(YcXd=xpBIl*lNI9r}n8O{fp}qQV zU-r`VthInvUiSE%{Ha&2x5G$@5!xL(w9h58g4~c056#H{P5a!NUzqe0;;118LcIXw zsmOZw(#4^tTYou- at J+56{l%*nStggy9+FLfkF}y%`RocX2co|f333j2UR@#R25AwD z0r_&3znC3!(8B;W=k!eO}IvSJU&u2t1FBH~j(? zSn*ow62U>?EP1dP#r8>YsWbTx|KZ=afAA0gI66MMCHGO7^u_PK%=J2kMYYO`kwPz{ z_n-glCmlJE>$yKC30`rJ=b^i;!vMlu|JudNm98RxPG}kE)F at ns1dfWK@Y7M~007(y zebvZ3dF$D36T8p?y(1iN_OMhR9z0d!yvB;;#v)tn2k$Z?190`+B0OZf=MzP^eB)Z> zfPVY^ceQ4YruVL0Zx3$YjjUeyukSN at a(e1?hqoesoeyV*bHU&658x*a27QxN?+jWK zqWs+TZ-0E_*ad}5Y&yY1I09dooY&3bG^o_K&F at bLCqzh|2r*A;G~q2)U7 zfF2~i5kW76l0YzEI3*OAEqk0JDkPvr`2+Mm2;+N0Y14MhGXd&dowjPET_8>S4 z<%e)6#@_x2rU4bCAWOCfP?ag|wtOzrP3;L}P z;>36*3=7K>pb8E44qnH~dY;dn&i&;Xu9wgtU{rigMF2Q!?s;A^9;#Aap({qo(^&H7 z&dvtpC_sq86Xn7y<|V&m>DlA<-py-mJ_?Q{U2QD_(171(PnOHu_IPczef*$8a-&w{9GQ?@QvTE#xf^goHwB>ghg4Q`FH6Rz>o7l3ycNlOTN8R zz>?F87Xx1QH}~4`z;FS?rz?w()N+RbJk!|EYDmp0-v?(>mTBRS@ z%aN=fFkme4whI&L1Nefx4ULdl!n->$dbaT%4 at zXvDbF1~F|73IPL% zo at aFMR22uj%+FdV0dk&eFoxsX$XOFRKzZx)<$Cs(9Hke at z0zv|eEzOg5AfpmG_5le zX+bAGBa-Q*?F)ktT>y at GYyG|6lYjH*Rw_>P6Me=B;n`gGM8HhB at FHK)iBt$hkmEyR zwdZ&h&jGIVGo7c3B)7_*gdZZ;2co}3B+f_q14oQ3yzgw$z8!^ajN%A^-rY`;ebJlO90pDq+N_ at u{qxfzla;y1KSeee4)Sis|$eJi$W<*n03h zll?=_bSsCC+1cjV at 8|lAVZhbBo&vhr2Y7*(RvW87|MNeOuDRSaxks0DM)f?+!{cF| zf7R2j4_tos+2=(+Z(fD>v%h45sM(v>2W>e<#>=-k_nhBC*8A*n^j~z7J#rQd=CDvj zODL6O*%{SM$>k zB0KI^^kqM?aB{RW`AAXYTK23f=Lox$aS~l~ap7XS^WB~Hr~mjLRJ3k4vY0&io4@@{ zoflbc=C1(|z=ic1K5(#m)UN$7CQ=a?fJ{G`weP&T{_p?ie-m)rL60idY!D(4rh!rk z6dNdHI}@STa at ddWJ!l(0j1wYIC{xH9VJXyjaPMBZYtKgE=m at SlQRT2s{M!+Zy6>y> z%1YbmshR5kC+7=;QSQ79s~ekbCHIzR$fapbT+KbXsS#x-1Hu3Wq3Xd1Cb9CpR}lbF zHqlA-kdh}y!!+AlQAQgt+fjs|JX=kRquqZ1W}Uu8=9R8&uGYWh^eo2OKYq=s=+A*` zYT0Q2SvN0b}qOGvwMhNXNAH4D5d+l8hv*D46_T;GwxL7#l0eX|?oTzY^_2^ZIIR#t* zbo7C_w_-89tH=cyc;1B5ReG^tXCoA5LJtw)?e5bj?cUoP)WmJf+p5By`2QEZd#Lua4dPuhv!0qgZlF&v$N5sJ0$ z?6GFJ`dd-J_)H}`C1d|6J02uFK|cBNT$Cpdt-tHh)?#?+-G=vgCwN|g4&fi`7s{=D z$7NCE{>`{30D1CMyM5r^BFop`xGjh=iPa!mUc$KO1-iMBhBPv zM>17|eknok3PXSe`(%C2ff3Lh!%{0NlP?s0JdR;|5XZKI>ZY5GzU(u;M*lWWMPd*5>SGA$exuGw*r# zh0aR1g%23A^}FaBzxO-6{Q4rFfTgbJ1+-&)V_#%{{|UKP`TJ0(XP?4Fh5#91kb*vh z8d2wXYu)rKfbP1g;?Y3m&1Fw>RFw*`6n++gAmc^Xy54j}e$BPz=qhPR3k&m+b@^ZR zQ?4}7JQsb2cBMwhM|--o6l3>%8Jqw4KmGsOAN=U^HlrV0&hpRy{4XQ#&KAEZ=H%EA z=Cv-Z;PB()#mD7Qx^(4o`}MDX-ELmG9`V{&T`5G4zWMG}HMTeYb1L9c^xje)@5Rw{?&B at WT%)EINB;wm at 4{Vt7bT&w=(gfBoz5&rFP^>G0Ef=sn;)&~G*T zGZ=ZZ8M#l_7-cuCn?cU{+wZ?`)3Y3=N=U%!S+7ZVg~JglvOtLpl!N?lAnw zergf7+xQtlX7!Z<+^|mO0wQ|-x5?OA5L#R2N80q-&|DD$w5#{#?so2@`{$QnOAw|o zHBYO|SJ^cu1lX-UzPGYb&#`$z1B)8Jy?!gMHlo7-T|836FzDoUr z^;p{2jN@|@E=tUtz4Vx!I*sBKIvC6}3D58u0BH-bt99+O$!CizCMoy9TVn{5vzVEl zN}%!f!xA)jltmJrdxjVgP|u${MA>zwTZ!mN)6-`gB!QtG5i9L&bs#MorXRqHwdlaT^X1v7ED~U`1A;NF zZ9N#$ts2vrmx4t5k at Z7wdYSZQsuTnp?x)~Oup*5rSKOOaJ_>O`3^b+Zr{e}dfXq?R z$+uQ=>q(Z6MNCXCCq(@~;H1_34G_mOnVbw!2m_ z6VJH0wG+oDt#pyAv+FbhZ2B$$6kvah5_mq!G=81ybfS@|{yv|)X90^q+|L+pH3!?! zpsiGVK4q(hsfL34UUq# zr)$(8vNBb9bP10L#=T~C9pJMc_dh*k(4JrRGF9f^ASXRDrxPgW1)+u;rK@|4t6r|H z!GF)+oyQKo$k1aC@}j$q{ow)IP(Vj#&>WzrwP)sEwt%1V(=XTIS@~?fEPQhPzKjYP z=KWacl%6{G;Ew<=3!m7t^vZF~kI&sImf&9eu8;K?wYh4CChh^u&{I3FP8aNbJMXer zIuj+Ain!?Lwx at 7b9Nbdhxu~|Fj`z*k6--a zXUIE?%vuqn;y_=@hSk;O1hqAI*2y9o3E#Z=5YJzJf)3c`y{DNDbaKibubL2^vr-nWkGnS8G>ykMzkkiS zIy<<|+PY(Qu9_{_R%~Ae at 8}>vAtrB`#`b{cQ!a{qqyuyOZG)uK!uP=m$$MwWHu+Zl z>l}0q0Mk}F+iy9OL*y^Alk at E<4Dh$ z8t>xGw?D-6 at MIipwW26G-cHbsQ}YjEd#fRNM%(}Si^+SZ78uGg*RRgTnwYJnC?nW8 zU54&M!0ExUMTHem3dRh(9wHn$Q~`v20&62>u?$UG4CGn1q7aCR~+r;Y6$4yYQt0E2Zl at C@J} zpy)^WDAI-i29p5gK7_dzSoZybk$dNcXdfwk606A zhDj~}7+T0CFIRYW=R12H*RI8X2F(a+$FcGnjU7OvGaWnQ!_p!QbA;tOlEBj3k1Q}i ziCP$8{^=)ApF|xx(et{7m7_q?Q&xqcDqaUVG)GIIqPN9rUAN4A$y`nDFU?C=tILZB zi(LfGZIlM9FebvBbJWneLvU|nbyo&USdLhaW0SGAwHv=d2wh=jm4~VTK`di{iOO1K zDQGpcbc-->l-wRdN)L=-RvY_Tv|;})jSmIh6#U{jn{#PZn8ty7Y|)i at O^zR|48l9` zke(ex5rE_*UsA4uS?{=M8q$+IAzd5t60B&c+gEdGX(fTKz~3rOM^?#G=B5f%Ji}Cs zDqD=IbHJ&9)wM|XM}RO514Ecro(i-q__|2r9(93&IVeLi!G{JnDJ9KIDmDr*cOOQ-2M z#HdLn&-MM?M*!mY7A*q+`ONX|K^ndGmh at TWKejpdTLop9MS$tD<+lc$doRBjitpi^^4aA(l#rF`p1(3&uZojk z1RXx-N6_Od0S_;~e18A!SH6cc|G1aDi|eDBIe$T(hPs)pzQ2`<1F!R5c~06B;2X{! z1Au5?IjDYXcO%O1Z7)WnidF+n at 4hKN@(p)PkK#S&kA;O~{Oz9-kl%fI=u_|g2sd`1ZKPyfahGV1ejUq0>;8ggz^r(5U5ljo0;Z`@}Apgk at J4Kczi7Cl%8^{~!LhvGDd4kB!mQ*%R;HeTdnqIra&C%6+6?=O(Xjw8oWLH23`< z^U^;1?29xKdV5N|uZ>q{ykA<1-~RR=<7Yqn33{?84i9!PkXw_vj^HcLVi1{TA*X3% z?$_&ug)I6!+{18(R_$nUeug}SKDxPvxp);ojdVYUEYsm6jZ}y0fGPWUHd8L2pI;&K zd-DEHk`k2LKJ16r at 8Sg@bsIi6XHHq`=)lpjp*TD_Ku#W|$J1uz<^EO+v#-DYI_1!_ z7tiAW9Ae>?X+Y-LS#jHM*cZKSK6Ympx)z%0LJl8uMivArE9_CY2M9IYs+DF?L|mOoZbSB!+p?d)3 z2jj!>$*6scky(IQz3;ES`9mzP9LMzhcszLWJOQ-2qgw3dEa5x&i$%u&>)-q?F2F+S z=;ZBx^?&(4-3tVo`v>XOb3~ZlhJ|Vg-vXX$6b! zQY~h4Fiff*2GrSFL}6Tj`8`RAOHYGDa&_K_g%9u2Lo+Zigat5?jCF|u62)4%I5RVu zxpxx(DFS!l{Zd+<{iO=Ps#VeJ60sGzhn^6Ah9P?S+pYotRBlU?44a``6rfg9Y9*K- zXA*Sn&u?&n3!7pe(3#1kDMI ze%IN{dH2UPfYfmQxt>sH$9%4Z<)zp}xD8foF)}d;ryvXwATpxX at ED9;hRH5Yp@#(2 zD0-~#E@%?foE|%^UV)ssl3Hr6DXXJ6FW;}%NDr5}o>oAfU*E;S at hO7fI&5fcW76jF zK|Fsno0YN_4$aNaW7S>8hvl`{*x8S@?cL~u<_}M>a-n6xlzZx2PeFkBZMLVdAD$@{ z!?jjYv9p`?m^h|rpr;Vd2kz`HWI<0m*YL}Vd2{Es*H_XzfLclgr77 z2cRr(Dg&ewJ^30X(wxt(;8O at I8&r&X{r6Dv{$BYYjVTy?uhTR-`S;S=CQAmm`ftuh zWhH-jMgrS+Z{MPDu45R3CHpUOFGnVsa#F7JC(v`&vK5CtoUPS)0$z(11fJ#%tKjV~ zX at 4(ss{F1e)a%bp&17o{_sqOy+fYdR%7s+??1g_5z*#J1>V*o>be0D41Wrw3$63=i zD5HC>-@#{0x6niD{+S=9_eU^h{@%ps1R(Z^^FQW(ohXv?IKep0R1eRN_gOHd$EIvf z6z6UTQ5lob1LTSPmATNxuIOX0^gIX*>@6o4>qMqm%wQ`YN4Uw;3ElvxLKnlc=K>1A zp$4-Cu_4PYuJ1Vsv^@jmOopfV%Ki9L04Tk*8w%&zeAe{|w!D}7?fVSJ3NqzIs~)|t z{mIIOavB?Fr-v!?E(MG{uj|kOp~YtYx6 at 2g*Q88uV^3S2H)rDtGA#nTX0O~^<)2_z z`b{wCx$_Kv3IP4`?>`o{MF+Nd>&@v! z-lq+{^)LSAe;5DD|JDB at zWwSqF*sn`wBGpk_ut0jhZxt$X~Cm;`#=BbPh(->J#w at w zJ!`Muyh)FvsUc6EJd1C?dzGR5{_=3j?SJPp1ZH#7 zGnuZky}p|JZ!f~^-+FPLM!OzW_tEucY7F%E;NipA0|>hBp0NN`nUeFi1$4s}Ho=L| z;sW}$Tp5IpyJ8C5 at ay0HCZ50iGzl zwnjg^-#6d9iog1+UnDKrHbx+Sj6vMfU4-5MdYoq$IHisCZX)m0_trn0>>Y3pk at MWo zjxAn855wQ*_u#Cle)s_VaNiTB2hA86or>4UI=zB3lOwUawj58*hwUuJfBoP5_feUf ziDC4KBWwp@$0_K({SJ&Y&=-%MJ&2X1cRc$Rz;>3sZcltO#k0*$l>mnCkXQHd=;e=M z|D+?%uG_#S at 6eqXnE%)R>?ikbrj0vQh*|;?Ol~+#F)=-ziGx;0T0N*|PNm^ybR!tf zVComopN0wM$IV7;aIm6gM~_(ja*IN;uhuETQcD{%1`vo4V6#huz47^9ejeXrg=}xJ zaUDIN)>c)f{e%AO=Rb~%%Oidt at nPXzB5uSBgo!oPjgUsU+wodZW)4{MU at z`?C>4pr z$<1-O!;ZZwekz1gxuxXG5ZxpUH=qLN_bLn<$u2_VXMnBo*~f8!VAgs! zk-F5~8G{N}gr+_C<{r!@ab;KshEqrxesb^3W3+n6b}lL>3C{{xEqOyTIhLq#4v at pz z*HZ_9->^TH?h68CW(AN{XaW`$m%`RiND457onC~@O at t}@or+z+?ip!ycftr(0ZYgh z+vsVu at votvX5$bLUWyVR#Lu1p-17 at T?B{Jvo%3*6gV-WPyh4$m3|k3E&8?ByoMmHG z7YoTTPI^G?!8e5Uv%b6<=g>d`TolWJe`lR4+7kOE5HiPS9EN>@)wPdB{D<#frO<4H z9?ciMn-sds@&UD3d8LxcX>?(Y?ZO0KSQON zBgWq6IUrojC-d2g0M$)%iV&dAxHM1B96y193Rn6tZ!c+wpB3O%**V(l00H6eETA$k ztrtu6qvydd=}#I+uL=C5x6d3*=Um%h`=bZSN?fmFzcQ_BbI at F;G-&F8N?os+dzaS* zC|S7RLPVX?<#8-D1)$E7S5%bb~ zHrJjNqR?CmbhX2eWfZnKnaI3bKu?=qT9g`VxWq`c^_9(}^-N0xf?S_{0A7>l^`=^Y zl)0Ili at 8hihy^6xG1*NF^l8JsQ9&sqQ|8WHk=YjT>8 z(>#3LwB4pmazA{ZXF7@^c7M;|S3TF#S{jx9TL6gc&PWX}@1gM_O*%TwFX_~0 at vL%> zH1t^KN8qPHkzWEf?(^~Gm)|{SpFe;9$M1LU2haB(e|Zl6-up|3Fqh$v^v>S3Ss at D$ zyn}zZfYs&p$Gg7;_(2CoZv0#c;Hzh->;5YK>_?wO1tHLE?8H3Ar2z0ZzxfS6&$eg~ zdDg)rzkB;8>HCY%K1sT;aKM&Szx~bcu!(IKq;q9*e1-#h;m1R-S#a$ll!o? zxdEuD6zRGlkvC$dUU5f8szlqzfyC_x%V*m6cqg*<>uFtO0q1KOnZSJ?GU>W^6 zI@^o!hr{t`ej at JnPGb*T5?zIKPS`@M6Q1t`fR>O0FQ2 at K|Hps(|A|gy_x!Wx at a{pB z+V0{ZGUn?1IR4ddUdR9Xzxt;!Jzj}l{qi at luy}~9Ms{68f1Q`{i=WTM`-Si0H(y`I z^n+py)*qv*yW_+AZ{c_N?f*DYyw at u*J~f#N*?b-=e4yXxM~Hq at G%}NY_AJ)O$|S=c zpmf_WSm<#C`1|65O>=|p_|Y(&_Eb&0pNBKe0u-1B5lsftbLnr!&0)Mwv875g28dy4Rf at p%?|gqd?;vc8q8Djfv}6pq{@8;$a_1YL%y z{jxt9|4d773s7Pk9<8k2&c3wdGt9+jtPpIRoN?v{DRjmME9rqT+&eZgmVhM{HG;r- zmv0xA0Wc~6n})VJ#tU4jK~(N~5d?zhQ>Y0| z%qEXl%O6;0BSUNU((2%RrZI*J2qpb?R~SuuyW5!pQ6C at 8=Bpo87gI>+g&H5KW$}iJ zTd$eVp5TME=(=~$1 at H%703mQ8>4)Y|aegn11DJ>J=B0^ntVm0rlbGYiW;?u}kQfofaM(N)H{m)S{y^AYe0 zVop))TqZ%S{F7f8qw=-##{IgzZh5`jOV8RpPx at mo{C$3em1+p2Tmoz;uWT)%2h{o0 zHfpzO`s|u at E3=CBOluW5X^;YMqR`Qo%CZe`nm`ZG>X*5qNtVcC at 25A~eHR2~k39Ip zb5zcGUY at _-KLXc0GhPCwTr)K4b^O^c-|O=vsQlxX&yl}pjd?9zAK&k1`ZV>5ie?$}2essmJSo2>3m-VCsI?e;&-hy?s;?)T3=c^r>Ms&NPHKYTQwVMYO< zhHXxLfTm0lI)aalnmIdK`hWT2Sr#H#gaL}m$bsi(KRulff(VQ6q?sDDCcRlDFPLlN zETz|(x!G7-S&7H96S2Lqjvx?Yj>c z-8-Cld(=lKVyH5jpz!eOFnYl($I!Mpe>%S8`LP;$;+pe6M;>A%%d2OX2Qf6#6TkTJ zXK}o~9m|WWu>`)^;xD-6bgkyaOpd*t5Bu at TmG z5LoJ>c-u zX#2nYZ~n{d186e4R{OWFUS*#lJ7Cww# z(mwrH5f~D at a zpxtFGpDh%Txke>p;fM)Cnr$~1F*h~<*aW0NVf$?C1x$VpVeTKEN8|V;HaGTjwr5(< zT+A%^AQZ{GgE z&;2Q!hPb!ke(dWEF$f$MH at 6Yg_ZdnvM@xk$2$j$hkoF294gVt8k$Eaa1(WM at -t*OE zOVGN0tvG>;W4Ms`ShQ2g$mT%#bqf%2=B?w0&Rqpc>1YF`h;T6Mpv9|K(mcAE2^D`w zT4jpXbCi;!gxsG4`?_&mg|Lk-1wWHmXE&D!ON5-BIQL*=bPVDjjU$BUF+?w568!0H zYCT_DOhDsur6bG)jD~o%9yyKp(HEa*!*8dJ2nxy<*V6o*whz+cXU!AU^Q5ruuM9#btwJLeyB;!|w;Eo| z96*sKydhnCw$fI%gyP?>U-}m)Xk0bfw~sBMyms;zU*^1K>lxM~4M~gcp=%KUO4mM{ zd*a?D5AmGxp4T?SD at d^7*3Vof{kJ at p(vU?0K5r|uZ2$vMtl|UYHBXx{fN)j)`{nZ( z`qaDSwXNo~hg$L at XY4ZpS8`3}7*=Z4SjD()vtR^cS)MW(U(Z)g?!c&W-K~E+rxoKF zS!4CRZl at anh5*j{OK#fOqfY6?3(HUjju86u&g)JXya|W^q>T zrE7BEq#3`+1ilnf}AY!$-QD9kY!Go5hmWTxb%{lehW>fk>P!=+oRCl&oa#A zyodvvQge1bGmFS)Y;zy{0`%(1wLO+bkn75I^5xnEEUw2dfB*6IF_-b<*T;2#OkK&2=GE!}v_;SC+;n{P)mQ8{@^5cHc_u@|$T;QDDEjSJzxoZb zbtk^~;*0FyAg#;m&z?PlMhbaPqj4{vy-c1LhzV3Qh<)P6=*@4x{wki%&BXq;Eyga= z;3zMSYBG^=P~H53mv&14<1b-e at -&xNw0!^=+s$`?lXjH zzFy^7b}dI)_V at xJBw%fJ13Z0&AE34r&z-~Rw# zW1Jwr9*kDvi_bra?_R%+-+ujFJpJ?&WX);3`C%dc(|`ImvC1=Vt*^&J?qhYc;LrAB zcbum=`1euW}0YfA2Thz8bt8u;bRDOJQ>1VrseI;EC3m*l;bBq`XU}+#Ym)01gvAZ zjzIVaJh=CG{r)ZAmmvs4KKtoTzGwo(u$GE_=G|Zk%0nOw*lpe1UrW4@#8QBf3@`htREJ^;rktFA6vJ2o=J<5*xdK*0 zdAOSSYgP8CoqN_NC!(8YL)T-y+Ex50b0qa%-orfg{!)w#4aQ&zB?gmBkB`QvZ6J7- zvQ`h9(gCn=WS!xq`ru$xVHE#9RP4{N(;$jL;GyeZMnXho*j}bF%(=3(#P>6l>1pim z?ZzQ{Z+}Gljx7W3RTSpW*vRwp!jQm0EG;glGCX8|?C!6{W-Eg-_vu9mcCa at K%jR&w zoHoNXdZOyH)E4usD0Z7{5-iHXN0)MYmM`C1hDvmDBGGy-c9XYkW zzLj|l0*Z-=@u(vF3_aSReXrq+;vyE=e6HIe+Q)iGv}{o1j)yYj)X9A}F<#6$+(w|h zUvlh^vt+DV2`&s5ob#;ax~yY}n3HO#*H$?NXkv9^Gn(dpv37x+p;mRC)!3$C z_`5rll}e=xdZ~|1 at EVUE=**J*z at mt{Z!Nr7PslR0BUM_ z3Sm`Gk9DpYx-}oi96yaEJ;3U|cKB3A*ZU&P39tmejs&!e{+XUnl`BHFrx$|=ny>&8)ehOIq1o; z at Zyy7a$ik3kRJO`etKDK`fAQ%5AUXsjt3XTf^9l-;g~psHYw9G9B}e z<}wuLOm at L<=4A4$)yh~_SMH*~ZT@`4I*dT*<-CVxm0^N>2*$03&sw0*@SqA-{`GH3 zN9>s|fmzF#Xtn+kJos-72VX7Y#T+yD1-|0%<`pI&^xAyJd!=!J{B{bA_el>nw5M(o zSo*qSzhM9bJ7>ppcxFCN8UUA8<2r%qGV|nFW!^(4h at Mi@h<^6T^JwgB#p1$ZPCVI% zpI*Ftk?Z~Z^UvbPKl)L6x_my3I&ySJ-hrwvCgo?n{Neibzgr%sH$ z&4bgdq&IifaJG5ahZrTx>)RMH_UO~oZW|p)6<)GPLub+$I(K1dIZiHaqPO4X{mALN ztCV>s05Uz~Rtonbi}uhD)6-*V*gH at C7+z~{>&jMR1L&iF_iz6lynL5(RsAehFl8rG zDp*fa1$-jS2$anaG$OFIyUlaoavsGrdc-}pIkFAVJ$fs>;hlCiiR at BwiLSTXhlMbQ zfYc#$%2272dfDgiLzkP^Z(d^)oy~#9>vwPB5un at x9>hvUl@{Kwq$BFx`wvMcKl$6&z#HQUd&I_;_<{#T-%4Z-gf!`XF!<0<=D(L zhgX8A*5d>PSuPHwd*0;4gWX29cG1$&Q+SM^GmZF&16~9CX;}_HL`9zR1kkXF6|oIy z+}%4wfF8&G(OIl)?qrUYhse47F$95d;o%#5%@_gPRYyisNonb;Fs;VhHN1pC?dmkF z0kP~JKm?tDt7_~WHBnw`AZ;ra?QiDR+@;sUi3G>2Pj~7u#G~8$mQBeKMfMRx$lGt| z`Gbe?U}7R3OwSkW*ey0NkIx z_#*ncig9{$0mvK%v<_yTW>=e at h5P6k905RF0*p=&QdR}t!GPDuMAQgY;$8z9;;elB zQ`T~aVBdhIb`MXYh~?L0-&T3HWq?SrT#m8H$=F8m?((t#L~rRb`}b~nF*af3YlPh} z7L8s~t=^U8(O?f^d at cZAGQj+;B!aw zxkvi3tjy~`ICgVBwlLDT9ZJAnO;GNB3Lf?1?y_b9nV}@%k3h;j*XZcwJqd{b9s)a4 zNGvkhMWLz~1iu|9lXgJjy+|y>#?8+Y%9N?TYvZ}PZgi%_CR{AF~Ff1lT*XIPY`w%L&NDC7048tBqw<${uN%7im|H3!(KwLClQHv)XX1D1o#WhmpFqnm6{LoWwCB(M z-G5s!V_Jnd(M3Rjpj2=v=+y8~mUvA)rWK0{_?)2C&lPy at 1oB4MWP#QMpvin+y)#Z< z(Lhlz*^S^Q0KA`l at iOdqvA?s)efp5&M{y2-|Ji3RuKb=*2SfTT+7p^Pq^uJk`Yu4!2{wXq<-|Dm+}+uWDcil3EAjoe zAJVHhFo2vGuVuTI+s^hhL~j5_uRkos$oO;=28W^9c4Yr{3=G$@knjD6w|ov-nHf+K zgZRnMKT9CEvh*Py at OO;>qXDxIXTV0w0K?DX<)f$Z)h~aIe#aOFuuhJY z-FUYcZU4K^rtghaXJ`ThYSpG8mpzzLPeG+#O$DZRL}jeCt&3bs#G&Lh4yO+BPqIOE z-InmC3e at CI!?kBuZRvqi(ey!#eF(Cyj$1%xcT at o!om||+^!A<(h;KbsHdffsD=eo{ zG88P$;rDPLk%^k-g&m_ruFSjOFs%Bu>T?=}H4Y=Tad1{o8fGy$`y8R}XB_Ev0Z_8N zK&iKoRfR)<-fOHED~_~&TE!MB*!@(>7F<+N^v)q{2Y?z5P!Smlv9*W*xSh`$ZZVve z;VZsdovD>({+6zA308n?MV1Xv&0n!igbw8S$qJimxaca^2#MtL%Bf_6DHbkeW)t>b49&A_xty*t>EFP+%JlfzkkbzRQ|F&TGu( zuV%U8GK|OBSuL7g5B3PPiGXIi*;ijGNxdAlV(_~j1;0xVXY8BbKlYmAaq`uRFjpSf zNH)Qozhs{Uv`Mq(q;@cPR6 at c%N%EAzrIpkgCG=dCf^oZxH7vM62^ z#dmzhV77%87R^{prZ+{UVyO1&4nWT*P42f<(#L!0d9Z(*TV=1+Y>xxI7}70qPx~-B zg}`$+{A}t6m&-LJm}Wl>gHDa2UN{?`U1cwoZyH`2-0FsV zKxf^lNu^fas&YWuuxW9nANdPS-rsk`Dn{w*7RJ0NupOWUC at 5lZ+KBeU2itm>>wJwu z1%z;~JJy+=G~`P=pSR!zc$aI>LLn6?ua?1p+~d{W5;wWOzT79jODFEVG}Dq_t=vwZ zx0SMTm3eZmUzzUNDmVR%9{7*x0Osj>O>^Ve0OM3}#+x)xR`ygAJJmdw$Z;{tE z`}FfqAH`Uu91TE37Ey6$=b^W=cmMqF{xcz_^vAXghoh5g-@=SZ!s>QRKog0tkg at t&|XVzCXkuRlm z${2mJ0r52eQ16n@=UEP7l%|6R*=_ at 7(|puh@~Lv=9zOfz#i!8@;e7Y)_v~I5M#@S2 z^shdTzJb2 at 55M~=)-jU*$v^)u;#=0fw7i;8jw}>nKQi438a_R?b|}b{ ztd2H)Xd8OlT4}_S*#|LEAB(NEHFRkKqj at h%mHu$@&Gns1Y_fJNfP^B0JKF3#41Mm^Z=+0M+cashp8H0-YZ7TI*34a4vF z_b0OtnwV$!(Zd`^Eu(>&39kre)xOkOnYC%!P#MAHTQC;IGl1;J#dA7efI2e z7N#8U9LB-sUUYmmQu)%n6Wd6bAEy_?P>0QdN2kpnYBe10hViqi55};WrJfV};QiUt zmoWpd8A6#WgtXXB&acwzbd2(|y5+V*bYF-93~%DN$&iS7xD{mx6P{e3#^K3foI#Xj zki6BB=EoRrQP3S at Njs+P2w|=wZngL50wBN?4<5%X7RrOkX+UFNRv4|17d%dpso zr6nwawG98r%vx5uY)=t7 at Amg%lWVR4)T~|=ED2P{C&yxJW(*7EHV&`OV&h~#woZ>@ z7pC87o<jjK! z_s%&T0-GSn-gS9ceHe!%|RC=5|@$0++wo_&zB6kO?n za_*`f>~#mXp$Ou-EtPjFC_PHhmVzGXjl%YMPU7ICnPFVLSXTfFL5=`X2Cdgd)9SW@ z>Hy((z`3gx?U~dE2sZC;k+Zh~&ak_mSCE^mFPIes2$=LdWyl9Q-re29QeA+K&k&^Z zams#bW$Hl{*rW at Evpi)VZPB3jte11ioHwqc2T~xQB5@|2-wjm@L%x=>J8I_c7 at PT@tz_`&1(Fe zVPRSU(gn3)>kOz)7bcTp+#Ms>h+ zl=did|JqC_69 z5VXVopyJa5Z1~LFPuG2le3D0;v{Wi%RQvg%fi##4?3W>V>CXJH!GTK3T>F&CmsWbN zt*pV5HnE160T&h(YM4rU8X_B;+Zpm}84!2K at 9qRv?x)rM>Ko79=#v1MU$^!eaMGR~ z63ol9sEF_Wj+b6KY0Y#XzqjbFl~SaaFAXhzr-x5EJOl8UZ|m7BpQK&sK_FazIX8F>mOdlFMjd!46WP! z!j2d6T?wA5)oZb{i^0pf>h<9q at 3ywKj&X3B#<-CKi(Sqx&(i6!#(N9gSANs$G&VJv z5jImMOp~yvNYFDSlU z`1i)zVqAhVd2SwQN!s`56cu*Ns26vsJ ze`f}Uq6=J50Y?o3;B-W+Zm!4r?m7^w5c~Vk!9X=r*Bt5Ubg^^x>=K+|vB}$4-vSsb z@#*KE#H&{y0OIKA8|ePeCMUkstvkR)^*U{B?l^ zK{YEIC>89)qT zG-_sitJenOIpnUy{s{u_IOu*3wOxUt707|~KyV6A zdwg{ugt|~d6 at W~4u^&ay8 at H@O*SYhDyUXRcY3ssjIRz-TK(L`(75C!ua^?+PaYizv z;iL`(=74#KFq%TMHZsa7>YxG;aUU7LB`!{yP}X`4^@iFaMN3#u>WEFlIV;!O0W&CY1-Iru_3`|d z2(3fT&q)V{2n)qB*K6&`Ezc_$P{Ej2sFyfX8#p7Yy{*_ryYO87fS10^l`|yR1|6AW zCO}eQYB4vUF~NfdlFIXlS3C45*lL9 at p%Vn3AVLM9^2n-qEkEwTLec|hINzKiL6mtq zUfYU%g at QuDbI3W_tk;|!Ls2FSzg}F(u%}7-dZ91aXMvk}Lyr7%53}bR*EFB-RO3hk zpm7L)96|#qxTFx1mQ%a(Go-{h=wTm3sCM!!hMO&-(qPlODqzgv|EG4R|Ks!<)_TtM zr3v%y^!}x%6s6@}I1xlotBj?7nZrI at 2?`4##9&No_dRaUx-?xXsqj#ctbdaO at Y|(Ln z;J0$x3i~^Yz0yMui09??&C76(@5u>DX?PF-1GvXXyu^?-wAS5ao2ecYxigRfHpT9! z)rO)}>O)AIqip4{g;&Lx7_Y&ry-`Lv^!GzY+_%46h_SI at URCHFp2fh_$Sk6KBqJN; z+7#GPfd^X~Vc~_1)*b4fZD^p|Vb(QL9f}Li+K}T3bb7`!+N9i^G~4m000n3nYGrTr zdbyW^J6|9B0vaZ~=RKzA2 zQ%|~HFlDW|y6YPo&|VwBtiYBU6)K=t#(CdG@|pQwwhA&5lOc9!#E_hT?_;5o#W~VV zdWCsqsMhcB)W`4X at q=#sS%4=GrFWTo+CS2t^@3TzpnQ at Cr6uV?V=+ at 2;2*t&@~^z9 zXHoetaC3q~k-rH>mCu4Hi&YNMXOB7GPae(1IY6NU+Ecf9E|bWz53gUv900^Ie0SW_ zyy_E-m(j5iz|VftszBUUI+Fl1qZMpd{Qm3T$J1v|;jc3coYm~ld4p_l{(7N=zTgc1 z at vC3QC!f8D_wQPjyB8OC3AUW`-Um=TJ~@n?gPoX|osActyu?`C#^_zl6cy7KR at OIS z&_?&{i{aLCzjL|K^Xr>{-va#66D8#70{7fOKHhiqVWeBo*~q*QBFnKSByXO0 at X=(_8eog8Oh zFxoJj%vHQVwplOWR37tiFV3#gsr6v)AvC&?GIMfjI- at 4)lQPCkc at TXA5$)`5$L979 za_cHa!4&p0R-W~s$CRU{Q5aD%hf}_AzOktScHuZXY$njOf%CCWmz9m=k%tc-#UX1Q z9>55js6|&B&%pIzd@#vwMi~X3c3d$9Po1*^{V9nxn2fGo0z6NVPs5!10Dri_SozWO zPm^wc^ZRe(J-DcApfmH)+dFiYnc8LErrz&}sqxXcMIVfh496-M>*3 at 1tWo&)zxtZ} z(qoUf|FhAFFVpAFCluWFV{@dB%5!;VBXdp!KnhHWzk=eQpPr6c4%l$r>h^lf|ot~M`Jgb2LJuMFG z-_HXu4@#wP&eG+{Mf4*`YNdgg0Ejt-0yUFFWu>ge3<|)Vbu5#^lNjY%<3sf}wN&W+J=_$;Qmb7gkQOr!cNv%C(e^SjY7( zmQ`;F;DOc6x&^=+SVSu@%06J$@Vs84UVzwWnR_E7=Lf6tus#tpfTVFOg*mLNIqo|; zTx(TG!#wtbaxSDEB5hU2=*>?}MFCViYHjL`arBO^^|abFCXN9d?7?~S9O1+sLiJlPP7^R<$X~$d?B!#q`-RfGQZ9QX^S89RH&$IFzlROKdYzC>OA{wnctS)6xYGaTr>Hk z6M=TGf=|JN9_Ig4I|4x0rIFAAdz=N=HTU-r#i&<)0;0KJw?{200q_Vfx=g>oxr0N%HuZB2g~Po7Ki8+@>whfDJ1Q6 zp>Q=K3Vi}Ej1|CEZ+hjsc`!Y4($6^{^^kR(a!t<3xFK}udo6UxUSt|)PLx486aj8y zqqS`6YA%(aY8+rzuMKkM#RP78>59<*P_;kC$E(PLVLr>6bOg3tMceIV3<2yE!kwLZ zt=yZdI67)Xp%-JV7eIZ{j5gMB!yfPNIbq548;sY?(Gmivxcg$LR>5d2b3U99AjnzO z*BGNe`Q+26LW9fBXy4gk4_f`izWVLg80$_OYGyO`Tb>^Q46PX==h>m}yQG7bCtR=9j!Uj4X34dH{_^v_q38hx_qtdMxY!ySDfqVD3EZ0rb at l z=cadWCwaXi^D;3w;KdVkg7fS*x3|-H)N@*`)mW2rvyW1bzJANK0MI*tw#}XO^yIZ$ zc)(M(ah|3NGz at oQQ0vsuh;5$Okh&Bj=xzI!epvc|k$l5F{ajl(CBx1aMgWbx>|r3< z&g2NtvAnj&6Wnuur+sy2Z(t`ZVM at d<>+2t`$J%xymRGi7baDp%g2$m{BZ4-$xA;O3 zZj`{!nPzp+XtKAq_3BHIXB5Zuite6LKAUMr(w~tAdmzH|fH_US;qL`||A_q;c8Lx=sM(=NHfxbTu_G4QRbWF5kr%yzki8 zUCv#DHlr`_qL^y`_$mf!rD(FAbS$7N3}tt6FJ~k5a7HiYW}<>Idc(6kfATD+jeG#0 z_YRg~;?Zo5O1wsyodduR(U+i%Y-nv&_!)8p6%xa>fvD7L@$IXHc)!?)VtF{DYaO3f zYhN}2dFHfO`D3U at mv0@=HG_4aWvF*Scex{co`7s;K+?)i=g at 8-$PQqj1BCezOl8C6 zQ#RA^k_xb!&FkXLeF(A=Xnn8*&|=~BA;85@*#J;lvKAl=4Gzc9Ko!dppaMhnI?jd- zD6+vKc9pE&DywF6X-l9BiyvZPX)%@j!zYj9 at zbXnMk)amCue2>aaRDS?W}fv|NcX~ z!6LE^NQRbRI_I^{jE~3DhYvF(Wloagz_!`sJuF+Rf{vPi5Cp9~^!mDcq8}z1#gdzW zcuc(3^g^Y>3K)UsaApCVHOCGZm1P*njP(EOcOh)e3qN9OsuFJ)T=Y zs|BhM6o`2p->X;ojJ?vcVfa<>=W|ssh{h%+cun$qfHR6wFSe`p-g*qwJ%&RCh+X_m zW#&G6tyVjbRFetf^uig|GQrpoceW8xd-0M+FAP)j^4V_TT|c9TR-rFHH1!%HEDQx- zuzr1Dd0%9PipkKlpJ}!G;a at 0Sf66Lfe(;ICBnx9tRMzHgnG6W7S;$5q*H;4lW$B=xBXBB9&z+x8H3n8*3)Zv zy#PS4I8X1qRmA2U+VY79OMdrdYbo=UWNf|GU7dh64wJWfY-!A0VX%9aKAYxc9WXjx zsl^~Ne6&)HD?p=@6GleHp>6)Hj0GS#uFyz_&&8%>XM;MjEh9tbFT!6J{*C)fGlD-~ zHs@^<0Q!uqMPSha82p{@{_NMs?;0h1nzialgfFBqz8mq8X0wooXDx7+@|PZSjT*zk zzPzqiGVGfkY0gjHXD3s(miWCBeVher+S48MdUbz|oIQx~av{d61AyUHQHbdcdaLg+ z9=p0bvgO((_qXA(9;D^9wM at xy7QMwv?-v)7m*2jBpZsSuK#<odZlp>4s$Ezh}+anV2zU*2#+oReNVi+$vylcxO(o3XZGvuYy> zfHU^Io4wLll(sJbLF412vAnbzLjcK#4<4h_m*bSZG+oS235I{2TWo(N0N{M}{W!5id9b)*t? z*1rf&F;qW3F at _u}Bcry`i+z9Zo18n{Uir(ytG8#;#t-kbqW%}s3X#d2di*0K1uPYz?l zyeBNYoumEO;%s_QNF91e0K7J4y+U#JvOX)BEtS{f1#V4`ua(kgoR at ig0`HyUL!PBQ z4zGDWK>YRzYvbn&fcydbb^#L!5Dd at tcG$D77zLQy);YZey)Y&g^I4ePN>iDECe#AQYEEAGd!&4>jZFOkG at vZV!akEB?g~I8-F+75lPKI z5QGYJLmm*j`75r)ziD+D((LLnJlm~%COv?_Ul<{B=CaDu=E$iW`M3EPdRojyMIt2d zH4G#;wQ|rj0ec~8F`Cn%mr`Y8{*o4Ot2ZQTmbST<=cy+}@0cJ-pO at C0#)!SU%;j+$ znIR8_?+VJni4KNIrL%1Q%o?m-wrRJX2qbC(Vm1V&2%ts4`m>5kpl!Y%Z_3}9PiyX+ zJbuVI*ihQy4GkNs)@)zU+l|mgp=Fy4)@1^*o(;VOsd0E8zfjNSe)4encXMV0c%29? zg}m=^&uy`ya at C`mIXL{>nLqR5J$g{Bkj!S)(31_vO+3E?yf_Y0E83TNpCS%El7P_a z%N`Wy2=Zfew3?F#Mn`KgJvD*lJD&MeCFBg3!a^@by*dN{f<8I>et2K6;4uo?oGziR zZ8O|c?^S?b{9J~DGxzT{2H+zLemuxCu zen)RcNIa8G1pUVLURFyE10u}_wm;Yq#$p2n?dUJPe6}$}K4{7s#-iJB^z5 z7#J+3g6$Ouqtu+)Drhz2B+wBB2 at 0iWL7btk&5c#gq66c-KiZKUr_gOTsDB89W4Kt3 z?)y%_?oO<)ZlKs#Vw-1B9-N(;(+dwme at 0sLLrr1$ncVLT+yj74J38r-ds$VjLe^+- zx`sVs;VPcM(*XEMhoVtmE|Qm_;!G!jVDgM1U8{_x9i1BfTQ9P_^s(KL2Bv8S`5*M* zs}=Tc{X5@}qSjE;BP)0`lwLO~<%9|3lpf2RbD4CJh9xs}HxGdkLfkh!f~FQ;z(-zFKn!Ptg~ejXD~nJw0!FP!G`m2fN$wqlQrd zW2X!LXz;q^9u`5OJDS%ii%k`9h=d{abB!GKQb&OFzlUxU^uBrh1NS~*jU&h$4XIPW zSrsrg7)|7(X>ZNuarW5LNU~to);bzqr at Xfld3k(t%(Yo#Hmq)og at t8!s6W$zY?Lk7 zY%g at gH{ZUCgT`r$)ywf{ZYqlK-(ayPJ)BNwvC(v?yEl%v_5gt0QG5EUeX)#{CdX*lZYlN|FCW;)u;o(8Nee*W9A;dcvUH7zu znWrbFa;~PiflgzPDTX1g8Hj8G5HmKy`w+szS(!PQ#ARO5IU9P6a@%PfLEPK%j?G(G zS<4WjiJ1ooX$745W9A-aUnVwv7|U{I8iHe!N5{wWdfQk9R(xjDUxck*LUT!UJL`Ja zZEt>*N%`imsASFnmMUf>U=}niVtJjhfqMNM_}m6MRT=hmYU!$YTVs?2koFKeKfA^% z(=t0r#@R)oA0RX>h*;U#2Gm_d6T;bph*mZ>!hz9c7~GZ==3niibgVwp^{&;a6|ayI ztbYFar|erj1((9j5QxlRaFtR$XgC??%)l3bORu`fk18$9PK=_Oqval zQ96bnZAW7AylrVPC8HB2KSM}fwRL7A>=Ugd~w#I0Bbe-Mp#2vR at bFh41D5j)-Luk z!(Cj*=@!RL1Uk>G=gZ;@tx1)e0@$ijdm>uEqW9CY*8`mMN%_2$yjcN_Fv|)s04rRS zG-?>m+$I&5m9u)N^~(Bwm6qez1XZQ}R!bV;mG>1;rqJj9hMW!I3|Fhrs{r(z=M;>! zW at 35`n~@5zL}YpZ^*BnOTC5sJhBh*9i~Y-9fAEE#d4;`nZCFJh=F1S79y)HD;Xsw+ zaSHD9++!7r05fy2IE<|3<-80_yRR9R#W>Kjk$AA3`*cdTSG<=O{N}U?0heJ-CnXqJ z=>dH70R9X8-I at 0`H#doLs%IE>1jDCZt3(YYGK8f&G+ap_W>Z;}Ldo1Y0G`o{oW;s> z=%uqd_Y^@bu+|rOwDe4|^o&gO=z+kf97fg};xb*tqJ at 4Gh&gL|x=laObM1^~ z4Tyc{RX}NeZ>GFxq;Re_p6-M`JNp2`C at mGO3SO^|9tz(tIN^Ac=cE_&JX;}Cb5#NB z$QFU0tu6%HHYXm0uX&)jYMy3p)WOa^H0=mV=fqcAAw)hmJvo!bOnU$ajVwLTj&Gcu zoXki at 6Ipu58k`Q|1fVPek>;XIr&mch3 at W?7{)|z>xzE=Z-U+AHfSN*#Y zkXE(2ZD4#huEF_R0j|+!3W_iJKqE!qr?*fqpwFv8m3vqeWw`)%xPt)YyeIc{31kL1~Z`-cx%K|KJi=t0{D0GSq226U at a?Ob7~c7Apm z{e+$ZEdSy!{uU6u6m_nl-ZL#h at 0e*#?SQ+TJzK5aC6HKJd>1dCK81if=Velj0 zm$|posCo)r at gIKutN7-tH`%SgUag~J#--J(=<| zXHzRH;5XYT!On5RSz8!--aOzR=Nb9yhSpwu@*);6WE}D^Xw(U!vhc(GIy~G at c{TT7 zK0SZ$KP;j9rZ`CC4E&)?F+Bo;i9vwv9y+vnbegtOo^sV7t5|#?hGYXLB3RuWzF;REsx at 3()dT8mG=8Z|on(Pk#1`?0dVo`~h8k98aFuv$ivh ztYLV;bTRYwtJTq1SZ+lyKY#f&`XKJ at l~oLHXSreEn)8uF(S)h+ZPU ztF at t+sSn2P+ENy?n76sK+K92qd5noOjNS_J2i(Q|>`c*v@!8X-!MY3mf)TEp(ecU5 z_?L>~q4Gd_E(|p~-s^{VZ(P-m3WO{{8 z7lboAH5Ky^Lk|M80OJk-{07?lVvz4882u7~npH{=qKdKsz}XXk>D at Rpx&J!Gr>7z8 z(HI;aLfDm3p{O|6#{@$+UER^Z+Fr5;BG(%#_QwR^@)_3Frw<;-=s+dL_;){tq17U& zI!DlMbB`4Sw+(Z503JY$6rAa0Lf{#y(W7KYQ?TKIoT9+5Bxd%sqZeZ38Bvv>cxND= zFCd)A zo`2^6vnI&@9D#QYQwj9e5WLPs)&uAClO3*ksL}xZ?87{cz!T7#!=;DMaBeCDo>72e zRkn;I_`A4wB83U$fXwT=Xrk0Fk;&aWpWavnlR{D9XC7b=bY!z?t8@)j^>7AV2&NlA zl2wF)Xp39~@iyYMKa(L3dp8OCZdj)S?PbiC7iJh?&9m`-!>2X^6^|;o749;4Z3w_n zMmZq>%mK{5 at p%=d6KMJ at B2ks_J3Vmb2W7Db`)zKDc^!IhY at cG-hz}uD1^k9ixF+k$ zRus^Z;7kyxHd2{hBYQ8{{}Zlp&u0e(GB9KxLdd?4#crMhfz0- at Ht~3WR+oG4^sI8t zE4_yBl%5K;j)1PS)83rD(8xuGZVaaw>eS<5b*q5U5o~_OM0~v}hWC%*L%;K8Hc23; zm!#$2(_<$f5%8V+y1_!fKWE)MPseR~kj>%k;vNqiik0J9|&pCJ*9!CE;c#|Hs at LnsF1&R}oU>H`S2a$5HGof|}8nr)Qp zxwH#_;id}!-Z{qMA#{Elt6Ljb^cFL)#w&~@z|bAEY0oVi9BVY$GUyTjGz4(7qVMV! z;0{2QCi+m=55^qHcMQNR#Q^Jk at Z=#!*qWT8H%z5a1gx*3%#V52hYx1~1m;qjcW8P* zi$0YBYZ$V6Z1k)ztZv1I#x2UZ$uEwt?vMjF&}jk1ev_cj2K&;k3OAc*vo7<%coM*$ zg&}|sXh%cFyeK_-=kU_uVIz+A?Cn*LXHT8r(3$zdYy;uJnl7WmFEr0>y~H01%3h;!(xm+KahHHLEUk}2 z#UYqGCQr=G1LB~=lzHVLc+n8B1!A``G%*^dtbC(!78 at 9|q(;v%Uj4>z|Xm|F=7~bcY#qcP^tiwFka6%7xsF2 zYcKlHe`C{Qv9hrV{{Z5;Y#4vQzUaj&hSjb|uHvKX-p<7$q3=Z_g7oR+g z4h>YUySLMTR{`(Cj^e{GgZC_;YX?yM;|~iMQl)e at 4Gi?eLyW+6Fp}-fN?o5N at Ct4x3joIyn{V zoBIHN_9 at u_AZ>IHnzu*t>egZO6i1^I*>ZYzz#(r#Ya4TC|v9_}Z!#SczOQ#-V_0i0K0cNI^TNxbY0qt9b zvOsW+*2j_&9N2GwV9Pp z8z_tI?X9eAveIzfYBiW!kJ$L=XjU29>&pI1o11G8W-sdn#G*jWOA&wxR27ouWzEda zpfsx4_s3?|R#Dl)!-_6Lg>w%du-2YrN`OKL!-^zqfEo*@Snk0p`g325ry;<8> zVhYZzpymFyjImPnW5Z-Styk;gnLA<5qov{IteH=e;b_jpgj)sK$4L*j2<;Tetj{w4 z1Vk+E-h0Dr=9ZX8XKs at TvE_ks=8tvtwW{s-KY$l6_RA_Jb4d&{I?l-u?Nuj&7b%&c z6M*443PGTC0TN0V`h^}g6y^0*Don$V*z5W1T3X%QD<>!@#Mv`F6nYT!4yLz>mx{90 z(VsQ3_K!I_0(#qfq{WWX03W8+?*6O%^z^#_{=smA>oVshbE#OH)xipTfuo^cXRE5f z(hI=#Oi~ueo4l)ctd&1>o1Pk7|K3C3rC77MsEv$!ut>FJ9Uo at CC`&_r155w{Z77AC z8^u2W`qF$NzN1X^?wZqfhmuBA!0enGYjUKT$;00J3Q*ZvGxz52O)T`I<{{VfoUc-l znXGIjn%)y0Jozho67p|Bp=(iCnk$x#j#-D#ZEmb|*WIgi?`Xm52ZgH at t`hWR|1X8CK+&Rz0rt7TbMnS$!o$<> z=lpETD`yvefsDC9_V9Z0)%bTkwSINiRD!=r; zrBT5-TOi`ZC;2Al3-dsxgWLc}?GvhTEUoC7Rsq{Q-*9z5Yd8R;+(6ss(Ax6iGW3p- z0*{$iGF}~xr}K~E at qWPE;4SBEaYoClEf+&e$RiCxdDriPKzUXWXbz)5LYW|d z6GZ=yUOjj#BS9 at MxL-a$kDv0xd$eRXJk7Z)hn(eXMXKp8=7ibuMxHmUtS8G1N+>fy z?A0xQYrBb&@ftc2gMDqC_jItY#iTpWcAk@_X0uM*HPS)T;wr=LTiI98(%DfD;`6T>ufiZ0641AWnEQ;oK^8|h{A9QOD3pbw|}6ab4mfczV?a#CJy1JF*< zr#+`fp}dM$hY^_0LJ7{>Q^XR*Jt5wnw(cr-r~KfL~sxqe}49*5}n`a&v9!aC`>7%Kz2kz~aMT=)(p3 at vg0Md{8Fj!{*9D&R|!r1Cy zZ~J&}PoXcid6rK;dmcae^kMX|2OXTNqi?N4xPz_-!4r<8ZJu0$m&SQ6uXlp->`I(8hzAz`YEuKD~&zZ_QyGB5-vQ}bXxDp*d9v=SE zK6*u%dvr{R9f)s}gEOD) z9${;kbaQFvs0Z@ z*}$q;z~WuO68QkCf4jPzgkad at 0D)webCX^tW~LIYw?=ifpXUQRTtoBnEGAuS|BBli3=M3cERf(x$E zrYDgN$OgpxUIA(@hQii&vzxh(78mFNb8}5Fm+mr2otGdu-T8ne3wk8zt83QD+ZEKl zKU)WAxS(84P_XW&b1((Nwh1^tvz>!QCtci|GeF7erSvQ_1nbJ74Xejgny$-Gnf;l3 zk8NjK{owQ at 0Gil8_p+y#J;pG(ZELL|+s*JE!!=!9d=SRXYD{R*Cq5SdqF~I6a?jh? zzdMA8g#=b`DvYzO3SdyMZV1wrB=`Jmg|{BA9`0)>-Bb+$jAO$f#{^`KI-PvNb7NZ^{Wq zX%PV at g2|}^7(D|600;QAiei}!8;=yDsXNHef2cuRlA#5#PYEMJUr1e3- z-!0aJJs8g~ZZlN2y?4Mm&H-j8vA)~Nt<)oN4jpb;7=c{6YwyjRySBC-ggm_5ff0ht zy1Hruklp~=BeomxsfGkJcb at W58urY4(g?ifeD(o%o|_=Kg6!+*mVW?${oMedMS#&A zKO0Idp at 5+S_En`Z$=)|GTK6%WA^a%oDT5vj$y(guohlgYa}VZFPy^XgV{>aKL7)i$ zOF*>0zHp3Nr+dNe=Jo)5)9Zz(;)uGPsNhQ+MXHec3zYE0V)ubuzy;a3ai zl)YA8pBx-={ef(mWpexyN_L=HgG~U+f;Hs>41NbqX(V^@7RaLdX zoc|U8Du?}DwuFJV6Yy#M at MQsovJ=kCFFl05*L%wKzAwQh*GMo3y=uUk5}+(LGJ-_l zJ;*0+ZIOC@=RvV7H^TT-fU>5z_nTF9Y`joq~j(eWZ0RmUh9R?Xjj**wOtv%#e zF)Li!ModzU>Uf|zGv5a(RtmuU{8Z{2E zTKTY;lQx`0w79g2PPd4&lEq04cCVE4NTW4W55m||GGHC`T%>VG17J!Gb0s at n-%D?RgmcZ-(I%D*N^5$@>!dw zSIE3pk;eh}p(lShxCt?tzGiyt=QumAiDXh?l_8J(Q1Bkr8`(`;-7cph1W z0on)fJ+ieBdkevtPS?@X9&_{KQ6K7!rNuX#B?besO`5alh6hKM_GRjV{f!0NqxB*7 z;U=~=*P_rnkaK=_572Yyw8q|X_CfUdo;;|>#j$O=0GXdZ!l3Ge9u8vr at H9Hv!@^J% z05~-GrA%s-qNsfn%VWE-pTf|*F%$45DD#=bI!!>IttAX4+VJ-bp?|<8Y=h{X4XhW& zNf?6zgM5aAEcK@#cBGa)0K577AVPEy3(CAYSPaIw4_i!}A$$aU_7q%PUWt{hjd=5Z z0fOAgb{Y2NGm%-3)Ii0#pndV=;o}VP4p*yL+#!lrVOybWY+Vp#e>!u?hF~B&jGJ3# zo>(6O$l1Comm+`HO~1u+tY?+(WwZeXHxBkWl6#m4)D9uo|4uLIKoKIu8aiPw1R~}e zn9F8Z;-k0C`|6GKJ$mEJ5i?&y!7S*}x;0<#kUh4UvN;vzqn#KkMyVLiblttY?0Gkc z;wy4rHaR_qhbK+IkQNUhN^IpNT0#>h)m?!}8nG}6*F%ZuteWal6axwXS{cgfU z*LKG}Wdw6>6vztFY!$?P+?(_ua*kFso8u%HG>nzivR<2)-nUceg)K`(kk-F9V&C}( z7MdVa>j=TDfc6{_l06t2wwdYb0Hi>J5I<}6ulH$0*!NO_&jTii)N*r*gnKQ{y$9Sm z(ZX_l?`1g09#4AYt`HvAcjt%#lnOxEN_D+GhOGs5HlX5p_oF> zJmb-^u>>tPbbbExd3GY0fAAni^vo-#bQ^M((vX6CcVn6R8g)2`)s>Z;-)sws9Sp;F zi(6S;r{`^FXAe3GKyU%2fF%wHm3CB$2_8Ie_S>ldde5)#J7RX`5dho-^ja!cL;U6s z$-m9RljwJ3Ci|D3Bt9$<$viXuWvikCl%v&o%~M0ESSRd at 4ZqDh7Q921ITC9YMd)|I zc>yIM_%;gSG!pyvNe5O35A(`~#N1Pl#13+?iV>=(=$Pjb{>ZPki;{i~l?iTgjx4fz z5V>U at ogmD7>S5&HF+dApl7%aG&~pJ=7%`_0Su<2B#KY;S`0V-9ENB7R0XT|ri1EF< zwHD)}brjBS3<5U#;N=0%Z%CkyaJ%&X^s-)hrUu7us4eiw=;*~=9}p5YxTvn z4UwQzxqWwj9Y+{M@>9J&mieR0Yg>HI!nU)hIbsvg<``9JYIk!70Q!)#yos5aX#f{8 zAA{P7GM505Bfwt?+BDp37{3#JrEW8i)!b<(qS)ikRID=g-P3906whFrwjW--jY1Db z5NC7%xS6Py;=xQk(?x6x^y}Y!m-2Kpb1ng2Mg_nRd(CqUN;{e8{OI63kk0^d`dU6hZ#$LiZC&&Bo$;&4R&MXMs**}g|0Q~6K1T=mSd)ti!V-{7tTiOJx zV7yMv at J!n(Mecjd*`LL`Hw)0#an5)y6s*WTi`CU__E>$_{>PexJD$G+uXXVJM=>!z zgI2b1fXH-x9ItsyK at p+R)EDEaXhpU0=qUZTi) zv(haq2obyjfpTdOU^vX*IGFR>*aJ*{x4jxm%|@)99LDa|X&gfwr*~Lvy(l)U+8S11 zo!4Y_H0m(VaBqK%+lQ~n!6A$@RA;Ukf>$MA%as)iIe0k3lqTrwfzgt&1mA>WA&g!X z%l6x3nj3{hdwOAPA7W2F+p+jrla!qsIM9z0F7!ta8+?BSu!GobN3*oO76&Lki#ZPY zE>Jb+LBVB_!Wzt*lM4_UR<;R>Y(`l_DHl=Dn~j64{Iw^c7L1`A*JfBa!*N*DT8Dxk zm6_nu5U<`?pW_Y!GDL3&^(JT zB%Z?1u&&BhOGGPJ4`(Vm1u+WT#AL(R62aZI3g3HkJ%Ep%EOd1K?f%Yu96f4$5Q(Fz z%+CMrE!TC%r};Q4QoTkhP`#LX)O=+t3V#ptwqE{h;XzNHs{lsJT2DfPx{rcg5W at Z1 z5C{S>LvP;C;)gC32ylqq<@rzu0y;n!GB~|@S**ab31sXkXHh_#UYnwMX(pH7MGw}Z zBhxHuuvJcL-X!Z2xOD at reQ&7`Av~4S6ZA}t0N!TDYAA)#RGxO~ADNkmN_9BF`t-zj zJbO5eLL7|g at j6y9#te$C8!*s=p<=(qVxcqo0X`1rA3#A?P`LM;e-q)=#qVker*Z{B zAc%z?+W`zE_H%cAjdQwY&rota&)VL476D|a3R=~2c3$j-p%GsiAzZTwFtu&aDGJN{ zOEd-Ng3^N)&n`}~s#b5Xp+fV!hFMQluQLMp9)21}xzCJG at jNpKtLc~=x9!SgjMNgwiZtYO`nEN-LtEtHWR|K;0b zjHtbXW_tLnG&B`L&|Ve>hU3`mV`oF)ZfQ`Z%l&N~VnVw7WI>StL+^|r*J7DJ z`|DpodkEycEkNrAJOt2SFP$*6X=7jZ)Rs+S0N{G9j?!?vR3iq4tGVyes-b?P42D#l zTboV6p(lIX_46E#p{!LZG0gKe+0!vSYwT$|=l;pV*_gyAaE#{|;A3VSgJEI}T18g( z7vk*rFwfOqrnamxEbKIf5;XX5eva3Cj1JcmpcRn$ZGvsi$sTpv+nZ at zp8|wTuV^@R z3E8Y}u*KBL(IMAwMg?Wu(SFAs8s^40Lq at Ft;H_r1qBaYUxV}J5CxragBSW*7_ne(x zcEA4A1E>t}OBwPJ04hg5dH_GZ$7qB979b1oQcUrC4_u z{9U8e>h<&{Dp$CUa{Q8Wxy9fc9Uee$@NW!`a||9ZQ&!ZjuB^tBxyb}Pf-MUaZMWul z!>zq@*3=ihtYdp)H$mS%^a05L;<{pOb3Yw3!vIK&aO}-!7{3lLZNL}X4fDauv9ISH zaKlEV!EcIzk)blWK)Sr(bGPU-^TsM86WqHkHlX=iWT~ym4Bc9tZtI~T_|}b@?1p>0>_rwI!l0qrGe~hi_^ocD73>90O(uf z#aF*y;2ALNHNeoJ^X$zZzWaTQAQyWvw)VgiY+rWlaB_?hh3eQ8VEPOmI8WZTqrj2R z%p1)?AB5-c;KRw`L8##-UN0{pZ~9}lUWv}@vv~YsE)I{Kr5*9&DY~-12VODCP!1=j zq)a+G%ColUs~hmR_+cd)y9dx^M^upU75GGqWbUHpzSVG~9J-I^fARD|bl;!GeHftJddl-pl at W&K#yS)wYy?h#j6$@R#NXWLzP at UgxKsR?WHad~TR at WCt ztm70pf}ym%&)?3WCjdKO{}6zx+0s+&Ou4zac?6h5hXHgJ- at c3S;R$e4cbsFmmC$<~ z|J8r?pMKeA*kpVxHdu_UNSq~ksD*}d(CR$n5Dlxz4B01%LlWE+%t={Yj{7r+RR-hl z_QE>?B6dFGqccxL)qQk&wg#IYwPiDc_BT9=J(mW(omrUS2MQ|5VJ7 at 8Xm2|e$ zNg{=Ttgfq#`dq^>E`WuX1Ynb5`_Ji}5KOf^8deMTU}Xy6fKmzufT4{!y{F+zfut|j zZ0|cgu#O%xX*)e+5TX|A4N^v6x4OEX%?w1q4_mygZ24+wqo%+R{1>uP&b=^@&=;vJG;hz*b*Hm1%)&qtknjj1upH{ z?nDQ#k;NMbXO*R4RAgl;3||lsS1~-IU>DdWDe!MCeVL4P`3^y>z!*#05TfA3YUy^v zu>w*+lKZNnyu<>seM76ezkW&f3q@)}R`cCVx_7jbAyd>o>*V(Xy-~taWqBF0bN=-- zJY#;QUesX}`VfM{b{PHTo&<|lnM(UkskuX-b+HckGQg1Rvz2|P2q{MsoyR(~?6pfh z9dU7trIvYN`>0w-)+F$NCJq#9gB&~FCp6q?|yqUSHh7NC`kxPV^ zVYNG++Z+~+MVpXsAMHgMqu>Z(Z*RR at 6oVcJy;ANusxg&a1wJ&VNbsabX<}?VdstcE zWzRixUk%Gv`b!AgR&JMaz+!+a_*En6MuP!>*F?b`AsqDrIHY}#m*bucTP_0(oZ6$J zZB;c#D|CE#%=usxX`F!2?PF*oYeV;T{Xc~dZ*Cny)yA27lG0KUUcEzk9Y!zfQlZ;^ zW^xQ6%U)_ZTTyKBixqiC?DIGv$TmxFU;h9=F%(^kovm#Y>=58wups^21G1z6ZU43y ztySanfPI8-9o41hO9R9N`eF91GBB84AKPb1BZ3BVlIz1Yoq at Rz7q_SJ=IyIEM0RO_ z86MMLdPc at s6HL<(~b~`YjZJ-e)E;A^=+EEng!mO30TI_Y#I2H}+WT zJs<=l5IJ?YyAwbA(HHsevEfQoI9pQ<1dMvigi?AQtu8$Wz)W&&>0rc84^xu>Q(Mto z#`N?=^6ApTLTs+C#ma{z-iPevzJ|`Ej~jrIMwJm9_b_E#PhUKI_#kru4WIQUz`Ef) z at 4|@@dOPhi_kJBPj4|jWpR5MOm=pjSmK6Z<8)(Eskt|vO at IUqd`t=b2YQ+9&2-x?e z?10u)-qM`8&FLZJqehXk?Gy6YYbjGTGQFzT^E?v}LKAv*vo#IZ5Zr0NvZ}a%&ide| zk--w{z00$-MbaUAi!@4*VKK}VU at 0rM(X-O_+2uXD>>OUQlLlveeZl?UU1ZerCyxPd zL&*Qu%NTAsO6Q~F{iI>@8*Ni#UVSHk&wTou zd-e>vKj*BCNR$Cg)zRSu at ur@fpI&7Cul#AgYM*HzJj)Kc_#VAs`y;0SIWfvY$ZQg? z+(-USPmd!5(PPLp$Nd>y(75cxkpASw^VG#Tw(|m` z?^gP{N9HeL{c|S$oB`*?8L2;dAc!rDq;)`G2fDXf88S^h9!=UPx*6ZE9K}z5`Y;}i zRMU&S3;!C?=xF0w2w+od>cila17v1n590;d_5cIkLainA z?DEQX)&S(#+X3 at F57JPtVUUm324e%7Uf(?e2wt&odug!UE7!RG7_vt%@7n4TdRQal z4xN1xGo0r-=h at x~zCfM~u_uM at yBMtk5|#IRM>!QsgBHsJ{9`LMd(=kCiNnSj#^Y$x z$-6fP$R&&{!0ce56N7IcI)*#q%UhU3Z`|_cMkYCz5m0*HBuJa*wmNbb5#%Pf+lHjo zh}F1%nZ-{c;6 at R2y@00+^K1YbHWwb?kUCjO6XMx`P`36P39_63F*-3FbF*_X#Y2xH zT*fN380h650IUNP!8QPLZNswW)mYeAk4-&n9L at oX>WBxwKvCZHc4f%O+!6~1EEq7! z)MlgE^9SW3a5Klt?;;07Ikt?@`Y{PpkLNKAc7zf>N0DlAA}z8~PQhbks?RJ4bM%$M z=^TM|2}50Sa)xUKL%L_Zg)K^~j1rU>_H~??jVBE?dFZxc;K(6jivmRX4s>sMkepAe zfHBPKmofWJo--5Yv5q?cB(`u+iC^AbWgeDcDKp1z_ at y{Zpe?{PchJ4od#M!GyJ+5{ zO-C&Z$?%=b&hKP?rJjr^AoK3fVE(<8o96Y|M`@McTkN5=+r^&WaUY>xyHbR@^)K1 zZFQ<1JM%NQH3lb7<+#(1&QIdKmdZNOs z3YfbBR>OoNUb|AEFP)1iVztCj#F00*lUYa=6Z!M>R+-DG`Q^b at u5Y-&C_ zQj77i)@zKHc_?+>?^s5?w7r})TMMwmVh7k+>E8q0_F*jP at fEz>p$N{9BaX*2u{v`& zp$kqO8RCdL4Hc&WdEPD0%P~UM-#N9w at qa36y)i{VjGkzfvmW0QjCJYAi5Eho~`7fv19mETG6{?*!=qZIEsM$=P#bX4>t+qE>RXm=u*!Y z1eXn7O^MOdZSJlUR%|V!r0xW0+udK#GK6Aprk9+;s~0gfHkAc&1BHR?rD;yK4fk*5V?bX6`DwA7z)?A(7YHpCRRHeE z{tgDiW%ej71L#&47cW$amejCppJxqGNfj;$UOTeD7las6_ zw~Aa(;?%T5_PbN*TPR at e-G_z6IDo$No*o??!VB^^h7xCOg}fkAPpLd^uJ4^Z&c7`n zGM%L#c_a`%J}?dDI_j+1LPCcTXbc at 6Hj&8~uKNdAO7`WvOOKNw-y7GA5tmT`l)hhg z5 at q5)qy+TjcMVPDj6W+QY;K*oxX4peOI(*UCW2KiB_QOxB21vC4CJc$v-|wf11P^K zgFfZ}nnNv3T%#9k_U%3O8X76XKE+5oisy3^@nm))hM+$uSvjfb-NFZG^DG`ed>AG8 zveotmP^7#p4I*>l(c?>WYCUeD9|dbSV8Prro4IFN2?myFC5MN*X;aRj&YO-F<9-Z+pzoPQuHL zG%)n+ni67l{M>`-n3gYZxYHcB!MXze at Mu4(wE<*T8-QsWaetdMVtRyp zZsewUei!dn*4TTSv_m8OetUZ_`fEcrXAQHVk5114YdZ-rw*g=F+U*;tpr6{}`#=1^ z^?UePhrvzCJN5Aq&)EeiGAeb+=ZwIpXVwoI@#4iybaRHsto=HTj}E}uUVQu2N}RIh z2h%fIL0_v)#Ku1I0%OG#3nOQG8BdRz7)Z8^>Hxq#Lk90;UbA{#W6%Dp=QsBma@|

+FM11?k5J$Vhmv(8oURG@#SIOrh!Sy~QB5&`i_gHuDaFE?$qHu*oPT>If zS-$Uhu7#D=Xs9G%mJtNeV}#Pw+$`V+YeN at 5AVo`fQ?DQh*;v27ca!v at jnB-2rpq}s zLoa0?ptG05EL0oN3DAawXv(p^)Vu8!4 zo)s8f&zy}>RYna2+mWFso2a59G8azo7zAv{)zB>DmPG^R4r&P+-jPuSnhFam@}QW! zUrT7Aqyd9kTYBnj$ZPeGVhVVa!o$zmQ!FPu=oLeln at Fw{Q-S(>ftz6qbJeu$?D3c2 zmS^)GTG&>v3UKu(nroE>4(`Dmor6ze{w!L4n+|z7eXd%ie2Nq}>8ouMt=d#n&@%&we>Mz=~7z6BVN7 zD*8L561#4tB`^NZ9&T3rs;qL2yb7$h55QxXUqS5LR*N2N`7%EAVq=OsDur#n!jmptwO0Md1+^7KP&8t at Rx)1 zOFWNzt&z}!@+cJHEzV`I)SFF-tuP-%D1W3sY0?QI^K)}yHGA2Fe3XmfSI^pN<~~4H zHVKBtO;fN+w6VFD-kvjfRL|HcKid#l5O>I{(Kt$>t3rM6NbIvpl%?rAN2OPDwzOt0z zv z_{+8>r?HLUy3g}#1e#30g+aZtv=X~0KRva!%8|~^^{jDrb2DQo$RT*P5Ch%CxW)J_ z0AQ=gPg|<2epre_vz3=fL!)x`LMqZP)SVKl&_c0AO=Jv-c=_Y|%k=2!jU at V{ybG`*vq_D2m=fj&t^X z3@~xfXh4V1J9NLcwH*zNLnl!T-`AQ&1|l2#_PB5Vr}g(Y8Y`gB6gyV z9=9sSN;W%(hxI1*@P56rjqS~pdD+PWz1R+LySVU-_jt~I=x{wYmQLfRpUuVA>S}_t zLJ5QH>@b#>KE#K&yYcercnp=%Yh3?ee=C9G3b-;+3)?m-6#TnR{>}nyR9i4PKdEVy-`EuO#uvGbm7(a8!=oTj8k-m zRqjrpX=fi-kRuJ~P1k`&GUf|1qdWFb0GEC3vGsN_uD~{2-8q17q&k*PAopd5&suC)ucMbPn;4c8@%X_^3=E=qt~EAW z9`7elA4UTn?-(7de7OdKHH3KwL7SXvafM3X7_>QjcC%K%+ReKum_xYONurIwmm%1y$<4!qQ9vQz01kE_kj3SN91o-Aw_^e`40OlF8A>gn z*i8P-d8JsQ7C^vJ5YBb>GCOOYqd);cw!vUyWk?U+P^okNY_zPWPN8h>k2c}Q)+V~& zTL9=jfrAO(*#Hz_F39^>L7RXE$&$(JT*o<~dO%H_wX&1P7PY1KNw4P}YqLVqsy4j_ zRtKpt1z+9fLV?e0@|%P5VSp4S5R5r_dQ#1$%P<7 at c1?yu6+&sPvezn4i#*J^$dCm4 zVdz4kdXI&Z0!xL<9va5AOg%q0vGs^m)naY?dMOlb at X8xe#7-j7 zvgEm8UN!?}vRN^T>CEDwhzTpk0Rx6S3NXmz#3=V|i>b-6RK7g`!1%}sC1PHy33+TptI6Y5>8B`$B#n$#lRzi-9)?#gQ6 at k=9 z5OUA`JD`*L at KAcHbdc(CHEe4u4uM!7J1#hNx{HR9vzZGTBka=?z|7d#2!d=c^WF># z{*%A_s~AKHcLF4y06v`GSO%<)k5w~w at x#JK%*_IV2CJ;M884qbg{I0`cx1Rm5IQu7 zG6m4Me at +lEv~M-tF^WcoEiK$ab6Ti&sW+EKZ<#GhUcLK}&BE6$LW1Ui=ke^>OB6Qr z$nP`U&iUxUvp~T$nR=lIc^#o^Li)t`c;=3c3{~Rk{Db)V+izk|YhId#$E>n8Cn|v^ z_ppCxowKuVC6pXPbp#~zW0>DFxHQ+0^SZq}$qLw+$q{JnHa%KJ{yslFne?!+wi;*f z_8=fdzmMy4&g>P6^qeyrW^Zn8&*QkU6Z+8mrCIj5)gERb8k~dSS(Eog46A_N?fu=@ zJphEC!P9LHM!!HlbR#%NvsrHA at H8s*@r;6445t^%v2pT1fipNjY1!uG%@PWd>*#H; z8kk+gxIBQ~`#6(k)KF?Q=xB0!48H4*@oFWjIgvy$ZD at w`Szla@%f at M39iPX^RwHha zsU0_t&+Lk44<1D~{QY$HK~BmT9;mb`X6qv{JwBQt)E?-o10mzoCW|rziDf|Y5#Zqn zISi at A%NNhtxV!k~>+fQI7DN2e!&q2cOu6#yx8EWQdSh{EDRZe_zj>3nnm0VNvdR$t z6*A7f+uz-fhpfp$IIkzL8qkm`^rzzUIw+0!{kLDIJlkcTm0K%o>nWch(Uf&X-fzQv zm^cpE`v&}J-$B!LPLY*&fZ_)G(E;%N77%$#1n%fOsmMr(Wq*Wt at G`<3~8d?_Q+ zlZU)juBNfZzZKzJHD%|Yeziayx8!{Z6!{#FonTSJ!0X6!%6{p9ACO&~0koE1$a{-a z4DH!iydP!kD7bIF`fdF3*RP_p*LlGgv9ouavQ5Bz#xplKbE{^p4mQMIK&EME>c!gw zobAI;{naXTd6 at G1(?`?b-}8*t>_FcIK+DwRBu2%2%srfrEsTy6jNgazQ}7LYxwC;W zd>TU*5+U18&e7q;{^;Tw=3pA$K0P^vu6N^$Panqr?4SKr3}LbU#ZO+uU;KDJrU3IA zpEhCdLx!&|uf_0CFW|2Zh}nS-+2b~gL7?r9YYcE?0Kc~tlq1^)kz>vD_TM1O;c;H0 zF#@lTj*f*h_8hW)9 zuiw4T6eCB{I&{GlFw;T+9O$zqMx3K-p+{u&Ir8ogZ(gH!#-YE<80fudz9{U833XbAPt~^ z?C)gNUONnW4ktN5;*#&Tyw|YjAd0ledj{&&oEc~f6|EPoA3abC$bJq_kcMfM-mGM1 zgoW{T*W`DtX}ys48T=o<>pjcwwo2hUf<504)7cm{8x#BDvo_}ZnCl^s at _DQ(m8t!` zqg at 1r0$sb at TO`nd$P~$I3261{O_T9?M7~=4qu`L`dtmsS9KkgemWGQILTO*4ko`R$&Fh$B;u=5Z`w1{}aIWI>v3UmTewpvs1n02hDOD`vRWLIGzno*eGQku!Nu8eHol+F-J)v!l2_zrfOD zDeUbn0_Yx)XY1d7&{{uovK!zi&=eT;^mW82R%adMCXm!?mqiK%*BuBR+vW^lag6}< zhNB7~9jgvz{^I!f7(`#nDmT49Dp{Y^=Nun5 at qH`v+RA_d!@GJi1c-u4jR5mnEXZ)b z1nmlkJD&3hjbUaB1Pr4HcFnzU#Hpu9Z(k2IlOa$Pla<<5^y_JK zuk^MG_%9GlcAmeIcaZ at z(}35y4UP56c4KsPrzcqfX6};S?DU|Rv&!$Ra5Fd35R+$a zu2F(~_{_E$mjDrs4-KTv%}tbii$`14h&QaE7rui&S+gVFy12ec?zTNLCn_u20Z|rS z&CNZ?DtarBrzWQofY`;qG+2wnCeP0L&1<#ky8S`*2;ANQthu+1EMGi{2-1C)|Q z6w8YXVOZBuX12w$Cz$;q^~%ERVat|b&iMl6tr=>1f^>TUD73Z88D}i74xlKislSE#b|95 znGtzyL#FA;=NTs0(}td33=efe1;AT}r;SoLL-r84zk|Zj8)IsYp+74$S2wrfRJjb_ zUGUxZD9$auzB481Ec3B%kb at c@j&}2_6 at f|nJLPDGnw5JpKVO17e^y>6fJ0U*mp}f_ zzY79=uJjywP5$kB{er#V*_Jm^nQSEHqZiO;_Byuq^5xa>Cp}4P-k+An4)@8GD56 zQXf_^cpi)>XV7u1%YLJRD}IbBG^8BU6YU7ZLuBCNc_(y at CNJ$Emreki#Zm=>rscUa z2lf!Yvb9-l$O`T{?{`l8QH&V6NB`8IFP$K#tljEkJ@$Y7SAU7FL9b!N%|Zj_y*mH6 zAE5aB`6Fm=F&+U%RqZK%k)_V&7u5G+ICnvFdiU?|uQ7%(-QOVJ>`au@ zD;T|kHNmixJF2yj7#khW4kumh-5D7;I@%9wBlJMp!`0^H-(e_it*#(n*fZplQNb!; z at Thr?oH>WT;3I(W0Xo8Gw5RLd{!xyoyhnbRKH<1r9WS=>(s`jnLQlBZ;FNQz4v%8! z*W!R at v8Urcvi}A;ADf<$u%LOK6&ccp%rWh4vvC+pTkElQuoIoEb8KoVn#X&=QAQmQ zzVd!K)|NMU#v*`s1UWvOPJyLG)8oK>&u8bqw5rMclr}vG2(?VuA2^%s^ zYZ30&BbK=-tVJfbqq$P0qs?{>e=PQ3FIXvz1VeH_Syjs#^p at P16K7T^>$I1Zg))Ll zuWfq<57+)qepdkMC9-j~o-P~V_5q0c%Z2pnD1$QRhIKlz!3xwAFiKek4zEj?R)A;K zVH*V1$*oQF205me3YijJJdfoHZLC9YfnFkK2G3cGZrI+?q?NFGecJ9jP*6wE(Rt>`*-}A;(IwDkf2FMg3RVUGaqOKT#&REm5s+q1 ziaC}0SdZUey)*65vgC6Ba8V(f4q?vb5gCNoyf_ at 8*Fhg0h$ETdDUJ^Y at 3O6S#aCDqqZ+exiGUmWzduu;|OcP7n0<7~Z zuE$-Hm*HVxsALJLo3X5t!JJLTHbGqdddbv8Garv_1y zo$zCge;1LV(qDl+vr4$Yo>ZX^`{~V&PsZbikC09GF^h2bbIuLc=+Lv?4L`hp_ZFET zaEZv47s#Tqu{uu;=$aUb$?@^50<2eUF;Pjmp%hh2=X_Gu_1Wj2=a~x*RPygXY{vY9 z>9E+&B8=7Lg&0DP3ie9eUts$;fAMF~KqW at 1)okY?xP-$qlx4>V2~0W4*2LD%7GR>7 z{T?&)&DtB>$B^#?-(0Z>@w+1lgvn|JZs-+hZ-zl@>bv7A$F|4s|L28sjG%{8TW3&);5 zdkC3cqTl6Xi>d~>Uw_KJmcH&u2UBw&eE`iIUO}%s=VX06J^iK%{rsn&=lU#=+Faj{ z^|C0&D-5W~G<!#zUuM}9z)ilz5uuv(KXl`uQzsL8}L}4uCk7S#9Skz{plTTHqPVe<40LMa at aVI z@#=K+v~|bk@>cwp|Lkw0)`GsE`C_zGQOO;X~-< z_~_DCc{KlMO;{!A;by)Do9)@yX2o!gFNJ~Dgbis$?dEN$z>paUuzc3E)?jj9tUiU9 z{Q#{3V?`;H5}&#rg$V2L8aZJCC1GEoY$k0k8N|xNrA2L?kh5F4b>>FsagzY=Zcw~h z&fMb`;lZZ1^4^*tud&)t%mKX60`Yiq9E-0G^9;lUj9Tn$ ziwfue01(gtb$cyafo!ZT#Suci3n4TCP;y>t4?uiqw92z9h*>|+;%KrFu6>UXDnh^l z&OsQ+ys4#))$H;<#X4su$Kv;IUWaAt=4a`}l#h=N_5eZ0DCIURsNJXmlBy^pi!`KD z8x31=Dk!mdz>45(OT(TisJl5!bN#f?{oTmu2z1z!o;+Rc8U!|nHpIDSUK4xZ+~08& zsv#r2U`2qKAmrm{KXWV<^p4$eY?J`cYIeh&T7urUi~t?cI4MZuP7S$?Lx7%D<$8Mc z(3nDCnng#kALVg|V1y?S{O-$GJTNBT%;5XM&!^FHtJN{e6UmdaP-bTy)89KCYq`*KW zXL|;XLK$m!YdgJ~?x!J93!9wp+K=K<31~^HWbUC^XM$crujad1T`GW3U>RPNnYe87 zsujHgE!!Gt at oI2QOaM44RjzpnxY*wovbAmOt*Vfmf9~pKDc(qU|n_vS%tE06zXdcAa_()7+beW=JRlDP|HaFMPP`0?? z)%UNFF#rna@&I|O!7875j$QDJJ}x6B0(`6bj}CX at lg~a+IrhVwA7Tun>aYId&pEqG zz~54WRA-%TqWsNSTw7Voq7yqWn6tdPx`u4M%6o0 at Y^L#JQ*XNvXrSv2UtDfYM={#t zm`s760MMq~IU26LGxNKR8XZC>+Tc1Cl-G`hG<3EH at 3le4DrDgvEYBC_owA!V{|EpD zdkN0??$`ea09(M#etF$oCZF?XKd7v* z>x7 at t*ilb%cizLka~>A32^uQH8nQ=GLFV2=yY87?B%JP~d(8GBu0_xM?%q)v5Hq#@ z)LWZ?HqZgGb|kA!TZK25F;g!i1AF*P5q>hY>L_f3bc{i>b9j*6=sOJ3F${Ez)yx~U zrBYW{UpAvImf$JQaR^$rRhj*1)wdPST0|J{MlE~B9-5Nvz`FU zQIv~I%iyk?I6geXusThi+5uo0nX};F-TOCyAp3tx4=1s*vYt7Az38t at GlOphKdX(s zJcG|4K8rC7-le4vF^+Nj+u!|~XZEuVc_*UIIklb at ATKcr;m0=;_APz#vrnJL{A at KRk=Z>(JfTyjgrKlr zrZRYaV-09{`8}ksO)fQ%sW9)}kx_dgJ zJk$%=Kfs{t!Wf-FXI;jJ_dD_6K^>6U22XEeETcboGRM}QpWY`3-QHeC_JZ>skB)q4 z-jCx`WI`t#n2am6t3a}14`Bn<`{x8({?S|?6Zp+F5k=oX)B+wkHs2598b%$ik3i!+ z>HRx(`U0Tu0wOi1M5TBQXP at 5#xJ0^utaQjp3H&U>+St{YdM4*0Fl027+wD2!gn(AE zF4&3nIT}d8n0awBqJRywXGo|I(8hAPhA7c|C)Ow+<2}3yU;txtU#C+zi&Nlx-(j8s z*Y{!gTNYl3Q1aibk~P~T+4m at D4F}|GNUm=y5y6}JVpm#NApU+pMmN{)LP3GtHtD9sruEFwdAFp5Cq)fw29YL%7Y) zGwfvIX|Shy;o9!55~y`?-*&)fk$Y|dsb27`v8(cI4aO8TSv)tqUpD>MoPT^RIE++ z?+|6%!}C9>)srE9_x1ydoBiTk^*%XL%DK0K?LL5tdprRndM-x at Q3bd%+A}S%PbQeR z`U3jz*4Q;GzZAmek9P3Bw;vYcySJ~S2LLvKLN;Wwva*`qr3;j>#)H5}kCeG)3VH$l z>c)B|ZCiyab9ir$UI1v=A974jxQ#VUYWCUtIy=JTZo#LyWJ`MuF4mjMQw3=r+7ZHM zV7Larg?V9kE#lSf28 at qz2DI2D+J08&?B7jaSM2fG_sbjM$gDnSUvIR}H#0fSS#IQ1 zhoeJ;1J|>1SMNu9Iyr+Lp5JhT;cnSlrJ;AxHZujzWfP%zfPgflE7G0L114IZ5D}znS=dhP69Xts~@WD7B*;t<=XJJ4L27YxgdWY(9H_71szw z`~N8@{k@(PTO~P_MuSnKN&{?WY!ncE%bL0Yy%8sa!j#WH`waQi9q-<};l5U`w+x1V`)~gp z%IiUXURUh_dv56c01&c`@^DXgF*Lg2yDL_Aj_lJ5ZVuW2hKH at E1e+S{0zz|?{frSC z^Fs~0kBmSnVARkEpm>>=M)I0sB0I<~)l^^r6+=ti4FF&sbP$e%LF$YnDZn9R%;+WZo6P%&^I+pE{-T_2M>ZO<+uf-VeYq!u4 zec^oM-+$kLHXBg~fa)|D9K<*TNNbpPwztv}mNuGE=ttJGW-EPDx~wH94B=P^0T{vgBGH!*fCDA!QL05h89WF3TPEHA7g%a3xBi79m&PR%nx zve8oH;Q+=oyCJxpog9hbzP6a+SwH{eCGxiz at 87J%_Qpv}PXY3_(8;Bd_`?tHkdepH z3$Oj|8}vCcV{?5yGQQ2w9`uBiZGA>2bxe=>MA>@@`mspC+ at h<~)AUf-wm>j= z2SBn?sl#&cyUR?@7MK+Qb&f`L!&{L#u#x`P#YXFN~y>=+_GMbURGguQL2N2e5{!H>w+QGrYc;G at F%iP8;0?!!b*6?j at 3!BDt~6)f5g{_c1$ zLv3B0-^A!xOt3%ZZSJFRfoKSo{RI2c!c_{rvkdJR;xlA#;gaoz4CCv{*V~|=*f}}? zNTIB_mtHGV5LCp5 at -5SM5O){gPo~mhS2$SMV#rm{=Imc-S~}8T at MT*Ydn>(o{v49! z_xxH9qlHo?3hT*nX7vsN+&Xf5MH-4#F&Ngrh6l{KHGHJCj1G^3=6MXE7za_V9RNQ) zayf&WbzxS8b0Mv+FQT|Lwp2c2SfA}Y`z;b$(%0i9$g~39!SsS!t;9<#+}iL!_U-Ef zjr3rRnx8p|;IrjT58y+PZ#AezCtkyRA?NV6$%`n5$FuV}`YFAuoIx+jN`bk{9y+1M zX2dpUt-=rHT$&H`*(WbDO~N)Yr#zptavj-sX_#6W!k+3`lGmN?!v=-Dwfr*Vn0+r% zme=fqBOmuU8+(Mx>gE6&67NOEVD+KURo=2CvP|CQGdY!n=N$oHmEeg!-tfu82U$3B zd3KaV6?!Mi$h-loC87UOo?oNu8behe^KS7&hOm96xv5Eb6k10HSSc(04)eS-Q?`$} zjd!nqhzA%L%9*A2 at 7dom_Nznbn4qH!|0ypv>+{ zSr*0zy{QNqK(2#p%0JZxXPUWsyw9)yUjWeG2>?HO0Np!vg~HG1 zmjC-x51^mb5s{zqXFliq1&A#$7)c*_4gPKi087hknWdp?1mNl#Bdg~=KL7lAtgSEQ zTJ?Zh!EcI*P1rk;mxdE-7&gV80!H3dl#ydKj0)-frpI~70Ep|OH27^$uJPN2Y&X(! z0WJ6Pxwc+ at MtijYU|Uo%RK5~ zge+wtnR}qI`~p61>$<||+U9YsrY>++jypY%GPGddz0QvAn1A>vwlJJz#45nX9C&Ar ztM|=U?k^7kAfE&H2IBDeGTyyi0l0h${cgtk_If;>or$Tw!8pO#_~G4F{Mp}p64mh$ zWUy^^`oi&sH=M^QAQPb;!$Tv{gvU=0cjC!VH7k9;UD$}Zr}Odo%V#kR5UUk2J{y~v zd!Exrc;=<|Z`p(E_^1ELU&P at qG7dxQ0{WD`_YRSf#f~Tdv_>(oEo`*Fs({=(ZeaX$ zpgW+wT at 14)PoBiq at -l|%1;+3M?>&#>z0FuzT1vS)gE45QiLKSeXy-bU==Y3H-kwDt z0M0y3qppT at 3%uXROcu)UyWai^XXBK$)5KZkHeYjnTZK6z{p`FMBUN;!PAagF-3vav zTaFI^z*?mkU%Y&r{Lyi5wRshz;~-`qJd6hPwT2;m%(ZHO#E#KI*Ow-O+yCcQT?X-H z_>&JS>??ic=#UQufo!nKF2ke{uh!0fqY2vYi+1PLq15zhX!Yq8F~3D7F}$X?M(fo? zegR550!d4=#bD4P*D{o$W#>Kox49HrRr>SPy at q$q$5W7)V`vVd)mG*&3IO%|vG{yh z4e91)SAKrq$xZyZ$QpC7I!dmD`8!f(gRnk___=~E8AX6jKsckUxdO3FAt38m(&Maq z79~0}G=P%e at 4ROOVLmxAm7za7|J%E*hNV4>f-JJ`689 at 3Xo@Up*n9E}MIL0PT8%N7 z{1&UYkAIiZ0D26{DrcUn9m}o_z}jhZUVzR}sW(gh3uqq4iJctoMuol9!)Wg{1*ZVn z93k7qxPe+4rLqIp3-QAb-^a at 00m|bxMqz^5&|rcThlp#6n9Fs=we5wtnj>ORoG56S zVPSJ8HW2~`&_xG|zPD1y8Otg*EQa{7wv(a#O&HivppL=4EpswDW3aCj51lLkP%-~T zi+}&ryuji3Y;qO_eG|7ZwRsNql(T>2-qvH5iHVW%G!jnr;Bxk;5tv&V z2TTH-1~}Ue=>O>WFonH&UQRj45GRURaOJqN0(5Wa))9sd*f*4i76Oy77U*F z=rcerrY9OIk3)cty|^UzGp=m~smb at 9?0t at nLa^Sk$KNci#4YqxuGXUuI4%TaWh&ipt2aVX<+sQn^=Ll6n)gjm0gBAr(PAO6JSRpUoMjEge z$P}J!9&k6vcjtZDWLr1$@?|rMlE^(=wYwqdD|bc7up*EfLwBZ zeaINA1uY2kz4{6%>A&M at 3g93JejPuD2ry$t6XdcB8s?=VUl=5_*<1=;pRG>xXeSc2!9nX5EC zIvHme(-R{T$!mHqHr7|tTUj0`@w-+(%;xa{ApRu2`}XVDTwhI3kyL(hx`#q=2I^j{ zuB|4B6O?G6+aJ#Gr0uj2#wvjLu(B2_+gowW?~6Q_`Iem+sK>|(+l+X|dM5VFh2p!p zhrtxwtKx~>6$kYcv`+27xasi_H!vFmK8Y|h{!@@OAuB%J`88{T`4P;%b#IDp!!`9IhLvDlS)=V#_Waz2Cb-|EhKj9a06aRPWe zk17D`iPh|d?lkgC$b~yT|6zFpey<~+FI#kq3|x4>5 at qzyAoBJ4>Mqu|_Sx&pc=Yr^ zOd@~wws(;AttgS540>3T9{4?gt#irmFgA<#Rw(zU%xmL?lHocSQ>Lb&N3Yojo9UaQ zy1CUrw_;qw^Y%Kdjf`f*VkcWJm5`Tv0O%|B-yFk>`2O`Wkmo+$zF9;cbjQy=`y?Js z41p!Cj%+8%WNj7 zlf$+c{|yXajwnF@%DvAV3BHZF-gL2WSJ; zoHhZmcxUr63`uHXjty61q7L|iz^eee;ZjdL0-%f!mt(k6$~?L;5c at a)X&9n%cA%ZX zZQU_|@ThZ*VLqqVq#x$Dg2`lZ6}iGorYRTtGmpg)M^^fE-y$6J#-JFT8R!_Q8VbeX z{ObT5L)1RAUZsBOz&Ri555 z!xo;GV`E%T&S383FPx>-s_vB?(s%i}(8C$IKQPA)id^sADOR}6DH{jP=m#hr at VPw% z$^}x-M0^3hp0=*;A`E{VpM3gh=AY$2aTrlW(}}V+SG0g-sK>+HCqq5EFqNaQ=7wsS zFH)Eoj}<`X9e~1EgQLf+GBoE;KqdIA at ciTB6A2>s_V at XFH6A~DoS_ft(a;4V7tpYa zU@@lxkcEYuX$_p+&aRg0eY)kfpggB5fT)uWE)Z^zORibq>68JhOwGTsLfrl5h*IF2 zccGWYT(>Ls)VwKk2u;Mc$jP;sNUvvd$FM3Cc*b!aK*Oy92uH|SY-EuJ)*nK at hH_K^ zpYpRkAJ3tgJNRh2ZZ%(LY-1hXw|8NXq3BQ^eXL`$HjQGI0ds53-HoSzQP>8QaQF!oQ_a4kE+C(Y^-gdJiEhjqpQdS<a1Y>)k;)7SvK z>2e;dLd)pC_Kur)`Uqnj`Q8L1)(0?-F)|P!y#Fw^4|Y?h=&7|GkR#)!X6EAT>?W&j z%Y(L%!5H5=%tDl@>1m9hr)-(~hkWAPUcUS+9YwF+tpj=vc{R`t80l9xX#^;ry4tT| zraBx&Foq*#|M2>CZ0&9EETRdd7CM$1)x4{oC*2m%n@)fAJSTg_n=x*Z;T~Pd|AS zfB(zhAs^b}pZ?w7#UA(Us16N%d5fZP!bB&ErqIy?Fe*ncDz(7|?<0UL(`VPQ$n?Hl zWw;H4;C`~ zQXfMRqPVQ~G(=j$s+t3o&4QXABb*;iO~(G(GFDJu%+>ni(Qq*)3mx$Q3uG7qlsM+* zAAm6dCota)7PrjZ;J}7Zm{tVoY0!!~#WJwMbrP^w=Do*<`|%1eX6u?h1V at v9uVGcs zJ)Vy(a}8j$1FW>i4C at l24nOM7*6D&DL^7Af_`~rE&2?#@mU*MpYHC*^Z7^7#ouhs zdxhHBFd-jW+XR3gATagNn)fwOE~FP<<=NOj3db6yABgL(BJAI+tOHaAVt#_xYviCzSL2|;bYPSZr%*dKF7^_pe%-q|Iz zit&WC?055tj}6`O^O)^_221f2 at bzfQoViPAW;R>2T(d@#tC!)!$8)nN_!|t+B68&_ z>|bW_QHRD8;Nxd6K8vek&XN6_sSibcu$Ugb8uUCqJdh*zJog#~;S6+UC3^)~^YhO? zO#@7CnTh9@@LU)Cq_@%#zqzDqYfIU-p*CE?!0V3R{_fw$-~RQVLEn{ZNAc{*;|%}r zHuhqDW0k#moZgSE?e*+i`Res|Q6H at Wg4V+RmU=7&g*QB_4XE{!`#1BV$Hpe39a^!K z(Zwx$K3d6foJKi5d;T((e|Q~ZfTdxcWe*VRe%nC&3?t`;?+2Uf&_oB|9KOIX9D;@p z^!!1$PE)wN5yYBb-5o!CSc!8$;B6OsigItTuhK$4GG+w at _+olAwvewI7%ts_OQR~% zPJOHpj~<&gpk at K=;jp;N~7*&UW!p-eQdQD1YfNXCmHhB*7mnwkiOJwm- z#VXSdzGGzj8RWvwo-IS1iE4hhxnl>&;A*S`{%mn!zNlV$^SWWw^#1v5uvMlh_;r12 zJ}l4-ed3p3$e#sqe%FJOP3z?Y-v?kcg5Wh;Enf6X008-}=dM-!2*BiL^R6 at o^=u07 z1eNIoVLkp`Kx_*y^@Ct$U|=Y+polXw?ZImD21fQQ0J~i3i{Jg~R{;K7K=TZI(;aW# zEkyyaH;6F+3XRuq*8wY!V;@>~YLVglBjn}d*_qT|8vuj-<|W`68s{9>SC?aEd^k3? zFra(N at zzcPta*BLG(P;{>*xan&P|TTFb4P{hTM<Ih at 5Qft^rW$vAwyA z47`Zu?kUf374^Bf*h8nkS=^4n;R#?+Xh>;EU z!FUA_ at t!W|trx7ZgABNjT78Cp_s56D^{Db3o9i3kq=-+SJwg6$Lp+0rFnO!>Ji$#eV$#Z$e z^kv7y(D0WMwN?_;9X;?`Hydgqx1Of#-j8sV`OSGtE1E at txuS?dnn58}u`I1V9R%DA zL%0itWh`$%s5Ou>OuezS0l3w-#X^vYqlEkXE<%nKY`==ozvs%>#*BGpEh_W|Yy4FOg%w6?yzog-`J0IN9$kG)%3T1an7S8pc-eHIp4I4W&sVmi(NM7ArqM7S+% zZp1d$UIQXG$EOCM)M~ZEx|O`2y?l|y6ubO;YP<@dIE-Jt-idOxKXbqwmoorgJnCaBwW-l7BrjqP-tG-JiP`GR`Wobfw7SDYbf8#o#3f^SZ3(%5g%$}M%oD9lhFM0;l!S%M&; z7i;?m(S}pv(XNwEEQoObY%p$=&D=PrT@*0RMtCK0lDTU0QAn at j-BjDF$Y;>4Lp`SVy``lEsl>x6YG$w&XDP}E_`m8 zHP4}MJrKL2lhZh}f`a$G#j)ta6F#lr6y*!ZHHr at jYhVqG{7vAkUe$1-aNNuxF-NAM z`7ZSmG^f(S8D&&w!Zs&1K2PnMjHGalb_v+89HcZ58)P)ay at ylpu&QSWgIIj0Y82E1g;%~P4rW`3wmPC zW at krliug!UjQD{fX*$chk4ve5LPuzKV>3>`JW~?vZQ70w87ikWW1_-!6PacW=}2xclZ542zh?M+%U++c>#wi2XxII=bg+lBZ7n zJ>4-fGQ_pqrc;)>b_$}cjW`Aq-HUPFe-a(rMgNRO|A)W*`_$p!|M at R}h|y_ukA1Xq zw|2Q*&1X0GEv+sf-264ZlZZEmy^EX0#O8$Y*ZVwmgd!M598DBsu5b8rS=Lj(QhPkOA6 zY_Q%Z*nt9nA3!%u%aM#5HM``!r{`wk)5>aWBX0&woLO%~{fa%?#g2UU=_neyGpzMM zbh3w42zFc7066IsF!T%j$#WenXp~u#(m{pw)@BC|RViVUd&KVR9>j^!apbdBtwe86 zGY+xs- at v+-4zA%O4scpg`B=g39v|$-;Lu>SfME?dWZOH{I6J>gL6>_J?1%RYVT-+U zNVxgDC_45HJ;Kr7(;04Qh}p^UxaD`{bC3O4fvo2{OnqsCXxHQCzj+mfkummu5Bqr* zcYMy?@j;w&9r-4lWN;tHayF}^N_up zGy8;fhO<$dGIw~M=c#91pJCmWhsc}xTp25cFt(=kn1Md^_68DGXKwW$?jLPHzB8We_lsSXlMt7%rE*Sy$2bEd zI+0MPAGD at x-GQ7svhEtAYSmyP|2~I6I*-{FKjxWu{AHx8&R(8r^iTvV7L8ElJywJ$ zoFO~*)w6Yr1k#?3hk%#q4MqSZW2QDZ^LlG*o%hCx0}2G+Nyt|p*M5P*2Hu(Amc~4> zUV^kH{`?HWc6b1x^hi9PQXfq4w-?%e{V0xaE%o5qxV~1_pdUGN!om@<)7;$#Nva0wTi at kUQ4v#gqA at XBy_=(Xmv~=`pVB^k(9m0`kl3*9# zLZ5K}(8Gzo!a&N$vLXB`1jI(eef}It?I53?chRI7;?Q8w9+kCZ^*1Z@%HP z&tv|@)38;J$FsI&`M9u<97_%Er={hXp0u%{F)>a|>VA{aIP->x~ z&Nw#g%DiS)VsmRRK73k7=kHVXuq~8y49zLE(}Kj$d~Db{*w>uKsvUzj%@`UBo(_yu z=&Z4CHimWGtQPI>Zh=7T#WKd_2L0^<*JtORCZqS^{SJil1`>;&Hr>VF{r%s?{Y8~E zT8`anIgZ)8q2Xb4q&d#P6m#AjH5HlL*h3!jgGKQDDy^?67LFOz(LgOA8#ORb~- z`u*sJ&7^NxCsR!JI z*H5E|kAL at f-_I{!@4s&n33WWG`GF8ePP2z#@!xd}luQi)9IV1eyU3EJA-X3tuqvsZG>exfJl*ln)uB?oVOYzT7H z5r6#t`&hvE4~p&B6RW#TA)1;PMqrx at EF5WQjcgWK>B`|`;An&CMVx^v^w^%K%BQIT=3cjUwxM$e*yV`g zP=A#6cT=={0H=R+0;iI-HrO*YJrVoJnlq;nj8qiV*4cwImrcD2ZH8SrEXNqH*{^IN zU)?b^Rm3s71=DL$fvhzkLHO9g6yG(Ro?HCeQkitUlKorXJ&bnnQk=0J zUG=C8uj)!N_z|ZvIfLMki%ZM#m-~$QbAHethxs&)M{A41+TQ8{^gdQ`W5|edZyAp&@gFr!*CH zi1%TdGq at D*- at FBEAT5CQ>V63&fY3tz)6^D(*j6O?-6^VOj)o=l4&PSMZxew+pfhcd zjf>Rhse${{d2r9F9-~5{^8Eg34IDuTV at stsZ~q4{3V9Z~{gvN7FG4 zifs?t#s|x<7%ohw%WF at ZvY@3O@##ZgRAj3L$r%;r^@#fvzG?8OxXE#-iUOSAQ_4MSRFsK3d=pP_t9W2(e zN?GFW$VhXZYE~8E{78ZvTy753^SOEUpb3oWhA8*M7(m<(FgD>l*zU-&Q|1_3)qjQD z*!a~Z+(yNZ!4vZaE9Je^V!{FzvEb9vQjCvJ#MAj_kOnL3I&iXDV}E}iT>_6-cjt6_ zefCjwuWU6WBHLv5=HfaX^_sq6LBjz0xbWd4de_H(^vCALCS>gd2gR{sHii0JV{>h6Wvzd$6 at T<-hHgO9 at lC zY;?VmYwk=@c=M>bdm3YStjOABSze=KwkyftRG_PEUCG!xkp7l^Uj{4gShx0U79AH8 zuj90O21%Reda7{&HjE7P at E$j@&ApxTey6o-up114z{#)94xDHN`EKou?rcY#Llzqw zui^yknR)&)MRyOm-e#V4h2!fn_X&HpcUX;=3PXaG*Cn`~0(1 zjc%S at Z>~Q at A2)WkQ`PY3&|pkK)NgSd>@v~Q2gdLj;sD+%AYHDi^rETz3VZ1mH_h8-z@|}uQ`OkET#yeYxouz26J#kB= ztytaIh%B$U!Xez)K8!=K!B%+l&*tK{zxz!Jz&J%mmvC)m7h;}|t<8OKZ4f89j9%X( zU-p}HUb>C+8`J5MCj at uOKMujOCr==kt?}mLO61tf3eL9;{o7k?(T7u9gXDq9jqJY| zm&*?zPtz&y(3V7*fB$s&>$YZA>Fz4JAqK_%ew4F~bw%jeD4Tsgj3qfuKxTNg1Y6%f zIRn7(Ebv6uF#Hu3>zqw-hXLnHRY5H zVYDt#ScUAI^+5*M at SD_tGd1N#p-q&xpg~6Ok(x=z{R4OwCz5Hax-d959*5SWkRM4# zVs&FToZLK8`^g{L^ zPvaQTopL1(x&I4Os-%FZto)Mzlf*Ivs${d)M)NO~y_m@(}VW#zztdJY&cJMAkXY zm<1?3KHHI;^0-l9BZNl$45 at n@eSy2xim}S}JoG24LNJ|B&;)rEbR{f)ro{U~k2~9& z`Uo1`GDp$Kh;tQ7c#LC^BuUlA>S`(^@%YauWvfbwpjoJHS;W;h~vb9hMO~d>Dw47^Z`HjfL{l+qcNp_ z7*#C{i2bqn$y0Baa zf`5w4gLR9mE66}Lx{-l}w{IXct*kKy5&|gE7Xx*ACBNHyJ2)gAvAVgzy0%4zJ+Q at 5 zBllcJ4p!DTkty6RWUK^sRnQZQEsl7OqovBc*9m)Fy{yOB{5bM`8`tMI=u$fd5fZ`L z*Z|fXLi0b*knfgECr&52#6H&QWq4RaWFd}evI*~1gSZ~nz!Qv(Q5wl#`kafa*yb9p z#1{;RM$QQ2-4*+R9 at Nk5t$7wR^!E3pf|P2d%)Vh*J#_(}3as7!;Ysv?bw+fW&>0KuJTkP(+M~hUG7b~Z zmpIubM at Ps>GyD61bZL<;|Q3C?Zr4Sn2&>l9Z2zdie4GPj;0P? z(iE4xm(lM__RlE0_wPtTHidOm{+nVFdw0qEYA=S1MSdSodBl6Ay_AdFgA*!YHX?5d z%KXf1%FX=o$M3Ntmnp@<#_YLV4pQx;Eu4L@)wV2^YCX;{^?zFU7{?dv1%Otq9eLD~ zro0S*eU5ZpTw8+7AF&@+?(WAKcF>A@@z|cAI$Jx)g^}fn(PDh@#Vc^D6UXl;{} z>S>IP&&R>hT`aBcq-dHm+oyECj?u5uVa&`uOS&eJGaaG>oEG!UKkmW)+p5c^%H_S? z7y%PsPtU|HYrel#=K8Kv{`CC~Hi7HU;B_0AF?iAnsT$06BA at 56yi!6g9CI1$8Mx7z zjWW9J5r1jVLdv6*AN-r&{tlejiw{eiU`0E2={7lmh;`J_k$(0o4>?7t<3!x1KoyvDa0D*ZQdRgm&Yq3Ghx>a|=aV}3 z<;mvukvZU3I0Hteoh&k#Y(eJ#_;UJdy$cg3O?b7pkegYung-As zAS0NLF6zR76d-SPj9On;XN(QxQ(v$Vm7w at O<>mF_ z9aRyuZoDS64+GlH>ukL35%7ftHLRO^kpM~{;(8t3V~YtRNdn;Pvsr{|1)_1mhL6V5 z;yU|u26-EYxNP(O80_x0q(J5mZ9<@p1>57z2(10WBs2o+!r~%^yeUS8Mjn2Sj6-lS za2R+a2R9f6iC9yE$aEu%aHWhR8&%;qdPN**EIk_5i zL{Hy*506s5{QOHTbBd-7;Qbc>k~{upR3Tq1;9x-XFn)D&Zny_$avmd-x5!MXw3DLs zdidD;hnz`d-U at Wv5LxxU$$GwfzZsd1W&o%u78h3&NwEsrTp#6p at 8BenXe%`@&|^n~ zIlaT_HBEeuBb=T;pHDMn^N=umQdu-%iy?b(>ap9P)?7pLPcGOmqnXgOq=z;{F6017 z2;>N0WL~DnrXKCuzj6!mXcRC5WcT)96vl?}h6htlrM(e5+q+U{|8DkrXmB9q?@8MF z0J$o1Jc~X$OVjaZ3-8~hV?<}=p5S4xLhPPQPbZnTajv1cCY=ThL=%{z(RV_ at hoxm4 zy}nc-|IHu&0Euo(hSKDFo8CKKD^&oZ!{%8Ijuc}P1G2VlJ`T>`#|228B(eR0{2)8e zU%yVo5)UxC^1aajaaA6i-)g!-502<dxb58}nva+Y at Bu zp%0|w==|b at eQ1rbu|f2)Id=CB;t-iTIH||geFl^T~urF>eb8Gu9U!}>-Y>3y|lC# z#c_#uOW4rd)RojTv9Sdr0olS(6^2J3H|WDTGKsPFn9d$^$0uhvBp4yqUPsC1?>g4_ zlgQvzGW6n&1keazD$e)`0kpe=*yuDA3E5A-C2H>LBcW5TeOv z{{Bb+AOG%a9?7JS`EPMh-IGpgjCFkM8>bGK)*u5shO`(^@ucPOpb9RwK*aiEuTqOc z_RBGiw(c at 2W&XGMs1_%2tEoTd^!QjxCpyB}&G&XA+qtkBSmJ9MLKd7fD(px=(}p_1 zxRi#14qDv!zyJQA at yJJ|~6?@j1 at cv&qSr=!G~vdlB8(fgb*Cnv!WQ<^A*M&$Xb(U9q{omc|J> zi at 1(1+A2qRwxZvT2=3(_j^)zw3b+-K?{|K7M-1UyjDoYKr8xOSXW9IDtMZ-nv$cB^ zfBs>KwFFbZi_f0TM+5Rz!MQm)K2O!NrayIn7p{}1C05yH(ZA_p4rkP6>6hsQZenaa zUg03_?rgAk)p+&!E6C;~`+Xfh`|Jf|s~H at -k1OQ#9yy&wMjhFBxWCJK6_dWV^1G=D zJK9_vLpC7w_x%0ue;@znfBH|cu~ou`;Y6U at -CP@Q4)#{kN!p+P>0LN)`SiFFFSw3A z at J^D}#OHc?a$~d at d^xs>KG!=sIvUQ)u7PLvVJw5Y=2VUjTI at 3b1{`4Lu;1Xf*S)*D z2j(=!3VNTW(6B!1s~Z7RjSJ=Y-#i`uS|O|f8j`m=6zk;tEK0obDZ<^3G0=Ow(O?52 zM)2xZlVMz&jig|JOens@`)KRvLBJq|+<@J(olAI$9<>12GG8NZ+1|eN`zfHp|A2fZ zn%lbLh6~z2Fiqkd!s{@1M+4^*M at d1hQ#m*woZy?AY*fw}j!! zLtw69?~oL(-C@&4FU)x`zfVB%2-j$l2FHYBkC3cpvuBaT7e+9Q_ at uF13d~(|eEhJC z;1ziuZvaT=az>n3&*8z854pSup#vN&Mi`%(fN1x{V4;|fxJ|jJ^LjXhRTZC_-243*3fzBwr=!iX^1#-^G3-wuN^KfW;Lgpe^aM6~ErMt%{uD(}nTw!YBf+v(mp-DW2eGrYfde$0j*qYz$ph9SHh^TC6OZ((fMmUPoFY4YfVeGi zoL6o{+un*h?B6u+G5cgHN;tuuO4v39mE^u}kfS#Aq8}XVh<(Ue79GF6zk>YFCfVM? z5GYqxu-7imQJv;ATeJcB?#vCV&^{l+y`PPi8I2- znkSMb5quzxMtptkzY;(v((t)_`FH>3YaI3Y__q`R>-ENbBE`yUr0+u5Ab zO>}k)5*!>I$MX7COpeVad|Lgmlybu6W~LyI4YBlb4N@@^4d|WoeI+(PAwIiF=^d=ohJ{Xf2qJhJ^#dG?{+5^<%0)->UF7mTDXr<7cZ*Sh8*J at vVUxf^*1?K(+qOx}y1|j7 z?Vad`;N at G|Sueg at u+bN`u2G-6Q;q3$8{ZS3rp*;}0XzTqgBkI|E3 zoG;`9+u&(ULnF=(PV5QyV-RErduAZZE*Ssqn*})1MQWwg11E9puAMr{rWtWv&fzyd z)Cn^3oTWwf9}E at uW{Sm_9vw at O-V$Bswqj#VZ z+CNP%#eP>#2eC at iCdv}50>(m*#!9gPZp^kZ9s#QGs;KQ}K7Ra!P+$ajy@~RIEH1hk z;_0k=0%PcG+-3y6ozHzaHI3le+6LujA;%H$xU3HT- zUuuLbP{PiWXZ^EZe2F1D!h7O^c+Xypp9$J4>+31{_Ug%e$|;$c9*cL}SM>nlhqQh1 zb3Jz;YX9xK at 3?FfYvdtkL!tJlR07`9gtx?d z*xtveXEP+sqaa(tB*)_esp)om!FI%)QJ2KF*Z>{Q0v~(PyRM^aOwJ>fkG~DL8VF`J^i+D0OoAmX+{^R$Mo!hiew!cZ!MOcHgV{{)ZGQ#MntWT at U zd~R>__Jd235*=VLafm%QWG^k$utS1Ptc~1z%=c{WY3%PGq!bUGFO$5DPHL|Q?t!)IE_>zA*&d6=&=rjLz{%;Lj9v&YDH%|EdI9|M%O%BrD{$U&*)Ds38i8p82M(U0kTwmRZ zV!j=DWUX|TFj&?4Ee1E2inhwEhpmzd;C>l>u#vPC`JQZ8)%r*P)7VdSm#+r`cmrvJ zOtZf~C4i67I&G3)I{8Kcee9=EJimRezx()4kAQv5FQa^Z`8>aUpVTpfuk>DAkB>|E zj225cESh?F??#OFb&3jRyW3LnSSR|?jg9&K%_sIOmrf>3E3j3Q`Niia4>IUv5DAns zVp9~b73&MBJ2E9>eH8-eF>Wo+FK*Dukr-v|?vxpuBI7uCiqh87z&@2Bs5mv-M=>)q z%zoCuwtZxGJVm)@$A)5abuq>usGmbN9p|{SwVh55rl-cSBRKkP9VyMl`PqN^)1Twb z+c#XpTAJ6q%{8vAm%*o|n46x$0m!7Dl9m1alv}*NyC1zcXy=d?hZoq-*PP_l!##!nn z;Y6g4?%sH}xDqum*VD#b`B_J0sGXD83DABp{C8=T{dVm zx=`qmVZ(+YNzH8;US7x4SxGaJq7%D2TghuRaT{Klj(|O4P=HL<&e?yhhmEXOQd^lh z0C5n3=)7k^+VMnK!TUEPTQVwRZV(E;&&F95)QpnsVbG=_v>tmo)PIy~Fh9Vy z6DHoic=;UR?oEA^>>njinoKN__9)Eiyb}nh9;qYIRQACkJP1gXWO02BfhiPO7ibei zX&VB!@o6=F`O9Bos5;{KxExu8|CaT#bNd(`=K(u* zwByvq00$#8{wMKm18hOPRDCK?+tQ%31Eavb*>h?Huk_RAa*E*HL7F6LJBQ`CbRQ7x zh4=3vb&x;EieA>z##&S{lr;qM6!0F!Ab(t6i8}8q={+--V|61sAw%Xmd|3F1u%D+0 z*~br?DPr=gFTUU!y5a}kyBo0F+TKga_)Z+K5wZef)v(98_U-bxy_e6o0jDi=Y(HVN z*|B8mvyEKqtkL+$c)WW48nS*CyO0p0)m;FJd3-;j$YWC at sqa>XYKS~X3ZrN-6*^TMh^+&7qPZgibhDhQyGpS zp*MKK0~qQ4u3Qu$=%^A-(0v>Lenxut0Eb?PmhWwzkYfowHnpNzS+*)JjTl0f%^l3J zkDVCRJ9Kpzg01(=2S=WD>eun%d0)PG5e+=IfFn3PF_sKbCkESbhNF;;)1ylK;tQLA zLvpJJF*a08dg2`28OV`i=ehtY#}1nFS*ZYST=*5v*utlU`&FB{uVo4JeLJmd!Fz#Ja) zNlj|s+1`p-i0$NXA)PWzK(3uyVe)^9;3Lac6Wf}`$s9VidDj|m-Uj#14YoZ+u{aS+ zYqoWo2}cB4{9&6HtDtpgE^e(5^@IiIuOkE2^~JH#Nr>3!_j{3T}I|==!At at rx5pScT1Gaqnv(%AwGz`N;Ns4xz-L0-36bCb9!|a zb6|q4t~S6R3r^0 at Zy<6VkhW}!g6-lkIoix(4fD+Gsc3K0I`?1;52wWBFpl%sl>1Ce zRBGrm>tnRfV1TVlOv5k-&LR~ffI4W-cJ>I~2%ATiso+8~#=j(fkHpRslvI`L^N<%G zlaNW)9-?_3R!J8Bl>quaDUXlmOZ+5&k7Uum`MA&Xy*+X9{e2Hpg&sf8Tv?xMze|s! zJ8)j4ozhV;_0)6-Y?L`+&T6;ecM)>4vbm4*fV0!tg`-o7*_kIP`e|y=KpzebGHmb6 zMhM0*cFo?8PDVO{ROE2nMzK{=RP&o<$aU<+70B$=g5;?CS20 at 5f}O+h@%_R>!6W--aLB%=jsFt)HDCNsfA}`$=Vy_H zTx{>+m~WnAKjz}e{B(R=coQRq?)drZ&*R(WOgWHFPSPw&(Y6FOZ7;AcO4$u?gLOPdkk at jZ6NlroFt zJ>jt6HOVQTqjM|f*!5$pv>R7=jRs^4UQ89tQ%BGFJaufaJJ0 at q&vV}WP?839iM)Um4UhTC+|>CrWb>!2kMv+kKiOPr+}-u3LanDHlQ6vGUvwu z^;$NMDa{SBb%Sj%^e&9%b(^<{!jx-qjlYec40| zrP$^VN%V}+wX`Z|`8-j$&fOX1E9^@9XT~3)WMkX;Vta(%BQP2QO&2ILv!JbW*nxP6B8# z!Vbp9oH;wepBs(f-vX2shN*cpfK%tajR1Q5Y5svZ7|VDiM$2plZ9g}QJ?;^*!hl{? z2OHm;dUe at 2__L=^Bg>wQPudW3GzJrMj}|8)vklte9Ap>R%8Xk~gKOUz%w+QtRfehdls2-T8(XJ$5HG)E`L zQ^aY3b%HCWG|CB|Bt`6<<*Q7XnBB;FdQ5BYPWyRz9O3 at 7Vf-C6X9U8C?dPvvr0U!;uB(;n zz2tM0wH(CvmgjYKLnv|JtUj|DyuHNiFrNdcjMOdz$|m=Fe(-+bEu?xkHC*>QMaS+l zvA($xbF)(^0%T<%%r{khOMC_~mZ%yeY&*_){?rU)2ScY$+a|}tBWHx#GQ?^<`<7aq zQGx)OTVy2AB8n48hSkYNl`JZIf*uHt)#J0&I>OV05irI4s-1Q7ai)0vBE&F93Xpi^Y-t@(ib9|OHz>}z9;fl2mAtU>n7{k#I3 z&&&}-wldPKtJ`$%`$mV6`9T~>G5_f3LGJGxn)%t9@{Y(Sr138kI}wI(k9W9 zph at QZevI-xKJPKY=kLD8ze(%?oUFZ|s%!aimV-XRoJI`q6&L{DF{(SZ8pU1mTAL6Tj^Sg8mzQ?r~yf81lhAng5|L$*po91 at w#Jyn83jG6# z+nm-aVe31KrMlr)?>>0%S1Fan=(qOY0$0aqjzbVJ=!rnv#6Az^jgAhpcBUp6Tti>5 z4a4As4iS77%;*nHH1By5xk4cY2evC`F+A9p?68G*D0MnD$>dwwzUIoqK(|r4v5`VN z!)VBo&8so`rLcH>q#~JEX=Twco1}+*1h6{2;+hpi)l!7c z3*cYV)8_d at 2=pWdyBpHe3>X=q5peVlGF*fC8WvDovr<>s(Lp?9nf#}%?F5QeH>&s^ z%b6FHv40ku(vLyJ-Aa*8a|P`UXztnU%v@^8BG`=Mm9;}+PAa9;%-2ZDi)SxlZ)Ydn zyJTPhveW|zZrWV)xR%QPEzh^wPvfQ0H|I&xq!-l-iO_&uKtL>GUs+vEtwgNg>+H&6 zoX+Fz+l5qZ>!=~~uO&$}uH6Q{miz;K@%@kQAe_hX#j96%6(_O1w-KK{EydA3d(c0W zlJ0NVFDtYJaYxul0_;oYRE2g7l6hN$gJCZf?x;z*HD^Mk$>i zd3c2P!~NJHz47820$z;u)ul8m(xcl7_wQisa|oFu2c30V+JRs+L5w6SEY+62V{YjPgTc)4%{1iu-Xyk>3tQ?y_o5-Ir;RKI-nc{*M((wZg#0Mvpz&SL_` z$0Ow?6myg{=x0ABAwomQ?+@?aYMY}I!vFTeJBY(&jE)VUV1rTG-o?vWLs&r6hH{!;C(*O(ykpNAkTav4H<0Ws2BV92>cIoNMIL*MB%oh5 zLAP?-i4hr|?-5O{dXy6Dug*{6$<#2qb)BLn%8|tx9)Vh2XVk^%6GktKfS!-%F-8~Y zHq2#0%#{OUz6`@QB~^5vyp;jVtq6&If+Ku*5oQSkF at 7k;JcB zGcvfIBI9S^l1)(^P36(I`N6Aeiw{K^e4Dni%=>>>-U8UOIFmgoiY86o+S-BWwZ@%$ z4}kBLEAeR=-7NOR$4|?wS9^?&PemQeJCM7b}WGM`4;@FZS8_lI4C%yrl#n8JsB&eJ^JTw-^7h47?Aoci1+5s1w^9> zUFeNz6V~~>GsuKRMmm&6(p!{yKF3_CwoD6-MN4YWVk7>cu|Z^KG=|V^^O2=NA91V$MN}fz*EzHi2LS5 z?;jlUen!q(5{B!vdc=P6Y_R}^Hh#X8RxT|Yet4FYHC6LHn(@MRd-xZ z7do{QmzVd^(Fu`pL$HH=5TW3DKA)YB8D!?Td>EVS8?m;!jgDSKabz6gIe at NYAR9OF zd~Q6+SXV1Hp-TtWs{f|Qf at xNznyO*TC{w>|MJ9O`YfY)L2=9kCKSFZ)k%z`u->anj z?)?hacy1nHcbq_64))N&v8j~1JU%rEek_AG2k07We~*1Ry^j+}^!d?oOpc94na^qB zp6cvzadHY$R!gTnR!Zm41uKa6HrHba`7|o&)DxSyJK!OUK3vr=u9!YEJTaEi at Q!d|J+V6liyOI at ZuGt39{HXgE_`jZ zTL#2xZn{so0Hb3CzyS8WQDy-k5(9$(8Q^46J&K`H%#2UO*5+19DmNL?RwVjpS;&d` zcq1 at ZA2S4Q1&{sF_O?qbxZ}DyumyTNmnfUa*qGS;#kuWG&LD{`F*`XEYk2U6di7sS zqP2k`wkoz(m!pD!`Fb0m+Fz%Hw_ at Za!)K{1djQNSM*k4+!ZB(xzqu!~kjWtoL~rav zTm&d{VYcu_SNXPoRu7~~kFySgFBysjAT_Q{fXE$!+^*LH$(4BM_4UK*QwoXQhGegfv;%_~-9G at OO-3|3mZRVzD;{0qYUg z|6t$Q&ld at JZ6eyr`#R;rpSCmU;4^9%Yn!0Apm>f;GeTsJj^Ay3=J7!}6~>&Ql*15$ z at xcNLeGSRli6Y*b$4PpUwt+aR9;9gcB;M~0>@}OuLf8s1IbL90oG at S){d_WHgS?OV zYg;=Tu?|VLidTZKLv_qrIKja@(X*4o=wW?~crP!lq$4;jq7z2!V_3vnUtU>^rPUP( z7zBW8c3!c-Zi2u0Ka=w_iC9_5?J;{d;AAg8k8RBx?#}n6W~e$-FJFI-jnb9w)T zkewpumsfS}(Y}fINhaI7v*D;gBZJqF%UgiTD3bls%q{gux3a&Na$+nzlSF#lxPJf^ z<+ at T8;4uzZCkEl;5{9U!GeuS`pfT?fZzLQ!W<~k)r!SL^z5nw|IAlhxDtON}nD==6`TUa<`Ptho$Fq3=+tdYcZNzjEu*9}5l2E-X_wsnhb%Mc1i`RlNu{r$Y*l>*Y^`s-& z+vfHtj7~rfA(3F11r9%Z_0&?@*j-UgL0gu{XQBrKp0j_5++8nv4mLnjtCokag2utZ=sS-DMgV=x?}xW}cpsnd-+gX!=6L+^G4b+&NIpaWQ^b$g zc&$E`e&@Y3VGq+wAb|YTc-!FI{KZq8Fp2HS;eJXhxW_PiTz+}WwPjjU!J4_!%BwcE z2f1(ty6u?^3OGvAlOd0XO|5BdZsRi>amwo8dnS$X{PE2X$@Y14o5|eASHJiw9cP*< zq#ZR&Lx;*TQiTWzk9PDvs1+w0oSLHt1BG$KY#a4ssm`nPF^E(8TQb; zQuWickLwF_sn1f|k%k*9TC0fLb+m!E9^3EkY^QyinVd|iN}k}@XVq$X9gxMv&G^-? zzd(PFk@>MinoPBjkoIR=!D-0O{X_0&4(=g|_C)f@%uw92ej7`had(-4AMAn!SCHb_ zR3zCAHZQZbzxv(3!=XD%Q+Nt?9N>N>%sOhn{rPLKITPi5hb~~d;WwVtln#!N->#IW zSUt4J0xSemE#TS#cXEB%ID$mVcWO9PwS!&mtpKsIg%t#v&v%%E!4nCmt*w-_md55- zTiN0Bb`oA;X4vaPY}grVYy~_-?&2m*1yi5ZrLoZ=>@cJsLf?x%SaqBRIIyNE9VjvP zhax0(&4{axzr{G_3*R8CN&c~6-N=(CCE~r)!Wxiki&Px;&v)F5^>&g4p3$(zY5l!g8ujq9L)3Wg=T0iP!@KQ`m8Io4uGZ2Kv7ls` zc^&20-zz0%?M%d at n@sB5T|*E|!oQJd!I<~(BGya$al+y{z}m4c_W3dzcye})pd7{t zpl*T75u~){1#q2CC$Rf{?dlTnZjAiU2m*YBN3xeTpiu04=x at bFm?LJS)Bbo{2+0*j zZ*qJ%?yoP?G!sXpnQ*(kvlD|xOnH2CWGIEpz4roSNv}bIY{=Y=b*^Slx6zlj_|30> z6PufxNx5y5Y=ZwT9{4yOf+N|^JeFKuMac_%Cf)&?CsDF+VE{6KiH-I3%@~Gso&#!i z$X#DDjz_Fr8y;Z?LV|J_;lP-8Vw?pK!5j%jF?!R{rEO=-nNrCln9g`^W*sd|s9)Sd z?6)B>?a|i;h$5H`yf)(~twKId%hmYxXJ1CXvlqqonB*cgyS~E`8?kE#==XLV$L7WAvWX-o58py>I at -bR0q+{SZGVmE2M)}NHGQSUU zFUir^Tai6BHVI*?Kq7aexxG1&DBHYL4$*fU0+ZuSeHa at b!m!m-6z%j9C*a0DW*5jN z>k39Jt!_W0DoHAe*6KF5E5_l at Had(*Id+irN&zOuF% zE9*Pp5!ZvBrWRNjKJ&&-`L|%Lema`)x}h~X&`D2A>=U`Yy~&F= z`p~+nDMrA;wq^`%xfEwNjj2zkBLmGBD)wjN*I#}acN!P=s28$s6YOSFNVu0X9mB33 z$nXgcLoO~)FH)pp5ZPScT#Ird2<=H!>PoJF#uCyJ*p&PQ)(hbXtUr&eR0Jef*jBV_Mg z0+_0mxnqxWO|vp}z*H6^#zrbn*(a}YduszSUxjoOl5^8-x(I~9f*S)3?!9e=Y^7r{ zT$-GLV{V#MW9BN>*q^WdW;zD?y5sGqALF~_cTv4QkC_)QW5V>NgIZJ|e at hUkCf@fN zVs2kS31Y6dAB<~FbMS2#UOA{j291=1x7ZHTSJWwIKJW7yt9etwkHsM^gCM+F;=F)M9>3e=;Q#tB zTk-tWRC1iZ|8^C7JdmQwo6b~kj`;QGFWIBpDD74fVLiUAIoTlIK_(|>X2RzBI+{8= zI;BZ{twZbnt*}p6H3Vq}C)+!wBms7fr4Zd~S z8rfr=RHbumy~563r_WdfzvK_7FgRKZC#kgXS at xCf&UU4aBAymWwzc1$o;Z`Z30vcd zjq71bnt?WJChjgHda+#{=%ZD`9!U?Fwub|5Z{p`Ko`O|FDUD}qZ9OvM6Qf@{tJ2Cn z`|o74c&RLqc{cVlo0)x@@?>l-dJH*|oMljuK837S$Mb|3pa^gZs&az zU~b9{$U$lbVcLbBT;#gC6U#TR%G{+}41B(~3r3w!$6M!;qy9laC71F*_m|4U*>N|wR6DZE)}YH#I(x-+MRy0f|6l~ z1RWb(?#b+V6Z6MxV`DyzUBt5(43nmBF%;fI2A=2$uN91mM^i>aEq+Mkn2oWuMIAxV z%Xs$uS^V(kT{z3vV`(FA5{tc^y<{lOZ_!vaqeNEt8aX&YnG1NvMgpA+xd-v|`aK5m zry+K|1@~dMREl)~`N`ZIC=9RzGS9!hyw_ZH>gJ*b=-+a3PqjVA++Ct;;q1K at mj+kgT=03d5We?A%cjwV3I zyfwVV;Ir7Xt>yKYo0^T{fDvKIKA?;8SY15On@`PShw^~#TBXI?`FVK;K<(W%MMc@(6Vf8Tfvhd1r$Igeg%F|@YA zai;YR&yx at i@V6G;*Gf*?nv4t&U}XC+rg;EF53(nvDroF(@pS!+*U#o+c62x;*|!1y z!gaCG54mi^VY%i#ds1}Bp945Ul1;rX``BqEW^JezZ zk28$OG1r2d0U{dF=^Y@>UJ&D{S0TizvzaF0} z;Y&D<9eX5yfBE=h1kkUa<^WoV)Bx5S+VRs80pu#po0PEHt2WIPZ at Nr5x6WL!RZfk4 zJAy~(-v5GX|=XhofZ+9kNc22+#HiQ10M02zBD>AhW;H#N$j7UP2C-4=bs}R zt+BeY8vEFc0(&})o-Z$bO18zEK2PTCV&SBn;d}>jn8mIlXV}1d^!B?SKgM1aslw;Z z<%-eQSBztD;EpwR%x6CiX&(Eo?Y8%v#XqNMGKbSYa at YxE3#ZBa>Krm?SuG z={VJB|I=qLBcE%DGq8k9NqOmYoV8(dN?E^C at Y>vT?PQvdkGwfG#}u#qee4kH+iiLR z&db11KTcjZHmU}mu;Q79SX?e6&)6XB=Kw+J$f$b$4uBaY!E0h0WgJ+MlBX+c7#coQk5hw|3(DcPmjCDTaCV zTf3X!XKxBzc#3j-bPoCIgP>uTdh+Z~Ci>wu=6705HZeI1KHOmIYRS%yj0~|37JHUb z3#Jk5=Q)3~t&Za)Jytgd_!9gvl}3(ZFwFF+GW(#6_MwA=INQw~t?-`;eCL4o$wiw1 zGi0=*rz;Wbj>eWKL+Ug0pMCkY!?|zS&;bmnV9P^@zvb)O znY*aMRK4NB!bn&y?`+E}z~BxrTU^7^U-~NI2 zP_hS_$Kitjn at OhT)L77P&wXjgPisdpF*br?bjHG`<;dgFm={wn at 1-0?+bJ}lta||W zDnPAZXuzBS>Bi5`&mlb30-lB0dReDGa2QfaUL^yoCWVIcqDk4 z@(#@r($L$=;t2Ao$1{zWjx|iB<{vQLM*#U9ugkJtLl7RL0S>S>pTp?}j?3C(eXe>o(b0DI3^}0 z0gm=qU0O-q;V&U$_Rmv3`|~&jo(!-zHlV&j2RASfDf-2Ct}C0Sn%K5teB8Vc3=?|y z)mOhvg)8>7GxBYorFkTa%gd=~W_4pNdD>Q}TMX6@@yd2|JLWa=*?b~L=JpKWlxPGS z(5E(jAH-l)0IMq3Xum=WCzJ;Vw>v$g3K0=2#^xpfv(vb{I8V_Dk3^c9+oK604?v7`#{dbgS%oAi&xfp)qn|vs z{n-~kjvr zxm*ME9d_^enh{s08ECK^0j|&)21Q5=~e$^mF62SlU2-paqKaG at 0*!=SM$1ndadGqHZ0rcOJ zz{ltPlpsEm!$$(>bNu<21klGHkANQuqX7VA-y#4Bv3qQfI4gq8Dxp|K19y at kYVr1lQE++4d}usI_13Hn$8yZeuR9Pe`>2Pv3H=qkS2F6 zEUZNT;7E$pmThT*JiVBkiFOP1Jhj1I*>_KTEn>sEn{VUgWC4<&k6deaEPekWvQ0g4 zfFp*WK|VX;v{FX~xHnHY+8UAJz39tz;s}^G%DQSZkcpl3jhKW)wOI7T{(34Ti66xI zGUr(vY`)<-M8tG0iyJKHTwnYYb`1I1Q{;QU3KsxhclT3K+3VLYQ(DT~w;yA3`!pt} z#!^bz8MxG6=!J0g$JXI?l&jl;s>3aAVtf#i0}u}ncBkM(6=%2I+-CN7c6KhwzNEe# z{-G0jT)&H at jZ#eDjGkQFL2%&}^{X_j!1Sxdr45AW4nmiML^;{xp>0>GYCiG>j$a41 zdp*wKFf()0(b(D$Zx=SBFxZaM${OQTJ72kz^@7$_hf{IbAF*K+5!bm*>o2!8>hZv*kx zo(`_HJISX{R4@&Xj!*F8SAwhigi=(@S;tOZvy}ixL3zy+0(0kuozB}aB+{>6yLLl4YFU3 zYlB8(iW*Srt5m98hNPKjYR+N#U_Z_w1dgFIKc;`MKRzxl0(7=A$fSgDqkZuk%t5gV*l2(NwYBB^!N&Bsz+~@0L+rkf5t0gfXSm-I zb&t+%&*JOdACKvU&`(^GNw~GzdCG&b8Kyml97JscXpfv-Kb0l*HMD0Ogv+%l3=i?| z9ta{tp6{lnmh at N;3VjX9H;)tfjj4%Iytu*0WxL`T3by>|W2~&K#9pbCz|smW3ptEV zPFt`8IX7%=;feW&Imohw2?vM!K%$d4I^*)B8k>5vc-*5Hx=u9v26?)Hq at LlOR!bPR z{oS}`FWMpEw!!H{mO6FLl}nE&k-1Zd%t at sjM?Am0xfU6&`wH^a3t at w116U=d-hYh!oxRl1_zW_2f-x{r*c?Zjh3`Xh zig=AfLnCQiqQ^7EVZ3eu6JT)s+xX-ZAUKNy!ye*{D0|AAWPXW#`S#5Z5Uh*jC|D8e z_#`8U9xHg1s-aWn>=Iy)MDw&NyXE-yn{U$bkGVD#2$0pFHaMt z)Ck0Wz5U_Gc=zL*bgZGg3w(e3Z-1Bc;K9I}?|GSsvT`^(JCh#QBiG;#B9jvn6G^t6 zYT)zCd$Bmmzl$>(bqTBFZwNx<@vD&upKDd(-~7#Q&>^sk$1Hej1`l4nnop6e1BlOH zF`J?+FJHXkc_x$Zqcb>~75g8L at Y^TRah~truf*EcW;%8iPlk#k;7o7A!=vNF zG$!xx$a(0jYkM}1Fo>SC^y2^xfMq%YPKVMqtgfzN(3+8~oL(PTdIDM at jHs`%)(U z^6T+2U;p^^)5reWYaT!E@$c at f-+%4B{{Ozz4Y62U1|HHEx1S#KZ$_b&J-_V%C%z{9 z=0CAp+n|H*Fap0Gu>ksrLtaQ2P~K%PkR79Gy*)YfU=OnKA?48h`Oklb)b*w4poHYJ z*Pq9fM~mRR=>&aXQ5me0P?=BLg5%I|cMaD{p2qKf`-_w>th41*ByEQGjUc3+uBQ4N9UVcA zk>U34Si_-e2Se-`JU2TZC;Laye8*?@4<}qP$IR45kNkJ)r|evd5 at -=}BbY`x9lcue~mx{gLFt#k1h dxTCE-{y!-A93j&uqc{Kn002ovPDHLkV1hb?N0|Ts literal 0 HcmV?d00001 diff --git a/data/meson.build b/data/meson.build index 9490d20ac..df2be7ecc 100644 --- a/data/meson.build +++ b/data/meson.build @@ -1,6 +1,7 @@ image_files = [ '1080p-left.png', '1080p-right.png', + 'default_hd_image.png', 'pass.png', ] -- 2.25.1 From swati2.sharma at intel.com Fri Jan 10 19:51:00 2025 From: swati2.sharma at intel.com (Swati Sharma) Date: Sat, 11 Jan 2025 01:21:00 +0530 Subject: [PATCH i-g-t 8/8] meson: Add sharpness tool In-Reply-To: <20250110195100.150301-1-swati2.sharma@intel.com> References: <20250110195100.150301-1-swati2.sharma@intel.com> Message-ID: <20250110195100.150301-9-swati2.sharma@intel.com> From: Naladala Ramanaidu Make changes in tools/meson.build to build sharpness tool. Signed-off-by: Swati Sharma --- tools/meson.build | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tools/meson.build b/tools/meson.build index 511aec69e..dcd931cc1 100644 --- a/tools/meson.build +++ b/tools/meson.build @@ -68,6 +68,17 @@ if libudev.found() install : true) endif +executable('intel_sharpness_tool', 'intel_sharpness_tool.c', + dependencies : tool_deps, + c_args : [ + '-DIGT_DATADIR="@0@"'.format(join_paths(prefix, datadir)), + '-DIGT_SRCDIR="@0@"'.format(srcdir), + '-DIGT_IMGDIR="@0@"'.format(imgdir), + '-DIGT_LOG_DOMAIN="@0@"'.format(f.split('.')[0]) + ], + install_rpath : bindir_rpathdir, + install : true) + executable('gputop', 'gputop.c', install : true, install_rpath : bindir_rpathdir, -- 2.25.1 From patchwork at emeril.freedesktop.org Fri Jan 10 20:02:05 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 20:02:05 -0000 Subject: =?utf-8?q?=E2=9C=97_Fi=2ECI=2EBUILD=3A_failure_for_New_sharpness_tool_=28rev?= =?utf-8?q?2=29?= In-Reply-To: <20250110195100.150301-1-swati2.sharma@intel.com> References: <20250110195100.150301-1-swati2.sharma@intel.com> Message-ID: <173653932517.2050889.10464662183711259306@b555e5b46a47> == Series Details == Series: New sharpness tool (rev2) URL : https://patchwork.freedesktop.org/series/138966/ State : failure == Summary == Applying: data: Move PNG images to new data directory Applying: runner/settings: Constify absolute_path parameter Applying: runner/settings: Add function to set IGT_RUNNER_DATA environment variable Applying: lib/igt_core: Enhance __igt_fopen_data to support additional directories Applying: lib/igt_kms: Add "sharpness strength" as crtc property Using index info to reconstruct a base tree... M lib/igt_kms.c M lib/igt_kms.h Falling back to patching base and 3-way merge... Auto-merging lib/igt_kms.h CONFLICT (content): Merge conflict in lib/igt_kms.h Auto-merging lib/igt_kms.c CONFLICT (content): Merge conflict in lib/igt_kms.c Patch failed at 0005 lib/igt_kms: Add "sharpness strength" as crtc property When you have resolved this problem, run "git am --continue". If you prefer to skip this patch, run "git am --skip" instead. To restore the original branch and stop patching, run "git am --abort". From patchwork at emeril.freedesktop.org Fri Jan 10 20:05:23 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 20:05:23 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/kms=5Fhistogram=3A_A?= =?utf-8?q?dd_check_for_ghe_api_call_=28rev4=29?= In-Reply-To: <20250108124637.291978-1-mohammed.thasleem@intel.com> References: <20250108124637.291978-1-mohammed.thasleem@intel.com> Message-ID: <173653952316.2056621.11992845445940846056@b555e5b46a47> == Series Details == Series: tests/kms_histogram: Add check for ghe api call (rev4) URL : https://patchwork.freedesktop.org/series/143142/ State : failure == Summary == CI Bug Log - changes from XEIGT_8182_full -> XEIGTPW_12402_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12402_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12402_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_12402_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@flip-vs-suspend-interruptible at c-hdmi-a6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-434/igt at kms_flip@flip-vs-suspend-interruptible at c-hdmi-a6.html * igt at kms_flip@flip-vs-suspend at c-hdmi-a6: - shard-dg2-set2: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs-suspend at c-hdmi-a6.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-433/igt at kms_flip@flip-vs-suspend at c-hdmi-a6.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][4] +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_lease@setcrtc-implicit-plane: - shard-bmg: [PASS][5] -> [SKIP][6] +4 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_lease@setcrtc-implicit-plane.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_lease@setcrtc-implicit-plane.html #### Warnings #### * igt at kms_bw@linear-tiling-3-displays-2560x1440p: - shard-bmg: [SKIP][7] ([Intel XE#367]) -> [SKIP][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_bw@linear-tiling-3-displays-2560x1440p.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_bw@linear-tiling-3-displays-2560x1440p.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-bmg: [SKIP][9] ([Intel XE#2252]) -> [SKIP][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_chamelium_frames@dp-crc-fast.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][11] ([Intel XE#2291]) -> [SKIP][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_feature_discovery@display-4x: - shard-bmg: [SKIP][13] ([Intel XE#1138]) -> [SKIP][14] [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_feature_discovery@display-4x.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_feature_discovery@display-4x.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][15] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][16] [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [FAIL][17] ([Intel XE#2333]) -> [SKIP][18] +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][19] ([Intel XE#2311]) -> [SKIP][20] +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-bmg: [SKIP][21] ([Intel XE#2313]) -> [SKIP][22] [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt at kms_vrr@cmrr: - shard-bmg: [SKIP][23] ([Intel XE#2168]) -> [SKIP][24] [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_vrr@cmrr.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_vrr@cmrr.html Known issues ------------ Here are the changes found in XEIGTPW_12402_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@unplug-rescan: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#1885]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at core_hotunplug@unplug-rescan.html - shard-dg2-set2: [PASS][26] -> [SKIP][27] ([Intel XE#1885]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at core_hotunplug@unplug-rescan.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at core_hotunplug@unplug-rescan.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#3007]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-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-a-edp-1-linear: - shard-lnl: [PASS][29] -> [FAIL][30] ([Intel XE#911]) +3 other tests fail [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-3/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#873]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-3/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#2136]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#829]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1407]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-7/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2327]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1467]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-7/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1124]) +5 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-435/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1124]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-2/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1124]) +8 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-7/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#2314] / [Intel XE#2894]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2314] / [Intel XE#2894]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#2191]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-433/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#367]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-434/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#367]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#2887]) +6 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-2/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#455] / [Intel XE#787]) +24 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-435/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][51] -> [INCOMPLETE][52] ([Intel XE#3862]) +1 other test incomplete [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#3432]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#3432]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#787]) +139 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-463/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][56] -> [INCOMPLETE][57] ([Intel XE#1727] / [Intel XE#3124]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/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-a-dp-4: - shard-dg2-set2: [PASS][58] -> [INCOMPLETE][59] ([Intel XE#3124]) +1 other test incomplete [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-dp-4.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][60] -> [DMESG-WARN][61] ([Intel XE#1727]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-hdmi-a-6.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2887]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-3/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html - shard-dg2-set2: [PASS][63] -> [INCOMPLETE][64] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-433/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][65] -> [DMESG-WARN][66] ([Intel XE#1727] / [Intel XE#3113]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-6.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-433/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-4-tiled-dg2-rc-ccs at pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][67] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#2907]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition: - shard-dg2-set2: [PASS][69] -> [SKIP][70] ([Intel XE#2136]) +6 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_cdclk@mode-transition.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_cdclk@mode-transition.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#306]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-6/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#306]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-432/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2252]) +9 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#373]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#373]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-3/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_content_protection@atomic: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_content_protection@atomic.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#3278]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2321]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-1/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1424]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-4/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#308]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-432/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#323]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-436/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2286]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-8/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipa-atomic: - shard-dg2-set2: [PASS][83] -> [INCOMPLETE][84] ([Intel XE#3226]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_cursor_legacy@cursora-vs-flipa-atomic.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-435/igt at kms_cursor_legacy@cursora-vs-flipa-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#309]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-6/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [PASS][86] -> [DMESG-WARN][87] ([Intel XE#877]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2-set2: [PASS][88] -> [SKIP][89] ([Intel XE#2423] / [i915#2575]) +16 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-bmg: [PASS][90] -> [SKIP][91] ([Intel XE#2291]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([i915#3804]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-433/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6.html * igt at kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#2244]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-6/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#455]) +6 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-433/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2374]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-7/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#1135]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-463/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1421]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-3/igt at kms_flip@2x-blocking-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][98] -> [FAIL][99] ([Intel XE#3321]) +1 other test fail [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-435/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-dp2-hdmi-a3: - shard-bmg: [PASS][100] -> [FAIL][101] ([Intel XE#3288] / [Intel XE#3321]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-dp2-hdmi-a3.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-8/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-interruptible at cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][102] -> [FAIL][103] ([Intel XE#301]) +2 other tests fail [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/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 ad-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][104] ([Intel XE#301]) +3 other tests fail [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_flip@2x-flip-vs-expired-vblank at ad-hdmi-a6-dp4.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][105] -> [SKIP][106] ([Intel XE#2316]) +6 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at kms_flip@2x-nonexisting-fb.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1397]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling: - shard-dg2-set2: [PASS][108] -> [SKIP][109] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-3/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2136] / [Intel XE#2351]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#651]) +6 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2312]) +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2311]) +17 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][115] ([Intel XE#2333]) +6 other tests fail [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/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-move: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#656]) +10 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#651]) +9 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#653]) +7 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2136] / [Intel XE#2231]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#658]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2313]) +13 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#3544]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at kms_hdr@brightness-with-hdr.html * igt at kms_histogram@algo-basic: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#3897]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-7/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#3897]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-8/igt at kms_histogram@algo-color.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#346]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-3/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#346]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-463/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#356]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-5/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2486]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-3/igt at kms_panel_fitting@legacy.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][129] ([Intel XE#616]) +2 other tests fail [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#599]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-5/igt at kms_plane_lowres@tiling-x at pipe-b-edp-1.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#3307]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-7/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@invalid-num-scalers: - shard-bmg: [PASS][132] -> [SKIP][133] ([Intel XE#3007]) +15 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_plane_scaling@invalid-num-scalers.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_plane_scaling@invalid-num-scalers.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#2763]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-434/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-modifiers at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-434/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#2763]) +11 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-8/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2763]) +14 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2392]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: NOTRUN -> [FAIL][139] ([Intel XE#1430]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-3/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#1439] / [Intel XE#836]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1489]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-432/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#2893]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-3/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#1489]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1128]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-6/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-cursor-plane-move: - shard-lnl: [PASS][145] -> [FAIL][146] ([Intel XE#3924]) +1 other test fail [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt at kms_psr@fbc-psr2-cursor-plane-move.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-7/igt at kms_psr@fbc-psr2-cursor-plane-move.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1406]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-6/igt at kms_psr@pr-primary-blt.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-5/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2234]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-1/igt at kms_psr@psr2-primary-render.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2330]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#1435]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [PASS][153] -> [FAIL][154] ([Intel XE#899]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#1499]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-7/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#1499]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-5/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#1280] / [Intel XE#455]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-463/igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#3889]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#3889]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-6/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#2905]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-5/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2905]) +5 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-8/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-large-cm: - shard-dg2-set2: [PASS][162] -> [SKIP][163] ([Intel XE#1130]) +30 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_evict@evict-beng-large-cm.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at xe_evict@evict-beng-large-cm.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: NOTRUN -> [TIMEOUT][164] ([Intel XE#1473]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-5/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-mixed-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#688]) +4 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-1/igt at xe_evict@evict-beng-mixed-threads-large-multi-vm.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#1392]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [PASS][167] -> [SKIP][168] ([Intel XE#1392]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-432/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2322]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-3/igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#1392]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-7/igt at xe_exec_basic@multigpu-once-userptr.html * igt at xe_exec_basic@twice-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#1130]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at xe_exec_basic@twice-userptr.html * igt at xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#288]) +9 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#2905]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-432/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_exec_threads@threads-hang-userptr-rebind-err: - shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#1130]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at xe_exec_threads@threads-hang-userptr-rebind-err.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#2229]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-5/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#1192]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-8/igt at xe_live_ktest@xe_mocs.html * igt at xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2457]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-3/igt at xe_module_load@force-load.html * igt at xe_module_load@load: - shard-bmg: ([PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [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]) -> ([SKIP][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], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227]) ([Intel XE#2457]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-8/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-1/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-7/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-7/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-8/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-3/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-3/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-3/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-7/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-1/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-5/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-8/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-8/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-5/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-5/igt at xe_module_load@load.html * igt at xe_module_load@reload-no-display: - shard-bmg: [PASS][228] -> [FAIL][229] ([Intel XE#3546]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@reload-no-display.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at xe_module_load@reload-no-display.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: NOTRUN -> [SKIP][230] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at xe_oa@disabled-read-error.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][231] ([Intel XE#2248]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][232] ([Intel XE#1420]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at xe_pat@pat-index-xehpc.html - shard-dg2-set2: NOTRUN -> [SKIP][233] ([Intel XE#2838] / [Intel XE#979]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][234] ([Intel XE#2284]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-1/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][235] ([Intel XE#2284] / [Intel XE#366]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [PASS][236] -> [ABORT][237] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_pm@s2idle-vm-bind-unbind-all.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][238] -> [FAIL][239] ([Intel XE#958]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-4/igt at xe_pm_residency@toggle-gt-c6.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-5/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: NOTRUN -> [SKIP][240] ([Intel XE#944]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-435/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][241] ([Intel XE#944]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-6/igt at xe_query@multigpu-query-topology-l3-bank-mask.html * igt at xe_vm@mmap-style-bind-many-either-side-partial-hammer: - shard-bmg: [PASS][242] -> [SKIP][243] ([Intel XE#1130]) +37 other tests skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_vm@mmap-style-bind-many-either-side-partial-hammer.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at xe_vm@mmap-style-bind-many-either-side-partial-hammer.html #### Possible fixes #### * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][244] ([Intel XE#827]) -> [PASS][245] +1 other test pass [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][246] ([Intel XE#2136]) -> [PASS][247] +3 other tests pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-432/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][248] ([Intel XE#3124]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-434/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-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][250] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html * igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-bmg: [SKIP][252] ([Intel XE#2291]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][254] ([Intel XE#877]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@torture-bo at pipe-a: - shard-lnl: [DMESG-WARN][256] ([Intel XE#877]) -> [PASS][257] +1 other test pass [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_cursor_legacy@torture-bo at pipe-a.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-6/igt at kms_cursor_legacy@torture-bo at pipe-a.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-bmg: [SKIP][258] ([Intel XE#2316]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-dpms-vs-vblank-race.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][260] ([Intel XE#3288] / [Intel XE#3321]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-8/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 at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][262] ([Intel XE#3321]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@absolute-wf_vblank: - shard-lnl: [INCOMPLETE][264] ([Intel XE#2049]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-5/igt at kms_flip@absolute-wf_vblank.html * igt at kms_flip@absolute-wf_vblank at b-edp1: - shard-lnl: [INCOMPLETE][266] -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank at b-edp1.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-5/igt at kms_flip@absolute-wf_vblank at b-edp1.html * igt at kms_flip@basic-flip-vs-wf_vblank: - shard-dg2-set2: [FAIL][268] ([Intel XE#3098]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@basic-flip-vs-wf_vblank.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-463/igt at kms_flip@basic-flip-vs-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2-set2: [INCOMPLETE][270] ([Intel XE#3937]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-463/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4: - shard-dg2-set2: [INCOMPLETE][272] -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-463/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][274] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: - shard-dg2-set2: [FAIL][276] ([Intel XE#301]) -> [PASS][277] +6 other tests pass [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html * igt at kms_flip@flip-vs-rmfb at d-hdmi-a3: - shard-bmg: [INCOMPLETE][278] -> [PASS][279] +3 other tests pass [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-7/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][280] ([Intel XE#2597]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3: - shard-bmg: [INCOMPLETE][282] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-bmg: [SKIP][284] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][285] +2 other tests pass [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_lease@possible-crtcs-filtering: - shard-bmg: [SKIP][286] ([Intel XE#3007]) -> [PASS][287] +6 other tests pass [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_lease@possible-crtcs-filtering.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-7/igt at kms_lease@possible-crtcs-filtering.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][288] ([Intel XE#718]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [ABORT][290] ([Intel XE#2625]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_pm_rpm@system-suspend-modeset.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-435/igt at kms_pm_rpm@system-suspend-modeset.html - shard-bmg: [DMESG-WARN][292] -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@system-suspend-modeset.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-8/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_rmfb@close-fd: - shard-dg2-set2: [SKIP][294] ([Intel XE#2423] / [i915#2575]) -> [PASS][295] +6 other tests pass [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_rmfb@close-fd.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-436/igt at kms_rmfb@close-fd.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][296] ([Intel XE#1435]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-5/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [FAIL][298] ([Intel XE#2159]) -> [PASS][299] +1 other test pass [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_vrr@cmrr at pipe-a-edp-1.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-lnl-2/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-dg2-set2: [SKIP][300] ([Intel XE#1392]) -> [PASS][301] +2 other tests pass [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-463/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt at xe_exec_basic@once-rebind: - shard-dg2-set2: [SKIP][302] ([Intel XE#1130]) -> [PASS][303] +5 other tests pass [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_basic@once-rebind.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-432/igt at xe_exec_basic@once-rebind.html * igt at xe_exec_threads@threads-hang-rebind-err: - shard-bmg: [SKIP][304] ([Intel XE#1130]) -> [PASS][305] +11 other tests pass [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_threads@threads-hang-rebind-err.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-3/igt at xe_exec_threads@threads-hang-rebind-err.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][306] ([Intel XE#1192]) -> [PASS][307] +1 other test pass [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_live_ktest@xe_mocs.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-1/igt at xe_live_ktest@xe_mocs.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip-atomic: - shard-bmg: [SKIP][308] ([Intel XE#3007]) -> [SKIP][309] ([Intel XE#3768]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-8/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][310] ([Intel XE#2385]) -> [SKIP][311] ([Intel XE#3007]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg2-set2: [SKIP][312] ([Intel XE#455]) -> [SKIP][313] ([Intel XE#2423] / [i915#2575]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][314] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][315] ([Intel XE#1124]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-3/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][316] ([Intel XE#2136]) -> [SKIP][317] ([Intel XE#1124]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-436/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2-set2: [SKIP][318] ([Intel XE#1124]) -> [SKIP][319] ([Intel XE#2136]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][320] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][321] ([Intel XE#607]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: [SKIP][322] ([Intel XE#2136]) -> [SKIP][323] ([Intel XE#607]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [SKIP][324] ([Intel XE#1124]) -> [SKIP][325] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html - shard-dg2-set2: [SKIP][326] ([Intel XE#1124]) -> [SKIP][327] ([Intel XE#2136] / [Intel XE#2351]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: [SKIP][328] ([Intel XE#367]) -> [SKIP][329] ([Intel XE#2423] / [i915#2575]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html - shard-bmg: [SKIP][330] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][331] ([Intel XE#3007]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: [SKIP][332] ([Intel XE#367]) -> [SKIP][333] ([Intel XE#3007]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: [SKIP][334] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][335] ([Intel XE#2136]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][336] ([Intel XE#2887]) -> [SKIP][337] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][338] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][339] ([Intel XE#455] / [Intel XE#787]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-433/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][340] ([Intel XE#3432]) -> [SKIP][341] ([Intel XE#2136] / [Intel XE#2231]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html - shard-dg2-set2: [INCOMPLETE][342] ([Intel XE#3862]) -> [SKIP][343] ([Intel XE#2136]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][344] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][345] ([Intel XE#2887]) +2 other tests skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][346] ([Intel XE#2136]) -> [SKIP][347] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-463/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][348] ([Intel XE#2724]) -> [SKIP][349] ([Intel XE#2136] / [Intel XE#2231]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_cdclk@mode-transition.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_cdclk@mode-transition.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-bmg: [SKIP][350] ([Intel XE#2252]) -> [SKIP][351] ([Intel XE#3007]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_chamelium_edid@dp-edid-stress-resolution-4k.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_chamelium_edid@dp-edid-stress-resolution-4k.html - shard-dg2-set2: [SKIP][352] ([Intel XE#373]) -> [SKIP][353] ([Intel XE#2423] / [i915#2575]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_chamelium_edid@dp-edid-stress-resolution-4k.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: [SKIP][354] ([Intel XE#3007]) -> [SKIP][355] ([Intel XE#2252]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-7/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html - shard-dg2-set2: [SKIP][356] ([Intel XE#2423] / [i915#2575]) -> [SKIP][357] ([Intel XE#373]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-432/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-2: - shard-bmg: [FAIL][358] ([Intel XE#1178]) -> [INCOMPLETE][359] ([Intel XE#2715]) +1 other test incomplete [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_content_protection@lic-type-0 at pipe-a-dp-2.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-1/igt at kms_content_protection@lic-type-0 at pipe-a-dp-2.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][360] ([Intel XE#3007]) -> [SKIP][361] ([Intel XE#2341]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_content_protection@mei-interface.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-5/igt at kms_content_protection@mei-interface.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][362] ([Intel XE#308]) -> [SKIP][363] ([Intel XE#2423] / [i915#2575]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_cursor_crc@cursor-offscreen-512x512.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_cursor_crc@cursor-offscreen-512x512.html - shard-bmg: [SKIP][364] ([Intel XE#2321]) -> [SKIP][365] ([Intel XE#3007]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_cursor_crc@cursor-offscreen-512x512.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][366] ([Intel XE#3007]) -> [SKIP][367] ([Intel XE#2320]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-1/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg2-set2: [SKIP][368] ([Intel XE#2423] / [i915#2575]) -> [SKIP][369] ([Intel XE#455]) +2 other tests skip [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-433/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [SKIP][370] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][371] ([Intel XE#1695]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][372] ([Intel XE#2423] / [i915#2575]) -> [SKIP][373] ([Intel XE#701]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_feature_discovery@chamelium.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-432/igt at kms_feature_discovery@chamelium.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: [SKIP][374] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][375] ([Intel XE#2136] / [Intel XE#2231]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][376] ([Intel XE#2311]) -> [SKIP][377] ([Intel XE#2312]) +10 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][378] ([Intel XE#2312]) -> [SKIP][379] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-bmg: [SKIP][380] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][381] ([Intel XE#2311]) +2 other tests skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-bmg: [FAIL][382] ([Intel XE#2333]) -> [SKIP][383] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][384] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][385] ([Intel XE#2333]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][386] ([Intel XE#2312]) -> [FAIL][387] ([Intel XE#2333]) +3 other tests fail [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [INCOMPLETE][388] ([Intel XE#2050]) -> [FAIL][389] ([Intel XE#2333]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][390] ([Intel XE#2333]) -> [SKIP][391] ([Intel XE#2312]) +4 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][392] ([Intel XE#658]) -> [SKIP][393] ([Intel XE#2136] / [Intel XE#2351]) [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_frontbuffer_tracking@fbc-tiling-y.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-tiling-y.html - shard-bmg: [SKIP][394] ([Intel XE#2352]) -> [SKIP][395] ([Intel XE#2136] / [Intel XE#2231]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-tiling-y.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][396] ([Intel XE#2311]) -> [SKIP][397] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html - shard-dg2-set2: [SKIP][398] ([Intel XE#651]) -> [SKIP][399] ([Intel XE#2136]) +3 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][400] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][401] ([Intel XE#651]) +2 other tests skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][402] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][403] ([Intel XE#2312]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html - shard-dg2-set2: [SKIP][404] ([Intel XE#2136]) -> [SKIP][405] ([Intel XE#651]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][406] ([Intel XE#651]) -> [SKIP][407] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][408] ([Intel XE#2312]) -> [SKIP][409] ([Intel XE#2311]) +5 other tests skip [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][410] ([Intel XE#2136]) -> [SKIP][411] ([Intel XE#653]) +1 other test skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][412] ([Intel XE#2312]) -> [SKIP][413] ([Intel XE#2313]) +4 other tests skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][414] ([Intel XE#653]) -> [SKIP][415] ([Intel XE#2136]) +6 other tests skip [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][416] ([Intel XE#2313]) -> [SKIP][417] ([Intel XE#2312]) +9 other tests skip [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][418] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][419] ([Intel XE#2313]) +3 other tests skip [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html - shard-dg2-set2: [SKIP][420] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][421] ([Intel XE#653]) +1 other test skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][422] ([Intel XE#2313]) -> [SKIP][423] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_pm_backlight@fade: - shard-bmg: [SKIP][424] ([Intel XE#870]) -> [SKIP][425] ([Intel XE#2136] / [Intel XE#2231]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_pm_backlight@fade.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_pm_backlight@fade.html - shard-dg2-set2: [SKIP][426] ([Intel XE#870]) -> [SKIP][427] ([Intel XE#2136]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_pm_backlight@fade.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_pm_backlight@fade.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][428] ([Intel XE#1489]) -> [SKIP][429] ([Intel XE#2136]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html - shard-bmg: [SKIP][430] ([Intel XE#1489]) -> [SKIP][431] ([Intel XE#2136] / [Intel XE#2231]) [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][432] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][433] ([Intel XE#2387]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-3/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-bmg: [SKIP][434] ([Intel XE#2387]) -> [SKIP][435] ([Intel XE#2136] / [Intel XE#2231]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_psr2_su@page_flip-xrgb8888.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_psr2_su@page_flip-xrgb8888.html - shard-dg2-set2: [SKIP][436] ([Intel XE#1122]) -> [SKIP][437] ([Intel XE#2136]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr2_su@page_flip-xrgb8888.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][438] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][439] ([Intel XE#2234] / [Intel XE#2850]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr@fbc-pr-sprite-blt.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-2/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_psr@fbc-pr-sprite-render: - shard-dg2-set2: [SKIP][440] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][441] ([Intel XE#2136] / [Intel XE#2351]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_psr@fbc-pr-sprite-render.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_psr@fbc-pr-sprite-render.html * igt at kms_psr@pr-sprite-plane-move: - shard-dg2-set2: [SKIP][442] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][443] ([Intel XE#2136]) +1 other test skip [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_psr@pr-sprite-plane-move.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_psr@pr-sprite-plane-move.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: [SKIP][444] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][445] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_psr@psr-primary-page-flip.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at kms_psr@psr-primary-page-flip.html - shard-dg2-set2: [SKIP][446] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][447] ([Intel XE#2351]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_psr@psr-primary-page-flip.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at kms_psr@psr-primary-page-flip.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][448] ([Intel XE#3007]) -> [SKIP][449] ([Intel XE#3414] / [Intel XE#3904]) [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg2-set2: [SKIP][450] ([Intel XE#2423] / [i915#2575]) -> [SKIP][451] ([Intel XE#3414]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][452] ([Intel XE#1729]) -> [SKIP][453] ([Intel XE#362]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_tiled_display@basic-test-pattern.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][454] ([Intel XE#1130]) -> [SKIP][455] ([Intel XE#1280] / [Intel XE#455]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_compute_preempt@compute-threadgroup-preempt.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-463/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_eudebug@basic-vm-bind-extended-discovery: - shard-dg2-set2: [SKIP][456] ([Intel XE#1130]) -> [SKIP][457] ([Intel XE#2905]) +1 other test skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-extended-discovery.html - shard-bmg: [SKIP][458] ([Intel XE#1130]) -> [SKIP][459] ([Intel XE#2905]) +1 other test skip [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at xe_eudebug@basic-vm-bind-extended-discovery.html * igt at xe_eudebug@exec-queue-placements: - shard-bmg: [SKIP][460] ([Intel XE#2905]) -> [SKIP][461] ([Intel XE#1130]) +2 other tests skip [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_eudebug@exec-queue-placements.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at xe_eudebug@exec-queue-placements.html * igt at xe_eudebug_online@preempt-breakpoint: - shard-dg2-set2: [SKIP][462] ([Intel XE#2905]) -> [SKIP][463] ([Intel XE#1130]) +2 other tests skip [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_eudebug_online@preempt-breakpoint.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at xe_eudebug_online@preempt-breakpoint.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [TIMEOUT][464] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][465] ([Intel XE#1000]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_evict@evict-mixed-threads-large.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-8/igt at xe_evict@evict-mixed-threads-large.html * igt at xe_evict@evict-threads-large: - shard-bmg: [FAIL][466] ([Intel XE#1000]) -> [TIMEOUT][467] ([Intel XE#1473] / [Intel XE#2472]) [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_evict@evict-threads-large.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-5/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind: - shard-bmg: [SKIP][468] ([Intel XE#2322]) -> [SKIP][469] ([Intel XE#1130]) +1 other test skip [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][470] ([Intel XE#1130]) -> [SKIP][471] ([Intel XE#288]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-463/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: [SKIP][472] ([Intel XE#288]) -> [SKIP][473] ([Intel XE#1130]) +5 other tests skip [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][474] ([Intel XE#1130]) -> [SKIP][475] ([Intel XE#2360]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][476] ([Intel XE#2833]) -> [SKIP][477] ([Intel XE#1192]) [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_live_ktest@xe_eudebug.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html * igt at xe_oa@create-destroy-userspace-config: - shard-dg2-set2: [SKIP][478] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][479] ([Intel XE#1130]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_oa@create-destroy-userspace-config.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at xe_oa@create-destroy-userspace-config.html * igt at xe_peer2peer@write: - shard-dg2-set2: [FAIL][480] ([Intel XE#1173]) -> [SKIP][481] ([Intel XE#1061]) [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_peer2peer@write.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-432/igt at xe_peer2peer@write.html * igt at xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][482] ([Intel XE#944]) -> [SKIP][483] ([Intel XE#1130]) [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_query@multigpu-query-uc-fw-version-guc.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at xe_query@multigpu-query-uc-fw-version-guc.html - shard-bmg: [SKIP][484] ([Intel XE#944]) -> [SKIP][485] ([Intel XE#1130]) [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_query@multigpu-query-uc-fw-version-guc.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-4/igt at xe_query@multigpu-query-uc-fw-version-guc.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][486] ([Intel XE#1130]) -> [SKIP][487] ([Intel XE#944]) [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_query@multigpu-query-uc-fw-version-huc.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-bmg-7/igt at xe_query@multigpu-query-uc-fw-version-huc.html - shard-dg2-set2: [SKIP][488] ([Intel XE#1130]) -> [SKIP][489] ([Intel XE#944]) [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-huc.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/shard-dg2-464/igt at xe_query@multigpu-query-uc-fw-version-huc.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#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#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#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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [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#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [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#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#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#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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [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#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [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#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3924 [Intel XE#3937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3937 [Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8182 -> IGTPW_12402 IGTPW_12402: ef700e3de7d3a30f0341df89ee63ea0a6efec877 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12402/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From maaz.mombasawala at broadcom.com Fri Jan 10 20:11:16 2025 From: maaz.mombasawala at broadcom.com (Maaz Mombasawala) Date: Fri, 10 Jan 2025 12:11:16 -0800 Subject: [PATCH] tests/vmwgfx: Check for 3d support on context and surface creation. Message-ID: <20250110201116.1485633-1-maaz.mombasawala@broadcom.com> Creating a vmwgfx context or surface will fail on a vm without 3d support. Check for 3d support when creating them so that the tests which use them skip instead of crashing. Signed-off-by: Maaz Mombasawala --- lib/igt_vmwgfx.c | 12 +++++++++- tests/vmwgfx/vmw_execution_buffer.c | 35 +++++++---------------------- 2 files changed, 19 insertions(+), 28 deletions(-) diff --git a/lib/igt_vmwgfx.c b/lib/igt_vmwgfx.c index 74c13b52b..94d255655 100644 --- a/lib/igt_vmwgfx.c +++ b/lib/igt_vmwgfx.c @@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-2.0 OR MIT /* - * Copyright (c) 2021-2024 Broadcom. All Rights Reserved. The term + * Copyright (c) 2021-2025 Broadcom. All Rights Reserved. The term * ?Broadcom? refers to Broadcom Inc. and/or its subsidiaries. */ @@ -175,6 +175,11 @@ uint64 vmw_ioctl_get_param(int fd, uint32 param) return arg.value; } +static inline uint64 vmw_supports_3d(int fd) +{ + return vmw_ioctl_get_param(fd, DRM_VMW_PARAM_3D); +} + void vmw_ioctl_get_3d_cap(int fd, uint64 buffer, uint32 max_size) { struct drm_vmw_get_3d_cap_arg arg = { 0 }; @@ -445,6 +450,9 @@ struct vmw_surface *vmw_ioctl_create_surface_full( int32 ret; union drm_vmw_gb_surface_create_ext_arg arg = { 0 }; + /* Surface creation will fail if 3d is not supported. */ + igt_require(vmw_supports_3d(fd)); + surface = calloc(1, sizeof(struct vmw_surface)); if (!surface) goto out_err1; @@ -721,6 +729,8 @@ int32 vmw_ioctl_context_create(int drm_fd) int ret; union drm_vmw_extended_context_arg arg = { 0 }; + /* Context creation will fail if 3d is not supported. */ + igt_require(vmw_supports_3d(drm_fd)); arg.req = drm_vmw_context_dx; do { diff --git a/tests/vmwgfx/vmw_execution_buffer.c b/tests/vmwgfx/vmw_execution_buffer.c index b89770b30..23c5f900d 100644 --- a/tests/vmwgfx/vmw_execution_buffer.c +++ b/tests/vmwgfx/vmw_execution_buffer.c @@ -1,28 +1,8 @@ // SPDX-License-Identifier: GPL-2.0 OR MIT -/********************************************************** - * Copyright 2021-2022 VMware, Inc. - * - * Permission is hereby granted, free of charge, to any person - * obtaining a copy of this software and associated documentation - * files (the "Software"), to deal in the Software without - * restriction, including without limitation the rights to use, copy, - * modify, merge, publish, distribute, sublicense, and/or sell copies - * of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - * - **********************************************************/ +/* + * Copyright (c) 2021-2025 Broadcom. All Rights Reserved. The term + * ?Broadcom? refers to Broadcom Inc. and/or its subsidiaries. + */ #include "igt_vmwgfx.h" @@ -271,12 +251,10 @@ static void execbuf_stress_test(int fd) igt_main_args("st:", long_options, NULL, parse_options, NULL) { int fd; - int32 cid; igt_fixture { fd = drm_open_driver_render(DRIVER_VMWGFX); - cid = vmw_ioctl_context_create(fd); } igt_describe("Test creation/mapping of a basic mob."); @@ -294,7 +272,11 @@ igt_main_args("st:", long_options, NULL, parse_options, NULL) igt_describe("Test basic fencing on command buffers."); igt_subtest("execution-buffer-submit-sync") { + int32 cid; + + cid = vmw_ioctl_context_create(fd); check_execbuf_submit_fence(fd, cid); + vmw_ioctl_context_destroy(fd, cid); } if (options.stress_test) { @@ -307,7 +289,6 @@ igt_main_args("st:", long_options, NULL, parse_options, NULL) igt_fixture { - vmw_ioctl_context_destroy(fd, cid); drm_close_driver(fd); } } -- 2.43.0 From patchwork at emeril.freedesktop.org Fri Jan 10 20:54:38 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 20:54:38 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/vmwgfx=3A_Check_for_3?= =?utf-8?q?d_support_on_context_and_surface_creation=2E?= In-Reply-To: <20250110201116.1485633-1-maaz.mombasawala@broadcom.com> References: <20250110201116.1485633-1-maaz.mombasawala@broadcom.com> Message-ID: <173654247894.2058254.1895685670372278543@b555e5b46a47> == Series Details == Series: tests/vmwgfx: Check for 3d support on context and surface creation. URL : https://patchwork.freedesktop.org/series/143414/ State : success == Summary == CI Bug Log - changes from XEIGT_8188_BAT -> XEIGTPW_12431_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12431_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_exec_balancer@twice-parallel-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3958]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8188/bat-adlp-vf/igt at xe_exec_balancer@twice-parallel-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12431/bat-adlp-vf/igt at xe_exec_balancer@twice-parallel-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_8188/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12431/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_8188/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12431/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_8188 -> IGTPW_12431 IGTPW_12431: e3cb9ddf7c8635a14cb569a9a7a4c93bdf1c9e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8188: ef0abf7f39a7ef0ecf2f08c62b90b852c435c755 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde: 00f4619246294b1de4bac42742cfef95c1f37fde == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12431/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 10 21:02:49 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 21:02:49 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/vmwgfx=3A_Check_for?= =?utf-8?q?_3d_support_on_context_and_surface_creation=2E?= In-Reply-To: <20250110201116.1485633-1-maaz.mombasawala@broadcom.com> References: <20250110201116.1485633-1-maaz.mombasawala@broadcom.com> Message-ID: <173654296982.2058283.16508934661310411848@b555e5b46a47> == Series Details == Series: tests/vmwgfx: Check for 3d support on context and surface creation. URL : https://patchwork.freedesktop.org/series/143414/ State : success == Summary == CI Bug Log - changes from IGT_8188 -> IGTPW_12431 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12431 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-mtlp-6: [PASS][1] -> [DMESG-FAIL][2] ([i915#13393]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-mtlp-6/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/bat-mtlp-6/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_8188/bat-arlh-3/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/bat-arlh-3/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][5] ([i915#13393]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-mtlp-8/igt at i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/bat-mtlp-8/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_mocs: - bat-twl-2: [ABORT][7] ([i915#12919]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-twl-2/igt at i915_selftest@live at gt_mocs.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/bat-twl-2/igt at i915_selftest@live at gt_mocs.html * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][9] ([i915#13393]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/bat-mtlp-9/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#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8188 -> IGTPW_12431 CI-20190529: 20190529 CI_DRM_15942: 00f4619246294b1de4bac42742cfef95c1f37fde @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12431: e3cb9ddf7c8635a14cb569a9a7a4c93bdf1c9e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8188: ef0abf7f39a7ef0ecf2f08c62b90b852c435c755 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From zack.rusin at broadcom.com Fri Jan 10 20:44:39 2025 From: zack.rusin at broadcom.com (Zack Rusin) Date: Fri, 10 Jan 2025 15:44:39 -0500 Subject: [PATCH] tests/vmwgfx: Check for 3d support on context and surface creation. In-Reply-To: <20250110201116.1485633-1-maaz.mombasawala@broadcom.com> References: <20250110201116.1485633-1-maaz.mombasawala@broadcom.com> Message-ID: On Fri, Jan 10, 2025 at 3:11?PM Maaz Mombasawala wrote: > > Creating a vmwgfx context or surface will fail on a vm without 3d support. > Check for 3d support when creating them so that the tests which use them > skip instead of crashing. > > Signed-off-by: Maaz Mombasawala > --- > lib/igt_vmwgfx.c | 12 +++++++++- > tests/vmwgfx/vmw_execution_buffer.c | 35 +++++++---------------------- > 2 files changed, 19 insertions(+), 28 deletions(-) > > diff --git a/lib/igt_vmwgfx.c b/lib/igt_vmwgfx.c > index 74c13b52b..94d255655 100644 > --- a/lib/igt_vmwgfx.c > +++ b/lib/igt_vmwgfx.c > @@ -1,6 +1,6 @@ > // SPDX-License-Identifier: GPL-2.0 OR MIT > /* > - * Copyright (c) 2021-2024 Broadcom. All Rights Reserved. The term > + * Copyright (c) 2021-2025 Broadcom. All Rights Reserved. The term > * ?Broadcom? refers to Broadcom Inc. and/or its subsidiaries. > */ > > @@ -175,6 +175,11 @@ uint64 vmw_ioctl_get_param(int fd, uint32 param) > return arg.value; > } > > +static inline uint64 vmw_supports_3d(int fd) > +{ > + return vmw_ioctl_get_param(fd, DRM_VMW_PARAM_3D); > +} > + > void vmw_ioctl_get_3d_cap(int fd, uint64 buffer, uint32 max_size) > { > struct drm_vmw_get_3d_cap_arg arg = { 0 }; > @@ -445,6 +450,9 @@ struct vmw_surface *vmw_ioctl_create_surface_full( > int32 ret; > union drm_vmw_gb_surface_create_ext_arg arg = { 0 }; > > + /* Surface creation will fail if 3d is not supported. */ > + igt_require(vmw_supports_3d(fd)); > + > surface = calloc(1, sizeof(struct vmw_surface)); > if (!surface) > goto out_err1; > @@ -721,6 +729,8 @@ int32 vmw_ioctl_context_create(int drm_fd) > int ret; > union drm_vmw_extended_context_arg arg = { 0 }; > > + /* Context creation will fail if 3d is not supported. */ > + igt_require(vmw_supports_3d(drm_fd)); > arg.req = drm_vmw_context_dx; > > do { > diff --git a/tests/vmwgfx/vmw_execution_buffer.c b/tests/vmwgfx/vmw_execution_buffer.c > index b89770b30..23c5f900d 100644 > --- a/tests/vmwgfx/vmw_execution_buffer.c > +++ b/tests/vmwgfx/vmw_execution_buffer.c > @@ -1,28 +1,8 @@ > // SPDX-License-Identifier: GPL-2.0 OR MIT > -/********************************************************** > - * Copyright 2021-2022 VMware, Inc. > - * > - * Permission is hereby granted, free of charge, to any person > - * obtaining a copy of this software and associated documentation > - * files (the "Software"), to deal in the Software without > - * restriction, including without limitation the rights to use, copy, > - * modify, merge, publish, distribute, sublicense, and/or sell copies > - * of the Software, and to permit persons to whom the Software is > - * furnished to do so, subject to the following conditions: > - * > - * The above copyright notice and this permission notice shall be > - * included in all copies or substantial portions of the Software. > - * > - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, > - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF > - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND > - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS > - * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN > - * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN > - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE > - * SOFTWARE. > - * > - **********************************************************/ > +/* > + * Copyright (c) 2021-2025 Broadcom. All Rights Reserved. The term > + * ?Broadcom? refers to Broadcom Inc. and/or its subsidiaries. > + */ > > #include "igt_vmwgfx.h" > > @@ -271,12 +251,10 @@ static void execbuf_stress_test(int fd) > igt_main_args("st:", long_options, NULL, parse_options, NULL) > { > int fd; > - int32 cid; > > igt_fixture > { > fd = drm_open_driver_render(DRIVER_VMWGFX); > - cid = vmw_ioctl_context_create(fd); > } > > igt_describe("Test creation/mapping of a basic mob."); > @@ -294,7 +272,11 @@ igt_main_args("st:", long_options, NULL, parse_options, NULL) > igt_describe("Test basic fencing on command buffers."); > igt_subtest("execution-buffer-submit-sync") > { > + int32 cid; > + > + cid = vmw_ioctl_context_create(fd); > check_execbuf_submit_fence(fd, cid); > + vmw_ioctl_context_destroy(fd, cid); > } > > if (options.stress_test) { > @@ -307,7 +289,6 @@ igt_main_args("st:", long_options, NULL, parse_options, NULL) > > igt_fixture > { > - vmw_ioctl_context_destroy(fd, cid); > drm_close_driver(fd); > } > } > -- > 2.43.0 Looks great. Reviewed-by: Zack Rusin z -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 5427 bytes Desc: S/MIME Cryptographic Signature URL: From jonathan.cavitt at intel.com Fri Jan 10 21:22:37 2025 From: jonathan.cavitt at intel.com (Jonathan Cavitt) Date: Fri, 10 Jan 2025 21:22:37 +0000 Subject: [PATCH v4] tests/intel/xe_pm_residency: Skip on igt_power_open failure Message-ID: <20250110212237.4052-1-jonathan.cavitt@intel.com> The xe_pm_residency at toggle-gt-c6 test fails when gt_c6_power >= gt_c0_power. These values are reported by igt_power_get_mW, which will always report 0 in the case that igt_power_open fails to open either the hwmon_fd or rapl.fd. Since the expected result will always be a failure in this case, skip the assertion that gt_c6_power < gt_c0_power. v2: Do not skip the full test, and instead only ignore the part that is guaranteed to fail. v3: Use || instead of && (Riana) v4: Reprovision Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/958 Signed-off-by: Jonathan Cavitt Reviewed-by: Kamil Konieczny Reviewed-by: Riana Tauro --- tests/intel/xe_pm_residency.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c index 06f4a0bc6b..f9e96d6087 100644 --- a/tests/intel/xe_pm_residency.c +++ b/tests/intel/xe_pm_residency.c @@ -289,10 +289,14 @@ static void measure_power(struct igt_power *gpu, double *power) static void toggle_gt_c6(int fd, int n) { double gt_c0_power, gt_c6_power; - int gt; + int gt, ret; struct igt_power gpu; - igt_power_open(fd, &gpu, "gpu"); + /* + * igt_power_get_mW will always return 0 if igt_power_open fails, + * so skip the power check in this case. + */ + ret = igt_power_open(fd, &gpu, "gpu"); do { fw_handle = igt_debugfs_open(fd, "forcewake_all", O_RDONLY); @@ -319,7 +323,7 @@ static void toggle_gt_c6(int fd, int n) igt_info("GPU consumed %fmW in GT C6 and %fmW in GT C0\n", gt_c6_power, gt_c0_power); /* FIXME: Remove dgfx check after hwmon is added */ - if (!xe_has_vram(fd)) + if (!(xe_has_vram(fd) || ret)) igt_assert_f(gt_c6_power < gt_c0_power, "Power consumed in GT C6 should be lower than GT C0\n"); } -- 2.43.0 From patchwork at emeril.freedesktop.org Fri Jan 10 22:20:23 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 22:20:23 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fpm=5Fresid?= =?utf-8?q?ency=3A_Skip_on_igt=5Fpower=5Fopen_failure_=28rev5=29?= In-Reply-To: <20250110212237.4052-1-jonathan.cavitt@intel.com> References: <20250110212237.4052-1-jonathan.cavitt@intel.com> Message-ID: <173654762300.2078847.74449552863195716@b555e5b46a47> == Series Details == Series: tests/intel/xe_pm_residency: Skip on igt_power_open failure (rev5) URL : https://patchwork.freedesktop.org/series/139352/ State : success == Summary == CI Bug Log - changes from XEIGT_8188_BAT -> XEIGTPW_12432_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12432_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_8188/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12432/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] / [Intel XE#3970]) +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8188/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12432/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_8188/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12432/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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8188 -> IGTPW_12432 IGTPW_12432: ac3f47ff32488da8eae3c2be7a6bfd68dddd5ce0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8188: ef0abf7f39a7ef0ecf2f08c62b90b852c435c755 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde: 00f4619246294b1de4bac42742cfef95c1f37fde == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12432/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 10 22:29:26 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 10 Jan 2025 22:29:26 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fpm=5Fres?= =?utf-8?q?idency=3A_Skip_on_igt=5Fpower=5Fopen_failure_=28rev5=29?= In-Reply-To: <20250110212237.4052-1-jonathan.cavitt@intel.com> References: <20250110212237.4052-1-jonathan.cavitt@intel.com> Message-ID: <173654816679.2078847.18220783907768145667@b555e5b46a47> == Series Details == Series: tests/intel/xe_pm_residency: Skip on igt_power_open failure (rev5) URL : https://patchwork.freedesktop.org/series/139352/ State : success == Summary == CI Bug Log - changes from IGT_8188 -> IGTPW_12432 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12432 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live at workarounds: - bat-arlh-2: [PASS][1] -> [DMESG-FAIL][2] ([i915#13393]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-arlh-2/igt at i915_selftest@live at workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/bat-arlh-2/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][3] ([i915#13393]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-mtlp-8/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/bat-mtlp-8/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_mocs: - bat-twl-2: [ABORT][5] ([i915#12919]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-twl-2/igt at i915_selftest@live at gt_mocs.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/bat-twl-2/igt at i915_selftest@live at gt_mocs.html [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8188 -> IGTPW_12432 CI-20190529: 20190529 CI_DRM_15942: 00f4619246294b1de4bac42742cfef95c1f37fde @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12432: ac3f47ff32488da8eae3c2be7a6bfd68dddd5ce0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8188: ef0abf7f39a7ef0ecf2f08c62b90b852c435c755 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 01:44:05 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 01:44:05 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Revert_tests/kms=5Fhistogr?= =?utf-8?q?am=3A_Fix_build_breakage?= In-Reply-To: <20250108205251.1645069-1-lucas.demarchi@intel.com> References: <20250108205251.1645069-1-lucas.demarchi@intel.com> Message-ID: <173655984593.2130273.2102477505370283822@b555e5b46a47> == Series Details == Series: Revert tests/kms_histogram: Fix build breakage URL : https://patchwork.freedesktop.org/series/143275/ State : failure == Summary == CI Bug Log - changes from XEIGT_8182_full -> XEIGTPW_12404_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12404_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12404_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_12404_full: ### IGT changes ### #### Possible regressions #### * igt at kms_fbcon_fbt@fbc-suspend: - shard-lnl: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-4/igt at kms_fbcon_fbt@fbc-suspend.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-6/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_vblank@wait-forked-busy-hang: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] +2 other tests incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_vblank@wait-forked-busy-hang.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_vblank@wait-forked-busy-hang.html * igt at xe_exec_basic@twice-userptr-invalidate: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-436/igt at xe_exec_basic@twice-userptr-invalidate.html * igt at xe_exec_reset@cm-gt-reset: - shard-bmg: [PASS][6] -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_exec_reset@cm-gt-reset.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at xe_exec_reset@cm-gt-reset.html Known issues ------------ Here are the changes found in XEIGTPW_12404_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_addfb_basic@basic: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#3007]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_addfb_basic@basic.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [PASS][9] -> [FAIL][10] ([Intel XE#911]) +3 other tests fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-7/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#873]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at kms_async_flips@invalid-async-flip.html - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#873]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-435/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#316]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-463/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@linear-64bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-3/igt at kms_big_fb@linear-64bpp-rotate-270.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2327]) +4 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1467]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-3/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +7 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-464/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-8/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +6 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#2314] / [Intel XE#2894]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2314] / [Intel XE#2894]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#367]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-463/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#367]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-2/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +22 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-433/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +5 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][29] -> [SKIP][30] ([Intel XE#2136]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#3432]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#3432]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-4/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#787]) +132 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-464/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2907]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@plane-scaling at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1152]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-435/igt at kms_cdclk@plane-scaling at pipe-b-dp-4.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#306]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-3/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#306]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2252]) +9 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#373]) +4 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-6/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +4 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-432/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][41] ([Intel XE#1178]) +1 other test fail [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at kms_content_protection@atomic.html * igt at kms_content_protection@atomic at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#1178]) +2 other tests fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-432/igt at kms_content_protection@atomic at pipe-a-dp-2.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#3278]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-5/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2321]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1424]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-1/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#308]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-433/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#323]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-435/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2286]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#309]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-3/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#2291]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [PASS][52] -> [DMESG-WARN][53] ([Intel XE#877]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: NOTRUN -> [FAIL][54] ([Intel XE#1475]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@torture-bo at pipe-a: - shard-bmg: NOTRUN -> [INCOMPLETE][55] ([Intel XE#3226]) +1 other test incomplete [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-8/igt at kms_cursor_legacy@torture-bo at pipe-a.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([i915#3804]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-436/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6.html * igt at kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#2244]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-6/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#455]) +11 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-463/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2374]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1135]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1421]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-7/igt at kms_flip@2x-blocking-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3: - shard-bmg: [PASS][62] -> [FAIL][63] ([Intel XE#3288] / [Intel XE#3321]) +1 other test fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/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 at ac-dp2-hdmi-a3: - shard-bmg: [PASS][64] -> [FAIL][65] ([Intel XE#3321]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/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_12404/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-expired-vblank at ad-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][66] ([Intel XE#301]) +2 other tests fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank at ad-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#2423] / [i915#2575]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-dg2-set2: [PASS][68] -> [INCOMPLETE][69] ([Intel XE#3984]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#2316]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_flip@2x-modeset-vs-vblank-race.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_flip@2x-modeset-vs-vblank-race.html * igt at kms_flip@blocking-wf_vblank at b-dp2: - shard-bmg: [PASS][72] -> [FAIL][73] ([Intel XE#2882]) +4 other tests fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@blocking-wf_vblank at b-dp2.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at kms_flip@blocking-wf_vblank at b-dp2.html * igt at kms_flip@plain-flip-ts-check: - shard-bmg: NOTRUN -> [FAIL][74] ([Intel XE#2882]) +3 other tests fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at kms_flip@plain-flip-ts-check.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1397]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-1/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2293]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#651]) +6 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-1/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2312]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2311]) +17 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][81] ([Intel XE#2333]) +7 other tests fail [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/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-move: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#656]) +11 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#2136] / [Intel XE#2351]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [PASS][84] -> [SKIP][85] ([Intel XE#2136] / [Intel XE#2351]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#651]) +10 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#653]) +7 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#2136]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#658]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2313]) +15 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#346]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#346]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-433/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2934]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2925]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-464/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#356]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2486]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at kms_panel_fitting@legacy.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][97] ([Intel XE#616]) +2 other tests fail [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-436/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#3307]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-6/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2763]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/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-modifiers at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2763]) +11 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-2/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2763]) +14 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2392]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at kms_pm_dc@dc5-psr.html - shard-lnl: [PASS][104] -> [FAIL][105] ([Intel XE#718]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_pm_dc@dc5-psr.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-8/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: NOTRUN -> [FAIL][106] ([Intel XE#1430]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#1439] / [Intel XE#836]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-8/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1439] / [Intel XE#3141]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-5/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_prop_blob@blob-multiple: - shard-dg2-set2: [PASS][109] -> [SKIP][110] ([Intel XE#2423] / [i915#2575]) +7 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_prop_blob@blob-multiple.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_prop_blob@blob-multiple.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2893]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-3/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#1489]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1489]) +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-433/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1128]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-7/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-463/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1406]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-2/igt at kms_psr@pr-primary-blt.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2330]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#3414] / [Intel XE#3904]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#1435]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][121] -> [SKIP][122] ([Intel XE#1435]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_setmode@invalid-clone-single-crtc.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1500]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-464/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [PASS][124] -> [FAIL][125] ([Intel XE#899]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-6/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vblank@wait-busy: - shard-bmg: [PASS][126] -> [SKIP][127] ([Intel XE#3007]) +6 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_vblank@wait-busy.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_vblank@wait-busy.html * igt at kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#1499]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1499]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-4/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1091] / [Intel XE#2849]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#1280] / [Intel XE#455]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-464/igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#3889]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#3889]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-2/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#2905]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-8/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2905]) +4 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: NOTRUN -> [TIMEOUT][136] ([Intel XE#1473]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-mixed-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#688]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-7/igt at xe_evict@evict-beng-mixed-threads-large-multi-vm.html * igt at xe_exec_balancer@many-virtual-userptr-rebind: - shard-dg2-set2: [PASS][138] -> [SKIP][139] ([Intel XE#1130]) +14 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_exec_balancer@many-virtual-userptr-rebind.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at xe_exec_balancer@many-virtual-userptr-rebind.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2322]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-rebind: - shard-dg2-set2: [PASS][141] -> [SKIP][142] ([Intel XE#1392]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_exec_basic@multigpu-once-rebind.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-432/igt at xe_exec_basic@multigpu-once-rebind.html * igt at xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1392]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-4/igt at xe_exec_basic@multigpu-once-userptr.html * igt at xe_exec_fault_mode@many-basic-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1130]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at xe_exec_fault_mode@many-basic-prefetch.html * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#288]) +10 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-435/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2905]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-435/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_exec_threads@threads-hang-rebind: - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#1130]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at xe_exec_threads@threads-hang-rebind.html * igt at xe_live_ktest@xe_bo: - shard-dg2-set2: [PASS][148] -> [SKIP][149] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_live_ktest@xe_bo.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [FAIL][150] ([Intel XE#3099]) +2 other tests fail [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html - shard-dg2-set2: [PASS][151] -> [SKIP][152] ([Intel XE#2229]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#512]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-435/igt at xe_mmap@small-bar.html * igt at xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2457]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at xe_module_load@force-load.html * igt at xe_module_load@load: - shard-bmg: ([PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178]) -> ([PASS][179], [PASS][180], [SKIP][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [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]) ([Intel XE#2457]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-8/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-8/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at xe_module_load@load.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: NOTRUN -> [SKIP][205] ([Intel XE#2541] / [Intel XE#3573]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at xe_oa@disabled-read-error.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][206] ([Intel XE#2248]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][207] ([Intel XE#1420]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at xe_pat@pat-index-xehpc.html - shard-dg2-set2: NOTRUN -> [SKIP][208] ([Intel XE#2838] / [Intel XE#979]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-436/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][209] ([Intel XE#1173]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-433/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][210] ([Intel XE#2284]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-4/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][211] ([Intel XE#2284] / [Intel XE#366]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-436/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s2idle-multiple-execs: - shard-bmg: [PASS][212] -> [SKIP][213] ([Intel XE#1130]) +17 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_pm@s2idle-multiple-execs.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at xe_pm@s2idle-multiple-execs.html * igt at xe_pm@s4-basic-exec: - shard-dg2-set2: [PASS][214] -> [ABORT][215] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_pm@s4-basic-exec.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-432/igt at xe_pm@s4-basic-exec.html * igt at xe_pm_residency@gt-c6-freeze: - shard-dg2-set2: [PASS][216] -> [ABORT][217] ([Intel XE#2625]) +1 other test abort [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_pm_residency@gt-c6-freeze.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-432/igt at xe_pm_residency@gt-c6-freeze.html - shard-lnl: NOTRUN -> [INCOMPLETE][218] ([Intel XE#3088]) +1 other test incomplete [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-7/igt at xe_pm_residency@gt-c6-freeze.html * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#944]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-433/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][220] ([Intel XE#944]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-6/igt at xe_query@multigpu-query-topology-l3-bank-mask.html #### Possible fixes #### * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][221] ([Intel XE#827]) -> [PASS][222] +1 other test pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][223] ([Intel XE#2136]) -> [PASS][224] +2 other tests pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-432/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][225] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][227] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][229] ([Intel XE#2291]) -> [PASS][230] +2 other tests pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipa-legacy: - shard-bmg: [INCOMPLETE][231] ([Intel XE#3226]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][233] ([Intel XE#877]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][235] ([Intel XE#1340]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-bmg: [SKIP][237] ([Intel XE#2316]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-dpms-vs-vblank-race.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][239] ([Intel XE#3288] / [Intel XE#3321]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/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 at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][241] ([Intel XE#2882]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/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 cd-dp2-hdmi-a3: - shard-bmg: [FAIL][243] ([Intel XE#3321]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html * igt at kms_flip@absolute-wf_vblank: - shard-lnl: [INCOMPLETE][245] ([Intel XE#2049]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-5/igt at kms_flip@absolute-wf_vblank.html * igt at kms_flip@absolute-wf_vblank at b-edp1: - shard-lnl: [INCOMPLETE][247] -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank at b-edp1.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-5/igt at kms_flip@absolute-wf_vblank at b-edp1.html * igt at kms_flip@basic-flip-vs-wf_vblank: - shard-dg2-set2: [FAIL][249] ([Intel XE#3098]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@basic-flip-vs-wf_vblank.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-463/igt at kms_flip@basic-flip-vs-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][251] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2: - shard-bmg: [FAIL][253] ([Intel XE#3288]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4: - shard-dg2-set2: [FAIL][255] ([Intel XE#301]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html * igt at kms_flip@flip-vs-rmfb at d-hdmi-a3: - shard-bmg: [INCOMPLETE][257] -> [PASS][258] +3 other tests pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][259] ([Intel XE#2597]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_flip@flip-vs-suspend-interruptible.html - shard-dg2-set2: [INCOMPLETE][261] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][262] +1 other test pass [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@flip-vs-suspend-interruptible.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-463/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3: - shard-bmg: [INCOMPLETE][263] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend at c-dp4: - shard-dg2-set2: [INCOMPLETE][265] ([Intel XE#2049]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs-suspend at c-dp4.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_flip@flip-vs-suspend at c-dp4.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-bmg: [SKIP][267] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][268] +2 other tests pass [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][269] ([Intel XE#3012]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_joiner@basic-force-big-joiner.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_lease@possible-crtcs-filtering: - shard-bmg: [SKIP][271] ([Intel XE#3007]) -> [PASS][272] +8 other tests pass [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_lease@possible-crtcs-filtering.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_lease@possible-crtcs-filtering.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2-set2: [SKIP][273] ([Intel XE#2423] / [i915#2575]) -> [PASS][274] +9 other tests pass [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-435/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][275] ([Intel XE#718]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-lnl-7/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-bmg: [SKIP][277] ([Intel XE#2446]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [ABORT][279] ([Intel XE#2625]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_pm_rpm@system-suspend-modeset.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-433/igt at kms_pm_rpm@system-suspend-modeset.html - shard-bmg: [DMESG-WARN][281] -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@system-suspend-modeset.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][283] ([Intel XE#1435]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at xe_exec_basic@many-execqueues-userptr-invalidate-race: - shard-bmg: [SKIP][285] ([Intel XE#1130]) -> [PASS][286] +18 other tests pass [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-dg2-set2: [SKIP][287] ([Intel XE#1392]) -> [PASS][288] +2 other tests pass [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-436/igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt at xe_exec_basic@once-rebind: - shard-dg2-set2: [SKIP][289] ([Intel XE#1130]) -> [PASS][290] +14 other tests pass [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_basic@once-rebind.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-464/igt at xe_exec_basic@once-rebind.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][291] ([Intel XE#1192]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_live_ktest@xe_mocs.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at xe_live_ktest@xe_mocs.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][293] ([Intel XE#2423] / [i915#2575]) -> [SKIP][294] ([Intel XE#3768]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_async_flips@invalid-async-flip-atomic.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-463/igt at kms_async_flips@invalid-async-flip-atomic.html - shard-bmg: [SKIP][295] ([Intel XE#3007]) -> [SKIP][296] ([Intel XE#3768]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: [SKIP][297] ([Intel XE#2327]) -> [SKIP][298] ([Intel XE#2136] / [Intel XE#2231]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_big_fb@linear-32bpp-rotate-90.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_big_fb@linear-32bpp-rotate-90.html - shard-dg2-set2: [SKIP][299] ([Intel XE#316]) -> [SKIP][300] ([Intel XE#2136]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_big_fb@linear-32bpp-rotate-90.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][301] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][302] ([Intel XE#1124]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][303] ([Intel XE#2136]) -> [SKIP][304] ([Intel XE#1124]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-463/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][305] ([Intel XE#1124]) -> [SKIP][306] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html - shard-dg2-set2: [SKIP][307] ([Intel XE#1124]) -> [SKIP][308] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][309] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][310] ([Intel XE#607]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: [SKIP][311] ([Intel XE#2136]) -> [SKIP][312] ([Intel XE#607]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg2-set2: [SKIP][313] ([Intel XE#1124]) -> [SKIP][314] ([Intel XE#2136]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_bw@linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][315] ([Intel XE#367]) -> [SKIP][316] ([Intel XE#3007]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html - shard-dg2-set2: [SKIP][317] ([Intel XE#367]) -> [SKIP][318] ([Intel XE#2423] / [i915#2575]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][319] ([Intel XE#2887]) -> [SKIP][320] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html - shard-dg2-set2: [SKIP][321] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][322] ([Intel XE#2136]) +2 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][323] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][324] ([Intel XE#455] / [Intel XE#787]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-433/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-bmg: [SKIP][325] ([Intel XE#3432]) -> [SKIP][326] ([Intel XE#2136] / [Intel XE#2231]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][327] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][328] ([Intel XE#2887]) +2 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][329] ([Intel XE#2136]) -> [SKIP][330] ([Intel XE#455] / [Intel XE#787]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-464/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][331] ([Intel XE#3124]) -> [INCOMPLETE][332] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4.html * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: [SKIP][333] ([Intel XE#3007]) -> [SKIP][334] ([Intel XE#2252]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html - shard-dg2-set2: [SKIP][335] ([Intel XE#2423] / [i915#2575]) -> [SKIP][336] ([Intel XE#373]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][337] ([Intel XE#3007]) -> [SKIP][338] ([Intel XE#2341]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_content_protection@mei-interface.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-bmg: [FAIL][339] ([Intel XE#1188]) -> [SKIP][340] ([Intel XE#2341]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_content_protection@uevent.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-rapid-movement-256x85: - shard-bmg: [SKIP][341] ([Intel XE#2320]) -> [SKIP][342] ([Intel XE#3007]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][343] ([Intel XE#3007]) -> [SKIP][344] ([Intel XE#2320]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg2-set2: [SKIP][345] ([Intel XE#2423] / [i915#2575]) -> [SKIP][346] ([Intel XE#455]) +2 other tests skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-436/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][347] ([Intel XE#3007]) -> [SKIP][348] ([Intel XE#2372]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_feature_discovery@chamelium.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: [SKIP][349] ([Intel XE#2423] / [i915#2575]) -> [SKIP][350] ([Intel XE#701]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_feature_discovery@chamelium.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-464/igt at kms_feature_discovery@chamelium.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][351] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][352] ([Intel XE#2293] / [Intel XE#2380]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][353] ([Intel XE#2136]) -> [SKIP][354] ([Intel XE#455]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-464/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][355] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][356] ([Intel XE#2312]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][357] ([Intel XE#651]) -> [SKIP][358] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-bmg: [SKIP][359] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][360] ([Intel XE#2311]) +2 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][361] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][362] ([Intel XE#2333]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][363] ([Intel XE#2312]) -> [FAIL][364] ([Intel XE#2333]) +2 other tests fail [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [INCOMPLETE][365] ([Intel XE#2050]) -> [FAIL][366] ([Intel XE#2333]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][367] ([Intel XE#2333]) -> [SKIP][368] ([Intel XE#2312]) +7 other tests skip [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][369] ([Intel XE#2333]) -> [SKIP][370] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][371] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][372] ([Intel XE#651]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][373] ([Intel XE#2311]) -> [SKIP][374] ([Intel XE#2312]) +6 other tests skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][375] ([Intel XE#2136]) -> [SKIP][376] ([Intel XE#651]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][377] ([Intel XE#2312]) -> [SKIP][378] ([Intel XE#2311]) +6 other tests skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][379] ([Intel XE#651]) -> [SKIP][380] ([Intel XE#2136]) +2 other tests skip [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear: - shard-bmg: [SKIP][381] ([Intel XE#2311]) -> [SKIP][382] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][383] ([Intel XE#2136]) -> [SKIP][384] ([Intel XE#653]) +2 other tests skip [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][385] ([Intel XE#2312]) -> [SKIP][386] ([Intel XE#2313]) +4 other tests skip [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][387] ([Intel XE#2313]) -> [SKIP][388] ([Intel XE#2312]) +9 other tests skip [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][389] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][390] ([Intel XE#2313]) +4 other tests skip [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html - shard-dg2-set2: [SKIP][391] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][392] ([Intel XE#653]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][393] ([Intel XE#653]) -> [SKIP][394] ([Intel XE#2136]) +1 other test skip [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][395] ([Intel XE#2313]) -> [SKIP][396] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][397] ([Intel XE#653]) -> [SKIP][398] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-dg2-set2: [SKIP][399] ([Intel XE#1489]) -> [SKIP][400] ([Intel XE#2136]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][401] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][402] ([Intel XE#2387]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2-set2: [SKIP][403] ([Intel XE#2136]) -> [SKIP][404] ([Intel XE#1122]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-464/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][405] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][406] ([Intel XE#2234] / [Intel XE#2850]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr@fbc-pr-sprite-blt.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-8/igt at kms_psr@fbc-pr-sprite-blt.html - shard-dg2-set2: [SKIP][407] ([Intel XE#2136]) -> [SKIP][408] ([Intel XE#2850] / [Intel XE#929]) [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr@fbc-pr-sprite-blt.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_psr@fbc-psr2-suspend: - shard-bmg: [SKIP][409] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][410] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_psr@fbc-psr2-suspend.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_psr@fbc-psr2-suspend.html - shard-dg2-set2: [SKIP][411] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][412] ([Intel XE#2136]) +1 other test skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_psr@fbc-psr2-suspend.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_psr@fbc-psr2-suspend.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][413] ([Intel XE#3007]) -> [SKIP][414] ([Intel XE#3414] / [Intel XE#3904]) [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg2-set2: [SKIP][415] ([Intel XE#2423] / [i915#2575]) -> [SKIP][416] ([Intel XE#3414]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-436/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: [SKIP][417] ([Intel XE#1435]) -> [SKIP][418] ([Intel XE#3007]) [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_setmode@invalid-clone-exclusive-crtc.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at kms_setmode@invalid-clone-exclusive-crtc.html - shard-dg2-set2: [SKIP][419] ([Intel XE#455]) -> [SKIP][420] ([Intel XE#2423] / [i915#2575]) [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_setmode@invalid-clone-exclusive-crtc.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at kms_setmode@invalid-clone-exclusive-crtc.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][421] ([Intel XE#1130]) -> [SKIP][422] ([Intel XE#1280] / [Intel XE#455]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_compute_preempt@compute-threadgroup-preempt.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-464/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_eudebug@attach-debug-metadata: - shard-bmg: [SKIP][423] ([Intel XE#2905]) -> [SKIP][424] ([Intel XE#1130]) +1 other test skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_eudebug@attach-debug-metadata.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at xe_eudebug@attach-debug-metadata.html - shard-dg2-set2: [SKIP][425] ([Intel XE#2905]) -> [SKIP][426] ([Intel XE#1130]) +1 other test skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_eudebug@attach-debug-metadata.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at xe_eudebug@attach-debug-metadata.html * igt at xe_eudebug@basic-vm-bind-extended-discovery: - shard-bmg: [SKIP][427] ([Intel XE#1130]) -> [SKIP][428] ([Intel XE#2905]) +1 other test skip [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-extended-discovery.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][429] ([Intel XE#1473]) -> [INCOMPLETE][430] ([Intel XE#1473]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_evict@evict-beng-mixed-threads-large.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-bmg: [FAIL][431] ([Intel XE#2364]) -> [SKIP][432] ([Intel XE#1130]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_evict@evict-large-multi-vm-cm.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-3/igt at xe_evict@evict-large-multi-vm-cm.html - shard-dg2-set2: [FAIL][433] ([Intel XE#1600]) -> [SKIP][434] ([Intel XE#1130]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_evict@evict-large-multi-vm-cm.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [FAIL][435] ([Intel XE#1000]) -> [TIMEOUT][436] ([Intel XE#1473] / [Intel XE#2472]) [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_evict@evict-mixed-many-threads-small.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][437] ([Intel XE#1130]) -> [SKIP][438] ([Intel XE#2322]) [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch: - shard-dg2-set2: [SKIP][439] ([Intel XE#288]) -> [SKIP][440] ([Intel XE#1130]) +3 other tests skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-434/igt at xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][441] ([Intel XE#1130]) -> [SKIP][442] ([Intel XE#288]) +1 other test skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-432/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][443] ([Intel XE#1130]) -> [SKIP][444] ([Intel XE#2360]) [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-464/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt at xe_peer2peer@read: - shard-bmg: [SKIP][445] ([Intel XE#2557]) -> [SKIP][446] ([Intel XE#2427]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_peer2peer@read.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-2/igt at xe_peer2peer@read.html - shard-dg2-set2: [SKIP][447] ([Intel XE#1061]) -> [FAIL][448] ([Intel XE#1173]) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_peer2peer@read.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-433/igt at xe_peer2peer@read.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][449] ([Intel XE#1130]) -> [SKIP][450] ([Intel XE#944]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_query@multigpu-query-uc-fw-version-huc.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-bmg-4/igt at xe_query@multigpu-query-uc-fw-version-huc.html - shard-dg2-set2: [SKIP][451] ([Intel XE#1130]) -> [SKIP][452] ([Intel XE#944]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-huc.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/shard-dg2-463/igt at xe_query@multigpu-query-uc-fw-version-huc.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [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#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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [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#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#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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [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#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [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#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [Intel XE#3099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3099 [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3984]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3984 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8182 -> IGTPW_12404 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2458-1f1bf8d241872eacfc18a8393862302b8aa8442d IGTPW_12404: 186a34c8f13212101a860dc76122e2736e0a74f4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2458-1f1bf8d241872eacfc18a8393862302b8aa8442d: 1f1bf8d241872eacfc18a8393862302b8aa8442d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12404/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 02:32:25 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 02:32:25 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fexec=5Fre?= =?utf-8?q?set=3A_Add_a_vm=5Funbind_after_the_stress_test_completes?= In-Reply-To: <20250108225424.95051-1-stuart.summers@intel.com> References: <20250108225424.95051-1-stuart.summers@intel.com> Message-ID: <173656274552.2145909.11871241375571928285@b555e5b46a47> == Series Details == Series: tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes URL : https://patchwork.freedesktop.org/series/143285/ State : failure == Summary == CI Bug Log - changes from XEIGT_8182_full -> XEIGTPW_12405_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12405_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12405_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_12405_full: ### IGT changes ### #### Possible regressions #### * igt at core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: [PASS][1] -> [ABORT][2] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at core_hotunplug@hotreplug-lateclose.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-435/igt at core_hotunplug@hotreplug-lateclose.html * igt at kms_async_flips@async-flip-suspend-resume at pipe-d-dp-4: - shard-dg2-set2: [PASS][3] -> [FAIL][4] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_async_flips@async-flip-suspend-resume at pipe-d-dp-4.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt at kms_async_flips@async-flip-suspend-resume at pipe-d-dp-4.html * igt at kms_async_flips@crc-atomic at pipe-b-dp-2: - shard-bmg: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_async_flips@crc-atomic at pipe-b-dp-2.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt at kms_async_flips@crc-atomic at pipe-b-dp-2.html * igt at kms_async_flips@test-cursor at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-3/igt at kms_async_flips@test-cursor at pipe-b-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][8] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-d-dp-2.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-lnl: [PASS][9] -> [DMESG-WARN][10] +5 other tests dmesg-warn [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-1/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-7/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt at kms_psr@psr-primary-page-flip: - shard-lnl: NOTRUN -> [DMESG-WARN][11] +1 other test dmesg-warn [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-7/igt at kms_psr@psr-primary-page-flip.html Known issues ------------ Here are the changes found in XEIGTPW_12405_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at fbdev@nullptr: - shard-bmg: [PASS][12] -> [SKIP][13] ([Intel XE#2134]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at fbdev@nullptr.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at fbdev@nullptr.html - shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#2134]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at fbdev@nullptr.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at fbdev@nullptr.html * igt at kms_async_flips@crc-atomic: - shard-bmg: [PASS][16] -> [INCOMPLETE][17] ([Intel XE#3946]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_async_flips@crc-atomic.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt at kms_async_flips@crc-atomic.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#873]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_async_flips@invalid-async-flip.html - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#873]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-436/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#316]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@linear-64bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1407]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-3/igt at kms_big_fb@linear-64bpp-rotate-270.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2327]) +4 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-addfb: - shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_big_fb@x-tiled-addfb.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_big_fb@x-tiled-addfb.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2136]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1467]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +7 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-8/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +7 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#2314] / [Intel XE#2894]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2314] / [Intel XE#2894]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#2191]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#367]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#367]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#787]) +160 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs at pipe-a-dp-2.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +5 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#455] / [Intel XE#787]) +29 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-436/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][39] -> [INCOMPLETE][40] ([Intel XE#3862]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-hdmi-a-6.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-hdmi-a-6.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#3432]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#3432]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2887]) +5 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#2907]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@plane-scaling at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#1152]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-433/igt at kms_cdclk@plane-scaling at pipe-b-dp-4.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#306]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#306]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_edid@dp-edid-read: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#3007]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_chamelium_edid@dp-edid-read.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#373]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-5/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.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_12405/shard-bmg-1/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#373]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-435/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][52] ([Intel XE#1178]) +1 other test fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt at kms_content_protection@atomic.html - shard-dg2-set2: NOTRUN -> [FAIL][53] ([Intel XE#1178]) +1 other test fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-433/igt at kms_content_protection@atomic.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_12405/shard-lnl-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2321]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1424]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-3/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#2423] / [i915#2575]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#308]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#2291]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2286]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#309]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-6/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#2425]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_display_modes@extended-mode-basic.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dp_aux_dev: - shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#3009]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_dp_aux_dev.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_dp_aux_dev.html * igt at kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#2244]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-6/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#455]) +7 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2374]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#1135]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1421]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-5/igt at kms_flip@2x-blocking-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-dp2-hdmi-a3: - shard-bmg: [PASS][72] -> [FAIL][73] ([Intel XE#3288] / [Intel XE#3321]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-dp2-hdmi-a3.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/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][74] -> [FAIL][75] ([Intel XE#3321]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/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][76] -> [FAIL][77] ([Intel XE#301]) +4 other tests fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/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 ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][78] ([Intel XE#301]) +5 other tests fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/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-panning-interruptible: - shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#2316]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_flip@2x-flip-vs-panning-interruptible.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@blocking-wf_vblank: - shard-dg2-set2: [PASS][81] -> [FAIL][82] ([Intel XE#2882]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@blocking-wf_vblank.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_flip@blocking-wf_vblank.html - shard-lnl: [PASS][83] -> [FAIL][84] ([Intel XE#886]) +2 other tests fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_flip@blocking-wf_vblank.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-8/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@blocking-wf_vblank at a-hdmi-a6: - shard-dg2-set2: [PASS][85] -> [FAIL][86] ([Intel XE#886]) +1 other test fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@blocking-wf_vblank at a-hdmi-a6.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_flip@blocking-wf_vblank at a-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank: - shard-bmg: [PASS][87] -> [FAIL][88] ([Intel XE#2882]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank.html * igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3: - shard-bmg: [PASS][89] -> [FAIL][90] ([Intel XE#3321]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3.html * igt at kms_flip@flip-vs-suspend: - shard-bmg: NOTRUN -> [INCOMPLETE][91] ([Intel XE#2597]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at d-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][92] ([Intel XE#2597] / [Intel XE#2635]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_flip@flip-vs-suspend at d-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1397]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2293]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#651]) +6 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2311]) +19 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][99] -> [SKIP][100] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][101] ([Intel XE#2333]) +6 other tests fail [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/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-lnl: NOTRUN -> [SKIP][102] ([Intel XE#656]) +11 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [PASS][103] -> [SKIP][104] ([Intel XE#2136]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#651]) +10 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#653]) +10 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2312]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#658]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2313]) +15 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-suspend: - shard-lnl: [PASS][110] -> [INCOMPLETE][111] ([Intel XE#2050]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-6/igt at kms_frontbuffer_tracking@psr-suspend.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-7/igt at kms_frontbuffer_tracking@psr-suspend.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#3544]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [PASS][113] -> [SKIP][114] ([Intel XE#1503]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_hdr@invalid-hdr.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_hdr@invalid-hdr.html * igt at kms_histogram@algo-basic: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#3897]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#3897]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-8/igt at kms_histogram@algo-color.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#346]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2934]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2925]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#356]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-8/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2486]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_panel_fitting@legacy.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][122] ([Intel XE#616]) +2 other tests fail [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#599]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-6/igt at kms_plane_lowres@tiling-x at pipe-b-edp-1.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#3307]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-6/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][125] -> [FAIL][126] ([Intel XE#361]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-a: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2763]) +7 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-4/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-a.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2763]) +9 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2392]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at kms_pm_dc@dc5-psr.html - shard-lnl: [PASS][130] -> [FAIL][131] ([Intel XE#718]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_pm_dc@dc5-psr.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-8/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: NOTRUN -> [FAIL][132] ([Intel XE#1430]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#1439] / [Intel XE#836]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1439] / [Intel XE#3141]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-5/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#1489]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#2893]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-3/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#1489]) +5 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1128]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-4/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#1406]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt at kms_psr@pr-primary-blt.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2234]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at kms_psr@psr2-primary-render.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2330]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [PASS][144] -> [SKIP][145] ([Intel XE#2423] / [i915#2575]) +13 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_rotation_crc@sprite-rotation-180.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_rotation_crc@sprite-rotation-180.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#3414] / [Intel XE#3904]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#1435]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_sysfs_edid_timing: - shard-bmg: [PASS][148] -> [FAIL][149] ([Intel XE#1174]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_sysfs_edid_timing.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#1500]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@query-busy: - shard-bmg: [PASS][151] -> [SKIP][152] ([Intel XE#3007]) +12 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_vblank@query-busy.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_vblank@query-busy.html * igt at kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#1499]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1499]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-6/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#1091] / [Intel XE#2849]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#1280] / [Intel XE#455]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_drm_fdinfo@utilization-single-full-load-isolation: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#1130]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at xe_drm_fdinfo@utilization-single-full-load-isolation.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#3889]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#3889]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-5/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#2905]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-8/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2905]) +5 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: NOTRUN -> [TIMEOUT][162] ([Intel XE#1473]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-mixed-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#688]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt at xe_evict@evict-beng-mixed-threads-large-multi-vm.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][164] -> [TIMEOUT][165] ([Intel XE#1473]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#1392]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-3/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind: - shard-dg2-set2: [PASS][167] -> [SKIP][168] ([Intel XE#1392]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2322]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt at xe_exec_basic@no-exec-basic-defer-bind: - shard-dg2-set2: [PASS][170] -> [SKIP][171] ([Intel XE#1130]) +29 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_exec_basic@no-exec-basic-defer-bind.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at xe_exec_basic@no-exec-basic-defer-bind.html * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#288]) +9 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html * igt at xe_exec_fault_mode@once-userptr-invalidate-prefetch: - shard-bmg: [PASS][173] -> [SKIP][174] ([Intel XE#1130]) +36 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_exec_fault_mode@once-userptr-invalidate-prefetch.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at xe_exec_fault_mode@once-userptr-invalidate-prefetch.html * igt at xe_exec_reset@cm-gt-reset: - shard-bmg: [PASS][175] -> [INCOMPLETE][176] ([Intel XE#3592]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_exec_reset@cm-gt-reset.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at xe_exec_reset@cm-gt-reset.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#2905]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-433/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_exec_threads@threads-cm-fd-basic: - shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#1130]) +5 other tests skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at xe_exec_threads@threads-cm-fd-basic.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2229]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate: - shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#1192]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at xe_live_ktest@xe_migrate.html * igt at xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#1192]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt at xe_live_ktest@xe_mocs.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#512]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-433/igt at xe_mmap@small-bar.html * igt at xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][183] ([Intel XE#2457]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt at xe_module_load@force-load.html * igt at xe_module_load@load: - shard-bmg: ([PASS][184], [PASS][185], [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]) -> ([PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [SKIP][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]) ([Intel XE#2457]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at xe_module_load@load.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: NOTRUN -> [SKIP][234] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt at xe_oa@disabled-read-error.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][235] ([Intel XE#2248]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][236] ([Intel XE#1420]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at xe_pat@pat-index-xehpc.html - shard-dg2-set2: NOTRUN -> [SKIP][237] ([Intel XE#2838] / [Intel XE#979]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][238] ([Intel XE#1173]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][239] ([Intel XE#2284]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][240] ([Intel XE#2284] / [Intel XE#366]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s2idle-vm-bind-prefetch: - shard-dg2-set2: [PASS][241] -> [ABORT][242] ([Intel XE#1358]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_pm@s2idle-vm-bind-prefetch.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-prefetch.html * igt at xe_pm@s4-basic-exec: - shard-dg2-set2: [PASS][243] -> [ABORT][244] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_pm@s4-basic-exec.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt at xe_pm@s4-basic-exec.html * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: NOTRUN -> [SKIP][245] ([Intel XE#944]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][246] ([Intel XE#944]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-7/igt at xe_query@multigpu-query-topology-l3-bank-mask.html #### Possible fixes #### * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][247] ([Intel XE#827]) -> [PASS][248] +1 other test pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@test-cursor: - shard-lnl: [SKIP][249] ([Intel XE#664]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt at kms_async_flips@test-cursor.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-3/igt at kms_async_flips@test-cursor.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][251] ([Intel XE#2136]) -> [PASS][252] +4 other tests pass [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][253] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][255] ([Intel XE#2291]) -> [PASS][256] +2 other tests pass [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipa-legacy: - shard-bmg: [INCOMPLETE][257] ([Intel XE#3226]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][259] ([Intel XE#877]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@torture-bo at pipe-a: - shard-lnl: [DMESG-WARN][261] ([Intel XE#877]) -> [PASS][262] +1 other test pass [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_cursor_legacy@torture-bo at pipe-a.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-3/igt at kms_cursor_legacy@torture-bo at pipe-a.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][263] ([Intel XE#1340]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-bmg: [SKIP][265] ([Intel XE#2316]) -> [PASS][266] +1 other test pass [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-dpms-vs-vblank-race.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][267] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/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 bc-dp2-hdmi-a3: - shard-bmg: [FAIL][269] ([Intel XE#3288] / [Intel XE#3321]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/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 at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][271] ([Intel XE#3321]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@basic-flip-vs-wf_vblank: - shard-dg2-set2: [FAIL][273] ([Intel XE#3098]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@basic-flip-vs-wf_vblank.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_flip@basic-flip-vs-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2-set2: [INCOMPLETE][275] ([Intel XE#3937]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4: - shard-dg2-set2: [INCOMPLETE][277] -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: [FAIL][279] ([Intel XE#3321]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: - shard-dg2-set2: [FAIL][281] ([Intel XE#301]) -> [PASS][282] +2 other tests pass [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank at c-dp4: - shard-dg2-set2: [FAIL][283] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][284] +1 other test pass [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip@flip-vs-rmfb at d-hdmi-a3: - shard-bmg: [INCOMPLETE][285] -> [PASS][286] +3 other tests pass [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][287] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs-suspend.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-436/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at c-dp4: - shard-dg2-set2: [INCOMPLETE][289] ([Intel XE#2049]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs-suspend at c-dp4.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-436/igt at kms_flip@flip-vs-suspend at c-dp4.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-bmg: [SKIP][291] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][292] +2 other tests pass [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][293] ([Intel XE#3012]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_joiner@basic-force-big-joiner.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_lease@possible-crtcs-filtering: - shard-bmg: [SKIP][295] ([Intel XE#3007]) -> [PASS][296] +7 other tests pass [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_lease@possible-crtcs-filtering.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at kms_lease@possible-crtcs-filtering.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4: - shard-dg2-set2: [FAIL][297] ([Intel XE#361]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/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][299] ([Intel XE#718]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2-set2: [SKIP][301] ([Intel XE#2446]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_rmfb@close-fd: - shard-dg2-set2: [SKIP][303] ([Intel XE#2423] / [i915#2575]) -> [PASS][304] +5 other tests pass [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_rmfb@close-fd.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at kms_rmfb@close-fd.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][305] ([Intel XE#899]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [FAIL][307] ([Intel XE#2159]) -> [PASS][308] +1 other test pass [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_vrr@cmrr at pipe-a-edp-1.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-4/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: [FAIL][309] ([Intel XE#1600]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_evict@evict-large-multi-vm-cm.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-433/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_exec_basic@many-execqueues-userptr-invalidate-race: - shard-bmg: [SKIP][311] ([Intel XE#1130]) -> [PASS][312] +18 other tests pass [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-dg2-set2: [SKIP][313] ([Intel XE#1392]) -> [PASS][314] +2 other tests pass [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-435/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt at xe_exec_basic@once-rebind: - shard-dg2-set2: [SKIP][315] ([Intel XE#1130]) -> [PASS][316] +11 other tests pass [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_basic@once-rebind.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at xe_exec_basic@once-rebind.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][317] ([Intel XE#1192]) -> [PASS][318] +1 other test pass [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_live_ktest@xe_mocs.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt at xe_live_ktest@xe_mocs.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][319] ([Intel XE#2423] / [i915#2575]) -> [SKIP][320] ([Intel XE#3768]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_async_flips@invalid-async-flip-atomic.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][321] ([Intel XE#2327]) -> [SKIP][322] ([Intel XE#2136] / [Intel XE#2231]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html - shard-dg2-set2: [SKIP][323] ([Intel XE#316]) -> [SKIP][324] ([Intel XE#2136] / [Intel XE#2351]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: [SKIP][325] ([Intel XE#316]) -> [SKIP][326] ([Intel XE#2136]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@linear-16bpp-rotate-270.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][327] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][328] ([Intel XE#1124]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][329] ([Intel XE#2136]) -> [SKIP][330] ([Intel XE#1124]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-433/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@y-tiled-8bpp-rotate-0: - shard-dg2-set2: [SKIP][331] ([Intel XE#1124]) -> [SKIP][332] ([Intel XE#2136] / [Intel XE#2351]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_big_fb@y-tiled-8bpp-rotate-0.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_big_fb@y-tiled-8bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][333] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][334] ([Intel XE#607]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: [SKIP][335] ([Intel XE#2136]) -> [SKIP][336] ([Intel XE#607]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][337] ([Intel XE#1124]) -> [SKIP][338] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html - shard-dg2-set2: [SKIP][339] ([Intel XE#1124]) -> [SKIP][340] ([Intel XE#2136]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][341] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][342] ([Intel XE#3007]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html - shard-dg2-set2: [SKIP][343] ([Intel XE#2191]) -> [SKIP][344] ([Intel XE#2423] / [i915#2575]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: [SKIP][345] ([Intel XE#367]) -> [SKIP][346] ([Intel XE#2423] / [i915#2575]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_bw@linear-tiling-3-displays-2160x1440p.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_bw@linear-tiling-3-displays-2160x1440p.html - shard-bmg: [SKIP][347] ([Intel XE#367]) -> [SKIP][348] ([Intel XE#3007]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_bw@linear-tiling-3-displays-2160x1440p.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_bw@linear-tiling-3-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][349] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][350] ([Intel XE#2887]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][351] ([Intel XE#2887]) -> [SKIP][352] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][353] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][354] ([Intel XE#455] / [Intel XE#787]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-436/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][355] ([Intel XE#3432]) -> [SKIP][356] ([Intel XE#2136] / [Intel XE#2231]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][357] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][358] ([Intel XE#2136]) +2 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][359] ([Intel XE#2136]) -> [SKIP][360] ([Intel XE#455] / [Intel XE#787]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt at kms_chamelium_hpd@dp-hpd: - shard-bmg: [SKIP][361] ([Intel XE#2252]) -> [SKIP][362] ([Intel XE#3007]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_chamelium_hpd@dp-hpd.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_chamelium_hpd@dp-hpd.html - shard-dg2-set2: [SKIP][363] ([Intel XE#373]) -> [SKIP][364] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_chamelium_hpd@dp-hpd.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: [SKIP][365] ([Intel XE#3007]) -> [SKIP][366] ([Intel XE#2252]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html - shard-dg2-set2: [SKIP][367] ([Intel XE#2423] / [i915#2575]) -> [SKIP][368] ([Intel XE#373]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt at kms_content_protection@content-type-change: - shard-bmg: [SKIP][369] ([Intel XE#2341]) -> [SKIP][370] ([Intel XE#3007]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_content_protection@content-type-change.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][371] ([Intel XE#3007]) -> [SKIP][372] ([Intel XE#2341]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_content_protection@mei-interface.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at kms_content_protection@mei-interface.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][373] ([Intel XE#308]) -> [SKIP][374] ([Intel XE#2423] / [i915#2575]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_cursor_crc@cursor-offscreen-512x512.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_cursor_crc@cursor-offscreen-512x512.html - shard-bmg: [SKIP][375] ([Intel XE#2321]) -> [SKIP][376] ([Intel XE#3007]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_cursor_crc@cursor-offscreen-512x512.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: [SKIP][377] ([Intel XE#2320]) -> [SKIP][378] ([Intel XE#3007]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][379] ([Intel XE#3007]) -> [SKIP][380] ([Intel XE#2320]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg2-set2: [SKIP][381] ([Intel XE#2423] / [i915#2575]) -> [SKIP][382] ([Intel XE#455]) +2 other tests skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][383] ([Intel XE#1508]) -> [SKIP][384] ([Intel XE#2136] / [Intel XE#2231]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg2-set2: [SKIP][385] ([Intel XE#455]) -> [SKIP][386] ([Intel XE#2136] / [Intel XE#2351]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_dsc@dsc-with-bpc: - shard-dg2-set2: [SKIP][387] ([Intel XE#455]) -> [SKIP][388] ([Intel XE#2136]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_dsc@dsc-with-bpc.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_dsc@dsc-with-bpc.html - shard-bmg: [SKIP][389] ([Intel XE#2244]) -> [SKIP][390] ([Intel XE#2136] / [Intel XE#2231]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_dsc@dsc-with-bpc.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_dsc@dsc-with-bpc.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][391] ([Intel XE#3007]) -> [SKIP][392] ([Intel XE#2372]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_feature_discovery@chamelium.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at kms_feature_discovery@chamelium.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][393] ([Intel XE#2882] / [Intel XE#3288]) -> [SKIP][394] ([Intel XE#3007]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_flip@flip-vs-expired-vblank-interruptible.html - shard-dg2-set2: [FAIL][395] ([Intel XE#301]) -> [SKIP][396] ([Intel XE#2423] / [i915#2575]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][397] ([Intel XE#2597]) -> [SKIP][398] ([Intel XE#3007]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_flip@flip-vs-suspend-interruptible.html - shard-dg2-set2: [INCOMPLETE][399] ([Intel XE#2049] / [Intel XE#2597]) -> [SKIP][400] ([Intel XE#2423] / [i915#2575]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@flip-vs-suspend-interruptible.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][401] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][402] ([Intel XE#2293] / [Intel XE#2380]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][403] ([Intel XE#2136]) -> [SKIP][404] ([Intel XE#455]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][405] ([Intel XE#651]) -> [SKIP][406] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][407] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][408] ([Intel XE#2311]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][409] ([Intel XE#2311]) -> [SKIP][410] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][411] ([Intel XE#651]) -> [SKIP][412] ([Intel XE#2136]) +4 other tests skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-dg2-set2: [SKIP][413] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][414] ([Intel XE#651]) [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][415] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][416] ([Intel XE#2312]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][417] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][418] ([Intel XE#2333]) [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][419] ([Intel XE#2312]) -> [FAIL][420] ([Intel XE#2333]) +3 other tests fail [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [INCOMPLETE][421] ([Intel XE#2050]) -> [FAIL][422] ([Intel XE#2333]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][423] ([Intel XE#2333]) -> [SKIP][424] ([Intel XE#2312]) +3 other tests skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-tiling-linear: - shard-bmg: [FAIL][425] ([Intel XE#2333]) -> [SKIP][426] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-tiling-linear.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-tiling-linear.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][427] ([Intel XE#2136]) -> [SKIP][428] ([Intel XE#651]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][429] ([Intel XE#2312]) -> [SKIP][430] ([Intel XE#2311]) +3 other tests skip [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][431] ([Intel XE#2311]) -> [SKIP][432] ([Intel XE#2312]) +10 other tests skip [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][433] ([Intel XE#2136]) -> [SKIP][434] ([Intel XE#653]) +1 other test skip [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][435] ([Intel XE#653]) -> [SKIP][436] ([Intel XE#2136]) +3 other tests skip [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][437] ([Intel XE#2313]) -> [SKIP][438] ([Intel XE#2312]) +9 other tests skip [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][439] ([Intel XE#2312]) -> [SKIP][440] ([Intel XE#2313]) +1 other test skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][441] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][442] ([Intel XE#2313]) +4 other tests skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html - shard-dg2-set2: [SKIP][443] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][444] ([Intel XE#653]) +1 other test skip [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][445] ([Intel XE#2313]) -> [SKIP][446] ([Intel XE#2136] / [Intel XE#2231]) +6 other tests skip [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html - shard-dg2-set2: [SKIP][447] ([Intel XE#653]) -> [SKIP][448] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [ABORT][449] ([Intel XE#2625]) -> [SKIP][450] ([Intel XE#2446]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_pm_rpm@system-suspend-modeset.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_pm_rpm@system-suspend-modeset.html - shard-bmg: [DMESG-WARN][451] -> [SKIP][452] ([Intel XE#2446]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@system-suspend-modeset.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-bmg: [SKIP][453] ([Intel XE#1489]) -> [SKIP][454] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html - shard-dg2-set2: [SKIP][455] ([Intel XE#1489]) -> [SKIP][456] ([Intel XE#2136]) +1 other test skip [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][457] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][458] ([Intel XE#2387]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2-set2: [SKIP][459] ([Intel XE#2136]) -> [SKIP][460] ([Intel XE#1122]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-primary-page-flip: - shard-bmg: [SKIP][461] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][462] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_psr@fbc-pr-primary-page-flip.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_psr@fbc-pr-primary-page-flip.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][463] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][464] ([Intel XE#2234] / [Intel XE#2850]) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr@fbc-pr-sprite-blt.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt at kms_psr@fbc-pr-sprite-blt.html - shard-dg2-set2: [SKIP][465] ([Intel XE#2136]) -> [SKIP][466] ([Intel XE#2850] / [Intel XE#929]) [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr@fbc-pr-sprite-blt.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][467] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][468] ([Intel XE#2136] / [Intel XE#2351]) [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr@psr-dpms.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_psr@psr-dpms.html * igt at kms_psr@psr2-cursor-plane-onoff: - shard-dg2-set2: [SKIP][469] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][470] ([Intel XE#2136]) +2 other tests skip [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr@psr2-cursor-plane-onoff.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_psr@psr2-cursor-plane-onoff.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2-set2: [SKIP][471] ([Intel XE#3414]) -> [SKIP][472] ([Intel XE#2423] / [i915#2575]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_rotation_crc@bad-tiling.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_rotation_crc@bad-tiling.html - shard-bmg: [SKIP][473] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][474] ([Intel XE#3007]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_rotation_crc@bad-tiling.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][475] ([Intel XE#3007]) -> [SKIP][476] ([Intel XE#3414] / [Intel XE#3904]) [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg2-set2: [SKIP][477] ([Intel XE#2423] / [i915#2575]) -> [SKIP][478] ([Intel XE#3414]) [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_vrr@flipline: - shard-dg2-set2: [SKIP][479] ([Intel XE#455]) -> [SKIP][480] ([Intel XE#2423] / [i915#2575]) +1 other test skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_vrr@flipline.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_vrr@flipline.html - shard-bmg: [SKIP][481] ([Intel XE#1499]) -> [SKIP][482] ([Intel XE#3007]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_vrr@flipline.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_vrr@flipline.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-bmg: [SKIP][483] ([Intel XE#756]) -> [SKIP][484] ([Intel XE#3007]) [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_writeback@writeback-fb-id-xrgb2101010.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg2-set2: [SKIP][485] ([Intel XE#756]) -> [SKIP][486] ([Intel XE#2423] / [i915#2575]) [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_writeback@writeback-fb-id-xrgb2101010.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][487] ([Intel XE#1130]) -> [SKIP][488] ([Intel XE#1280] / [Intel XE#455]) [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_compute_preempt@compute-threadgroup-preempt.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_eudebug@basic-vm-bind-extended-discovery: - shard-dg2-set2: [SKIP][489] ([Intel XE#1130]) -> [SKIP][490] ([Intel XE#2905]) +1 other test skip [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-extended-discovery.html - shard-bmg: [SKIP][491] ([Intel XE#1130]) -> [SKIP][492] ([Intel XE#2905]) +1 other test skip [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at xe_eudebug@basic-vm-bind-extended-discovery.html * igt at xe_eudebug@discovery-empty: - shard-bmg: [SKIP][493] ([Intel XE#2905]) -> [SKIP][494] ([Intel XE#1130]) +2 other tests skip [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_eudebug@discovery-empty.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at xe_eudebug@discovery-empty.html * igt at xe_eudebug_online@interrupt-other-debuggable: - shard-dg2-set2: [SKIP][495] ([Intel XE#2905]) -> [SKIP][496] ([Intel XE#1130]) +2 other tests skip [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_eudebug_online@interrupt-other-debuggable.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at xe_eudebug_online@interrupt-other-debuggable.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][497] ([Intel XE#1473]) -> [INCOMPLETE][498] ([Intel XE#1473]) [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_evict@evict-beng-mixed-threads-large.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][499] ([Intel XE#1000]) -> [TIMEOUT][500] ([Intel XE#1473]) [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_evict@evict-beng-threads-large.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-bmg: [INCOMPLETE][501] ([Intel XE#1473]) -> [TIMEOUT][502] ([Intel XE#1473]) [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_evict@evict-mixed-many-threads-large.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [FAIL][503] ([Intel XE#1000]) -> [TIMEOUT][504] ([Intel XE#1473] / [Intel XE#2472]) [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_evict@evict-mixed-many-threads-small.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_evict@evict-threads-large: - shard-bmg: [FAIL][505] ([Intel XE#1000]) -> [INCOMPLETE][506] ([Intel XE#1473]) [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_evict@evict-threads-large.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][507] ([Intel XE#1130]) -> [SKIP][508] ([Intel XE#2322]) [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_basic@multigpu-once-userptr-invalidate-race: - shard-bmg: [SKIP][509] ([Intel XE#2322]) -> [SKIP][510] ([Intel XE#1130]) +1 other test skip [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_exec_basic@multigpu-once-userptr-invalidate-race.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at xe_exec_basic@multigpu-once-userptr-invalidate-race.html * igt at xe_exec_fault_mode@once-userptr-invalidate-prefetch: - shard-dg2-set2: [SKIP][511] ([Intel XE#288]) -> [SKIP][512] ([Intel XE#1130]) +4 other tests skip [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_exec_fault_mode@once-userptr-invalidate-prefetch.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at xe_exec_fault_mode@once-userptr-invalidate-prefetch.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][513] ([Intel XE#1130]) -> [SKIP][514] ([Intel XE#288]) +1 other test skip [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][515] ([Intel XE#1130]) -> [SKIP][516] ([Intel XE#2360]) [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][517] ([Intel XE#2833]) -> [SKIP][518] ([Intel XE#1192]) [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_live_ktest@xe_eudebug.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html * igt at xe_oa@rc6-disable: - shard-dg2-set2: [SKIP][519] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][520] ([Intel XE#1130]) +1 other test skip [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_oa@rc6-disable.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at xe_oa@rc6-disable.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][521] ([Intel XE#2245]) -> [SKIP][522] ([Intel XE#1130]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_pat@pat-index-xelp.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at xe_pat@pat-index-xelp.html * igt at xe_peer2peer@read: - shard-dg2-set2: [SKIP][523] ([Intel XE#1061]) -> [FAIL][524] ([Intel XE#1173]) [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_peer2peer@read.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt at xe_peer2peer@read.html * igt at xe_query@multigpu-query-mem-usage: - shard-bmg: [SKIP][525] ([Intel XE#944]) -> [SKIP][526] ([Intel XE#1130]) [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_query@multigpu-query-mem-usage.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt at xe_query@multigpu-query-mem-usage.html - shard-dg2-set2: [SKIP][527] ([Intel XE#944]) -> [SKIP][528] ([Intel XE#1130]) [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_query@multigpu-query-mem-usage.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][529] ([Intel XE#1130]) -> [SKIP][530] ([Intel XE#944]) [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_query@multigpu-query-uc-fw-version-huc.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt at xe_query@multigpu-query-uc-fw-version-huc.html - shard-dg2-set2: [SKIP][531] ([Intel XE#1130]) -> [SKIP][532] ([Intel XE#944]) [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-huc.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt at xe_query@multigpu-query-uc-fw-version-huc.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1174 [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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [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#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#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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [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#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [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#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [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#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#3592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3592 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3937 [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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [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_8182 -> IGTPW_12405 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2458-1f1bf8d241872eacfc18a8393862302b8aa8442d IGTPW_12405: 7140501dc07d5da634f3184b506b4060129ffe3a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2458-1f1bf8d241872eacfc18a8393862302b8aa8442d: 1f1bf8d241872eacfc18a8393862302b8aa8442d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 04:36:53 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 04:36:53 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fexec=5F?= =?utf-8?q?reset=3A_Add_a_vm=5Funbind_after_the_stress_test_completes?= In-Reply-To: <20250108225424.95051-1-stuart.summers@intel.com> References: <20250108225424.95051-1-stuart.summers@intel.com> Message-ID: <173657021315.2173552.15855664065409342422@b555e5b46a47> == Series Details == Series: tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes URL : https://patchwork.freedesktop.org/series/143285/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15927_full -> IGTPW_12405_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12405_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12405_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_12405/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_12405_full: ### IGT changes ### #### Possible regressions #### * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk8/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at kms_fbcon_fbt@fbc: - shard-snb: NOTRUN -> [INCOMPLETE][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb2/igt at kms_fbcon_fbt@fbc.html Known issues ------------ Here are the changes found in IGTPW_12405_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-2/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at api_intel_bb@object-reloc-purge-cache.html * igt at device_reset@unbind-cold-reset-rebind: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt at device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt at device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-6/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-11/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@all-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt at drm_fdinfo@all-busy-check-all.html * igt at drm_fdinfo@busy-hang at bcs0: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +16 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt at drm_fdinfo@busy-hang at bcs0.html * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +6 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-8/igt at drm_fdinfo@busy-idle at vecs0.html * igt at gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#7697]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-8/igt at gem_ccs@ctrl-surf-copy-new-ctx.html - shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_ccs@suspend-resume: - shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#7297]) +1 other test incomplete [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-8/igt at gem_ccs@suspend-resume.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-6/igt at gem_ccs@suspend-resume.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_12405/shard-dg2-1/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][20] ([i915#12353]) +1 other test incomplete [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk6/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@heartbeat-hang: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at gem_ctx_persistence@heartbeat-hang.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][23] ([i915#1099]) +4 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb2/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt at gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][25] ([i915#280]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][26] ([i915#280]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-9/igt at gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-3/igt at gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt at gem_ctx_sseu@engines.html * igt at gem_eio@reset-stress: - shard-dg2: [PASS][29] -> [FAIL][30] ([i915#12543] / [i915#5784]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-11/igt at gem_eio@reset-stress.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-7/igt at gem_eio@reset-stress.html * igt at gem_eio@unwedge-stress: - shard-dg1: NOTRUN -> [FAIL][31] ([i915#12714] / [i915#5784]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#4036]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel-balancer: - shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#4525]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#4525]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#6334]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt at gem_exec_capture@capture-invisible.html - shard-tglu: NOTRUN -> [SKIP][36] ([i915#6334]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-8/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture-invisible at smem0: - shard-glk: NOTRUN -> [SKIP][37] ([i915#6334]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk1/igt at gem_exec_capture@capture-invisible at smem0.html * igt at gem_exec_capture@capture-recoverable: - shard-tglu-1: NOTRUN -> [SKIP][38] ([i915#6344]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at gem_exec_capture@capture-recoverable.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4812]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt at gem_exec_fence@submit.html * igt at gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt at gem_exec_fence@submit3.html * igt at gem_exec_flush@basic-batch-kernel-default-uc: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt at gem_exec_flush@basic-batch-kernel-default-uc.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_gttfill@all-engines: - shard-rkl: [PASS][43] -> [DMESG-WARN][44] ([i915#12964]) +30 other tests dmesg-warn [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-4/igt at gem_exec_gttfill@all-engines.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt at gem_exec_gttfill@all-engines.html * igt at gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#5107]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-5/igt at gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][46] ([i915#5107]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-gtt-read-active: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3281]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt at gem_exec_reloc@basic-gtt-read-active.html * igt at gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#3281]) +13 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt at gem_exec_reloc@basic-scanout.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-14/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_reloc@basic-write-wc-active: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-5/igt at gem_exec_reloc@basic-write-wc-active.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_15927/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_12405/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4860]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-11/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_fenced_exec_thrash@2-spare-fences: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt at gem_fenced_exec_thrash@2-spare-fences.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-6/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#2190]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/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_12405/shard-glk2/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613] / [i915#7582]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt at gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613] / [i915#7582]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-8/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@basic: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at gem_lmem_swapping@basic.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][61] ([i915#5493]) +1 other test timeout [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt at gem_lmem_swapping@verify.html * igt at gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][63] ([i915#4613]) +7 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk6/igt at gem_lmem_swapping@verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4613]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#12193]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at gem_lmem_swapping@verify-random-ccs.html - shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_lmem_swapping@verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4565]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8289]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-6/igt at gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][69] ([i915#8289]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt at gem_media_fill@media-fill.html * igt at gem_mmap_gtt@basic-copy: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4077]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt at gem_mmap_gtt@basic-copy.html * igt at gem_mmap_gtt@basic-read: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4077]) +11 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt at gem_mmap_gtt@basic-read.html * igt at gem_mmap_wc@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt at gem_mmap_wc@pf-nonblock.html * igt at gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4083]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-4/igt at gem_mmap_wc@write.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4083]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3282]) +6 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt at gem_partial_pwrite_pread@write.html * igt at gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][76] ([i915#2658]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk1/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3282]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt at gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][78] ([i915#2658]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-7/igt at gem_pwrite@basic-exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3282]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-3/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pwrite_snooped: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3282]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at gem_pwrite_snooped.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#13398]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4270]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at gem_pxp@reject-modify-context-protection-off-3.html * igt at gem_pxp@verify-pxp-stale-buf-execution: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4270]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt at gem_pxp@verify-pxp-stale-buf-execution.html * igt at gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8428]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt at gem_render_copy@linear-to-vebox-y-tiled.html * igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#5190] / [i915#8428]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt at gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4079]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt at gem_render_tiled_blits@basic.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4079]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4885]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][89] ([i915#13263] / [i915#13449]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk9/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@coherency-sync: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at gem_userptr_blits@coherency-sync.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][92] ([i915#3323]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk8/igt at gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#3323]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#3297]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-7/igt at gem_userptr_blits@invalid-mmap-offset-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#3297]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-3/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4880]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-14/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4880]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-7/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#3297]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt at gem_userptr_blits@readonly-unsync.html * igt at gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#4958]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#3297]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_workarounds@suspend-resume: - shard-glk: [PASS][101] -> [ABORT][102] ([i915#8213]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk7/igt at gem_workarounds@suspend-resume.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk3/igt at gem_workarounds@suspend-resume.html * igt at gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#2527] / [i915#2856]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-2/igt at gen9_exec_parse@basic-rejected-ctx-param.html * igt at gen9_exec_parse@bb-secure: - 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_12405/shard-tglu-1/igt at gen9_exec_parse@bb-secure.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#2856]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-11/igt at gen9_exec_parse@shadow-peek.html - shard-rkl: NOTRUN -> [SKIP][107] ([i915#2527]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt at gen9_exec_parse@shadow-peek.html * igt at gen9_exec_parse@unaligned-access: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#2527]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt at gen9_exec_parse@unaligned-access.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][109] -> [ABORT][110] ([i915#12817] / [i915#9820]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-9/igt at i915_module_load@reload-with-fault-injection.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-9/igt at i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [DMESG-WARN][111] ([i915#10887] / [i915#13475]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#6412]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/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_12405/shard-dg2-5/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#8399]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt at i915_pm_freq_api@freq-reset-multiple.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#11681] / [i915#6621]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#11681]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_power@sanity: - shard-mtlp: [PASS][117] -> [SKIP][118] ([i915#7984]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-5/igt at i915_power@sanity.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt at i915_power@sanity.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#5723]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][120] ([i915#9311]) +1 other test dmesg-warn [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb5/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-dg1: NOTRUN -> [DMESG-WARN][121] ([i915#9311]) +1 other test dmesg-warn [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][122] ([i915#4817]) +1 other test incomplete [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk8/igt at i915_suspend@forcewake.html * igt at intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#7707]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-7/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4212]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/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-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#8709]) +7 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/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 at pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#8709]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/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@async-flip-with-page-flip-events at pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#8709]) +11 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/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@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#12967] / [i915#6228]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#9531]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][130] ([i915#9531]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#1769] / [i915#3555]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#5286]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538] / [i915#5286]) +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt at kms_big_fb@4-tiled-8bpp-rotate-180.html * igt at kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#5286]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/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][135] ([i915#5286]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-2/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-0-hflip-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#5286]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#3638]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#3638]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5190]) +6 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt at kms_big_fb@y-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#5190]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#6187]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-5/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#4538]) +6 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][143] +14 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-2/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_ccs@bad-aux-stride-y-tiled-ccs at pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#6095]) +59 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-6/igt at kms_ccs@bad-aux-stride-y-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#6095]) +171 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/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-rc-ccs at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#6095]) +161 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-3/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-3.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#6095]) +39 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-c-hdmi-a-1.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#12313]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/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-dg2-mc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#6095]) +14 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#12805]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#6095]) +24 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-7/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-tglu: NOTRUN -> [SKIP][153] ([i915#12313]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#6095]) +67 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2.html * igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#11616] / [i915#7213]) +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-1.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#3742]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#4087]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1.html * igt at kms_chamelium_color@ctm-0-50: - shard-mtlp: NOTRUN -> [SKIP][158] +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +6 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_frames@hdmi-crc-multiple: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt at kms_chamelium_frames@hdmi-crc-multiple.html * igt at kms_chamelium_hpd@dp-hpd: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +10 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +9 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +3 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-5/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_color@deep-color: - shard-dg2: [PASS][165] -> [SKIP][166] ([i915#3555]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-10/igt at kms_color@deep-color.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-9/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#6944] / [i915#9424]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#3116] / [i915#3299]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3299]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-11/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#9424]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt at kms_content_protection@lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][172] ([i915#9424]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#9424]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt at kms_content_protection@lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][174] ([i915#6944] / [i915#9424]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#9433]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#7116] / [i915#9424]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt at kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#6944] / [i915#9424]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-4/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#3555]) +6 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt at kms_cursor_crc@cursor-offscreen-32x32.html - shard-tglu: NOTRUN -> [SKIP][179] ([i915#3555]) +5 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-9/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#8814]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-3/igt at kms_cursor_crc@cursor-onscreen-128x42.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#13049]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#13049]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#13049]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#13049]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-8/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3555]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt at kms_cursor_crc@cursor-sliding-32x10.html - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8814]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt at kms_cursor_crc@cursor-sliding-32x10.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#13049]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#9809]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-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-tglu: NOTRUN -> [SKIP][189] ([i915#4103]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#4103] / [i915#4213]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipa-toggle: - shard-rkl: NOTRUN -> [DMESG-WARN][191] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-2/igt at kms_cursor_legacy@cursora-vs-flipa-toggle.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#13046] / [i915#5354]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-6/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][193] ([i915#2346]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk6/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#4213]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#4103] / [i915#4213]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][196] ([i915#4103]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#9723]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][198] ([i915#12170]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][199] ([i915#11968]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#9723]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#8588]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt at kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][202] ([i915#8588]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#12402]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_dsc@dsc-basic: - shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#3840]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_dsc@dsc-basic.html - shard-dg1: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3840]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-14/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#3840] / [i915#9688]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt at kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][207] ([i915#3840]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#3840]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-3/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3840]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-9/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt at kms_dsc@dsc-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#3955]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#3469]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-6/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#1839]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#9337]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#658]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-6/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][216] ([i915#658]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt at kms_feature_discovery@psr1.html * igt at kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#4881]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3637]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#9934]) +6 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt at kms_flip@2x-flip-vs-dpms.html - shard-tglu: NOTRUN -> [SKIP][220] ([i915#3637]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][221] -> [FAIL][222] ([i915#13027]) +1 other test fail [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk7/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a1-hdmi-a2.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk1/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#8381]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-snb: [PASS][224] -> [FAIL][225] ([i915#11989]) +1 other test fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-snb5/igt at kms_flip@2x-plain-flip-ts-check.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb7/igt at kms_flip@2x-plain-flip-ts-check.html - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#3637]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#9934]) +6 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-2/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][228] ([i915#9934]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@blocking-wf_vblank: - shard-mtlp: [PASS][229] -> [FAIL][230] ([i915#11989]) +1 other test fail [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-3/igt at kms_flip@blocking-wf_vblank.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@blocking-wf_vblank at c-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][231] ([i915#11989]) +3 other tests fail [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt at kms_flip@blocking-wf_vblank at c-hdmi-a1.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2: [PASS][232] -> [FAIL][233] ([i915#11989]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-6/igt at kms_flip@flip-vs-blocking-wf-vblank.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a1: - shard-dg2: NOTRUN -> [FAIL][234] ([i915#11989]) +2 other tests fail [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a1.html * igt at kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#8381]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-8/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@plain-flip-fb-recreate: - shard-tglu: [PASS][236] -> [FAIL][237] ([i915#11989]) +1 other test fail [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-10/igt at kms_flip@plain-flip-fb-recreate.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555] / [i915#8813]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#8813]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8810] / [i915#8813]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8810]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#2672]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][244] ([i915#2587] / [i915#2672]) +5 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-10/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][245] ([i915#2672] / [i915#3555]) +5 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/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-upscaling: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#2587] / [i915#2672] / [i915#3555]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/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-downscaling: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555] / [i915#5190]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-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-dg2: NOTRUN -> [SKIP][248] ([i915#2672]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-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-yftile-to-16bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555]) +5 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-14/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672]) +6 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt: - shard-dg2: [PASS][251] -> [FAIL][252] ([i915#6880]) +2 other tests fail [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-8/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][253] +38 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-14/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-snb: [PASS][254] -> [SKIP][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#8708]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-4/igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][257] ([i915#10056] / [i915#13353]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk4/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#10055]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-2/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#8708]) +10 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#1825]) +39 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#8708]) +16 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#9766]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][263] ([i915#9766]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][264] +82 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-10/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#3023]) +17 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3458]) +13 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-3/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#1825]) +7 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-3/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#5354]) +22 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-3/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][269] +35 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#3458]) +22 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_hdr@invalid-hdr: - shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#8228]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8228]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at kms_hdr@static-swap.html - shard-tglu: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8228]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-2/igt at kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-6/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8228]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt at kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8228]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt at kms_hdr@static-toggle.html * igt at kms_histogram@algo-basic: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#13389]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-8/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#13389]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-6/igt at kms_histogram@algo-color.html - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#13389]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_histogram@algo-color.html * igt at kms_joiner@basic-big-joiner: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#10656]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#12394]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at kms_joiner@basic-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][282] ([i915#12394]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-8/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#12388]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#10656]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-10/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][285] ([i915#12394]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#10656]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#1839]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/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_12405/shard-rkl-7/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#6301]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][290] +5 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt at kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt at kms_pipe_crc_basic@read-crc-frame-sequence: - shard-dg1: [PASS][291] -> [DMESG-WARN][292] ([i915#4423]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-14/igt at kms_pipe_crc_basic@read-crc-frame-sequence.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at kms_pipe_crc_basic@read-crc-frame-sequence.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][293] ([i915#10647] / [i915#12169]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk9/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][294] ([i915#10647]) +1 other test fail [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk9/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#3555]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#12247]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats at pipe-a: - shard-rkl: [PASS][297] -> [DMESG-WARN][298] ([i915#12964] / [i915#1982]) +1 other test dmesg-warn [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-1/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats at pipe-a.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats at pipe-a.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation: - shard-glk: NOTRUN -> [SKIP][299] +472 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk1/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#12247]) +13 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/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-dg1: NOTRUN -> [SKIP][301] ([i915#12247] / [i915#6953]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at kms_plane_scaling@planes-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][302] ([i915#12247] / [i915#6953]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-6/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-tglu: NOTRUN -> [SKIP][303] ([i915#12247]) +7 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-6/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#6953]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-4/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#12247] / [i915#3555]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-8/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#12247] / [i915#6953]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5 at pipe-c: - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#12247]) +7 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5 at pipe-c.html * igt at kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#5354]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt at kms_pm_backlight@fade-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][309] ([i915#5354]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][310] ([i915#9812]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-10/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#9685]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#3828]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#4281]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#3828]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#8430]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#9519]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt at kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][317] ([i915#9519]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][318] -> [SKIP][319] ([i915#9519]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-1/igt at kms_pm_rpm@dpms-non-lpsp.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#4077]) +6 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt at kms_pm_rpm@fences.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#9519]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#9519]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@pm-tiling: - shard-rkl: [PASS][323] -> [SKIP][324] ([i915#12916]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-2/igt at kms_pm_rpm@pm-tiling.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt at kms_pm_rpm@pm-tiling.html * igt at kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#6524]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-6/igt at kms_prime@basic-modeset-hybrid.html - shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#6524]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#6524]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][328] ([i915#11520]) +13 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb7/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#12316]) +4 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-6/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#11520]) +9 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-8/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-sf: - shard-dg1: NOTRUN -> [SKIP][331] ([i915#11520]) +8 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#9808]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-4/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#11520]) +9 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][334] ([i915#11520]) +18 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/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][335] ([i915#11520]) +9 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-7/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#11520]) +2 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#9683]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][338] ([i915#9683]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-14/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#9683]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt at kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][340] ([i915#9683]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-10/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr-primary-page-flip at edp-1: - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#9688]) +9 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt at kms_psr@fbc-psr-primary-page-flip at edp-1.html * igt at kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][342] ([i915#9732]) +17 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-9/igt at kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt at kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#9732]) +6 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_psr@fbc-psr2-sprite-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][344] ([i915#1072] / [i915#9732]) +24 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt at kms_psr@fbc-psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +17 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt at kms_psr@fbc-psr2-suspend.html * igt at kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#1072] / [i915#9732]) +14 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-7/igt at kms_psr@psr2-cursor-blt.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#5289]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu-1: NOTRUN -> [SKIP][348] ([i915#5289]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][349] ([IGT#160] / [i915#6493]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][350] ([i915#8623]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][351] ([i915#12276]) +1 other test incomplete [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk1/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][352] ([i915#9906]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt at kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][353] ([i915#9906]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#3555] / [i915#8808]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#11920]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt at kms_vrr@lobf.html - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#11920]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-6/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#3555] / [i915#9906]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][358] ([i915#3555] / [i915#9906]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#2437] / [i915#9412]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt at kms_writeback@writeback-check-output-xrgb2101010.html - shard-glk: NOTRUN -> [SKIP][360] ([i915#2437]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk2/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][361] ([i915#2437] / [i915#9412]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-9/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#2437]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#2434]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt at perf@mi-rpc.html * igt at perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#2433]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt at perf@unprivileged-single-ctx-counters.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][365] +456 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb5/igt at perf_pmu@busy-accuracy-98.html - shard-mtlp: NOTRUN -> [FAIL][366] ([i915#4349]) +1 other test fail [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-6/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][367] ([i915#8516]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt at perf_pmu@rc6-all-gts.html - shard-tglu: NOTRUN -> [SKIP][368] ([i915#8516]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6-suspend: - shard-glk: [PASS][369] -> [INCOMPLETE][370] ([i915#13356]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk8/igt at perf_pmu@rc6-suspend.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk9/igt at perf_pmu@rc6-suspend.html - shard-rkl: [PASS][371] -> [DMESG-FAIL][372] ([i915#12964]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-4/igt at perf_pmu@rc6-suspend.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt at perf_pmu@rc6-suspend.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][373] ([i915#8516]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][374] ([i915#8516]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at perf_pmu@render-node-busy-idle: - shard-dg2: [PASS][375] -> [FAIL][376] ([i915#4349]) +1 other test fail [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-5/igt at perf_pmu@render-node-busy-idle.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt at perf_pmu@render-node-busy-idle.html * igt at perf_pmu@render-node-busy-idle at vecs0: - shard-dg1: [PASS][377] -> [FAIL][378] ([i915#4349]) +1 other test fail [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-17/igt at perf_pmu@render-node-busy-idle at vecs0.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at perf_pmu@render-node-busy-idle at vecs0.html * igt at perf_pmu@render-node-busy at bcs0: - shard-mtlp: [PASS][379] -> [FAIL][380] ([i915#4349]) +2 other tests fail [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-4/igt at perf_pmu@render-node-busy at bcs0.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt at perf_pmu@render-node-busy at bcs0.html * igt at prime_busy@hang-wait at bcs0: - shard-rkl: NOTRUN -> [DMESG-WARN][381] ([i915#12964]) +8 other tests dmesg-warn [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-2/igt at prime_busy@hang-wait at bcs0.html * igt at prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][382] ([i915#3708]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][383] ([i915#3708] / [i915#4077]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt at prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][384] ([i915#3708] / [i915#4077]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-flip-hang: - shard-mtlp: NOTRUN -> [SKIP][385] ([i915#3708]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt at prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][386] ([i915#3708]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-7/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][387] ([i915#3708]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt at prime_vgem@fence-read-hang.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][388] ([i915#9917]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt at sriov_basic@enable-vfs-autoprobe-on.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1: - shard-tglu: NOTRUN -> [FAIL][389] ([i915#12910]) +9 other tests fail [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-2: - shard-mtlp: NOTRUN -> [FAIL][390] ([i915#12910]) +9 other tests fail [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-2.html * igt at sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][391] ([i915#9917]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt at sriov_basic@enable-vfs-bind-unbind-each.html #### Possible fixes #### * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-rkl: [FAIL][392] -> [PASS][393] +1 other test pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-2/igt at gem_ctx_isolation@preservation-s3 at bcs0.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt at gem_ctx_isolation@preservation-s3 at bcs0.html - shard-tglu: [DMESG-WARN][394] -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt at gem_ctx_isolation@preservation-s3 at bcs0.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-7/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-tglu: [ABORT][396] -> [PASS][397] +2 other tests pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt at gem_ctx_isolation@preservation-s3 at rcs0.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-7/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_eio@in-flight-immediate: - shard-dg1: [DMESG-WARN][398] ([i915#4423]) -> [PASS][399] +1 other test pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-17/igt at gem_eio@in-flight-immediate.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at gem_eio@in-flight-immediate.html * igt at gem_exec_balancer@full-pulse: - shard-dg1: [FAIL][400] ([i915#13364]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-13/igt at gem_exec_balancer@full-pulse.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-14/igt at gem_exec_balancer@full-pulse.html - shard-dg2: [FAIL][402] ([i915#13364]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-6/igt at gem_exec_balancer@full-pulse.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt at gem_exec_balancer@full-pulse.html * igt at gem_exec_endless@dispatch: - shard-dg2: [TIMEOUT][404] ([i915#3778] / [i915#7016]) -> [PASS][405] +1 other test pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-11/igt at gem_exec_endless@dispatch.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt at gem_exec_endless@dispatch.html * igt at gem_userptr_blits@sync-unmap-cycles: - shard-rkl: [DMESG-WARN][406] ([i915#12964]) -> [PASS][407] +35 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-6/igt at gem_userptr_blits@sync-unmap-cycles.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt at gem_userptr_blits@sync-unmap-cycles.html * igt at gem_workarounds@suspend-resume-context: - shard-glk: [INCOMPLETE][408] ([i915#13356]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk7/igt at gem_workarounds@suspend-resume-context.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk8/igt at gem_workarounds@suspend-resume-context.html * igt at gen9_exec_parse@allowed-single: - shard-glk: [ABORT][410] ([i915#5566]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk4/igt at gen9_exec_parse@allowed-single.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk7/igt at gen9_exec_parse@allowed-single.html * igt at i915_module_load@reload-no-display: - shard-tglu: [DMESG-WARN][412] ([i915#13029]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt at i915_module_load@reload-no-display.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt at i915_module_load@reload-no-display.html * igt at i915_pm_rpm@gem-execbuf: - shard-rkl: [SKIP][414] ([i915#13328]) -> [PASS][415] +1 other test pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-2/igt at i915_pm_rpm@gem-execbuf.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt at i915_pm_rpm@gem-execbuf.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-dg1: [DMESG-FAIL][416] ([i915#4423]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-13/igt at i915_pm_rpm@system-suspend-execbuf.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_selftest@live: - shard-glk: [DMESG-FAIL][418] -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk8/igt at i915_selftest@live.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk4/igt at i915_selftest@live.html * igt at i915_selftest@live at active: - shard-glk: [DMESG-FAIL][420] ([i915#12435]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk8/igt at i915_selftest@live at active.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk4/igt at i915_selftest@live at active.html * igt at i915_suspend@basic-s3-without-i915: - shard-dg1: [DMESG-WARN][422] ([i915#4391] / [i915#4423]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-18/igt at i915_suspend@basic-s3-without-i915.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@debugfs-reader: - shard-mtlp: [INCOMPLETE][424] -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-1/igt at i915_suspend@debugfs-reader.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt at i915_suspend@debugfs-reader.html * igt at i915_suspend@sysfs-reader: - shard-glk: [INCOMPLETE][426] ([i915#4817]) -> [PASS][427] +1 other test pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk5/igt at i915_suspend@sysfs-reader.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk1/igt at i915_suspend@sysfs-reader.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1: - shard-mtlp: [FAIL][428] ([i915#11808] / [i915#5956]) -> [PASS][429] +1 other test pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-2/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-8/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html * igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180: - shard-mtlp: [FAIL][430] ([i915#5138]) -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-4/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-mtlp: [FAIL][432] ([i915#11989]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-8/igt at kms_flip@plain-flip-ts-check-interruptible.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-dg2: [FAIL][434] ([i915#6880]) -> [PASS][435] +1 other test pass [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_plane@pixel-format-source-clamping: - shard-glk: [INCOMPLETE][436] ([i915#10056] / [i915#118] / [i915#13026]) -> [PASS][437] [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk7/igt at kms_plane@pixel-format-source-clamping.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk1/igt at kms_plane@pixel-format-source-clamping.html * igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-1: - shard-glk: [DMESG-WARN][438] ([i915#118]) -> [PASS] == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 04:40:32 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 04:40:32 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_meson=3A_Add_check_for_lib?= =?utf-8?q?ghe_histogram_function?= In-Reply-To: <20250108230017.212621-1-kamil.konieczny@linux.intel.com> References: <20250108230017.212621-1-kamil.konieczny@linux.intel.com> Message-ID: <173657043280.2175451.9935804565033341304@b555e5b46a47> == Series Details == Series: meson: Add check for libghe histogram function URL : https://patchwork.freedesktop.org/series/143289/ State : failure == Summary == CI Bug Log - changes from XEIGT_8182_full -> XEIGTPW_12406_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12406_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12406_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_12406_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@flip-vs-suspend-interruptible: - shard-lnl: [PASS][1] -> [FAIL][2] +2 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-4/igt at kms_flip@flip-vs-suspend-interruptible.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-7/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_plane_lowres@tiling-none at pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] +2 other tests incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_plane_lowres@tiling-none at pipe-a-hdmi-a-6.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-436/igt at kms_plane_lowres@tiling-none at pipe-a-hdmi-a-6.html New tests --------- New tests have been introduced between XEIGT_8182_full and XEIGTPW_12406_full: ### New IGT tests (1) ### * igt at kms_hdr@static-swap at pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.93] s Known issues ------------ Here are the changes found in XEIGTPW_12406_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@unplug-rescan: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1885]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at core_hotunplug@unplug-rescan.html - shard-dg2-set2: [PASS][6] -> [SKIP][7] ([Intel XE#1885]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at core_hotunplug@unplug-rescan.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at core_hotunplug@unplug-rescan.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_8182/shard-bmg-5/igt at kms_addfb_basic@unused-modifier.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_addfb_basic@unused-modifier.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [PASS][10] -> [FAIL][11] ([Intel XE#3701] / [Intel XE#3718] / [Intel XE#827]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-dp-2: - shard-bmg: [PASS][12] -> [FAIL][13] ([Intel XE#3701]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-dp-2.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/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 at pipe-a-edp-1-linear: - shard-lnl: [PASS][14] -> [FAIL][15] ([Intel XE#911]) +3 other tests fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-1/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#873]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at kms_async_flips@invalid-async-flip.html - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#873]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-434/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#316]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1407]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@linear-8bpp-rotate-0: - shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_big_fb@linear-8bpp-rotate-0.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_big_fb@linear-8bpp-rotate-0.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2327]) +5 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1467]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-7/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +6 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-6/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +8 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#2314] / [Intel XE#2894]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2314] / [Intel XE#2894]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2191]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-434/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#367]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-436/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#367]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at kms_bw@linear-tiling-2-displays-3840x2160p.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]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +25 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#3432]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#3432]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-3/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#787]) +146 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-436/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2887]) +4 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-5/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2887]) +6 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/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 at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][42] ([Intel XE#3124]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][43] ([Intel XE#1727]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#2907]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#314]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-432/igt at kms_cdclk@mode-transition at pipe-a-dp-2.html * igt at kms_cdclk@plane-scaling at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#1152]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-435/igt at kms_cdclk@plane-scaling at pipe-b-dp-4.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#306]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-3/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#2423] / [i915#2575]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2252]) +9 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#373]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-4/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#373]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-436/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][52] ([Intel XE#1178]) +1 other test fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_content_protection@atomic.html - shard-dg2-set2: NOTRUN -> [FAIL][53] ([Intel XE#1178]) +1 other test fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-434/igt at kms_content_protection@atomic.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_12406/shard-lnl-4/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2321]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1424]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-1/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#308]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-436/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#2291]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#323]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-436/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2286]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#309]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-8/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [PASS][63] -> [DMESG-WARN][64] ([Intel XE#877]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][65] ([Intel XE#877]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2244]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-8/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#455]) +11 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-434/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2374]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#1135]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-464/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1421]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-1/igt at kms_flip@2x-blocking-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#2316]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1397]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-1/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-64bpp-linear-to-32bpp-linear-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_12406/shard-lnl-6/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2293]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#651]) +5 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2311]) +19 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][78] ([Intel XE#2333]) +8 other tests fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/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-lnl: NOTRUN -> [SKIP][79] ([Intel XE#656]) +10 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#651]) +10 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#2136]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#653]) +12 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2312]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#658]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2313]) +16 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#3374] / [Intel XE#3544]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [PASS][87] -> [SKIP][88] ([Intel XE#1503]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_hdr@invalid-hdr.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_hdr@invalid-hdr.html * igt at kms_histogram@algo-basic: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#3897]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#3897]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-1/igt at kms_histogram@algo-color.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#346]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#346]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-436/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2934]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2925]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-434/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_mmap_write_crc@main: - shard-dg2-set2: [PASS][95] -> [SKIP][96] ([Intel XE#2136]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_mmap_write_crc@main.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_mmap_write_crc@main.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#356]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-6/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2486]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_panel_fitting@legacy.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][99] ([Intel XE#616]) +2 other tests fail [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-464/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#599]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-4/igt at kms_plane_lowres@tiling-x at pipe-b-edp-1.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#3307]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-5/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2763]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-436/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-modifiers at pipe-d: - 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_12406/shard-dg2-436/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#2763]) +11 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-1/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2763]) +14 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2392]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: NOTRUN -> [FAIL][107] ([Intel XE#1430]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#1439] / [Intel XE#836]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1439] / [Intel XE#3141]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-1/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_properties@get_properties-sanity-atomic: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#3007]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_properties@get_properties-sanity-atomic.html * igt at kms_properties@invalid-properties-atomic: - shard-dg2-set2: [PASS][111] -> [SKIP][112] ([Intel XE#2423] / [i915#2575]) +12 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_properties@invalid-properties-atomic.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_properties@invalid-properties-atomic.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#1489]) +5 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#1489]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-435/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1128]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-5/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1406]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-7/igt at kms_psr@pr-primary-blt.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2234]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at kms_psr@psr2-primary-render.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2330]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#3414] / [Intel XE#3904]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_setmode@basic: - shard-bmg: NOTRUN -> [FAIL][122] ([Intel XE#2883]) +6 other tests fail [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_setmode@basic.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#1435]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_setmode@basic at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][124] ([Intel XE#2883]) +6 other tests fail [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-464/igt at kms_setmode@basic at pipe-a-hdmi-a-6.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [PASS][125] -> [FAIL][126] ([Intel XE#2883]) +1 other test fail [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-8/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#362]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [PASS][128] -> [FAIL][129] ([Intel XE#899]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-6/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#1499]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1499]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-5/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#1091] / [Intel XE#2849]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-432/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute@compute-square: - shard-dg2-set2: [PASS][133] -> [SKIP][134] ([Intel XE#1130]) +18 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_compute@compute-square.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at xe_compute@compute-square.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#3889]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#3889]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-6/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#2905]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-6/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2905]) +5 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-cm-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#688]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-8/igt at xe_evict@evict-beng-cm-threads-large-multi-vm.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][140] -> [TIMEOUT][141] ([Intel XE#1473] / [Intel XE#402]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-432/igt at xe_evict@evict-beng-mixed-many-threads-small.html - shard-bmg: NOTRUN -> [TIMEOUT][142] ([Intel XE#1473]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2322]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-null: - shard-dg2-set2: [PASS][144] -> [SKIP][145] ([Intel XE#1392]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_exec_basic@multigpu-once-null.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-432/igt at xe_exec_basic@multigpu-once-null.html * igt at xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1392]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-1/igt at xe_exec_basic@multigpu-once-userptr.html * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#288]) +10 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#1130]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#1130]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#2905]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-432/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#1192]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-8/igt at xe_live_ktest@xe_mocs.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#512]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-434/igt at xe_mmap@small-bar.html * igt at xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2457]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at xe_module_load@force-load.html * igt at xe_module_load@load: - shard-bmg: ([PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177]) -> ([PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [SKIP][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]) ([Intel XE#2457]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at xe_module_load@load.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: NOTRUN -> [SKIP][204] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-436/igt at xe_oa@disabled-read-error.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][205] ([Intel XE#2248]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][206] ([Intel XE#1420]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at xe_pat@pat-index-xehpc.html - shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#2838] / [Intel XE#979]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-464/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][208] ([Intel XE#1173]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-435/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#2284]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-3/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][210] ([Intel XE#2284] / [Intel XE#366]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-434/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s4-basic: - shard-dg2-set2: [PASS][211] -> [ABORT][212] ([Intel XE#1358]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_pm@s4-basic.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-432/igt at xe_pm@s4-basic.html * igt at xe_pm@s4-basic-exec: - shard-dg2-set2: [PASS][213] -> [ABORT][214] ([Intel XE#1358] / [Intel XE#1794]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_pm@s4-basic-exec.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-432/igt at xe_pm@s4-basic-exec.html * igt at xe_pm_residency@gt-c6-freeze: - shard-dg2-set2: [PASS][215] -> [ABORT][216] ([Intel XE#2625]) +1 other test abort [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_pm_residency@gt-c6-freeze.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-432/igt at xe_pm_residency@gt-c6-freeze.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][217] -> [FAIL][218] ([Intel XE#958]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-4/igt at xe_pm_residency@toggle-gt-c6.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-5/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#944]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-434/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][220] ([Intel XE#944]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-3/igt at xe_query@multigpu-query-topology-l3-bank-mask.html * igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][221] -> [SKIP][222] ([Intel XE#1130]) +22 other tests skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Possible fixes #### * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][223] ([Intel XE#827]) -> [PASS][224] +1 other test pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][225] ([Intel XE#2136]) -> [PASS][226] +3 other tests pass [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-436/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][227] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][229] ([Intel XE#3862]) -> [PASS][230] +1 other test pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][231] ([Intel XE#3124]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-435/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-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][233] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][235] ([Intel XE#2291]) -> [PASS][236] +2 other tests pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipa-legacy: - shard-bmg: [INCOMPLETE][237] ([Intel XE#3226]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][239] ([Intel XE#877]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@torture-bo at pipe-a: - shard-lnl: [DMESG-WARN][241] ([Intel XE#877]) -> [PASS][242] +1 other test pass [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_cursor_legacy@torture-bo at pipe-a.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-7/igt at kms_cursor_legacy@torture-bo at pipe-a.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][243] ([Intel XE#1340]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-bmg: [SKIP][245] ([Intel XE#2316]) -> [PASS][246] +1 other test pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-dpms-vs-vblank-race.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][247] ([Intel XE#2882]) -> [PASS][248] +1 other test pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html * igt at kms_flip@absolute-wf_vblank: - shard-lnl: [INCOMPLETE][249] ([Intel XE#2049]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-1/igt at kms_flip@absolute-wf_vblank.html * igt at kms_flip@absolute-wf_vblank at b-edp1: - shard-lnl: [INCOMPLETE][251] -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank at b-edp1.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-1/igt at kms_flip@absolute-wf_vblank at b-edp1.html * igt at kms_flip@basic-flip-vs-wf_vblank: - shard-dg2-set2: [FAIL][253] ([Intel XE#3098]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@basic-flip-vs-wf_vblank.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_flip@basic-flip-vs-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2-set2: [INCOMPLETE][255] ([Intel XE#3937]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-432/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][257] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2: - shard-bmg: [FAIL][259] ([Intel XE#3288]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: [FAIL][261] ([Intel XE#3321]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: - shard-dg2-set2: [FAIL][263] ([Intel XE#301]) -> [PASS][264] +5 other tests pass [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank at c-dp4: - shard-dg2-set2: [FAIL][265] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][266] +1 other test pass [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip@flip-vs-rmfb at d-hdmi-a3: - shard-bmg: [INCOMPLETE][267] -> [PASS][268] +3 other tests pass [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][269] ([Intel XE#2597]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at kms_flip@flip-vs-suspend-interruptible.html - shard-dg2-set2: [INCOMPLETE][271] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][272] +1 other test pass [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@flip-vs-suspend-interruptible.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3: - shard-bmg: [INCOMPLETE][273] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend at c-dp4: - shard-dg2-set2: [INCOMPLETE][275] ([Intel XE#2049]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs-suspend at c-dp4.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-433/igt at kms_flip@flip-vs-suspend at c-dp4.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-bmg: [SKIP][277] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][278] +2 other tests pass [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][279] ([Intel XE#3012]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_joiner@basic-force-big-joiner.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_lease@possible-crtcs-filtering: - shard-bmg: [SKIP][281] ([Intel XE#3007]) -> [PASS][282] +9 other tests pass [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_lease@possible-crtcs-filtering.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at kms_lease@possible-crtcs-filtering.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2-set2: [SKIP][283] ([Intel XE#2423] / [i915#2575]) -> [PASS][284] +8 other tests pass [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-436/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][285] ([Intel XE#718]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-bmg: [DMESG-WARN][287] -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@system-suspend-modeset.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][289] ([Intel XE#1435]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [FAIL][291] ([Intel XE#2159]) -> [PASS][292] +1 other test pass [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_vrr@cmrr at pipe-a-edp-1.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-lnl-1/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [FAIL][293] ([Intel XE#1600]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_evict@evict-beng-large-multi-vm-cm.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-435/igt at xe_evict@evict-beng-large-multi-vm-cm.html * igt at xe_exec_basic@many-execqueues-userptr-invalidate-race: - shard-bmg: [SKIP][295] ([Intel XE#1130]) -> [PASS][296] +18 other tests pass [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-dg2-set2: [SKIP][297] ([Intel XE#1392]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-433/igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt at xe_exec_basic@once-rebind: - shard-dg2-set2: [SKIP][299] ([Intel XE#1130]) -> [PASS][300] +13 other tests pass [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_basic@once-rebind.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-432/igt at xe_exec_basic@once-rebind.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][301] ([Intel XE#1192]) -> [PASS][302] +1 other test pass [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_live_ktest@xe_mocs.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at xe_live_ktest@xe_mocs.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-dg2-set2: [FAIL][303] ([Intel XE#1999]) -> [PASS][304] +2 other tests pass [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-432/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][305] ([Intel XE#2423] / [i915#2575]) -> [SKIP][306] ([Intel XE#3768]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_async_flips@invalid-async-flip-atomic.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-434/igt at kms_async_flips@invalid-async-flip-atomic.html - shard-bmg: [SKIP][307] ([Intel XE#3007]) -> [SKIP][308] ([Intel XE#3768]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][309] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][310] ([Intel XE#1124]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][311] ([Intel XE#2136]) -> [SKIP][312] ([Intel XE#1124]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-434/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][313] ([Intel XE#1124]) -> [SKIP][314] ([Intel XE#2136] / [Intel XE#2351]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-bmg: [SKIP][315] ([Intel XE#1124]) -> [SKIP][316] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - shard-dg2-set2: [SKIP][317] ([Intel XE#1124]) -> [SKIP][318] ([Intel XE#2136]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][319] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][320] ([Intel XE#607]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: [SKIP][321] ([Intel XE#2136]) -> [SKIP][322] ([Intel XE#607]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-433/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][323] ([Intel XE#2887]) -> [SKIP][324] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html - shard-dg2-set2: [SKIP][325] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][326] ([Intel XE#2136]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][327] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][328] ([Intel XE#455] / [Intel XE#787]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][329] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][330] ([Intel XE#2887]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][331] ([Intel XE#2136]) -> [SKIP][332] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-436/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt at kms_chamelium_color@ctm-limited-range: - shard-bmg: [SKIP][333] ([Intel XE#2325]) -> [SKIP][334] ([Intel XE#3007]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_chamelium_color@ctm-limited-range.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_edid@hdmi-mode-timings: - shard-dg2-set2: [SKIP][335] ([Intel XE#373]) -> [SKIP][336] ([Intel XE#2423] / [i915#2575]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_chamelium_edid@hdmi-mode-timings.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_chamelium_edid@hdmi-mode-timings.html - shard-bmg: [SKIP][337] ([Intel XE#2252]) -> [SKIP][338] ([Intel XE#3007]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at kms_chamelium_edid@hdmi-mode-timings.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_chamelium_edid@hdmi-mode-timings.html * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: [SKIP][339] ([Intel XE#3007]) -> [SKIP][340] ([Intel XE#2252]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html - shard-dg2-set2: [SKIP][341] ([Intel XE#2423] / [i915#2575]) -> [SKIP][342] ([Intel XE#373]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-436/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt at kms_content_protection@legacy: - shard-bmg: [FAIL][343] ([Intel XE#1178]) -> [SKIP][344] ([Intel XE#2341]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_content_protection@legacy.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_content_protection@legacy.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][345] ([Intel XE#3007]) -> [SKIP][346] ([Intel XE#2341]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_content_protection@mei-interface.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-dg2-set2: [FAIL][347] ([Intel XE#1188]) -> [SKIP][348] ([Intel XE#2423] / [i915#2575]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_content_protection@uevent.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_content_protection@uevent.html - shard-bmg: [FAIL][349] ([Intel XE#1188]) -> [SKIP][350] ([Intel XE#3007]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_content_protection@uevent.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][351] ([Intel XE#3007]) -> [SKIP][352] ([Intel XE#2320]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg2-set2: [SKIP][353] ([Intel XE#2423] / [i915#2575]) -> [SKIP][354] ([Intel XE#455]) +2 other tests skip [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-436/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: [SKIP][355] ([Intel XE#2320]) -> [SKIP][356] ([Intel XE#3007]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_cursor_crc@cursor-sliding-256x85.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: [SKIP][357] ([Intel XE#455]) -> [SKIP][358] ([Intel XE#2136] / [Intel XE#2351]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_dsc@dsc-with-bpc-formats.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_dsc@dsc-with-bpc-formats.html - shard-bmg: [SKIP][359] ([Intel XE#2244]) -> [SKIP][360] ([Intel XE#2136] / [Intel XE#2231]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_dsc@dsc-with-bpc-formats.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [SKIP][361] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][362] ([Intel XE#1695]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][363] ([Intel XE#3007]) -> [SKIP][364] ([Intel XE#2372]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_feature_discovery@chamelium.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: [SKIP][365] ([Intel XE#2423] / [i915#2575]) -> [SKIP][366] ([Intel XE#701]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_feature_discovery@chamelium.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-464/igt at kms_feature_discovery@chamelium.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][367] ([Intel XE#2882] / [Intel XE#3288]) -> [SKIP][368] ([Intel XE#3007]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][369] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][370] ([Intel XE#2293] / [Intel XE#2380]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][371] ([Intel XE#2136]) -> [SKIP][372] ([Intel XE#455]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-464/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][373] ([Intel XE#651]) -> [SKIP][374] ([Intel XE#2136] / [Intel XE#2351]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][375] ([Intel XE#2311]) -> [SKIP][376] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html - shard-dg2-set2: [SKIP][377] ([Intel XE#651]) -> [SKIP][378] ([Intel XE#2136]) +3 other tests skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][379] ([Intel XE#2311]) -> [SKIP][380] ([Intel XE#2312]) +11 other tests skip [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-bmg: [SKIP][381] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][382] ([Intel XE#2311]) +3 other tests skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][383] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][384] ([Intel XE#2333]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][385] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][386] ([Intel XE#2312]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-bmg: [FAIL][387] ([Intel XE#2333]) -> [SKIP][388] ([Intel XE#2136] / [Intel XE#2231]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][389] ([Intel XE#2312]) -> [FAIL][390] ([Intel XE#2333]) +2 other tests fail [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [INCOMPLETE][391] ([Intel XE#2050]) -> [FAIL][392] ([Intel XE#2333]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [FAIL][393] ([Intel XE#2333]) -> [SKIP][394] ([Intel XE#2312]) +3 other tests skip [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][395] ([Intel XE#658]) -> [SKIP][396] ([Intel XE#2136] / [Intel XE#2351]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_frontbuffer_tracking@fbc-tiling-y.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-tiling-y.html - shard-bmg: [SKIP][397] ([Intel XE#2352]) -> [SKIP][398] ([Intel XE#2136] / [Intel XE#2231]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-tiling-y.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][399] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][400] ([Intel XE#651]) +2 other tests skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][401] ([Intel XE#2136]) -> [SKIP][402] ([Intel XE#651]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][403] ([Intel XE#2312]) -> [SKIP][404] ([Intel XE#2311]) +6 other tests skip [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][405] ([Intel XE#2136]) -> [SKIP][406] ([Intel XE#653]) +2 other tests skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][407] ([Intel XE#2312]) -> [SKIP][408] ([Intel XE#2313]) +4 other tests skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][409] ([Intel XE#2313]) -> [SKIP][410] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html - shard-dg2-set2: [SKIP][411] ([Intel XE#653]) -> [SKIP][412] ([Intel XE#2136] / [Intel XE#2351]) [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][413] ([Intel XE#2313]) -> [SKIP][414] ([Intel XE#2312]) +13 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][415] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][416] ([Intel XE#2313]) +4 other tests skip [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html - shard-dg2-set2: [SKIP][417] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][418] ([Intel XE#653]) +1 other test skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][419] ([Intel XE#653]) -> [SKIP][420] ([Intel XE#2136]) +1 other test skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][421] ([Intel XE#2763]) -> [SKIP][422] ([Intel XE#3007]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-bmg: [SKIP][423] ([Intel XE#1489]) -> [SKIP][424] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html - shard-dg2-set2: [SKIP][425] ([Intel XE#1489]) -> [SKIP][426] ([Intel XE#2136]) +1 other test skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][427] ([Intel XE#2136] / [Intel XE#2231]) -> [INCOMPLETE][428] ([Intel XE#2594]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2-set2: [SKIP][429] ([Intel XE#2136]) -> [SKIP][430] ([Intel XE#1122]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-433/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][431] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][432] ([Intel XE#2234] / [Intel XE#2850]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr@fbc-pr-sprite-blt.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at kms_psr@fbc-pr-sprite-blt.html - shard-dg2-set2: [SKIP][433] ([Intel XE#2136]) -> [SKIP][434] ([Intel XE#2850] / [Intel XE#929]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr@fbc-pr-sprite-blt.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-432/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_psr@fbc-pr-sprite-plane-move: - shard-dg2-set2: [SKIP][435] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][436] ([Intel XE#2136]) +1 other test skip [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr@fbc-pr-sprite-plane-move.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_psr@fbc-pr-sprite-plane-move.html * igt at kms_psr@fbc-psr-primary-render: - shard-bmg: [SKIP][437] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][438] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_psr@fbc-psr-primary-render.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_psr@fbc-psr-primary-render.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][439] ([Intel XE#3007]) -> [SKIP][440] ([Intel XE#3414] / [Intel XE#3904]) [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg2-set2: [SKIP][441] ([Intel XE#2423] / [i915#2575]) -> [SKIP][442] ([Intel XE#3414]) [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-464/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: [SKIP][443] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][444] ([Intel XE#3007]) [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html - shard-dg2-set2: [SKIP][445] ([Intel XE#3414]) -> [SKIP][446] ([Intel XE#2423] / [i915#2575]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-none: - shard-bmg: [SKIP][447] ([Intel XE#2413]) -> [SKIP][448] ([Intel XE#3007]) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_scaling_modes@scaling-mode-none.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at kms_scaling_modes@scaling-mode-none.html - shard-dg2-set2: [SKIP][449] ([Intel XE#455]) -> [SKIP][450] ([Intel XE#2423] / [i915#2575]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_scaling_modes@scaling-mode-none.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][451] ([Intel XE#1729]) -> [SKIP][452] ([Intel XE#362]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_tiled_display@basic-test-pattern.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][453] ([Intel XE#1126]) -> [SKIP][454] ([Intel XE#1130]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_copy_basic@mem-set-linear-0xfd.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_eudebug@basic-vm-bind-extended-discovery: - shard-bmg: [SKIP][455] ([Intel XE#1130]) -> [SKIP][456] ([Intel XE#2905]) +1 other test skip [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended-discovery.html * igt at xe_eudebug@multigpu-basic-client: - shard-bmg: [SKIP][457] ([Intel XE#2905]) -> [SKIP][458] ([Intel XE#1130]) +1 other test skip [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_eudebug@multigpu-basic-client.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at xe_eudebug@multigpu-basic-client.html * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-sram: - shard-dg2-set2: [SKIP][459] ([Intel XE#2905]) -> [SKIP][460] ([Intel XE#1130]) +1 other test skip [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][461] ([Intel XE#1000]) -> [TIMEOUT][462] ([Intel XE#1473]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_evict@evict-beng-threads-large.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-bmg: [FAIL][463] ([Intel XE#2364]) -> [SKIP][464] ([Intel XE#1130]) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_evict@evict-large-multi-vm-cm.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at xe_evict@evict-large-multi-vm-cm.html - shard-dg2-set2: [FAIL][465] ([Intel XE#1600]) -> [SKIP][466] ([Intel XE#1130]) [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_evict@evict-large-multi-vm-cm.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [FAIL][467] ([Intel XE#1000]) -> [TIMEOUT][468] ([Intel XE#1473] / [Intel XE#2472]) [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_evict@evict-mixed-many-threads-small.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_evict@evict-threads-large: - shard-bmg: [FAIL][469] ([Intel XE#1000]) -> [INCOMPLETE][470] ([Intel XE#1473]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_evict@evict-threads-large.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-2/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null: - shard-bmg: [SKIP][471] ([Intel XE#2322]) -> [SKIP][472] ([Intel XE#1130]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][473] ([Intel XE#1130]) -> [SKIP][474] ([Intel XE#2322]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-4/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: [SKIP][475] ([Intel XE#288]) -> [SKIP][476] ([Intel XE#1130]) +1 other test skip [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_exec_fault_mode@once-bindexecqueue-imm.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at xe_exec_fault_mode@once-bindexecqueue-imm.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][477] ([Intel XE#1130]) -> [SKIP][478] ([Intel XE#288]) +1 other test skip [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][479] ([Intel XE#1130]) -> [SKIP][480] ([Intel XE#2360]) [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-433/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt at xe_exec_sip_eudebug@breakpoint-writesip-twice: - shard-dg2-set2: [SKIP][481] ([Intel XE#1130]) -> [SKIP][482] ([Intel XE#2905]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_sip_eudebug@breakpoint-writesip-twice.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-433/igt at xe_exec_sip_eudebug@breakpoint-writesip-twice.html * igt at xe_oa@invalid-oa-exponent: - shard-dg2-set2: [SKIP][483] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][484] ([Intel XE#1130]) +1 other test skip [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_oa@invalid-oa-exponent.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at xe_oa@invalid-oa-exponent.html * igt at xe_peer2peer@read: - shard-bmg: [SKIP][485] ([Intel XE#2557]) -> [SKIP][486] ([Intel XE#2427]) [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_peer2peer@read.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-1/igt at xe_peer2peer@read.html - shard-dg2-set2: [SKIP][487] ([Intel XE#1061]) -> [FAIL][488] ([Intel XE#1173]) [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_peer2peer@read.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-435/igt at xe_peer2peer@read.html * igt at xe_query@multigpu-query-invalid-extension: - shard-bmg: [SKIP][489] ([Intel XE#944]) -> [SKIP][490] ([Intel XE#1130]) [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_query@multigpu-query-invalid-extension.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-6/igt at xe_query@multigpu-query-invalid-extension.html - shard-dg2-set2: [SKIP][491] ([Intel XE#944]) -> [SKIP][492] ([Intel XE#1130]) [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_query@multigpu-query-invalid-extension.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-463/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][493] ([Intel XE#1130]) -> [SKIP][494] ([Intel XE#944]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_query@multigpu-query-uc-fw-version-huc.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-bmg-5/igt at xe_query@multigpu-query-uc-fw-version-huc.html - shard-dg2-set2: [SKIP][495] ([Intel XE#1130]) -> [SKIP][496] ([Intel XE#944]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-huc.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/shard-dg2-464/igt at xe_query@multigpu-query-uc-fw-version-huc.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [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#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#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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [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#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [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#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#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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [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#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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [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#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [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#3701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3701 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3937 [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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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 [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_8182 -> IGTPW_12406 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12406: c23565bd2be743399f6d643793682b058cb007d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12406/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 05:27:41 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 05:27:41 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fexec=5Fca?= =?utf-8?q?pture=3A_Add_xe=5Fexec=5Fcapture_test_=28rev10=29?= In-Reply-To: <20250109004403.58162-1-zhanjun.dong@intel.com> References: <20250109004403.58162-1-zhanjun.dong@intel.com> Message-ID: <173657326155.2189926.14980677364995391392@b555e5b46a47> == Series Details == Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev10) URL : https://patchwork.freedesktop.org/series/140007/ State : failure == Summary == CI Bug Log - changes from XEIGT_8182_full -> XEIGTPW_12407_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12407_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12407_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_12407_full: ### IGT changes ### #### Possible regressions #### * igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe-a-dp-4: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe-a-dp-4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe-a-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-d-dp-2.html * igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a2-dp2: - shard-dg2-set2: NOTRUN -> [FAIL][4] +2 other tests fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-432/igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a2-dp2.html * igt at xe_fault_injection@vm-create-fail-xe_pt_create: - shard-bmg: [PASS][5] -> [DMESG-WARN][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_fault_injection@vm-create-fail-xe_pt_create.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at xe_fault_injection@vm-create-fail-xe_pt_create.html * igt at xe_pm_residency@cpg-basic: - shard-dg2-set2: [PASS][7] -> [ABORT][8] +1 other test abort [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_pm_residency@cpg-basic.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-432/igt at xe_pm_residency@cpg-basic.html #### Warnings #### * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2-set2: [FAIL][9] ([Intel XE#1178]) -> [INCOMPLETE][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_content_protection@srm at pipe-a-dp-4.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_content_protection@srm at pipe-a-dp-4.html New tests --------- New tests have been introduced between XEIGT_8182_full and XEIGTPW_12407_full: ### New IGT tests (1) ### * igt at xe_exec_capture@reset: - Statuses : 2 pass(s) - Exec time: [23.42, 33.12] s Known issues ------------ Here are the changes found in XEIGTPW_12407_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_setmaster_vs_auth: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#2423]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at core_setmaster_vs_auth.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [PASS][12] -> [FAIL][13] ([Intel XE#911]) +3 other tests fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-7/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#873]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2-set2: [PASS][15] -> [INCOMPLETE][16] ([Intel XE#2613]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt at kms_big_fb@4-tiled-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2327]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_big_fb@4-tiled-64bpp-rotate-270.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#316]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@linear-64bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1407]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-4/igt at kms_big_fb@linear-64bpp-rotate-270.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#2136] / [Intel XE#2231]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/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: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1467]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-4/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +4 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-8/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +7 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2314] / [Intel XE#2894]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#2191]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#367]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-434/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#367]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][30] -> [SKIP][31] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +6 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-3/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][33] -> [SKIP][34] ([Intel XE#2136]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +29 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#3432]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#787]) +167 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2887]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#2907]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@plane-scaling at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1152]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_cdclk@plane-scaling at pipe-b-dp-4.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#306]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-4/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2252]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-4/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#373]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-463/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html * igt at kms_content_protection@atomic: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2341]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_content_protection@atomic.html - shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#1178]) +1 other test fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at kms_content_protection@atomic.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#3278]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-8/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2321]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1424]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-3/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2286]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#309]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-4/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#2291]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-bmg: [PASS][54] -> [INCOMPLETE][55] ([Intel XE#3226]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][56] -> [FAIL][57] ([Intel XE#1475]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#323]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([i915#3804]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6.html * igt at kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2244]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-3/igt at kms_dsc@dsc-with-bpc.html * igt at kms_feature_discovery@display-2x: - shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#2373]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_feature_discovery@display-2x.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2374]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1135]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-436/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1421]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-8/igt at kms_flip@2x-blocking-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-dg2-set2: NOTRUN -> [FAIL][66] ([Intel XE#301]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-432/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3: - shard-bmg: [PASS][67] -> [FAIL][68] ([Intel XE#3288] / [Intel XE#3321]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-bmg: [PASS][69] -> [SKIP][70] ([Intel XE#2316]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#3007]) +8 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at kms_flip@2x-nonexisting-fb.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][73] -> [FAIL][74] ([Intel XE#2882]) +1 other test fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb-recreate.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@flip-vs-expired-vblank at b-dp4: - shard-dg2-set2: [PASS][75] -> [FAIL][76] ([Intel XE#301] / [Intel XE#3321]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at b-dp4.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at b-dp4.html * igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a6: - shard-dg2-set2: [PASS][77] -> [FAIL][78] ([Intel XE#301]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a6.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a6.html * igt at kms_flip@flip-vs-suspend: - shard-lnl: [PASS][79] -> [INCOMPLETE][80] ([Intel XE#2049]) +1 other test incomplete [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@flip-vs-suspend.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-7/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible at c-hdmi-a3: - shard-bmg: [PASS][81] -> [INCOMPLETE][82] ([Intel XE#2597]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible at c-hdmi-a3.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible at c-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][83] ([Intel XE#2049]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1397]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#455]) +6 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-434/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-3/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2293]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#651]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2312]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2311]) +18 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][91] ([Intel XE#2333]) +5 other tests fail [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/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-lnl: NOTRUN -> [SKIP][92] ([Intel XE#656]) +8 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2136] / [Intel XE#2231]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#651]) +7 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#653]) +11 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#658]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2313]) +17 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdmi_inject@inject-audio: - shard-dg2-set2: [PASS][98] -> [SKIP][99] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_hdmi_inject@inject-audio.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_hdmi_inject@inject-audio.html * igt at kms_histogram@algo-basic: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#3897]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#3897]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-8/igt at kms_histogram@algo-color.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#346]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#346]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2934]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2925]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-463/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2486]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_panel_fitting@legacy.html * igt at kms_plane@planar-pixel-format-settings: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#3007]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_plane@planar-pixel-format-settings.html - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2423] / [i915#2575]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_plane@planar-pixel-format-settings.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][109] ([Intel XE#616]) +2 other tests fail [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#599]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-5/igt at kms_plane_lowres@tiling-x at pipe-b-edp-1.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#3307]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-8/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2763]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-434/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-modifiers at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-434/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#2763]) +7 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-3/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2763]) +9 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2392]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: NOTRUN -> [FAIL][117] ([Intel XE#1430]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#1439] / [Intel XE#836]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#2893]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-5/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#1489]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#1489]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-463/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1128]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-7/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-sprite-blt: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1406]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-8/igt at kms_psr@pr-sprite-blt.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2330]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#1435]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#1500]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [PASS][129] -> [FAIL][130] ([Intel XE#899]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#1499]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1499]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-5/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#1091] / [Intel XE#2849]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-432/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1280] / [Intel XE#455]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2905]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#3889]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#3889]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-5/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#2905]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-5/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2905]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: NOTRUN -> [TIMEOUT][140] ([Intel XE#1473]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-mixed-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#688]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-6/igt at xe_evict@evict-beng-mixed-threads-large-multi-vm.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][142] -> [TIMEOUT][143] ([Intel XE#1473]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-432/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [PASS][144] -> [SKIP][145] ([Intel XE#1392]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2322]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#1392]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-3/igt at xe_exec_basic@multigpu-once-userptr.html * igt at xe_exec_fault_mode@many-basic-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#1130]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at xe_exec_fault_mode@many-basic-prefetch.html * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#288]) +7 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html * igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: [PASS][150] -> [SKIP][151] ([Intel XE#1130]) +12 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html - shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#1130]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt at xe_live_ktest@xe_bo: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#1192]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1192]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-5/igt at xe_live_ktest@xe_mocs.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#512]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-436/igt at xe_mmap@small-bar.html * igt at xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2457]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at xe_module_load@force-load.html * igt at xe_module_load@load: - shard-bmg: ([PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180]) -> ([PASS][181], [PASS][182], [PASS][183], [PASS][184], [SKIP][185], [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]) ([Intel XE#2457]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at xe_module_load@load.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at xe_oa@disabled-read-error.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][208] ([Intel XE#2248]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][209] ([Intel XE#1420]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_pat@pat-index-xehpc.html - shard-dg2-set2: NOTRUN -> [SKIP][210] ([Intel XE#2838] / [Intel XE#979]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-436/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][211] ([Intel XE#1173]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][212] ([Intel XE#2284]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-4/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][213] ([Intel XE#2284] / [Intel XE#366]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s3-basic-exec: - shard-dg2-set2: [PASS][214] -> [ABORT][215] ([Intel XE#1358]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_pm@s3-basic-exec.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-432/igt at xe_pm@s3-basic-exec.html * igt at xe_pm_residency@gt-c6-freeze: - shard-dg2-set2: [PASS][216] -> [ABORT][217] ([Intel XE#2625]) +1 other test abort [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_pm_residency@gt-c6-freeze.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-432/igt at xe_pm_residency@gt-c6-freeze.html * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: NOTRUN -> [SKIP][218] ([Intel XE#944]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][219] ([Intel XE#944]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-6/igt at xe_query@multigpu-query-topology-l3-bank-mask.html * igt at xe_vm@large-split-misaligned-binds-67108864: - shard-bmg: [PASS][220] -> [SKIP][221] ([Intel XE#1130]) +15 other tests skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_vm@large-split-misaligned-binds-67108864.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_vm@large-split-misaligned-binds-67108864.html * igt at xe_wedged@wedged-mode-toggle: - shard-lnl: [PASS][222] -> [ABORT][223] ([Intel XE#3084]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-2/igt at xe_wedged@wedged-mode-toggle.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-7/igt at xe_wedged@wedged-mode-toggle.html - shard-bmg: [PASS][224] -> [ABORT][225] ([Intel XE#3084]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_wedged@wedged-mode-toggle.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at xe_wedged@wedged-mode-toggle.html #### Possible fixes #### * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][226] ([Intel XE#827]) -> [PASS][227] +1 other test pass [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][228] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][230] ([Intel XE#2291]) -> [PASS][231] +2 other tests pass [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipa-legacy: - shard-bmg: [INCOMPLETE][232] ([Intel XE#3226]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][234] ([Intel XE#877]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-bmg: [SKIP][236] ([Intel XE#2316]) -> [PASS][237] +1 other test pass [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-dpms-vs-vblank-race.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][238] ([Intel XE#2882]) -> [PASS][239] +2 other tests pass [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/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][240] ([Intel XE#3321]) -> [PASS][241] +1 other test pass [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@absolute-wf_vblank: - shard-lnl: [INCOMPLETE][242] ([Intel XE#2049]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-8/igt at kms_flip@absolute-wf_vblank.html * igt at kms_flip@absolute-wf_vblank at b-edp1: - shard-lnl: [INCOMPLETE][244] -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank at b-edp1.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-8/igt at kms_flip@absolute-wf_vblank at b-edp1.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2-set2: [INCOMPLETE][246] ([Intel XE#3937]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4: - shard-dg2-set2: [INCOMPLETE][248] -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][250] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][251] +1 other test pass [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: - shard-dg2-set2: [FAIL][252] ([Intel XE#301]) -> [PASS][253] +3 other tests pass [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2: - shard-bmg: [FAIL][254] ([Intel XE#3288]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html * igt at kms_flip@flip-vs-rmfb at d-hdmi-a3: - shard-bmg: [INCOMPLETE][256] -> [PASS][257] +1 other test pass [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][258] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs-suspend.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at c-dp4: - shard-dg2-set2: [INCOMPLETE][260] ([Intel XE#2049]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs-suspend at c-dp4.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_flip@flip-vs-suspend at c-dp4.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-bmg: [SKIP][262] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][263] +2 other tests pass [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][264] ([Intel XE#2136]) -> [PASS][265] +4 other tests pass [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_invalid_mode@bad-htotal: - shard-bmg: [SKIP][266] ([Intel XE#3007]) -> [PASS][267] +8 other tests pass [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_invalid_mode@bad-htotal.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_invalid_mode@bad-htotal.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2-set2: [SKIP][268] ([Intel XE#2423] / [i915#2575]) -> [PASS][269] +7 other tests pass [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][270] ([Intel XE#718]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-3/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][272] ([Intel XE#1430]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt at kms_pm_dc@dc6-psr.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-3/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-bmg: [SKIP][274] ([Intel XE#2446]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg2-set2: [SKIP][276] ([Intel XE#2446]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [ABORT][278] ([Intel XE#2625]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_pm_rpm@system-suspend-modeset.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_pm_rpm@system-suspend-modeset.html - shard-bmg: [DMESG-WARN][280] -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@system-suspend-modeset.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][282] ([Intel XE#1435]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][284] ([Intel XE#899]) -> [PASS][285] +1 other test pass [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [FAIL][286] ([Intel XE#2159]) -> [PASS][287] +1 other test pass [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_vrr@cmrr at pipe-a-edp-1.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-4/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at xe_exec_basic@many-execqueues-userptr-invalidate-race: - shard-bmg: [SKIP][288] ([Intel XE#1130]) -> [PASS][289] +17 other tests pass [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-dg2-set2: [SKIP][290] ([Intel XE#1392]) -> [PASS][291] +3 other tests pass [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt at xe_exec_basic@once-rebind: - shard-dg2-set2: [SKIP][292] ([Intel XE#1130]) -> [PASS][293] +12 other tests pass [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_basic@once-rebind.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at xe_exec_basic@once-rebind.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: [SKIP][294] ([Intel XE#1192]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_live_ktest@xe_dma_buf.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_live_ktest@xe_dma_buf.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][296] ([Intel XE#2423] / [i915#2575]) -> [SKIP][297] ([Intel XE#3768]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_async_flips@invalid-async-flip-atomic.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-432/igt at kms_async_flips@invalid-async-flip-atomic.html - shard-bmg: [SKIP][298] ([Intel XE#3007]) -> [SKIP][299] ([Intel XE#3768]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][300] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][301] ([Intel XE#1124]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][302] ([Intel XE#2136]) -> [SKIP][303] ([Intel XE#1124]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-463/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@y-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][304] ([Intel XE#1124]) -> [SKIP][305] ([Intel XE#2136] / [Intel XE#2231]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-90.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-90.html - shard-dg2-set2: [SKIP][306] ([Intel XE#1124]) -> [SKIP][307] ([Intel XE#2136] / [Intel XE#2351]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_big_fb@y-tiled-32bpp-rotate-90.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][308] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][309] ([Intel XE#607]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][310] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][311] ([Intel XE#455] / [Intel XE#787]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-bmg: [SKIP][312] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][313] ([Intel XE#2136] / [Intel XE#2231]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-dg2-set2: [SKIP][314] ([Intel XE#3442]) -> [SKIP][315] ([Intel XE#2136]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][316] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][317] ([Intel XE#2887]) +2 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][318] ([Intel XE#2136]) -> [SKIP][319] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][320] ([Intel XE#2887]) -> [SKIP][321] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html - shard-dg2-set2: [SKIP][322] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][323] ([Intel XE#2136]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: [SKIP][324] ([Intel XE#3007]) -> [SKIP][325] ([Intel XE#2252]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html - shard-dg2-set2: [SKIP][326] ([Intel XE#2423] / [i915#2575]) -> [SKIP][327] ([Intel XE#373]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt at kms_color@ctm-0-50: - shard-bmg: [INCOMPLETE][328] -> [SKIP][329] ([Intel XE#3007]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_color@ctm-0-50.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_color@ctm-0-50.html * igt at kms_content_protection@lic-type-0: - shard-bmg: [FAIL][330] ([Intel XE#1178]) -> [SKIP][331] ([Intel XE#2341]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_content_protection@lic-type-0.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][332] ([Intel XE#3007]) -> [SKIP][333] ([Intel XE#2341]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_content_protection@mei-interface.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-dg2-set2: [FAIL][334] ([Intel XE#1178]) -> [INCOMPLETE][335] ([Intel XE#2715]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_content_protection@srm.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_content_protection@srm.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][336] ([Intel XE#3007]) -> [SKIP][337] ([Intel XE#2320]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg2-set2: [SKIP][338] ([Intel XE#2423] / [i915#2575]) -> [SKIP][339] ([Intel XE#455]) +2 other tests skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-434/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [SKIP][340] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][341] ([Intel XE#1695]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][342] ([Intel XE#3007]) -> [SKIP][343] ([Intel XE#2372]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_feature_discovery@chamelium.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: [SKIP][344] ([Intel XE#2423] / [i915#2575]) -> [SKIP][345] ([Intel XE#701]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_feature_discovery@chamelium.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at kms_feature_discovery@chamelium.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: [SKIP][346] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][347] ([Intel XE#2136] / [Intel XE#2231]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-dg2-set2: [SKIP][348] ([Intel XE#455]) -> [SKIP][349] ([Intel XE#2136] / [Intel XE#2351]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][350] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][351] ([Intel XE#2293] / [Intel XE#2380]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][352] ([Intel XE#2136]) -> [SKIP][353] ([Intel XE#455]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][354] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][355] ([Intel XE#2312]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][356] ([Intel XE#2311]) -> [SKIP][357] ([Intel XE#2312]) +7 other tests skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: [SKIP][358] ([Intel XE#2311]) -> [SKIP][359] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-bmg: [SKIP][360] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][361] ([Intel XE#2311]) +2 other tests skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][362] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][363] ([Intel XE#2333]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][364] ([Intel XE#2312]) -> [FAIL][365] ([Intel XE#2333]) +2 other tests fail [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [INCOMPLETE][366] ([Intel XE#2050]) -> [FAIL][367] ([Intel XE#2333]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [FAIL][368] ([Intel XE#2333]) -> [SKIP][369] ([Intel XE#2312]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][370] ([Intel XE#2333]) -> [SKIP][371] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: - shard-bmg: [FAIL][372] ([Intel XE#2333]) -> [INCOMPLETE][373] ([Intel XE#2050]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][374] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][375] ([Intel XE#651]) +2 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][376] ([Intel XE#651]) -> [SKIP][377] ([Intel XE#2136]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][378] ([Intel XE#2312]) -> [SKIP][379] ([Intel XE#2311]) +5 other tests skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][380] ([Intel XE#2136]) -> [SKIP][381] ([Intel XE#653]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][382] ([Intel XE#2313]) -> [SKIP][383] ([Intel XE#2312]) +13 other tests skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][384] ([Intel XE#2312]) -> [SKIP][385] ([Intel XE#2313]) +3 other tests skip [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: - shard-bmg: [SKIP][386] ([Intel XE#2312]) -> [SKIP][387] ([Intel XE#2136] / [Intel XE#2231]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][388] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][389] ([Intel XE#2313]) +4 other tests skip [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html - shard-dg2-set2: [SKIP][390] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][391] ([Intel XE#653]) +1 other test skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-bmg: [SKIP][392] ([Intel XE#2313]) -> [SKIP][393] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html - shard-dg2-set2: [SKIP][394] ([Intel XE#653]) -> [SKIP][395] ([Intel XE#2136]) +3 other tests skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt at kms_histogram@global-basic: - shard-bmg: [SKIP][396] ([Intel XE#3898]) -> [SKIP][397] ([Intel XE#3007]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_histogram@global-basic.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_histogram@global-basic.html - shard-dg2-set2: [SKIP][398] ([Intel XE#455]) -> [SKIP][399] ([Intel XE#2423] / [i915#2575]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_histogram@global-basic.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_histogram@global-basic.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][400] ([Intel XE#1489]) -> [SKIP][401] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html - shard-dg2-set2: [SKIP][402] ([Intel XE#1489]) -> [SKIP][403] ([Intel XE#2136]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][404] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][405] ([Intel XE#2387]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2-set2: [SKIP][406] ([Intel XE#2136]) -> [SKIP][407] ([Intel XE#1122]) [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][408] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][409] ([Intel XE#2234] / [Intel XE#2850]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr@fbc-pr-sprite-blt.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_psr@psr-basic: - shard-bmg: [SKIP][410] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][411] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_psr@psr-basic.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_psr@psr-basic.html - shard-dg2-set2: [SKIP][412] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][413] ([Intel XE#2136]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_psr@psr-basic.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_psr@psr-basic.html * igt at kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][414] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][415] ([Intel XE#2351]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_psr@psr-sprite-plane-onoff.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][416] ([Intel XE#3007]) -> [SKIP][417] ([Intel XE#3414] / [Intel XE#3904]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg2-set2: [SKIP][418] ([Intel XE#2423] / [i915#2575]) -> [SKIP][419] ([Intel XE#3414]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][420] ([Intel XE#1729]) -> [SKIP][421] ([Intel XE#362]) [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_tiled_display@basic-test-pattern.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][422] ([Intel XE#1130]) -> [SKIP][423] ([Intel XE#1280] / [Intel XE#455]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_compute_preempt@compute-threadgroup-preempt.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][424] ([Intel XE#3889]) -> [SKIP][425] ([Intel XE#1130]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_eudebug@basic-vm-access-parameters-userptr.html - shard-dg2-set2: [SKIP][426] ([Intel XE#3889]) -> [SKIP][427] ([Intel XE#1130]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-extended-discovery: - shard-dg2-set2: [SKIP][428] ([Intel XE#1130]) -> [SKIP][429] ([Intel XE#2905]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at xe_eudebug@basic-vm-bind-extended-discovery.html - shard-bmg: [SKIP][430] ([Intel XE#1130]) -> [SKIP][431] ([Intel XE#2905]) +1 other test skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at xe_eudebug@basic-vm-bind-extended-discovery.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][432] ([Intel XE#1473]) -> [SKIP][433] ([Intel XE#1130]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_evict@evict-beng-mixed-threads-large.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [FAIL][434] ([Intel XE#1000]) -> [TIMEOUT][435] ([Intel XE#1473] / [Intel XE#2472]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_evict@evict-mixed-many-threads-small.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [TIMEOUT][436] ([Intel XE#1473] / [Intel XE#2472]) -> [INCOMPLETE][437] ([Intel XE#1473]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_evict@evict-mixed-threads-large.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at xe_evict@evict-mixed-threads-large.html * igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap: - shard-bmg: [SKIP][438] ([Intel XE#2322]) -> [SKIP][439] ([Intel XE#1130]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][440] ([Intel XE#1130]) -> [SKIP][441] ([Intel XE#2322]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@many-userptr-invalidate-imm: - shard-dg2-set2: [SKIP][442] ([Intel XE#288]) -> [SKIP][443] ([Intel XE#1130]) +2 other tests skip [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@many-userptr-invalidate-imm.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at xe_exec_fault_mode@many-userptr-invalidate-imm.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][444] ([Intel XE#1130]) -> [SKIP][445] ([Intel XE#288]) +1 other test skip [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-463/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][446] ([Intel XE#1130]) -> [SKIP][447] ([Intel XE#2360]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-436/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][448] ([Intel XE#2459] / [Intel XE#2596]) -> [SKIP][449] ([Intel XE#1130]) [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_media_fill@media-fill.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_media_fill@media-fill.html - shard-dg2-set2: [SKIP][450] ([Intel XE#560]) -> [SKIP][451] ([Intel XE#1130]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_media_fill@media-fill.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at xe_media_fill@media-fill.html * igt at xe_oa@stress-open-close: - shard-dg2-set2: [SKIP][452] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][453] ([Intel XE#1130]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_oa@stress-open-close.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at xe_oa@stress-open-close.html * igt at xe_peer2peer@read: - shard-bmg: [SKIP][454] ([Intel XE#2557]) -> [SKIP][455] ([Intel XE#2427]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_peer2peer@read.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at xe_peer2peer@read.html - shard-dg2-set2: [SKIP][456] ([Intel XE#1061]) -> [FAIL][457] ([Intel XE#1173]) [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_peer2peer@read.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at xe_peer2peer@read.html * igt at xe_peer2peer@write: - shard-bmg: [SKIP][458] ([Intel XE#2427]) -> [SKIP][459] ([Intel XE#2557]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_peer2peer@write.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_peer2peer@write.html - shard-dg2-set2: [FAIL][460] ([Intel XE#1173]) -> [SKIP][461] ([Intel XE#1061]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_peer2peer@write.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at xe_peer2peer@write.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][462] ([Intel XE#1130]) -> [SKIP][463] ([Intel XE#944]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_query@multigpu-query-uc-fw-version-huc.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at xe_query@multigpu-query-uc-fw-version-huc.html - shard-dg2-set2: [SKIP][464] ([Intel XE#1130]) -> [SKIP][465] ([Intel XE#944]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-huc.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at xe_query@multigpu-query-uc-fw-version-huc.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [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#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#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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [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#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [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#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3937 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8182 -> IGTPW_12407 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12407: 0afa7b205dd6a755ad29c432e9bcca2d0d552917 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 06:15:42 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 06:15:42 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_drm-uapi/xe=3A_Sync_with_O?= =?utf-8?q?A_uapi_updates?= In-Reply-To: <20250109032331.2774067-1-ashutosh.dixit@intel.com> References: <20250109032331.2774067-1-ashutosh.dixit@intel.com> Message-ID: <173657614241.2211463.8406181710710589537@b555e5b46a47> == Series Details == Series: drm-uapi/xe: Sync with OA uapi updates URL : https://patchwork.freedesktop.org/series/143297/ State : failure == Summary == CI Bug Log - changes from XEIGT_8182_full -> XEIGTPW_12408_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12408_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12408_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_12408_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@basic-plain-flip at b-dp2: - shard-bmg: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at kms_flip@basic-plain-flip at b-dp2.html * igt at xe_exec_threads@threads-bal-mixed-userptr: - shard-dg2-set2: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_exec_threads@threads-bal-mixed-userptr.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at xe_exec_threads@threads-bal-mixed-userptr.html * igt at xe_pm_residency@cpg-basic: - shard-dg2-set2: [PASS][4] -> [ABORT][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_pm_residency@cpg-basic.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at xe_pm_residency@cpg-basic.html #### Warnings #### * igt at kms_flip@basic-plain-flip: - shard-bmg: [SKIP][6] ([Intel XE#3007]) -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@basic-plain-flip.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at kms_flip@basic-plain-flip.html Known issues ------------ Here are the changes found in XEIGTPW_12408_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_async_flips@alternate-sync-async-flip at pipe-a-dp-2: - shard-bmg: [PASS][8] -> [FAIL][9] ([Intel XE#827]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-dp-2.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-dp-2.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [PASS][10] -> [FAIL][11] ([Intel XE#911]) +3 other tests fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-4/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#873]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at kms_async_flips@invalid-async-flip.html - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#873]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-8/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2327]) +5 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1467]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-8/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +6 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-6/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +8 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2314] / [Intel XE#2894]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#367]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-433/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#367]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#455] / [Intel XE#787]) +21 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-463/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#3432]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#3432]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-5/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#787]) +125 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +4 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-4/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][29] ([Intel XE#3124]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][30] ([Intel XE#1727]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html * igt at kms_cdclk@plane-scaling at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1152]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at kms_cdclk@plane-scaling at pipe-b-dp-4.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2252]) +9 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#373]) +4 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#373]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-5/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][35] ([Intel XE#1178]) +1 other test fail [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at kms_content_protection@atomic.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#3278]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2321]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1424]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-1/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#308]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#323]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-433/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2286]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#309]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-8/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [PASS][43] -> [DMESG-WARN][44] ([Intel XE#877]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][45] ([Intel XE#877]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][46] -> [SKIP][47] ([Intel XE#2291]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_dp_aux_dev: - shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#3009]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_dp_aux_dev.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_dp_aux_dev.html * igt at kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#2244]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-2/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#455]) +7 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-464/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2374]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1421]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-8/igt at kms_flip@2x-blocking-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][54] -> [FAIL][55] ([Intel XE#3321]) +1 other test fail [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-464/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][56] -> [FAIL][57] ([Intel XE#301]) +2 other tests fail [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-464/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-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][58] ([Intel XE#301]) +3 other tests fail [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-wf_vblank: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2316]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_flip@2x-flip-vs-wf_vblank.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#2316]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb-recreate.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [PASS][62] -> [FAIL][63] ([Intel XE#2882]) +5 other tests fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2: - shard-bmg: [PASS][64] -> [FAIL][65] ([Intel XE#3288] / [Intel XE#3321]) +1 other test fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html * igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3: - shard-bmg: [PASS][66] -> [FAIL][67] ([Intel XE#3321]) +1 other test fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1: - shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#886]) +6 other tests fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-4/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1397]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-3/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-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-6/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2293]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#651]) +4 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2311]) +17 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][75] ([Intel XE#2333]) +7 other tests fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/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-lnl: NOTRUN -> [SKIP][76] ([Intel XE#656]) +10 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-3/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#651]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2312]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#653]) +10 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-suspend: - shard-lnl: [PASS][80] -> [INCOMPLETE][81] ([Intel XE#2050]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-1/igt at kms_frontbuffer_tracking@fbcpsr-suspend.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcpsr-suspend.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#658]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2313]) +17 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#3544]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_hdr@brightness-with-hdr.html * igt at kms_histogram@algo-basic: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#3897]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#3897]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-5/igt at kms_histogram@algo-color.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#346]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2934]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#356]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-4/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2486]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at kms_panel_fitting@legacy.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][91] ([Intel XE#616]) +2 other tests fail [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#599]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-8/igt at kms_plane_lowres@tiling-x at pipe-b-edp-1.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2763]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/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-modifiers at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#2763]) +11 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-1/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2763]) +14 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2392]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: NOTRUN -> [FAIL][98] ([Intel XE#1430]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#1439] / [Intel XE#836]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1439] / [Intel XE#3141]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-5/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2893]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-1/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#1489]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#1489]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1128]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-3/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-464/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html * igt at kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1406]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-8/igt at kms_psr@pr-primary-blt.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2234]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at kms_psr@psr2-primary-render.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2330]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#3414] / [Intel XE#3904]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#1435]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_setmode@basic at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][112] ([Intel XE#2883]) +6 other tests fail [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at kms_setmode@basic at pipe-a-hdmi-a-6.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [PASS][113] -> [FAIL][114] ([Intel XE#899]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#1499]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1499]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-5/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#1280] / [Intel XE#455]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#3889]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#3889]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-8/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#2905]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-4/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2905]) +5 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-vram: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2905]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html * igt at xe_evict@evict-beng-cm-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#688]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-8/igt at xe_evict@evict-beng-cm-threads-large-multi-vm.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][124] -> [TIMEOUT][125] ([Intel XE#1473] / [Intel XE#402]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-433/igt at xe_evict@evict-beng-mixed-many-threads-small.html - shard-bmg: NOTRUN -> [INCOMPLETE][126] ([Intel XE#1473]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][127] -> [TIMEOUT][128] ([Intel XE#1473]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1392]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [PASS][130] -> [SKIP][131] ([Intel XE#1392]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2322]) +4 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#1392]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-3/igt at xe_exec_basic@multigpu-once-userptr.html * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#288]) +7 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-434/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html * igt at xe_exec_threads@threads-bal-mixed-shared-vm-rebind: - shard-dg2-set2: [PASS][135] -> [SKIP][136] ([Intel XE#1130]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_exec_threads@threads-bal-mixed-shared-vm-rebind.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at xe_exec_threads@threads-bal-mixed-shared-vm-rebind.html - shard-bmg: [PASS][137] -> [SKIP][138] ([Intel XE#1130]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_exec_threads@threads-bal-mixed-shared-vm-rebind.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at xe_exec_threads@threads-bal-mixed-shared-vm-rebind.html * igt at xe_live_ktest@xe_migrate: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#1192]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at xe_live_ktest@xe_migrate.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#512]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at xe_mmap@small-bar.html * igt at xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2457]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at xe_module_load@force-load.html * igt at xe_module_load@load: - shard-bmg: ([PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165]) -> ([PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [SKIP][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191]) ([Intel XE#2457]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at xe_module_load@load.html * igt at xe_module_load@many-reload: - shard-bmg: [PASS][192] -> [FAIL][193] ([Intel XE#3546]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_module_load@many-reload.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at xe_module_load@many-reload.html - shard-dg2-set2: [PASS][194] -> [FAIL][195] ([Intel XE#3546]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_module_load@many-reload.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-434/igt at xe_module_load@many-reload.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: NOTRUN -> [SKIP][196] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at xe_oa@disabled-read-error.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][197] ([Intel XE#2248]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][198] ([Intel XE#1420]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][199] ([Intel XE#1173]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#2284]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-2/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s4-d3hot-basic-exec: - shard-dg2-set2: [PASS][201] -> [ABORT][202] ([Intel XE#1358]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_pm@s4-d3hot-basic-exec.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at xe_pm@s4-d3hot-basic-exec.html * igt at xe_pm@s4-multiple-execs: - shard-lnl: [PASS][203] -> [ABORT][204] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt at xe_pm@s4-multiple-execs.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-2/igt at xe_pm@s4-multiple-execs.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-dg2-set2: [PASS][205] -> [ABORT][206] ([Intel XE#1358] / [Intel XE#1794]) +2 other tests abort [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_pm@s4-vm-bind-unbind-all.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#944]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-464/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][208] ([Intel XE#944]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-1/igt at xe_query@multigpu-query-topology-l3-bank-mask.html #### Possible fixes #### * igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-3: - shard-bmg: [FAIL][209] ([Intel XE#827]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-3.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-3.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][211] ([Intel XE#2136]) -> [PASS][212] +1 other test pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-464/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][213] ([Intel XE#3862]) -> [PASS][214] +1 other test pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][215] ([Intel XE#3124]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-433/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-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][217] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][219] ([Intel XE#2291]) -> [PASS][220] +1 other test pass [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipa-legacy: - shard-bmg: [INCOMPLETE][221] ([Intel XE#3226]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html * igt at kms_cursor_legacy@torture-bo at pipe-a: - shard-lnl: [DMESG-WARN][223] ([Intel XE#877]) -> [PASS][224] +1 other test pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_cursor_legacy@torture-bo at pipe-a.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-8/igt at kms_cursor_legacy@torture-bo at pipe-a.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-bmg: [SKIP][225] ([Intel XE#2316]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-dpms-vs-vblank-race.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][227] ([Intel XE#2882]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html * igt at kms_flip@absolute-wf_vblank: - shard-lnl: [INCOMPLETE][229] ([Intel XE#2049]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-1/igt at kms_flip@absolute-wf_vblank.html * igt at kms_flip@absolute-wf_vblank at b-edp1: - shard-lnl: [INCOMPLETE][231] -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank at b-edp1.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-1/igt at kms_flip@absolute-wf_vblank at b-edp1.html * igt at kms_flip@basic-flip-vs-wf_vblank: - shard-dg2-set2: [FAIL][233] ([Intel XE#3098]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@basic-flip-vs-wf_vblank.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-433/igt at kms_flip@basic-flip-vs-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2-set2: [INCOMPLETE][235] ([Intel XE#3937]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-433/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4: - shard-dg2-set2: [INCOMPLETE][237] -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-433/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2: - shard-bmg: [FAIL][239] ([Intel XE#3288]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4: - shard-dg2-set2: [FAIL][241] ([Intel XE#301]) -> [PASS][242] +1 other test pass [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-464/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: [FAIL][243] ([Intel XE#3321]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at c-dp4: - shard-dg2-set2: [FAIL][245] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip@flip-vs-rmfb at d-hdmi-a3: - shard-bmg: [INCOMPLETE][247] -> [PASS][248] +3 other tests pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][249] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][250] +1 other test pass [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@flip-vs-suspend-interruptible.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend at c-dp4: - shard-dg2-set2: [INCOMPLETE][251] ([Intel XE#2049]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs-suspend at c-dp4.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-464/igt at kms_flip@flip-vs-suspend at c-dp4.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-bmg: [SKIP][253] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][254] +2 other tests pass [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][255] ([Intel XE#3012]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_joiner@basic-force-big-joiner.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_lease@possible-crtcs-filtering: - shard-bmg: [SKIP][257] ([Intel XE#3007]) -> [PASS][258] +7 other tests pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_lease@possible-crtcs-filtering.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at kms_lease@possible-crtcs-filtering.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2-set2: [SKIP][259] ([Intel XE#2423] / [i915#2575]) -> [PASS][260] +6 other tests pass [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-464/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][261] ([Intel XE#718]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-bmg: [SKIP][263] ([Intel XE#2446]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg2-set2: [SKIP][265] ([Intel XE#2446]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [ABORT][267] ([Intel XE#2625]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_pm_rpm@system-suspend-modeset.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-434/igt at kms_pm_rpm@system-suspend-modeset.html - shard-bmg: [DMESG-WARN][269] -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@system-suspend-modeset.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][271] ([Intel XE#1435]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at xe_exec_basic@many-execqueues-userptr-invalidate-race: - shard-bmg: [SKIP][273] ([Intel XE#1130]) -> [PASS][274] +16 other tests pass [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate: - shard-dg2-set2: [SKIP][275] ([Intel XE#1392]) -> [PASS][276] +2 other tests pass [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html * igt at xe_exec_basic@once-rebind: - shard-dg2-set2: [SKIP][277] ([Intel XE#1130]) -> [PASS][278] +7 other tests pass [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_basic@once-rebind.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at xe_exec_basic@once-rebind.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: [SKIP][279] ([Intel XE#1192]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_live_ktest@xe_dma_buf.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_module_load@load: - shard-dg2-set2: ([PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [SKIP][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306]) ([Intel XE#378]) -> ([PASS][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], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_module_load@load.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_module_load@load.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_module_load@load.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_module_load@load.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_module_load@load.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_module_load@load.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_module_load@load.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_module_load@load.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_module_load@load.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_module_load@load.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_module_load@load.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_module_load@load.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_module_load@load.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_module_load@load.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_module_load@load.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_module_load@load.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_module_load@load.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_module_load@load.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_module_load@load.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_module_load@load.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_module_load@load.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_module_load@load.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_module_load@load.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_module_load@load.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_module_load@load.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-464/igt at xe_module_load@load.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at xe_module_load@load.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at xe_module_load@load.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at xe_module_load@load.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at xe_module_load@load.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-463/igt at xe_module_load@load.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-433/igt at xe_module_load@load.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-433/igt at xe_module_load@load.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-464/igt at xe_module_load@load.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at xe_module_load@load.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-464/igt at xe_module_load@load.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at xe_module_load@load.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-463/igt at xe_module_load@load.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at xe_module_load@load.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-463/igt at xe_module_load@load.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-434/igt at xe_module_load@load.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at xe_module_load@load.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at xe_module_load@load.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at xe_module_load@load.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at xe_module_load@load.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at xe_module_load@load.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-433/igt at xe_module_load@load.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-433/igt at xe_module_load@load.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][330] ([Intel XE#2423] / [i915#2575]) -> [SKIP][331] ([Intel XE#3768]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_async_flips@invalid-async-flip-atomic.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-434/igt at kms_async_flips@invalid-async-flip-atomic.html - shard-bmg: [SKIP][332] ([Intel XE#3007]) -> [SKIP][333] ([Intel XE#3768]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][334] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][335] ([Intel XE#1124]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][336] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][337] ([Intel XE#607]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: [SKIP][338] ([Intel XE#2136]) -> [SKIP][339] ([Intel XE#607]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-433/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][340] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][341] ([Intel XE#2887]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][342] ([Intel XE#2136]) -> [SKIP][343] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt at kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2-set2: [SKIP][344] ([Intel XE#2423] / [i915#2575]) -> [SKIP][345] ([Intel XE#373]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-463/igt at kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: [SKIP][346] ([Intel XE#3007]) -> [SKIP][347] ([Intel XE#2252]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt at kms_content_protection@legacy: - shard-bmg: [FAIL][348] ([Intel XE#1178]) -> [SKIP][349] ([Intel XE#2341]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_content_protection@legacy.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_content_protection@legacy.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][350] ([Intel XE#3007]) -> [SKIP][351] ([Intel XE#2341]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_content_protection@mei-interface.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at kms_content_protection@mei-interface.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][352] ([Intel XE#3007]) -> [SKIP][353] ([Intel XE#2320]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg2-set2: [SKIP][354] ([Intel XE#2423] / [i915#2575]) -> [SKIP][355] ([Intel XE#455]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-463/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [SKIP][356] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][357] ([Intel XE#1695]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][358] ([Intel XE#3007]) -> [SKIP][359] ([Intel XE#2372]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_feature_discovery@chamelium.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at kms_feature_discovery@chamelium.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-bmg: [SKIP][360] ([Intel XE#3007]) -> [SKIP][361] ([Intel XE#2316]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][362] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][363] ([Intel XE#2293] / [Intel XE#2380]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][364] ([Intel XE#2136]) -> [SKIP][365] ([Intel XE#455]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][366] ([Intel XE#2311]) -> [SKIP][367] ([Intel XE#2312]) +13 other tests skip [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-bmg: [SKIP][368] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][369] ([Intel XE#2311]) +3 other tests skip [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html - shard-dg2-set2: [SKIP][370] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][371] ([Intel XE#651]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][372] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][373] ([Intel XE#2333]) +1 other test fail [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][374] ([Intel XE#2312]) -> [FAIL][375] ([Intel XE#2333]) +2 other tests fail [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [INCOMPLETE][376] ([Intel XE#2050]) -> [FAIL][377] ([Intel XE#2333]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][378] ([Intel XE#2333]) -> [SKIP][379] ([Intel XE#2312]) +2 other tests skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][380] ([Intel XE#2312]) -> [SKIP][381] ([Intel XE#2311]) +4 other tests skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][382] ([Intel XE#2136]) -> [SKIP][383] ([Intel XE#653]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][384] ([Intel XE#2312]) -> [SKIP][385] ([Intel XE#2313]) +4 other tests skip [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][386] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][387] ([Intel XE#2313]) +4 other tests skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html - shard-dg2-set2: [SKIP][388] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][389] ([Intel XE#653]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][390] ([Intel XE#2313]) -> [SKIP][391] ([Intel XE#2312]) +14 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][392] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][393] ([Intel XE#2387]) [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2-set2: [SKIP][394] ([Intel XE#2136]) -> [SKIP][395] ([Intel XE#1122]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-464/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][396] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][397] ([Intel XE#2234] / [Intel XE#2850]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr@fbc-pr-sprite-blt.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at kms_psr@fbc-pr-sprite-blt.html - shard-dg2-set2: [SKIP][398] ([Intel XE#2136]) -> [SKIP][399] ([Intel XE#2850] / [Intel XE#929]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr@fbc-pr-sprite-blt.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][400] ([Intel XE#3007]) -> [SKIP][401] ([Intel XE#3414] / [Intel XE#3904]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg2-set2: [SKIP][402] ([Intel XE#2423] / [i915#2575]) -> [SKIP][403] ([Intel XE#3414]) [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][404] ([Intel XE#1130]) -> [SKIP][405] ([Intel XE#1280] / [Intel XE#455]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_compute_preempt@compute-threadgroup-preempt.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_eudebug@basic-vm-bind-extended-discovery: - shard-dg2-set2: [SKIP][406] ([Intel XE#1130]) -> [SKIP][407] ([Intel XE#2905]) +1 other test skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at xe_eudebug@basic-vm-bind-extended-discovery.html - shard-bmg: [SKIP][408] ([Intel XE#1130]) -> [SKIP][409] ([Intel XE#2905]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at xe_eudebug@basic-vm-bind-extended-discovery.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][410] ([Intel XE#1473]) -> [INCOMPLETE][411] ([Intel XE#1473]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_evict@evict-beng-mixed-threads-large.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][412] ([Intel XE#1000]) -> [TIMEOUT][413] ([Intel XE#1473]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_evict@evict-beng-threads-large.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-5/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [FAIL][414] ([Intel XE#1000]) -> [TIMEOUT][415] ([Intel XE#1473] / [Intel XE#2472]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_evict@evict-mixed-many-threads-small.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][416] ([Intel XE#1130]) -> [SKIP][417] ([Intel XE#2322]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-8/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][418] ([Intel XE#1130]) -> [SKIP][419] ([Intel XE#288]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][420] ([Intel XE#1130]) -> [SKIP][421] ([Intel XE#2360]) [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-463/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][422] ([Intel XE#2833]) -> [SKIP][423] ([Intel XE#1192]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_live_ktest@xe_eudebug.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-2/igt at xe_live_ktest@xe_eudebug.html * igt at xe_peer2peer@read: - shard-bmg: [SKIP][424] ([Intel XE#2557]) -> [SKIP][425] ([Intel XE#2427]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_peer2peer@read.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-4/igt at xe_peer2peer@read.html - shard-dg2-set2: [SKIP][426] ([Intel XE#1061]) -> [FAIL][427] ([Intel XE#1173]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_peer2peer@read.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at xe_peer2peer@read.html * igt at xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [SKIP][428] ([Intel XE#1130]) -> [ABORT][429] ([Intel XE#1358] / [Intel XE#1794]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_pm@s3-vm-bind-unbind-all.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-432/igt at xe_pm@s3-vm-bind-unbind-all.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][430] ([Intel XE#1130]) -> [SKIP][431] ([Intel XE#944]) [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_query@multigpu-query-uc-fw-version-huc.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-bmg-1/igt at xe_query@multigpu-query-uc-fw-version-huc.html - shard-dg2-set2: [SKIP][432] ([Intel XE#1130]) -> [SKIP][433] ([Intel XE#944]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-huc.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/shard-dg2-436/igt at xe_query@multigpu-query-uc-fw-version-huc.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#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#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#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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#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#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [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#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [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#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3897]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3897 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3937 [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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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_8182 -> IGTPW_12408 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12408: 8977a5326aa3b1f4ad89ff76c4f6198b0ed10d89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12408/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 07:04:18 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 07:04:18 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_meson=3A_Add_check_for_l?= =?utf-8?q?ibghe_histogram_function?= In-Reply-To: <20250108230017.212621-1-kamil.konieczny@linux.intel.com> References: <20250108230017.212621-1-kamil.konieczny@linux.intel.com> Message-ID: <173657905890.2224154.1616218242108739683@b555e5b46a47> == Series Details == Series: meson: Add check for libghe histogram function URL : https://patchwork.freedesktop.org/series/143289/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15927_full -> IGTPW_12406_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12406_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12406_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_12406/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_12406_full: ### IGT changes ### #### Possible regressions #### * igt at debugfs_test@read_all_entries: - shard-mtlp: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-6/igt at debugfs_test@read_all_entries.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-7/igt at debugfs_test@read_all_entries.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-rkl: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-2/igt at gem_pxp@hw-rejects-pxp-context.html * igt at i915_selftest@live: - shard-rkl: [PASS][4] -> [DMESG-FAIL][5] +1 other test dmesg-fail [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-4/igt at i915_selftest@live.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-3/igt at i915_selftest@live.html * igt at kms_flip@flip-vs-fences at b-vga1: - shard-snb: NOTRUN -> [INCOMPLETE][6] +1 other test incomplete [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-snb5/igt at kms_flip@flip-vs-fences at b-vga1.html Known issues ------------ Here are the changes found in IGTPW_12406_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-18/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-1/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-4/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-1/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#6230]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-2/igt at api_intel_bb@crc32.html - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#6230]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at api_intel_bb@crc32.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#11078]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-4/igt at device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-2/igt at device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#11078]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-3/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][16] ([i915#11078]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-3/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@all-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8414]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at drm_fdinfo@all-busy-check-all.html * igt at drm_fdinfo@busy-hang at bcs0: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8414]) +16 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-1/igt at drm_fdinfo@busy-hang at bcs0.html * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8414]) +6 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-7/igt at drm_fdinfo@busy-idle at vecs0.html * igt at gem_ccs@suspend-resume: - shard-dg2: [PASS][20] -> [INCOMPLETE][21] ([i915#7297]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-8/igt at gem_ccs@suspend-resume.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-3/igt at gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][22] ([i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-13/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at tile64-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][23] -> [INCOMPLETE][24] ([i915#12392] / [i915#7297]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-8/igt at gem_ccs@suspend-resume at tile64-compressed-compfmt0-lmem0-lmem0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-3/igt at gem_ccs@suspend-resume at tile64-compressed-compfmt0-lmem0-lmem0.html * igt at gem_create@create-ext-cpu-access-big: - shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#6335]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][26] ([i915#8562]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-8/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][27] ([i915#12353]) +1 other test incomplete [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk8/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_persistence@heartbeat-hang: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#8555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-13/igt at gem_ctx_persistence@heartbeat-hang.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#8555]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-1/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][30] ([i915#1099]) +5 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-snb2/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#280]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-3/igt at gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][32] ([i915#280]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-4/igt at gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-6/igt at gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-8/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-args: - shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#280]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at gem_ctx_sseu@invalid-args.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#280]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-17/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4036]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#4525]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-4/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#6334]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-3/igt at gem_exec_capture@capture-invisible.html - shard-tglu: NOTRUN -> [SKIP][40] ([i915#6334]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-7/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture-invisible at smem0: - shard-glk: NOTRUN -> [SKIP][41] ([i915#6334]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk4/igt at gem_exec_capture@capture-invisible at smem0.html * igt at gem_exec_capture@capture-recoverable: - shard-tglu-1: NOTRUN -> [SKIP][42] ([i915#6344]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at gem_exec_capture@capture-recoverable.html * igt at gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-1/igt at gem_exec_fence@submit3.html * igt at gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-1/igt at gem_exec_flush@basic-batch-kernel-default-cmd.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-18/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#5107]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-2/igt at gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][47] ([i915#5107]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-6/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#3281]) +14 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-3/igt at gem_exec_reloc@basic-scanout.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-12/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_reloc@basic-write-wc-active: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-3/igt at gem_exec_reloc@basic-write-wc-active.html - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3281]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-7/igt at gem_exec_reloc@basic-write-wc-active.html * igt at gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4812]) +5 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at gem_exec_schedule@preempt-queue-contexts.html * igt at gem_exec_schedule@thriceslice: - shard-snb: NOTRUN -> [SKIP][53] +478 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-snb2/igt at gem_exec_schedule@thriceslice.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4860]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-6/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-8/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_fenced_exec_thrash@too-many-fences: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-18/igt at gem_fenced_exec_thrash@too-many-fences.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613] / [i915#7582]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-3/igt at gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613] / [i915#7582]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-6/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +5 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-2/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][61] ([i915#5493]) +1 other test timeout [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-10/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][62] ([i915#4613]) +7 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk8/igt at gem_lmem_swapping@verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-6/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#12193]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-13/igt at gem_lmem_swapping@verify-random-ccs.html - shard-tglu: NOTRUN -> [SKIP][65] ([i915#4613]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-9/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_lmem_swapping@verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4565]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-13/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#8289]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-2/igt at gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][68] ([i915#8289]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-6/igt at gem_media_fill@media-fill.html * igt at gem_mmap_gtt@basic-copy: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4077]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-8/igt at gem_mmap_gtt@basic-copy.html * igt at gem_mmap_gtt@basic-read: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +9 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-4/igt at gem_mmap_gtt@basic-read.html * igt at gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4083]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-6/igt at gem_mmap_wc@copy.html * igt at gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4083]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-7/igt at gem_mmap_wc@write.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4083]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-13/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3282]) +5 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-4/igt at gem_partial_pwrite_pread@write.html * igt at gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk2/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3282]) +5 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-1/igt at gem_pwrite@basic-exhaustion.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-18/igt at gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][78] ([i915#2658]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-6/igt at gem_pwrite@basic-exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3282]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-2/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@create-regular-buffer: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4270]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-6/igt at gem_pxp@create-regular-buffer.html * igt at gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][81] ([i915#12964]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-5/igt at gem_pxp@fail-invalid-protected-context.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#13398]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-9/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#13398]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@protected-raw-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][84] ([i915#12917] / [i915#12964]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-6/igt at gem_pxp@protected-raw-src-copy-not-readible.html * igt at gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4270]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-17/igt at gem_pxp@reject-modify-context-protection-off-3.html * igt at gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#8428]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-4/igt at gem_render_copy@linear-to-vebox-y-tiled.html * igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#5190] / [i915#8428]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-8/igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt at gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4079]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-4/igt at gem_render_tiled_blits@basic.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#4079]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-17/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#4885]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-12/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_softpin@noreloc-s3: - shard-rkl: NOTRUN -> [DMESG-FAIL][91] ([i915#12964]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-7/igt at gem_softpin@noreloc-s3.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][92] ([i915#13263] / [i915#13449]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk4/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@coherency-unsync: - shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at gem_userptr_blits@coherency-unsync.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-18/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#3323]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-2/igt at gem_userptr_blits@dmabuf-sync.html - shard-tglu-1: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#3323]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#3297]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-2/igt at gem_userptr_blits@invalid-mmap-offset-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#3297]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-7/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#4880]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#3297] / [i915#4880]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-7/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#3297] / [i915#4958]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-17/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#3297]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-4/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#3297]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-4/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#2527] / [i915#2856]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-3/igt at gen9_exec_parse@basic-rejected-ctx-param.html * igt at gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#2527]) +4 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-3/igt at gen9_exec_parse@bb-start-out.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#2856]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-1/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#2856]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-1/igt at gen9_exec_parse@shadow-peek.html * igt at gen9_exec_parse@unaligned-access: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#2527]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-17/igt at gen9_exec_parse@unaligned-access.html * igt at gen9_exec_parse@valid-registers: - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#2527] / [i915#2856]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at gen9_exec_parse@valid-registers.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][110] -> [ABORT][111] ([i915#9820]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-5/igt at i915_module_load@reload-with-fault-injection.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-2/igt at i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][112] -> [ABORT][113] ([i915#12817] / [i915#9820]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-9/igt at i915_module_load@reload-with-fault-injection.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-3/igt at i915_module_load@reload-with-fault-injection.html - shard-glk: NOTRUN -> [ABORT][114] ([i915#9820]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk4/igt at i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [DMESG-WARN][115] ([i915#13475]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-1/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#6412]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-6/igt at i915_module_load@resize-bar.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#7091]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-11/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#8399]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#8399]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-1/igt at i915_pm_freq_api@freq-reset-multiple.html * igt at i915_pm_rpm@debugfs-forcewake-user: - shard-dg2: [PASS][120] -> [SKIP][121] ([i915#13328]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-5/igt at i915_pm_rpm@debugfs-forcewake-user.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-8/igt at i915_pm_rpm@debugfs-forcewake-user.html * igt at i915_pm_rpm@gem-mmap-type: - shard-rkl: [PASS][122] -> [SKIP][123] ([i915#13328]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-5/igt at i915_pm_rpm@gem-mmap-type.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-5/igt at i915_pm_rpm@gem-mmap-type.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#11681] / [i915#6621]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-17/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#11681]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-13/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#5723]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-4/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@mock at memory_region: - shard-dg1: NOTRUN -> [DMESG-WARN][127] ([i915#9311]) +1 other test dmesg-warn [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-18/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][128] ([i915#4817]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk3/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#7707]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-6/igt at intel_hwmon@hwmon-read.html * igt at intel_hwmon@hwmon-write: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#7707]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4212]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-18/igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.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][132] ([i915#8709]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/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@async-flip-with-page-flip-events at pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#8709]) +11 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/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@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#12967] / [i915#6228]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-11/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#1769] / [i915#3555]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-17/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][136] ([i915#1769]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk2/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#5286]) +6 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-3/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-8bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538] / [i915#5286]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-18/igt at kms_big_fb@4-tiled-8bpp-rotate-0.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#5286]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/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-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#5286]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-3/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: NOTRUN -> [FAIL][141] ([i915#5138]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-2/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@x-tiled-32bpp-rotate-0: - shard-rkl: [PASS][142] -> [DMESG-WARN][143] ([i915#12964]) +45 other tests dmesg-warn [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-3/igt at kms_big_fb@x-tiled-32bpp-rotate-0.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-5/igt at kms_big_fb@x-tiled-32bpp-rotate-0.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#3638]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-3/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#3638]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-13/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#5190]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-6/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][147] +19 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-2/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#4538] / [i915#5190]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-11/igt at kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#4538]) +4 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-17/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-yf-tiled-ccs at pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#10307] / [i915#6095]) +141 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/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-mc-ccs at pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#6095]) +190 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-13/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs at pipe-b-hdmi-a-3.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#12313]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-13/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#6095]) +49 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#12805]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-5/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-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#6095]) +9 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-4/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6095]) +54 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-2/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#12805]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-10/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#6095]) +28 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/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-primary-suspend-yf-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][159] ([i915#12796]) +1 other test incomplete [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk7/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#12313]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#12313]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-9/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-cc at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#10307] / [i915#10434] / [i915#6095]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-4/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs: - shard-dg1: [PASS][163] -> [DMESG-WARN][164] ([i915#4423]) +1 other test dmesg-warn [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-14/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#6095]) +97 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-1/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2.html * igt at kms_cdclk@mode-transition: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#3742]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#3742]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-7/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#4087]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-11/igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-2.html * igt at kms_chamelium_audio@dp-audio-edid: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +10 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at kms_chamelium_audio@dp-audio-edid.html * igt at kms_chamelium_color@ctm-0-50: - shard-mtlp: NOTRUN -> [SKIP][170] +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-5/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +7 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-3/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][172] ([i915#11151] / [i915#7828]) +6 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-4/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +4 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +7 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-6/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +3 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-2/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_color@deep-color: - shard-dg2: [PASS][176] -> [SKIP][177] ([i915#3555]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-10/igt at kms_color@deep-color.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-5/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-2/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#6944] / [i915#9424]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-4/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3116]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-1/igt at kms_content_protection@dp-mst-type-0.html - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#3116] / [i915#3299]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3299]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-6/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#9424]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-11/igt at kms_content_protection@lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][184] ([i915#9424]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-7/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#7116] / [i915#9424]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-13/igt at kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#6944] / [i915#9424]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-8/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3555]) +8 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at kms_cursor_crc@cursor-offscreen-32x32.html - shard-tglu: NOTRUN -> [SKIP][188] ([i915#3555]) +5 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-7/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#8814]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-8/igt at kms_cursor_crc@cursor-onscreen-128x42.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#13049]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-18/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [PASS][191] -> [DMESG-WARN][192] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-4/igt at kms_cursor_crc@cursor-onscreen-64x21.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-1/igt at kms_cursor_crc@cursor-onscreen-64x21.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#13049]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-1/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#13049]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#13049]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-9/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#13049]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-8/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-dg2: NOTRUN -> [SKIP][197] ([i915#13049]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-3/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#3555]) +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-1/igt at kms_cursor_crc@cursor-sliding-32x10.html - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8814]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-1/igt at kms_cursor_crc@cursor-sliding-32x10.html * igt at kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][200] ([i915#12358] / [i915#7882]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk6/igt at kms_cursor_crc@cursor-suspend.html - shard-rkl: [PASS][201] -> [INCOMPLETE][202] ([i915#12358]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-4/igt at kms_cursor_crc@cursor-suspend.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-5/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][203] ([i915#12358]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk6/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][204] ([i915#12358]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-5/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-2.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#9809]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-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-tglu: NOTRUN -> [SKIP][206] ([i915#4103]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#4103] / [i915#4213]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-18/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursor-vs-flip-atomic-transitions: - shard-mtlp: [PASS][208] -> [INCOMPLETE][209] ([i915#10056]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-7/igt at kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-6/igt at kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html - shard-dg2: [PASS][210] -> [INCOMPLETE][211] ([i915#10056]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-7/igt at kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-8/igt at kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#13046] / [i915#5354]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-4/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-mtlp: NOTRUN -> [SKIP][213] ([i915#4213]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#4103] / [i915#4213]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-10/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][215] ([i915#4103]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [DMESG-WARN][216] ([i915#4423]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-18/igt at kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#9723]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-18/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#9723]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-7/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#4423] / [i915#8588]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#12402]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-7/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#8812]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#3840] / [i915#9688]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-3/igt at kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][223] ([i915#3840]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#3840]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-7/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#3840]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-3/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#3840]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-1/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#3955]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-3/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#1839]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-12/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#9337]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-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_12406/shard-tglu-9/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3637]) +3 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-3/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#3637]) +4 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-6/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#9934]) +6 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-12/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#8381]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#3637]) +5 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/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-rkl: NOTRUN -> [SKIP][236] ([i915#9934]) +6 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-5/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][237] ([i915#9934]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-10/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-vga1: - shard-snb: NOTRUN -> [FAIL][238] ([i915#11989]) +1 other test fail [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-snb7/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-vga1.html * igt at kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#8381]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-1/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@plain-flip-fb-recreate at a-vga1: - shard-snb: [PASS][240] -> [FAIL][241] ([i915#11989]) +4 other tests fail [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-snb7/igt at kms_flip@plain-flip-fb-recreate at a-vga1.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-snb5/igt at kms_flip@plain-flip-fb-recreate at a-vga1.html * igt at kms_flip@wf_vblank-ts-check-interruptible: - shard-dg1: [PASS][242] -> [FAIL][243] ([i915#11989]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-13/igt at kms_flip@wf_vblank-ts-check-interruptible.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at kms_flip@wf_vblank-ts-check-interruptible.html - shard-mtlp: [PASS][244] -> [FAIL][245] ([i915#10826] / [i915#11989]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-7/igt at kms_flip@wf_vblank-ts-check-interruptible.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-3/igt at kms_flip@wf_vblank-ts-check-interruptible.html * igt at kms_flip@wf_vblank-ts-check-interruptible at a-edp1: - shard-mtlp: [PASS][246] -> [FAIL][247] ([i915#10826]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-7/igt at kms_flip@wf_vblank-ts-check-interruptible at a-edp1.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-3/igt at kms_flip@wf_vblank-ts-check-interruptible at a-edp1.html * igt at kms_flip@wf_vblank-ts-check-interruptible at b-edp1: - shard-mtlp: [PASS][248] -> [FAIL][249] ([i915#11989]) +3 other tests fail [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-7/igt at kms_flip@wf_vblank-ts-check-interruptible at b-edp1.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-3/igt at kms_flip@wf_vblank-ts-check-interruptible at b-edp1.html * igt at kms_flip@wf_vblank-ts-check-interruptible at c-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][250] ([i915#11989]) +2 other tests fail [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at kms_flip@wf_vblank-ts-check-interruptible at c-hdmi-a4.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555] / [i915#8813]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#8813]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8810] / [i915#8813]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8810]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-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-tglu: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) +5 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-10/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][256] ([i915#2672] / [i915#3555]) +5 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-9/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555]) +5 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-17/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#3555]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/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-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#2672]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/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-dg1: NOTRUN -> [SKIP][261] ([i915#2587] / [i915#2672]) +5 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode.html - shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#2587] / [i915#2672]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/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-32bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#2672]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [PASS][265] -> [FAIL][266] ([i915#6880]) +1 other test fail [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-1/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][267] +42 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-snb: [PASS][268] -> [SKIP][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#8708]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-8/igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#10055]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-3/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#3458]) +8 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#8708]) +17 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-12/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][274] +48 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#1825]) +47 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#3023]) +22 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-1/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#9766]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-17/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][278] ([i915#9766]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-3/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#8708]) +10 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-5/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#1825]) +7 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#5354]) +24 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#3458]) +20 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-13/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][283] +73 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-8/igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt at kms_hdr@invalid-metadata-sizes: - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#8228]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at kms_hdr@static-swap.html - shard-tglu: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-2/igt at kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-5/igt at kms_hdr@static-swap.html - shard-dg2: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-5/igt at kms_hdr@static-swap.html - shard-rkl: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-6/igt at kms_hdr@static-swap.html * igt at kms_histogram@algo-basic: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#13389]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-6/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#13389]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-7/igt at kms_histogram@algo-color.html * igt at kms_joiner@basic-big-joiner: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#10656]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-18/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#12388]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-7/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#12394]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-18/igt at kms_joiner@basic-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][295] ([i915#12394]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-10/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#12339]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#10656]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-6/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][298] ([i915#12394]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-3/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#10656]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-2/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#1839]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-8/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#6301]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#6301]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-12/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][303] +5 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-6/igt at kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][304] ([i915#13026]) +1 other test incomplete [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk5/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][305] ([i915#12178]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk3/igt at kms_plane_alpha_blend@alpha-basic.html * igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][306] ([i915#7862]) +1 other test fail [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk3/igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][307] ([i915#10647] / [i915#12169]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk6/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][308] ([i915#10647]) +1 other test fail [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk6/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_multiple@tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#3555]) +2 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at kms_plane_multiple@tiling-4.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#3555]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-3/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#12247]) +4 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-4/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#12247]) +9 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/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][313] ([i915#12247] / [i915#6953]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-8/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-rkl: NOTRUN -> [SKIP][314] ([i915#12247] / [i915#6953]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-3/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 at pipe-b: - shard-tglu: NOTRUN -> [SKIP][315] ([i915#12247]) +7 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-8/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#12247] / [i915#6953]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/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-tglu-1: NOTRUN -> [SKIP][317] ([i915#12247]) +3 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#6953]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-4/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#12247] / [i915#3555]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-4/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#12247] / [i915#6953]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5 at pipe-c: - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#12247]) +7 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5 at pipe-c.html * igt at kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#9812]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#5354]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-7/igt at kms_pm_backlight@fade-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][324] ([i915#5354]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][325] ([i915#9812]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-3/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#9685]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#3828]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-4/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#3361]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-3/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#3828]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-10/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg1: NOTRUN -> [SKIP][330] ([i915#9519]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-12/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][331] ([i915#4077]) +9 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-17/igt at kms_pm_rpm@fences.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [PASS][332] -> [SKIP][333] ([i915#9519]) +2 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-3/igt at kms_pm_rpm@modeset-non-lpsp.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-4/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_prime@basic-modeset-hybrid: - shard-tglu: NOTRUN -> [SKIP][334] ([i915#6524]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-10/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][335] ([i915#6524]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-12/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][336] ([i915#11520]) +16 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-snb2/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#12316]) +4 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-5/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#11520]) +8 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-3/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-sf: - shard-dg1: NOTRUN -> [SKIP][339] ([i915#11520]) +9 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-12/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#9808]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-5/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#11520]) +10 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-5/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][342] ([i915#11520]) +13 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk9/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][343] ([i915#11520]) +9 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-11/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#11520]) +6 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/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-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][345] ([i915#9683]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-5/igt at kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][346] ([i915#9683]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-6/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr-primary-page-flip at edp-1: - shard-mtlp: NOTRUN -> [SKIP][347] ([i915#9688]) +9 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-7/igt at kms_psr@fbc-psr-primary-page-flip at edp-1.html * igt at kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][348] +333 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk5/igt at kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt at kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][349] ([i915#1072] / [i915#9732]) +20 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt at kms_psr@pr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][350] ([i915#9732]) +11 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at kms_psr@pr-suspend.html * igt at kms_psr@psr-primary-render: - shard-tglu: NOTRUN -> [SKIP][351] ([i915#9732]) +19 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-7/igt at kms_psr@psr-primary-render.html * igt at kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#1072] / [i915#9732]) +15 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-1/igt at kms_psr@psr2-cursor-blt.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#1072] / [i915#9732]) +26 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-2/igt at kms_psr@psr2-suspend.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][354] ([i915#5289]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#12755]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-1/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_sequence@get-forked-busy: - shard-rkl: NOTRUN -> [DMESG-WARN][356] ([i915#12964]) +13 other tests dmesg-warn [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-1/igt at kms_sequence@get-forked-busy.html * igt at kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][357] ([IGT#160] / [i915#6493]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-14/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][358] ([i915#8623]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-7/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]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-3/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][360] ([i915#8623]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-8/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][361] ([i915#12276]) +1 other test incomplete [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk2/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#9906]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-2/igt at kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][363] ([i915#9906]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-4/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][364] ([i915#3555] / [i915#8808]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-3/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][365] ([i915#11920]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-1/igt at kms_vrr@lobf.html - shard-mtlp: NOTRUN -> [SKIP][366] ([i915#11920]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-2/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][367] ([i915#3555] / [i915#9906]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-17/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_12406/shard-dg1-12/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-check-output: - shard-tglu-1: NOTRUN -> [SKIP][369] ([i915#2437]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][370] ([i915#2437] / [i915#9412]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-8/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-glk: NOTRUN -> [SKIP][371] ([i915#2437]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk7/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#2437]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-6/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][373] ([i915#7387]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-11/igt at perf@global-sseu-config.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#2434]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-4/igt at perf@mi-rpc.html * igt at perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][375] ([i915#2433]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-3/igt at perf@unprivileged-single-ctx-counters.html * igt at perf_pmu@busy-accuracy-98 at rcs0: - shard-mtlp: NOTRUN -> [FAIL][376] ([i915#4349]) +2 other tests fail [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-2/igt at perf_pmu@busy-accuracy-98 at rcs0.html * igt at perf_pmu@busy-accuracy-98 at vecs1: - shard-dg2: NOTRUN -> [FAIL][377] ([i915#4349]) +1 other test fail [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-4/igt at perf_pmu@busy-accuracy-98 at vecs1.html * igt at perf_pmu@busy-hang at rcs0: - shard-mtlp: [PASS][378] -> [FAIL][379] ([i915#4349]) +1 other test fail [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-5/igt at perf_pmu@busy-hang at rcs0.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-1/igt at perf_pmu@busy-hang at rcs0.html * igt at perf_pmu@most-busy-check-all: - shard-rkl: [PASS][380] -> [FAIL][381] ([i915#4349]) +1 other test fail [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-1/igt at perf_pmu@most-busy-check-all.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-4/igt at perf_pmu@most-busy-check-all.html * igt at perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][382] ([i915#8516]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-13/igt at perf_pmu@rc6-all-gts.html - shard-tglu: NOTRUN -> [SKIP][383] ([i915#8516]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-9/igt at perf_pmu@rc6-all-gts.html * igt at prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][384] ([i915#3708] / [i915#4077]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-17/igt at prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][385] ([i915#3708] / [i915#4077]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-7/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-flip-hang: - shard-mtlp: NOTRUN -> [SKIP][386] ([i915#3708]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-5/igt at prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][387] ([i915#3708]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-1/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][388] ([i915#3708]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-7/igt at prime_vgem@fence-read-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][389] ([i915#9917]) +1 other test skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-17/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#9917]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-4/igt at sriov_basic@enable-vfs-autoprobe-on.html - shard-rkl: NOTRUN -> [SKIP][391] ([i915#9917]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-1/igt at sriov_basic@enable-vfs-autoprobe-on.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1: - shard-tglu: NOTRUN -> [FAIL][392] ([i915#12910]) +18 other tests fail [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-10/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-2: - shard-mtlp: NOTRUN -> [FAIL][393] ([i915#12910]) +9 other tests fail [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-1/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-2.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][394] ([i915#12910]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-1/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-rkl: [FAIL][395] -> [PASS][396] +1 other test pass [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-2/igt at gem_ctx_isolation@preservation-s3 at bcs0.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-3/igt at gem_ctx_isolation@preservation-s3 at bcs0.html - shard-tglu: [DMESG-WARN][397] -> [PASS][398] +1 other test pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt at gem_ctx_isolation@preservation-s3 at bcs0.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-4/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-tglu: [ABORT][399] -> [PASS][400] +1 other test pass [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt at gem_ctx_isolation@preservation-s3 at rcs0.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-4/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_exec_balancer@full-pulse: - shard-dg1: [FAIL][401] ([i915#13364]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-13/igt at gem_exec_balancer@full-pulse.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-18/igt at gem_exec_balancer@full-pulse.html - shard-dg2: [FAIL][403] ([i915#13364]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-6/igt at gem_exec_balancer@full-pulse.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-4/igt at gem_exec_balancer@full-pulse.html * igt at gem_exec_endless@dispatch: - shard-dg2: [TIMEOUT][405] ([i915#3778] / [i915#7016]) -> [PASS][406] +1 other test pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-11/igt at gem_exec_endless@dispatch.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-8/igt at gem_exec_endless@dispatch.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: [ABORT][407] ([i915#7975] / [i915#8213]) -> [PASS][408] +1 other test pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-5/igt at gem_exec_suspend@basic-s4-devices.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg2-11/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_userptr_blits@sync-unmap-cycles: - shard-rkl: [DMESG-WARN][409] ([i915#12964]) -> [PASS][410] +57 other tests pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-6/igt at gem_userptr_blits@sync-unmap-cycles.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-4/igt at gem_userptr_blits@sync-unmap-cycles.html * igt at i915_module_load@reload-no-display: - shard-tglu: [DMESG-WARN][411] ([i915#13029]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt at i915_module_load@reload-no-display.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-tglu-9/igt at i915_module_load@reload-no-display.html * igt at i915_pm_rpm@gem-pread: - shard-rkl: [SKIP][413] ([i915#13328]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-3/igt at i915_pm_rpm@gem-pread.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-2/igt at i915_pm_rpm@gem-pread.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-dg1: [DMESG-FAIL][415] ([i915#4423]) -> [PASS][416] [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-13/igt at i915_pm_rpm@system-suspend-execbuf.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-dg1-12/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [DMESG-FAIL][417] ([i915#12964]) -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-1/igt at i915_suspend@fence-restore-tiled2untiled.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-rkl-4/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at i915_suspend@sysfs-reader: - shard-glk: [INCOMPLETE][419] ([i915#4817]) -> [PASS][420] [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk5/igt at i915_suspend@sysfs-reader.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-glk9/igt at i915_suspend@sysfs-reader.html * igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180: - shard-mtlp: [FAIL][421] ([i915#5138]) -> [PASS][422] [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-4/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-3/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: [FAIL][423] ([i915#2346]) -> [PASS][424] [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: [FAIL][425] ([i915#11989]) -> [PASS][426] +1 other test pass [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-snb7/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-snb5/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-mtlp: [FAIL][427] ([i915#11989]) -> [PASS][428] +1 other test pass [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-8/igt at kms_flip@plain-flip-ts-check-interruptible.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/shard-mtlp-6/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-dg2: [FAIL][429] ([i915#6880]) -> [PASS][430] +1 other test pass [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [430]: https://int == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12406/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 07:07:25 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 07:07:25 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_lib/amdgpu=3A_improve_pci?= =?utf-8?q?=5Funplug_test?= In-Reply-To: <20250109033222.21861-1-vitaly.prosyak@amd.com> References: <20250109033222.21861-1-vitaly.prosyak@amd.com> Message-ID: <173657924559.2227496.15155741645846749119@b555e5b46a47> == Series Details == Series: lib/amdgpu: improve pci_unplug test URL : https://patchwork.freedesktop.org/series/143299/ State : failure == Summary == CI Bug Log - changes from XEIGT_8182_full -> XEIGTPW_12409_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12409_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12409_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_12409_full: ### IGT changes ### #### Possible regressions #### * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ac-hdmi-a2-dp2: - shard-dg2-set2: NOTRUN -> [FAIL][3] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-432/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ac-hdmi-a2-dp2.html * igt at kms_flip@flip-vs-suspend at d-dp2: - shard-dg2-set2: NOTRUN -> [ABORT][4] +1 other test abort [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-432/igt at kms_flip@flip-vs-suspend at d-dp2.html * igt at kms_rotation_crc@multiplane-rotation: - shard-bmg: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_rotation_crc@multiplane-rotation.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at kms_rotation_crc@multiplane-rotation.html #### Warnings #### * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [TIMEOUT][7] ([Intel XE#1473] / [Intel XE#2472]) -> [DMESG-FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_evict@evict-mixed-threads-large.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at xe_evict@evict-mixed-threads-large.html Known issues ------------ Here are the changes found in XEIGTPW_12409_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at fbdev@info: - shard-bmg: [PASS][9] -> [SKIP][10] ([Intel XE#2134]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at fbdev@info.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at fbdev@info.html - shard-dg2-set2: [PASS][11] -> [SKIP][12] ([Intel XE#2134]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at fbdev@info.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at fbdev@info.html * igt at kms_addfb_basic@addfb25-modifier-no-flag: - shard-dg2-set2: [PASS][13] -> [SKIP][14] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_addfb_basic@addfb25-modifier-no-flag.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_addfb_basic@addfb25-modifier-no-flag.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [PASS][15] -> [FAIL][16] ([Intel XE#911]) +3 other tests fail [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-7/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#873]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1: - shard-lnl: [PASS][18] -> [FAIL][19] ([Intel XE#3908]) +1 other test fail [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-4/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-6/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#316]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-433/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1407]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2327]) +5 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-16bpp-rotate-0: - shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2136] / [Intel XE#2231]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_big_fb@x-tiled-16bpp-rotate-0.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_big_fb@x-tiled-16bpp-rotate-0.html - shard-dg2-set2: [PASS][25] -> [SKIP][26] ([Intel XE#2136]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_big_fb@x-tiled-16bpp-rotate-0.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_big_fb@x-tiled-16bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1467]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-6/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-8/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +4 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-433/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +8 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][31] -> [SKIP][32] ([Intel XE#2314] / [Intel XE#2894]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2314] / [Intel XE#2894]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2191]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-432/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#367]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-436/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#367]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-1/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-3/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#455] / [Intel XE#787]) +24 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#3432]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#3432]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-8/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#787]) +132 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-433/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2887]) +5 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html - shard-dg2-set2: [PASS][43] -> [INCOMPLETE][44] ([Intel XE#2692]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-463/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-4: - shard-dg2-set2: [PASS][45] -> [INCOMPLETE][46] ([Intel XE#2705]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-dp-4.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#2907]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2252]) +9 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#373]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-433/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#373]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-6/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][51] ([Intel XE#1178]) +1 other test fail [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_content_protection@atomic.html - shard-dg2-set2: NOTRUN -> [FAIL][52] ([Intel XE#1178]) +1 other test fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at kms_content_protection@atomic.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_12409/shard-lnl-5/igt at kms_content_protection@uevent.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][54] ([Intel XE#1188]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-432/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2321]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1424]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-1/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#308]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-436/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#323]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2286]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#309]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-8/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#2291]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][63] ([Intel XE#877]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][64] -> [FAIL][65] ([Intel XE#1475]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-1/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([i915#3804]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-436/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6.html * igt at kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#2244]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-2/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#455]) +7 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2374]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1421]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-4/igt at kms_flip@2x-blocking-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2-set2: [PASS][71] -> [FAIL][72] ([Intel XE#2882]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-432/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][73] -> [FAIL][74] ([Intel XE#3321]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/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][75] -> [FAIL][76] ([Intel XE#301]) +5 other tests fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][77] -> [SKIP][78] ([Intel XE#2316]) +8 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb-recreate.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at c-hdmi-a3: - shard-bmg: [PASS][79] -> [FAIL][80] ([Intel XE#3288] / [Intel XE#3803]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at c-hdmi-a3.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at c-hdmi-a3.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_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at b-dp4.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at b-dp4.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1397]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2293]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#651]) +6 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-4/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#656]) +7 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2311]) +19 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][89] ([Intel XE#2333]) +6 other tests fail [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#651]) +8 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2312]) +6 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#653]) +10 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2313]) +14 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#3374] / [Intel XE#3544]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [PASS][95] -> [SKIP][96] ([Intel XE#1503]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_hdr@invalid-hdr.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_hdr@invalid-hdr.html * igt at kms_histogram@algo-basic: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#3897]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#3897]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-1/igt at kms_histogram@algo-color.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#346]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#346]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2925]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#356]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2486]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-1/igt at kms_panel_fitting@legacy.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][104] ([Intel XE#616]) +2 other tests fail [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#599]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-2/igt at kms_plane_lowres@tiling-x at pipe-b-edp-1.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#3307]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-5/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][107] -> [FAIL][108] ([Intel XE#361]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2763]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/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-modifiers at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +11 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-1/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - shard-bmg: [PASS][112] -> [SKIP][113] ([Intel XE#3007]) +6 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2423] / [i915#2575]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2763]) +14 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2392]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: NOTRUN -> [FAIL][117] ([Intel XE#1430]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#1439] / [Intel XE#836]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-1/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1439] / [Intel XE#3141]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-6/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2136]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2136] / [Intel XE#2231]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2893]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-2/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#1489]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#1489]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1128]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-4/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1406]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-7/igt at kms_psr@pr-primary-blt.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2234]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_psr@psr2-primary-render.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2330]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#3414] / [Intel XE#3904]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#1435]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_sysfs_edid_timing: - shard-bmg: [PASS][133] -> [FAIL][134] ([Intel XE#1174]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_sysfs_edid_timing.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#1500]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@crtc-id at pipe-d-hdmi-a-3: - shard-bmg: [PASS][136] -> [DMESG-WARN][137] ([Intel XE#877]) +2 other tests dmesg-warn [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_vblank@crtc-id at pipe-d-hdmi-a-3.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at kms_vblank@crtc-id at pipe-d-hdmi-a-3.html * igt at kms_vblank@ts-continuation-modeset-hang: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#3007]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_vblank@ts-continuation-modeset-hang.html * igt at kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#1499]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-1/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@negative-basic: - shard-bmg: [PASS][140] -> [SKIP][141] ([Intel XE#1499]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_vrr@negative-basic.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1499]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-5/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at xe_eudebug@basic-vm-access-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#1130]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at xe_eudebug@basic-vm-access-userptr.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#3889]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#3889]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-4/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#2905]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-6/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2905]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-cm-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#688]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-6/igt at xe_evict@evict-beng-cm-threads-large-multi-vm.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][149] -> [TIMEOUT][150] ([Intel XE#1473] / [Intel XE#402]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html - shard-bmg: NOTRUN -> [TIMEOUT][151] ([Intel XE#1473]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-1/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][152] -> [TIMEOUT][153] ([Intel XE#1473]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap: - shard-dg2-set2: [PASS][154] -> [SKIP][155] ([Intel XE#1392]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#1392]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2322]) +4 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-1/igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#1392]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-3/igt at xe_exec_basic@multigpu-once-userptr.html * igt at xe_exec_basic@no-exec-null: - shard-bmg: [PASS][159] -> [SKIP][160] ([Intel XE#1130]) +17 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_exec_basic@no-exec-null.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at xe_exec_basic@no-exec-null.html * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#288]) +11 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#2905]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-463/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_exec_threads@threads-mixed-shared-vm-userptr-rebind: - shard-bmg: [PASS][163] -> [INCOMPLETE][164] ([Intel XE#1169]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_exec_threads@threads-mixed-shared-vm-userptr-rebind.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at xe_exec_threads@threads-mixed-shared-vm-userptr-rebind.html * igt at xe_live_ktest@xe_migrate: - shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#1192]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at xe_live_ktest@xe_migrate.html * igt at xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#1192]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-1/igt at xe_live_ktest@xe_mocs.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#512]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-436/igt at xe_mmap@small-bar.html * igt at xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2457]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at xe_module_load@force-load.html * igt at xe_module_load@load: - shard-bmg: ([PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [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], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [SKIP][217], [PASS][218]) ([Intel XE#2457]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-1/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-1/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-1/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at xe_module_load@load.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at xe_oa@disabled-read-error.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][220] ([Intel XE#2248]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][221] ([Intel XE#1420]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at xe_pat@pat-index-xehpc.html - shard-dg2-set2: NOTRUN -> [SKIP][222] ([Intel XE#2838] / [Intel XE#979]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-433/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@prime-external-import-coh: - shard-dg2-set2: [PASS][223] -> [SKIP][224] ([Intel XE#1130]) +15 other tests skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_pat@prime-external-import-coh.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at xe_pat@prime-external-import-coh.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][225] ([Intel XE#1173]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][226] ([Intel XE#2284]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-2/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][227] ([Intel XE#2284] / [Intel XE#366]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s2idle-vm-bind-prefetch: - shard-dg2-set2: [PASS][228] -> [ABORT][229] ([Intel XE#1358]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_pm@s2idle-vm-bind-prefetch.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-prefetch.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [PASS][230] -> [ABORT][231] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_pm@s2idle-vm-bind-unbind-all.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][232] -> [FAIL][233] ([Intel XE#958]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-4/igt at xe_pm_residency@toggle-gt-c6.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-4/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: NOTRUN -> [SKIP][234] ([Intel XE#944]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][235] ([Intel XE#944]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-3/igt at xe_query@multigpu-query-topology-l3-bank-mask.html * igt at xe_vm@large-userptr-misaligned-binds-1073741824: - shard-bmg: NOTRUN -> [SKIP][236] ([Intel XE#1130]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at xe_vm@large-userptr-misaligned-binds-1073741824.html #### Possible fixes #### * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][237] ([Intel XE#827]) -> [PASS][238] +1 other test pass [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][239] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][241] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-463/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: [INCOMPLETE][243] ([Intel XE#3124]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-463/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-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][245] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][247] ([Intel XE#2291]) -> [PASS][248] +2 other tests pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-1/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipa-legacy: - shard-bmg: [INCOMPLETE][249] ([Intel XE#3226]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html * igt at kms_cursor_legacy@torture-bo at pipe-a: - shard-lnl: [DMESG-WARN][251] ([Intel XE#877]) -> [PASS][252] +1 other test pass [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_cursor_legacy@torture-bo at pipe-a.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-5/igt at kms_cursor_legacy@torture-bo at pipe-a.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][253] ([Intel XE#1340]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][255] ([Intel XE#3288] / [Intel XE#3321]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/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 at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][257] ([Intel XE#2882]) -> [PASS][258] +1 other test pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-nonexisting-fb-interruptible: - shard-bmg: [SKIP][259] ([Intel XE#2316]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-nonexisting-fb-interruptible.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_flip@2x-nonexisting-fb-interruptible.html * igt at kms_flip@absolute-wf_vblank: - shard-lnl: [INCOMPLETE][261] ([Intel XE#2049]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-3/igt at kms_flip@absolute-wf_vblank.html * igt at kms_flip@absolute-wf_vblank at b-edp1: - shard-lnl: [INCOMPLETE][263] -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank at b-edp1.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-lnl-3/igt at kms_flip@absolute-wf_vblank at b-edp1.html * igt at kms_flip@basic-flip-vs-wf_vblank: - shard-dg2-set2: [FAIL][265] ([Intel XE#3098]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@basic-flip-vs-wf_vblank.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_flip@basic-flip-vs-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2: - shard-bmg: [FAIL][267] ([Intel XE#3288]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4: - shard-dg2-set2: [FAIL][269] ([Intel XE#301]) -> [PASS][270] +4 other tests pass [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/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: [FAIL][271] ([Intel XE#3321]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at c-dp4: - shard-dg2-set2: [FAIL][273] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][274] +1 other test pass [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip@flip-vs-rmfb at d-hdmi-a3: - shard-bmg: [INCOMPLETE][275] -> [PASS][276] +3 other tests pass [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][277] ([Intel XE#2597]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3: - shard-bmg: [INCOMPLETE][279] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-bmg: [SKIP][281] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][282] +2 other tests pass [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][283] ([Intel XE#2136]) -> [PASS][284] +4 other tests pass [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_lease@possible-crtcs-filtering: - shard-bmg: [SKIP][285] ([Intel XE#3007]) -> [PASS][286] +8 other tests pass [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_lease@possible-crtcs-filtering.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at kms_lease@possible-crtcs-filtering.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4: - shard-dg2-set2: [FAIL][287] ([Intel XE#361]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2-set2: [SKIP][289] ([Intel XE#2423] / [i915#2575]) -> [PASS][290] +9 other tests pass [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-436/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-bmg: [SKIP][291] ([Intel XE#2446]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg2-set2: [SKIP][293] ([Intel XE#2446]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-463/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [ABORT][295] ([Intel XE#2625]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_pm_rpm@system-suspend-modeset.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-436/igt at kms_pm_rpm@system-suspend-modeset.html - shard-bmg: [DMESG-WARN][297] -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@system-suspend-modeset.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_pm_rpm@system-suspend-modeset.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-dg2-set2: [SKIP][299] ([Intel XE#1392]) -> [PASS][300] +2 other tests pass [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt at xe_exec_basic@once-rebind: - shard-dg2-set2: [SKIP][301] ([Intel XE#1130]) -> [PASS][302] +11 other tests pass [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_basic@once-rebind.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-436/igt at xe_exec_basic@once-rebind.html * igt at xe_exec_threads@threads-hang-rebind-err: - shard-bmg: [SKIP][303] ([Intel XE#1130]) -> [PASS][304] +15 other tests pass [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_threads@threads-hang-rebind-err.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at xe_exec_threads@threads-hang-rebind-err.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][305] ([Intel XE#1192]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_live_ktest@xe_mocs.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at xe_live_ktest@xe_mocs.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][307] ([Intel XE#2423] / [i915#2575]) -> [SKIP][308] ([Intel XE#3768]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_async_flips@invalid-async-flip-atomic.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-436/igt at kms_async_flips@invalid-async-flip-atomic.html - shard-bmg: [SKIP][309] ([Intel XE#3007]) -> [SKIP][310] ([Intel XE#3768]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][311] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][312] ([Intel XE#1124]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][313] ([Intel XE#2136]) -> [SKIP][314] ([Intel XE#1124]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: [SKIP][315] ([Intel XE#1124]) -> [SKIP][316] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][317] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][318] ([Intel XE#607]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: [SKIP][319] ([Intel XE#2136]) -> [SKIP][320] ([Intel XE#607]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-463/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][321] ([Intel XE#1124]) -> [SKIP][322] ([Intel XE#2136]) +2 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs: - shard-bmg: [SKIP][323] ([Intel XE#2887]) -> [SKIP][324] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][325] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][326] ([Intel XE#455] / [Intel XE#787]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-432/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][327] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][328] ([Intel XE#2887]) +2 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][329] ([Intel XE#2136]) -> [SKIP][330] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-433/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][331] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][332] ([Intel XE#2136]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][333] ([Intel XE#2724]) -> [SKIP][334] ([Intel XE#2136] / [Intel XE#2231]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_cdclk@mode-transition-all-outputs.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_cdclk@mode-transition-all-outputs.html - shard-dg2-set2: [SKIP][335] ([Intel XE#314]) -> [SKIP][336] ([Intel XE#2136] / [Intel XE#2351]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_cdclk@mode-transition-all-outputs.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: [SKIP][337] ([Intel XE#3007]) -> [SKIP][338] ([Intel XE#2252]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html - shard-dg2-set2: [SKIP][339] ([Intel XE#2423] / [i915#2575]) -> [SKIP][340] ([Intel XE#373]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt at kms_chamelium_hpd@vga-hpd-fast: - shard-bmg: [SKIP][341] ([Intel XE#2252]) -> [SKIP][342] ([Intel XE#3007]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_chamelium_hpd@vga-hpd-fast.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_chamelium_hpd@vga-hpd-fast.html - shard-dg2-set2: [SKIP][343] ([Intel XE#373]) -> [SKIP][344] ([Intel XE#2423] / [i915#2575]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_chamelium_hpd@vga-hpd-fast.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_chamelium_hpd@vga-hpd-fast.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][345] ([Intel XE#3007]) -> [SKIP][346] ([Intel XE#2341]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_content_protection@mei-interface.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at kms_content_protection@mei-interface.html * igt at kms_cursor_crc@cursor-random-64x21: - shard-bmg: [SKIP][347] ([Intel XE#2320]) -> [SKIP][348] ([Intel XE#3007]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_cursor_crc@cursor-random-64x21.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_cursor_crc@cursor-random-64x21.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][349] ([Intel XE#3007]) -> [SKIP][350] ([Intel XE#2320]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg2-set2: [SKIP][351] ([Intel XE#2423] / [i915#2575]) -> [SKIP][352] ([Intel XE#455]) +2 other tests skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [SKIP][353] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][354] ([Intel XE#1695]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][355] ([Intel XE#3007]) -> [SKIP][356] ([Intel XE#2372]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_feature_discovery@chamelium.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: [SKIP][357] ([Intel XE#2423] / [i915#2575]) -> [SKIP][358] ([Intel XE#701]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_feature_discovery@chamelium.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-433/igt at kms_feature_discovery@chamelium.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-bmg: [SKIP][359] ([Intel XE#2316]) -> [SKIP][360] ([Intel XE#3007]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-dpms-vs-vblank-race.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][361] ([Intel XE#2049] / [Intel XE#2597]) -> [ABORT][362] ([Intel XE#2625]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs-suspend.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-432/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][363] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][364] ([Intel XE#2293] / [Intel XE#2380]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][365] ([Intel XE#2136]) -> [SKIP][366] ([Intel XE#455]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][367] ([Intel XE#2311]) -> [SKIP][368] ([Intel XE#2312]) +9 other tests skip [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][369] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][370] ([Intel XE#2312]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-bmg: [SKIP][371] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][372] ([Intel XE#2311]) +2 other tests skip [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [FAIL][373] ([Intel XE#2333]) -> [SKIP][374] ([Intel XE#2312]) +3 other tests skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][375] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][376] ([Intel XE#2333]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][377] ([Intel XE#2312]) -> [FAIL][378] ([Intel XE#2333]) +1 other test fail [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [INCOMPLETE][379] ([Intel XE#2050]) -> [FAIL][380] ([Intel XE#2333]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [FAIL][381] ([Intel XE#2333]) -> [SKIP][382] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render: - shard-bmg: [SKIP][383] ([Intel XE#2311]) -> [SKIP][384] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render.html - shard-dg2-set2: [SKIP][385] ([Intel XE#651]) -> [SKIP][386] ([Intel XE#2136]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][387] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][388] ([Intel XE#651]) +2 other tests skip [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][389] ([Intel XE#2136]) -> [SKIP][390] ([Intel XE#651]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][391] ([Intel XE#2312]) -> [SKIP][392] ([Intel XE#2311]) +3 other tests skip [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][393] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][394] ([Intel XE#653]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][395] ([Intel XE#2136]) -> [SKIP][396] ([Intel XE#653]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][397] ([Intel XE#2312]) -> [SKIP][398] ([Intel XE#2313]) +3 other tests skip [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][399] ([Intel XE#2313]) -> [SKIP][400] ([Intel XE#2312]) +9 other tests skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-bmg: [SKIP][401] ([Intel XE#2313]) -> [SKIP][402] ([Intel XE#2136] / [Intel XE#2231]) +6 other tests skip [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2-set2: [SKIP][403] ([Intel XE#653]) -> [SKIP][404] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][405] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][406] ([Intel XE#2313]) +3 other tests skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][407] ([Intel XE#653]) -> [SKIP][408] ([Intel XE#2136]) +3 other tests skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][409] ([Intel XE#870]) -> [SKIP][410] ([Intel XE#2136] / [Intel XE#2231]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_pm_backlight@fade-with-dpms.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_pm_backlight@fade-with-dpms.html - shard-dg2-set2: [SKIP][411] ([Intel XE#870]) -> [SKIP][412] ([Intel XE#2136]) [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_pm_backlight@fade-with-dpms.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][413] ([Intel XE#1489]) -> [SKIP][414] ([Intel XE#2136] / [Intel XE#2231]) [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html - shard-dg2-set2: [SKIP][415] ([Intel XE#1489]) -> [SKIP][416] ([Intel XE#2136]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][417] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][418] ([Intel XE#2387]) [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2-set2: [SKIP][419] ([Intel XE#2136]) -> [SKIP][420] ([Intel XE#1122]) [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-p010: - shard-bmg: [SKIP][421] ([Intel XE#2387]) -> [SKIP][422] ([Intel XE#2136] / [Intel XE#2231]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_psr2_su@page_flip-p010.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_psr2_su@page_flip-p010.html - shard-dg2-set2: [SKIP][423] ([Intel XE#1122]) -> [SKIP][424] ([Intel XE#2136]) [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_psr2_su@page_flip-p010.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-primary-render: - shard-bmg: [SKIP][425] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][426] ([Intel XE#2136] / [Intel XE#2231]) [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_psr@fbc-pr-primary-render.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_psr@fbc-pr-primary-render.html - shard-dg2-set2: [SKIP][427] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][428] ([Intel XE#2136] / [Intel XE#2351]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr@fbc-pr-primary-render.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_psr@fbc-pr-primary-render.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][429] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][430] ([Intel XE#2234] / [Intel XE#2850]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr@fbc-pr-sprite-blt.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-1/igt at kms_psr@fbc-pr-sprite-blt.html - shard-dg2-set2: [SKIP][431] ([Intel XE#2136]) -> [SKIP][432] ([Intel XE#2850] / [Intel XE#929]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr@fbc-pr-sprite-blt.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][433] ([Intel XE#3414]) -> [SKIP][434] ([Intel XE#2423] / [i915#2575]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-bmg: [SKIP][435] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][436] ([Intel XE#3007]) [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][437] ([Intel XE#3007]) -> [SKIP][438] ([Intel XE#3414] / [Intel XE#3904]) [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg2-set2: [SKIP][439] ([Intel XE#2423] / [i915#2575]) -> [SKIP][440] ([Intel XE#3414]) [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-436/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][441] ([Intel XE#2504]) -> [SKIP][442] ([Intel XE#1130]) [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_create@multigpu-create-massive-size.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at xe_create@multigpu-create-massive-size.html - shard-dg2-set2: [SKIP][443] ([Intel XE#944]) -> [SKIP][444] ([Intel XE#1130]) [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_create@multigpu-create-massive-size.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at xe_create@multigpu-create-massive-size.html * igt at xe_eudebug@basic-vm-bind-extended-discovery: - shard-dg2-set2: [SKIP][445] ([Intel XE#1130]) -> [SKIP][446] ([Intel XE#2905]) +1 other test skip [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at xe_eudebug@basic-vm-bind-extended-discovery.html - shard-bmg: [SKIP][447] ([Intel XE#1130]) -> [SKIP][448] ([Intel XE#2905]) +1 other test skip [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at xe_eudebug@basic-vm-bind-extended-discovery.html * igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-sram: - shard-bmg: [SKIP][449] ([Intel XE#2905]) -> [SKIP][450] ([Intel XE#1130]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html - shard-dg2-set2: [SKIP][451] ([Intel XE#2905]) -> [SKIP][452] ([Intel XE#1130]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][453] ([Intel XE#1473]) -> [INCOMPLETE][454] ([Intel XE#1473]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_evict@evict-beng-mixed-threads-large.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][455] ([Intel XE#1000]) -> [INCOMPLETE][456] ([Intel XE#1473]) +1 other test incomplete [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_evict@evict-beng-threads-large.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [FAIL][457] ([Intel XE#1000]) -> [TIMEOUT][458] ([Intel XE#1473] / [Intel XE#2472]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_evict@evict-mixed-many-threads-small.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr: - shard-bmg: [SKIP][459] ([Intel XE#2322]) -> [SKIP][460] ([Intel XE#1130]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][461] ([Intel XE#1130]) -> [SKIP][462] ([Intel XE#2322]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@many-execqueues-bindexecqueue-prefetch: - shard-dg2-set2: [SKIP][463] ([Intel XE#288]) -> [SKIP][464] ([Intel XE#1130]) +3 other tests skip [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_exec_fault_mode@many-execqueues-bindexecqueue-prefetch.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at xe_exec_fault_mode@many-execqueues-bindexecqueue-prefetch.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][465] ([Intel XE#1130]) -> [SKIP][466] ([Intel XE#288]) +1 other test skip [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-463/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html * igt at xe_peer2peer@read: - shard-bmg: [SKIP][467] ([Intel XE#2557]) -> [SKIP][468] ([Intel XE#2427]) [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_peer2peer@read.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-2/igt at xe_peer2peer@read.html - shard-dg2-set2: [SKIP][469] ([Intel XE#1061]) -> [FAIL][470] ([Intel XE#1173]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_peer2peer@read.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-435/igt at xe_peer2peer@read.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][471] ([Intel XE#1130]) -> [SKIP][472] ([Intel XE#944]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_query@multigpu-query-uc-fw-version-huc.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-bmg-8/igt at xe_query@multigpu-query-uc-fw-version-huc.html - shard-dg2-set2: [SKIP][473] ([Intel XE#1130]) -> [SKIP][474] ([Intel XE#944]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-huc.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/shard-dg2-464/igt at xe_query@multigpu-query-uc-fw-version-huc.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1174 [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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [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#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#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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#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#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#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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [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#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#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [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#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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [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#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#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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3803]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3803 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908 [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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [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 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8182 -> IGTPW_12409 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12409: 12409 IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12409/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 07:57:33 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 07:57:33 -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/8=5D_lib/xe/xe=5Fgt=3A_Fix_header_guards_and_boilerp?= =?utf-8?q?late_=28rev2=29?= In-Reply-To: <20250107202615.1306306-1-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> Message-ID: <173658225324.2248859.11391605669627890298@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v2,1/8] lib/xe/xe_gt: Fix header guards and boilerplate (rev2) URL : https://patchwork.freedesktop.org/series/143204/ State : failure == Summary == CI Bug Log - changes from XEIGT_8182_full -> XEIGTPW_12410_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12410_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12410_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_12410_full: ### IGT changes ### #### Possible regressions #### * igt at kms_psr@psr2-dpms: - shard-lnl: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-2/igt at kms_psr@psr2-dpms.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-7/igt at kms_psr@psr2-dpms.html #### Warnings #### * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [TIMEOUT][3] ([Intel XE#1473] / [Intel XE#2472]) -> [DMESG-FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_evict@evict-mixed-threads-large.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at xe_evict@evict-mixed-threads-large.html Known issues ------------ Here are the changes found in XEIGTPW_12410_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotunbind-rebind: - shard-bmg: [PASS][5] -> [SKIP][6] ([Intel XE#1885]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at core_hotunplug@hotunbind-rebind.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at core_hotunplug@hotunbind-rebind.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [PASS][7] -> [FAIL][8] ([Intel XE#911]) +3 other tests fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-4/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#873]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-5/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2327]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-2/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: [PASS][12] -> [SKIP][13] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1467]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-5/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +6 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-463/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-5/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +7 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-2/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2314] / [Intel XE#2894]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#2191]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-463/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#367]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-433/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#367]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2887]) +5 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-7/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#455] / [Intel XE#787]) +28 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-436/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-basic-y-tiled-ccs at pipe-d-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +160 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-432/igt at kms_ccs@crc-primary-basic-y-tiled-ccs at pipe-d-hdmi-a-2.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#3432]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#3432]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-3/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +5 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2907]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#306]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-1/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#306]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2252]) +8 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#373]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-5/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#373]) +5 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][35] ([Intel XE#1178]) +1 other test fail [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-2/igt at kms_content_protection@atomic.html - shard-dg2-set2: NOTRUN -> [FAIL][36] ([Intel XE#1178]) +1 other test fail [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-464/igt at kms_content_protection@atomic.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#3278]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-3/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2321]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1424]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-2/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#308]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-463/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#2291]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#323]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-436/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2286]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-2/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursor-vs-flip-toggle: - shard-bmg: NOTRUN -> [INCOMPLETE][45] ([Intel XE#3226]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_cursor_legacy@cursor-vs-flip-toggle.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#309]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-8/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-bmg: [PASS][47] -> [INCOMPLETE][48] ([Intel XE#3226]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][49] ([Intel XE#877]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#2244]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-2/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#455]) +10 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-463/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2374]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#1135]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-433/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][54] -> [FAIL][55] ([Intel XE#3321]) +1 other test fail [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/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][56] -> [FAIL][57] ([Intel XE#301]) +6 other tests fail [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#2316]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-bmg: NOTRUN -> [INCOMPLETE][60] ([Intel XE#2597]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at d-dp4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][61] ([Intel XE#2049]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-464/igt at kms_flip@flip-vs-suspend at d-dp4.html * igt at kms_flip@flip-vs-suspend at d-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][62] ([Intel XE#2597] / [Intel XE#2635]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_flip@flip-vs-suspend at d-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-8/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1397]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-8/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2293]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#651]) +6 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-4/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2311]) +18 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][68] ([Intel XE#2333]) +8 other tests fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/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-lnl: NOTRUN -> [SKIP][69] ([Intel XE#656]) +10 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-3/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#651]) +9 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#653]) +8 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2312]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#658]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2313]) +13 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#3374] / [Intel XE#3544]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_hdr@brightness-with-hdr.html * igt at kms_histogram@algo-basic: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#3897]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#3897]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-5/igt at kms_histogram@algo-color.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2934]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#356]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-4/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2486]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-2/igt at kms_panel_fitting@legacy.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [PASS][81] -> [SKIP][82] ([Intel XE#3007]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_plane@plane-panning-bottom-right-suspend.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][83] ([Intel XE#616]) +2 other tests fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-463/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#599]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-5/igt at kms_plane_lowres@tiling-x at pipe-b-edp-1.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#3307]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-2/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#2763]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/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-modifiers at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#2763]) +11 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-8/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2763]) +14 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2392]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#1439] / [Intel XE#836]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1439] / [Intel XE#3141]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-4/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#2893]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-8/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#1489]) +5 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-8/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#1489]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-464/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1128]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-7/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1406]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-2/igt at kms_psr@pr-primary-blt.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr2-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-436/igt at kms_psr@psr2-dpms.html * igt at kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2234]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_psr@psr2-primary-render.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2330]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_sequence@queue-idle: - shard-bmg: [PASS][102] -> [DMESG-WARN][103] ([Intel XE#877]) +4 other tests dmesg-warn [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_sequence@queue-idle.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-2/igt at kms_sequence@queue-idle.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#1435]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#1500]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [PASS][106] -> [FAIL][107] ([Intel XE#899]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vblank@ts-continuation-modeset-hang: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#3007]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_vblank@ts-continuation-modeset-hang.html * igt at kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#1499]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1499]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-7/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#1091] / [Intel XE#2849]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-436/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#1280] / [Intel XE#455]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-433/igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#3889]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#3889]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-5/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#2905]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-3/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2905]) +5 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: NOTRUN -> [TIMEOUT][117] ([Intel XE#1473]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-mixed-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#688]) +4 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-4/igt at xe_evict@evict-beng-mixed-threads-large-multi-vm.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][119] -> [TIMEOUT][120] ([Intel XE#1473]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind: - shard-dg2-set2: [PASS][121] -> [SKIP][122] ([Intel XE#1392]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2322]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1392]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-2/igt at xe_exec_basic@multigpu-once-userptr.html * igt at xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate: - shard-bmg: [PASS][125] -> [SKIP][126] ([Intel XE#1130]) +16 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#288]) +11 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-436/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2905]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-433/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_exec_threads@threads-hang-userptr-invalidate: - shard-dg2-set2: [PASS][129] -> [DMESG-WARN][130] ([Intel XE#3876]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_exec_threads@threads-hang-userptr-invalidate.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-433/igt at xe_exec_threads@threads-hang-userptr-invalidate.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2229]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1192]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-6/igt at xe_live_ktest@xe_mocs.html * igt at xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2457]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-8/igt at xe_module_load@force-load.html * igt at xe_module_load@load: - shard-bmg: ([PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157]) -> ([PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [SKIP][181], [PASS][182], [PASS][183]) ([Intel XE#2457]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at xe_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-2/igt at xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-2/igt at xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-2/igt at xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-2/igt at xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-8/igt at xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-8/igt at xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-8/igt at xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-8/igt at xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at xe_module_load@load.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#2248]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#1420]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at xe_pat@pat-index-xehpc.html - shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#2838] / [Intel XE#979]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-463/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#2284]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-2/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3hot-basic-exec: - shard-dg2-set2: NOTRUN -> [ABORT][188] ([Intel XE#1358]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-432/igt at xe_pm@s2idle-d3hot-basic-exec.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [PASS][189] -> [ABORT][190] ([Intel XE#1358] / [Intel XE#1794]) +2 other tests abort [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_pm@s2idle-vm-bind-unbind-all.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#944]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-433/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#944]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-7/igt at xe_query@multigpu-query-topology-l3-bank-mask.html #### Possible fixes #### * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][193] ([Intel XE#827]) -> [PASS][194] +1 other test pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg2-set2: [SKIP][195] ([Intel XE#2136]) -> [PASS][196] +2 other tests pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][197] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][199] ([Intel XE#3862]) -> [PASS][200] +1 other test pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][201] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-464/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: [INCOMPLETE][203] ([Intel XE#3124]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-464/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-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][205] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][207] ([Intel XE#2291]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-2/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipa-legacy: - shard-bmg: [INCOMPLETE][209] ([Intel XE#3226]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html * igt at kms_cursor_legacy@torture-bo at pipe-a: - shard-lnl: [DMESG-WARN][211] ([Intel XE#877]) -> [PASS][212] +1 other test pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_cursor_legacy@torture-bo at pipe-a.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-1/igt at kms_cursor_legacy@torture-bo at pipe-a.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][213] ([Intel XE#1340]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-bmg: [SKIP][215] ([Intel XE#2316]) -> [PASS][216] +1 other test pass [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-dpms-vs-vblank-race.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][217] ([Intel XE#3288] / [Intel XE#3321]) -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html * igt at kms_flip@absolute-wf_vblank: - shard-lnl: [INCOMPLETE][219] ([Intel XE#2049]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-7/igt at kms_flip@absolute-wf_vblank.html * igt at kms_flip@absolute-wf_vblank at b-edp1: - shard-lnl: [INCOMPLETE][221] -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank at b-edp1.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-7/igt at kms_flip@absolute-wf_vblank at b-edp1.html * igt at kms_flip@basic-flip-vs-wf_vblank: - shard-dg2-set2: [FAIL][223] ([Intel XE#3098]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@basic-flip-vs-wf_vblank.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-433/igt at kms_flip@basic-flip-vs-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2-set2: [INCOMPLETE][225] ([Intel XE#3937]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4: - shard-dg2-set2: [INCOMPLETE][227] -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: [FAIL][229] ([Intel XE#3321]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6: - shard-dg2-set2: [FAIL][231] ([Intel XE#301]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6.html * igt at kms_flip@flip-vs-rmfb at d-hdmi-a3: - shard-bmg: [INCOMPLETE][233] -> [PASS][234] +3 other tests pass [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][235] ([Intel XE#2597]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3: - shard-bmg: [INCOMPLETE][237] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend at c-dp4: - shard-dg2-set2: [INCOMPLETE][239] ([Intel XE#2049]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs-suspend at c-dp4.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-464/igt at kms_flip@flip-vs-suspend at c-dp4.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-bmg: [SKIP][241] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][242] +2 other tests pass [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][243] ([Intel XE#3012]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_joiner@basic-force-big-joiner.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_lease@possible-crtcs-filtering: - shard-bmg: [SKIP][245] ([Intel XE#3007]) -> [PASS][246] +8 other tests pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_lease@possible-crtcs-filtering.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-2/igt at kms_lease@possible-crtcs-filtering.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][247] ([Intel XE#718]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-lnl-8/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-bmg: [SKIP][249] ([Intel XE#2446]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg2-set2: [SKIP][251] ([Intel XE#2446]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-432/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [ABORT][253] ([Intel XE#2625]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_pm_rpm@system-suspend-modeset.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-436/igt at kms_pm_rpm@system-suspend-modeset.html - shard-bmg: [DMESG-WARN][255] -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@system-suspend-modeset.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_rmfb@close-fd: - shard-dg2-set2: [SKIP][257] ([Intel XE#2423] / [i915#2575]) -> [PASS][258] +7 other tests pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_rmfb@close-fd.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-464/igt at kms_rmfb@close-fd.html * igt at xe_exec_basic@many-execqueues-userptr-invalidate-race: - shard-bmg: [SKIP][259] ([Intel XE#1130]) -> [PASS][260] +16 other tests pass [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-8/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-dg2-set2: [SKIP][261] ([Intel XE#1392]) -> [PASS][262] +3 other tests pass [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: [SKIP][263] ([Intel XE#1192]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_live_ktest@xe_dma_buf.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_vm@large-userptr-split-misaligned-binds-268435456: - shard-dg2-set2: [SKIP][265] ([Intel XE#1130]) -> [PASS][266] +10 other tests pass [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_vm@large-userptr-split-misaligned-binds-268435456.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-464/igt at xe_vm@large-userptr-split-misaligned-binds-268435456.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][267] ([Intel XE#2423] / [i915#2575]) -> [SKIP][268] ([Intel XE#3768]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_async_flips@invalid-async-flip-atomic.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-464/igt at kms_async_flips@invalid-async-flip-atomic.html - shard-bmg: [SKIP][269] ([Intel XE#3007]) -> [SKIP][270] ([Intel XE#3768]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][271] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][272] ([Intel XE#1124]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][273] ([Intel XE#2136]) -> [SKIP][274] ([Intel XE#1124]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][275] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][276] ([Intel XE#607]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-8/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: [SKIP][277] ([Intel XE#2136]) -> [SKIP][278] ([Intel XE#607]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-433/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-bmg: [SKIP][279] ([Intel XE#2887]) -> [SKIP][280] ([Intel XE#2136] / [Intel XE#2231]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc: - shard-dg2-set2: [SKIP][281] ([Intel XE#2136]) -> [SKIP][282] ([Intel XE#455] / [Intel XE#787]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-436/igt at kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][283] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][284] ([Intel XE#455] / [Intel XE#787]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: [SKIP][285] ([Intel XE#3432]) -> [SKIP][286] ([Intel XE#2136] / [Intel XE#2231]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][287] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][288] ([Intel XE#2887]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: [SKIP][289] ([Intel XE#3007]) -> [SKIP][290] ([Intel XE#2252]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html - shard-dg2-set2: [SKIP][291] ([Intel XE#2423] / [i915#2575]) -> [SKIP][292] ([Intel XE#373]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-436/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-bmg: [SKIP][293] ([Intel XE#2252]) -> [SKIP][294] ([Intel XE#3007]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt at kms_content_protection@atomic-dpms: - shard-bmg: [FAIL][295] ([Intel XE#1178]) -> [SKIP][296] ([Intel XE#2341]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_content_protection@atomic-dpms.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][297] ([Intel XE#3007]) -> [SKIP][298] ([Intel XE#2341]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_content_protection@mei-interface.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_content_protection@mei-interface.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][299] ([Intel XE#3007]) -> [SKIP][300] ([Intel XE#2320]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg2-set2: [SKIP][301] ([Intel XE#2423] / [i915#2575]) -> [SKIP][302] ([Intel XE#455]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-433/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [SKIP][303] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][304] ([Intel XE#1695]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][305] ([Intel XE#3007]) -> [SKIP][306] ([Intel XE#2372]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_feature_discovery@chamelium.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-2/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: [SKIP][307] ([Intel XE#2423] / [i915#2575]) -> [SKIP][308] ([Intel XE#701]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_feature_discovery@chamelium.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-464/igt at kms_feature_discovery@chamelium.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][309] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][310] ([Intel XE#2293] / [Intel XE#2380]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][311] ([Intel XE#2136]) -> [SKIP][312] ([Intel XE#455]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-432/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][313] ([Intel XE#2311]) -> [SKIP][314] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][315] ([Intel XE#2311]) -> [SKIP][316] ([Intel XE#2312]) +5 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-bmg: [SKIP][317] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][318] ([Intel XE#2311]) +3 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][319] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][320] ([Intel XE#2333]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [FAIL][321] ([Intel XE#2333]) -> [SKIP][322] ([Intel XE#2312]) +2 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][323] ([Intel XE#2312]) -> [FAIL][324] ([Intel XE#2333]) +3 other tests fail [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [INCOMPLETE][325] ([Intel XE#2050]) -> [FAIL][326] ([Intel XE#2333]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [FAIL][327] ([Intel XE#2333]) -> [SKIP][328] ([Intel XE#2136] / [Intel XE#2231]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][329] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][330] ([Intel XE#651]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][331] ([Intel XE#2136]) -> [SKIP][332] ([Intel XE#651]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][333] ([Intel XE#2312]) -> [SKIP][334] ([Intel XE#2311]) +5 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][335] ([Intel XE#2136]) -> [SKIP][336] ([Intel XE#653]) +2 other tests skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][337] ([Intel XE#2312]) -> [SKIP][338] ([Intel XE#2313]) +3 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][339] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][340] ([Intel XE#2313]) +4 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html - shard-dg2-set2: [SKIP][341] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][342] ([Intel XE#653]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][343] ([Intel XE#2313]) -> [SKIP][344] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][345] ([Intel XE#2313]) -> [SKIP][346] ([Intel XE#2312]) +2 other tests skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-bmg: [SKIP][347] ([Intel XE#1489]) -> [SKIP][348] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][349] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][350] ([Intel XE#2387]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-2/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2-set2: [SKIP][351] ([Intel XE#2136]) -> [SKIP][352] ([Intel XE#1122]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][353] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][354] ([Intel XE#2234] / [Intel XE#2850]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr@fbc-pr-sprite-blt.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-8/igt at kms_psr@fbc-pr-sprite-blt.html - shard-dg2-set2: [SKIP][355] ([Intel XE#2136]) -> [SKIP][356] ([Intel XE#2850] / [Intel XE#929]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr@fbc-pr-sprite-blt.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_psr@pr-basic: - shard-bmg: [SKIP][357] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][358] ([Intel XE#2136] / [Intel XE#2231]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_psr@pr-basic.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_psr@pr-basic.html * igt at kms_rotation_crc@primary-rotation-270: - shard-bmg: [SKIP][359] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][360] ([Intel XE#3007]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at kms_rotation_crc@primary-rotation-270.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at kms_rotation_crc@primary-rotation-270.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][361] ([Intel XE#1130]) -> [SKIP][362] ([Intel XE#1280] / [Intel XE#455]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_compute_preempt@compute-threadgroup-preempt.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-433/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_eudebug@basic-vm-bind-extended-discovery: - shard-bmg: [SKIP][363] ([Intel XE#1130]) -> [SKIP][364] ([Intel XE#2905]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended-discovery.html * igt at xe_eudebug@basic-vm-bind-vm-destroy: - shard-bmg: [SKIP][365] ([Intel XE#2905]) -> [SKIP][366] ([Intel XE#1130]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-vm-destroy.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at xe_eudebug@basic-vm-bind-vm-destroy.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][367] ([Intel XE#1000]) -> [TIMEOUT][368] ([Intel XE#1473]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_evict@evict-beng-threads-large.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-8/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-bmg: [INCOMPLETE][369] ([Intel XE#1473]) -> [TIMEOUT][370] ([Intel XE#1473]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_evict@evict-mixed-many-threads-large.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-8/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [FAIL][371] ([Intel XE#1000]) -> [TIMEOUT][372] ([Intel XE#1473] / [Intel XE#2472]) +1 other test timeout [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_evict@evict-mixed-many-threads-small.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-1/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-rebind: - shard-bmg: [SKIP][373] ([Intel XE#2322]) -> [SKIP][374] ([Intel XE#1130]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][375] ([Intel XE#1130]) -> [SKIP][376] ([Intel XE#2322]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][377] ([Intel XE#1130]) -> [SKIP][378] ([Intel XE#288]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][379] ([Intel XE#1130]) -> [SKIP][380] ([Intel XE#2360]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-433/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt at xe_exec_sip_eudebug@breakpoint-writesip-twice: - shard-dg2-set2: [SKIP][381] ([Intel XE#1130]) -> [SKIP][382] ([Intel XE#2905]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_sip_eudebug@breakpoint-writesip-twice.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-463/igt at xe_exec_sip_eudebug@breakpoint-writesip-twice.html * igt at xe_query@multigpu-query-invalid-query: - shard-bmg: [SKIP][383] ([Intel XE#944]) -> [SKIP][384] ([Intel XE#1130]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_query@multigpu-query-invalid-query.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at xe_query@multigpu-query-invalid-query.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][385] ([Intel XE#1130]) -> [SKIP][386] ([Intel XE#944]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_query@multigpu-query-uc-fw-version-huc.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-bmg-4/igt at xe_query@multigpu-query-uc-fw-version-huc.html - shard-dg2-set2: [SKIP][387] ([Intel XE#1130]) -> [SKIP][388] ([Intel XE#944]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-huc.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/shard-dg2-436/igt at xe_query@multigpu-query-uc-fw-version-huc.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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [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#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#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [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#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [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#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [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#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [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#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#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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [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#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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [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#3897]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3897 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3937 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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#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_8182 -> IGTPW_12410 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12410: a5cf41c94f7e4a65cd84e9b9d18f62d93d97e36c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12410/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 08:45:19 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 08:45:19 -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/2=5D_tests/intel/kms=5Ffrontbuffer=5Ftracking=3A_Add?= =?utf-8?q?_skip_condition_for_bmg_platform?= In-Reply-To: <20250109055317.404538-1-mohammed.thasleem@intel.com> References: <20250109055317.404538-1-mohammed.thasleem@intel.com> Message-ID: <173658511904.2277670.15978765536827146878@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v2,1/2] tests/intel/kms_frontbuffer_tracking: Add skip condition for bmg platform URL : https://patchwork.freedesktop.org/series/143303/ State : failure == Summary == CI Bug Log - changes from XEIGT_8182_full -> XEIGTPW_12411_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12411_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12411_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_12411_full: ### IGT changes ### #### Possible regressions #### * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][1] +6 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_pipe_crc_basic@disable-crc-after-crtc: - shard-bmg: [PASS][2] -> [SKIP][3] +13 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_pipe_crc_basic@disable-crc-after-crtc.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_pipe_crc_basic@disable-crc-after-crtc.html #### Warnings #### * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: [SKIP][4] ([Intel XE#367]) -> [SKIP][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_chamelium_color@gamma: - shard-bmg: [SKIP][6] ([Intel XE#2325]) -> [SKIP][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_chamelium_color@gamma.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_chamelium_color@gamma.html * igt at kms_chamelium_hpd@dp-hpd-storm-disable: - shard-bmg: [SKIP][8] ([Intel XE#2252]) -> [SKIP][9] +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: [SKIP][10] ([Intel XE#2320]) -> [SKIP][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_cursor_crc@cursor-offscreen-32x32.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][12] ([Intel XE#2321]) -> [SKIP][13] +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x512.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][14] ([Intel XE#2882]) -> [INCOMPLETE][15] [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][16] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][17] +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][18] ([Intel XE#2312]) -> [SKIP][19] +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][20] ([Intel XE#2333]) -> [SKIP][21] +62 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-bmg: [SKIP][22] ([Intel XE#2763]) -> [SKIP][23] [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt at kms_rotation_crc@bad-tiling: - shard-bmg: [SKIP][24] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][25] [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_rotation_crc@bad-tiling.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_rotation_crc@bad-tiling.html * igt at kms_scaling_modes@scaling-mode-none: - shard-bmg: [SKIP][26] ([Intel XE#2413]) -> [SKIP][27] [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_scaling_modes@scaling-mode-none.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_vrr@cmrr: - shard-bmg: [SKIP][28] ([Intel XE#2168]) -> [SKIP][29] [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_vrr@cmrr.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_vrr@cmrr.html Known issues ------------ Here are the changes found in XEIGTPW_12411_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getstats: - shard-dg2-set2: [PASS][30] -> [SKIP][31] ([Intel XE#2423]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at core_getstats.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at core_getstats.html * igt at kms_async_flips@alternate-sync-async-flip at pipe-d-dp-2: - shard-bmg: [PASS][32] -> [FAIL][33] ([Intel XE#827]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip at pipe-d-dp-2.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip at pipe-d-dp-2.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#873]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#316]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1407]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-6/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2327]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#2136]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1467]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-6/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1124]) +7 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1124]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-3/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#1124]) +8 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2314] / [Intel XE#2894]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#2191]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#367]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-432/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#367]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#455] / [Intel XE#787]) +24 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][49] -> [INCOMPLETE][50] ([Intel XE#3862]) +1 other test incomplete [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#3432]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#3432]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-1/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#787]) +139 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#2887]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-6/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][55] -> [INCOMPLETE][56] ([Intel XE#1727]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-432/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-d-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][57] ([Intel XE#1727]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-432/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-d-hdmi-a-2.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2887]) +5 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html - shard-dg2-set2: [PASS][59] -> [INCOMPLETE][60] ([Intel XE#1727] / [Intel XE#3124]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/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-4: - shard-dg2-set2: [PASS][61] -> [INCOMPLETE][62] ([Intel XE#3124]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-dp-4.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][63] -> [DMESG-WARN][64] ([Intel XE#1727] / [Intel XE#3113]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-6.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][65] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#2907]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#306]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-1/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#306]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2252]) +7 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#3007]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#2423] / [i915#2575]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#373]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-2/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#373]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2341]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_content_protection@atomic.html - shard-dg2-set2: NOTRUN -> [FAIL][75] ([Intel XE#1178]) +1 other test fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at kms_content_protection@atomic.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#3278]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-5/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2321]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1424]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-4/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#323]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2286]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#309]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-6/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [PASS][82] -> [INCOMPLETE][83] ([Intel XE#3226]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][84] ([Intel XE#877]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][85] -> [SKIP][86] ([Intel XE#2291]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][87] -> [FAIL][88] ([Intel XE#1475]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-3/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][89] -> [SKIP][90] ([Intel XE#2425]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_display_modes@extended-mode-basic.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([i915#3804]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-435/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6.html * igt at kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#2244]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-1/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#455]) +11 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@display-2x: - shard-bmg: [PASS][94] -> [SKIP][95] ([Intel XE#2373]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_feature_discovery@display-2x.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2374]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1421]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-2/igt at kms_flip@2x-blocking-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][98] -> [FAIL][99] ([Intel XE#3321]) +1 other test fail [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/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 ad-dp2-hdmi-a3: - shard-bmg: [PASS][100] -> [FAIL][101] ([Intel XE#3288] / [Intel XE#3321]) +1 other test fail [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/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-dp4: - shard-dg2-set2: [PASS][102] -> [FAIL][103] ([Intel XE#301]) +3 other tests fail [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/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 ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][104] ([Intel XE#301]) +4 other tests fail [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-rmfb: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2316]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_flip@2x-flip-vs-rmfb.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][106] -> [SKIP][107] ([Intel XE#2316]) +6 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb-recreate.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a3: - shard-bmg: [PASS][108] -> [FAIL][109] ([Intel XE#3321]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a3.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a3.html * igt at kms_flip@wf_vblank-ts-check: - shard-bmg: [PASS][110] -> [FAIL][111] ([Intel XE#2882]) +2 other tests fail [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@wf_vblank-ts-check.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at kms_flip@wf_vblank-ts-check.html * igt at kms_flip_event_leak@basic: - shard-bmg: [PASS][112] -> [DMESG-WARN][113] ([Intel XE#877]) +4 other tests dmesg-warn [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_flip_event_leak@basic.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at kms_flip_event_leak@basic.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1397]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-8/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-2/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling: - shard-bmg: [PASS][116] -> [SKIP][117] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html - shard-dg2-set2: [PASS][118] -> [SKIP][119] ([Intel XE#2136] / [Intel XE#2351]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2293]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#651]) +5 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-7/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2312]) +4 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2311]) +19 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-dg2-set2: [PASS][124] -> [SKIP][125] ([Intel XE#2136]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#656]) +9 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#651]) +7 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#653]) +9 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#658]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2313]) +12 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2136]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#3544]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_hdr@brightness-with-hdr.html * igt at kms_histogram@algo-basic: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#3897]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#3897]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-1/igt at kms_histogram@algo-color.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#346]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#346]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2934]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2925]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-435/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_lease@lease-invalid-crtc: - shard-dg2-set2: [PASS][139] -> [SKIP][140] ([Intel XE#2423] / [i915#2575]) +16 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_lease@lease-invalid-crtc.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_lease@lease-invalid-crtc.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#356]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-4/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2486]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at kms_panel_fitting@legacy.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][143] ([Intel XE#616]) +2 other tests fail [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#599]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-8/igt at kms_plane_lowres@tiling-x at pipe-b-edp-1.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#3307]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-7/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2763]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/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-modifiers at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#2763]) +11 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-8/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2763]) +9 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2392]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_pm_dc@dc5-psr.html - shard-lnl: [PASS][151] -> [FAIL][152] ([Intel XE#718]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_pm_dc@dc5-psr.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: NOTRUN -> [FAIL][153] ([Intel XE#1430]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@basic-rte: - shard-bmg: [PASS][154] -> [SKIP][155] ([Intel XE#2446]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at kms_pm_rpm@basic-rte.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_pm_rpm@basic-rte.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#1439] / [Intel XE#836]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@drm-resources-equal: - shard-dg2-set2: [PASS][157] -> [SKIP][158] ([Intel XE#2446]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_pm_rpm@drm-resources-equal.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_pm_rpm@drm-resources-equal.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1439] / [Intel XE#3141]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-4/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#1489]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-8/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#1489]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#1128]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-5/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#2136]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html * igt at kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#1406]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-7/igt at kms_psr@pr-primary-blt.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr2-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at kms_psr@psr2-dpms.html * igt at kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2234]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at kms_psr@psr2-primary-render.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#3414] / [Intel XE#3904]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_sequence@get-idle: - shard-bmg: [PASS][170] -> [SKIP][171] ([Intel XE#3007]) +15 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_sequence@get-idle.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_sequence@get-idle.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#1435]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_setmode@clone-exclusive-crtc: - shard-bmg: [PASS][173] -> [SKIP][174] ([Intel XE#1435]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_setmode@clone-exclusive-crtc.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#1500]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [PASS][176] -> [FAIL][177] ([Intel XE#899]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-3/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#1499]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@negative-basic: - shard-bmg: [PASS][179] -> [SKIP][180] ([Intel XE#1499]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_vrr@negative-basic.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#1499]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-4/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#1091] / [Intel XE#2849]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-435/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_drm_fdinfo@utilization-single-full-load-isolation: - shard-bmg: NOTRUN -> [SKIP][183] ([Intel XE#1130]) +10 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at xe_drm_fdinfo@utilization-single-full-load-isolation.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#2905]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#3889]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#3889]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-8/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#2905]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-7/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][188] ([Intel XE#2905]) +5 other tests skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-8/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][189] -> [TIMEOUT][190] ([Intel XE#1473] / [Intel XE#402]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at xe_evict@evict-beng-mixed-many-threads-small.html - shard-bmg: NOTRUN -> [INCOMPLETE][191] ([Intel XE#1473]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-mixed-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#688]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-1/igt at xe_evict@evict-beng-mixed-threads-large-multi-vm.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][193] -> [TIMEOUT][194] ([Intel XE#1473]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@many-basic-defer-mmap: - shard-bmg: [PASS][195] -> [SKIP][196] ([Intel XE#1130]) +55 other tests skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_exec_basic@many-basic-defer-mmap.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at xe_exec_basic@many-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][197] ([Intel XE#2322]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-dg2-set2: [PASS][198] -> [SKIP][199] ([Intel XE#1392]) +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt at xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#1392]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-5/igt at xe_exec_basic@multigpu-once-userptr.html * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: - shard-dg2-set2: NOTRUN -> [SKIP][201] ([Intel XE#288]) +8 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html * igt at xe_exec_threads@threads-hang-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][202] ([Intel XE#1130]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at xe_exec_threads@threads-hang-rebind.html * igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: [PASS][203] -> [SKIP][204] ([Intel XE#1130]) +24 other tests skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt at xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][205] ([Intel XE#1192]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-6/igt at xe_live_ktest@xe_mocs.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][206] ([Intel XE#512]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at xe_mmap@small-bar.html * igt at xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][207] ([Intel XE#2457]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at xe_module_load@force-load.html * igt at xe_module_load@load: - shard-bmg: ([PASS][208], [PASS][209], [PASS][210], [PASS][211], [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], [SKIP][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257]) ([Intel XE#2457]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-8/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-8/igt at xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-8/igt at xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at xe_module_load@load.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at xe_module_load@load.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at xe_module_load@load.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: NOTRUN -> [SKIP][258] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at xe_oa@disabled-read-error.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][259] ([Intel XE#2248]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][260] ([Intel XE#1420]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at xe_pat@pat-index-xehpc.html - shard-dg2-set2: NOTRUN -> [SKIP][261] ([Intel XE#2838] / [Intel XE#979]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-432/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][262] ([Intel XE#1173]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][263] ([Intel XE#2284]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-8/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s3-multiple-execs: - shard-dg2-set2: [PASS][264] -> [ABORT][265] ([Intel XE#1358] / [Intel XE#1794]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_pm@s3-multiple-execs.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-432/igt at xe_pm@s3-multiple-execs.html * igt at xe_pm@s4-mocs: - shard-lnl: [PASS][266] -> [ABORT][267] ([Intel XE#1358] / [Intel XE#1794]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-1/igt at xe_pm@s4-mocs.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-2/igt at xe_pm@s4-mocs.html * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: NOTRUN -> [SKIP][268] ([Intel XE#944]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][269] ([Intel XE#944]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-5/igt at xe_query@multigpu-query-topology-l3-bank-mask.html #### Possible fixes #### * igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-3: - shard-bmg: [FAIL][270] ([Intel XE#827]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-3.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-3.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][272] ([Intel XE#2136]) -> [PASS][273] +5 other tests pass [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][274] ([Intel XE#3124]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/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-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][276] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][278] ([Intel XE#2291]) -> [PASS][279] +2 other tests pass [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipa-legacy: - shard-bmg: [INCOMPLETE][280] ([Intel XE#3226]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html * igt at kms_cursor_legacy@torture-bo at pipe-a: - shard-lnl: [DMESG-WARN][282] ([Intel XE#877]) -> [PASS][283] +1 other test pass [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_cursor_legacy@torture-bo at pipe-a.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-1/igt at kms_cursor_legacy@torture-bo at pipe-a.html * igt at kms_flip@2x-nonexisting-fb-interruptible: - shard-bmg: [SKIP][284] ([Intel XE#2316]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-nonexisting-fb-interruptible.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_flip@2x-nonexisting-fb-interruptible.html * igt at kms_flip@basic-flip-vs-wf_vblank: - shard-dg2-set2: [FAIL][286] ([Intel XE#3098]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@basic-flip-vs-wf_vblank.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at kms_flip@basic-flip-vs-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2-set2: [INCOMPLETE][288] ([Intel XE#3937]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-435/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4: - shard-dg2-set2: [INCOMPLETE][290] -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-435/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][292] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][293] +1 other test pass [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2: - shard-bmg: [FAIL][294] ([Intel XE#3288]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: [FAIL][296] ([Intel XE#3321]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: - shard-dg2-set2: [FAIL][298] ([Intel XE#301]) -> [PASS][299] +2 other tests pass [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank at c-dp4: - shard-dg2-set2: [FAIL][300] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][301] +1 other test pass [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip@flip-vs-rmfb at d-hdmi-a3: - shard-bmg: [INCOMPLETE][302] -> [PASS][303] +3 other tests pass [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][304] ([Intel XE#2597]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/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: [INCOMPLETE][306] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-bmg: [SKIP][308] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][309] +1 other test pass [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][310] ([Intel XE#3012]) -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_joiner@basic-force-big-joiner.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_lease@possible-crtcs-filtering: - shard-bmg: [SKIP][312] ([Intel XE#3007]) -> [PASS][313] +7 other tests pass [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_lease@possible-crtcs-filtering.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-8/igt at kms_lease@possible-crtcs-filtering.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2-set2: [SKIP][314] ([Intel XE#2423] / [i915#2575]) -> [PASS][315] +8 other tests pass [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-bmg: [SKIP][316] ([Intel XE#2446]) -> [PASS][317] [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg2-set2: [SKIP][318] ([Intel XE#2446]) -> [PASS][319] [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-bmg: [DMESG-WARN][320] -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@system-suspend-modeset.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][322] ([Intel XE#1435]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [FAIL][324] ([Intel XE#2159]) -> [PASS][325] +1 other test pass [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_vrr@cmrr at pipe-a-edp-1.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-lnl-3/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at xe_exec_basic@many-execqueues-userptr-invalidate-race: - shard-bmg: [SKIP][326] ([Intel XE#1130]) -> [PASS][327] +15 other tests pass [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-dg2-set2: [SKIP][328] ([Intel XE#1392]) -> [PASS][329] +2 other tests pass [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-435/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt at xe_exec_compute_mode@once-userptr-rebind: - shard-dg2-set2: [SKIP][330] ([Intel XE#1130]) -> [PASS][331] +6 other tests pass [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_compute_mode@once-userptr-rebind.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at xe_exec_compute_mode@once-userptr-rebind.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][332] ([Intel XE#1192]) -> [PASS][333] [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_live_ktest@xe_mocs.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at xe_live_ktest@xe_mocs.html * igt at xe_module_load@load: - shard-dg2-set2: ([PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [SKIP][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359]) ([Intel XE#378]) -> ([PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382], [PASS][383]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_module_load@load.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_module_load@load.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_module_load@load.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_module_load@load.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_module_load@load.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_module_load@load.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_module_load@load.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_module_load@load.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_module_load@load.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_module_load@load.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_module_load@load.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_module_load@load.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_module_load@load.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_module_load@load.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_module_load@load.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_module_load@load.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_module_load@load.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_module_load@load.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_module_load@load.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_module_load@load.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_module_load@load.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_module_load@load.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_module_load@load.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_module_load@load.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_module_load@load.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_module_load@load.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at xe_module_load@load.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at xe_module_load@load.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at xe_module_load@load.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-432/igt at xe_module_load@load.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at xe_module_load@load.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-432/igt at xe_module_load@load.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at xe_module_load@load.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at xe_module_load@load.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-435/igt at xe_module_load@load.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at xe_module_load@load.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at xe_module_load@load.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at xe_module_load@load.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at xe_module_load@load.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at xe_module_load@load.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at xe_module_load@load.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-432/igt at xe_module_load@load.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-432/igt at xe_module_load@load.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-432/igt at xe_module_load@load.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-435/igt at xe_module_load@load.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-435/igt at xe_module_load@load.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at xe_module_load@load.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at xe_module_load@load.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at xe_module_load@load.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-435/igt at xe_module_load@load.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip-atomic: - shard-bmg: [SKIP][384] ([Intel XE#3007]) -> [SKIP][385] ([Intel XE#3768]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][386] ([Intel XE#2136]) -> [SKIP][387] ([Intel XE#1124]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-432/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@y-tiled-8bpp-rotate-0: - shard-dg2-set2: [SKIP][388] ([Intel XE#1124]) -> [SKIP][389] ([Intel XE#2136] / [Intel XE#2351]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_big_fb@y-tiled-8bpp-rotate-0.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_big_fb@y-tiled-8bpp-rotate-0.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-bmg: [SKIP][390] ([Intel XE#1124]) -> [SKIP][391] ([Intel XE#2136]) +1 other test skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-bmg: [SKIP][392] ([Intel XE#1124]) -> [SKIP][393] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html - shard-dg2-set2: [SKIP][394] ([Intel XE#1124]) -> [SKIP][395] ([Intel XE#2136]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][396] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][397] ([Intel XE#607]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: [SKIP][398] ([Intel XE#2136]) -> [SKIP][399] ([Intel XE#607]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_ccs@bad-rotation-90-yf-tiled-ccs: - shard-bmg: [SKIP][400] ([Intel XE#2887]) -> [SKIP][401] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_ccs@bad-rotation-90-yf-tiled-ccs.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_ccs@bad-rotation-90-yf-tiled-ccs.html - shard-dg2-set2: [SKIP][402] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][403] ([Intel XE#2136]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@bad-rotation-90-yf-tiled-ccs.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_ccs@bad-rotation-90-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][404] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][405] ([Intel XE#455] / [Intel XE#787]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][406] ([Intel XE#2887]) -> [SKIP][407] ([Intel XE#2136]) +3 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-bmg: [SKIP][408] ([Intel XE#3432]) -> [SKIP][409] ([Intel XE#2136] / [Intel XE#2231]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][410] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][411] ([Intel XE#2887]) +2 other tests skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][412] ([Intel XE#2136]) -> [SKIP][413] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt at kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2-set2: [SKIP][414] ([Intel XE#2423] / [i915#2575]) -> [SKIP][415] ([Intel XE#373]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt at kms_chamelium_hpd@dp-hpd: - shard-bmg: [SKIP][416] ([Intel XE#2252]) -> [SKIP][417] ([Intel XE#3007]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_chamelium_hpd@dp-hpd.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_chamelium_hpd@dp-hpd.html - shard-dg2-set2: [SKIP][418] ([Intel XE#373]) -> [SKIP][419] ([Intel XE#2423] / [i915#2575]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_chamelium_hpd@dp-hpd.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: [SKIP][420] ([Intel XE#3007]) -> [SKIP][421] ([Intel XE#2252]) +1 other test skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt at kms_content_protection@legacy: - shard-bmg: [FAIL][422] ([Intel XE#1178]) -> [SKIP][423] ([Intel XE#2341]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_content_protection@legacy.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_content_protection@legacy.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-dg2-set2: [SKIP][424] ([Intel XE#455]) -> [SKIP][425] ([Intel XE#2423] / [i915#2575]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_cursor_crc@cursor-random-32x10.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_crc@cursor-random-64x21: - shard-bmg: [SKIP][426] ([Intel XE#2320]) -> [SKIP][427] ([Intel XE#3007]) +1 other test skip [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_cursor_crc@cursor-random-64x21.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_cursor_crc@cursor-random-64x21.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][428] ([Intel XE#3007]) -> [SKIP][429] ([Intel XE#2320]) +1 other test skip [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg2-set2: [SKIP][430] ([Intel XE#2423] / [i915#2575]) -> [SKIP][431] ([Intel XE#455]) +2 other tests skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: [SKIP][432] ([Intel XE#323]) -> [SKIP][433] ([Intel XE#2423] / [i915#2575]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-bmg: [SKIP][434] ([Intel XE#2286]) -> [SKIP][435] ([Intel XE#3007]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dsc@dsc-with-formats: - shard-bmg: [SKIP][436] ([Intel XE#2244]) -> [SKIP][437] ([Intel XE#2136]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_dsc@dsc-with-formats.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_dsc@dsc-with-formats.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [SKIP][438] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][439] ([Intel XE#1695]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][440] ([Intel XE#3007]) -> [SKIP][441] ([Intel XE#2372]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_feature_discovery@chamelium.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: [SKIP][442] ([Intel XE#2423] / [i915#2575]) -> [SKIP][443] ([Intel XE#701]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_feature_discovery@chamelium.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at kms_feature_discovery@chamelium.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][444] ([Intel XE#2882]) -> [INCOMPLETE][445] ([Intel XE#2635]) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-bmg: [SKIP][446] ([Intel XE#3007]) -> [SKIP][447] ([Intel XE#2316]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][448] ([Intel XE#455]) -> [SKIP][449] ([Intel XE#2136]) [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][450] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][451] ([Intel XE#2293] / [Intel XE#2380]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][452] ([Intel XE#2136]) -> [SKIP][453] ([Intel XE#455]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-432/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][454] ([Intel XE#455]) -> [SKIP][455] ([Intel XE#2136] / [Intel XE#2351]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html - shard-bmg: [SKIP][456] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][457] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][458] ([Intel XE#2311]) -> [SKIP][459] ([Intel XE#2136]) +5 other tests skip [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][460] ([Intel XE#2311]) -> [SKIP][461] ([Intel XE#2136] / [Intel XE#2231]) +6 other tests skip [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][462] ([Intel XE#2311]) -> [SKIP][463] ([Intel XE#2312]) +11 other tests skip [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][464] ([Intel XE#651]) -> [SKIP][465] ([Intel XE#2136]) +4 other tests skip [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][466] ([Intel XE#2312]) -> [SKIP][467] ([Intel XE#2311]) +3 other tests skip [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-bmg: [SKIP][468] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][469] ([Intel XE#2311]) +3 other tests skip [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - shard-bmg: [FAIL][470] ([Intel XE#2333]) -> [SKIP][471] ([Intel XE#2136]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-bmg: [FAIL][472] ([Intel XE#2333]) -> [SKIP][473] ([Intel XE#2136] / [Intel XE#2231]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [FAIL][474] ([Intel XE#2333]) -> [SKIP][475] ([Intel XE#2312]) +3 other tests skip [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [INCOMPLETE][476] ([Intel XE#2050]) -> [SKIP][477] ([Intel XE#2312]) [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][478] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][479] ([Intel XE#651]) +1 other test skip [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][480] ([Intel XE#2136]) -> [SKIP][481] ([Intel XE#651]) [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][482] ([Intel XE#2312]) -> [SKIP][483] ([Intel XE#2136]) [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][484] ([Intel XE#651]) -> [SKIP][485] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][486] ([Intel XE#2136]) -> [SKIP][487] ([Intel XE#653]) +2 other tests skip [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][488] ([Intel XE#653]) -> [SKIP][489] ([Intel XE#2136]) +4 other tests skip [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: - shard-bmg: [SKIP][490] ([Intel XE#2312]) -> [SKIP][491] ([Intel XE#2313]) +2 other tests skip [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-bmg: [SKIP][492] ([Intel XE#2313]) -> [SKIP][493] ([Intel XE#2136]) +3 other tests skip [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][494] ([Intel XE#2313]) -> [SKIP][495] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][496] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][497] ([Intel XE#2136]) +1 other test skip [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html - shard-dg2-set2: [SKIP][498] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][499] ([Intel XE#653]) +1 other test skip [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][500] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][501] ([Intel XE#2313]) +2 other tests skip [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][502] ([Intel XE#2313]) -> [SKIP][503] ([Intel XE#2312]) +12 other tests skip [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][504] ([Intel XE#653]) -> [SKIP][505] ([Intel XE#2136] / [Intel XE#2351]) [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: [SKIP][506] ([Intel XE#2927]) -> [SKIP][507] ([Intel XE#2136]) [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_joiner@invalid-modeset-ultra-joiner.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-bmg: [SKIP][508] ([Intel XE#2763]) -> [SKIP][509] ([Intel XE#3007]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-dg2-set2: [SKIP][510] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][511] ([Intel XE#2423] / [i915#2575]) [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][512] ([Intel XE#1489]) -> [SKIP][513] ([Intel XE#2136] / [Intel XE#2231]) [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html - shard-dg2-set2: [SKIP][514] ([Intel XE#1489]) -> [SKIP][515] ([Intel XE#2136]) +1 other test skip [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: [SKIP][516] ([Intel XE#1489]) -> [SKIP][517] ([Intel XE#2136]) +1 other test skip [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][518] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][519] ([Intel XE#2387]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2-set2: [SKIP][520] ([Intel XE#2136]) -> [SKIP][521] ([Intel XE#1122]) [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-primary-blt: - shard-bmg: [SKIP][522] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][523] ([Intel XE#2136]) +1 other test skip [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_psr@fbc-pr-primary-blt.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at kms_psr@fbc-pr-primary-blt.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][524] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][525] ([Intel XE#2234] / [Intel XE#2850]) [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr@fbc-pr-sprite-blt.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_psr@fbc-pr-sprite-blt.html - shard-dg2-set2: [SKIP][526] ([Intel XE#2136]) -> [SKIP][527] ([Intel XE#2850] / [Intel XE#929]) [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr@fbc-pr-sprite-blt.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_psr@fbc-psr-primary-page-flip: - shard-dg2-set2: [SKIP][528] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][529] ([Intel XE#2136]) +1 other test skip [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_psr@fbc-psr-primary-page-flip.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at kms_psr@fbc-psr-primary-page-flip.html * igt at kms_psr@psr2-sprite-blt: - shard-bmg: [SKIP][530] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][531] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_psr@psr2-sprite-blt.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at kms_psr@psr2-sprite-blt.html * igt at kms_rotation_crc@primary-rotation-90: - shard-bmg: [SKIP][532] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][533] ([Intel XE#3007]) [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_rotation_crc@primary-rotation-90.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at kms_rotation_crc@primary-rotation-90.html - shard-dg2-set2: [SKIP][534] ([Intel XE#3414]) -> [SKIP][535] ([Intel XE#2423] / [i915#2575]) [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_rotation_crc@primary-rotation-90.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][536] ([Intel XE#3007]) -> [SKIP][537] ([Intel XE#3414] / [Intel XE#3904]) [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg2-set2: [SKIP][538] ([Intel XE#2423] / [i915#2575]) -> [SKIP][539] ([Intel XE#3414]) [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-433/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at xe_eudebug@basic-exec-queues: - shard-bmg: [SKIP][540] ([Intel XE#2905]) -> [SKIP][541] ([Intel XE#1130]) +6 other tests skip [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_eudebug@basic-exec-queues.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-bind-extended-discovery: - shard-dg2-set2: [SKIP][542] ([Intel XE#1130]) -> [SKIP][543] ([Intel XE#2905]) +1 other test skip [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-464/igt at xe_eudebug@basic-vm-bind-extended-discovery.html - shard-bmg: [SKIP][544] ([Intel XE#1130]) -> [SKIP][545] ([Intel XE#2905]) +1 other test skip [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-extended-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: [SKIP][546] ([Intel XE#3889]) -> [SKIP][547] ([Intel XE#1130]) [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html - shard-bmg: [SKIP][548] ([Intel XE#3889]) -> [SKIP][549] ([Intel XE#1130]) [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: - shard-dg2-set2: [SKIP][550] ([Intel XE#2905]) -> [SKIP][551] ([Intel XE#1130]) +3 other tests skip [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: [TIMEOUT][552] ([Intel XE#1473]) -> [INCOMPLETE][553] ([Intel XE#1473]) [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_evict@evict-beng-mixed-many-threads-large.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-bmg: [INCOMPLETE][554] ([Intel XE#1473]) -> [TIMEOUT][555] ([Intel XE#1473]) [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_evict@evict-mixed-many-threads-large.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-8/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [FAIL][556] ([Intel XE#1000]) -> [TIMEOUT][557] ([Intel XE#1473] / [Intel XE#2472]) [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_evict@evict-mixed-many-threads-small.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [TIMEOUT][558] ([Intel XE#1473] / [Intel XE#2472]) -> [INCOMPLETE][559] ([Intel XE#1473]) [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_evict@evict-mixed-threads-large.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-2/igt at xe_evict@evict-mixed-threads-large.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap: - shard-bmg: [SKIP][560] ([Intel XE#2322]) -> [SKIP][561] ([Intel XE#1130]) +2 other tests skip [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][562] ([Intel XE#1130]) -> [SKIP][563] ([Intel XE#2322]) [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: [SKIP][564] ([Intel XE#288]) -> [SKIP][565] ([Intel XE#1130]) +5 other tests skip [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@once-invalid-userptr-fault.html [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at xe_exec_fault_mode@once-invalid-userptr-fault.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][566] ([Intel XE#1130]) -> [SKIP][567] ([Intel XE#288]) [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][568] ([Intel XE#1130]) -> [SKIP][569] ([Intel XE#2360]) [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-463/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt at xe_oa@syncs-userptr-wait-cfg: - shard-dg2-set2: [SKIP][570] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][571] ([Intel XE#1130]) +2 other tests skip [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_oa@syncs-userptr-wait-cfg.html [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at xe_oa@syncs-userptr-wait-cfg.html * igt at xe_pat@pat-index-xelpg: - shard-bmg: [SKIP][572] ([Intel XE#2236]) -> [SKIP][573] ([Intel XE#1130]) [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_pat@pat-index-xelpg.html [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@read: - shard-bmg: [SKIP][574] ([Intel XE#2557]) -> [SKIP][575] ([Intel XE#2427]) [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_peer2peer@read.html [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-4/igt at xe_peer2peer@read.html - shard-dg2-set2: [SKIP][576] ([Intel XE#1061]) -> [FAIL][577] ([Intel XE#1173]) [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_peer2peer@read.html [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at xe_peer2peer@read.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-bmg: [SKIP][578] ([Intel XE#2284]) -> [SKIP][579] ([Intel XE#1130]) [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_pm@s3-d3cold-basic-exec.html [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-5/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [SKIP][580] ([Intel XE#1130]) -> [ABORT][581] ([Intel XE#1358] / [Intel XE#1794]) [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_pm@s3-vm-bind-unbind-all.html [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-432/igt at xe_pm@s3-vm-bind-unbind-all.html * igt at xe_query@multigpu-query-invalid-extension: - shard-bmg: [SKIP][582] ([Intel XE#944]) -> [SKIP][583] ([Intel XE#1130]) [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_query@multigpu-query-invalid-extension.html [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-6/igt at xe_query@multigpu-query-invalid-extension.html - shard-dg2-set2: [SKIP][584] ([Intel XE#944]) -> [SKIP][585] ([Intel XE#1130]) [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_query@multigpu-query-invalid-extension.html [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][586] ([Intel XE#1130]) -> [SKIP][587] ([Intel XE#944]) [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_query@multigpu-query-uc-fw-version-huc.html [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-bmg-1/igt at xe_query@multigpu-query-uc-fw-version-huc.html - shard-dg2-set2: [SKIP][588] ([Intel XE#1130]) -> [SKIP][589] ([Intel XE#944]) [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-huc.html [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/shard-dg2-436/igt at xe_query@multigpu-query-uc-fw-version-huc.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [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#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#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#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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#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#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#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#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [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#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#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [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#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3897]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3897 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3937 [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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8182 -> IGTPW_12411 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12411: dfd7f524e425fd4bb2f75a88c0796782eaf56063 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12411/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 09:24:31 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 09:24:31 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_lib/amdgpu=3A_improve_pc?= =?utf-8?q?i=5Funplug_test?= In-Reply-To: <20250109033222.21861-1-vitaly.prosyak@amd.com> References: <20250109033222.21861-1-vitaly.prosyak@amd.com> Message-ID: <173658747184.2293338.7200671839115142175@b555e5b46a47> == Series Details == Series: lib/amdgpu: improve pci_unplug test URL : https://patchwork.freedesktop.org/series/143299/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15927_full -> IGTPW_12409_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12409_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12409_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_12409/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_12409_full: ### IGT changes ### #### Possible regressions #### * igt at i915_selftest@live: - shard-rkl: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-4/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-2/igt at i915_selftest@live.html * igt at i915_selftest@perf: - shard-glk: NOTRUN -> [ABORT][3] +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk8/igt at i915_selftest@perf.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-mtlp: [PASS][4] -> [FAIL][5] +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-2/igt at kms_psr@psr2-sprite-plane-onoff.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-4/igt at kms_psr@psr2-sprite-plane-onoff.html Known issues ------------ Here are the changes found in IGTPW_12409_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-8/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-5/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-5/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#6230]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-6/igt at api_intel_bb@crc32.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_12409/shard-tglu-1/igt at debugfs_test@basic-hwmon.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#11078]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-2/igt at device_reset@unbind-cold-reset-rebind.html - shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#11078]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-6/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-hang at bcs0: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +15 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-3/igt at drm_fdinfo@busy-hang at bcs0.html * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8414]) +6 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-4/igt at drm_fdinfo@busy-idle at vecs0.html * igt at drm_fdinfo@most-busy-idle-check-all at bcs0: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8414]) +7 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/igt at drm_fdinfo@most-busy-idle-check-all at bcs0.html * igt at gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-multicopy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#9323]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-3/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-14/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_12409/shard-dg2-3/igt at gem_close_race@multigpu-basic-threads.html - shard-rkl: NOTRUN -> [SKIP][23] ([i915#7697]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-7/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#8562]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-10/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][25] ([i915#12353]) +1 other test incomplete [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk4/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][26] ([i915#1099]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-snb2/igt at gem_ctx_persistence@engines-mixed-process.html * igt at gem_ctx_persistence@heartbeat-hang: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at gem_ctx_persistence@heartbeat-hang.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#8555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-3/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#280]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#280]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][31] ([i915#280]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-7/igt at gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-2/igt at gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-5/igt at gem_ctx_sseu@engines.html * igt at gem_eio@kms: - shard-dg2: [PASS][34] -> [FAIL][35] ([i915#5784]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-5/igt at gem_eio@kms.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-6/igt at gem_eio@kms.html * igt at gem_eio@reset-stress: - shard-dg1: [PASS][36] -> [FAIL][37] ([i915#12543] / [i915#5784]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-14/igt at gem_eio@reset-stress.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/igt at gem_eio@reset-stress.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4036]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu: NOTRUN -> [SKIP][39] ([i915#4525]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-8/igt at gem_exec_balancer@parallel-keep-submit-fence.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_12409/shard-rkl-2/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_big@single: - shard-tglu: [PASS][41] -> [ABORT][42] ([i915#11713]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-8/igt at gem_exec_big@single.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-8/igt at gem_exec_big@single.html * igt at gem_exec_capture@capture-recoverable: - shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#6344]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at gem_exec_capture@capture-recoverable.html * igt at gem_exec_endless@dispatch at vcs0: - shard-dg2: [PASS][44] -> [TIMEOUT][45] ([i915#3778] / [i915#7016]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-11/igt at gem_exec_endless@dispatch at vcs0.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-4/igt at gem_exec_endless@dispatch at vcs0.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4812]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-13/igt at gem_exec_fence@submit.html * igt at gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-8/igt at gem_exec_fence@submit3.html * igt at gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-11/igt at gem_exec_flush@basic-batch-kernel-default-cmd.html * igt at gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-13/igt at gem_exec_flush@basic-batch-kernel-default-wb.html * igt at gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#5107]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-8/igt at gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][51] ([i915#5107]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-10/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-gtt-read-active: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3281]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-8/igt at gem_exec_reloc@basic-gtt-read-active.html * igt at gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#3281]) +15 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-1/igt at gem_exec_reloc@basic-scanout.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3281]) +7 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-13/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_reloc@basic-write-wc-active: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3281]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-6/igt at gem_exec_reloc@basic-write-wc-active.html * igt at gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-10/igt at gem_exec_schedule@semaphore-power.html * igt at gem_exec_suspend@basic-s3 at smem: - shard-glk: NOTRUN -> [INCOMPLETE][57] ([i915#13196]) +1 other test incomplete [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk4/igt at gem_exec_suspend@basic-s3 at smem.html * igt at gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-6/igt at gem_fence_thrash@bo-write-verify-threaded-none.html * igt at gem_fenced_exec_thrash@2-spare-fences: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4860]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at gem_fenced_exec_thrash@2-spare-fences.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4860]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-5/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#4613] / [i915#7582]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][62] ([i915#4613] / [i915#7582]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-2/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-glk: NOTRUN -> [SKIP][63] ([i915#4613]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk1/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@parallel-random-engines: - shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#4613]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at gem_lmem_swapping@parallel-random-engines.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4613]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-7/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][66] ([i915#5493]) +1 other test timeout [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-11/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-ccs: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4613]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-7/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#12193]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/igt at gem_lmem_swapping@verify-random-ccs.html - shard-tglu: NOTRUN -> [SKIP][69] ([i915#4613]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-10/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_lmem_swapping@verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4565]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#8289]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-2/igt at gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][72] ([i915#8289]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-5/igt at gem_media_fill@media-fill.html * igt at gem_mmap@bad-offset: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4083]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-13/igt at gem_mmap@bad-offset.html * igt at gem_mmap_gtt@basic-copy: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4077]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-4/igt at gem_mmap_gtt@basic-copy.html * igt at gem_mmap_gtt@basic-read: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4077]) +9 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-8/igt at gem_mmap_gtt@basic-read.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-rkl: [PASS][76] -> [DMESG-WARN][77] ([i915#12964]) +32 other tests dmesg-warn [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-5/igt at gem_mmap_offset@clear-via-pagefault.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4083]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-6/igt at gem_mmap_wc@copy.html * igt at gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4083]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-4/igt at gem_mmap_wc@write.html * igt at gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][80] ([i915#2658]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk1/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3282]) +5 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-3/igt at gem_pwrite@basic-exhaustion.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3282]) +5 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at gem_pwrite@basic-exhaustion.html - shard-snb: NOTRUN -> [WARN][83] ([i915#2658]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-snb7/igt at gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][84] ([i915#2658]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-8/igt at gem_pwrite@basic-exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3282]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-7/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][86] ([i915#12964]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-6/igt at gem_pxp@fail-invalid-protected-context.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#13398]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-6/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-rkl: NOTRUN -> [TIMEOUT][88] ([i915#12917] / [i915#12964]) +1 other test timeout [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#4270]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at gem_pxp@reject-modify-context-protection-off-3.html * igt at gem_pxp@verify-pxp-stale-buf-execution: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4270]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-6/igt at gem_pxp@verify-pxp-stale-buf-execution.html * igt at gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3282]) +5 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-11/igt at gem_readwrite@beyond-eob.html * igt at gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#8428]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-3/igt at gem_render_copy@linear-to-vebox-y-tiled.html * igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#5190] / [i915#8428]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-3/igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt at gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4079]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-6/igt at gem_render_tiled_blits@basic.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4079]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-12/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4885]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-12/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_userptr_blits@coherency-unsync: - shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#3297]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at gem_userptr_blits@coherency-unsync.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#3297]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#3323]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-7/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#3297]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-2/igt at gem_userptr_blits@invalid-mmap-offset-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#3297]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-7/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#3297] / [i915#4880]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#4880]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-10/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3297] / [i915#4958]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#3297]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-6/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#3297]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-6/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_workarounds@suspend-resume: - shard-glk: [PASS][107] -> [INCOMPLETE][108] ([i915#13356]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk7/igt at gem_workarounds@suspend-resume.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk2/igt at gem_workarounds@suspend-resume.html * igt at gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#2527] / [i915#2856]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-3/igt at gen9_exec_parse@basic-rejected-ctx-param.html * igt at gen9_exec_parse@batch-zero-length: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#2527] / [i915#2856]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at gen9_exec_parse@batch-zero-length.html * igt at gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#2527]) +4 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-6/igt at gen9_exec_parse@bb-start-out.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#2856]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-3/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#2856]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-10/igt at gen9_exec_parse@shadow-peek.html * igt at gen9_exec_parse@unaligned-access: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#2527]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at gen9_exec_parse@unaligned-access.html * igt at i915_module_load@reload-no-display: - shard-tglu-1: NOTRUN -> [DMESG-WARN][115] ([i915#13029]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at i915_module_load@reload-no-display.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [ABORT][116] ([i915#10887] / [i915#9820]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-7/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#7091]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-5/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#8399]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at i915_pm_freq_api@freq-reset-multiple.html * igt at i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#8399]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-2/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#6590]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-tglu-1: NOTRUN -> [WARN][121] ([i915#2681]) +4 other tests warn [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#5723]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at i915_query@test-query-geometry-subslices.html * igt at i915_suspend@debugfs-reader: - shard-rkl: NOTRUN -> [DMESG-FAIL][123] ([i915#12964]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-1/igt at i915_suspend@debugfs-reader.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][124] ([i915#4817]) +1 other test incomplete [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk7/igt at i915_suspend@forcewake.html * igt at intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#7707]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-10/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4212]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/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-c-hdmi-a-1-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#8709]) +11 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-4/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-c-hdmi-a-1-4-rc-ccs-cc.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][128] ([i915#8709]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-2/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-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#8709]) +15 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/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@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#12967] / [i915#6228]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-11/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#9531]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/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-dg1: NOTRUN -> [SKIP][132] ([i915#1769] / [i915#3555]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-14/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][133] ([i915#1769]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk3/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-64bpp-rotate-270: - shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#5286]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_big_fb@4-tiled-64bpp-rotate-270.html * igt at kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5286]) +5 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/igt at kms_big_fb@4-tiled-8bpp-rotate-180.html * igt at kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#5286]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/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][137] ([i915#5286]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-8/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-0-hflip: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#5286]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [FAIL][139] ([i915#5138]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-3/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-dg1: NOTRUN -> [SKIP][140] ([i915#3638]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-13/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#3638]) +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-7/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#5190]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-6/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6187]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-7/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538]) +6 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-14/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][145] +18 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-7/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5190]) +6 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-5/igt at kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt at kms_ccs@bad-aux-stride-y-tiled-ccs at pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#6095]) +49 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-3/igt at kms_ccs@bad-aux-stride-y-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-4/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#6095]) +143 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/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-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#10307] / [i915#6095]) +161 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-5/igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#12313]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#12313]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#12313]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-10/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#12805]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#12805]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-5/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-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#6095]) +14 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-4/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#12805]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-8/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#6095]) +19 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-3/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-c-hdmi-a-3.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#12313]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-2/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#6095]) +24 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-y-tiled-ccs at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#6095]) +78 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-2/igt at kms_ccs@random-ccs-data-y-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#3742]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-6/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@plane-scaling at pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#4087]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-10/igt at kms_cdclk@plane-scaling at pipe-d-dp-4.html * igt at kms_chamelium_color@ctm-0-50: - shard-mtlp: NOTRUN -> [SKIP][164] +4 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-4/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-6/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +4 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_frames@dp-crc-multiple: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at kms_chamelium_frames@dp-crc-multiple.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +11 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +8 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-2/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-5/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_color@deep-color: - shard-dg2: [PASS][171] -> [SKIP][172] ([i915#3555]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-10/igt at kms_color@deep-color.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-3/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-9/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#6944] / [i915#9424]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-3/igt at kms_content_protection@content-type-change.html - shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#6944] / [i915#9424]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3116]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-3/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3299]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-5/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-1: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#6944] / [i915#9424]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-9/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#9424]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#6944] / [i915#9424]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-6/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#7116] / [i915#9424]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#3555]) +5 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/igt at kms_cursor_crc@cursor-offscreen-32x32.html - shard-tglu: NOTRUN -> [SKIP][184] ([i915#3555]) +4 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-2/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#8814]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-3/igt at kms_cursor_crc@cursor-onscreen-128x42.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#13049]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-13/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#13049]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-5/igt at kms_cursor_crc@cursor-random-512x512.html - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#13049]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#13049]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-8/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#13049]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-7/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-sliding-32x10: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#3555]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_cursor_crc@cursor-sliding-32x10.html - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8814]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-3/igt at kms_cursor_crc@cursor-sliding-32x10.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#13049]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-10/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#9809]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-2/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_12409/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-tglu-1: NOTRUN -> [SKIP][196] ([i915#4103]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#4103] / [i915#4213]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-14/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#13046] / [i915#5354]) +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-7/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-mtlp: [PASS][199] -> [FAIL][200] ([i915#2346]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-8/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-4/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-mtlp: NOTRUN -> [SKIP][201] ([i915#4213]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#4103] / [i915#4213]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-5/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][203] ([i915#4103]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#9723]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][205] ([i915#12170]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][206] ([i915#11968]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#9723]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-1/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#8588]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-14/igt at kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][209] ([i915#8588]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-9/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#12402]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-7/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#8812]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-12/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-basic: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#3840]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-2/igt at kms_dsc@dsc-fractional-bpp.html - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#3840]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#3840]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-1/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][216] ([i915#3840]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-9/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-9/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#3955]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#3469]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-4/igt at kms_fbcon_fbt@psr-suspend.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_12409/shard-rkl-1/igt at kms_feature_discovery@dp-mst.html * igt at kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#4881]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3637]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-3/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][224] ([i915#3637]) +4 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-10/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#9934]) +7 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#9934]) +6 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-fences: - shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#3637]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_flip@2x-flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][228] ([i915#8381]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-14/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#9934]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-5/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@dpms-off-confusion-interruptible at b-hdmi-a2: - shard-rkl: NOTRUN -> [DMESG-WARN][230] ([i915#12964]) +21 other tests dmesg-warn [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-5/igt at kms_flip@dpms-off-confusion-interruptible at b-hdmi-a2.html * igt at kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#8381]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-6/igt at kms_flip@flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][232] ([i915#8381]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-11/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a2: - shard-rkl: [PASS][233] -> [DMESG-FAIL][234] ([i915#12964]) +1 other test dmesg-fail [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-1/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a2.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-3/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a2.html * igt at kms_flip@plain-flip-fb-recreate: - shard-tglu: [PASS][235] -> [FAIL][236] ([i915#11989]) +2 other tests fail [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-10/igt at kms_flip@plain-flip-fb-recreate.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-10/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_flip@plain-flip-fb-recreate at a-vga1: - shard-snb: [PASS][237] -> [FAIL][238] ([i915#11989]) +2 other tests fail [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-snb7/igt at kms_flip@plain-flip-fb-recreate at a-vga1.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-snb7/igt at kms_flip@plain-flip-fb-recreate at a-vga1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#3555] / [i915#8813]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-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-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#8813]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8810] / [i915#8813]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-2/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8810]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-2/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-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-rkl: NOTRUN -> [SKIP][243] ([i915#2672]) +4 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][244] ([i915#2587] / [i915#2672]) +4 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-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-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555]) +4 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-9/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-upscaling: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#2587] / [i915#2672] / [i915#3555]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/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-downscaling: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555] / [i915#5190]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-3/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-dg2: NOTRUN -> [SKIP][248] ([i915#2672]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-3/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-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555]) +4 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/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-yftile-to-32bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-13/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-dg1: NOTRUN -> [SKIP][251] ([i915#2587] / [i915#2672]) +4 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-13/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#8708]) +9 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][253] +37 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-snb: [PASS][254] -> [SKIP][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-snb2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#8708]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-7/igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: - shard-dg2: [PASS][257] -> [FAIL][258] ([i915#6880]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-6/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#10055]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-2/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#8708]) +19 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-12/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#1825]) +44 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#9766]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-13/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][263] ([i915#9766]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-10/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][264] +76 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-6/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#3458]) +11 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-10/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#3023]) +23 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#1825]) +7 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#5354]) +21 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-1/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][269] +39 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#3458]) +18 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#3458] / [i915#4423]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-12/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8228]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-9/igt at kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8228]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-2/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-5/igt at kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8228]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-dpms: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8228]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_hdr@static-toggle-dpms.html * igt at kms_histogram@algo-basic: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#13389]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-8/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#13389]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-1/igt at kms_histogram@algo-color.html * igt at kms_joiner@basic-big-joiner: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#10656]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-14/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#12388]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-10/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#12394]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-14/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#10656]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#12388]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-1/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#10656]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-10/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][285] ([i915#12394]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-3/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#10656]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-1/igt at kms_joiner@invalid-modeset-force-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_12409/shard-tglu-9/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_12409/shard-rkl-6/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#6301]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-13/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][290] +4 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-5/igt at kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][291] ([i915#13026]) +1 other test incomplete [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk6/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][292] ([i915#12178]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk3/igt at kms_plane_alpha_blend@alpha-basic.html * igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][293] ([i915#7862]) +1 other test fail [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk3/igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][294] ([i915#10647] / [i915#12169]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk1/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][295] ([i915#10647]) +1 other test fail [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk1/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#3555]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-1/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#12247]) +7 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#12247]) +13 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/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-dg1: NOTRUN -> [SKIP][299] ([i915#12247] / [i915#6953]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-13/igt at kms_plane_scaling@planes-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][300] ([i915#12247] / [i915#6953]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/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-rkl: NOTRUN -> [SKIP][301] ([i915#12247] / [i915#6953]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/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-25 at pipe-b: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#12247]) +7 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-3/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#6953]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-2/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][304] ([i915#12247] / [i915#3555]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-3/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#12247] / [i915#6953]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/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][306] ([i915#12247]) +8 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#12247] / [i915#6953]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-8/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5 at pipe-c: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#12247]) +7 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-8/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5 at pipe-c.html * igt at kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#5354]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-2/igt at kms_pm_backlight@fade-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][310] ([i915#5354]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][311] ([i915#9812]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-4/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#9685]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-7/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#9685]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-5/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#3828]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-5/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu: [PASS][315] -> [FAIL][316] ([i915#9295]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-3/igt at kms_pm_dc@dc6-dpms.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-9/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-tglu-1: NOTRUN -> [SKIP][317] ([i915#9685]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][318] ([i915#3828]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-4/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#8430]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-7/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#9519]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-3/igt at kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][321] ([i915#9519]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-13/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [PASS][322] -> [SKIP][323] ([i915#9519]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-7/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-1/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][324] ([i915#4077]) +9 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-13/igt at kms_pm_rpm@fences.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][325] -> [SKIP][326] ([i915#9519]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-4/igt at kms_pm_rpm@modeset-lpsp.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-11/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: [PASS][327] -> [INCOMPLETE][328] ([i915#10553]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk1/igt at kms_pm_rpm@system-suspend-modeset.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk6/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][329] ([i915#6524]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-14/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][330] ([i915#11520]) +13 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-snb7/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html - shard-mtlp: NOTRUN -> [SKIP][331] ([i915#12316]) +4 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-7/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#11520]) +6 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-2/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html - shard-glk: NOTRUN -> [SKIP][333] ([i915#11520]) +13 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk6/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-dg1: NOTRUN -> [SKIP][334] ([i915#11520]) +7 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#9808]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-2/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#11520]) +11 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-5/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-sf: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#11520]) +10 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-6/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html - shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#11520]) +2 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_su@page_flip-p010: - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#9683]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][340] ([i915#9683]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-4/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#1072] / [i915#9732]) +14 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-5/igt at kms_psr@fbc-psr-primary-page-flip.html * igt at kms_psr@fbc-psr-primary-page-flip at edp-1: - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#9688]) +9 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-2/igt at kms_psr@fbc-psr-primary-page-flip at edp-1.html * igt at kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][343] +360 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk3/igt at kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt at kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][344] ([i915#1072] / [i915#9732]) +24 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-12/igt at kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt at kms_psr@psr-primary-render: - shard-tglu: NOTRUN -> [SKIP][345] ([i915#9732]) +16 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-6/igt at kms_psr@psr-primary-render.html * igt at kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#9732]) +9 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_psr@psr2-sprite-mmap-gtt.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#1072] / [i915#9732]) +25 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-1/igt at kms_psr@psr2-suspend.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#5289]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#12755]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-7/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][350] ([i915#13179]) +1 other test abort [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_selftest@drm_framebuffer.html * igt at kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][351] ([i915#8623]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-10/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#8623]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][353] ([i915#8623]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-5/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@query-forked-hang: - shard-rkl: [PASS][354] -> [DMESG-WARN][355] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-3/igt at kms_vblank@query-forked-hang.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-1/igt at kms_vblank@query-forked-hang.html * igt at kms_vblank@ts-continuation-modeset-rpm at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#13440]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-1/igt at kms_vblank@ts-continuation-modeset-rpm at pipe-a-hdmi-a-2.html * igt at kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][357] ([i915#9906]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-9/igt at kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][358] ([i915#9906]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-7/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#3555] / [i915#8808]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-4/igt at kms_vrr@flip-dpms.html - shard-dg2: NOTRUN -> [SKIP][360] ([i915#3555]) +2 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-8/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#11920]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at kms_vrr@lobf.html - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#11920]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-4/igt at kms_vrr@lobf.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#9906]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_vrr@seamless-rr-switch-drrs.html - shard-dg1: NOTRUN -> [SKIP][364] ([i915#9906]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][365] ([i915#2437]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk9/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-tglu-1: NOTRUN -> [SKIP][366] ([i915#2437]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-1/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][367] ([i915#2437] / [i915#9412]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-4/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][368] ([i915#2437]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-5/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@gen12-group-concurrent-oa-buffer-read: - shard-tglu: [PASS][369] -> [FAIL][370] ([i915#10538]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt at perf@gen12-group-concurrent-oa-buffer-read.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-9/igt at perf@gen12-group-concurrent-oa-buffer-read.html * igt at perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][371] ([i915#2433]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-5/igt at perf@unprivileged-single-ctx-counters.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][372] +471 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-snb5/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@most-busy-check-all: - shard-dg2: NOTRUN -> [FAIL][373] ([i915#11943]) +1 other test fail [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-4/igt at perf_pmu@most-busy-check-all.html * igt at perf_pmu@most-busy-check-all at bcs0: - shard-mtlp: [PASS][374] -> [FAIL][375] ([i915#11943]) +5 other tests fail [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-3/igt at perf_pmu@most-busy-check-all at bcs0.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-3/igt at perf_pmu@most-busy-check-all at bcs0.html * igt at perf_pmu@most-busy-check-all at rcs0: - shard-dg1: [PASS][376] -> [FAIL][377] ([i915#11943]) +4 other tests fail [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-12/igt at perf_pmu@most-busy-check-all at rcs0.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/igt at perf_pmu@most-busy-check-all at rcs0.html * igt at perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][378] ([i915#8516]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at perf_pmu@rc6-all-gts.html - shard-tglu: NOTRUN -> [SKIP][379] ([i915#8516]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-4/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][380] ([i915#8516]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-2/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][381] ([i915#3708]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-13/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][382] ([i915#3708] / [i915#4077]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][383] ([i915#3708] / [i915#4077]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-2/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-flip-hang: - shard-mtlp: NOTRUN -> [SKIP][384] ([i915#3708]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-8/igt at prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][385] ([i915#3708]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-11/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][386] ([i915#3708]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-2/igt at prime_vgem@fence-read-hang.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][387] ([i915#9917]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-4/igt at sriov_basic@enable-vfs-autoprobe-on.html - shard-rkl: NOTRUN -> [SKIP][388] ([i915#9917]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-4/igt at sriov_basic@enable-vfs-autoprobe-on.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1: - shard-tglu: NOTRUN -> [FAIL][389] ([i915#12910]) +18 other tests fail [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-2/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-2: - shard-mtlp: NOTRUN -> [FAIL][390] ([i915#12910]) +9 other tests fail [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-3/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-2.html * igt at sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][391] ([i915#9917]) +2 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at sriov_basic@enable-vfs-bind-unbind-each.html #### Possible fixes #### * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-rkl: [FAIL][392] -> [PASS][393] +1 other test pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-2/igt at gem_ctx_isolation@preservation-s3 at bcs0.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-1/igt at gem_ctx_isolation@preservation-s3 at bcs0.html - shard-tglu: [DMESG-WARN][394] -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt at gem_ctx_isolation@preservation-s3 at bcs0.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-6/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-tglu: [ABORT][396] -> [PASS][397] +1 other test pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt at gem_ctx_isolation@preservation-s3 at rcs0.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-6/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_eio@in-flight-immediate: - shard-dg1: [DMESG-WARN][398] ([i915#4423]) -> [PASS][399] +3 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-17/igt at gem_eio@in-flight-immediate.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-17/igt at gem_eio@in-flight-immediate.html * igt at gem_exec_balancer@full-pulse: - shard-dg1: [FAIL][400] ([i915#13364]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-13/igt at gem_exec_balancer@full-pulse.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-12/igt at gem_exec_balancer@full-pulse.html - shard-dg2: [FAIL][402] ([i915#13364]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-6/igt at gem_exec_balancer@full-pulse.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-1/igt at gem_exec_balancer@full-pulse.html * igt at gem_softpin@noreloc-s3: - shard-glk: [INCOMPLETE][404] ([i915#13306]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk4/igt at gem_softpin@noreloc-s3.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk1/igt at gem_softpin@noreloc-s3.html * igt at gem_userptr_blits@sync-unmap-cycles: - shard-rkl: [DMESG-WARN][406] ([i915#12964]) -> [PASS][407] +50 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-6/igt at gem_userptr_blits@sync-unmap-cycles.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-1/igt at gem_userptr_blits@sync-unmap-cycles.html * igt at gem_workarounds@suspend-resume-fd: - shard-glk: [INCOMPLETE][408] ([i915#13356]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk3/igt at gem_workarounds@suspend-resume-fd.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-glk1/igt at gem_workarounds@suspend-resume-fd.html * igt at i915_pm_rpm@gem-execbuf: - shard-rkl: [SKIP][410] ([i915#13328]) -> [PASS][411] +1 other test pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-2/igt at i915_pm_rpm@gem-execbuf.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-6/igt at i915_pm_rpm@gem-execbuf.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [DMESG-FAIL][412] ([i915#13393]) -> [PASS][413] +1 other test pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-4/igt at i915_selftest@live at workarounds.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-6/igt at i915_selftest@live at workarounds.html * igt at i915_suspend@basic-s3-without-i915: - shard-dg1: [DMESG-WARN][414] ([i915#4391] / [i915#4423]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-18/igt at i915_suspend@basic-s3-without-i915.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg1-18/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [DMESG-FAIL][416] ([i915#12964]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-1/igt at i915_suspend@fence-restore-tiled2untiled.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-rkl-5/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1: - shard-mtlp: [FAIL][418] ([i915#11808] / [i915#5956]) -> [PASS][419] +1 other test pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-2/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-5/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html * igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180: - shard-mtlp: [FAIL][420] ([i915#5138]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-4/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-7/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2: [SKIP][422] ([i915#3555]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-7/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-10/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: [FAIL][424] ([i915#11989]) -> [PASS][425] +1 other test pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-snb7/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-snb7/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-mtlp: [FAIL][426] ([i915#11989]) -> [PASS][427] +1 other test pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-8/igt at kms_flip@plain-flip-ts-check-interruptible.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-mtlp-7/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][428] ([i915#4281]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-7/igt at kms_pm_dc@dc9-dpms.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-tglu-3/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [SKIP][430] ([i915#9519]) -> [PASS][431] +1 other test pass [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-8/igt at kms_pm_rpm@dpms-non-lpsp.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/shard-dg2-6/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][432] ([i915#9519]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-ti == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12409/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 09:34:33 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 09:34:33 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_series_starting_with_=5Bv3?= =?utf-8?q?=2C1/2=5D_tests/intel/kms=5Ffrontbuffer=5Ftracking=3A_Add_skip_co?= =?utf-8?q?ndition_for_bmg_platform?= In-Reply-To: <20250109055652.405793-1-mohammed.thasleem@intel.com> References: <20250109055652.405793-1-mohammed.thasleem@intel.com> Message-ID: <173658807385.2294495.6228774488215404246@b555e5b46a47> == Series Details == Series: series starting with [v3,1/2] tests/intel/kms_frontbuffer_tracking: Add skip condition for bmg platform URL : https://patchwork.freedesktop.org/series/143304/ State : failure == Summary == CI Bug Log - changes from XEIGT_8182_full -> XEIGTPW_12412_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12412_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12412_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_12412_full: ### IGT changes ### #### Possible regressions #### * igt at kms_fbcon_fbt@fbc-suspend: - shard-lnl: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-4/igt at kms_fbcon_fbt@fbc-suspend.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-6/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][3] +8 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_hdr@static-toggle-suspend at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][4] +1 other test abort [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at kms_hdr@static-toggle-suspend at pipe-a-dp-2.html * igt at kms_plane_cursor@overlay at pipe-c-dp-2-size-64: - shard-bmg: NOTRUN -> [INCOMPLETE][5] +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/igt at kms_plane_cursor@overlay at pipe-c-dp-2-size-64.html * igt at xe_sysfs_timeslice_duration@timeslice_duration_us-timeout at vcs: - shard-dg2-set2: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_sysfs_timeslice_duration@timeslice_duration_us-timeout at vcs.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at xe_sysfs_timeslice_duration@timeslice_duration_us-timeout at vcs.html #### Warnings #### * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][8] ([Intel XE#2333]) -> [SKIP][9] +67 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][10] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][12] ([Intel XE#2312]) -> [SKIP][13] +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [INCOMPLETE][14] ([Intel XE#2050]) -> [SKIP][15] [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at xe_wedged@wedged-at-any-timeout: - shard-dg2-set2: [SKIP][16] ([Intel XE#1130]) -> [FAIL][17] [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_wedged@wedged-at-any-timeout.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at xe_wedged@wedged-at-any-timeout.html Known issues ------------ Here are the changes found in XEIGTPW_12412_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [PASS][18] -> [FAIL][19] ([Intel XE#3701] / [Intel XE#3718] / [Intel XE#827]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-d-dp-2: - shard-bmg: [PASS][20] -> [FAIL][21] ([Intel XE#3746]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-d-dp-2.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-d-dp-2.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [PASS][22] -> [FAIL][23] ([Intel XE#911]) +3 other tests fail [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-6/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#873]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_async_flips@invalid-async-flip.html - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#873]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-463/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#316]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1407]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2327]) +4 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1467]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-4/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +5 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-4/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +8 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2314] / [Intel XE#2894]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2191]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#367]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-463/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#367]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +6 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-4/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#455] / [Intel XE#787]) +26 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-435/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-b-edp-1: - shard-lnl: [PASS][39] -> [INCOMPLETE][40] ([Intel XE#3862]) +1 other test incomplete [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-2/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-b-edp-1.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-b-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#3432]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#3432]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-6/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#787]) +153 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-463/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2887]) +5 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/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 at pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][45] ([Intel XE#3124]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][46] ([Intel XE#1727]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-433/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-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#2907]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#314]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at kms_cdclk@mode-transition at pipe-a-dp-2.html * igt at kms_cdclk@plane-scaling at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1152]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at kms_cdclk@plane-scaling at pipe-b-dp-4.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#306]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-2/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#306]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-463/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2252]) +9 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#373]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-7/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#373]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][55] ([Intel XE#1178]) +1 other test fail [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/igt at kms_content_protection@atomic.html * igt at kms_content_protection@legacy at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][56] ([Intel XE#1178]) +3 other tests fail [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at kms_content_protection@legacy at pipe-a-dp-2.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#3278]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-7/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2321]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1424]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-1/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#308]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-433/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-suspend: - shard-bmg: [PASS][61] -> [INCOMPLETE][62] ([Intel XE#3878]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_crc@cursor-suspend.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-d-dp-2: - shard-bmg: NOTRUN -> [INCOMPLETE][63] ([Intel XE#3878]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_cursor_crc@cursor-suspend at pipe-d-dp-2.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#323]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-463/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2286]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#309]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-5/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#2291]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: NOTRUN -> [FAIL][69] ([Intel XE#1475]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#455]) +10 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2374]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1135]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-463/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1421]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-4/igt at kms_flip@2x-blocking-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-dpms: - shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#2316]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_flip@2x-flip-vs-dpms.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][76] -> [FAIL][77] ([Intel XE#3321]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/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-dp2-hdmi-a3: - shard-bmg: [PASS][78] -> [FAIL][79] ([Intel XE#3288] / [Intel XE#3321]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-dp2-hdmi-a3.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/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-interruptible at cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][80] -> [FAIL][81] ([Intel XE#301]) +4 other tests fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/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 ad-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][82] ([Intel XE#301]) +3 other tests fail [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at ad-hdmi-a6-dp4.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1: - shard-lnl: [PASS][83] -> [FAIL][84] ([Intel XE#886]) +2 other tests fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-4/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-6/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1397]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-3/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling: - shard-bmg: [PASS][87] -> [SKIP][88] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2293]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#651]) +6 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2311]) +19 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#656]) +11 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2312]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte.html * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#651]) +9 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#653]) +11 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-rte: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2136] / [Intel XE#2231]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#658]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2313]) +16 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3: - shard-bmg: [PASS][99] -> [INCOMPLETE][100] ([Intel XE#3966]) +1 other test incomplete [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#3544]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html * igt at kms_histogram@algo-basic: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#3897]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#3897]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-8/igt at kms_histogram@algo-color.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#346]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#346]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#356]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-3/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2486]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at kms_panel_fitting@legacy.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][108] ([Intel XE#616]) +4 other tests fail [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#599]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-6/igt at kms_plane_lowres@tiling-x at pipe-b-edp-1.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#3307]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-2/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/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-modifiers at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#2763]) +11 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-3/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2763]) +9 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2392]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: NOTRUN -> [FAIL][116] ([Intel XE#1430]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#1439] / [Intel XE#836]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1439] / [Intel XE#3141]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-2/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#2893]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-5/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#1489]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#1489]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-435/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1128]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-4/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html * igt at kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1406]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-1/igt at kms_psr@pr-primary-blt.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2234]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/igt at kms_psr@psr2-primary-render.html * igt at kms_rotation_crc@multiplane-rotation: - shard-bmg: [PASS][127] -> [SKIP][128] ([Intel XE#3007]) +7 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_rotation_crc@multiplane-rotation.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_rotation_crc@multiplane-rotation.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2330]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#3414] / [Intel XE#3904]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#1435]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#1500]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#1499]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@max-min: - shard-lnl: [PASS][134] -> [FAIL][135] ([Intel XE#1522]) +1 other test fail [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-6/igt at kms_vrr@max-min.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-1/igt at kms_vrr@max-min.html * igt at kms_vrr@negative-basic: - shard-bmg: [PASS][136] -> [SKIP][137] ([Intel XE#1499]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_vrr@negative-basic.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1499]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-4/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#1091] / [Intel XE#2849]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-463/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#1280] / [Intel XE#455]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2905]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#3889]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#3889]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-8/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#2905]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-1/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2905]) +5 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][146] -> [TIMEOUT][147] ([Intel XE#1473] / [Intel XE#402]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-463/igt at xe_evict@evict-beng-mixed-many-threads-small.html - shard-bmg: NOTRUN -> [INCOMPLETE][148] ([Intel XE#1473]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-mixed-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#688]) +4 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-6/igt at xe_evict@evict-beng-mixed-threads-large-multi-vm.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][150] -> [TIMEOUT][151] ([Intel XE#1473]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_balancer@many-parallel-userptr-invalidate: - shard-bmg: [PASS][152] -> [SKIP][153] ([Intel XE#1130]) +20 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_exec_balancer@many-parallel-userptr-invalidate.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at xe_exec_balancer@many-parallel-userptr-invalidate.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr: - shard-dg2-set2: [PASS][154] -> [SKIP][155] ([Intel XE#1392]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2322]) +4 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1392]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-5/igt at xe_exec_basic@multigpu-once-userptr.html * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#288]) +10 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html * igt at xe_gt_freq@freq_suspend: - shard-dg2-set2: [PASS][159] -> [ABORT][160] ([Intel XE#2625]) +2 other tests abort [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_gt_freq@freq_suspend.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at xe_gt_freq@freq_suspend.html * igt at xe_live_ktest@xe_bo: - shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#1192]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#1192]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-7/igt at xe_live_ktest@xe_mocs.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#512]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at xe_mmap@small-bar.html * igt at xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2457]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at xe_module_load@force-load.html * igt at xe_module_load@load: - shard-bmg: ([PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [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], [PASS][208], [SKIP][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214]) ([Intel XE#2457]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/igt at xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at xe_module_load@load.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: NOTRUN -> [SKIP][215] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at xe_oa@disabled-read-error.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][216] ([Intel XE#2248]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][217] ([Intel XE#1420]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at xe_pat@pat-index-xehpc.html - shard-dg2-set2: NOTRUN -> [SKIP][218] ([Intel XE#2838] / [Intel XE#979]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][219] ([Intel XE#1173]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-435/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][220] ([Intel XE#2284]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-3/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-vm-bind-prefetch: - shard-dg2-set2: [PASS][221] -> [ABORT][222] ([Intel XE#1358]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_pm@s2idle-vm-bind-prefetch.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-prefetch.html * igt at xe_pm@s4-vm-bind-prefetch: - shard-lnl: [PASS][223] -> [ABORT][224] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-6/igt at xe_pm@s4-vm-bind-prefetch.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-2/igt at xe_pm@s4-vm-bind-prefetch.html * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: NOTRUN -> [SKIP][225] ([Intel XE#944]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][226] ([Intel XE#944]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-4/igt at xe_query@multigpu-query-topology-l3-bank-mask.html * igt at xe_vm@munmap-style-unbind-userptr-inval-front: - shard-bmg: NOTRUN -> [SKIP][227] ([Intel XE#1130]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at xe_vm@munmap-style-unbind-userptr-inval-front.html * igt at xe_wedged@wedged-mode-toggle: - shard-bmg: [PASS][228] -> [ABORT][229] ([Intel XE#3084]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_wedged@wedged-mode-toggle.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at xe_wedged@wedged-mode-toggle.html #### Possible fixes #### * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][230] ([Intel XE#3719]) -> [PASS][231] +3 other tests pass [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-1/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][232] ([Intel XE#2136]) -> [PASS][233] +2 other tests pass [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html - shard-bmg: [SKIP][234] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][235] +1 other test pass [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][236] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][238] ([Intel XE#3862]) -> [PASS][239] +1 other test pass [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][240] ([Intel XE#3124]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-433/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-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][242] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][244] ([Intel XE#2291]) -> [PASS][245] +1 other test pass [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipa-legacy: - shard-bmg: [INCOMPLETE][246] ([Intel XE#3226]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html * igt at kms_cursor_legacy@torture-bo at pipe-a: - shard-lnl: [DMESG-WARN][248] ([Intel XE#877]) -> [PASS][249] +1 other test pass [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_cursor_legacy@torture-bo at pipe-a.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-4/igt at kms_cursor_legacy@torture-bo at pipe-a.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][250] ([Intel XE#1340]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][252] ([Intel XE#3321]) -> [PASS][253] +1 other test pass [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][254] ([Intel XE#2882]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html * igt at kms_flip@absolute-wf_vblank: - shard-lnl: [INCOMPLETE][256] ([Intel XE#2049]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-7/igt at kms_flip@absolute-wf_vblank.html * igt at kms_flip@absolute-wf_vblank at b-edp1: - shard-lnl: [INCOMPLETE][258] -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank at b-edp1.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-lnl-7/igt at kms_flip@absolute-wf_vblank at b-edp1.html * igt at kms_flip@basic-flip-vs-wf_vblank: - shard-dg2-set2: [FAIL][260] ([Intel XE#3098]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@basic-flip-vs-wf_vblank.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at kms_flip@basic-flip-vs-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2-set2: [INCOMPLETE][262] ([Intel XE#3937]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][264] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][265] +1 other test pass [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2: - shard-bmg: [FAIL][266] ([Intel XE#3288]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: [FAIL][268] ([Intel XE#3321]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: - shard-dg2-set2: [FAIL][270] ([Intel XE#301]) -> [PASS][271] +3 other tests pass [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank at d-dp4: - shard-dg2-set2: [FAIL][272] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html * igt at kms_flip@flip-vs-rmfb at d-hdmi-a3: - shard-bmg: [INCOMPLETE][274] -> [PASS][275] +3 other tests pass [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][276] ([Intel XE#2597]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible.html - shard-dg2-set2: [INCOMPLETE][278] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][279] +1 other test pass [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@flip-vs-suspend-interruptible.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3: - shard-bmg: [INCOMPLETE][280] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend at c-dp4: - shard-dg2-set2: [INCOMPLETE][282] ([Intel XE#2049]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs-suspend at c-dp4.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-435/igt at kms_flip@flip-vs-suspend at c-dp4.html * igt at kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][284] ([Intel XE#3012]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_joiner@basic-force-big-joiner.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_lease@possible-crtcs-filtering: - shard-bmg: [SKIP][286] ([Intel XE#3007]) -> [PASS][287] +8 other tests pass [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_lease@possible-crtcs-filtering.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_lease@possible-crtcs-filtering.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2-set2: [SKIP][288] ([Intel XE#2423] / [i915#2575]) -> [PASS][289] +5 other tests pass [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-bmg: [SKIP][290] ([Intel XE#2446]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg2-set2: [SKIP][292] ([Intel XE#2446]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-435/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-bmg: [DMESG-WARN][294] -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@system-suspend-modeset.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][296] ([Intel XE#1435]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at xe_exec_basic@many-execqueues-userptr-invalidate-race: - shard-bmg: [SKIP][298] ([Intel XE#1130]) -> [PASS][299] +18 other tests pass [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-dg2-set2: [SKIP][300] ([Intel XE#1392]) -> [PASS][301] +1 other test pass [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt at xe_exec_basic@once-rebind: - shard-dg2-set2: [SKIP][302] ([Intel XE#1130]) -> [PASS][303] +11 other tests pass [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_basic@once-rebind.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-463/igt at xe_exec_basic@once-rebind.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: [SKIP][304] ([Intel XE#1192]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_live_ktest@xe_dma_buf.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_module_load@load: - shard-dg2-set2: ([PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [SKIP][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331]) ([Intel XE#378]) -> ([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], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_module_load@load.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_module_load@load.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_module_load@load.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_module_load@load.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_module_load@load.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_module_load@load.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_module_load@load.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_module_load@load.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_module_load@load.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_module_load@load.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_module_load@load.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_module_load@load.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_module_load@load.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_module_load@load.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_module_load@load.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_module_load@load.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_module_load@load.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_module_load@load.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_module_load@load.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_module_load@load.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_module_load@load.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_module_load@load.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_module_load@load.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_module_load@load.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_module_load@load.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_module_load@load.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at xe_module_load@load.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at xe_module_load@load.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at xe_module_load@load.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-433/igt at xe_module_load@load.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-433/igt at xe_module_load@load.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-433/igt at xe_module_load@load.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-463/igt at xe_module_load@load.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-463/igt at xe_module_load@load.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at xe_module_load@load.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at xe_module_load@load.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at xe_module_load@load.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-435/igt at xe_module_load@load.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-433/igt at xe_module_load@load.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-435/igt at xe_module_load@load.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at xe_module_load@load.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at xe_module_load@load.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at xe_module_load@load.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-435/igt at xe_module_load@load.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-463/igt at xe_module_load@load.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-463/igt at xe_module_load@load.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at xe_module_load@load.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at xe_module_load@load.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at xe_module_load@load.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at xe_module_load@load.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][356] ([Intel XE#2423] / [i915#2575]) -> [SKIP][357] ([Intel XE#3768]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_async_flips@invalid-async-flip-atomic.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at kms_async_flips@invalid-async-flip-atomic.html - shard-bmg: [SKIP][358] ([Intel XE#3007]) -> [SKIP][359] ([Intel XE#3768]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: [SKIP][360] ([Intel XE#1124]) -> [SKIP][361] ([Intel XE#2136] / [Intel XE#2231]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][362] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][363] ([Intel XE#1124]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][364] ([Intel XE#2136]) -> [SKIP][365] ([Intel XE#1124]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][366] ([Intel XE#2887]) -> [SKIP][367] ([Intel XE#2136] / [Intel XE#2231]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][368] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][369] ([Intel XE#455] / [Intel XE#787]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][370] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][371] ([Intel XE#2887]) +2 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][372] ([Intel XE#2136]) -> [SKIP][373] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-463/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][374] ([Intel XE#2325]) -> [SKIP][375] ([Intel XE#3007]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_chamelium_color@ctm-green-to-red.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: [SKIP][376] ([Intel XE#3007]) -> [SKIP][377] ([Intel XE#2252]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html - shard-dg2-set2: [SKIP][378] ([Intel XE#2423] / [i915#2575]) -> [SKIP][379] ([Intel XE#373]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-436/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt at kms_content_protection@atomic-dpms: - shard-bmg: [FAIL][380] ([Intel XE#1178]) -> [SKIP][381] ([Intel XE#2341]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_content_protection@atomic-dpms.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][382] ([Intel XE#3007]) -> [SKIP][383] ([Intel XE#2341]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_content_protection@mei-interface.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at kms_content_protection@mei-interface.html * igt at kms_cursor_crc@cursor-onscreen-128x42: - shard-bmg: [SKIP][384] ([Intel XE#2320]) -> [SKIP][385] ([Intel XE#3007]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_cursor_crc@cursor-onscreen-128x42.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_cursor_crc@cursor-onscreen-128x42.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][386] ([Intel XE#3007]) -> [SKIP][387] ([Intel XE#2320]) +1 other test skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg2-set2: [SKIP][388] ([Intel XE#2423] / [i915#2575]) -> [SKIP][389] ([Intel XE#455]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-463/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][390] ([Intel XE#877]) -> [SKIP][391] ([Intel XE#2291]) [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-bmg: [SKIP][392] ([Intel XE#2244]) -> [SKIP][393] ([Intel XE#2136] / [Intel XE#2231]) [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [SKIP][394] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][395] ([Intel XE#1695]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][396] ([Intel XE#3007]) -> [SKIP][397] ([Intel XE#2372]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_feature_discovery@chamelium.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: [SKIP][398] ([Intel XE#2423] / [i915#2575]) -> [SKIP][399] ([Intel XE#701]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_feature_discovery@chamelium.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at kms_feature_discovery@chamelium.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-bmg: [SKIP][400] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][401] ([Intel XE#2136] / [Intel XE#2231]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][402] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][403] ([Intel XE#2293] / [Intel XE#2380]) [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][404] ([Intel XE#2136]) -> [SKIP][405] ([Intel XE#455]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][406] ([Intel XE#2311]) -> [SKIP][407] ([Intel XE#2312]) +8 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-bmg: [SKIP][408] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][409] ([Intel XE#2311]) +3 other tests skip [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [FAIL][410] ([Intel XE#2333]) -> [SKIP][411] ([Intel XE#2136] / [Intel XE#2231]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][412] ([Intel XE#2333]) -> [SKIP][413] ([Intel XE#2312]) +3 other tests skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][414] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][415] ([Intel XE#651]) +2 other tests skip [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][416] ([Intel XE#2136]) -> [SKIP][417] ([Intel XE#651]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][418] ([Intel XE#2311]) -> [SKIP][419] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][420] ([Intel XE#2312]) -> [SKIP][421] ([Intel XE#2311]) +4 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][422] ([Intel XE#2136]) -> [SKIP][423] ([Intel XE#653]) +2 other tests skip [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][424] ([Intel XE#2313]) -> [SKIP][425] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][426] ([Intel XE#2313]) -> [SKIP][427] ([Intel XE#2312]) +11 other tests skip [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: - shard-bmg: [SKIP][428] ([Intel XE#2312]) -> [SKIP][429] ([Intel XE#2313]) +2 other tests skip [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][430] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][431] ([Intel XE#2313]) +4 other tests skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html - shard-dg2-set2: [SKIP][432] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][433] ([Intel XE#653]) +1 other test skip [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-bmg: [SKIP][434] ([Intel XE#1489]) -> [SKIP][435] ([Intel XE#2136] / [Intel XE#2231]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][436] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][437] ([Intel XE#2387]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2-set2: [SKIP][438] ([Intel XE#2136]) -> [SKIP][439] ([Intel XE#1122]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-464/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][440] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][441] ([Intel XE#2234] / [Intel XE#2850]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr@fbc-pr-sprite-blt.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at kms_psr@fbc-pr-sprite-blt.html - shard-dg2-set2: [SKIP][442] ([Intel XE#2136]) -> [SKIP][443] ([Intel XE#2850] / [Intel XE#929]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr@fbc-pr-sprite-blt.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-435/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_psr@fbc-psr2-sprite-blt: - shard-bmg: [SKIP][444] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][445] ([Intel XE#2136] / [Intel XE#2231]) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_psr@fbc-psr2-sprite-blt.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_psr@fbc-psr2-sprite-blt.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][446] ([Intel XE#3007]) -> [SKIP][447] ([Intel XE#3414] / [Intel XE#3904]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg2-set2: [SKIP][448] ([Intel XE#2423] / [i915#2575]) -> [SKIP][449] ([Intel XE#3414]) [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: [SKIP][450] ([Intel XE#756]) -> [SKIP][451] ([Intel XE#3007]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_writeback@writeback-check-output-xrgb2101010.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][452] ([Intel XE#1130]) -> [SKIP][453] ([Intel XE#1280] / [Intel XE#455]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_compute_preempt@compute-threadgroup-preempt.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_eudebug@basic-vm-bind-extended-discovery: - shard-bmg: [SKIP][454] ([Intel XE#1130]) -> [SKIP][455] ([Intel XE#2905]) +1 other test skip [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-8/igt at xe_eudebug@basic-vm-bind-extended-discovery.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][456] ([Intel XE#1473]) -> [INCOMPLETE][457] ([Intel XE#1473]) +1 other test incomplete [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_evict@evict-beng-mixed-threads-large.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][458] ([Intel XE#1000]) -> [TIMEOUT][459] ([Intel XE#1473]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_evict@evict-beng-threads-large.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-bmg: [INCOMPLETE][460] ([Intel XE#1473]) -> [TIMEOUT][461] ([Intel XE#1473]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_evict@evict-mixed-many-threads-large.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [FAIL][462] ([Intel XE#1000]) -> [TIMEOUT][463] ([Intel XE#1473] / [Intel XE#2472]) +1 other test timeout [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_evict@evict-mixed-many-threads-small.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-4/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-bmg: [SKIP][464] ([Intel XE#2322]) -> [SKIP][465] ([Intel XE#1130]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-5/igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][466] ([Intel XE#1130]) -> [SKIP][467] ([Intel XE#2322]) [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-2/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@many-execqueues-basic-imm: - shard-dg2-set2: [SKIP][468] ([Intel XE#1130]) -> [SKIP][469] ([Intel XE#288]) [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@many-execqueues-basic-imm.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-435/igt at xe_exec_fault_mode@many-execqueues-basic-imm.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][470] ([Intel XE#1130]) -> [SKIP][471] ([Intel XE#2360]) [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-432/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][472] ([Intel XE#2833]) -> [SKIP][473] ([Intel XE#1192]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_live_ktest@xe_eudebug.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html * igt at xe_peer2peer@read: - shard-bmg: [SKIP][474] ([Intel XE#2557]) -> [SKIP][475] ([Intel XE#2427]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_peer2peer@read.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at xe_peer2peer@read.html - shard-dg2-set2: [SKIP][476] ([Intel XE#1061]) -> [FAIL][477] ([Intel XE#1173]) [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_peer2peer@read.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-435/igt at xe_peer2peer@read.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][478] ([Intel XE#1130]) -> [SKIP][479] ([Intel XE#944]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_query@multigpu-query-uc-fw-version-huc.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-bmg-1/igt at xe_query@multigpu-query-uc-fw-version-huc.html - shard-dg2-set2: [SKIP][480] ([Intel XE#1130]) -> [SKIP][481] ([Intel XE#944]) [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-huc.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-huc.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [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#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#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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [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#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [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#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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#3746]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3746 [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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3878]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3878 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3937 [Intel XE#3966]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3966 [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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [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#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#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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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#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_8182 -> IGTPW_12412 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12412: 12412 IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 10:23:42 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 10:23:42 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_drm-uapi/xe=3A_Sync_with_O?= =?utf-8?q?A_uapi_updates_=28rev2=29?= In-Reply-To: <20250109032331.2774067-1-ashutosh.dixit@intel.com> References: <20250109032331.2774067-1-ashutosh.dixit@intel.com> Message-ID: <173659102206.2315546.12319738999720202988@b555e5b46a47> == Series Details == Series: drm-uapi/xe: Sync with OA uapi updates (rev2) URL : https://patchwork.freedesktop.org/series/143297/ State : failure == Summary == CI Bug Log - changes from XEIGT_8182_full -> XEIGTPW_12413_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12413_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12413_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_12413_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a2: - shard-dg2-set2: NOTRUN -> [FAIL][1] +3 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a2.html * igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2.html * igt at xe_pm_residency@cpg-basic: - shard-dg2-set2: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_pm_residency@cpg-basic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at xe_pm_residency@cpg-basic.html Known issues ------------ Here are the changes found in XEIGTPW_12413_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#873]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-8/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@linear-64bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-4/igt at kms_big_fb@linear-64bpp-rotate-270.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +5 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-64bpp-rotate-0: - shard-bmg: [PASS][8] -> [SKIP][9] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_big_fb@x-tiled-64bpp-rotate-0.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_big_fb@x-tiled-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1467]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-3/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +5 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-7/igt at kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +8 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2314] / [Intel XE#2894]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#2191]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#367]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-463/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#367]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-8/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-7/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#455] / [Intel XE#787]) +28 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][22] -> [INCOMPLETE][23] ([Intel XE#3862]) +1 other test incomplete [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#3432]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#3432]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-4/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#787]) +160 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2887]) +6 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-5/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 at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][28] ([Intel XE#2692]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2907]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#306]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-6/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#306]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2252]) +9 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-8/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#373]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-2/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#373]) +5 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2341]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_content_protection@atomic.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][36] ([Intel XE#1178]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at kms_content_protection@lic-type-0 at pipe-a-dp-2.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#3278]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-3/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#3007]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1424]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-4/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#308]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2321]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2286]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-8/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#309]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-1/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#2291]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#323]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([i915#3804]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-435/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6.html * igt at kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2244]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-4/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#455]) +7 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2374]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1135]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1421]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-4/igt at kms_flip@2x-blocking-absolute-wf_vblank.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#2316]) +7 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at kms_flip@2x-nonexisting-fb.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][55] -> [FAIL][56] ([Intel XE#2882]) +1 other test fail [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible at ab-hdmi-a6-dp4.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible at ab-hdmi-a6-dp4.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2: - shard-dg2-set2: NOTRUN -> [FAIL][57] ([Intel XE#301] / [Intel XE#3321]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2: - shard-dg2-set2: NOTRUN -> [FAIL][58] ([Intel XE#301]) +3 other tests fail [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html * igt at kms_flip@flip-vs-expired-vblank at c-dp2: - shard-bmg: [PASS][59] -> [INCOMPLETE][60] ([Intel XE#2635]) +1 other test incomplete [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at c-dp2.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank at c-dp2.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [PASS][61] -> [FAIL][62] ([Intel XE#886]) +1 other test fail [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-4/igt at kms_flip@plain-flip-ts-check-interruptible.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-5/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip@wf_vblank-ts-check-interruptible at a-dp2: - shard-bmg: [PASS][63] -> [FAIL][64] ([Intel XE#2882]) +5 other tests fail [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@wf_vblank-ts-check-interruptible at a-dp2.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at kms_flip@wf_vblank-ts-check-interruptible at a-dp2.html * igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1397]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-1/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-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#2136]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-2/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2293]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#651]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2311]) +21 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][71] ([Intel XE#2333]) +8 other tests fail [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-dg2-set2: [PASS][72] -> [SKIP][73] ([Intel XE#2136]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#656]) +11 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-3/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#651]) +8 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#653]) +12 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2312]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#658]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2313]) +15 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#3544]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html * igt at kms_histogram@algo-basic: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#3897]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#3897]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-7/igt at kms_histogram@algo-color.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#346]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2934]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-5/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#2925]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_lease@setcrtc-implicit-plane: - shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#3007]) +6 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_lease@setcrtc-implicit-plane.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_lease@setcrtc-implicit-plane.html - shard-dg2-set2: [PASS][88] -> [SKIP][89] ([Intel XE#2423] / [i915#2575]) +7 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_lease@setcrtc-implicit-plane.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_lease@setcrtc-implicit-plane.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#356]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-4/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2486]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_panel_fitting@legacy.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][92] ([Intel XE#616]) +4 other tests fail [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-435/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#599]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-8/igt at kms_plane_lowres@tiling-x at pipe-b-edp-1.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2571]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#3307]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-5/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2763]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/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-modifiers at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#2763]) +11 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-8/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2763]) +14 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2392]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-8/igt at kms_pm_dc@dc5-psr.html - shard-lnl: [PASS][101] -> [FAIL][102] ([Intel XE#718]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_pm_dc@dc5-psr.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-5/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2136] / [Intel XE#2231]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#1439] / [Intel XE#836]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1439] / [Intel XE#3141]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-2/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#1489]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2893]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-4/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#1489]) +5 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2850] / [Intel XE#929]) +7 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html * igt at kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1406]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-7/igt at kms_psr@pr-primary-blt.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2234]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-8/igt at kms_psr@psr2-primary-render.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2330]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#3414] / [Intel XE#3904]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#1435]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [PASS][116] -> [FAIL][117] ([Intel XE#2883]) +2 other tests fail [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-2/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1500]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@ts-continuation-suspend: - shard-dg2-set2: NOTRUN -> [ABORT][119] ([Intel XE#2625]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#1499]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1499]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-6/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#1091] / [Intel XE#2849]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_ccs@ctrl-surf-copy-new-ctx: - shard-dg2-set2: [PASS][123] -> [SKIP][124] ([Intel XE#1130]) +15 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_ccs@ctrl-surf-copy-new-ctx.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at xe_ccs@ctrl-surf-copy-new-ctx.html * igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1280] / [Intel XE#455]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#3889]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#3889]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-7/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#2905]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-4/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2905]) +5 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: NOTRUN -> [INCOMPLETE][130] ([Intel XE#1473]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-mixed-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#688]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-3/igt at xe_evict@evict-beng-mixed-threads-large-multi-vm.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][132] -> [TIMEOUT][133] ([Intel XE#1473]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-dg2-set2: [PASS][134] -> [SKIP][135] ([Intel XE#1392]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2322]) +4 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-5/igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1392]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-3/igt at xe_exec_basic@multigpu-once-userptr.html * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#288]) +11 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-463/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2905]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-463/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_exec_threads@threads-mixed-fd-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#1130]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at xe_exec_threads@threads-mixed-fd-userptr.html * igt at xe_gt_freq@freq_suspend: - shard-dg2-set2: [PASS][141] -> [ABORT][142] ([Intel XE#2625]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_gt_freq@freq_suspend.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at xe_gt_freq@freq_suspend.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2229]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1192]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-7/igt at xe_live_ktest@xe_mocs.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#512]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at xe_mmap@small-bar.html * igt at xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2457]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at xe_module_load@force-load.html * igt at xe_module_load@load: - shard-bmg: ([PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170]) -> ([PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [SKIP][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196]) ([Intel XE#2457]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-8/igt at xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-8/igt at xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-8/igt at xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-5/igt at xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-5/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-8/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-5/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-5/igt at xe_module_load@load.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at xe_oa@disabled-read-error.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][198] ([Intel XE#2248]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-8/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][199] ([Intel XE#1420]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at xe_pat@pat-index-xehpc.html - shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#2838] / [Intel XE#979]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][201] ([Intel XE#1173]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][202] ([Intel XE#2284]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-3/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][203] ([Intel XE#2284] / [Intel XE#366]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-463/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s2idle-d3hot-basic-exec: - shard-dg2-set2: NOTRUN -> [ABORT][204] ([Intel XE#1358]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at xe_pm@s2idle-d3hot-basic-exec.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [PASS][205] -> [ABORT][206] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_pm@s2idle-vm-bind-unbind-all.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_pm@s4-d3hot-basic-exec: - shard-lnl: [PASS][207] -> [ABORT][208] ([Intel XE#1358] / [Intel XE#1607]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at xe_pm@s4-d3hot-basic-exec.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-2/igt at xe_pm@s4-d3hot-basic-exec.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][209] -> [FAIL][210] ([Intel XE#958]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-4/igt at xe_pm_residency@toggle-gt-c6.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-4/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][211] ([Intel XE#944]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-3/igt at xe_query@multigpu-query-topology-l3-bank-mask.html * igt at xe_vm@large-userptr-misaligned-binds-1073741824: - shard-bmg: NOTRUN -> [SKIP][212] ([Intel XE#1130]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at xe_vm@large-userptr-misaligned-binds-1073741824.html * igt at xe_vm@mixed-userptr-misaligned-binds-3145728: - shard-bmg: [PASS][213] -> [SKIP][214] ([Intel XE#1130]) +15 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_vm@mixed-userptr-misaligned-binds-3145728.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at xe_vm@mixed-userptr-misaligned-binds-3145728.html #### Possible fixes #### * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][215] ([Intel XE#827]) -> [PASS][216] +1 other test pass [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][217] ([Intel XE#3719]) -> [PASS][218] +3 other tests pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-4/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][219] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-8/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][221] ([Intel XE#3862]) -> [PASS][222] +1 other test pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-463/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][223] ([Intel XE#3124]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/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-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][225] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][227] ([Intel XE#2291]) -> [PASS][228] +2 other tests pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipa-legacy: - shard-bmg: [INCOMPLETE][229] ([Intel XE#3226]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html * igt at kms_cursor_legacy@torture-bo at pipe-a: - shard-lnl: [DMESG-WARN][231] ([Intel XE#877]) -> [PASS][232] +1 other test pass [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_cursor_legacy@torture-bo at pipe-a.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-2/igt at kms_cursor_legacy@torture-bo at pipe-a.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][233] ([Intel XE#1340]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][235] ([Intel XE#3288] / [Intel XE#3321]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/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 at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][237] ([Intel XE#2882]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/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 cd-dp2-hdmi-a3: - shard-bmg: [FAIL][239] ([Intel XE#3321]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html * igt at kms_flip@2x-nonexisting-fb-interruptible: - shard-bmg: [SKIP][241] ([Intel XE#2316]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-nonexisting-fb-interruptible.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at kms_flip@2x-nonexisting-fb-interruptible.html * igt at kms_flip@absolute-wf_vblank: - shard-lnl: [INCOMPLETE][243] ([Intel XE#2049]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-7/igt at kms_flip@absolute-wf_vblank.html * igt at kms_flip@absolute-wf_vblank at b-edp1: - shard-lnl: [INCOMPLETE][245] -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank at b-edp1.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-7/igt at kms_flip@absolute-wf_vblank at b-edp1.html * igt at kms_flip@basic-flip-vs-wf_vblank: - shard-dg2-set2: [FAIL][247] ([Intel XE#3098]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@basic-flip-vs-wf_vblank.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at kms_flip@basic-flip-vs-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2-set2: [INCOMPLETE][249] ([Intel XE#3937]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4: - shard-dg2-set2: [INCOMPLETE][251] -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][253] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2: - shard-bmg: [FAIL][255] ([Intel XE#3288]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html * igt at kms_flip@flip-vs-rmfb at d-hdmi-a3: - shard-bmg: [INCOMPLETE][257] -> [PASS][258] +3 other tests pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][259] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs-suspend.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-435/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][261] ([Intel XE#2597]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3: - shard-bmg: [INCOMPLETE][263] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend at c-dp4: - shard-dg2-set2: [INCOMPLETE][265] ([Intel XE#2049]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs-suspend at c-dp4.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-435/igt at kms_flip@flip-vs-suspend at c-dp4.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-bmg: [SKIP][267] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][268] +2 other tests pass [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][269] ([Intel XE#2136]) -> [PASS][270] +4 other tests pass [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][271] ([Intel XE#455]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_hdr@invalid-hdr.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-463/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][273] ([Intel XE#3012]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_joiner@basic-force-big-joiner.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_lease@possible-crtcs-filtering: - shard-bmg: [SKIP][275] ([Intel XE#3007]) -> [PASS][276] +8 other tests pass [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_lease@possible-crtcs-filtering.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_lease@possible-crtcs-filtering.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2-set2: [SKIP][277] ([Intel XE#2423] / [i915#2575]) -> [PASS][278] +8 other tests pass [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-435/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][279] ([Intel XE#718]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-7/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-bmg: [SKIP][281] ([Intel XE#2446]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg2-set2: [SKIP][283] ([Intel XE#2446]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [ABORT][285] ([Intel XE#2625]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_pm_rpm@system-suspend-modeset.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at kms_pm_rpm@system-suspend-modeset.html - shard-bmg: [DMESG-WARN][287] -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@system-suspend-modeset.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][289] ([Intel XE#1435]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][291] ([Intel XE#899]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [FAIL][293] ([Intel XE#2159]) -> [PASS][294] +1 other test pass [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_vrr@cmrr at pipe-a-edp-1.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-lnl-1/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at xe_exec_basic@many-execqueues-userptr-invalidate-race: - shard-bmg: [SKIP][295] ([Intel XE#1130]) -> [PASS][296] +18 other tests pass [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-dg2-set2: [SKIP][297] ([Intel XE#1392]) -> [PASS][298] +3 other tests pass [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt at xe_exec_basic@once-rebind: - shard-dg2-set2: [SKIP][299] ([Intel XE#1130]) -> [PASS][300] +10 other tests pass [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_basic@once-rebind.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-463/igt at xe_exec_basic@once-rebind.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: [SKIP][301] ([Intel XE#1192]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_live_ktest@xe_dma_buf.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_module_load@load: - shard-dg2-set2: ([PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [SKIP][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328]) ([Intel XE#378]) -> ([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], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_module_load@load.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_module_load@load.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_module_load@load.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_module_load@load.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_module_load@load.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_module_load@load.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_module_load@load.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_module_load@load.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_module_load@load.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_module_load@load.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_module_load@load.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_module_load@load.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_module_load@load.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_module_load@load.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_module_load@load.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_module_load@load.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_module_load@load.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_module_load@load.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_module_load@load.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_module_load@load.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_module_load@load.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_module_load@load.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_module_load@load.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_module_load@load.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_module_load@load.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_module_load@load.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at xe_module_load@load.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at xe_module_load@load.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at xe_module_load@load.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at xe_module_load@load.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-463/igt at xe_module_load@load.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at xe_module_load@load.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at xe_module_load@load.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at xe_module_load@load.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at xe_module_load@load.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-435/igt at xe_module_load@load.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at xe_module_load@load.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at xe_module_load@load.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-435/igt at xe_module_load@load.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at xe_module_load@load.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at xe_module_load@load.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at xe_module_load@load.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at xe_module_load@load.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at xe_module_load@load.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at xe_module_load@load.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at xe_module_load@load.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-463/igt at xe_module_load@load.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at xe_module_load@load.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-435/igt at xe_module_load@load.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-463/igt at xe_module_load@load.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][353] ([Intel XE#2423] / [i915#2575]) -> [SKIP][354] ([Intel XE#3768]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_async_flips@invalid-async-flip-atomic.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at kms_async_flips@invalid-async-flip-atomic.html - shard-bmg: [SKIP][355] ([Intel XE#3007]) -> [SKIP][356] ([Intel XE#3768]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][357] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][358] ([Intel XE#1124]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][359] ([Intel XE#2136]) -> [SKIP][360] ([Intel XE#1124]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-463/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][361] ([Intel XE#1124]) -> [SKIP][362] ([Intel XE#2136] / [Intel XE#2231]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html - shard-dg2-set2: [SKIP][363] ([Intel XE#1124]) -> [SKIP][364] ([Intel XE#2136] / [Intel XE#2351]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][365] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][366] ([Intel XE#607]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: [SKIP][367] ([Intel XE#2136]) -> [SKIP][368] ([Intel XE#607]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-bmg: [SKIP][369] ([Intel XE#2887]) -> [SKIP][370] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html - shard-dg2-set2: [SKIP][371] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][372] ([Intel XE#2136]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][373] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][374] ([Intel XE#455] / [Intel XE#787]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-463/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][375] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][376] ([Intel XE#2887]) +2 other tests skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][377] ([Intel XE#2136]) -> [SKIP][378] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][379] ([Intel XE#1727] / [Intel XE#3124]) -> [INCOMPLETE][380] ([Intel XE#2692]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt at kms_chamelium_audio@dp-audio: - shard-dg2-set2: [SKIP][381] ([Intel XE#373]) -> [SKIP][382] ([Intel XE#2423] / [i915#2575]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_chamelium_audio@dp-audio.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_chamelium_audio@dp-audio.html - shard-bmg: [SKIP][383] ([Intel XE#2252]) -> [SKIP][384] ([Intel XE#3007]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_chamelium_audio@dp-audio.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_chamelium_audio@dp-audio.html * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: [SKIP][385] ([Intel XE#3007]) -> [SKIP][386] ([Intel XE#2252]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-8/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html - shard-dg2-set2: [SKIP][387] ([Intel XE#2423] / [i915#2575]) -> [SKIP][388] ([Intel XE#373]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-463/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][389] ([Intel XE#3007]) -> [SKIP][390] ([Intel XE#2341]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_content_protection@mei-interface.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-5/igt at kms_content_protection@mei-interface.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2-set2: [SKIP][391] ([Intel XE#308]) -> [SKIP][392] ([Intel XE#2423] / [i915#2575]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_cursor_crc@cursor-offscreen-512x170.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-random-256x85: - shard-bmg: [SKIP][393] ([Intel XE#2320]) -> [SKIP][394] ([Intel XE#3007]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_cursor_crc@cursor-random-256x85.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_cursor_crc@cursor-random-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][395] ([Intel XE#3007]) -> [SKIP][396] ([Intel XE#2320]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg2-set2: [SKIP][397] ([Intel XE#2423] / [i915#2575]) -> [SKIP][398] ([Intel XE#455]) +1 other test skip [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-432/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [SKIP][399] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][400] ([Intel XE#1695]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][401] ([Intel XE#3007]) -> [SKIP][402] ([Intel XE#2372]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_feature_discovery@chamelium.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: [SKIP][403] ([Intel XE#2423] / [i915#2575]) -> [SKIP][404] ([Intel XE#701]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_feature_discovery@chamelium.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@psr1: - shard-bmg: [SKIP][405] ([Intel XE#2374]) -> [SKIP][406] ([Intel XE#3007]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_feature_discovery@psr1.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_feature_discovery@psr1.html - shard-dg2-set2: [SKIP][407] ([Intel XE#1135]) -> [SKIP][408] ([Intel XE#2423] / [i915#2575]) [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_feature_discovery@psr1.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-bmg: [SKIP][409] ([Intel XE#3007]) -> [SKIP][410] ([Intel XE#2316]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-bmg: [SKIP][411] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][412] ([Intel XE#2136] / [Intel XE#2231]) [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][413] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][414] ([Intel XE#2293] / [Intel XE#2380]) [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][415] ([Intel XE#2136]) -> [SKIP][416] ([Intel XE#455]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][417] ([Intel XE#2312]) -> [SKIP][418] ([Intel XE#2311]) +4 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-bmg: [SKIP][419] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][420] ([Intel XE#2311]) +2 other tests skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html - shard-dg2-set2: [SKIP][421] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][422] ([Intel XE#651]) +1 other test skip [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-bmg: [FAIL][423] ([Intel XE#2333]) -> [SKIP][424] ([Intel XE#2136] / [Intel XE#2231]) [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][425] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][426] ([Intel XE#2333]) +1 other test fail [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][427] ([Intel XE#2312]) -> [FAIL][428] ([Intel XE#2333]) +3 other tests fail [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][429] ([Intel XE#2333]) -> [SKIP][430] ([Intel XE#2312]) +1 other test skip [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [INCOMPLETE][431] ([Intel XE#2050]) -> [SKIP][432] ([Intel XE#2312]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][433] ([Intel XE#2311]) -> [SKIP][434] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][435] ([Intel XE#2311]) -> [SKIP][436] ([Intel XE#2312]) +9 other tests skip [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][437] ([Intel XE#651]) -> [SKIP][438] ([Intel XE#2136]) +3 other tests skip [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][439] ([Intel XE#2136]) -> [SKIP][440] ([Intel XE#653]) +1 other test skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][441] ([Intel XE#2312]) -> [SKIP][442] ([Intel XE#2313]) +5 other tests skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][443] ([Intel XE#2313]) -> [SKIP][444] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][445] ([Intel XE#653]) -> [SKIP][446] ([Intel XE#2136] / [Intel XE#2351]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][447] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][448] ([Intel XE#2313]) +4 other tests skip [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html - shard-dg2-set2: [SKIP][449] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][450] ([Intel XE#653]) +1 other test skip [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][451] ([Intel XE#2313]) -> [SKIP][452] ([Intel XE#2312]) +11 other tests skip [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-blt: - shard-dg2-set2: [SKIP][453] ([Intel XE#653]) -> [SKIP][454] ([Intel XE#2136]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: [SKIP][455] ([Intel XE#908]) -> [SKIP][456] ([Intel XE#2136] / [Intel XE#2351]) [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_pm_dc@dc6-dpms.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_pm_dc@dc6-dpms.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][457] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][458] ([Intel XE#2387]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-dpms: - shard-dg2-set2: [SKIP][459] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][460] ([Intel XE#2136]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_psr@fbc-pr-dpms.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_psr@fbc-pr-dpms.html - shard-bmg: [SKIP][461] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][462] ([Intel XE#2136] / [Intel XE#2231]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_psr@fbc-pr-dpms.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_psr@fbc-pr-dpms.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][463] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][464] ([Intel XE#2234] / [Intel XE#2850]) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr@fbc-pr-sprite-blt.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_psr@fbc-pr-sprite-blt.html - shard-dg2-set2: [SKIP][465] ([Intel XE#2136]) -> [SKIP][466] ([Intel XE#2850] / [Intel XE#929]) [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr@fbc-pr-sprite-blt.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][467] ([Intel XE#3414]) -> [SKIP][468] ([Intel XE#2423] / [i915#2575]) [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-bmg: [SKIP][469] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][470] ([Intel XE#3007]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][471] ([Intel XE#3007]) -> [SKIP][472] ([Intel XE#3414] / [Intel XE#3904]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg2-set2: [SKIP][473] ([Intel XE#2423] / [i915#2575]) -> [SKIP][474] ([Intel XE#3414]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][475] ([Intel XE#2426]) -> [SKIP][476] ([Intel XE#2509]) [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][477] ([Intel XE#1130]) -> [SKIP][478] ([Intel XE#1280] / [Intel XE#455]) [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_compute_preempt@compute-threadgroup-preempt.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_eudebug@basic-vm-bind-extended-discovery: - shard-dg2-set2: [SKIP][479] ([Intel XE#1130]) -> [SKIP][480] ([Intel XE#2905]) +1 other test skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-436/igt at xe_eudebug@basic-vm-bind-extended-discovery.html - shard-bmg: [SKIP][481] ([Intel XE#1130]) -> [SKIP][482] ([Intel XE#2905]) +1 other test skip [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-4/igt at xe_eudebug@basic-vm-bind-extended-discovery.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][483] ([Intel XE#1473]) -> [INCOMPLETE][484] ([Intel XE#1473]) [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_evict@evict-beng-mixed-threads-large.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][485] ([Intel XE#1000]) -> [TIMEOUT][486] ([Intel XE#1473]) [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_evict@evict-beng-threads-large.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-5/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-bmg: [INCOMPLETE][487] ([Intel XE#1473]) -> [TIMEOUT][488] ([Intel XE#1473]) [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_evict@evict-mixed-many-threads-large.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [FAIL][489] ([Intel XE#1000]) -> [TIMEOUT][490] ([Intel XE#1473] / [Intel XE#2472]) +1 other test timeout [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_evict@evict-mixed-many-threads-small.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-1/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][491] ([Intel XE#1130]) -> [SKIP][492] ([Intel XE#2322]) [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [SKIP][493] ([Intel XE#288]) -> [SKIP][494] ([Intel XE#1130]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][495] ([Intel XE#1130]) -> [SKIP][496] ([Intel XE#288]) +1 other test skip [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][497] ([Intel XE#1130]) -> [SKIP][498] ([Intel XE#2360]) [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-433/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][499] ([Intel XE#2833]) -> [SKIP][500] ([Intel XE#1192]) [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_live_ktest@xe_eudebug.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html * igt at xe_peer2peer@read: - shard-bmg: [SKIP][501] ([Intel XE#2557]) -> [SKIP][502] ([Intel XE#2427]) [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_peer2peer@read.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at xe_peer2peer@read.html - shard-dg2-set2: [SKIP][503] ([Intel XE#1061]) -> [FAIL][504] ([Intel XE#1173]) [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_peer2peer@read.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at xe_peer2peer@read.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-bmg: [SKIP][505] ([Intel XE#2284]) -> [SKIP][506] ([Intel XE#1130]) [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_pm@s3-d3cold-basic-exec.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-bmg-6/igt at xe_pm@s3-d3cold-basic-exec.html - shard-dg2-set2: [SKIP][507] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][508] ([Intel XE#1130]) [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_pm@s3-d3cold-basic-exec.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/shard-dg2-464/igt at xe_pm@s3-d3cold-basic-exec.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [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#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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#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#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [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#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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [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#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [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#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [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#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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3937 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8182 -> IGTPW_12413 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12413: 12413 IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12413/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 11:55:47 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 11:55:47 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_series_starting_with_=5B?= =?utf-8?q?i-g-t=2Cv2=2C1/8=5D_lib/xe/xe=5Fgt=3A_Fix_header_guards_and_boile?= =?utf-8?q?rplate_=28rev2=29?= In-Reply-To: <20250107202615.1306306-1-lucas.demarchi@intel.com> References: <20250107202615.1306306-1-lucas.demarchi@intel.com> Message-ID: <173659654782.2350592.6233945285312324136@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v2,1/8] lib/xe/xe_gt: Fix header guards and boilerplate (rev2) URL : https://patchwork.freedesktop.org/series/143204/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15927_full -> IGTPW_12410_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12410_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12410_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_12410/index.html Participating hosts (11 -> 11) ------------------------------ Additional (1): shard-dg2-set2 Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12410_full: ### IGT changes ### #### Possible regressions #### * igt at gem_eio@kms: - shard-rkl: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-7/igt at gem_eio@kms.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-3/igt at gem_eio@kms.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-tglu: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt at kms_fbcon_fbt@fbc-suspend.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-7/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_pm_rpm@fences-dpms: - shard-rkl: [PASS][5] -> [SKIP][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-1/igt at kms_pm_rpm@fences-dpms.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-7/igt at kms_pm_rpm@fences-dpms.html Known issues ------------ Here are the changes found in IGTPW_12410_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8411]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-6/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-5/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#6230]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-6/igt at api_intel_bb@crc32.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#11078]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-5/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][12] ([i915#11078]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#11078]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-4/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-4/igt at device_reset@unbind-cold-reset-rebind.html * igt at dmabuf@all-tests at dma_fence_chain: - shard-rkl: [PASS][15] -> [DMESG-WARN][16] ([i915#12964]) +33 other tests dmesg-warn [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-6/igt at dmabuf@all-tests at dma_fence_chain.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at dmabuf@all-tests at dma_fence_chain.html * igt at drm_fdinfo@busy-hang at bcs0: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8414]) +8 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-8/igt at drm_fdinfo@busy-hang at bcs0.html * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#8414]) +6 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-2/igt at drm_fdinfo@busy-idle at vecs0.html * igt at drm_fdinfo@most-busy-idle-check-all at bcs0: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8414]) +6 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at drm_fdinfo@most-busy-idle-check-all at bcs0.html * igt at gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#7697]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-4/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#13008]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-14/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#7697]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-2/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][26] ([i915#8562]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-3/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][27] ([i915#1099]) +5 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-snb5/igt at gem_ctx_persistence@engines-mixed-process.html * igt at gem_ctx_persistence@heartbeat-hang: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#8555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at gem_ctx_persistence@heartbeat-hang.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-9/igt at gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-6/igt at gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-1/igt at gem_ctx_sseu@engines.html * igt at gem_eio@kms: - shard-tglu: [PASS][34] -> [DMESG-WARN][35] ([i915#13363]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-8/igt at gem_eio@kms.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-3/igt at gem_eio@kms.html * igt at gem_eio@unwedge-stress: - shard-dg1: NOTRUN -> [FAIL][36] ([i915#12714] / [i915#5784]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@full-late: - shard-mtlp: [PASS][37] -> [FAIL][38] ([i915#13364]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-7/igt at gem_exec_balancer@full-late.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-1/igt at gem_exec_balancer@full-late.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4036]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel-balancer: - shard-tglu-1: NOTRUN -> [SKIP][40] ([i915#4525]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu: NOTRUN -> [SKIP][41] ([i915#4525]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/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][42] ([i915#4525]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-2/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_big@single: - shard-tglu: [PASS][43] -> [ABORT][44] ([i915#11713]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-8/igt at gem_exec_big@single.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-3/igt at gem_exec_big@single.html * igt at gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#6334]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-7/igt at gem_exec_capture@capture-invisible.html - shard-tglu: NOTRUN -> [SKIP][46] ([i915#6334]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-2/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture-invisible at smem0: - shard-glk: NOTRUN -> [SKIP][47] ([i915#6334]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk8/igt at gem_exec_capture@capture-invisible at smem0.html * igt at gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4812]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-4/igt at gem_exec_fence@submit3.html * igt at gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-4/igt at gem_exec_flush@basic-batch-kernel-default-cmd.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-14/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_gttfill@basic: - shard-rkl: NOTRUN -> [DMESG-WARN][51] ([i915#12917] / [i915#12964]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-5/igt at gem_exec_gttfill@basic.html * igt at gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#5107]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-6/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-gtt-read-active: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3281]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-8/igt at gem_exec_reloc@basic-gtt-read-active.html * igt at gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3281]) +15 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at gem_exec_reloc@basic-scanout.html * igt at gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3281]) +10 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at gem_exec_reloc@basic-write-cpu-active.html * igt at gem_exec_reloc@basic-write-wc-active: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3281]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-7/igt at gem_exec_reloc@basic-write-wc-active.html * igt at gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4812]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at gem_exec_schedule@preempt-queue-contexts.html * igt at gem_fence_thrash@bo-copy: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4860]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at gem_fence_thrash@bo-copy.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4860]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-7/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][60] ([i915#2190]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk9/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#4613] / [i915#7582]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-6/igt at gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][62] ([i915#4613] / [i915#7582]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-8/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][63] ([i915#4613]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk6/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-5/igt at gem_lmem_swapping@parallel-random-verify.html - shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#4613]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][66] ([i915#5493]) +1 other test timeout [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-1/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-ccs: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4613]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-2/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#12193]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at gem_lmem_swapping@verify-random-ccs.html - shard-tglu: NOTRUN -> [SKIP][69] ([i915#4613]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-9/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_lmem_swapping@verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4565]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#8289]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-3/igt at gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][72] ([i915#8289]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-5/igt at gem_media_fill@media-fill.html * igt at gem_mmap_gtt@basic-copy: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4077]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-8/igt at gem_mmap_gtt@basic-copy.html * igt at gem_mmap_gtt@basic-read: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4077]) +8 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-10/igt at gem_mmap_gtt@basic-read.html * igt at gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4077]) +7 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-14/igt at gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt at gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4083]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-4/igt at gem_mmap_wc@write.html - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4083]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-4/igt at gem_mmap_wc@write.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4083]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-17/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3282]) +6 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-10/igt at gem_partial_pwrite_pread@write.html * igt at gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#3282]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at gem_pwrite@basic-exhaustion.html - shard-dg1: NOTRUN -> [SKIP][81] ([i915#3282]) +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-14/igt at gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][82] ([i915#2658]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-9/igt at gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][83] ([i915#2658]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk4/igt at gem_pwrite@basic-exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3282]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-2/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][85] ([i915#12964]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-7/igt at gem_pxp@fail-invalid-protected-context.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_12410/shard-tglu-7/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-rkl: NOTRUN -> [TIMEOUT][87] ([i915#12917] / [i915#12964]) +1 other test timeout [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-2/igt at gem_pxp@hw-rejects-pxp-context.html - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#13398]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#4270]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-18/igt at gem_pxp@reject-modify-context-protection-off-3.html * igt at gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#8428]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-4/igt at gem_render_copy@linear-to-vebox-y-tiled.html * igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#5190] / [i915#8428]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-8/igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4079]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][93] ([i915#13263] / [i915#13449]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk7/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#3323]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-7/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#3297]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-6/igt at gem_userptr_blits@invalid-mmap-offset-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#3297]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-6/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#3297] / [i915#4880]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-17/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@unsync-overlap: - shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#3297]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at gem_userptr_blits@unsync-overlap.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#3297]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-6/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#3297]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-5/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-10/igt at gen9_exec_parse@bb-large.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#2856]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-1/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@secure-batches: - 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_12410/shard-tglu-1/igt at gen9_exec_parse@secure-batches.html * igt at gen9_exec_parse@shadow-peek: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#2527]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-1/igt at gen9_exec_parse@shadow-peek.html * igt at gen9_exec_parse@unaligned-access: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#2527]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-14/igt at gen9_exec_parse@unaligned-access.html * igt at i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#6412]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-3/igt at i915_module_load@resize-bar.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#7091]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-5/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#8399]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at i915_pm_freq_api@freq-reset-multiple.html * igt at i915_pm_freq_api@freq-suspend at gt0: - shard-dg2: [PASS][110] -> [INCOMPLETE][111] ([i915#12455]) +1 other test incomplete [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-4/igt at i915_pm_freq_api@freq-suspend at gt0.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-1/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][112] ([i915#6590]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-3/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-tglu-1: NOTRUN -> [WARN][113] ([i915#2681]) +4 other tests warn [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html - shard-dg1: NOTRUN -> [FAIL][114] ([i915#3591]) +1 other test fail [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-14/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#11681] / [i915#6621]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at i915_pm_rps@basic-api.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][116] ([i915#4817]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk2/igt at i915_suspend@forcewake.html * igt at intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][117] ([i915#7707]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-7/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4212]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][119] ([i915#12454] / [i915#12712]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-glk: [PASS][120] -> [FAIL][121] ([i915#10991] / [i915#13335]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk8/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk8/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-2: - shard-glk: [PASS][122] -> [FAIL][123] ([i915#13335]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk8/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-2.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk8/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-2.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][124] ([i915#8709]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-6/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][125] ([i915#8709]) +23 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/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_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#9531]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-14/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#5286]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-5/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-8bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5286]) +4 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-14/igt at kms_big_fb@4-tiled-8bpp-rotate-0.html * igt at kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#5286]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#5286]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#5286]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-2/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3638]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-3/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#3638]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-14/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#5190]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-8/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6187]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-6/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#4538]) +4 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-14/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#4538] / [i915#5190]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-4/igt at kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][138] +18 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-3/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-y-tiled-ccs at pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#6095]) +44 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-6/igt at kms_ccs@bad-aux-stride-y-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#12313]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#12805]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/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][142] ([i915#6095]) +92 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-5/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-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_12410/shard-mtlp-6/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#6095]) +12 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-5/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-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][145] ([i915#12796]) +1 other test incomplete [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#12313]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#12313]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-8/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][148] ([i915#10307] / [i915#6095]) +116 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/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@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-8/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#6095]) +34 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][151] +450 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk9/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#6095]) +178 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#11616] / [i915#7213]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-8/igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-1.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#3742]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-7/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_color@ctm-0-50: - shard-mtlp: NOTRUN -> [SKIP][155] +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-6/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-5/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][157] ([i915#11151] / [i915#7828]) +5 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +6 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_chamelium_frames@dp-crc-single.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +12 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +8 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-3/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-1/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-8/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][163] ([i915#7173]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-10/igt at kms_content_protection@atomic-dpms at pipe-a-dp-4.html * igt at kms_content_protection@content-type-change: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#6944] / [i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-5/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#3116] / [i915#3299]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#9424]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-1/igt at kms_content_protection@lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][167] ([i915#9424]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at kms_content_protection@lic-type-0.html - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#6944] / [i915#9424]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#6944] / [i915#9424]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-3/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#9424]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-14/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#7116] / [i915#9424]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-18/igt at kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#6944] / [i915#9424]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-1/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_content_protection@uevent.html * igt at kms_content_protection@uevent at pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][174] ([i915#1339] / [i915#7173]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-10/igt at kms_content_protection@uevent at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#13049]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-64x21 at pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][176] ([i915#12964]) +14 other tests dmesg-warn [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at kms_cursor_crc@cursor-offscreen-64x21 at pipe-a-hdmi-a-1.html * igt at kms_cursor_crc@cursor-onscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#8814]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-8/igt at kms_cursor_crc@cursor-onscreen-128x42.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#13049]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#3555]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#13049]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-6/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#13049]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-5/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-dg1: NOTRUN -> [SKIP][182] ([i915#13049]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#3555]) +6 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555]) +3 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-7/igt at kms_cursor_crc@cursor-sliding-32x10.html - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#8814]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-2/igt at kms_cursor_crc@cursor-sliding-32x10.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#13049]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-11/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][187] ([i915#12358] / [i915#7882]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk5/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][188] ([i915#12358]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk5/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#9809]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-6/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#4103] / [i915#4213]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-14/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#13046] / [i915#5354]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-5/igt at kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#4213]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#4103] / [i915#4213]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][194] ([i915#4103]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-5/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#4103]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#9723]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][197] ([i915#12170]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-snb2/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][198] ([i915#11968]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-snb2/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#8588]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-17/igt at kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][200] ([i915#8588]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-2/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#12402]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-1/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#8812]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3840]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#3840]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-2/igt at kms_dsc@dsc-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3840]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-5/igt at kms_dsc@dsc-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3955]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-5/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#3469]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-8/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#1839]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-17/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#658]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-9/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][210] ([i915#658]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-11/igt at kms_feature_discovery@psr1.html * igt at kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#4881]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-18/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3637]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-5/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#3637]) +4 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-10/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#3637]) +5 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#9934]) +8 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-14/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-plain-flip: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#9934]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-5/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#9934]) +8 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-1/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@blocking-wf_vblank at c-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][218] ([i915#11989]) +3 other tests fail [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-2/igt at kms_flip@blocking-wf_vblank at c-hdmi-a1.html * igt at kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#8381]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-3/igt at kms_flip@flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][220] ([i915#8381]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-5/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-dg2: [PASS][221] -> [FAIL][222] ([i915#11989]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-8/igt at kms_flip@plain-flip-ts-check-interruptible.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-7/igt at kms_flip@plain-flip-ts-check-interruptible.html - shard-rkl: [PASS][223] -> [FAIL][224] ([i915#11989]) +1 other test fail [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-1/igt at kms_flip@plain-flip-ts-check-interruptible.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-5/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip@plain-flip-ts-check-interruptible at a-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][225] ([i915#11989]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-7/igt at kms_flip@plain-flip-ts-check-interruptible at a-hdmi-a3.html * igt at kms_flip@plain-flip-ts-check-interruptible at b-hdmi-a2: - shard-rkl: [PASS][226] -> [FAIL][227] ([i915#11832] / [i915#11989]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-1/igt at kms_flip@plain-flip-ts-check-interruptible at b-hdmi-a2.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-5/igt at kms_flip@plain-flip-ts-check-interruptible at b-hdmi-a2.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555] / [i915#8813]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#2672] / [i915#8813]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8810] / [i915#8813]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8810]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#2587] / [i915#2672]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-2/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-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#2672]) +4 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-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-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555]) +2 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-9/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#2672] / [i915#3555]) +3 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/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-valid-mode: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#2587] / [i915#2672]) +3 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/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-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555]) +4 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/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-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/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][239] ([i915#2587] / [i915#2672]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/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-32bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#2672]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [PASS][242] -> [FAIL][243] ([i915#6880]) +1 other test fail [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-1/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][244] +38 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#8708]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [PASS][246] -> [DMESG-FAIL][247] ([i915#12964]) +2 other tests dmesg-fail [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-1/igt at kms_frontbuffer_tracking@fbc-suspend.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-1/igt at kms_frontbuffer_tracking@fbc-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][248] ([i915#10056] / [i915#13353]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk3/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#10055]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-3/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#8708]) +15 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#8708]) +6 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][252] +64 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#1825]) +47 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#9766]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][255] ([i915#9766]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-8/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][256] +74 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-4/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#3458]) +3 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-11/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#3023]) +21 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-5/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#1825]) +7 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#5354]) +20 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#3458]) +22 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_hdr@bpc-switch-dpms: - shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8228]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8228]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-17/igt at kms_hdr@static-swap.html - shard-tglu: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8228]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-4/igt at kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-4/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-1/igt at kms_hdr@static-toggle.html * igt at kms_histogram@algo-basic: - shard-tglu: NOTRUN -> [SKIP][267] ([i915#13389]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-9/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#13389]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-6/igt at kms_histogram@algo-color.html * igt at kms_histogram@global-basic: - shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#13388]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-big-joiner: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#10656]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-17/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#12388]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-7/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#12394]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at kms_joiner@basic-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][273] ([i915#12394]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-6/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#12388]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-3/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#12394]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#10656]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-7/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#1839]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-3/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#6301]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-2/igt at kms_panel_fitting@atomic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#6301]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#6301]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-17/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][281] +3 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-11/igt at kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][282] ([i915#13026]) +1 other test incomplete [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk7/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][283] ([i915#12178]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk4/igt at kms_plane_alpha_blend@alpha-basic.html * igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][284] ([i915#7862]) +1 other test fail [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk4/igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#3555]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#12247]) +7 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#12247] / [i915#6953]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at kms_plane_scaling@planes-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][288] ([i915#12247] / [i915#6953]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-10/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-rkl: NOTRUN -> [SKIP][289] ([i915#12247] / [i915#6953]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-3/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 at pipe-b: - shard-dg1: NOTRUN -> [SKIP][290] ([i915#12247]) +3 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b.html - shard-tglu: NOTRUN -> [SKIP][291] ([i915#12247]) +7 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-10/igt at kms_plane_scaling@planes-downscale-factor-0-25 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_12410/shard-tglu-1/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-tglu-1: NOTRUN -> [SKIP][293] ([i915#12247]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#6953]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-4/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#12247] / [i915#3555]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-6/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#12247] / [i915#6953]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-5/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5 at pipe-c: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#12247]) +7 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-5/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5 at pipe-c.html * igt at kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#5354]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-17/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#5354]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-3/igt at kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][300] ([i915#9812]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-7/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#3828]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-7/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu: [PASS][302] -> [FAIL][303] ([i915#9295]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-3/igt at kms_pm_dc@dc6-dpms.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-8/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_12410/shard-rkl-2/igt at kms_pm_dc@dc9-dpms.html - shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#4281]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#3828]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-2/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#8430]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at kms_pm_lpsp@screens-disabled.html - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#8430]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@drm-resources-equal: - shard-dg1: [PASS][309] -> [DMESG-WARN][310] ([i915#4423]) +2 other tests dmesg-warn [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-18/igt at kms_pm_rpm@drm-resources-equal.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at kms_pm_rpm@drm-resources-equal.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][311] -> [SKIP][312] ([i915#9519]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-4/igt at kms_pm_rpm@modeset-lpsp.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-5/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [PASS][313] -> [SKIP][314] ([i915#9519]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-3/igt at kms_pm_rpm@modeset-non-lpsp.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#9519]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#6524]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-6/igt at kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][317] ([i915#6524]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-8/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][318] ([i915#6524]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][319] ([i915#11520]) +10 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-snb5/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html - shard-tglu: NOTRUN -> [SKIP][320] ([i915#11520]) +7 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-9/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#12316]) +4 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-7/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][322] ([i915#11520]) +14 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk1/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-sf: - shard-dg1: NOTRUN -> [SKIP][323] ([i915#11520]) +10 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-17/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#9808]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-3/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#11520]) +9 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-5/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-sf: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#11520]) +8 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-11/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-tglu-1: NOTRUN -> [SKIP][327] ([i915#11520]) +3 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][328] ([i915#9683]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#9683]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-5/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr-primary-page-flip at edp-1: - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#9688]) +8 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-3/igt at kms_psr@fbc-psr-primary-page-flip at edp-1.html * igt at kms_psr@fbc-psr2-basic: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#9732]) +11 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_psr@fbc-psr2-basic.html * igt at kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][332] ([i915#1072] / [i915#9732]) +19 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-13/igt at kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt at kms_psr@psr-primary-render: - shard-tglu: NOTRUN -> [SKIP][333] ([i915#9732]) +17 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-6/igt at kms_psr@psr-primary-render.html * igt at kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#1072] / [i915#9732]) +12 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-10/igt at kms_psr@psr2-cursor-blt.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#1072] / [i915#9732]) +23 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#9685]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#5289]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/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-rkl: NOTRUN -> [SKIP][338] ([i915#5289]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#12755]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-7/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][340] ([IGT#160] / [i915#6493]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-14/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][341] ([i915#8623]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-3/igt at kms_tiled_display@basic-test-pattern.html - shard-glk: NOTRUN -> [FAIL][342] ([i915#10959]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/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][343] ([i915#8623]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-1/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1: - shard-glk: [PASS][344] -> [INCOMPLETE][345] ([i915#12276]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk6/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk4/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][346] ([i915#12276]) +1 other test incomplete [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk6/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][347] ([i915#9906]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-2/igt at kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][348] ([i915#9906]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-7/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#3555] / [i915#8808]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-8/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][350] ([i915#3555]) +4 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-6/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][351] ([i915#11920]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-7/igt at kms_vrr@lobf.html - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#11920]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-5/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#3555] / [i915#9906]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-check-output: - shard-glk: NOTRUN -> [SKIP][354] ([i915#2437]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk4/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#2437] / [i915#9412]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#2437]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-5/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#2434]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-1/igt at perf@mi-rpc.html * igt at perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][358] ([i915#2433]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at perf@unprivileged-single-ctx-counters.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][359] +415 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-snb7/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@busy-hang: - shard-dg1: NOTRUN -> [FAIL][360] ([i915#4349]) +5 other tests fail [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-18/igt at perf_pmu@busy-hang.html * igt at perf_pmu@busy-idle at ccs0: - shard-mtlp: [PASS][361] -> [FAIL][362] ([i915#4349]) +8 other tests fail [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-6/igt at perf_pmu@busy-idle at ccs0.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-6/igt at perf_pmu@busy-idle at ccs0.html * igt at perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][363] ([i915#8516]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-17/igt at perf_pmu@rc6-all-gts.html - shard-tglu: NOTRUN -> [SKIP][364] ([i915#8516]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-6/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6-suspend: - shard-glk: [PASS][365] -> [INCOMPLETE][366] ([i915#13356]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk8/igt at perf_pmu@rc6-suspend.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk1/igt at perf_pmu@rc6-suspend.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#8516]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-1/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][368] ([i915#8516]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][369] ([i915#3708]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-14/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][370] ([i915#3708] / [i915#4077]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-17/igt at prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][371] ([i915#3708] / [i915#4077]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-6/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-flip-hang: - shard-mtlp: NOTRUN -> [SKIP][372] ([i915#3708]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-8/igt at prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][373] ([i915#3708]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-4/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][374] ([i915#3708]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-4/igt at prime_vgem@fence-read-hang.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#9917]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-3/igt at sriov_basic@enable-vfs-autoprobe-on.html - shard-rkl: NOTRUN -> [SKIP][376] ([i915#9917]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-7/igt at sriov_basic@enable-vfs-autoprobe-on.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1: - shard-tglu: NOTRUN -> [FAIL][377] ([i915#12910]) +18 other tests fail [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-6/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-2: - shard-mtlp: NOTRUN -> [FAIL][378] ([i915#12910]) +9 other tests fail [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-5/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-2.html * igt at sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][379] ([i915#9917]) +2 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-18/igt at sriov_basic@enable-vfs-bind-unbind-each.html #### Possible fixes #### * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-rkl: [FAIL][380] -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-2/igt at gem_ctx_isolation@preservation-s3 at bcs0.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-3/igt at gem_ctx_isolation@preservation-s3 at bcs0.html - shard-tglu: [DMESG-WARN][382] -> [PASS][383] +1 other test pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt at gem_ctx_isolation@preservation-s3 at bcs0.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-4/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-tglu: [ABORT][384] -> [PASS][385] +2 other tests pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt at gem_ctx_isolation@preservation-s3 at rcs0.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-4/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_eio@hibernate: - shard-dg2: [ABORT][386] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-10/igt at gem_eio@hibernate.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-11/igt at gem_eio@hibernate.html * igt at gem_exec_balancer@full-pulse: - shard-dg1: [FAIL][388] ([i915#13364]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-13/igt at gem_exec_balancer@full-pulse.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-14/igt at gem_exec_balancer@full-pulse.html - shard-dg2: [FAIL][390] ([i915#13364]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-6/igt at gem_exec_balancer@full-pulse.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-5/igt at gem_exec_balancer@full-pulse.html * igt at gem_exec_endless@dispatch: - shard-dg2: [TIMEOUT][392] ([i915#3778] / [i915#7016]) -> [PASS][393] +1 other test pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-11/igt at gem_exec_endless@dispatch.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-8/igt at gem_exec_endless@dispatch.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [TIMEOUT][394] ([i915#5493]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-12/igt at gem_lmem_swapping@smem-oom at lmem0.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_softpin@noreloc-s3: - shard-glk: [INCOMPLETE][396] ([i915#13306]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk4/igt at gem_softpin@noreloc-s3.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk8/igt at gem_softpin@noreloc-s3.html * igt at gem_userptr_blits@sync-unmap-cycles: - shard-rkl: [DMESG-WARN][398] ([i915#12964]) -> [PASS][399] +50 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-6/igt at gem_userptr_blits@sync-unmap-cycles.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-1/igt at gem_userptr_blits@sync-unmap-cycles.html * igt at gem_workarounds@suspend-resume-context: - shard-glk: [INCOMPLETE][400] ([i915#13356]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk7/igt at gem_workarounds@suspend-resume-context.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk1/igt at gem_workarounds@suspend-resume-context.html * igt at i915_module_load@reload-no-display: - shard-tglu: [DMESG-WARN][402] ([i915#13029]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt at i915_module_load@reload-no-display.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-tglu-7/igt at i915_module_load@reload-no-display.html * igt at i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [FAIL][404] ([i915#12942]) -> [PASS][405] +1 other test pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-5/igt at i915_pm_rc6_residency@rc6-accuracy.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-2/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at i915_pm_rpm@gem-pread: - shard-rkl: [SKIP][406] ([i915#13328]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-3/igt at i915_pm_rpm@gem-pread.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-3/igt at i915_pm_rpm@gem-pread.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-dg1: [DMESG-FAIL][408] ([i915#4423]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-13/igt at i915_pm_rpm@system-suspend-execbuf.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-18/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [DMESG-FAIL][410] ([i915#13393]) -> [PASS][411] +1 other test pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-4/igt at i915_selftest@live at workarounds.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-4/igt at i915_selftest@live at workarounds.html * igt at i915_suspend@basic-s3-without-i915: - shard-dg1: [DMESG-WARN][412] ([i915#4391] / [i915#4423]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-18/igt at i915_suspend@basic-s3-without-i915.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-12/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [DMESG-FAIL][414] ([i915#12964]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-1/igt at i915_suspend@fence-restore-tiled2untiled.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-1/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180: - shard-mtlp: [FAIL][416] ([i915#5138]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-4/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-7/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: [FAIL][418] ([i915#11989]) -> [PASS][419] +1 other test pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-snb7/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-snb7/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-mtlp: [FAIL][420] ([i915#11989]) -> [PASS][421] +1 other test pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-8/igt at kms_flip@plain-flip-ts-check-interruptible.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-6/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_hdr@bpc-switch-dpms: - shard-dg2: [SKIP][422] ([i915#3555] / [i915#8228]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-6/igt at kms_hdr@bpc-switch-dpms.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg2-10/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_plane@pixel-format-source-clamping: - shard-glk: [INCOMPLETE][424] ([i915#10056] / [i915#118] / [i915#13026]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk7/igt at kms_plane@pixel-format-source-clamping.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk4/igt at kms_plane@pixel-format-source-clamping.html * igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-1: - shard-glk: [DMESG-WARN][426] ([i915#118]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk7/igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-1.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-glk4/igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-1.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][428] ([i915#9519]) -> [PASS][429] +1 other test pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-5/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at prime_busy@hang at rcs0: - shard-mtlp: [INCOMPLETE][430] -> [PASS][431] +2 other tests pass [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-8/igt at prime_busy@hang at rcs0.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-mtlp-4/igt at prime_busy@hang at rcs0.html * igt at syncobj_timeline@wait-any-snapshot: - shard-dg1: [DMESG-WARN][432] ([i915#4423]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-13/igt at syncobj_timeline@wait-any-snapshot.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-dg1-17/igt at syncobj_timeline@wait-any-snapshot.html #### Warnings #### * igt at gem_ctx_isolation@preservation-s3: - shard-rkl: [FAIL][434] -> [DMESG-FAIL][435] ([i915#12964]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-2/igt at gem_ctx_isolation@preservation-s3.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/shard-rkl-3/igt at gem_ctx_isolation@preservation-s3.html * igt at gem_pxp@create-protected-buffer: - shard-rkl: [TIMEOUT][436] ([i915#12964]) -> [SKIP][437] ([i915#4270]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-6/igt at gem_pxp@create-protected-buffer.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/I == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12410/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 12:19:25 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 12:19:25 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fvm=3A_Fix?= =?utf-8?q?ed_documentation?= In-Reply-To: <20250109073929.913205-1-pravalika.gurram@intel.com> References: <20250109073929.913205-1-pravalika.gurram@intel.com> Message-ID: <173659796571.2367272.11091256120614857335@b555e5b46a47> == Series Details == Series: tests/intel/xe_vm: Fixed documentation URL : https://patchwork.freedesktop.org/series/143310/ State : failure == Summary == CI Bug Log - changes from XEIGT_8182_full -> XEIGTPW_12414_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12414_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12414_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_12414_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@2x-flip-vs-suspend at cd-hdmi-a2-dp2: - shard-dg2-set2: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-432/igt at kms_flip@2x-flip-vs-suspend at cd-hdmi-a2-dp2.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-edp-1: - shard-lnl: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-6/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-edp-1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-7/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-edp-1.html Known issues ------------ Here are the changes found in XEIGTPW_12414_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_addfb_basic@addfb25-modifier-no-flag: - shard-dg2-set2: [PASS][5] -> [SKIP][6] ([Intel XE#2423] / [i915#2575]) +20 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_addfb_basic@addfb25-modifier-no-flag.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_addfb_basic@addfb25-modifier-no-flag.html * igt at kms_async_flips@alternate-sync-async-flip at pipe-b-dp-2: - shard-bmg: [PASS][7] -> [FAIL][8] ([Intel XE#827]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip at pipe-b-dp-2.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip at pipe-b-dp-2.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [PASS][9] -> [FAIL][10] ([Intel XE#911]) +3 other tests fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-6/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#873]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_async_flips@invalid-async-flip.html - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#873]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#316]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-6/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2327]) +5 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-1/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-32bpp-rotate-180: - shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#2136]) +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_big_fb@x-tiled-32bpp-rotate-180.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_big_fb@x-tiled-32bpp-rotate-180.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1467]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-1/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-433/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-3/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +8 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2314] / [Intel XE#2894]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2314] / [Intel XE#2894]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-5/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2191]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#367]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#367]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +5 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-4/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#455] / [Intel XE#787]) +25 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#3432]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#3432]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-6/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#787]) +139 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +6 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#2907]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#306]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-3/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#306]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-432/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2252]) +9 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#373]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-3/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#373]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-464/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][42] ([Intel XE#1178]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-5/igt at kms_content_protection@atomic.html - shard-dg2-set2: NOTRUN -> [FAIL][43] ([Intel XE#1178]) +1 other test fail [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_content_protection@atomic.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_12414/shard-lnl-5/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2321]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1424]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-1/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#308]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-size-hints: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#3007]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_cursor_crc@cursor-size-hints.html * igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-bmg: [PASS][49] -> [SKIP][50] ([Intel XE#2291]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#323]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-432/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2286]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#309]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-5/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [PASS][54] -> [DMESG-WARN][55] ([Intel XE#877]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][56] -> [FAIL][57] ([Intel XE#1475]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([i915#3804]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6.html * igt at kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#2244]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-6/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#455]) +8 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2374]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1135]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][63] -> [FAIL][64] ([Intel XE#3321]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/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][65] -> [FAIL][66] ([Intel XE#301]) +6 other tests fail [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/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 ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][67] ([Intel XE#301]) +6 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-464/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-suspend: - shard-dg2-set2: [PASS][68] -> [ABORT][69] ([Intel XE#2625]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@2x-flip-vs-suspend.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-432/igt at kms_flip@2x-flip-vs-suspend.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#2316]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2: - shard-bmg: [PASS][72] -> [FAIL][73] ([Intel XE#3288] / [Intel XE#3321]) +1 other test fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/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 a-dp2: - shard-bmg: [PASS][74] -> [FAIL][75] ([Intel XE#2882]) +3 other tests fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html * igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3: - shard-bmg: [PASS][76] -> [FAIL][77] ([Intel XE#3321]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1397]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-1/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2293]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#651]) +6 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2312]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2311]) +20 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#2136] / [Intel XE#2351]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][86] ([Intel XE#2333]) +7 other tests fail [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/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-lnl: NOTRUN -> [SKIP][87] ([Intel XE#656]) +11 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][88] -> [SKIP][89] ([Intel XE#2136] / [Intel XE#2351]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#651]) +11 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#653]) +10 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#658]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2313]) +16 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#3374] / [Intel XE#3544]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-5/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [PASS][95] -> [SKIP][96] ([Intel XE#1503]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_hdr@invalid-hdr.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_hdr@invalid-hdr.html * igt at kms_histogram@algo-basic: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#3897]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-5/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#3897]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-5/igt at kms_histogram@algo-color.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#346]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#346]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-432/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2934]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2925]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#356]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-3/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2486]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-lnl: [PASS][105] -> [INCOMPLETE][106] ([Intel XE#4016]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-6/igt at kms_pipe_crc_basic@suspend-read-crc.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-7/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#599]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-3/igt at kms_plane_lowres@tiling-x at pipe-b-edp-1.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#3307]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-6/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2763]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/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-modifiers at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +11 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-3/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2763]) +14 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-5/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2423] / [i915#2575]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_plane_scaling@planes-upscale-factor-0-25.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2392]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_pm_dc@dc5-psr.html - shard-lnl: [PASS][115] -> [FAIL][116] ([Intel XE#718]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_pm_dc@dc5-psr.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-5/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: NOTRUN -> [FAIL][117] ([Intel XE#1430]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-5/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#1439] / [Intel XE#836]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1489]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#2893]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-3/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#1489]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2136]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1128]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-5/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2850] / [Intel XE#929]) +7 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-433/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-sprite-blt: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1406]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-3/igt at kms_psr@pr-sprite-blt.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2234]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_psr@psr2-primary-render.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2330]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#3414] / [Intel XE#3904]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_rotation_crc@sprite-rotation-90.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_12414/shard-bmg-1/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [PASS][131] -> [FAIL][132] ([Intel XE#2883]) +2 other tests fail [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-8/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_sysfs_edid_timing: - shard-bmg: [PASS][133] -> [FAIL][134] ([Intel XE#1174]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_sysfs_edid_timing.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#362]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [PASS][136] -> [FAIL][137] ([Intel XE#899]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-3/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vblank@wait-busy-hang: - shard-bmg: [PASS][138] -> [SKIP][139] ([Intel XE#3007]) +17 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_vblank@wait-busy-hang.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_vblank@wait-busy-hang.html * igt at kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#1499]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1499]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-4/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#1091] / [Intel XE#2849]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#1280] / [Intel XE#455]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-433/igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#3889]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#3889]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-6/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#2905]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-5/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2905]) +5 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][148] -> [TIMEOUT][149] ([Intel XE#1473] / [Intel XE#402]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at xe_evict@evict-beng-mixed-many-threads-small.html - shard-bmg: NOTRUN -> [INCOMPLETE][150] ([Intel XE#1473]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-mixed-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#688]) +4 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-5/igt at xe_evict@evict-beng-mixed-threads-large-multi-vm.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][152] -> [TIMEOUT][153] ([Intel XE#1473]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2322]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-5/igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-null: - shard-dg2-set2: [PASS][155] -> [SKIP][156] ([Intel XE#1392]) +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_exec_basic@multigpu-once-null.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-432/igt at xe_exec_basic@multigpu-once-null.html * igt at xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1392]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-5/igt at xe_exec_basic@multigpu-once-userptr.html * igt at xe_exec_compute_mode@once-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#1130]) +7 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at xe_exec_compute_mode@once-bindexecqueue-userptr.html * igt at xe_exec_compute_mode@twice-userptr: - shard-dg2-set2: [PASS][159] -> [SKIP][160] ([Intel XE#1130]) +29 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_exec_compute_mode@twice-userptr.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at xe_exec_compute_mode@twice-userptr.html * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#288]) +11 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#2905]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2229]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_migrate_sanity_kunit: - shard-bmg: NOTRUN -> [FAIL][164] ([Intel XE#3099]) +2 other tests fail [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at xe_live_ktest@xe_migrate at xe_migrate_sanity_kunit.html * igt at xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#1192]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-8/igt at xe_live_ktest@xe_mocs.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#512]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at xe_mmap@small-bar.html * igt at xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#2457]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at xe_module_load@force-load.html * igt at xe_module_load@load: - shard-bmg: ([PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191]) -> ([PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [SKIP][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]) ([Intel XE#2457]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-5/igt at xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-5/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-5/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-5/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-1/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-1/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-1/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-1/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at xe_module_load@load.html * igt at xe_module_load@many-reload: - shard-bmg: [PASS][218] -> [FAIL][219] ([Intel XE#3546]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_module_load@many-reload.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at xe_module_load@many-reload.html - shard-dg2-set2: [PASS][220] -> [FAIL][221] ([Intel XE#3546]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_module_load@many-reload.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at xe_module_load@many-reload.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: NOTRUN -> [SKIP][222] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at xe_oa@disabled-read-error.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][223] ([Intel XE#2248]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][224] ([Intel XE#1420]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at xe_pat@pat-index-xehpc.html - shard-dg2-set2: NOTRUN -> [SKIP][225] ([Intel XE#2838] / [Intel XE#979]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][226] ([Intel XE#1173]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][227] ([Intel XE#2284]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-8/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][228] ([Intel XE#2284] / [Intel XE#366]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-433/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s2idle-vm-bind-prefetch: - shard-dg2-set2: [PASS][229] -> [ABORT][230] ([Intel XE#1358]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_pm@s2idle-vm-bind-prefetch.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-prefetch.html * igt at xe_pm@s4-basic: - shard-lnl: [PASS][231] -> [ABORT][232] ([Intel XE#1358] / [Intel XE#1607]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt at xe_pm@s4-basic.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-2/igt at xe_pm@s4-basic.html * igt at xe_pm@s4-basic-exec: - shard-dg2-set2: [PASS][233] -> [ABORT][234] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_pm@s4-basic-exec.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-432/igt at xe_pm@s4-basic-exec.html * igt at xe_pm@s4-vm-bind-prefetch: - shard-lnl: [PASS][235] -> [ABORT][236] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-6/igt at xe_pm@s4-vm-bind-prefetch.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-2/igt at xe_pm@s4-vm-bind-prefetch.html * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: NOTRUN -> [SKIP][237] ([Intel XE#944]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-433/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][238] ([Intel XE#944]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-4/igt at xe_query@multigpu-query-topology-l3-bank-mask.html * igt at xe_vm@bind-no-array-conflict: - shard-bmg: [PASS][239] -> [SKIP][240] ([Intel XE#1130]) +35 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_vm@bind-no-array-conflict.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at xe_vm@bind-no-array-conflict.html * igt at xe_vm@large-userptr-binds-2147483648: - shard-dg2-set2: NOTRUN -> [SKIP][241] ([Intel XE#1130]) +5 other tests skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at xe_vm@large-userptr-binds-2147483648.html #### Possible fixes #### * igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-3: - shard-bmg: [FAIL][242] ([Intel XE#827]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-3.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-3.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][244] ([Intel XE#3719]) -> [PASS][245] +3 other tests pass [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-3/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][246] ([Intel XE#2136]) -> [PASS][247] +5 other tests pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-432/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][248] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][250] ([Intel XE#3862]) -> [PASS][251] +1 other test pass [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][252] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-433/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: [INCOMPLETE][254] ([Intel XE#3124]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-433/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-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][256] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][258] ([Intel XE#2291]) -> [PASS][259] +1 other test pass [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipa-legacy: - shard-bmg: [INCOMPLETE][260] ([Intel XE#3226]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html * igt at kms_cursor_legacy@torture-bo at pipe-a: - shard-lnl: [DMESG-WARN][262] ([Intel XE#877]) -> [PASS][263] +1 other test pass [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_cursor_legacy@torture-bo at pipe-a.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-5/igt at kms_cursor_legacy@torture-bo at pipe-a.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-bmg: [SKIP][264] ([Intel XE#2316]) -> [PASS][265] +1 other test pass [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-dpms-vs-vblank-race.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][266] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/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 bc-dp2-hdmi-a3: - shard-bmg: [FAIL][268] ([Intel XE#3288] / [Intel XE#3321]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/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 at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][270] ([Intel XE#3321]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@absolute-wf_vblank: - shard-lnl: [INCOMPLETE][272] ([Intel XE#2049]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-4/igt at kms_flip@absolute-wf_vblank.html * igt at kms_flip@absolute-wf_vblank at b-edp1: - shard-lnl: [INCOMPLETE][274] -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank at b-edp1.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-4/igt at kms_flip@absolute-wf_vblank at b-edp1.html * igt at kms_flip@basic-flip-vs-wf_vblank: - shard-dg2-set2: [FAIL][276] ([Intel XE#3098]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@basic-flip-vs-wf_vblank.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-464/igt at kms_flip@basic-flip-vs-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2-set2: [INCOMPLETE][278] ([Intel XE#3937]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4: - shard-dg2-set2: [INCOMPLETE][280] -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: - shard-dg2-set2: [FAIL][282] ([Intel XE#301]) -> [PASS][283] +4 other tests pass [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2: - shard-bmg: [FAIL][284] ([Intel XE#3288]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: [FAIL][286] ([Intel XE#3321]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at d-dp4: - shard-dg2-set2: [FAIL][288] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html * igt at kms_flip@flip-vs-rmfb at d-hdmi-a3: - shard-bmg: [INCOMPLETE][290] -> [PASS][291] +3 other tests pass [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-bmg: [SKIP][292] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][293] +2 other tests pass [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_lease@possible-crtcs-filtering: - shard-bmg: [SKIP][294] ([Intel XE#3007]) -> [PASS][295] +6 other tests pass [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_lease@possible-crtcs-filtering.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_lease@possible-crtcs-filtering.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2-set2: [SKIP][296] ([Intel XE#2423] / [i915#2575]) -> [PASS][297] +6 other tests pass [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-bmg: [SKIP][298] ([Intel XE#2446]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg2-set2: [SKIP][300] ([Intel XE#2446]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [ABORT][302] ([Intel XE#2625]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_pm_rpm@system-suspend-modeset.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at kms_pm_rpm@system-suspend-modeset.html - shard-bmg: [DMESG-WARN][304] -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@system-suspend-modeset.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][306] ([Intel XE#1435]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-5/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [FAIL][308] ([Intel XE#2159]) -> [PASS][309] +1 other test pass [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_vrr@cmrr at pipe-a-edp-1.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-lnl-7/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at xe_exec_basic@many-execqueues-userptr-invalidate-race: - shard-bmg: [SKIP][310] ([Intel XE#1130]) -> [PASS][311] +18 other tests pass [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate: - shard-dg2-set2: [SKIP][312] ([Intel XE#1392]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][314] ([Intel XE#1192]) -> [PASS][315] +1 other test pass [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_live_ktest@xe_mocs.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at xe_live_ktest@xe_mocs.html * igt at xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [SKIP][316] ([Intel XE#1130]) -> [PASS][317] +11 other tests pass [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_pm@s3-vm-bind-unbind-all.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-464/igt at xe_pm@s3-vm-bind-unbind-all.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip-atomic: - shard-bmg: [SKIP][318] ([Intel XE#3007]) -> [SKIP][319] ([Intel XE#3768]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-bmg: [SKIP][320] ([Intel XE#2327]) -> [SKIP][321] ([Intel XE#2136] / [Intel XE#2231]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html - shard-dg2-set2: [SKIP][322] ([Intel XE#316]) -> [SKIP][323] ([Intel XE#2136] / [Intel XE#2351]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][324] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][325] ([Intel XE#1124]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][326] ([Intel XE#2136]) -> [SKIP][327] ([Intel XE#1124]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-433/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@y-tiled-addfb: - shard-bmg: [SKIP][328] ([Intel XE#2328]) -> [SKIP][329] ([Intel XE#2136] / [Intel XE#2231]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_big_fb@y-tiled-addfb.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_big_fb@y-tiled-addfb.html - shard-dg2-set2: [SKIP][330] ([Intel XE#619]) -> [SKIP][331] ([Intel XE#2136] / [Intel XE#2351]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_big_fb@y-tiled-addfb.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: [SKIP][332] ([Intel XE#1124]) -> [SKIP][333] ([Intel XE#2136]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_big_fb@yf-tiled-16bpp-rotate-0.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-bmg: [SKIP][334] ([Intel XE#1124]) -> [SKIP][335] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_big_fb@yf-tiled-8bpp-rotate-0.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_big_fb@yf-tiled-8bpp-rotate-0.html - shard-dg2-set2: [SKIP][336] ([Intel XE#1124]) -> [SKIP][337] ([Intel XE#2136] / [Intel XE#2351]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_big_fb@yf-tiled-8bpp-rotate-0.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][338] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][339] ([Intel XE#607]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: [SKIP][340] ([Intel XE#2136]) -> [SKIP][341] ([Intel XE#607]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_bw@linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][342] ([Intel XE#367]) -> [SKIP][343] ([Intel XE#2423] / [i915#2575]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_bw@linear-tiling-4-displays-2560x1440p.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_bw@linear-tiling-4-displays-2560x1440p.html - shard-bmg: [SKIP][344] ([Intel XE#367]) -> [SKIP][345] ([Intel XE#3007]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_bw@linear-tiling-4-displays-2560x1440p.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_bw@linear-tiling-4-displays-2560x1440p.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][346] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][347] ([Intel XE#2136]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/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-bmg: [SKIP][348] ([Intel XE#2887]) -> [SKIP][349] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html - shard-dg2-set2: [SKIP][350] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][351] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][352] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][353] ([Intel XE#455] / [Intel XE#787]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][354] ([Intel XE#3442]) -> [SKIP][355] ([Intel XE#2136]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][356] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][357] ([Intel XE#2887]) +2 other tests skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][358] ([Intel XE#2136]) -> [SKIP][359] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-432/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt at kms_chamelium_edid@dp-edid-resolution-list: - shard-bmg: [SKIP][360] ([Intel XE#2252]) -> [SKIP][361] ([Intel XE#3007]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_chamelium_edid@dp-edid-resolution-list.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_chamelium_edid@dp-edid-resolution-list.html - shard-dg2-set2: [SKIP][362] ([Intel XE#373]) -> [SKIP][363] ([Intel XE#2423] / [i915#2575]) +1 other test skip [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_chamelium_edid@dp-edid-resolution-list.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_chamelium_edid@dp-edid-resolution-list.html * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: [SKIP][364] ([Intel XE#3007]) -> [SKIP][365] ([Intel XE#2252]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html - shard-dg2-set2: [SKIP][366] ([Intel XE#2423] / [i915#2575]) -> [SKIP][367] ([Intel XE#373]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][368] ([Intel XE#307]) -> [SKIP][369] ([Intel XE#2423] / [i915#2575]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_content_protection@dp-mst-lic-type-0.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-bmg: [SKIP][370] ([Intel XE#2390]) -> [SKIP][371] ([Intel XE#3007]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_content_protection@dp-mst-lic-type-0.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][372] ([Intel XE#3007]) -> [SKIP][373] ([Intel XE#2341]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_content_protection@mei-interface.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-bmg: [FAIL][374] ([Intel XE#1178]) -> [SKIP][375] ([Intel XE#2341]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_content_protection@srm.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_content_protection@srm.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: [SKIP][376] ([Intel XE#455]) -> [SKIP][377] ([Intel XE#2423] / [i915#2575]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_cursor_crc@cursor-random-max-size.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_cursor_crc@cursor-random-max-size.html - shard-bmg: [SKIP][378] ([Intel XE#2320]) -> [SKIP][379] ([Intel XE#3007]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_cursor_crc@cursor-random-max-size.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][380] ([Intel XE#3007]) -> [SKIP][381] ([Intel XE#2320]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-5/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg2-set2: [SKIP][382] ([Intel XE#2423] / [i915#2575]) -> [SKIP][383] ([Intel XE#455]) +2 other tests skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-464/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][384] ([Intel XE#2291]) -> [SKIP][385] ([Intel XE#3007]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-bmg: [SKIP][386] ([Intel XE#2244]) -> [SKIP][387] ([Intel XE#2136] / [Intel XE#2231]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_dsc@dsc-fractional-bpp.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_dsc@dsc-fractional-bpp.html - shard-dg2-set2: [SKIP][388] ([Intel XE#455]) -> [SKIP][389] ([Intel XE#2136]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_dsc@dsc-fractional-bpp.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [SKIP][390] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][391] ([Intel XE#1695]) [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][392] ([Intel XE#3007]) -> [SKIP][393] ([Intel XE#2372]) [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_feature_discovery@chamelium.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-1/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: [SKIP][394] ([Intel XE#2423] / [i915#2575]) -> [SKIP][395] ([Intel XE#701]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_feature_discovery@chamelium.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at kms_feature_discovery@chamelium.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-bmg: [SKIP][396] ([Intel XE#3007]) -> [SKIP][397] ([Intel XE#2316]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][398] ([Intel XE#2597]) -> [SKIP][399] ([Intel XE#3007]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_flip@flip-vs-suspend-interruptible.html - shard-dg2-set2: [INCOMPLETE][400] ([Intel XE#2049] / [Intel XE#2597]) -> [SKIP][401] ([Intel XE#2423] / [i915#2575]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@flip-vs-suspend-interruptible.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][402] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][403] ([Intel XE#2293] / [Intel XE#2380]) [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][404] ([Intel XE#2136]) -> [SKIP][405] ([Intel XE#455]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt: - shard-bmg: [SKIP][406] ([Intel XE#2311]) -> [SKIP][407] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-bmg: [SKIP][408] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][409] ([Intel XE#2311]) +3 other tests skip [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][410] ([Intel XE#2333]) -> [SKIP][411] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][412] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][413] ([Intel XE#2333]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][414] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][415] ([Intel XE#2312]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][416] ([Intel XE#2312]) -> [FAIL][417] ([Intel XE#2333]) +3 other tests fail [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [INCOMPLETE][418] ([Intel XE#2050]) -> [FAIL][419] ([Intel XE#2333]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][420] ([Intel XE#2333]) -> [SKIP][421] ([Intel XE#2312]) +4 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][422] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][423] ([Intel XE#651]) +1 other test skip [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][424] ([Intel XE#2311]) -> [SKIP][425] ([Intel XE#2312]) +12 other tests skip [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][426] ([Intel XE#651]) -> [SKIP][427] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][428] ([Intel XE#2312]) -> [SKIP][429] ([Intel XE#2311]) +5 other tests skip [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render: - shard-dg2-set2: [SKIP][430] ([Intel XE#651]) -> [SKIP][431] ([Intel XE#2136]) +3 other tests skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][432] ([Intel XE#2312]) -> [SKIP][433] ([Intel XE#2313]) +3 other tests skip [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][434] ([Intel XE#2312]) -> [SKIP][435] ([Intel XE#2136] / [Intel XE#2231]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][436] ([Intel XE#2313]) -> [SKIP][437] ([Intel XE#2312]) +13 other tests skip [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][438] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][439] ([Intel XE#2313]) +4 other tests skip [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html - shard-dg2-set2: [SKIP][440] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][441] ([Intel XE#653]) +1 other test skip [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-1p-rte: - shard-bmg: [SKIP][442] ([Intel XE#2313]) -> [SKIP][443] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-1p-rte.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-1p-rte.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][444] ([Intel XE#2136]) -> [SKIP][445] ([Intel XE#653]) +1 other test skip [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][446] ([Intel XE#653]) -> [SKIP][447] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][448] ([Intel XE#653]) -> [SKIP][449] ([Intel XE#2136]) +3 other tests skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-slowdraw.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][450] ([Intel XE#2340]) -> [SKIP][451] ([Intel XE#3007]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_getfb@getfb2-accept-ccs.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: [SKIP][452] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][453] ([Intel XE#2423] / [i915#2575]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html - shard-bmg: [SKIP][454] ([Intel XE#2763]) -> [SKIP][455] ([Intel XE#3007]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_pm_dc@dc6-psr: - shard-bmg: [SKIP][456] ([Intel XE#2392]) -> [SKIP][457] ([Intel XE#2136] / [Intel XE#2231]) [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_pm_dc@dc6-psr.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_pm_dc@dc6-psr.html - shard-dg2-set2: [SKIP][458] ([Intel XE#1129]) -> [SKIP][459] ([Intel XE#2136] / [Intel XE#2351]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_pm_dc@dc6-psr.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_pm_dc@dc6-psr.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: [SKIP][460] ([Intel XE#1489]) -> [SKIP][461] ([Intel XE#2136]) +1 other test skip [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html - shard-bmg: [SKIP][462] ([Intel XE#1489]) -> [SKIP][463] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][464] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][465] ([Intel XE#2387]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-dpms: - shard-dg2-set2: [SKIP][466] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][467] ([Intel XE#2136]) +1 other test skip [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_psr@fbc-pr-dpms.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_psr@fbc-pr-dpms.html - shard-bmg: [SKIP][468] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][469] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_psr@fbc-pr-dpms.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_psr@fbc-pr-dpms.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][470] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][471] ([Intel XE#2234] / [Intel XE#2850]) [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr@fbc-pr-sprite-blt.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at kms_psr@fbc-pr-sprite-blt.html - shard-dg2-set2: [SKIP][472] ([Intel XE#2136]) -> [SKIP][473] ([Intel XE#2850] / [Intel XE#929]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr@fbc-pr-sprite-blt.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-463/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][474] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][475] ([Intel XE#2136] / [Intel XE#2351]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_psr@fbc-psr-sprite-plane-onoff.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_psr@fbc-psr-sprite-plane-onoff.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-bmg: [SKIP][476] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][477] ([Intel XE#3007]) [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html - shard-dg2-set2: [SKIP][478] ([Intel XE#3414]) -> [SKIP][479] ([Intel XE#2423] / [i915#2575]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][480] ([Intel XE#3007]) -> [SKIP][481] ([Intel XE#3414] / [Intel XE#3904]) [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg2-set2: [SKIP][482] ([Intel XE#2423] / [i915#2575]) -> [SKIP][483] ([Intel XE#3414]) [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-464/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: [SKIP][484] ([Intel XE#2413]) -> [SKIP][485] ([Intel XE#3007]) [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-full.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at kms_scaling_modes@scaling-mode-full.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][486] ([Intel XE#1130]) -> [SKIP][487] ([Intel XE#1280] / [Intel XE#455]) [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_compute_preempt@compute-threadgroup-preempt.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-433/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_eudebug@basic-vm-bind-extended-discovery: - shard-dg2-set2: [SKIP][488] ([Intel XE#1130]) -> [SKIP][489] ([Intel XE#2905]) +1 other test skip [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at xe_eudebug@basic-vm-bind-extended-discovery.html - shard-bmg: [SKIP][490] ([Intel XE#1130]) -> [SKIP][491] ([Intel XE#2905]) +1 other test skip [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at xe_eudebug@basic-vm-bind-extended-discovery.html * igt at xe_eudebug_online@interrupt-all: - shard-bmg: [SKIP][492] ([Intel XE#2905]) -> [SKIP][493] ([Intel XE#1130]) +1 other test skip [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_eudebug_online@interrupt-all.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at xe_eudebug_online@interrupt-all.html - shard-dg2-set2: [SKIP][494] ([Intel XE#2905]) -> [SKIP][495] ([Intel XE#1130]) +1 other test skip [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_eudebug_online@interrupt-all.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at xe_eudebug_online@interrupt-all.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [FAIL][496] ([Intel XE#1000]) -> [INCOMPLETE][497] ([Intel XE#1473]) [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_evict@evict-mixed-many-threads-small.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][498] ([Intel XE#1130]) -> [SKIP][499] ([Intel XE#2322]) [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-1/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_basic@multigpu-once-userptr-invalidate: - shard-bmg: [SKIP][500] ([Intel XE#2322]) -> [SKIP][501] ([Intel XE#1130]) [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@multigpu-once-userptr-invalidate.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at xe_exec_basic@multigpu-once-userptr-invalidate.html - shard-dg2-set2: [SKIP][502] ([Intel XE#1392]) -> [SKIP][503] ([Intel XE#1130]) [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_exec_basic@multigpu-once-userptr-invalidate.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at xe_exec_basic@multigpu-once-userptr-invalidate.html * igt at xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm: - shard-dg2-set2: [SKIP][504] ([Intel XE#288]) -> [SKIP][505] ([Intel XE#1130]) +4 other tests skip [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][506] ([Intel XE#1130]) -> [SKIP][507] ([Intel XE#288]) +1 other test skip [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][508] ([Intel XE#1130]) -> [SKIP][509] ([Intel XE#2360]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][510] ([Intel XE#2833]) -> [SKIP][511] ([Intel XE#1192]) [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_live_ktest@xe_eudebug.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html * igt at xe_oa@non-privileged-map-oa-buffer: - shard-dg2-set2: [SKIP][512] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][513] ([Intel XE#1130]) +2 other tests skip [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_oa@non-privileged-map-oa-buffer.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at xe_oa@non-privileged-map-oa-buffer.html * igt at xe_peer2peer@read: - shard-bmg: [SKIP][514] ([Intel XE#2557]) -> [SKIP][515] ([Intel XE#2427]) [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_peer2peer@read.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-8/igt at xe_peer2peer@read.html - shard-dg2-set2: [SKIP][516] ([Intel XE#1061]) -> [FAIL][517] ([Intel XE#1173]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_peer2peer@read.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at xe_peer2peer@read.html * igt at xe_query@multigpu-query-mem-usage: - shard-bmg: [SKIP][518] ([Intel XE#944]) -> [SKIP][519] ([Intel XE#1130]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_query@multigpu-query-mem-usage.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at xe_query@multigpu-query-mem-usage.html - shard-dg2-set2: [SKIP][520] ([Intel XE#944]) -> [SKIP][521] ([Intel XE#1130]) [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at xe_query@multigpu-query-mem-usage.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][522] ([Intel XE#1130]) -> [SKIP][523] ([Intel XE#944]) [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_query@multigpu-query-uc-fw-version-huc.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-2/igt at xe_query@multigpu-query-uc-fw-version-huc.html - shard-dg2-set2: [SKIP][524] ([Intel XE#1130]) -> [SKIP][525] ([Intel XE#944]) [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-huc.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-436/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][526] ([Intel XE#3342]) -> [SKIP][527] ([Intel XE#1130]) [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at xe_sriov_flr@flr-vf1-clear.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-dg2-435/igt at xe_sriov_flr@flr-vf1-clear.html - shard-bmg: [SKIP][528] ([Intel XE#3342]) -> [SKIP][529] ([Intel XE#1130]) [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_sriov_flr@flr-vf1-clear.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/shard-bmg-4/igt at xe_sriov_flr@flr-vf1-clear.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1174 [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#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#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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#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#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [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#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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [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#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [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#3099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3099 [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#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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [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#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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [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#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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3937 [Intel XE#4016]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4016 [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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8182 -> IGTPW_12414 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12414: 12414 IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12414/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 14:05:31 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 14:05:31 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fvm=3A_F?= =?utf-8?q?ixed_documentation?= In-Reply-To: <20250109073929.913205-1-pravalika.gurram@intel.com> References: <20250109073929.913205-1-pravalika.gurram@intel.com> Message-ID: <173660433136.2415190.7057616344693709226@b555e5b46a47> == Series Details == Series: tests/intel/xe_vm: Fixed documentation URL : https://patchwork.freedesktop.org/series/143310/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15927_full -> IGTPW_12414_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12414_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12414_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_12414/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_12414_full: ### IGT changes ### #### Possible regressions #### * igt at gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-mtlp: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-6/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-4/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg1: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-14/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt at perf_pmu@module-unload: - shard-glk: [PASS][5] -> [ABORT][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk1/igt at perf_pmu@module-unload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk5/igt at perf_pmu@module-unload.html * igt at testdisplay: - shard-snb: NOTRUN -> [DMESG-WARN][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-snb5/igt at testdisplay.html #### Warnings #### * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [TIMEOUT][8] ([i915#12917] / [i915#12964]) -> [FAIL][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-7/igt at gem_pxp@hw-rejects-pxp-buffer.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at gem_pxp@hw-rejects-pxp-buffer.html Known issues ------------ Here are the changes found in IGTPW_12414_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_12414/shard-dg1-17/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8411]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-7/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][12] ([i915#8411]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-7/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#6230]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-5/igt at api_intel_bb@crc32.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-2/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][15] ([i915#11078]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-18/igt at device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][16] ([i915#11078]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-4/igt at device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#11078]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-1/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][18] ([i915#11078]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-5/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-hang at bcs0: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#8414]) +16 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-8/igt at drm_fdinfo@busy-hang at bcs0.html * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8414]) +6 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-4/igt at drm_fdinfo@busy-idle at vecs0.html * igt at drm_fdinfo@most-busy-idle-check-all at bcs0: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8414]) +7 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-18/igt at drm_fdinfo@most-busy-idle-check-all at bcs0.html * igt at gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#7697]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#9323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-6/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_ccs@suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#7697]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][26] ([i915#8562]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-7/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@heartbeat-hang: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-14/igt at gem_ctx_persistence@heartbeat-hang.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#8555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-8/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][29] ([i915#1099]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-snb7/igt at gem_ctx_persistence@legacy-engines-mixed-process.html * igt at gem_ctx_sseu@engines: - shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-4/igt at gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-5/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-7/igt at gem_ctx_sseu@invalid-args.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-18/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_12414/shard-tglu-9/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@unwedge-stress: - shard-dg1: NOTRUN -> [FAIL][36] ([i915#12714] / [i915#5784]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-18/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@full-late-pulse: - shard-dg2: [PASS][37] -> [FAIL][38] ([i915#13364]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-4/igt at gem_exec_balancer@full-late-pulse.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-4/igt at gem_exec_balancer@full-late-pulse.html * igt at gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#4525]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu: NOTRUN -> [SKIP][40] ([i915#4525]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-2/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#4525]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_big@single: - shard-tglu: [PASS][42] -> [ABORT][43] ([i915#11713]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-8/igt at gem_exec_big@single.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-6/igt at gem_exec_big@single.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_12414/shard-rkl-2/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_12414/shard-tglu-4/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture-invisible at smem0: - shard-glk: NOTRUN -> [SKIP][46] ([i915#6334]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk9/igt at gem_exec_capture@capture-invisible at smem0.html * igt at gem_exec_capture@capture-recoverable: - shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#6344]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at gem_exec_capture@capture-recoverable.html * igt at gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4812]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-1/igt at gem_exec_fence@submit3.html * igt at gem_exec_flush@basic-batch-kernel-default-uc: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-7/igt at gem_exec_flush@basic-batch-kernel-default-uc.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3539]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/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][51] ([i915#3539] / [i915#4852]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-17/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#5107]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-5/igt at gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][53] ([i915#5107]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-11/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-wc-active: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3281]) +7 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-6/igt at gem_exec_reloc@basic-wc-active.html * igt at gem_exec_reloc@basic-wc-noreloc: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3281]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-1/igt at gem_exec_reloc@basic-wc-noreloc.html * igt at gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#3281]) +10 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at gem_exec_reloc@basic-wc-read-active.html * igt at gem_exec_reloc@basic-write-wc-active: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3281]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-6/igt at gem_exec_reloc@basic-write-wc-active.html * igt at gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4812]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-13/igt at gem_exec_schedule@preempt-queue-contexts.html * igt at gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-4/igt at gem_exec_schedule@semaphore-power.html * igt at gem_exec_suspend@basic-s4-devices: - shard-tglu: [PASS][60] -> [ABORT][61] ([i915#7975] / [i915#8213]) +1 other test abort [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-2/igt at gem_exec_suspend@basic-s4-devices.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-10/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: [PASS][62] -> [ABORT][63] ([i915#7975] / [i915#8213]) +1 other test abort [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-12/igt at gem_exec_suspend@basic-s4-devices at lmem0.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_fence_thrash@bo-copy: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4860]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-17/igt at gem_fence_thrash@bo-copy.html * igt at gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4860]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-7/igt at gem_fence_thrash@bo-write-verify-threaded-none.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4860]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-6/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][67] ([i915#2190]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk5/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#4613] / [i915#7582]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-7/igt at gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][69] ([i915#4613] / [i915#7582]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-9/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#4613]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#4613]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][72] ([i915#5493]) +1 other test timeout [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-1/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][73] ([i915#4613]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk1/igt at gem_lmem_swapping@verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4613]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-2/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#12193]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at gem_lmem_swapping@verify-random-ccs.html - shard-tglu: NOTRUN -> [SKIP][76] ([i915#4613]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-9/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_lmem_swapping@verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4565]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8289]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-4/igt at gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][79] ([i915#8289]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-5/igt at gem_media_fill@media-fill.html * igt at gem_mmap_gtt@basic-copy: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4077]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-8/igt at gem_mmap_gtt@basic-copy.html - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4077]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-2/igt at gem_mmap_gtt@basic-copy.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: NOTRUN -> [ABORT][82] ([i915#10729]) +1 other test abort [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-1/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4083]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-4/igt at gem_mmap_wc@copy.html * igt at gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4083]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-4/igt at gem_mmap_wc@write.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4083]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-17/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3282]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-4/igt at gem_partial_pwrite_pread@write.html * igt at gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][87] ([i915#2658]) +1 other test warn [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk2/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3282]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-7/igt at gem_pwrite@basic-exhaustion.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#3282]) +5 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-17/igt at gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][90] ([i915#2658]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-4/igt at gem_pwrite@basic-exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3282]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-7/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][92] ([i915#12964]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at gem_pxp@fail-invalid-protected-context.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#13398]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-9/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#13398]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@protected-raw-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][95] ([i915#12917] / [i915#12964]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-5/igt at gem_pxp@protected-raw-src-copy-not-readible.html * igt at gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4270]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at gem_pxp@reject-modify-context-protection-off-3.html * igt at gem_pxp@verify-pxp-stale-buf-execution: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#4270]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-7/igt at gem_pxp@verify-pxp-stale-buf-execution.html * igt at gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#8428]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-4/igt at gem_render_copy@linear-to-vebox-y-tiled.html * igt at gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#5190] / [i915#8428]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-10/igt at gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4079]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#4885]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-14/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#3297]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-17/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][103] ([i915#3323]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk9/igt at gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][104] ([i915#3297] / [i915#3323]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-2/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#3297]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-6/igt at gem_userptr_blits@invalid-mmap-offset-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#3297]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-7/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#3297] / [i915#4880]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-13/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#3297] / [i915#4880]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-10/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#3297]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-5/igt at gem_userptr_blits@readonly-unsync.html * igt at gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#3297] / [i915#4958]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-13/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-overlap: - shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#3297]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at gem_userptr_blits@unsync-overlap.html * igt at gem_workarounds@suspend-resume: - shard-glk: [PASS][112] -> [INCOMPLETE][113] ([i915#13356]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk7/igt at gem_workarounds@suspend-resume.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk8/igt at gem_workarounds@suspend-resume.html * igt at gen9_exec_parse@bb-chained: - shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#2527] / [i915#2856]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#2527] / [i915#2856]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-8/igt at gen9_exec_parse@bb-large.html * igt at gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#2527]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at gen9_exec_parse@bb-start-out.html * igt at gen9_exec_parse@bb-start-param: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#2527]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-18/igt at gen9_exec_parse@bb-start-param.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#2856]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-6/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#2856]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-10/igt at gen9_exec_parse@shadow-peek.html * igt at i915_module_load@load: - shard-glk: ([PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143]) -> ([PASS][144], [PASS][145], [DMESG-WARN][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167]) ([i915#118]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk4/igt at i915_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk3/igt at i915_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk4/igt at i915_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk4/igt at i915_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk3/igt at i915_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk4/igt at i915_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk5/igt at i915_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk2/igt at i915_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk5/igt at i915_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk2/igt at i915_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk6/igt at i915_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk6/igt at i915_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk1/igt at i915_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk7/igt at i915_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk7/igt at i915_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk1/igt at i915_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk7/igt at i915_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk8/igt at i915_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk9/igt at i915_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk1/igt at i915_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk9/igt at i915_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk8/igt at i915_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk9/igt at i915_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk3/igt at i915_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk8/igt at i915_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk7/igt at i915_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk7/igt at i915_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk5/igt at i915_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk9/igt at i915_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk2/igt at i915_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk1/igt at i915_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk4/igt at i915_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk3/igt at i915_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk5/igt at i915_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk3/igt at i915_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk4/igt at i915_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk5/igt at i915_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk4/igt at i915_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk9/igt at i915_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk6/igt at i915_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk9/igt at i915_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk7/igt at i915_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk2/igt at i915_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk1/igt at i915_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk8/igt at i915_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk3/igt at i915_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk1/igt at i915_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk6/igt at i915_module_load@load.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][168] -> [ABORT][169] ([i915#9820]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-5/igt at i915_module_load@reload-with-fault-injection.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-2/igt at i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][170] -> [ABORT][171] ([i915#12817] / [i915#9820]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-9/igt at i915_module_load@reload-with-fault-injection.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-6/igt at i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [ABORT][172] ([i915#9820]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-7/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#7091]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-10/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#8399]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-2/igt at i915_pm_freq_api@freq-reset-multiple.html * igt at i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#8399]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-8/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#6590]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rpm@gem-execbuf-stress: - shard-rkl: [PASS][177] -> [SKIP][178] ([i915#13328]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-5/igt at i915_pm_rpm@gem-execbuf-stress.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at i915_pm_rpm@gem-execbuf-stress.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][179] ([i915#12797]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk5/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#11681] / [i915#6621]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at i915_pm_rps@basic-api.html * igt at i915_power@sanity: - shard-mtlp: [PASS][181] -> [SKIP][182] ([i915#7984]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-5/igt at i915_power@sanity.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-8/igt at i915_power@sanity.html * igt at i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#6245]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at i915_query@hwconfig_table.html * igt at i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][184] ([i915#9311]) +1 other test dmesg-warn [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-snb5/igt at i915_selftest@mock.html * igt at i915_suspend@basic-s3-without-i915: - shard-rkl: NOTRUN -> [INCOMPLETE][185] ([i915#4817]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-3/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@fence-restore-untiled: - shard-rkl: NOTRUN -> [DMESG-FAIL][186] ([i915#12964]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-7/igt at i915_suspend@fence-restore-untiled.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][187] ([i915#4817]) +1 other test incomplete [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk1/igt at i915_suspend@forcewake.html * igt at intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#7707]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-2/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#4212]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-17/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-tglu: [PASS][190] -> [FAIL][191] ([i915#10991] / [i915#13320]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-8/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-2/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1: - shard-tglu: [PASS][192] -> [FAIL][193] ([i915#10991]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-8/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-2/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-1-y-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#8709]) +7 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-1-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][195] ([i915#8709]) +3 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-3/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][196] ([i915#12967] / [i915#6228]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-11/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#9531]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/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-dg1: NOTRUN -> [SKIP][198] ([i915#1769] / [i915#3555]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-14/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#4538] / [i915#5286]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-18/igt at kms_big_fb@4-tiled-8bpp-rotate-180.html * igt at kms_big_fb@4-tiled-addfb: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#5286]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/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][201] ([i915#5286]) +4 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-2/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-0-hflip: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#5286]) +5 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3638]) +3 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-5/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#3638]) +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#5190]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-3/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#6187]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-3/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][207] +14 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-2/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#4538] / [i915#5190]) +6 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-1/igt at kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#4538]) +4 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-13/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-y-tiled-ccs at pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#6095]) +44 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-9/igt at kms_ccs@bad-aux-stride-y-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#12313]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#12313]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-9/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#10307] / [i915#10434] / [i915#6095]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-4/igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#12805]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-2/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-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#6095]) +14 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-3/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#6095]) +7 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-8/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#12313]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/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][218] ([i915#6095]) +29 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/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@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#10307] / [i915#6095]) +120 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-8/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#12313]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-ccs at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#6095]) +91 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at kms_ccs@random-ccs-data-y-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#6095]) +135 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/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-tglu-1: NOTRUN -> [SKIP][223] ([i915#3742]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_color@ctm-0-50: - shard-tglu-1: NOTRUN -> [SKIP][224] +46 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_chamelium_color@ctm-0-50.html - shard-mtlp: NOTRUN -> [SKIP][225] +4 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-4/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#11151] / [i915#7828]) +4 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-6/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_edid@vga-edid-read: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#11151] / [i915#7828]) +7 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-2/igt at kms_chamelium_edid@vga-edid-read.html * igt at kms_chamelium_frames@dp-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#11151] / [i915#7828]) +4 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-1/igt at kms_chamelium_frames@dp-crc-multiple.html * igt at kms_chamelium_frames@hdmi-crc-fast: - shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#11151] / [i915#7828]) +2 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_chamelium_frames@hdmi-crc-fast.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#11151] / [i915#7828]) +9 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#11151] / [i915#7828]) +3 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-1/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_color@deep-color: - shard-dg2: [PASS][232] -> [SKIP][233] ([i915#3555]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-10/igt at kms_color@deep-color.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-3/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-7/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#6944] / [i915#9424]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-4/igt at kms_content_protection@content-type-change.html - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#6944] / [i915#9424]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-0: - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#3116] / [i915#3299]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#3299]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-1/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#9424]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-8/igt at kms_content_protection@lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][240] ([i915#9424]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-6/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#6944] / [i915#9424]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-2/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#9424]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-17/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][243] ([i915#7173]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-10/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#7116] / [i915#9424]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#6944] / [i915#9424]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-6/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-dpms at pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][246] ([i915#12964]) +13 other tests dmesg-warn [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at kms_cursor_crc@cursor-dpms at pipe-a-hdmi-a-1.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#3555]) +3 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-2/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#8814]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-7/igt at kms_cursor_crc@cursor-onscreen-128x42.html * igt at kms_cursor_crc@cursor-onscreen-256x256: - shard-rkl: [PASS][249] -> [DMESG-WARN][250] ([i915#12964]) +47 other tests dmesg-warn [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-2/igt at kms_cursor_crc@cursor-onscreen-256x256.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-1/igt at kms_cursor_crc@cursor-onscreen-256x256.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#13049]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#13049]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#13049]) +2 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-1/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][254] ([i915#13049]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-4/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#13049]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-1/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#3555]) +7 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#13049]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-5/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][258] ([i915#12358] / [i915#7882]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk3/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][259] ([i915#12358]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk3/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_crc@cursor-suspend at pipe-d-hdmi-a-4: - shard-dg1: [PASS][260] -> [DMESG-WARN][261] ([i915#4423]) +1 other test dmesg-warn [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-14/igt at kms_cursor_crc@cursor-suspend at pipe-d-hdmi-a-4.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-17/igt at kms_cursor_crc@cursor-suspend at pipe-d-hdmi-a-4.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#9809]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-3/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][263] ([i915#4103]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-2/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#4103] / [i915#4213]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-14/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#13046] / [i915#5354]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-10/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#4213]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#4103]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-2/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#9723]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-13/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][269] ([i915#12170]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-snb5/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][270] ([i915#11968]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-snb5/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#9723]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-3/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#8588]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][273] ([i915#8588]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-9/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#12402]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-5/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_dsc@dsc-basic: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#3840]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-14/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#3840]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#3840]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-5/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#3840]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#3840]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-5/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#3840] / [i915#9053]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#3955]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-2/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#3469]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-9/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#1839]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-13/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#9337]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-2/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#658]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-5/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#3637]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-2/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#9934]) +4 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#9934]) +5 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-18/igt at kms_flip@2x-flip-vs-dpms.html - shard-tglu: NOTRUN -> [SKIP][289] ([i915#3637]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-4/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][290] ([i915#8381]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-17/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-plain-flip: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#9934]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-11/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#3637]) +8 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1: - shard-tglu: [PASS][293] -> [FAIL][294] ([i915#11989]) +1 other test fail [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-3/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1.html * igt at kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#8381]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-2/igt at kms_flip@flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][296] ([i915#8381]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-8/igt at kms_flip@flip-vs-fences.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#2672] / [i915#3555] / [i915#8813]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-6/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#2672] / [i915#8813]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-6/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-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-rkl: NOTRUN -> [SKIP][299] ([i915#2672]) +4 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-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-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#2672] / [i915#3555]) +4 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-3/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-upscaling: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#2587] / [i915#2672] / [i915#3555]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-18/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-downscaling: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#2672] / [i915#3555] / [i915#5190]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-7/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-dg2: NOTRUN -> [SKIP][303] ([i915#2672]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-7/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-16bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#2672] / [i915#3555]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/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][305] ([i915#2587] / [i915#2672]) +2 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/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-4tiledg2rcccs-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#2587] / [i915#2672]) +4 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-9/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][307] ([i915#2672] / [i915#3555]) +4 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#2672] / [i915#3555]) +4 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/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-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#2587] / [i915#2672]) +5 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-17/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][310] +36 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-18/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#8708]) +2 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][312] ([i915#10056] / [i915#13353]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk6/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#8708]) +7 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][314] ([i915#8708]) +11 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#1825]) +38 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#9766]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-17/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][317] ([i915#9766]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-6/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][318] +68 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-8/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html - shard-dg2: NOTRUN -> [SKIP][319] ([i915#10433] / [i915#3458]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#3458]) +10 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#3023]) +18 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-5/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#1825]) +7 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#5354]) +15 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][324] ([i915#3458]) +20 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][325] ([i915#3555] / [i915#8228]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-18/igt at kms_hdr@static-swap.html - shard-tglu: NOTRUN -> [SKIP][326] ([i915#3555] / [i915#8228]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-4/igt at kms_hdr@static-swap.html - shard-dg2: NOTRUN -> [SKIP][327] ([i915#3555] / [i915#8228]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-5/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#3555] / [i915#8228]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-1/igt at kms_hdr@static-toggle.html - shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#3555] / [i915#8228]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_hdr@static-toggle.html * igt at kms_histogram@algo-basic: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#13389]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-2/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#13389]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at kms_histogram@algo-color.html * igt at kms_joiner@basic-big-joiner: - shard-dg1: NOTRUN -> [SKIP][332] ([i915#10656]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-17/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][333] ([i915#12388]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-3/igt at kms_joiner@basic-force-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][334] ([i915#12388]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-1/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][335] ([i915#12394]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-18/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#12339]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#12388]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-1/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#10656]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][339] ([i915#12394]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-3/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][340] ([i915#12394]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-8/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#10656]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][342] ([i915#1839]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-9/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#6301]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-dg1: NOTRUN -> [SKIP][344] ([i915#6301]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-13/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][345] +2 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-8/igt at kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][346] ([i915#13026]) +1 other test incomplete [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk6/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][347] ([i915#12178]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk5/igt at kms_plane_alpha_blend@alpha-basic.html * igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][348] ([i915#7862]) +1 other test fail [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk5/igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][349] ([i915#10647] / [i915#12169]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk4/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][350] ([i915#10647]) +1 other test fail [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk4/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_lowres@tiling-yf: - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#3555]) +2 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#3555]) +2 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-2/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#12247]) +5 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-2/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation: - shard-glk: NOTRUN -> [SKIP][354] +382 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk7/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-dg1: NOTRUN -> [SKIP][355] ([i915#12247]) +4 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/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][356] ([i915#12247] / [i915#6953]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-8/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#12247]) +9 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/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 at pipe-b: - shard-tglu: NOTRUN -> [SKIP][358] ([i915#12247]) +7 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-8/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#6953]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-5/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][360] ([i915#12247] / [i915#3555]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][361] ([i915#12247] / [i915#6953]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-4/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5 at pipe-c: - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#12247]) +7 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-4/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5 at pipe-c.html * igt at kms_pm_backlight@basic-brightness: - shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#9812]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#5354]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at kms_pm_backlight@fade-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][365] ([i915#5354]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-17/igt at kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][366] ([i915#9812]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-6/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#9685]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-4/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][368] ([i915#9685]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-6/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#3828]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-5/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu-1: NOTRUN -> [FAIL][370] ([i915#9295]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][371] ([i915#3828]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-7/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][372] ([i915#8430]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-2/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][373] ([i915#9519]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-5/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][374] -> [SKIP][375] ([i915#9519]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-1/igt at kms_pm_rpm@dpms-non-lpsp.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][376] ([i915#4077]) +3 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-18/igt at kms_pm_rpm@fences.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][377] ([i915#9519]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-5/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][378] -> [SKIP][379] ([i915#9519]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-7/igt at kms_pm_rpm@modeset-non-lpsp.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-4/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][380] ([i915#9519]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][381] ([i915#6524]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-17/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][382] ([i915#11520]) +9 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-8/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][383] ([i915#11520]) +13 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk8/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][384] ([i915#11520]) +8 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/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-move-continuous-exceed-fully-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][385] ([i915#9808]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-6/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][386] ([i915#12316]) +3 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-5/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf at pipe-b-edp-1.html * igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-rkl: NOTRUN -> [SKIP][387] ([i915#11520]) +7 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/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-snb: NOTRUN -> [SKIP][388] ([i915#11520]) +12 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-snb5/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][389] ([i915#11520]) +5 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-4/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][390] ([i915#11520]) +6 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/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-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][391] ([i915#9683]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-6/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr-primary-page-flip at edp-1: - shard-mtlp: NOTRUN -> [SKIP][392] ([i915#9688]) +8 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-2/igt at kms_psr@fbc-psr-primary-page-flip at edp-1.html * igt at kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][393] ([i915#1072] / [i915#9732]) +16 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt at kms_psr@psr-primary-render: - shard-tglu: NOTRUN -> [SKIP][394] ([i915#9732]) +16 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-9/igt at kms_psr@psr-primary-render.html * igt at kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][395] ([i915#1072] / [i915#9732]) +10 other tests skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-1/igt at kms_psr@psr2-cursor-blt.html * igt at kms_psr@psr2-sprite-blt: - shard-tglu-1: NOTRUN -> [SKIP][396] ([i915#9732]) +13 other tests skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_psr@psr2-sprite-blt.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][397] ([i915#1072] / [i915#9732]) +18 other tests skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-1/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][398] ([i915#9685]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/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-rkl: NOTRUN -> [SKIP][399] ([i915#5289]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][400] ([i915#5289]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][401] ([i915#13179]) +1 other test abort [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@basic: - shard-tglu: [PASS][402] -> [FAIL][403] ([i915#5465]) +2 other tests fail [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt at kms_setmode@basic.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-2/igt at kms_setmode@basic.html * igt at kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][404] ([IGT#160] / [i915#6493]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-18/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][405] ([i915#8623]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-4/igt at kms_tiled_display@basic-test-pattern.html - shard-glk: NOTRUN -> [FAIL][406] ([i915#10959]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk4/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][407] ([i915#8623]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-6/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][408] ([i915#8623]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-8/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@cursor-fb-leak at pipe-d-edp-1: - shard-mtlp: [PASS][409] -> [FAIL][410] ([i915#9196]) +1 other test fail [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-3/igt at kms_universal_plane@cursor-fb-leak at pipe-d-edp-1.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-5/igt at kms_universal_plane@cursor-fb-leak at pipe-d-edp-1.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1: - shard-glk: [PASS][411] -> [INCOMPLETE][412] ([i915#12276]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk6/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk4/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][413] ([i915#12276]) +1 other test incomplete [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-glk4/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][414] ([i915#9906]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-4/igt at kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][415] ([i915#9906]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-7/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][416] ([i915#3555] / [i915#8808]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-7/igt at kms_vrr@flip-dpms.html - shard-dg2: NOTRUN -> [SKIP][417] ([i915#3555]) +1 other test skip [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-10/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][418] ([i915#11920]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at kms_vrr@lobf.html - shard-mtlp: NOTRUN -> [SKIP][419] ([i915#11920]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-3/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-tglu-1: NOTRUN -> [SKIP][420] ([i915#3555] / [i915#9906]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-1/igt at kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][421] ([i915#3555] / [i915#9906]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-18/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-dg1: NOTRUN -> [SKIP][422] ([i915#9906]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-17/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at perf@blocking: - shard-mtlp: [PASS][423] -> [FAIL][424] ([i915#10538]) +1 other test fail [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-6/igt at perf@blocking.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-4/igt at perf@blocking.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][425] ([i915#2434]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-11/igt at perf@mi-rpc.html * igt at perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][426] ([i915#2433]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-1/igt at perf@unprivileged-single-ctx-counters.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][427] +453 other tests skip [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-snb2/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@busy-double-start at ccs0: - shard-dg2: [PASS][428] -> [FAIL][429] ([i915#4349]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-4/igt at perf_pmu@busy-double-start at ccs0.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-8/igt at perf_pmu@busy-double-start at ccs0.html * igt at perf_pmu@busy-double-start at vecs0: - shard-mtlp: [PASS][430] -> [FAIL][431] ([i915#4349]) +2 other tests fail [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-6/igt at perf_pmu@busy-double-start at vecs0.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-2/igt at perf_pmu@busy-double-start at vecs0.html * igt at perf_pmu@most-busy-check-all: - shard-rkl: [PASS][432] -> [DMESG-FAIL][433] ([i915#12964]) +4 other tests dmesg-fail [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-1/igt at perf_pmu@most-busy-check-all.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-4/igt at perf_pmu@most-busy-check-all.html * igt at perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][434] ([i915#8516]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-18/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][435] ([i915#8516]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-3/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][436] ([i915#8516]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-5/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][437] ([i915#8516]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-3/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][438] ([i915#3708]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-17/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][439] ([i915#3708] / [i915#4077]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-18/igt at prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][440] ([i915#3708] / [i915#4077]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-1/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-flip-hang: - shard-mtlp: NOTRUN -> [SKIP][441] ([i915#3708]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-6/igt at prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][442] ([i915#3708]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg2-3/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][443] ([i915#3708]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-5/igt at prime_vgem@fence-read-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][444] ([i915#9917]) +1 other test skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][445] ([i915#9917]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-rkl-2/igt at sriov_basic@enable-vfs-autoprobe-on.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1: - shard-tglu: NOTRUN -> [FAIL][446] ([i915#12910]) +18 other tests fail [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-tglu-4/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-2: - shard-mtlp: NOTRUN -> [FAIL][447] ([i915#12910]) +9 other tests fail [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-mtlp-6/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-2.html #### Possible fixes #### * igt at gem_eio@in-flight-immediate: - shard-dg1: [DMESG-WARN][448] ([i915#4423]) -> [PASS][449] +2 other tests pass [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-17/igt at gem_eio@in-flight-immediate.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/shard-dg1-12/igt at gem_eio@in-flight-immediate.html * igt at gem_exec_balancer@full-pulse: - shard-dg2: [FAIL][450] ([i915#13364]) -> [PASS][451] [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12414/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 14:23:44 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 14:23:44 -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_=28rev2=29?= In-Reply-To: <20250109083858.39089-1-pranay.samala@intel.com> References: <20250109083858.39089-1-pranay.samala@intel.com> Message-ID: <173660542418.2424720.14865604733077789949@b555e5b46a47> == Series Details == Series: tests/kms_plane_scaling: Add logs to skips (rev2) URL : https://patchwork.freedesktop.org/series/143093/ State : failure == Summary == CI Bug Log - changes from XEIGT_8182_full -> XEIGTPW_12415_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12415_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12415_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_12415_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@flip-vs-suspend-interruptible at c-edp1: - shard-lnl: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-4/igt at kms_flip@flip-vs-suspend-interruptible at c-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-7/igt at kms_flip@flip-vs-suspend-interruptible at c-edp1.html * igt at kms_flip@flip-vs-suspend-interruptible at c-hdmi-a6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible at c-hdmi-a6.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2: - shard-bmg: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-4/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp2.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-dg2-set2: [PASS][5] -> [ABORT][6] +1 other test abort [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_pipe_crc_basic@suspend-read-crc.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-432/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-d-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [ABORT][7] +1 other test abort [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-432/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-d-hdmi-a-2.html * igt at kms_plane_multiple@tiling-none: - shard-bmg: [PASS][8] -> [INCOMPLETE][9] +3 other tests incomplete [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_plane_multiple@tiling-none.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at kms_plane_multiple@tiling-none.html Known issues ------------ Here are the changes found in XEIGTPW_12415_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#873]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-4/igt at kms_async_flips@invalid-async-flip.html - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#873]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1: - shard-lnl: [PASS][12] -> [FAIL][13] ([Intel XE#3908]) +1 other test fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-4/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-4/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-7/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2327]) +4 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1467]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-8/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +6 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-435/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-5/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +8 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/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-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2314] / [Intel XE#2894]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#2191]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-435/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#367]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#367]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][24] -> [SKIP][25] ([Intel XE#2136]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-4/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-435/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-bmg: [PASS][28] -> [SKIP][29] ([Intel XE#2136] / [Intel XE#2231]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#3432]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#3432]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#2136]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#787]) +132 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][34] -> [INCOMPLETE][35] ([Intel XE#1727] / [Intel XE#3124]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/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-b-dp-4: - shard-dg2-set2: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-dp-4.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2887]) +6 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_cdclk@plane-scaling at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1152]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-435/igt at kms_cdclk@plane-scaling at pipe-b-dp-4.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#306]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-4/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#306]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-463/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2252]) +9 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-7/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#373]) +5 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-464/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#1178]) +1 other test fail [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at kms_content_protection@atomic.html - shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#1178]) +1 other test fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-464/igt at kms_content_protection@atomic.html * igt at kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#3278]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-8/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2321]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1424]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-7/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#308]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-433/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#323]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-433/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2286]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-4/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#309]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-5/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [PASS][54] -> [SKIP][55] ([Intel XE#2291]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [PASS][56] -> [DMESG-WARN][57] ([Intel XE#877]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2291]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_dp_aux_dev: - shard-dg2-set2: [PASS][59] -> [SKIP][60] ([Intel XE#2423]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_dp_aux_dev.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#3070]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_dp_linktrain_fallback@dp-fallback.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#2244]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-5/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#455]) +11 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-463/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2374]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#1135]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-464/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1421]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-7/igt at kms_flip@2x-blocking-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ac-hdmi-a6-dp4: - shard-dg2-set2: [PASS][68] -> [FAIL][69] ([Intel XE#2882]) +2 other tests fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ac-hdmi-a6-dp4.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-463/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ac-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][70] ([Intel XE#301]) +3 other tests fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank at ad-hdmi-a6-dp4.html * igt at kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#2316]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_flip@2x-modeset-vs-vblank-race.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_flip@2x-modeset-vs-vblank-race.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][73] -> [FAIL][74] ([Intel XE#2882]) +4 other tests fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2: - shard-bmg: [PASS][75] -> [FAIL][76] ([Intel XE#3288] / [Intel XE#3321]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-lnl: [PASS][77] -> [INCOMPLETE][78] ([Intel XE#2049]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-4/igt at kms_flip@flip-vs-suspend-interruptible.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-7/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at b-dp2: - shard-bmg: NOTRUN -> [FAIL][79] ([Intel XE#2882]) +1 other test fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-4/igt at kms_flip@plain-flip-fb-recreate-interruptible at b-dp2.html * igt at kms_flip@wf_vblank-ts-check-interruptible at a-edp1: - shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#886]) +3 other tests fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_flip@wf_vblank-ts-check-interruptible at a-edp1.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-4/igt at kms_flip@wf_vblank-ts-check-interruptible at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1397] / [Intel XE#1745]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1397]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2293]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#651]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2311]) +18 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][87] ([Intel XE#2333]) +6 other tests fail [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/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-lnl: NOTRUN -> [SKIP][88] ([Intel XE#656]) +11 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2312]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#651]) +10 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#653]) +12 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#658]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2313]) +18 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#3544]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [PASS][96] -> [SKIP][97] ([Intel XE#1503]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_hdr@invalid-hdr.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_hdr@invalid-hdr.html * igt at kms_histogram@algo-basic: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#3897]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-4/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#3897]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-1/igt at kms_histogram@algo-color.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#346]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#346]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-464/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#356]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-5/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - shard-dg2-set2: [PASS][103] -> [SKIP][104] ([Intel XE#2423] / [i915#2575]) +16 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][105] ([Intel XE#616]) +2 other tests fail [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-464/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#599]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-1/igt at kms_plane_lowres@tiling-x at pipe-b-edp-1.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#3307]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-4/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2763]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-435/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-modifiers at pipe-d: - 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_12415/shard-dg2-435/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-bmg: [PASS][110] -> [SKIP][111] ([Intel XE#3007]) +19 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#2763]) +7 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-4/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2763]) +14 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2392]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at kms_pm_dc@dc5-psr.html - shard-lnl: [PASS][115] -> [FAIL][116] ([Intel XE#718]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt at kms_pm_dc@dc5-psr.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: NOTRUN -> [FAIL][117] ([Intel XE#1430]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#1439] / [Intel XE#836]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2446]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#1439] / [Intel XE#3141]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-5/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#2893]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-1/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#1489]) +4 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1489]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-463/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1128]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-6/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-464/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1406]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-2/igt at kms_psr@pr-primary-blt.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2234]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_psr@psr2-primary-render.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2330]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#3414] / [Intel XE#3904]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#1435]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-4/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][132] -> [SKIP][133] ([Intel XE#1435]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_setmode@invalid-clone-single-crtc.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1500]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@disable-primary-vs-flip: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#3007]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_universal_plane@disable-primary-vs-flip.html - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2423] / [i915#2575]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_universal_plane@disable-primary-vs-flip.html * igt at kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#1499]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@negative-basic: - shard-bmg: [PASS][138] -> [SKIP][139] ([Intel XE#1499]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_vrr@negative-basic.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_vrr@negative-basic.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#3889]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#3889]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-6/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#2905]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-7/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2905]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][144] -> [TIMEOUT][145] ([Intel XE#1473] / [Intel XE#402]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-small.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-463/igt at xe_evict@evict-beng-mixed-many-threads-small.html - shard-bmg: NOTRUN -> [TIMEOUT][146] ([Intel XE#1473]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-mixed-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#688]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-4/igt at xe_evict@evict-beng-mixed-threads-large-multi-vm.html * igt at xe_exec_balancer@no-exec-cm-parallel-basic: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#1130]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at xe_exec_balancer@no-exec-cm-parallel-basic.html * igt at xe_exec_balancer@once-virtual-basic: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#1130]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at xe_exec_balancer@once-virtual-basic.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-dg2-set2: [PASS][150] -> [SKIP][151] ([Intel XE#1392]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#2322]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1392]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-4/igt at xe_exec_basic@multigpu-once-userptr.html * igt at xe_exec_fault_mode@many-basic-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#288]) +9 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-463/igt at xe_exec_fault_mode@many-basic-prefetch.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#2905]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-464/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2229]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-4/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1192]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-6/igt at xe_live_ktest@xe_mocs.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#512]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at xe_mmap@small-bar.html * igt at xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2457]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at xe_module_load@force-load.html * igt at xe_module_load@load: - shard-bmg: ([PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183]) -> ([PASS][184], [PASS][185], [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], [SKIP][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209]) ([Intel XE#2457]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-4/igt at xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-4/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-4/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at xe_module_load@load.html * igt at xe_module_load@many-reload: - shard-bmg: [PASS][210] -> [FAIL][211] ([Intel XE#3546]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt at xe_module_load@many-reload.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at xe_module_load@many-reload.html - shard-dg2-set2: [PASS][212] -> [FAIL][213] ([Intel XE#3546]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_module_load@many-reload.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-433/igt at xe_module_load@many-reload.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: NOTRUN -> [SKIP][214] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-464/igt at xe_oa@disabled-read-error.html * igt at xe_oa@mmio-triggered-reports: - shard-bmg: [PASS][215] -> [SKIP][216] ([Intel XE#1130]) +30 other tests skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at xe_oa@mmio-triggered-reports.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at xe_oa@mmio-triggered-reports.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][217] ([Intel XE#2248]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][218] ([Intel XE#1420]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-4/igt at xe_pat@pat-index-xehpc.html - shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#2838] / [Intel XE#979]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-463/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][220] ([Intel XE#1173]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-464/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@s2idle-basic-exec: - shard-dg2-set2: [PASS][221] -> [ABORT][222] ([Intel XE#1358]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_pm@s2idle-basic-exec.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-432/igt at xe_pm@s2idle-basic-exec.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][223] ([Intel XE#2284] / [Intel XE#366]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-435/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s2idle-exec-after: - shard-dg2-set2: [PASS][224] -> [SKIP][225] ([Intel XE#1130]) +24 other tests skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_pm@s2idle-exec-after.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at xe_pm@s2idle-exec-after.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [PASS][226] -> [ABORT][227] ([Intel XE#1358] / [Intel XE#1794]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_pm@s2idle-vm-bind-unbind-all.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_pm@s4-d3hot-basic-exec: - shard-lnl: [PASS][228] -> [ABORT][229] ([Intel XE#1358] / [Intel XE#1607]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at xe_pm@s4-d3hot-basic-exec.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-2/igt at xe_pm@s4-d3hot-basic-exec.html * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: NOTRUN -> [SKIP][230] ([Intel XE#944]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-433/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][231] ([Intel XE#944]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-6/igt at xe_query@multigpu-query-topology-l3-bank-mask.html #### Possible fixes #### * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][232] ([Intel XE#827]) -> [PASS][233] +1 other test pass [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][234] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][236] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-463/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: [INCOMPLETE][238] ([Intel XE#3124]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-463/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-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][240] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][242] ([Intel XE#2291]) -> [PASS][243] +1 other test pass [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipa-legacy: - shard-bmg: [INCOMPLETE][244] ([Intel XE#3226]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][246] ([Intel XE#1340]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-bmg: [SKIP][248] ([Intel XE#2316]) -> [PASS][249] +1 other test pass [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip@2x-dpms-vs-vblank-race.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][250] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][251] +1 other test pass [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/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 bc-dp2-hdmi-a3: - shard-bmg: [FAIL][252] ([Intel XE#3288] / [Intel XE#3321]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/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 at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][254] ([Intel XE#2882]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/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][256] ([Intel XE#3321]) -> [PASS][257] +1 other test pass [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@absolute-wf_vblank: - shard-lnl: [INCOMPLETE][258] ([Intel XE#2049]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-6/igt at kms_flip@absolute-wf_vblank.html * igt at kms_flip@absolute-wf_vblank at b-edp1: - shard-lnl: [INCOMPLETE][260] -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank at b-edp1.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-lnl-6/igt at kms_flip@absolute-wf_vblank at b-edp1.html * igt at kms_flip@basic-flip-vs-wf_vblank: - shard-dg2-set2: [FAIL][262] ([Intel XE#3098]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@basic-flip-vs-wf_vblank.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-432/igt at kms_flip@basic-flip-vs-wf_vblank.html * igt at kms_flip@basic-flip-vs-wf_vblank at a-dp2: - shard-dg2-set2: [FAIL][264] -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_flip@basic-flip-vs-wf_vblank at a-dp2.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-432/igt at kms_flip@basic-flip-vs-wf_vblank at a-dp2.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2-set2: [INCOMPLETE][266] ([Intel XE#3937]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4: - shard-dg2-set2: [INCOMPLETE][268] -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4.html * igt at kms_flip@flip-vs-rmfb at d-hdmi-a3: - shard-bmg: [INCOMPLETE][270] -> [PASS][271] +3 other tests pass [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-4/igt at kms_flip@flip-vs-rmfb at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][272] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs-suspend.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-433/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][274] ([Intel XE#2597]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3: - shard-bmg: [INCOMPLETE][276] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend at c-dp4: - shard-dg2-set2: [INCOMPLETE][278] ([Intel XE#2049]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs-suspend at c-dp4.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-433/igt at kms_flip@flip-vs-suspend at c-dp4.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-bmg: [SKIP][280] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][281] +1 other test pass [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][282] ([Intel XE#2136]) -> [PASS][283] +4 other tests pass [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][284] ([Intel XE#3012]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_joiner@basic-force-big-joiner.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-4/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_lease@possible-crtcs-filtering: - shard-bmg: [SKIP][286] ([Intel XE#3007]) -> [PASS][287] +8 other tests pass [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_lease@possible-crtcs-filtering.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at kms_lease@possible-crtcs-filtering.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2-set2: [SKIP][288] ([Intel XE#2423] / [i915#2575]) -> [PASS][289] +7 other tests pass [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-463/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-bmg: [SKIP][290] ([Intel XE#2446]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg2-set2: [SKIP][292] ([Intel XE#2446]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-433/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [ABORT][294] ([Intel XE#2625]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_pm_rpm@system-suspend-modeset.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_pm_rpm@system-suspend-modeset.html - shard-bmg: [DMESG-WARN][296] -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@system-suspend-modeset.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at kms_pm_rpm@system-suspend-modeset.html * igt at xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: [FAIL][298] ([Intel XE#1600]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_evict@evict-large-multi-vm-cm.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-464/igt at xe_evict@evict-large-multi-vm-cm.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [FAIL][300] ([Intel XE#1000]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_evict@evict-mixed-many-threads-small.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@many-execqueues-userptr-invalidate-race: - shard-bmg: [SKIP][302] ([Intel XE#1130]) -> [PASS][303] +18 other tests pass [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at xe_exec_basic@many-execqueues-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-dg2-set2: [SKIP][304] ([Intel XE#1392]) -> [PASS][305] +1 other test pass [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-463/igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt at xe_exec_basic@once-rebind: - shard-dg2-set2: [SKIP][306] ([Intel XE#1130]) -> [PASS][307] +13 other tests pass [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_basic@once-rebind.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-433/igt at xe_exec_basic@once-rebind.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][308] ([Intel XE#2423] / [i915#2575]) -> [SKIP][309] ([Intel XE#3768]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_async_flips@invalid-async-flip-atomic.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-435/igt at kms_async_flips@invalid-async-flip-atomic.html - shard-bmg: [SKIP][310] ([Intel XE#3007]) -> [SKIP][311] ([Intel XE#3768]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][312] ([Intel XE#2370]) -> [SKIP][313] ([Intel XE#3007]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@x-tiled-16bpp-rotate-90: - shard-bmg: [SKIP][314] ([Intel XE#2327]) -> [SKIP][315] ([Intel XE#2136] / [Intel XE#2231]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html - shard-dg2-set2: [SKIP][316] ([Intel XE#316]) -> [SKIP][317] ([Intel XE#2136]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][318] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][319] ([Intel XE#1124]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][320] ([Intel XE#2136]) -> [SKIP][321] ([Intel XE#1124]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][322] ([Intel XE#1124]) -> [SKIP][323] ([Intel XE#2136] / [Intel XE#2231]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html - shard-dg2-set2: [SKIP][324] ([Intel XE#1124]) -> [SKIP][325] ([Intel XE#2136]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][326] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][327] ([Intel XE#607]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][328] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][329] ([Intel XE#2136]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][330] ([Intel XE#2907]) -> [SKIP][331] ([Intel XE#2136]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][332] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][333] ([Intel XE#455] / [Intel XE#787]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-463/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][334] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][335] ([Intel XE#2887]) +2 other tests skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][336] ([Intel XE#2136]) -> [SKIP][337] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][338] ([Intel XE#2887]) -> [SKIP][339] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html * igt at kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][340] ([Intel XE#2325]) -> [SKIP][341] ([Intel XE#3007]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_chamelium_color@ctm-0-50.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_chamelium_color@ctm-0-50.html - shard-dg2-set2: [SKIP][342] ([Intel XE#306]) -> [SKIP][343] ([Intel XE#2423] / [i915#2575]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_chamelium_color@ctm-0-50.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_frames@dp-crc-multiple: - shard-bmg: [SKIP][344] ([Intel XE#2252]) -> [SKIP][345] ([Intel XE#3007]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_chamelium_frames@dp-crc-multiple.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_chamelium_frames@dp-crc-multiple.html * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: [SKIP][346] ([Intel XE#3007]) -> [SKIP][347] ([Intel XE#2252]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html - shard-dg2-set2: [SKIP][348] ([Intel XE#2423] / [i915#2575]) -> [SKIP][349] ([Intel XE#373]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-464/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][350] ([Intel XE#373]) -> [SKIP][351] ([Intel XE#2423] / [i915#2575]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt at kms_chamelium_hpd@vga-hpd.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][352] ([Intel XE#3007]) -> [SKIP][353] ([Intel XE#2341]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_content_protection@mei-interface.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_content_protection@mei-interface.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][354] ([Intel XE#3007]) -> [SKIP][355] ([Intel XE#2320]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg2-set2: [SKIP][356] ([Intel XE#2423] / [i915#2575]) -> [SKIP][357] ([Intel XE#455]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-464/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: [SKIP][358] ([Intel XE#308]) -> [SKIP][359] ([Intel XE#2423] / [i915#2575]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_cursor_crc@cursor-sliding-512x170.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: [SKIP][360] ([Intel XE#1508]) -> [SKIP][361] ([Intel XE#2136] / [Intel XE#2231]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [SKIP][362] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][363] ([Intel XE#1695]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][364] ([Intel XE#3007]) -> [SKIP][365] ([Intel XE#2372]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_feature_discovery@chamelium.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: [SKIP][366] ([Intel XE#2423] / [i915#2575]) -> [SKIP][367] ([Intel XE#701]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_feature_discovery@chamelium.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-433/igt at kms_feature_discovery@chamelium.html * igt at kms_flip@flip-vs-expired-vblank: - shard-dg2-set2: [FAIL][368] ([Intel XE#301]) -> [SKIP][369] ([Intel XE#2423] / [i915#2575]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: [SKIP][370] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][371] ([Intel XE#2136] / [Intel XE#2231]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html - shard-dg2-set2: [SKIP][372] ([Intel XE#455]) -> [SKIP][373] ([Intel XE#2136]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][374] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][375] ([Intel XE#2293] / [Intel XE#2380]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][376] ([Intel XE#2136]) -> [SKIP][377] ([Intel XE#455]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-432/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][378] ([i915#5274]) -> [SKIP][379] ([Intel XE#2423] / [i915#2575]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_force_connector_basic@prune-stale-modes.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][380] ([Intel XE#651]) -> [SKIP][381] ([Intel XE#2136]) +2 other tests skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][382] ([Intel XE#2311]) -> [SKIP][383] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][384] ([Intel XE#2312]) -> [SKIP][385] ([Intel XE#2311]) +2 other tests skip [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][386] ([Intel XE#2311]) -> [SKIP][387] ([Intel XE#2312]) +13 other tests skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-bmg: [SKIP][388] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][389] ([Intel XE#2311]) +3 other tests skip [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][390] ([Intel XE#2312]) -> [FAIL][391] ([Intel XE#2333]) +2 other tests fail [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [FAIL][392] ([Intel XE#2333]) -> [SKIP][393] ([Intel XE#2312]) +3 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][394] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][395] ([Intel XE#2333]) +1 other test fail [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [INCOMPLETE][396] ([Intel XE#2050]) -> [SKIP][397] ([Intel XE#2312]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][398] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][399] ([Intel XE#651]) +2 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][400] ([Intel XE#651]) -> [SKIP][401] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][402] ([Intel XE#2312]) -> [SKIP][403] ([Intel XE#2136] / [Intel XE#2231]) [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][404] ([Intel XE#2312]) -> [SKIP][405] ([Intel XE#2313]) +3 other tests skip [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][406] ([Intel XE#2313]) -> [SKIP][407] ([Intel XE#2312]) +9 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][408] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][409] ([Intel XE#2313]) +1 other test skip [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html - shard-dg2-set2: [SKIP][410] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][411] ([Intel XE#653]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][412] ([Intel XE#2313]) -> [SKIP][413] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][414] ([Intel XE#653]) -> [SKIP][415] ([Intel XE#2136]) +1 other test skip [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][416] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][417] ([Intel XE#2312]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_plane_lowres@tiling-yf: - shard-bmg: [SKIP][418] ([Intel XE#2393]) -> [SKIP][419] ([Intel XE#3007]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_plane_lowres@tiling-yf.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_plane_lowres@tiling-yf.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: [SKIP][420] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][421] ([Intel XE#2446]) [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_pm_rpm@modeset-lpsp-stress.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-bmg: [SKIP][422] ([Intel XE#1489]) -> [SKIP][423] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html - shard-dg2-set2: [SKIP][424] ([Intel XE#1489]) -> [SKIP][425] ([Intel XE#2136]) +1 other test skip [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][426] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][427] ([Intel XE#2387]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][428] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][429] ([Intel XE#2234] / [Intel XE#2850]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_psr@fbc-pr-sprite-blt.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_psr@fbc-psr-no-drrs: - shard-dg2-set2: [SKIP][430] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][431] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_psr@fbc-psr-no-drrs.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_psr@fbc-psr-no-drrs.html * igt at kms_psr@fbc-psr2-no-drrs: - shard-dg2-set2: [SKIP][432] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][433] ([Intel XE#2136]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at kms_psr@fbc-psr2-no-drrs.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_psr@fbc-psr2-no-drrs.html * igt at kms_psr@psr-sprite-plane-move: - shard-bmg: [SKIP][434] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][435] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at kms_psr@psr-sprite-plane-move.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_psr@psr-sprite-plane-move.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][436] ([Intel XE#3414]) -> [SKIP][437] ([Intel XE#2423] / [i915#2575]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-bmg: [SKIP][438] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][439] ([Intel XE#3007]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][440] ([Intel XE#3007]) -> [SKIP][441] ([Intel XE#3414] / [Intel XE#3904]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg2-set2: [SKIP][442] ([Intel XE#2423] / [i915#2575]) -> [SKIP][443] ([Intel XE#3414]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-432/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_vrr@flip-basic-fastset: - shard-dg2-set2: [SKIP][444] ([Intel XE#455]) -> [SKIP][445] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt at kms_vrr@flip-basic-fastset.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at kms_vrr@flip-basic-fastset.html - shard-bmg: [SKIP][446] ([Intel XE#1499]) -> [SKIP][447] ([Intel XE#3007]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt at kms_vrr@flip-basic-fastset.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at kms_vrr@flip-basic-fastset.html * igt at xe_eudebug@basic-vm-bind-extended-discovery: - shard-dg2-set2: [SKIP][448] ([Intel XE#1130]) -> [SKIP][449] ([Intel XE#2905]) +1 other test skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at xe_eudebug@basic-vm-bind-extended-discovery.html - shard-bmg: [SKIP][450] ([Intel XE#1130]) -> [SKIP][451] ([Intel XE#2905]) +1 other test skip [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-4/igt at xe_eudebug@basic-vm-bind-extended-discovery.html * igt at xe_eudebug@vm-bind-clear: - shard-bmg: [SKIP][452] ([Intel XE#2905]) -> [SKIP][453] ([Intel XE#1130]) +1 other test skip [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_eudebug@vm-bind-clear.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at xe_eudebug@vm-bind-clear.html - shard-dg2-set2: [SKIP][454] ([Intel XE#2905]) -> [SKIP][455] ([Intel XE#1130]) +1 other test skip [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_eudebug@vm-bind-clear.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at xe_eudebug@vm-bind-clear.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][456] ([Intel XE#1473]) -> [FAIL][457] ([Intel XE#1000]) [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_evict@evict-beng-mixed-threads-large.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-1/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][458] ([Intel XE#1000]) -> [INCOMPLETE][459] ([Intel XE#1473]) +1 other test incomplete [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_evict@evict-beng-threads-large.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-bmg: [INCOMPLETE][460] ([Intel XE#1473]) -> [SKIP][461] ([Intel XE#1130]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_evict@evict-mixed-many-threads-large.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at xe_evict@evict-mixed-many-threads-large.html - shard-dg2-set2: [TIMEOUT][462] ([Intel XE#1473]) -> [SKIP][463] ([Intel XE#1130]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_evict@evict-mixed-many-threads-large.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [TIMEOUT][464] ([Intel XE#1473] / [Intel XE#2472]) -> [INCOMPLETE][465] ([Intel XE#1473]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt at xe_evict@evict-mixed-threads-large.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at xe_evict@evict-mixed-threads-large.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-dg2-set2: [SKIP][466] ([Intel XE#1392]) -> [SKIP][467] ([Intel XE#1130]) [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html - shard-bmg: [SKIP][468] ([Intel XE#2322]) -> [SKIP][469] ([Intel XE#1130]) [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][470] ([Intel XE#1130]) -> [SKIP][471] ([Intel XE#2322]) [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@many-execqueues-basic-imm: - shard-dg2-set2: [SKIP][472] ([Intel XE#1130]) -> [SKIP][473] ([Intel XE#288]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@many-execqueues-basic-imm.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-435/igt at xe_exec_fault_mode@many-execqueues-basic-imm.html * igt at xe_exec_fault_mode@many-execqueues-bindexecqueue: - shard-dg2-set2: [SKIP][474] ([Intel XE#288]) -> [SKIP][475] ([Intel XE#1130]) +4 other tests skip [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt at xe_exec_fault_mode@many-execqueues-bindexecqueue.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at xe_exec_fault_mode@many-execqueues-bindexecqueue.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][476] ([Intel XE#1130]) -> [SKIP][477] ([Intel XE#2360]) [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-463/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][478] ([Intel XE#2833]) -> [SKIP][479] ([Intel XE#1192]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt at xe_live_ktest@xe_eudebug.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html * igt at xe_oa@mmio-triggered-reports: - shard-dg2-set2: [SKIP][480] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][481] ([Intel XE#1130]) [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt at xe_oa@mmio-triggered-reports.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at xe_oa@mmio-triggered-reports.html * igt at xe_peer2peer@read: - shard-bmg: [SKIP][482] ([Intel XE#2557]) -> [SKIP][483] ([Intel XE#2427]) [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_peer2peer@read.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-8/igt at xe_peer2peer@read.html - shard-dg2-set2: [SKIP][484] ([Intel XE#1061]) -> [FAIL][485] ([Intel XE#1173]) [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_peer2peer@read.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-464/igt at xe_peer2peer@read.html * igt at xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [SKIP][486] ([Intel XE#1130]) -> [ABORT][487] ([Intel XE#1358] / [Intel XE#1794]) [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt at xe_pm@s3-vm-bind-unbind-all.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-432/igt at xe_pm@s3-vm-bind-unbind-all.html * igt at xe_query@multigpu-query-hwconfig: - shard-bmg: [SKIP][488] ([Intel XE#944]) -> [SKIP][489] ([Intel XE#1130]) [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt at xe_query@multigpu-query-hwconfig.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-2/igt at xe_query@multigpu-query-hwconfig.html - shard-dg2-set2: [SKIP][490] ([Intel XE#944]) -> [SKIP][491] ([Intel XE#1130]) [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt at xe_query@multigpu-query-hwconfig.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-dg2-436/igt at xe_query@multigpu-query-hwconfig.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][492] ([Intel XE#1130]) -> [SKIP][493] ([Intel XE#944]) [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt at xe_query@multigpu-query-uc-fw-version-huc.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/shard-bmg-5/igt at xe_query@multigpu-query-uc-fw-version-huc.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [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#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#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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [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#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#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#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [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#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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908 [Intel XE#3937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3937 [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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [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_8182 -> IGTPW_12415 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2460-532f7797483dad944bcafeb36570f3efbf3b1225 IGTPW_12415: 733d50317e979dbd16ebc8520974138fa72c1065 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2460-532f7797483dad944bcafeb36570f3efbf3b1225: 532f7797483dad944bcafeb36570f3efbf3b1225 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12415/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 18:37:02 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 18:37:02 -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_=28rev2=29?= In-Reply-To: <20250109083858.39089-1-pranay.samala@intel.com> References: <20250109083858.39089-1-pranay.samala@intel.com> Message-ID: <173662062247.2528181.18400205498064150965@b555e5b46a47> == Series Details == Series: tests/kms_plane_scaling: Add logs to skips (rev2) URL : https://patchwork.freedesktop.org/series/143093/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15928_full -> IGTPW_12415_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12415_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12415_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_12415/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12415_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_12415/shard-tglu-1/igt at gem_tiled_swapping@non-threaded.html * igt at i915_module_load@reload-with-fault-injection: - shard-glk: NOTRUN -> [DMESG-WARN][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk1/igt at i915_module_load@reload-with-fault-injection.html * igt at kms_plane_cursor@overlay: - shard-dg2: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-dg2-5/igt at kms_plane_cursor@overlay.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-1/igt at kms_plane_cursor@overlay.html * igt at perf_pmu@module-unload: - shard-snb: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-snb7/igt at perf_pmu@module-unload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-snb2/igt at perf_pmu@module-unload.html Known issues ------------ Here are the changes found in IGTPW_12415_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-14/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-7/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@crc32: - shard-tglu: NOTRUN -> [SKIP][9] ([i915#6230]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-8/igt at api_intel_bb@crc32.html * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8411]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-10/igt at api_intel_bb@object-reloc-purge-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_12415/shard-tglu-1/igt at debugfs_test@basic-hwmon.html * igt at device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#11078]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-12/igt at device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][13] ([i915#11078]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-10/igt at device_reset@cold-reset-bound.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-2/igt at device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][15] ([i915#11078]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-7/igt at device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#11078]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-5/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8414]) +6 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-8/igt at drm_fdinfo@busy-idle at vecs0.html * igt at drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8414]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-4/igt at drm_fdinfo@virtual-busy-idle-all.html - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8414]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-17/igt at drm_fdinfo@virtual-busy-idle-all.html * igt at gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#7697]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-5/igt at gem_basic@multigpu-create-close.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#7697]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-12/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#9323]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-18/igt at gem_ccs@block-multicopy-compressed.html - shard-tglu: NOTRUN -> [SKIP][23] ([i915#9323]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-4/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-2/igt at gem_ccs@ctrl-surf-copy-new-ctx.html - shard-rkl: NOTRUN -> [SKIP][25] ([i915#9323]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-5/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_ccs@suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][26] ([i915#9323]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#7697]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-3/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][28] ([i915#13427]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-7/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#6335]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-6/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][30] ([i915#12353]) +1 other test incomplete [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk2/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_persistence@engines-cleanup: - shard-snb: NOTRUN -> [SKIP][31] ([i915#1099]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-snb7/igt at gem_ctx_persistence@engines-cleanup.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_12415/shard-rkl-1/igt at gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-18/igt at gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-4/igt at gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#280]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-5/igt at gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][36] ([i915#280]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-8/igt at gem_ctx_sseu@engines.html * igt at gem_eio@hibernate: - shard-dg1: NOTRUN -> [ABORT][37] ([i915#7975] / [i915#8213]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-14/igt at gem_eio@hibernate.html * igt at gem_exec_balancer@parallel-contexts: - shard-tglu: NOTRUN -> [SKIP][38] ([i915#4525]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-8/igt at gem_exec_balancer@parallel-contexts.html * igt at gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4812]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-3/igt at gem_exec_balancer@sliced.html * igt at gem_exec_big@single: - shard-tglu: [PASS][40] -> [ABORT][41] ([i915#11713]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-tglu-6/igt at gem_exec_big@single.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-10/igt at gem_exec_big@single.html * igt at gem_exec_capture@capture-invisible: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#6334]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-14/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_12415/shard-tglu-7/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture-recoverable: - shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#6344]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at gem_exec_capture@capture-recoverable.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-1/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +4 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-4/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#5107]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-5/igt at gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][48] ([i915#5107]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-8/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +15 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-5/igt at gem_exec_reloc@basic-active.html * igt at gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +6 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-13/igt at gem_exec_reloc@basic-wc-gtt-noreloc.html * igt at gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#3281]) +8 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-4/igt at gem_exec_reloc@basic-wc-read-noreloc.html * igt at gem_exec_reloc@basic-write-wc-active: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3281]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-1/igt at gem_exec_reloc@basic-write-wc-active.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-8/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_schedule@reorder-wide: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4812]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-18/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_suspend@basic-s3 at smem: - shard-glk: NOTRUN -> [INCOMPLETE][55] ([i915#13196]) +1 other test incomplete [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk3/igt at gem_exec_suspend@basic-s3 at smem.html * igt at gem_exec_suspend@basic-s4-devices: - shard-tglu: [PASS][56] -> [ABORT][57] ([i915#7975] / [i915#8213]) +1 other test abort [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-tglu-6/igt at gem_exec_suspend@basic-s4-devices.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-10/igt at gem_exec_suspend@basic-s4-devices.html - shard-rkl: NOTRUN -> [ABORT][58] ([i915#7975] / [i915#8213]) +1 other test abort [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-3/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4860]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-11/igt at gem_fence_thrash@bo-write-verify-y.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4860]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-6/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#2190]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-1/igt at gem_huc_copy@huc-copy.html - shard-tglu: NOTRUN -> [SKIP][62] ([i915#2190]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-6/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613] / [i915#7582]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-7/igt at gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613] / [i915#7582]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-3/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-verify-multi: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4613]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-4/igt at gem_lmem_swapping@heavy-verify-multi.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][66] ([i915#4613]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk7/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][67] ([i915#4613]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-2/igt at gem_lmem_swapping@heavy-verify-random-ccs.html - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4613]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-1/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@massive: - shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#4613]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at gem_lmem_swapping@massive.html * igt at gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#8289]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-1/igt at gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][71] ([i915#8289]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-10/igt at gem_media_fill@media-fill.html * igt at gem_mmap_gtt@basic-copy: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4077]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-8/igt at gem_mmap_gtt@basic-copy.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4077]) +15 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-8/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: NOTRUN -> [ABORT][74] ([i915#10729]) +1 other test abort [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-7/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4083]) +8 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-7/igt at gem_mmap_wc@close.html * igt at gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4083]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-3/igt at gem_mmap_wc@write.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4083]) +5 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-18/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][78] ([i915#2658]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at gem_pread@exhaustion.html - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3282]) +5 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-14/igt at gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][80] ([i915#2658]) +1 other test warn [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk9/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3282]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-1/igt at gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][82] ([i915#2658]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-6/igt at gem_pwrite@basic-exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3282]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-6/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: NOTRUN -> [TIMEOUT][84] ([i915#12964]) +1 other test timeout [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-3/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: NOTRUN -> [TIMEOUT][85] ([i915#12917] / [i915#12964]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-2/igt at gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4270]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-14/igt at gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt at gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4270]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-5/igt at gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt at gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3282]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-3/igt at gem_readwrite@beyond-eob.html * igt at gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#8428]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-5/igt at gem_render_copy@linear-to-vebox-y-tiled.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#5190] / [i915#8428]) +12 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-3/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4079]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-1/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#8411]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-3/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4079]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-18/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#4885]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-17/igt at gem_softpin@evict-snoop.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][95] ([i915#13263] / [i915#13449]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk9/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-4/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#3297]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-1/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#3297] / [i915#4880]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-11/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#4880]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-12/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#3297]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-14/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#3297]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-4/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][102] ([i915#3297]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-8/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][103] +19 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-4/igt at gen7_exec_parse@bitmasks.html * igt at gen7_exec_parse@chained-batch: - shard-rkl: NOTRUN -> [SKIP][104] +21 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-4/igt at gen7_exec_parse@chained-batch.html * igt at gen9_exec_parse@bb-start-far: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#2527]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-14/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]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at gen9_exec_parse@bb-start-out.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#2527] / [i915#2856]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-4/igt at gen9_exec_parse@cmd-crossing-page.html - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#2856]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-5/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#2856]) +5 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-7/igt at gen9_exec_parse@shadow-peek.html * igt at gen9_exec_parse@unaligned-access: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#2527]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-3/igt at gen9_exec_parse@unaligned-access.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#6590]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-12/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: [PASS][112] -> [FAIL][113] ([i915#12739] / [i915#3591]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.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_12415/shard-glk8/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#11681]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-18/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4387]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-17/igt at i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][117] ([i915#4387]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-2/igt at i915_pm_sseu@full-enable.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#5723]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-3/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@mock at memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][119] ([i915#9311]) +1 other test dmesg-warn [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-3/igt at i915_selftest@mock at memory_region.html - shard-rkl: NOTRUN -> [DMESG-WARN][120] ([i915#9311]) +1 other test dmesg-warn [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-3/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s2idle-without-i915: - shard-rkl: [PASS][121] -> [DMESG-WARN][122] ([i915#12917] / [i915#12964]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-rkl-2/igt at i915_suspend@basic-s2idle-without-i915.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-5/igt at i915_suspend@basic-s2idle-without-i915.html * igt at i915_suspend@debugfs-reader: - shard-rkl: [PASS][123] -> [DMESG-FAIL][124] ([i915#12964]) +2 other tests dmesg-fail [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-rkl-2/igt at i915_suspend@debugfs-reader.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-7/igt at i915_suspend@debugfs-reader.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][125] ([i915#4817]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk6/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#7707]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4212]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-18/igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4212]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-3/igt at kms_addfb_basic@framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#12454] / [i915#12712]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-1/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-rkl: NOTRUN -> [DMESG-FAIL][130] ([i915#12964]) +1 other test dmesg-fail [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-2/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-1-y-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#8709]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-4/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-atomic at pipe-b-hdmi-a-3-4-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#8709]) +11 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-1/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-3-4-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][133] ([i915#8709]) +15 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/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@invalid-async-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#12967]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-3/igt at kms_async_flips@invalid-async-flip-atomic.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_12415/shard-tglu-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][136] ([i915#1769] / [i915#3555]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-13/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-glk: NOTRUN -> [SKIP][137] ([i915#1769]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk9/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-hdmi-a-1: - shard-tglu: [PASS][138] -> [FAIL][139] ([i915#11808]) +1 other test fail [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-tglu-7/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-hdmi-a-1.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-6/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-hdmi-a-1.html * igt at kms_big_fb@4-tiled-16bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#5286]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at kms_big_fb@4-tiled-16bpp-rotate-180.html * igt at kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538] / [i915#5286]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-17/igt at kms_big_fb@4-tiled-64bpp-rotate-270.html * igt at kms_big_fb@4-tiled-8bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#5286]) +6 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-3/igt at kms_big_fb@4-tiled-8bpp-rotate-0.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#5286]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@x-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_12415/shard-rkl-2/igt at kms_big_fb@x-tiled-64bpp-rotate-270.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#3638]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-18/igt at kms_big_fb@x-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_12415/shard-dg2-8/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6187]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-2/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][148] ([i915#4538] / [i915#5190]) +14 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-11/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]) +4 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-14/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#6095]) +14 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-8/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#6095]) +84 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-5/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-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#10307] / [i915#6095]) +172 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-5/igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#12313]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-4/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#12313]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-1/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#6095]) +14 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-4/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#12805]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#6095]) +13 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-10/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-a-dp-4.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][159] ([i915#12796]) +1 other test incomplete [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#12313]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-13/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#12313]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#6095]) +59 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-8/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#6095]) +164 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-13/igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#3742]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-18/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@mode-transition at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#11616] / [i915#7213]) +4 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-10/igt at kms_cdclk@mode-transition at pipe-a-dp-4.html * igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#4087]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-11/igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-2.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][168] +29 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-12/igt at kms_chamelium_color@ctm-0-50.html - shard-mtlp: NOTRUN -> [SKIP][169] +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-4/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +8 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-5/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +8 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-12/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +6 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-6/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-6/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +12 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-11/igt at kms_chamelium_hpd@vga-hpd-after-suspend.html * igt at kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#9979]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-8/igt at kms_color@deep-color.html * igt at kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#6944] / [i915#9424]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-7/igt at kms_content_protection@content-type-change.html - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#6944] / [i915#9424]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-2/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#3116] / [i915#3299]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-2/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#3299]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-13/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#9424]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-2/igt at kms_content_protection@mei-interface.html - shard-dg1: NOTRUN -> [SKIP][181] ([i915#9424]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-14/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#7118] / [i915#9424]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-1/igt at kms_content_protection@type1.html - shard-rkl: NOTRUN -> [SKIP][183] ([i915#7118] / [i915#9424]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-4/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-7/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#13049]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-11/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#13049]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#8814]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-1/igt at kms_cursor_crc@cursor-onscreen-128x42.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#3555]) +4 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-6/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#13049]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-7/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#13049]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-14/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#3555]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#13049]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-4/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#13049]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-5/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555]) +7 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-3/igt at kms_cursor_crc@cursor-sliding-32x10.html - shard-rkl: NOTRUN -> [SKIP][195] ([i915#3555]) +3 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-4/igt at kms_cursor_crc@cursor-sliding-32x10.html - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8814]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-3/igt at kms_cursor_crc@cursor-sliding-32x10.html * igt at kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][197] ([i915#12358] / [i915#7882]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk1/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][198] ([i915#12358]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk1/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#13046] / [i915#5354]) +5 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-3/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: [PASS][200] -> [FAIL][201] ([i915#2346]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-snb2/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#4103]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-8/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-dg2: NOTRUN -> [SKIP][203] ([i915#4103] / [i915#4213]) +3 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-8/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][204] ([i915#4103]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-2/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#9723]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#8588]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-3/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#3804]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-7/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#8812]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-11/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#3840]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-7/igt at kms_dsc@dsc-basic.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-17/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#3840]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#3840]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-10/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#3840]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-11/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#3840]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-7/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#3840] / [i915#9053]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-12/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#1839]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-10/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#1839]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-13/igt at kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][218] ([i915#1839]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-2/igt at kms_feature_discovery@display-4x.html * igt at kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#4881]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-3/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#3637]) +9 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-4/igt at kms_flip@2x-blocking-absolute-wf_vblank.html * igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [FAIL][221] ([i915#11989]) +1 other test fail [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-snb7/igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#9934]) +11 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-4/igt at kms_flip@2x-modeset-vs-vblank-race.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#3637]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#9934]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-7/igt at kms_flip@2x-plain-flip.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#9934]) +7 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-17/igt at kms_flip@2x-plain-flip.html - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3637]) +2 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-6/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#8381]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-4/igt at kms_flip@flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][228] ([i915#8381]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-4/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#8381]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-13/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][230] ([i915#12745] / [i915#4839]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk4/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][231] ([i915#12745]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk4/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [PASS][232] -> [FAIL][233] ([i915#11989]) +1 other test fail [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-tglu-7/igt at kms_flip@plain-flip-fb-recreate-interruptible.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-8/igt at kms_flip@plain-flip-fb-recreate-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-9/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#2672] / [i915#3555] / [i915#8813]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#8813]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8810] / [i915#8813]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8810]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#2672]) +5 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-8/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-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-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-tglu-1: NOTRUN -> [SKIP][241] ([i915#2587] / [i915#2672]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-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-ytileccs-to-64bpp-ytile-upscaling: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#2587] / [i915#2672] / [i915#3555]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-18/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html - shard-tglu: NOTRUN -> [SKIP][243] ([i915#2587] / [i915#2672] / [i915#3555]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-4/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-upscaling: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#3555]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-13/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#2672]) +2 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][247] ([i915#2587] / [i915#2672]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-13/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#2587] / [i915#2672]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-2/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][249] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-11/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-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555]) +5 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-dg2: [PASS][251] -> [FAIL][252] ([i915#6880]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-dg2-1/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#8708]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: - shard-glk: NOTRUN -> [DMESG-FAIL][254] ([i915#118]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][255] +36 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#8708]) +23 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#5354]) +43 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-4/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-snb: [PASS][258] -> [SKIP][259] [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][260] ([i915#10056] / [i915#13353]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk6/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#5439]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][262] ([i915#5439]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-2/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#10055]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-2/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#3458]) +13 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-12/igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#10433] / [i915#3458]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#1825]) +27 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#9766]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-10/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]) +28 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/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-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#8708]) +20 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/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-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#3023]) +23 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-6/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]) +6 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][272] +69 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-10/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#12713]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-7/igt at kms_hdr@brightness-with-hdr.html - shard-rkl: NOTRUN -> [SKIP][274] ([i915#12713]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-6/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8228]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-8/igt at kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8228]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-2/igt at kms_hdr@static-toggle.html * igt at kms_histogram@global-color: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#13388]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-13/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#10656]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-4/igt at kms_joiner@basic-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][279] ([i915#10656]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-12/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#12388]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-18/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#10656]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-3/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][282] ([i915#12394]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-4/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][283] ([i915#12394]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-8/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#10656]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-3/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#6301]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-7/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1: - shard-glk: [PASS][286] -> [INCOMPLETE][287] ([i915#12756]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-glk2/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk9/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][288] ([i915#10647] / [i915#12169]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk6/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][289] ([i915#10647]) +1 other test fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk6/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][290] ([i915#3555]) +4 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-12/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#12247] / [i915#9423]) +2 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-7/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-d: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#12247]) +11 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-7/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-d.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats at pipe-a: - shard-rkl: [PASS][293] -> [DMESG-WARN][294] ([i915#12964] / [i915#1982]) +1 other test dmesg-warn [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-rkl-3/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats at pipe-a.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-1/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats at pipe-a.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation: - shard-glk: NOTRUN -> [SKIP][295] +382 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk4/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#12247]) +10 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/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-unity-scaling at pipe-b: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#12247]) +13 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-6/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-b.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#12247]) +4 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg1: NOTRUN -> [SKIP][299] ([i915#12247]) +13 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/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-dg1: NOTRUN -> [SKIP][300] ([i915#12247] / [i915#6953]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-18/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#6953]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-1/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#12247] / [i915#3555]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-4/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#12247] / [i915#6953]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-2/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-5: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#12247] / [i915#6953]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-6/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5 at pipe-c: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#12247]) +7 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-6/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5 at pipe-c.html * igt at kms_pm_backlight@bad-brightness: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#9812]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-3/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][307] ([i915#5354]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-17/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#12343]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-5/igt at kms_pm_backlight@brightness-with-dpms.html - shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#12343]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#9685]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-18/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#3828]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-3/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_lpsp@screens-disabled: - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#8430]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][313] ([i915#8430]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-5/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][314] ([i915#4077]) +7 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-12/igt at kms_pm_rpm@fences.html * igt at kms_pm_rpm@modeset-lpsp: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#9519]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-1/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#9519]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-7/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][317] -> [SKIP][318] ([i915#9519]) +3 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-rkl-3/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-dg2: [PASS][319] -> [SKIP][320] ([i915#9519]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-dg2-11/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-8/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_prime@basic-crc-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#6524]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#6524]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-5/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][323] ([i915#11520]) +12 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-snb5/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#12316]) +4 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-7/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][325] ([i915#11520]) +12 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk6/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#9808]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-4/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#11520]) +9 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-17/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-rkl: NOTRUN -> [SKIP][328] ([i915#11520]) +5 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-7/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#11520]) +5 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-2/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#11520]) +13 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-7/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#11520]) +3 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/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-p010: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#9683]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-4/igt at kms_psr2_su@page_flip-p010.html - shard-tglu: NOTRUN -> [SKIP][333] ([i915#9683]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-2/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-psr-primary-page-flip at edp-1: - shard-mtlp: NOTRUN -> [SKIP][334] ([i915#9688]) +6 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-5/igt at kms_psr@fbc-psr-primary-page-flip at edp-1.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-dg1: NOTRUN -> [SKIP][335] ([i915#1072] / [i915#9732]) +23 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-17/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#9732]) +16 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-6/igt at kms_psr@pr-dpms.html * igt at kms_psr@psr-sprite-blt: - shard-snb: NOTRUN -> [SKIP][337] +464 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-snb7/igt at kms_psr@psr-sprite-blt.html * igt at kms_psr@psr2-primary-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#9732]) +8 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at kms_psr@psr2-primary-mmap-cpu.html * igt at kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#1072] / [i915#9732]) +32 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-7/igt at kms_psr@psr2-primary-mmap-gtt.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#1072] / [i915#9732]) +21 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-4/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#9685]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-11/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-rotation-90: - shard-rkl: NOTRUN -> [DMESG-WARN][342] ([i915#12964]) +18 other tests dmesg-warn [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-1/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#5289]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/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-270: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#5289]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][345] ([i915#12755]) +2 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-10/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][346] ([i915#13179]) +1 other test abort [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-snb5/igt at kms_selftest@drm_framebuffer.html * igt at kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][347] ([IGT#160]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-1/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][348] ([i915#8623]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-10/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][349] ([i915#12276]) +1 other test incomplete [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk2/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#3555] / [i915#8808]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-8/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@lobf: - shard-tglu: NOTRUN -> [SKIP][351] ([i915#11920]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-10/igt at kms_vrr@lobf.html - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#11920]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-3/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#3555] / [i915#9906]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-4/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][354] ([i915#9906]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-4/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#9906]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-11/igt at kms_vrr@seamless-rr-switch-virtual.html - shard-dg1: NOTRUN -> [SKIP][356] ([i915#9906]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-18/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#2437] / [i915#9412]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-glk: NOTRUN -> [SKIP][358] ([i915#2437]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk9/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at perf@gen12-oa-tlb-invalidate: - shard-rkl: [PASS][359] -> [DMESG-WARN][360] ([i915#12964]) +32 other tests dmesg-warn [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-rkl-4/igt at perf@gen12-oa-tlb-invalidate.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-7/igt at perf@gen12-oa-tlb-invalidate.html * igt at perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#7387]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-7/igt at perf@global-sseu-config-invalid.html * igt at perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][362] ([i915#9100]) +1 other test fail [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-4/igt at perf@non-zero-reason.html * igt at perf_pmu@busy-double-start at rcs0: - shard-mtlp: [PASS][363] -> [FAIL][364] ([i915#4349]) +3 other tests fail [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-mtlp-3/igt at perf_pmu@busy-double-start at rcs0.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-3/igt at perf_pmu@busy-double-start at rcs0.html * igt at perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][365] ([i915#11823]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-1/igt at perf_pmu@module-unload.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#8516]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-4/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][367] ([i915#8516]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-6/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-dg1: NOTRUN -> [SKIP][368] ([i915#8516]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-17/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][369] ([i915#8516]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-2/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#3291] / [i915#3708]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-4/igt at prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][371] ([i915#3291] / [i915#3708]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-7/igt at prime_vgem@basic-write.html * igt at prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][372] ([i915#3708]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-14/igt at prime_vgem@fence-flip-hang.html - shard-mtlp: NOTRUN -> [SKIP][373] ([i915#3708]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-7/igt at prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][374] ([i915#3708]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-7/igt at prime_vgem@fence-flip-hang.html - shard-rkl: NOTRUN -> [SKIP][375] ([i915#3708]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-2/igt at prime_vgem@fence-flip-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][376] ([i915#9917]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-6/igt at sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][377] ([i915#9917]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-17/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][378] ([i915#9917]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-1/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1: - shard-tglu: NOTRUN -> [FAIL][379] ([i915#12910]) +9 other tests fail [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-6/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-2: - shard-mtlp: NOTRUN -> [FAIL][380] ([i915#12910]) +9 other tests fail [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-6/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-2.html * igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-2: - shard-tglu-1: NOTRUN -> [FAIL][381] ([i915#12910]) +8 other tests fail [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-1/igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-2.html #### Possible fixes #### * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-tglu: [DMESG-WARN][382] -> [PASS][383] +1 other test pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-tglu-7/igt at gem_ctx_isolation@preservation-s3 at bcs0.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-7/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-tglu: [ABORT][384] -> [PASS][385] +1 other test pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-tglu-7/igt at gem_ctx_isolation@preservation-s3 at rcs0.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-tglu-7/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_eio@in-flight-immediate: - shard-dg1: [DMESG-WARN][386] ([i915#4423]) -> [PASS][387] +2 other tests pass [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-dg1-17/igt at gem_eio@in-flight-immediate.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-17/igt at gem_eio@in-flight-immediate.html * igt at gem_exec_balancer@full-pulse: - shard-dg1: [FAIL][388] ([i915#13364]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-dg1-12/igt at gem_exec_balancer@full-pulse.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-12/igt at gem_exec_balancer@full-pulse.html * igt at gem_exec_suspend@basic-s0: - shard-dg2: [INCOMPLETE][390] ([i915#11441] / [i915#13304]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-dg2-1/igt at gem_exec_suspend@basic-s0.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-1/igt at gem_exec_suspend@basic-s0.html * igt at gem_exec_suspend@basic-s0 at lmem0: - shard-dg2: [INCOMPLETE][392] ([i915#11441]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-dg2-1/igt at gem_exec_suspend@basic-s0 at lmem0.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-1/igt at gem_exec_suspend@basic-s0 at lmem0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0: - shard-dg1: [FAIL][394] ([i915#3591]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0.html * igt at i915_pm_rpm@gem-execbuf: - shard-rkl: [SKIP][396] ([i915#13328]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-rkl-5/igt at i915_pm_rpm@gem-execbuf.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-6/igt at i915_pm_rpm@gem-execbuf.html * igt at i915_suspend@debugfs-reader: - shard-mtlp: [INCOMPLETE][398] -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-mtlp-7/igt at i915_suspend@debugfs-reader.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-4/igt at i915_suspend@debugfs-reader.html * igt at i915_suspend@sysfs-reader: - shard-glk: [INCOMPLETE][400] ([i915#4817]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-glk5/igt at i915_suspend@sysfs-reader.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk1/igt at i915_suspend@sysfs-reader.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-rkl: [DMESG-WARN][402] ([i915#12964]) -> [PASS][403] +53 other tests pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-rkl-3/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-4/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_atomic_transition@modeset-transition: - shard-glk: [FAIL][404] ([i915#12238]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-glk8/igt at kms_atomic_transition@modeset-transition.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk1/igt at kms_atomic_transition@modeset-transition.html * igt at kms_atomic_transition@modeset-transition at 2x-outputs: - shard-glk: [FAIL][406] ([i915#11859]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-glk8/igt at kms_atomic_transition@modeset-transition at 2x-outputs.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk1/igt at kms_atomic_transition@modeset-transition at 2x-outputs.html * igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-3: - shard-dg2: [FAIL][408] ([i915#5956]) -> [PASS][409] +1 other test pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-dg2-1/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-3.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-1/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-3.html * igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180: - shard-mtlp: [FAIL][410] ([i915#5138]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-mtlp-4/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-1/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: [FAIL][412] ([i915#11989]) -> [PASS][413] +3 other tests pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-snb7/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-snb7/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-dg2: [FAIL][414] ([i915#6880]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-snb: [SKIP][416] -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-snb2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][418] ([i915#12916]) -> [PASS][419] +1 other test pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-rkl-4/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-2/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at perf_pmu@multi-client at rcs0: - shard-mtlp: [FAIL][420] -> [PASS][421] +1 other test pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-mtlp-3/igt at perf_pmu@multi-client at rcs0.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-mtlp-5/igt at perf_pmu@multi-client at rcs0.html #### Warnings #### * igt at gem_eio@in-flight-suspend: - shard-glk: [INCOMPLETE][422] ([i915#13390]) -> [INCOMPLETE][423] ([i915#13197] / [i915#13390]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-glk4/igt at gem_eio@in-flight-suspend.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-glk5/igt at gem_eio@in-flight-suspend.html * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: [TIMEOUT][424] ([i915#12917] / [i915#12964]) -> [SKIP][425] ([i915#4270]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-rkl-5/igt at gem_pxp@reject-modify-context-protection-off-2.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-7/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: [SKIP][426] ([i915#4270]) -> [TIMEOUT][427] ([i915#12917] / [i915#12964]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15928/shard-rkl-3/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/shard-rkl-7/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [DMESG-FAIL][428] ([i915#12964]) -> [DMESG-WARN == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12415/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 18:43:02 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 18:43:02 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fvm=3A_Fix?= =?utf-8?q?ed_documentation_=28rev2=29?= In-Reply-To: <20250109090044.913444-1-pravalika.gurram@intel.com> References: <20250109090044.913444-1-pravalika.gurram@intel.com> Message-ID: <173662098290.2539242.5379790398419825508@b555e5b46a47> == Series Details == Series: tests/intel/xe_vm: Fixed documentation (rev2) URL : https://patchwork.freedesktop.org/series/143310/ State : failure == Summary == CI Bug Log - changes from XEIGT_8183_full -> XEIGTPW_12416_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12416_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12416_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_12416_full: ### IGT changes ### #### Possible regressions #### * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-edp-1: - shard-lnl: [PASS][1] -> [FAIL][2] +2 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-1/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-edp-1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-edp-1.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-dg2-set2: NOTRUN -> [ABORT][3] +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-432/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at xe_exec_sip_eudebug@wait-writesip-nodebug: - shard-dg2-set2: [PASS][4] -> [INCOMPLETE][5] +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_exec_sip_eudebug@wait-writesip-nodebug.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-463/igt at xe_exec_sip_eudebug@wait-writesip-nodebug.html #### Warnings #### * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][6] ([Intel XE#877]) -> [DMESG-WARN][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html New tests --------- New tests have been introduced between XEIGT_8183_full and XEIGTPW_12416_full: ### New IGT tests (1) ### * igt at kms_hdr@static-swap at pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.98] s Known issues ------------ Here are the changes found in XEIGTPW_12416_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: NOTRUN -> [FAIL][8] ([Intel XE#3719]) +3 other tests fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/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 at pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#2550]) +23 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_atomic_transition@modeset-transition-fencing: - shard-bmg: [PASS][10] -> [DMESG-WARN][11] ([Intel XE#877]) +4 other tests dmesg-warn [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at kms_atomic_transition@modeset-transition-fencing.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at kms_atomic_transition@modeset-transition-fencing.html * igt at kms_big_fb@4-tiled-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#2136] / [Intel XE#2351]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_big_fb@4-tiled-16bpp-rotate-270.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#316]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#1124]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1124]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-7/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1477]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-7/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-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +8 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-464/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#367]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-435/igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [PASS][19] -> [SKIP][20] ([Intel XE#2314] / [Intel XE#2894]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#367]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-7/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#367]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-3/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-ccs at pipe-d-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +97 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-432/igt at kms_ccs@crc-primary-basic-y-tiled-ccs at pipe-d-hdmi-a-2.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#455] / [Intel XE#787]) +19 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-432/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-d-dp-2.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#2907]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-464/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-dp-2.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2887]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][29] ([Intel XE#1727] / [Intel XE#3124]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-463/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-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][30] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-6.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#314]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2325]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#306]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_hpd@dp-hpd-after-hibernate: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#373]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-5/igt at kms_chamelium_hpd@dp-hpd-after-hibernate.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#373]) +5 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][36] ([Intel XE#1178]) +1 other test fail [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-1/igt at kms_content_protection@lic-type-0 at pipe-a-dp-2.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][37] ([Intel XE#1188]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_content_protection@uevent at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][38] ([Intel XE#1188]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at kms_content_protection@uevent at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1424]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-4/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#308]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-435/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-size-hints: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_cursor_crc@cursor-size-hints.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [PASS][42] -> [SKIP][43] ([Intel XE#2291]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#309]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-3/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][45] ([Intel XE#3226]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-435/igt at kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt at kms_cursor_legacy@flip-vs-cursor-legacy: - shard-dg2-set2: [PASS][46] -> [INCOMPLETE][47] ([Intel XE#3226]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at kms_cursor_legacy@flip-vs-cursor-legacy.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-464/igt at kms_cursor_legacy@flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#323]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-435/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][49] -> [SKIP][50] ([Intel XE#2425]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_display_modes@extended-mode-basic.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html * igt at kms_feature_discovery@dp-mst: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1137]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-4/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-flip-vs-dpms: - shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#2316]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_flip@2x-flip-vs-dpms.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-6/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-dp2-hdmi-a3: - shard-bmg: [PASS][54] -> [FAIL][55] ([Intel XE#3288] / [Intel XE#3321]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-dp2-hdmi-a3.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/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 ac-dp2-hdmi-a3: - shard-bmg: [PASS][56] -> [FAIL][57] ([Intel XE#3321]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/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: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1421]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-8/igt at kms_flip@2x-flip-vs-rmfb.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [PASS][59] -> [FAIL][60] ([Intel XE#886]) +3 other tests fail [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-4/igt at kms_flip@blocking-wf_vblank.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-5/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6: - shard-dg2-set2: [PASS][61] -> [FAIL][62] ([Intel XE#301]) +2 other tests fail [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank at a-dp2: - shard-bmg: [PASS][63] -> [FAIL][64] ([Intel XE#2882]) +6 other tests fail [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html * igt at kms_flip@flip-vs-expired-vblank at d-dp4: - shard-dg2-set2: [PASS][65] -> [FAIL][66] ([Intel XE#301] / [Intel XE#3321]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [PASS][67] -> [INCOMPLETE][68] ([Intel XE#2597]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3: - shard-bmg: [PASS][69] -> [INCOMPLETE][70] ([Intel XE#2597] / [Intel XE#2635]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html * igt at kms_flip@nonblocking-read: - shard-dg2-set2: [PASS][71] -> [SKIP][72] ([Intel XE#2423] / [i915#2575]) +6 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-432/igt at kms_flip@nonblocking-read.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_flip@nonblocking-read.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2293] / [Intel XE#2380]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2293]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#455]) +12 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-463/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1401] / [Intel XE#1745]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/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][77] ([Intel XE#1401]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/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][78] ([Intel XE#1397] / [Intel XE#1745]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/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][79] ([Intel XE#1397]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/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_force_connector_basic@force-edid: - shard-bmg: [PASS][80] -> [SKIP][81] ([Intel XE#3007]) +9 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_force_connector_basic@force-edid.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_force_connector_basic@force-edid.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2311]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#651]) +23 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-tiling-linear: - shard-dg2-set2: [PASS][84] -> [SKIP][85] ([Intel XE#2136]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-tiling-linear.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-tiling-linear.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#651]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#2136]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-linear: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#653]) +15 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-tiling-linear.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2313]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#656]) +9 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-3/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#346]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2925]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-435/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][93] ([Intel XE#616]) +2 other tests fail [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-464/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][94] -> [SKIP][95] ([Intel XE#2571]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#2763]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-7/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][97] -> [FAIL][98] ([Intel XE#718]) +1 other test fail [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-7/igt at kms_pm_dc@dc5-dpms.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-4/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#3309]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-464/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#908]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-435/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-bmg: [PASS][101] -> [SKIP][102] ([Intel XE#2446]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_pm_rpm@modeset-non-lpsp-stress.html - shard-dg2-set2: [PASS][103] -> [SKIP][104] ([Intel XE#2446]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: NOTRUN -> [ABORT][105] ([Intel XE#2625]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-432/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#1489]) +4 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-464/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@page_flip-p010: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1128]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-8/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1406]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-5/igt at kms_psr@fbc-pr-primary-blt.html * igt at kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-432/igt at kms_psr@fbc-psr-sprite-render.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-6/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2939]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-464/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#3414]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-432/igt at kms_rotation_crc@bad-tiling.html * igt at kms_setmode@basic: - shard-bmg: [PASS][113] -> [FAIL][114] ([Intel XE#2883]) +3 other tests fail [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at kms_setmode@basic.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-5/igt at kms_setmode@basic.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [PASS][115] -> [FAIL][116] ([Intel XE#2883]) +2 other tests fail [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-8/igt at kms_setmode@basic at pipe-b-edp-1.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-8/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_tiled_display@basic-test-pattern: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#362]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-7/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@cmrr: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2168]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at kms_vrr@cmrr.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#756]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-pixel-formats: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#756]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-5/igt at kms_writeback@writeback-pixel-formats.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#3889]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug@discovery-empty-clients: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2905]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-4/igt at xe_eudebug@discovery-empty-clients.html * igt at xe_eudebug@vm-bind-clear: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2905]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-435/igt at xe_eudebug@vm-bind-clear.html * igt at xe_evict@evict-beng-threads-large: - shard-dg2-set2: [PASS][124] -> [INCOMPLETE][125] ([Intel XE#1473]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_evict@evict-beng-threads-large.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-threads-small: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#688]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-5/igt at xe_evict@evict-mixed-threads-small.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2322]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-6/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][128] -> [SKIP][129] ([Intel XE#1392]) +4 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@multigpu-no-exec-null: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1392]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-8/igt at xe_exec_basic@multigpu-no-exec-null.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#1392]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-432/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#288]) +12 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-463/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2360]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate: - shard-bmg: [PASS][134] -> [SKIP][135] ([Intel XE#1130]) +20 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#1130]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#255]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at xe_huc_copy@huc_copy.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [PASS][138] -> [SKIP][139] ([Intel XE#1192]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at xe_live_ktest@xe_mocs.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at xe_live_ktest@xe_mocs.html * igt at xe_media_fill@media-fill: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#560]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-8/igt at xe_media_fill@media-fill.html * igt at xe_module_load@many-reload: - shard-bmg: [PASS][141] -> [FAIL][142] ([Intel XE#3546]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at xe_module_load@many-reload.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-8/igt at xe_module_load@many-reload.html - shard-dg2-set2: [PASS][143] -> [FAIL][144] ([Intel XE#3546]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at xe_module_load@many-reload.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-435/igt at xe_module_load@many-reload.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-432/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_pm@d3cold-mmap-system: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2284] / [Intel XE#366]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-432/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s3-d3hot-basic-exec: - shard-dg2-set2: [PASS][147] -> [ABORT][148] ([Intel XE#1358] / [Intel XE#1794]) +2 other tests abort [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_pm@s3-d3hot-basic-exec.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-432/igt at xe_pm@s3-d3hot-basic-exec.html * igt at xe_pm@s4-basic: - shard-lnl: [PASS][149] -> [ABORT][150] ([Intel XE#1358] / [Intel XE#1607]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-8/igt at xe_pm@s4-basic.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-2/igt at xe_pm@s4-basic.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][151] -> [FAIL][152] ([Intel XE#958]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-6/igt at xe_pm_residency@toggle-gt-c6.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-2/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-invalid-size: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#944]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-5/igt at xe_query@multigpu-query-invalid-size.html * igt at xe_query@multigpu-query-mem-usage: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#944]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-8/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_query@multigpu-query-oa-units: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#944]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at xe_query@multigpu-query-oa-units.html * igt at xe_vm@large-userptr-binds-134217728: - shard-dg2-set2: [PASS][156] -> [SKIP][157] ([Intel XE#1130]) +13 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_vm@large-userptr-binds-134217728.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at xe_vm@large-userptr-binds-134217728.html #### Possible fixes #### * igt at fbdev@read: - shard-dg2-set2: [FAIL][158] -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at fbdev@read.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at fbdev@read.html - shard-lnl: [FAIL][160] -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-7/igt at fbdev@read.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-7/igt at fbdev@read.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][162] ([Intel XE#827]) -> [PASS][163] +1 other test pass [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2-set2: [INCOMPLETE][164] ([Intel XE#2613]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-463/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][166] -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe-a-dp-4.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-463/igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe-a-dp-4.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][168] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-5/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][170] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][172] ([Intel XE#3862]) -> [PASS][173] +1 other test pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][174] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-464/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-d-dp-4: - shard-dg2-set2: [INCOMPLETE][176] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-d-dp-4.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-d-dp-4.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: [SKIP][178] ([Intel XE#2291]) -> [PASS][179] +3 other tests pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][180] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/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 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_8183/shard-bmg-1/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_12416/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-bmg: [INCOMPLETE][184] ([Intel XE#2635]) -> [PASS][185] +1 other test pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-8/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [SKIP][186] ([Intel XE#2316]) -> [PASS][187] +5 other tests pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank at a-hdmi-a3: - shard-bmg: [FAIL][188] ([Intel XE#2882]) -> [PASS][189] +2 other tests pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_flip@flip-vs-absolute-wf_vblank at a-hdmi-a3.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-8/igt at kms_flip@flip-vs-absolute-wf_vblank at a-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: [FAIL][190] ([Intel XE#3321]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/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-hdmi-a6: - shard-dg2-set2: [FAIL][192] ([Intel XE#301]) -> [PASS][193] +4 other tests pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/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: [ABORT][194] ([Intel XE#2625]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-432/igt at kms_flip@flip-vs-suspend.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-463/igt at kms_flip@flip-vs-suspend.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][196] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_plane_lowres@tiling-none at pipe-b-hdmi-a-3: - shard-bmg: [INCOMPLETE][198] -> [PASS][199] +1 other test pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at kms_plane_lowres@tiling-none at pipe-b-hdmi-a-3.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at kms_plane_lowres@tiling-none at pipe-b-hdmi-a-3.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers: - shard-dg2-set2: [SKIP][200] ([Intel XE#2423] / [i915#2575]) -> [PASS][201] +5 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html * igt at kms_vblank@ts-continuation-suspend: - shard-bmg: [SKIP][202] ([Intel XE#3007]) -> [PASS][203] +9 other tests pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_vblank@ts-continuation-suspend.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-5/igt at kms_vblank@ts-continuation-suspend.html * igt at xe_exec_basic@many-execqueues-bindexecqueue-userptr-rebind: - shard-bmg: [SKIP][204] ([Intel XE#1130]) -> [PASS][205] +13 other tests pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at xe_exec_basic@many-execqueues-bindexecqueue-userptr-rebind.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at xe_exec_basic@many-execqueues-bindexecqueue-userptr-rebind.html * igt at xe_exec_threads@threads-hang-fd-userptr-rebind: - shard-dg2-set2: [DMESG-WARN][206] ([Intel XE#3876]) -> [PASS][207] [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at xe_exec_threads@threads-hang-fd-userptr-rebind.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-435/igt at xe_exec_threads@threads-hang-fd-userptr-rebind.html * igt at xe_pm@s4-d3hot-basic-exec: - shard-lnl: [ABORT][208] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-2/igt at xe_pm@s4-d3hot-basic-exec.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-6/igt at xe_pm@s4-d3hot-basic-exec.html * igt at xe_vm@large-userptr-split-binds-1073741824: - shard-dg2-set2: [SKIP][210] ([Intel XE#1130]) -> [PASS][211] +9 other tests pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_vm@large-userptr-split-binds-1073741824.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-432/igt at xe_vm@large-userptr-split-binds-1073741824.html #### Warnings #### * igt at kms_big_fb@x-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][212] ([Intel XE#2327]) -> [SKIP][213] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at kms_big_fb@x-tiled-32bpp-rotate-90.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_big_fb@x-tiled-32bpp-rotate-90.html - shard-dg2-set2: [SKIP][214] ([Intel XE#316]) -> [SKIP][215] ([Intel XE#2136]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_big_fb@x-tiled-32bpp-rotate-90.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_big_fb@x-tiled-32bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-bmg: [SKIP][216] ([Intel XE#1124]) -> [SKIP][217] ([Intel XE#2136] / [Intel XE#2231]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_big_fb@yf-tiled-8bpp-rotate-0.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_big_fb@yf-tiled-8bpp-rotate-0.html - shard-dg2-set2: [SKIP][218] ([Intel XE#1124]) -> [SKIP][219] ([Intel XE#2136] / [Intel XE#2351]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at kms_big_fb@yf-tiled-8bpp-rotate-0.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [SKIP][220] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][221] ([Intel XE#1124]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-6/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg2-set2: [SKIP][222] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][223] ([Intel XE#1124]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-bmg: [SKIP][224] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][225] ([Intel XE#3007]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html - shard-dg2-set2: [SKIP][226] ([Intel XE#2191]) -> [SKIP][227] ([Intel XE#2423] / [i915#2575]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][228] ([Intel XE#3007]) -> [SKIP][229] ([Intel XE#2314] / [Intel XE#2894]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-5/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][230] ([Intel XE#367]) -> [SKIP][231] ([Intel XE#3007]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-2/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html - shard-dg2-set2: [SKIP][232] ([Intel XE#367]) -> [SKIP][233] ([Intel XE#2423] / [i915#2575]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][234] ([Intel XE#2887]) -> [SKIP][235] ([Intel XE#2136] / [Intel XE#2231]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html - shard-dg2-set2: [SKIP][236] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][237] ([Intel XE#2136]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][238] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][239] ([Intel XE#2887]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html - shard-dg2-set2: [SKIP][240] ([Intel XE#2136]) -> [SKIP][241] ([Intel XE#455] / [Intel XE#787]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt at kms_chamelium_frames@dp-crc-multiple: - shard-bmg: [SKIP][242] ([Intel XE#2252]) -> [SKIP][243] ([Intel XE#3007]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_chamelium_frames@dp-crc-multiple.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_chamelium_frames@dp-crc-multiple.html - shard-dg2-set2: [SKIP][244] ([Intel XE#373]) -> [SKIP][245] ([Intel XE#2423] / [i915#2575]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-432/igt at kms_chamelium_frames@dp-crc-multiple.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_chamelium_frames@dp-crc-multiple.html * igt at kms_content_protection@srm: - shard-bmg: [SKIP][246] ([Intel XE#2341]) -> [FAIL][247] ([Intel XE#1178]) +1 other test fail [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_content_protection@srm.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-8/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-dg2-set2: [SKIP][248] ([Intel XE#2423] / [i915#2575]) -> [FAIL][249] ([Intel XE#1188]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_content_protection@uevent.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at kms_content_protection@uevent.html - shard-bmg: [SKIP][250] ([Intel XE#3007]) -> [FAIL][251] ([Intel XE#1188]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_content_protection@uevent.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at kms_content_protection@uevent.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][252] ([Intel XE#2244]) -> [SKIP][253] ([Intel XE#2136] / [Intel XE#2231]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-dg2-set2: [SKIP][254] ([Intel XE#455]) -> [SKIP][255] ([Intel XE#2136] / [Intel XE#2351]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][256] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][257] ([Intel XE#2136] / [Intel XE#2231]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html - shard-dg2-set2: [SKIP][258] ([Intel XE#455]) -> [SKIP][259] ([Intel XE#2136]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-bmg: [SKIP][260] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][261] ([Intel XE#2293] / [Intel XE#2380]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][262] ([Intel XE#2311]) -> [SKIP][263] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html - shard-dg2-set2: [SKIP][264] ([Intel XE#651]) -> [SKIP][265] ([Intel XE#2136]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][266] ([Intel XE#2311]) -> [SKIP][267] ([Intel XE#2312]) +10 other tests skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt: - shard-bmg: [SKIP][268] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][269] ([Intel XE#2311]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html - shard-dg2-set2: [SKIP][270] ([Intel XE#2136]) -> [SKIP][271] ([Intel XE#651]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][272] ([Intel XE#651]) -> [SKIP][273] ([Intel XE#2136] / [Intel XE#2351]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-suspend.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][274] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][275] ([Intel XE#2333]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][276] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][277] ([Intel XE#2312]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][278] ([Intel XE#2333]) -> [SKIP][279] ([Intel XE#2312]) +7 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][280] ([Intel XE#2312]) -> [FAIL][281] ([Intel XE#2333]) +4 other tests fail [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-tiling-linear: - shard-bmg: [FAIL][282] ([Intel XE#2333]) -> [SKIP][283] ([Intel XE#2136] / [Intel XE#2231]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-tiling-linear.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-tiling-linear.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][284] ([Intel XE#2312]) -> [SKIP][285] ([Intel XE#2311]) +14 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][286] ([Intel XE#2313]) -> [SKIP][287] ([Intel XE#2312]) +11 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][288] ([Intel XE#2136]) -> [SKIP][289] ([Intel XE#653]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][290] ([Intel XE#2313]) -> [SKIP][291] ([Intel XE#2136] / [Intel XE#2231]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][292] ([Intel XE#2312]) -> [SKIP][293] ([Intel XE#2313]) +11 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][294] ([Intel XE#2938]) -> [SKIP][295] ([Intel XE#2136] / [Intel XE#2231]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_pm_backlight@brightness-with-dpms.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_pm_backlight@brightness-with-dpms.html - shard-dg2-set2: [SKIP][296] ([Intel XE#2938]) -> [SKIP][297] ([Intel XE#2136]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at kms_pm_backlight@brightness-with-dpms.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@deep-pkgc: - shard-bmg: [SKIP][298] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][299] ([Intel XE#2505]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_pm_dc@deep-pkgc.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-5/igt at kms_pm_dc@deep-pkgc.html - shard-dg2-set2: [SKIP][300] ([Intel XE#2136]) -> [SKIP][301] ([Intel XE#908]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_pm_dc@deep-pkgc.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-463/igt at kms_pm_dc@deep-pkgc.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-bmg: [SKIP][302] ([Intel XE#1489]) -> [SKIP][303] ([Intel XE#2136] / [Intel XE#2231]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html - shard-dg2-set2: [SKIP][304] ([Intel XE#1489]) -> [SKIP][305] ([Intel XE#2136]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][306] ([Intel XE#1729]) -> [SKIP][307] ([Intel XE#2426]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-6/igt at kms_tiled_display@basic-test-pattern.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][308] ([Intel XE#1473]) -> [TIMEOUT][309] ([Intel XE#1473]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-2/igt at xe_evict@evict-beng-mixed-many-threads-small.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [DMESG-FAIL][310] -> [TIMEOUT][311] ([Intel XE#1473]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at xe_evict@evict-beng-mixed-threads-large.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [TIMEOUT][312] ([Intel XE#1473] / [Intel XE#2472]) -> [INCOMPLETE][313] ([Intel XE#1473]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at xe_evict@evict-mixed-threads-large.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-6/igt at xe_evict@evict-mixed-threads-large.html * igt at xe_evict@evict-threads-large: - shard-bmg: [TIMEOUT][314] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][315] ([Intel XE#1000]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at xe_evict@evict-threads-large.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-5/igt at xe_evict@evict-threads-large.html * igt at xe_exec_fault_mode@many-execqueues-bindexecqueue-imm: - shard-dg2-set2: [SKIP][316] ([Intel XE#288]) -> [SKIP][317] ([Intel XE#1130]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at xe_exec_fault_mode@many-execqueues-bindexecqueue-imm.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at xe_exec_fault_mode@many-execqueues-bindexecqueue-imm.html * igt at xe_exec_fault_mode@once-userptr-imm: - shard-dg2-set2: [SKIP][318] ([Intel XE#1130]) -> [SKIP][319] ([Intel XE#288]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_exec_fault_mode@once-userptr-imm.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-436/igt at xe_exec_fault_mode@once-userptr-imm.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][320] ([Intel XE#1192]) -> [SKIP][321] ([Intel XE#2833]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-1/igt at xe_live_ktest@xe_eudebug.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-dg2-set2: [SKIP][322] -> [SKIP][323] ([Intel XE#1130]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_mmap@pci-membarrier-bad-pagesize.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at xe_mmap@pci-membarrier-bad-pagesize.html - shard-bmg: [SKIP][324] -> [SKIP][325] ([Intel XE#1130]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at xe_mmap@pci-membarrier-bad-pagesize.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-4/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_oa@mi-rpc: - shard-dg2-set2: [SKIP][326] ([Intel XE#1130]) -> [SKIP][327] ([Intel XE#2541] / [Intel XE#3573]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_oa@mi-rpc.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-464/igt at xe_oa@mi-rpc.html * igt at xe_oa@syncs-syncobj-cfg: - shard-dg2-set2: [SKIP][328] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][329] ([Intel XE#1130]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_oa@syncs-syncobj-cfg.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-433/igt at xe_oa@syncs-syncobj-cfg.html * igt at xe_peer2peer@read: - shard-bmg: [SKIP][330] ([Intel XE#2557]) -> [SKIP][331] ([Intel XE#2427]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at xe_peer2peer@read.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-1/igt at xe_peer2peer@read.html * igt at xe_peer2peer@write: - shard-dg2-set2: [FAIL][332] ([Intel XE#1173]) -> [SKIP][333] ([Intel XE#1061]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at xe_peer2peer@write.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-432/igt at xe_peer2peer@write.html * igt at xe_query@multigpu-query-invalid-extension: - shard-bmg: [SKIP][334] ([Intel XE#1130]) -> [SKIP][335] ([Intel XE#944]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at xe_query@multigpu-query-invalid-extension.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-5/igt at xe_query@multigpu-query-invalid-extension.html - shard-dg2-set2: [SKIP][336] ([Intel XE#1130]) -> [SKIP][337] ([Intel XE#944]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_query@multigpu-query-invalid-extension.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-464/igt at xe_query@multigpu-query-invalid-extension.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [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#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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [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#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [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#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [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#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [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#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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [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#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_8183 -> IGTPW_12416 IGTPW_12416: c74a7c48547d6db3cb4a53019c21e9be90b9edc1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2461-14e0c4a8247c9514dc57b2231602fb6d9455802b: 14e0c4a8247c9514dc57b2231602fb6d9455802b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 19:30:55 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 19:30:55 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/xe=5Fdebugfs=3A_Impr?= =?utf-8?q?ove_test=5Fgt_subtest?= In-Reply-To: <20250109105721.914096-1-pravalika.gurram@intel.com> References: <20250109105721.914096-1-pravalika.gurram@intel.com> Message-ID: <173662385587.2558636.2624567243500992550@b555e5b46a47> == Series Details == Series: tests/xe_debugfs: Improve test_gt subtest URL : https://patchwork.freedesktop.org/series/143322/ State : failure == Summary == CI Bug Log - changes from XEIGT_8183_full -> XEIGTPW_12417_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12417_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12417_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_12417_full: ### IGT changes ### #### Possible regressions #### * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-2-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][1] +24 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-2-4-rc-ccs-cc.html * igt at kms_async_flips@test-cursor at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-4/igt at kms_async_flips@test-cursor at pipe-b-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-2.html * igt at kms_flip@absolute-wf_vblank-interruptible at b-hdmi-a3: - shard-bmg: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at kms_flip@absolute-wf_vblank-interruptible at b-hdmi-a3.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-8/igt at kms_flip@absolute-wf_vblank-interruptible at b-hdmi-a3.html * igt at kms_flip@flip-vs-wf_vblank-interruptible at a-hdmi-a6: - shard-dg2-set2: [PASS][8] -> [INCOMPLETE][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_flip@flip-vs-wf_vblank-interruptible at a-hdmi-a6.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at kms_flip@flip-vs-wf_vblank-interruptible at a-hdmi-a6.html Known issues ------------ Here are the changes found in XEIGTPW_12417_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_addfb_basic@unused-offsets: - shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#3007]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-2/igt at kms_addfb_basic@unused-offsets.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_addfb_basic@unused-offsets.html * 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][12] ([Intel XE#2550]) +23 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#316]) +4 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#2136] / [Intel XE#2231]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#2136]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#1124]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-2/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1124]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-5/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1477]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-7/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +8 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#367]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2314] / [Intel XE#2894]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-2/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#367]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-6/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#367]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-8/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#2136]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-3/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2907]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-dp-2.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#787]) +111 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-2.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][32] ([Intel XE#1727] / [Intel XE#3124]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/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-b-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][33] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][34] -> [INCOMPLETE][35] ([Intel XE#1727] / [Intel XE#3124]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/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][36] -> [INCOMPLETE][37] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-dp-4.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/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-4-tiled-mtl-mc-ccs at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#455] / [Intel XE#787]) +21 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs at pipe-d-dp-2.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#314]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2325]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-1/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#306]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_hpd@dp-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#373]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_chamelium_hpd@dp-hpd-after-hibernate: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-3/igt at kms_chamelium_hpd@dp-hpd-after-hibernate.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][44] ([Intel XE#1178]) +1 other test fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-1/igt at kms_content_protection@lic-type-0 at pipe-a-dp-2.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][45] ([Intel XE#3304]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at kms_content_protection@lic-type-0 at pipe-a-dp-4.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#1188]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at kms_content_protection@uevent at pipe-a-dp-2.html - shard-bmg: NOTRUN -> [FAIL][47] ([Intel XE#1188]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-1/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#308]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-128x42: - shard-dg2-set2: [PASS][49] -> [SKIP][50] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at kms_cursor_crc@cursor-rapid-movement-128x42.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement-128x42.html * igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#2291]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#309]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-3/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [PASS][54] -> [DMESG-WARN][55] ([Intel XE#877]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#323]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-dp-2: - shard-bmg: NOTRUN -> [FAIL][57] ([Intel XE#2141]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-8/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-dp-2.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#2425]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_display_modes@extended-mode-basic.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dp_aux_dev: - shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#3009]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_dp_aux_dev.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_dp_aux_dev.html * igt at kms_feature_discovery@dp-mst: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1137]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-6/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3: - shard-bmg: [PASS][63] -> [FAIL][64] ([Intel XE#3288] / [Intel XE#3321]) +1 other test fail [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-1/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-interruptible at bd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][65] ([Intel XE#3321]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/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: NOTRUN -> [FAIL][66] ([Intel XE#301]) +4 other tests fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/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 ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][67] -> [FAIL][68] ([Intel XE#301]) +4 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-rmfb: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1421]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-8/igt at kms_flip@2x-flip-vs-rmfb.html * igt at kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2316]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][71] -> [FAIL][72] ([Intel XE#2882]) +1 other test fail [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at kms_flip@2x-plain-flip-fb-recreate.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-2/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#2316]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@flip-vs-expired-vblank at d-dp4: - shard-dg2-set2: [PASS][75] -> [FAIL][76] ([Intel XE#301] / [Intel XE#3321]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html * igt at kms_flip@flip-vs-wf_vblank-interruptible: - shard-dg2-set2: [PASS][77] -> [INCOMPLETE][78] ([Intel XE#2049]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_flip@flip-vs-wf_vblank-interruptible.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at kms_flip@flip-vs-wf_vblank-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2293] / [Intel XE#2380]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-4/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2293]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-4/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#455]) +13 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1401] / [Intel XE#1745]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/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][83] ([Intel XE#1401]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/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_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2311]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#651]) +24 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcdrrs-stridechange: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#651]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-5/igt at kms_frontbuffer_tracking@fbcdrrs-stridechange.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-linear: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#653]) +19 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-tiling-linear.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#658]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-hdmi-a-3: - shard-bmg: NOTRUN -> [FAIL][89] ([Intel XE#2333]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-hdmi-a-3.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2313]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#656]) +8 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-1/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#346]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2925]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_pipe_crc_basic@bad-source: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2423] / [i915#2575]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_pipe_crc_basic@bad-source.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][95] ([Intel XE#616]) +2 other tests fail [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.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_8183/shard-dg2-433/igt at kms_plane_cursor@viewport.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at kms_plane_cursor@viewport.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][98] ([Intel XE#361]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-2.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2763]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][101] -> [FAIL][102] ([Intel XE#718]) +1 other test fail [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-7/igt at kms_pm_dc@dc5-dpms.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-7/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#908]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at kms_pm_dc@dc6-dpms.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#2893]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-4/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#1489]) +4 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@page_flip-p010: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1128]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-3/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1406]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-6/igt at kms_psr@fbc-pr-primary-blt.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-5/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_psr@psr2-basic: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2850] / [Intel XE#929]) +7 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at kms_psr@psr2-basic.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2939]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#3414]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at kms_rotation_crc@bad-tiling.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [PASS][112] -> [FAIL][113] ([Intel XE#2883]) +2 other tests fail [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-8/igt at kms_setmode@basic at pipe-b-edp-1.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-3/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_setmode@clone-exclusive-crtc: - shard-bmg: [PASS][114] -> [SKIP][115] ([Intel XE#1435]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_setmode@clone-exclusive-crtc.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_sysfs_edid_timing: - shard-dg2-set2: [PASS][116] -> [FAIL][117] ([Intel XE#1174]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at kms_sysfs_edid_timing.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#362]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-6/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@cmrr: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2168]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at kms_vrr@cmrr.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][120] -> [FAIL][121] ([Intel XE#2159]) +1 other test fail [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-3/igt at kms_vrr@cmrr at pipe-a-edp-1.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-5/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#756]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-pixel-formats: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#756]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-8/igt at kms_writeback@writeback-pixel-formats.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#3889]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug@discovery-empty-clients: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#2905]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-5/igt at xe_eudebug@discovery-empty-clients.html * igt at xe_eudebug_online@interrupt-other: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2905]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at xe_eudebug_online@interrupt-other.html * igt at xe_evict@evict-beng-large-external: - shard-dg2-set2: [PASS][127] -> [INCOMPLETE][128] ([Intel XE#1473]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at xe_evict@evict-beng-large-external.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at xe_evict@evict-beng-large-external.html * igt at xe_evict@evict-large-external: - shard-dg2-set2: [PASS][129] -> [SKIP][130] ([Intel XE#1130]) +9 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_evict@evict-large-external.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at xe_evict@evict-large-external.html * igt at xe_evict@evict-mixed-threads-small: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#688]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-3/igt at xe_evict@evict-mixed-threads-small.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#1392]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2322]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-1/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [PASS][134] -> [SKIP][135] ([Intel XE#1392]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_exec_fault_mode@once-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#1130]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at xe_exec_fault_mode@once-userptr-invalidate-race.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#288]) +17 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2360]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt at xe_gt_freq@freq_suspend: - shard-dg2-set2: [PASS][139] -> [ABORT][140] ([Intel XE#2625]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_gt_freq@freq_suspend.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at xe_gt_freq@freq_suspend.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#255]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at xe_huc_copy@huc_copy.html * igt at xe_media_fill@media-fill: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#560]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-4/igt at xe_media_fill@media-fill.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_oa@mmio-triggered-reports: - shard-bmg: [PASS][144] -> [SKIP][145] ([Intel XE#1130]) +12 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at xe_oa@mmio-triggered-reports.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at xe_oa@mmio-triggered-reports.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#977]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at xe_pat@pat-index-xe2.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][147] ([Intel XE#1173]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [ABORT][148] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_query@multigpu-query-invalid-size: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#944]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-3/igt at xe_query@multigpu-query-invalid-size.html * igt at xe_query@multigpu-query-mem-usage: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#944]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-8/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_query@multigpu-query-oa-units: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#944]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at xe_query@multigpu-query-oa-units.html * igt at xe_query@query-invalid-size: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#1130]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at xe_query@query-invalid-size.html #### Possible fixes #### * igt at fbdev@read: - shard-lnl: [FAIL][153] -> [PASS][154] [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-7/igt at fbdev@read.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-8/igt at fbdev@read.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][155] ([Intel XE#827]) -> [PASS][156] +1 other test pass [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@test-cursor: - shard-lnl: [SKIP][157] ([Intel XE#664]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-1/igt at kms_async_flips@test-cursor.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-4/igt at kms_async_flips@test-cursor.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2-set2: [INCOMPLETE][159] ([Intel XE#2613]) -> [PASS][160] [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][161] -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe-a-dp-4.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe-a-dp-4.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][163] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-8/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][165] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][166] [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/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-d-dp-4: - shard-dg2-set2: [INCOMPLETE][167] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-d-dp-4.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-d-dp-4.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][169] ([Intel XE#2291]) -> [PASS][170] +4 other tests pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-1/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-dg2-set2: [SKIP][171] ([Intel XE#2423] / [i915#2575]) -> [PASS][172] +9 other tests pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_flip@2x-dpms-vs-vblank-race.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-dg2-set2: [FAIL][173] -> [PASS][174] +1 other test pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-bmg: [INCOMPLETE][175] ([Intel XE#2635]) -> [PASS][176] +1 other test pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-4/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [SKIP][177] ([Intel XE#2316]) -> [PASS][178] +5 other tests pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-2/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank at a-hdmi-a3: - shard-bmg: [FAIL][179] ([Intel XE#2882]) -> [PASS][180] +1 other test pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_flip@flip-vs-absolute-wf_vblank at a-hdmi-a3.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-2/igt at kms_flip@flip-vs-absolute-wf_vblank at a-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4: - shard-dg2-set2: [FAIL][181] ([Intel XE#301]) -> [PASS][182] +5 other tests pass [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [ABORT][183] ([Intel XE#2625]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-432/igt at kms_flip@flip-vs-suspend.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at kms_flip@flip-vs-suspend.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][185] ([Intel XE#2136]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][187] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_plane_lowres@tiling-none at pipe-b-hdmi-a-3: - shard-bmg: [INCOMPLETE][189] -> [PASS][190] +1 other test pass [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at kms_plane_lowres@tiling-none at pipe-b-hdmi-a-3.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-2/igt at kms_plane_lowres@tiling-none at pipe-b-hdmi-a-3.html * igt at kms_pm_dc@dc6-dpms: - shard-lnl: [FAIL][191] ([Intel XE#1430]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-6/igt at kms_pm_dc@dc6-dpms.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-3/igt at kms_pm_dc@dc6-dpms.html * igt at kms_vblank@ts-continuation-suspend: - shard-bmg: [SKIP][193] ([Intel XE#3007]) -> [PASS][194] +8 other tests pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_vblank@ts-continuation-suspend.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-5/igt at kms_vblank@ts-continuation-suspend.html * igt at xe_exec_threads@threads-hang-fd-userptr-rebind: - shard-dg2-set2: [DMESG-WARN][195] ([Intel XE#3876]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at xe_exec_threads@threads-hang-fd-userptr-rebind.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-436/igt at xe_exec_threads@threads-hang-fd-userptr-rebind.html * igt at xe_module_load@load: - shard-dg2-set2: ([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], [SKIP][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221]) ([Intel XE#378]) -> ([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], [PASS][245]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-432/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-436/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-436/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at xe_module_load@load.html * igt at xe_pm@s4-d3hot-basic-exec: - shard-lnl: [ABORT][246] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-2/igt at xe_pm@s4-d3hot-basic-exec.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-lnl-7/igt at xe_pm@s4-d3hot-basic-exec.html * igt at xe_vm@large-userptr-split-binds-1073741824: - shard-dg2-set2: [SKIP][248] ([Intel XE#1130]) -> [PASS][249] +10 other tests pass [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_vm@large-userptr-split-binds-1073741824.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at xe_vm@large-userptr-split-binds-1073741824.html * igt at xe_vm@munmap-style-unbind-userptr-many-either-side-full: - shard-bmg: [SKIP][250] ([Intel XE#1130]) -> [PASS][251] +13 other tests pass [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at xe_vm@munmap-style-unbind-userptr-many-either-side-full.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at xe_vm@munmap-style-unbind-userptr-many-either-side-full.html #### Warnings #### * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [SKIP][252] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][253] ([Intel XE#1124]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-1/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg2-set2: [SKIP][254] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][255] ([Intel XE#1124]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][256] ([Intel XE#3007]) -> [SKIP][257] ([Intel XE#2314] / [Intel XE#2894]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-8/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html - shard-dg2-set2: [SKIP][258] ([Intel XE#2423] / [i915#2575]) -> [SKIP][259] ([Intel XE#2191]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-433/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs: - shard-bmg: [SKIP][260] ([Intel XE#2887]) -> [SKIP][261] ([Intel XE#2136] / [Intel XE#2231]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][262] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][263] ([Intel XE#2887]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-2/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt at kms_content_protection@atomic: - shard-bmg: [FAIL][264] ([Intel XE#1178]) -> [SKIP][265] ([Intel XE#2341]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at kms_content_protection@atomic.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_content_protection@atomic.html * igt at kms_content_protection@srm: - shard-bmg: [SKIP][266] ([Intel XE#2341]) -> [FAIL][267] ([Intel XE#1178]) +1 other test fail [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_content_protection@srm.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-1/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-dg2-set2: [SKIP][268] ([Intel XE#2423] / [i915#2575]) -> [FAIL][269] ([Intel XE#1188]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_content_protection@uevent.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at kms_content_protection@uevent.html - shard-bmg: [SKIP][270] ([Intel XE#3007]) -> [FAIL][271] ([Intel XE#1188]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_content_protection@uevent.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-rapid-movement-128x42: - shard-bmg: [SKIP][272] ([Intel XE#2320]) -> [SKIP][273] ([Intel XE#3007]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_cursor_crc@cursor-rapid-movement-128x42.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-128x42.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][274] ([Intel XE#877]) -> [SKIP][275] ([Intel XE#2291]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: [SKIP][276] ([Intel XE#2244]) -> [SKIP][277] ([Intel XE#2136] / [Intel XE#2231]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_dsc@dsc-with-output-formats.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_dsc@dsc-with-output-formats.html - shard-dg2-set2: [SKIP][278] ([Intel XE#455]) -> [SKIP][279] ([Intel XE#2136]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_dsc@dsc-with-output-formats.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-bmg: [SKIP][280] ([Intel XE#3007]) -> [SKIP][281] ([Intel XE#2316]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_flip@2x-dpms-vs-vblank-race.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][282] ([Intel XE#2882]) -> [SKIP][283] ([Intel XE#2316]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][284] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][285] ([Intel XE#455]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html - shard-bmg: [SKIP][286] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][287] ([Intel XE#2293] / [Intel XE#2380]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][288] ([Intel XE#2311]) -> [SKIP][289] ([Intel XE#2312]) +12 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][290] ([Intel XE#2312]) -> [SKIP][291] ([Intel XE#2136] / [Intel XE#2231]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][292] ([Intel XE#651]) -> [SKIP][293] ([Intel XE#2136]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt: - shard-bmg: [SKIP][294] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][295] ([Intel XE#2311]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html - shard-dg2-set2: [SKIP][296] ([Intel XE#2136]) -> [SKIP][297] ([Intel XE#651]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][298] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][299] ([Intel XE#2333]) +1 other test fail [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [FAIL][300] ([Intel XE#2333]) -> [SKIP][301] ([Intel XE#2312]) +4 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/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-bmg: [SKIP][302] ([Intel XE#2312]) -> [FAIL][303] ([Intel XE#2333]) +2 other tests fail [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][304] ([Intel XE#2311]) -> [SKIP][305] ([Intel XE#2136] / [Intel XE#2231]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt.html - shard-dg2-set2: [SKIP][306] ([Intel XE#651]) -> [SKIP][307] ([Intel XE#2136] / [Intel XE#2351]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][308] ([Intel XE#2312]) -> [SKIP][309] ([Intel XE#2311]) +16 other tests skip [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][310] ([Intel XE#2313]) -> [SKIP][311] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html - shard-dg2-set2: [SKIP][312] ([Intel XE#653]) -> [SKIP][313] ([Intel XE#2136]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][314] ([Intel XE#2313]) -> [SKIP][315] ([Intel XE#2312]) +13 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][316] ([Intel XE#2136]) -> [SKIP][317] ([Intel XE#653]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][318] ([Intel XE#2312]) -> [SKIP][319] ([Intel XE#2313]) +9 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][320] ([Intel XE#3544]) -> [SKIP][321] ([Intel XE#3374] / [Intel XE#3544]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_hdr@brightness-with-hdr.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-2/igt at kms_hdr@brightness-with-hdr.html * igt at kms_pm_dc@deep-pkgc: - shard-bmg: [SKIP][322] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][323] ([Intel XE#2505]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_pm_dc@deep-pkgc.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-5/igt at kms_pm_dc@deep-pkgc.html - shard-dg2-set2: [SKIP][324] ([Intel XE#2136]) -> [SKIP][325] ([Intel XE#908]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_pm_dc@deep-pkgc.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-464/igt at kms_pm_dc@deep-pkgc.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: [SKIP][326] ([Intel XE#2330]) -> [SKIP][327] ([Intel XE#3007]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg2-set2: [SKIP][328] ([Intel XE#1127]) -> [SKIP][329] ([Intel XE#2423] / [i915#2575]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][330] ([Intel XE#1729]) -> [SKIP][331] ([Intel XE#2426]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-8/igt at kms_tiled_display@basic-test-pattern.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [DMESG-FAIL][332] -> [TIMEOUT][333] ([Intel XE#1473]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at xe_evict@evict-beng-mixed-threads-large.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-4/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [INCOMPLETE][334] ([Intel XE#1473]) -> [TIMEOUT][335] ([Intel XE#1473]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at xe_evict@evict-beng-threads-large.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-1/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-threads-large: - shard-bmg: [TIMEOUT][336] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][337] ([Intel XE#1000]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at xe_evict@evict-threads-large.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][338] ([Intel XE#2322]) -> [SKIP][339] ([Intel XE#1130]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@once-userptr-imm: - shard-dg2-set2: [SKIP][340] ([Intel XE#1130]) -> [SKIP][341] ([Intel XE#288]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_exec_fault_mode@once-userptr-imm.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at xe_exec_fault_mode@once-userptr-imm.html * igt at xe_exec_fault_mode@once-userptr-invalidate-race: - shard-dg2-set2: [SKIP][342] ([Intel XE#288]) -> [SKIP][343] ([Intel XE#1130]) +2 other tests skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_exec_fault_mode@once-userptr-invalidate-race.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at xe_exec_fault_mode@once-userptr-invalidate-race.html * igt at xe_oa@mmio-triggered-reports: - shard-dg2-set2: [SKIP][344] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][345] ([Intel XE#1130]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at xe_oa@mmio-triggered-reports.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at xe_oa@mmio-triggered-reports.html * igt at xe_peer2peer@read: - shard-bmg: [SKIP][346] ([Intel XE#2557]) -> [SKIP][347] ([Intel XE#2427]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at xe_peer2peer@read.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-1/igt at xe_peer2peer@read.html - shard-dg2-set2: [SKIP][348] ([Intel XE#1061]) -> [FAIL][349] ([Intel XE#1173]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_peer2peer@read.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at xe_peer2peer@read.html * igt at xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][350] ([Intel XE#944]) -> [SKIP][351] ([Intel XE#1130]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_query@multigpu-query-engines.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-435/igt at xe_query@multigpu-query-engines.html - shard-bmg: [SKIP][352] ([Intel XE#944]) -> [SKIP][353] ([Intel XE#1130]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at xe_query@multigpu-query-engines.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-6/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-invalid-extension: - shard-bmg: [SKIP][354] ([Intel XE#1130]) -> [SKIP][355] ([Intel XE#944]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at xe_query@multigpu-query-invalid-extension.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-bmg-8/igt at xe_query@multigpu-query-invalid-extension.html - shard-dg2-set2: [SKIP][356] ([Intel XE#1130]) -> [SKIP][357] ([Intel XE#944]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_query@multigpu-query-invalid-extension.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/shard-dg2-432/igt at xe_query@multigpu-query-invalid-extension.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1174 [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#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [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#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [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#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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [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#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [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#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [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#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [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#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [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#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#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [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#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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [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#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#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8183 -> IGTPW_12417 IGTPW_12417: ff36e76d6d66f72648feb933791398089dfc8496 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2461-14e0c4a8247c9514dc57b2231602fb6d9455802b: 14e0c4a8247c9514dc57b2231602fb6d9455802b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12417/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 11 21:23:30 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 11 Jan 2025 21:23:30 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Initial_PTL_support_=28rev?= =?utf-8?q?6=29?= In-Reply-To: <20241218213654.2734573-1-clinton.a.taylor@intel.com> References: <20241218213654.2734573-1-clinton.a.taylor@intel.com> Message-ID: <173663061097.2602953.10099674755140442503@b555e5b46a47> == Series Details == Series: Initial PTL support (rev6) URL : https://patchwork.freedesktop.org/series/141325/ State : failure == Summary == CI Bug Log - changes from XEIGT_8183_full -> XEIGTPW_12418_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12418_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12418_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_12418_full: ### IGT changes ### #### Possible regressions #### * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-6.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-436/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-6.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][5] +1 other test abort [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-2.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a2-dp2: - shard-dg2-set2: NOTRUN -> [FAIL][6] +3 other tests fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a2-dp2.html * igt at kms_plane_lowres@tiling-4 at pipe-d-hdmi-a-3: - shard-bmg: [PASS][7] -> [INCOMPLETE][8] +3 other tests incomplete [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_plane_lowres@tiling-4 at pipe-d-hdmi-a-3.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-8/igt at kms_plane_lowres@tiling-4 at pipe-d-hdmi-a-3.html * igt at kms_psr@psr2-suspend at edp-1: - shard-lnl: [PASS][9] -> [FAIL][10] +1 other test fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-2/igt at kms_psr@psr2-suspend at edp-1.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-2/igt at kms_psr@psr2-suspend at edp-1.html * igt at xe_mmap@pci-membarrier: - shard-dg2-set2: NOTRUN -> [SKIP][11] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at xe_mmap@pci-membarrier.html Known issues ------------ Here are the changes found in XEIGTPW_12418_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_3d: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1465]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-3/igt at kms_3d.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-dg2-set2: [PASS][13] -> [FAIL][14] ([Intel XE#827]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-436/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: NOTRUN -> [FAIL][15] ([Intel XE#3719]) +3 other tests fail [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * 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][16] ([Intel XE#2550]) +23 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-436/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#1124]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-2/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1124]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-5/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1477]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-2/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-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +6 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-435/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#367]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#367]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-3/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#367]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-2/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-b-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#787]) +83 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-b-dp-2.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2907]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-436/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-dp-2.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2887]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-5/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][31] ([Intel XE#1727] / [Intel XE#3124]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/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-a-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][32] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#1727] / [Intel XE#3124]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/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][35] -> [INCOMPLETE][36] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/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_cdclk@mode-transition-all-outputs: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#314]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-435/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#306]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_hpd@dp-hpd-after-hibernate: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#373]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-7/igt at kms_chamelium_hpd@dp-hpd-after-hibernate.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +5 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_color@ctm-0-50 at pipe-b-hdmi-a-3: - shard-bmg: [PASS][41] -> [DMESG-WARN][42] ([Intel XE#877]) +1 other test dmesg-warn [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_color@ctm-0-50 at pipe-b-hdmi-a-3.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-2/igt at kms_color@ctm-0-50 at pipe-b-hdmi-a-3.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][43] ([Intel XE#3304]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at kms_content_protection@lic-type-0 at pipe-a-dp-4.html * igt at kms_content_protection@srm at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][44] ([Intel XE#1178]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-8/igt at kms_content_protection@srm at pipe-a-dp-2.html * igt at kms_content_protection@uevent at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][45] ([Intel XE#1188]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at kms_content_protection@uevent at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1424]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-6/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#308]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-436/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#309]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-1/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#2291]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#323]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-dp-2: - shard-bmg: NOTRUN -> [FAIL][53] ([Intel XE#2141]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-5/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-dp-2.html * igt at kms_feature_discovery@dp-mst: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1137]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-1/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: NOTRUN -> [FAIL][55] ([Intel XE#301]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/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][56] -> [FAIL][57] ([Intel XE#3288] / [Intel XE#3321]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/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-rmfb: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1421]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-8/igt at kms_flip@2x-flip-vs-rmfb.html * igt at kms_flip@2x-flip-vs-suspend: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2316]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_flip@2x-flip-vs-suspend.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#2316]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_flip@2x-nonexisting-fb.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][62] ([Intel XE#886]) +1 other test fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-435/igt at kms_flip@2x-plain-flip-ts-check-interruptible at ab-hdmi-a6-dp4.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2293] / [Intel XE#2380]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-2/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2293]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-2/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#455]) +12 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1401] / [Intel XE#1745]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/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][67] ([Intel XE#1401]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/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][68] ([Intel XE#1397] / [Intel XE#1745]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/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][69] ([Intel XE#1397]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/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_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2311]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#651]) +23 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#651]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-linear: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#653]) +18 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcpsr-tiling-linear.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#658]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2313]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#656]) +9 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#346]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#3012]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-2/igt at kms_joiner@basic-force-big-joiner.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#2925]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][82] ([Intel XE#616]) +2 other tests fail [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_cursor@viewport: - shard-dg2-set2: [PASS][83] -> [FAIL][84] ([Intel XE#616]) +1 other test fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_plane_cursor@viewport.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at kms_plane_cursor@viewport.html * igt at kms_plane_multiple@tiling-x: - shard-bmg: [PASS][85] -> [SKIP][86] ([Intel XE#3007]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_plane_multiple@tiling-x.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_plane_multiple@tiling-x.html - shard-dg2-set2: [PASS][87] -> [SKIP][88] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at kms_plane_multiple@tiling-x.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at kms_plane_multiple@tiling-x.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#2763]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-3/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2763]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [PASS][92] -> [FAIL][93] ([Intel XE#718]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-4/igt at kms_pm_dc@dc5-psr.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-3/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#908]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-435/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [PASS][95] -> [SKIP][96] ([Intel XE#2446]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_pm_rpm@basic-pci-d3-state.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_pm_rpm@basic-pci-d3-state.html - shard-dg2-set2: [PASS][97] -> [SKIP][98] ([Intel XE#2446]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-432/igt at kms_pm_rpm@basic-pci-d3-state.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#2893]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-1/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#1489]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@page_flip-p010: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1128]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-1/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1406]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-8/igt at kms_psr@fbc-pr-primary-blt.html * igt at kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at kms_psr@fbc-psr-sprite-render.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-4/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#3414]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at kms_rotation_crc@bad-tiling.html * igt at kms_tiled_display@basic-test-pattern: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#362]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-4/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@cmrr: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2168]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at kms_vrr@cmrr.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#756]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-pixel-formats: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#756]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-1/igt at kms_writeback@writeback-pixel-formats.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: [PASS][110] -> [ABORT][111] ([Intel XE#2625]) +2 other tests abort [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html * igt at xe_create@create-big-vram: - shard-bmg: [PASS][112] -> [SKIP][113] ([Intel XE#1130]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at xe_create@create-big-vram.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at xe_create@create-big-vram.html - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#1130]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at xe_create@create-big-vram.html * igt at xe_eudebug@discovery-empty-clients: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#2905]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-1/igt at xe_eudebug@discovery-empty-clients.html * igt at xe_eudebug_online@interrupt-other: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2905]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at xe_eudebug_online@interrupt-other.html * igt at xe_evict@evict-mixed-threads-small: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#688]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-1/igt at xe_evict@evict-mixed-threads-small.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2322]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-4/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate-race: - shard-dg2-set2: [PASS][119] -> [SKIP][120] ([Intel XE#1392]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html * igt at xe_exec_fault_mode@once-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#288]) +13 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-435/igt at xe_exec_fault_mode@once-rebind-imm.html * igt at xe_exec_reset@cm-gt-reset: - shard-bmg: [PASS][122] -> [INCOMPLETE][123] ([Intel XE#3592]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at xe_exec_reset@cm-gt-reset.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-4/igt at xe_exec_reset@cm-gt-reset.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#255]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at xe_huc_copy@huc_copy.html * igt at xe_media_fill@media-fill: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#560]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-3/igt at xe_media_fill@media-fill.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#977]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at xe_pat@pat-index-xe2.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][128] ([Intel XE#1173]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-system: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2284] / [Intel XE#366]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s4-basic: - shard-lnl: [PASS][130] -> [ABORT][131] ([Intel XE#1358] / [Intel XE#1607]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-8/igt at xe_pm@s4-basic.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-2/igt at xe_pm@s4-basic.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][132] -> [FAIL][133] ([Intel XE#958]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-6/igt at xe_pm_residency@toggle-gt-c6.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-4/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-invalid-size: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#944]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-7/igt at xe_query@multigpu-query-invalid-size.html * igt at xe_query@multigpu-query-mem-usage: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#944]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_query@multigpu-query-oa-units: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#944]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at xe_query@multigpu-query-oa-units.html * igt at xe_vm@large-binds-8388608: - shard-dg2-set2: [PASS][137] -> [SKIP][138] ([Intel XE#1130]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at xe_vm@large-binds-8388608.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at xe_vm@large-binds-8388608.html #### Possible fixes #### * igt at fbdev@read: - shard-dg2-set2: [FAIL][139] -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at fbdev@read.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at fbdev@read.html - shard-lnl: [FAIL][141] -> [PASS][142] [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-7/igt at fbdev@read.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-4/igt at fbdev@read.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][143] ([Intel XE#827]) -> [PASS][144] [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][145] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][146] [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-8/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][147] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][148] [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/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-d-dp-4: - shard-dg2-set2: [INCOMPLETE][149] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][150] [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-d-dp-4.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-d-dp-4.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][151] ([Intel XE#2291]) -> [PASS][152] +4 other tests pass [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-4/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_flip@2x-dpms-vs-vblank-race: - shard-dg2-set2: [SKIP][153] ([Intel XE#2423] / [i915#2575]) -> [PASS][154] +9 other tests pass [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_flip@2x-dpms-vs-vblank-race.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at kms_flip@2x-dpms-vs-vblank-race.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][155] ([Intel XE#3321]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-bmg: [INCOMPLETE][157] ([Intel XE#2635]) -> [PASS][158] +1 other test pass [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-2/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [SKIP][159] ([Intel XE#2316]) -> [PASS][160] +3 other tests pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-5/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank at a-hdmi-a3: - shard-bmg: [FAIL][161] ([Intel XE#2882]) -> [PASS][162] +3 other tests pass [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_flip@flip-vs-absolute-wf_vblank at a-hdmi-a3.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-8/igt at kms_flip@flip-vs-absolute-wf_vblank at a-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][163] ([Intel XE#301]) -> [PASS][164] +1 other test pass [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][165] ([Intel XE#2136]) -> [PASS][166] [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][167] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_plane_lowres@tiling-none at pipe-b-hdmi-a-3: - shard-bmg: [INCOMPLETE][169] -> [PASS][170] +1 other test pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at kms_plane_lowres@tiling-none at pipe-b-hdmi-a-3.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-2/igt at kms_plane_lowres@tiling-none at pipe-b-hdmi-a-3.html * igt at kms_vblank@ts-continuation-suspend: - shard-bmg: [SKIP][171] ([Intel XE#3007]) -> [PASS][172] +8 other tests pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_vblank@ts-continuation-suspend.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-1/igt at kms_vblank@ts-continuation-suspend.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][173] ([Intel XE#1473]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at xe_evict@evict-mixed-many-threads-large.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_exec_basic@many-execqueues-bindexecqueue-userptr-rebind: - shard-bmg: [SKIP][175] ([Intel XE#1130]) -> [PASS][176] +13 other tests pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at xe_exec_basic@many-execqueues-bindexecqueue-userptr-rebind.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-4/igt at xe_exec_basic@many-execqueues-bindexecqueue-userptr-rebind.html * igt at xe_module_load@load: - shard-dg2-set2: ([PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [SKIP][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201]) ([Intel XE#378]) -> ([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], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-463/igt at xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-432/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-436/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-436/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-435/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-435/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-436/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-436/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-435/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-436/igt at xe_module_load@load.html * igt at xe_pm@s4-d3hot-basic-exec: - shard-lnl: [ABORT][227] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-2/igt at xe_pm@s4-d3hot-basic-exec.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-8/igt at xe_pm@s4-d3hot-basic-exec.html * igt at xe_vm@large-userptr-split-binds-1073741824: - shard-dg2-set2: [SKIP][229] ([Intel XE#1130]) -> [PASS][230] +10 other tests pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_vm@large-userptr-split-binds-1073741824.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at xe_vm@large-userptr-split-binds-1073741824.html #### Warnings #### * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [SKIP][231] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][232] ([Intel XE#1124]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg2-set2: [SKIP][233] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][234] ([Intel XE#1124]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][235] ([Intel XE#3007]) -> [SKIP][236] ([Intel XE#2314] / [Intel XE#2894]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html - shard-dg2-set2: [SKIP][237] ([Intel XE#2423] / [i915#2575]) -> [SKIP][238] ([Intel XE#2191]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_content_protection@srm: - shard-bmg: [SKIP][239] ([Intel XE#2341]) -> [FAIL][240] ([Intel XE#1178]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_content_protection@srm.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-8/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-dg2-set2: [SKIP][241] ([Intel XE#2423] / [i915#2575]) -> [FAIL][242] ([Intel XE#1188]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_content_protection@uevent.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at kms_content_protection@uevent.html - shard-bmg: [SKIP][243] ([Intel XE#3007]) -> [SKIP][244] ([Intel XE#2341]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_content_protection@uevent.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][245] ([Intel XE#2320]) -> [SKIP][246] ([Intel XE#3007]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at kms_cursor_crc@cursor-random-32x32.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-bmg: [SKIP][247] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][248] ([Intel XE#2293] / [Intel XE#2380]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][249] ([Intel XE#2311]) -> [SKIP][250] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt: - shard-bmg: [SKIP][251] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][252] ([Intel XE#2311]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html - shard-dg2-set2: [SKIP][253] ([Intel XE#2136]) -> [SKIP][254] ([Intel XE#651]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][255] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][256] ([Intel XE#2333]) +1 other test fail [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][257] ([Intel XE#2333]) -> [SKIP][258] ([Intel XE#2312]) +3 other tests skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][259] ([Intel XE#2312]) -> [FAIL][260] ([Intel XE#2333]) +3 other tests fail [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][261] ([Intel XE#2311]) -> [SKIP][262] ([Intel XE#2312]) +13 other tests skip [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][263] ([Intel XE#2312]) -> [SKIP][264] ([Intel XE#2311]) +13 other tests skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary: - shard-dg2-set2: [SKIP][265] ([Intel XE#651]) -> [SKIP][266] ([Intel XE#2136]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][267] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][268] ([Intel XE#2313]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render.html - shard-dg2-set2: [SKIP][269] ([Intel XE#2136]) -> [SKIP][270] ([Intel XE#653]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][271] ([Intel XE#2313]) -> [SKIP][272] ([Intel XE#2312]) +11 other tests skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][273] ([Intel XE#2313]) -> [SKIP][274] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html - shard-dg2-set2: [SKIP][275] ([Intel XE#653]) -> [SKIP][276] ([Intel XE#2136]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][277] ([Intel XE#2312]) -> [SKIP][278] ([Intel XE#2313]) +8 other tests skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][279] ([Intel XE#870]) -> [SKIP][280] ([Intel XE#2136]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_pm_backlight@fade-with-suspend.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at kms_pm_backlight@fade-with-suspend.html - shard-bmg: [SKIP][281] ([Intel XE#870]) -> [SKIP][282] ([Intel XE#2136] / [Intel XE#2231]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at kms_pm_backlight@fade-with-suspend.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@deep-pkgc: - shard-dg2-set2: [SKIP][283] ([Intel XE#2136]) -> [SKIP][284] ([Intel XE#908]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at kms_pm_dc@deep-pkgc.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-436/igt at kms_pm_dc@deep-pkgc.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][285] ([Intel XE#1729]) -> [SKIP][286] ([Intel XE#362]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-433/igt at kms_tiled_display@basic-test-pattern.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html * igt at xe_eudebug@basic-vm-bind-extended-discovery: - shard-dg2-set2: [SKIP][287] ([Intel XE#2905]) -> [SKIP][288] ([Intel XE#1130]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at xe_eudebug@basic-vm-bind-extended-discovery.html - shard-bmg: [SKIP][289] ([Intel XE#2905]) -> [SKIP][290] ([Intel XE#1130]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at xe_eudebug@basic-vm-bind-extended-discovery.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended-discovery.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [DMESG-FAIL][291] -> [TIMEOUT][292] ([Intel XE#1473]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-5/igt at xe_evict@evict-beng-mixed-threads-large.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-5/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [TIMEOUT][293] ([Intel XE#1473] / [Intel XE#2472]) -> [INCOMPLETE][294] ([Intel XE#1473]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at xe_evict@evict-mixed-many-threads-small.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-6/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_evict@evict-threads-large: - shard-bmg: [TIMEOUT][295] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][296] ([Intel XE#1000]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-1/igt at xe_evict@evict-threads-large.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-1/igt at xe_evict@evict-threads-large.html * igt at xe_exec_fault_mode@once-userptr-imm: - shard-dg2-set2: [SKIP][297] ([Intel XE#1130]) -> [SKIP][298] ([Intel XE#288]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_exec_fault_mode@once-userptr-imm.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-464/igt at xe_exec_fault_mode@once-userptr-imm.html * igt at xe_exec_fault_mode@twice-bindexecqueue-prefetch: - shard-dg2-set2: [SKIP][299] ([Intel XE#288]) -> [SKIP][300] ([Intel XE#1130]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_exec_fault_mode@twice-bindexecqueue-prefetch.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at xe_exec_fault_mode@twice-bindexecqueue-prefetch.html * igt at xe_oa@mi-rpc: - shard-dg2-set2: [SKIP][301] ([Intel XE#1130]) -> [SKIP][302] ([Intel XE#2541] / [Intel XE#3573]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_oa@mi-rpc.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-436/igt at xe_oa@mi-rpc.html * igt at xe_peer2peer@read: - shard-bmg: [SKIP][303] ([Intel XE#2557]) -> [SKIP][304] ([Intel XE#2427]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at xe_peer2peer@read.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-4/igt at xe_peer2peer@read.html - shard-dg2-set2: [SKIP][305] ([Intel XE#1061]) -> [FAIL][306] ([Intel XE#1173]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_peer2peer@read.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-463/igt at xe_peer2peer@read.html * igt at xe_query@multigpu-query-invalid-extension: - shard-bmg: [SKIP][307] ([Intel XE#1130]) -> [SKIP][308] ([Intel XE#944]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-6/igt at xe_query@multigpu-query-invalid-extension.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-2/igt at xe_query@multigpu-query-invalid-extension.html - shard-dg2-set2: [SKIP][309] ([Intel XE#1130]) -> [SKIP][310] ([Intel XE#944]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_query@multigpu-query-invalid-extension.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at xe_query@multigpu-query-invalid-extension.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [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#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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [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#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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [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#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [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#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [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#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [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#3592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3592 [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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [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#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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [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#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#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 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8183 -> IGTPW_12418 IGTPW_12418: 23052ace3ac04fd0203b573736255ba4919c63d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2461-14e0c4a8247c9514dc57b2231602fb6d9455802b: 14e0c4a8247c9514dc57b2231602fb6d9455802b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sun Jan 12 02:39:32 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sun, 12 Jan 2025 02:39:32 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_lib/meson=2Ebuild=3A_allow?= =?utf-8?q?_build_IGT_with_link_time_optimization_=28rev2=29?= In-Reply-To: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> References: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> Message-ID: <173664957296.2741499.5425200845106404861@b555e5b46a47> == Series Details == Series: lib/meson.build: allow build IGT with link time optimization (rev2) URL : https://patchwork.freedesktop.org/series/142655/ State : failure == Summary == CI Bug Log - changes from XEIGT_8184_full -> XEIGTPW_12419_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12419_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12419_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_12419_full: ### IGT changes ### #### Possible regressions #### * igt at core_setmaster@master-drop-set-user: - shard-bmg: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at core_setmaster@master-drop-set-user.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at core_setmaster@master-drop-set-user.html * igt at kms_atomic_transition@plane-all-transition-nonblocking: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at kms_atomic_transition@plane-all-transition-nonblocking.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at kms_atomic_transition@plane-all-transition-nonblocking.html * igt at kms_atomic_transition@plane-all-transition-nonblocking at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at kms_atomic_transition@plane-all-transition-nonblocking at pipe-a-hdmi-a-6.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-bmg: [PASS][6] -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-4/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][8] -> [ABORT][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][10] +3 other tests abort [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-2.html * igt at kms_flip@wf_vblank-ts-check at b-edp1: - shard-lnl: [PASS][11] -> [INCOMPLETE][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-1/igt at kms_flip@wf_vblank-ts-check at b-edp1.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-1/igt at kms_flip@wf_vblank-ts-check at b-edp1.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [FAIL][13] [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-432/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-2.html #### Warnings #### * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [INCOMPLETE][14] ([Intel XE#1473]) -> [DMESG-FAIL][15] [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at xe_evict@evict-beng-mixed-threads-large.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-4/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_mmap@pci-membarrier-bad-object: - shard-bmg: [SKIP][16] ([Intel XE#1130]) -> [SKIP][17] [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_mmap@pci-membarrier-bad-object.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at xe_mmap@pci-membarrier-bad-object.html - shard-dg2-set2: [SKIP][18] ([Intel XE#1130]) -> [SKIP][19] [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_mmap@pci-membarrier-bad-object.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at xe_mmap@pci-membarrier-bad-object.html Known issues ------------ Here are the changes found in XEIGTPW_12419_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][20] -> [FAIL][21] ([Intel XE#827]) +1 other test fail [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [PASS][22] -> [FAIL][23] ([Intel XE#3719]) +3 other tests fail [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-3/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * 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][24] ([Intel XE#2550]) +23 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1407]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-1/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2327]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-5/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@linear-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2136] / [Intel XE#2231]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_big_fb@linear-8bpp-rotate-90.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#316]) +5 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#619]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#607]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/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: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-3/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-6/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1124]) +10 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#367]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-4-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1512]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-5/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#367]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-6/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +5 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-6/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2887]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-4/igt at kms_ccs@crc-primary-basic-y-tiled-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][39] ([Intel XE#787]) +153 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/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-mtl-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#455] / [Intel XE#787]) +35 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#3862]) +1 other test incomplete [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#3442]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#3432]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-1/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2652] / [Intel XE#787]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#314]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-25: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2325]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-5/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_color@ctm-0-75: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#306]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-432/igt at kms_chamelium_color@ctm-0-75.html * igt at kms_chamelium_color@ctm-limited-range: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#306]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-1/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_edid@dp-mode-timings: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2252]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_chamelium_edid@dp-mode-timings.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#373]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-6/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#373]) +14 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#307]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#307]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-4/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][55] ([Intel XE#3304]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at kms_content_protection@lic-type-0 at pipe-a-dp-4.html * igt at kms_content_protection@lic-type-1: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#3278]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-5/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1468]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-3/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][58] ([Intel XE#1178]) +3 other tests fail [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][59] ([Intel XE#1188]) +1 other test fail [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at kms_content_protection@uevent.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_12419/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-64x21: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2320]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-4/igt at kms_cursor_crc@cursor-random-64x21.html * igt at kms_cursor_crc@cursor-random-64x64: - shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#3007]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_cursor_crc@cursor-random-64x64.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_cursor_crc@cursor-random-64x64.html * igt at kms_cursor_crc@cursor-rapid-movement-128x42: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1424]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-6/igt at kms_cursor_crc@cursor-rapid-movement-128x42.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2321]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-8/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-suspend: - shard-lnl: [PASS][66] -> [INCOMPLETE][67] ([Intel XE#1616]) +1 other test incomplete [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-1/igt at kms_cursor_crc@cursor-suspend.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-7/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [PASS][68] -> [SKIP][69] ([Intel XE#2291]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-5/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#309]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-7/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][71] -> [DMESG-WARN][72] ([Intel XE#877]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-crc-atomic: - shard-lnl: [PASS][73] -> [FAIL][74] ([Intel XE#1475]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-4/igt at kms_cursor_legacy@flip-vs-cursor-crc-atomic.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-3/igt at kms_cursor_legacy@flip-vs-cursor-crc-atomic.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#323]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_draw_crc@fill-fb: - shard-bmg: [PASS][76] -> [SKIP][77] ([Intel XE#2136] / [Intel XE#2231]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_draw_crc@fill-fb.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_draw_crc@fill-fb.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2374]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-6/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#1135]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-wf_vblank at ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][80] ([Intel XE#2882]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-5/igt at kms_flip@2x-blocking-wf_vblank at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3: - shard-bmg: [PASS][81] -> [FAIL][82] ([Intel XE#3288] / [Intel XE#3321]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-5/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][83] ([Intel XE#1421]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-8/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][84] -> [SKIP][85] ([Intel XE#2316]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_flip@2x-nonexisting-fb.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-6/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@flip-vs-expired-vblank: - shard-bmg: [PASS][86] -> [FAIL][87] ([Intel XE#2882]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_flip@flip-vs-expired-vblank.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank.html * igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3: - shard-bmg: [PASS][88] -> [FAIL][89] ([Intel XE#3321]) +3 other tests fail [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][90] ([Intel XE#301]) +3 other tests fail [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank at b-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][91] ([Intel XE#301] / [Intel XE#3321]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at b-dp4.html * igt at kms_flip@wf_vblank-ts-check: - shard-lnl: [PASS][92] -> [INCOMPLETE][93] ([Intel XE#2049]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-1/igt at kms_flip@wf_vblank-ts-check.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-1/igt at kms_flip@wf_vblank-ts-check.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1397] / [Intel XE#1745]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1397]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2293]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1401]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#455]) +22 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_force_connector_basic@force-connector-state: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#352]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-1/igt at kms_force_connector_basic@force-connector-state.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2311]) +8 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#651]) +33 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-slowdraw: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#651]) +6 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-5/igt at kms_frontbuffer_tracking@drrs-slowdraw.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#653]) +32 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-dp-2: - shard-bmg: NOTRUN -> [FAIL][105] ([Intel XE#2333]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-dp-2.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2313]) +8 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#656]) +14 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_histogram@global-color: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#3898]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-1/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#346]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-6/igt at kms_joiner@basic-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#346]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at kms_joiner@basic-big-joiner.html - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#346]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-8/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2927]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2925]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#356]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][115] ([Intel XE#616]) +3 other tests fail [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_cursor@viewport: - shard-dg2-set2: [PASS][116] -> [FAIL][117] ([Intel XE#616]) +1 other test fail [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at kms_plane_cursor@viewport.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at kms_plane_cursor@viewport.html * igt at kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#2493]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-8/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2763]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/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][121] ([Intel XE#2763]) +8 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#870]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-433/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2938]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2392]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-6/igt at kms_pm_dc@dc5-psr.html - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1129]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][126] ([Intel XE#1430]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-1/igt at kms_pm_dc@dc6-psr.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#1489]) +8 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#1489]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-5/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#2893]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-1/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1122]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1128]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-8/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-5/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@pr-suspend: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#1406]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-8/igt at kms_psr@pr-suspend.html * igt at kms_psr@psr2-basic: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#2850] / [Intel XE#929]) +19 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/igt at kms_psr@psr2-basic.html * igt at kms_rotation_crc@bad-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#3414]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#3414] / [Intel XE#3904]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-6/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-none: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2413]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-5/igt at kms_scaling_modes@scaling-mode-none.html - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#2413] / [Intel XE#374]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-3/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#374]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-3/igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1.html * igt at kms_setmode@basic: - shard-dg2-set2: NOTRUN -> [FAIL][140] ([Intel XE#2883]) +1 other test fail [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-432/igt at kms_setmode@basic.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: NOTRUN -> [FAIL][141] ([Intel XE#1729]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#362]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-6/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [PASS][143] -> [ABORT][144] ([Intel XE#2625]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_vblank@ts-continuation-suspend.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#756]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-2/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#1091] / [Intel XE#2849]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#1091] / [Intel XE#2849]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-4/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_copy_basic@mem-copy-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#1123]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at xe_copy_basic@mem-copy-linear-0xfd.html * igt at xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#2905]) +12 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at xe_eudebug@basic-close.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#3889]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-433/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2905]) +5 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-4/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#3889]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-5/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@discovery-empty-clients: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2905]) +6 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-1/igt at xe_eudebug@discovery-empty-clients.html * igt at xe_evict@evict-beng-cm-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#688]) +4 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-6/igt at xe_evict@evict-beng-cm-threads-large-multi-vm.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: NOTRUN -> [TIMEOUT][155] ([Intel XE#1473]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind: - shard-dg2-set2: [PASS][156] -> [SKIP][157] ([Intel XE#1392]) +4 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@multigpu-no-exec-basic: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2322]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-5/igt at xe_exec_basic@multigpu-no-exec-basic.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1392]) +5 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-8/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#288]) +24 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [FAIL][161] ([Intel XE#3099]) +1 other test fail [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate: - shard-bmg: [PASS][162] -> [SKIP][163] ([Intel XE#1192]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_live_ktest@xe_migrate.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at xe_live_ktest@xe_migrate.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#2229]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-433/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][165] ([Intel XE#1999]) +2 other tests fail [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#1416]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-3/igt at xe_mmap@vram.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#2541] / [Intel XE#3573]) +10 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2248]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-8/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#979]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at xe_pat@pat-index-xelpg.html * igt at xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/igt at xe_pm@d3cold-basic-exec.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-8/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s2idle-exec-after: - shard-dg2-set2: [PASS][172] -> [ABORT][173] ([Intel XE#1358]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at xe_pm@s2idle-exec-after.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-432/igt at xe_pm@s2idle-exec-after.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-bmg: [PASS][174] -> [SKIP][175] ([Intel XE#1130]) +15 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at xe_pm@s2idle-vm-bind-unbind-all.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_pm@s2idle-vm-bind-userptr: - shard-dg2-set2: [PASS][176] -> [ABORT][177] ([Intel XE#1358] / [Intel XE#1794]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_pm@s2idle-vm-bind-userptr.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-userptr.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#579]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at xe_pm@vram-d3cold-threshold.html - shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#579]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-invalid-extension: - shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#944]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#944]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-4/igt at xe_query@multigpu-query-uc-fw-version-huc.html #### Possible fixes #### * igt at kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][182] ([Intel XE#3007]) -> [PASS][183] +12 other tests pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_addfb_basic@bad-pitch-999.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-8/igt at kms_addfb_basic@bad-pitch-999.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1: - shard-lnl: [FAIL][184] ([Intel XE#3908]) -> [PASS][185] +1 other test pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-5/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][186] ([Intel XE#2136]) -> [PASS][187] +1 other test pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_big_fb@4-tiled-addfb-size-overflow.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [SKIP][188] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][189] +4 other tests pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-lnl: [INCOMPLETE][190] ([Intel XE#3862]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-3/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1: - shard-lnl: [INCOMPLETE][192] -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-3/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][194] -> [PASS][195] +1 other test pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][196] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/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-b-dp-4: - shard-dg2-set2: [DMESG-WARN][198] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][200] ([Intel XE#3124]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-set2: [SKIP][202] ([Intel XE#2423] / [i915#2575]) -> [PASS][203] +10 other tests pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][204] ([Intel XE#877]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][206] ([Intel XE#2291]) -> [PASS][207] +2 other tests pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][208] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/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: [FAIL][210] ([Intel XE#3321]) -> [PASS][211] +1 other test pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/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 bc-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][212] ([Intel XE#301]) -> [PASS][213] +3 other tests pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a6-dp4.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][214] ([Intel XE#2882]) -> [PASS][215] +2 other tests pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/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 ac-dp2-hdmi-a3: - shard-bmg: [FAIL][216] ([Intel XE#3321]) -> [PASS][217] +1 other test pass [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [SKIP][218] ([Intel XE#2316]) -> [PASS][219] +5 other tests pass [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-5/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][220] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_flip@flip-vs-suspend.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at d-dp4: - shard-dg2-set2: [INCOMPLETE][222] ([Intel XE#2049]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_flip@flip-vs-suspend at d-dp4.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_flip@flip-vs-suspend at d-dp4.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][224] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][225] +2 other tests pass [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-432/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][226] ([Intel XE#3012]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_plane_cursor@overlay: - shard-dg2-set2: [FAIL][228] ([Intel XE#616]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at kms_plane_cursor@overlay.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at kms_plane_cursor@overlay.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][230] ([Intel XE#718]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-5/igt at kms_pm_dc@dc5-psr.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-6/igt at kms_pm_dc@dc5-psr.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [FAIL][232] ([Intel XE#899]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-3/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vrr@negative-basic: - shard-bmg: [SKIP][234] ([Intel XE#1499]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_vrr@negative-basic.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at kms_vrr@negative-basic.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: [ABORT][236] ([Intel XE#2625]) -> [PASS][237] +4 other tests pass [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html * igt at xe_exec_basic@multigpu-once-null-defer-bind: - shard-dg2-set2: [SKIP][238] ([Intel XE#1392]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_exec_basic@multigpu-once-null-defer-bind.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at xe_exec_basic@multigpu-once-null-defer-bind.html * igt at xe_exec_threads@threads-mixed-shared-vm-basic: - shard-dg2-set2: [SKIP][240] ([Intel XE#1130]) -> [PASS][241] +19 other tests pass [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_exec_threads@threads-mixed-shared-vm-basic.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/igt at xe_exec_threads@threads-mixed-shared-vm-basic.html * igt at xe_pm@s2idle-basic-exec: - shard-dg2-set2: [ABORT][242] ([Intel XE#1358]) -> [PASS][243] +1 other test pass [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_pm@s2idle-basic-exec.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at xe_pm@s2idle-basic-exec.html * igt at xe_pm@s3-d3hot-basic-exec: - shard-dg2-set2: [ABORT][244] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_pm@s3-d3hot-basic-exec.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/igt at xe_pm@s3-d3hot-basic-exec.html * igt at xe_vm@munmap-style-unbind-either-side-full: - shard-bmg: [SKIP][246] ([Intel XE#1130]) -> [PASS][247] +29 other tests pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_vm@munmap-style-unbind-either-side-full.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at xe_vm@munmap-style-unbind-either-side-full.html #### Warnings #### * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - 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_8184/shard-bmg-6/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-bmg: [SKIP][250] ([Intel XE#1124]) -> [SKIP][251] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-bmg: [SKIP][252] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][253] ([Intel XE#1124]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-6/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html - shard-dg2-set2: [SKIP][254] ([Intel XE#2136]) -> [SKIP][255] ([Intel XE#1124]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: [SKIP][256] ([Intel XE#3007]) -> [SKIP][257] ([Intel XE#2314] / [Intel XE#2894]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-4/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html - shard-dg2-set2: [SKIP][258] ([Intel XE#2423] / [i915#2575]) -> [SKIP][259] ([Intel XE#2191]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-432/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: [SKIP][260] ([Intel XE#367]) -> [SKIP][261] ([Intel XE#3007]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][262] ([Intel XE#2136]) -> [SKIP][263] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][264] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][265] ([Intel XE#2887]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][266] ([Intel XE#2887]) -> [SKIP][267] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][268] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][269] ([Intel XE#455] / [Intel XE#787]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: [SKIP][270] ([Intel XE#2423] / [i915#2575]) -> [SKIP][271] ([Intel XE#373]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-433/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html - shard-bmg: [SKIP][272] ([Intel XE#3007]) -> [SKIP][273] ([Intel XE#2252]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_chamelium_hpd@hdmi-hpd-fast: - shard-bmg: [SKIP][274] ([Intel XE#2252]) -> [SKIP][275] ([Intel XE#3007]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-fast.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_chamelium_hpd@hdmi-hpd-fast.html * igt at kms_content_protection@atomic-dpms: - shard-dg2-set2: [SKIP][276] ([Intel XE#2423] / [i915#2575]) -> [FAIL][277] ([Intel XE#1178]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_content_protection@atomic-dpms.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@legacy: - shard-bmg: [DMESG-FAIL][278] ([Intel XE#877]) -> [FAIL][279] ([Intel XE#1178]) +1 other test fail [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_content_protection@legacy.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at kms_content_protection@legacy.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: [SKIP][280] ([Intel XE#2423] / [i915#2575]) -> [SKIP][281] ([Intel XE#455]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_cursor_crc@cursor-random-max-size.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_cursor_crc@cursor-random-max-size.html - shard-bmg: [SKIP][282] ([Intel XE#3007]) -> [SKIP][283] ([Intel XE#2320]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_cursor_crc@cursor-random-max-size.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_flip@2x-blocking-wf_vblank: - shard-bmg: [SKIP][284] ([Intel XE#2316]) -> [FAIL][285] ([Intel XE#2882]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_flip@2x-blocking-wf_vblank.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-5/igt at kms_flip@2x-blocking-wf_vblank.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][286] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][287] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html - shard-dg2-set2: [SKIP][288] ([Intel XE#2136]) -> [SKIP][289] ([Intel XE#455]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/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-mmap-wc: - shard-dg2-set2: [SKIP][290] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][291] ([Intel XE#651]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][292] ([Intel XE#2311]) -> [SKIP][293] ([Intel XE#2312]) +8 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][294] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][295] ([Intel XE#2312]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html - shard-dg2-set2: [SKIP][296] ([Intel XE#2136]) -> [SKIP][297] ([Intel XE#651]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][298] ([Intel XE#2312]) -> [SKIP][299] ([Intel XE#2311]) +11 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][300] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][301] ([Intel XE#2333]) +3 other tests fail [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [FAIL][302] ([Intel XE#2333]) -> [SKIP][303] ([Intel XE#2312]) +6 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][304] ([Intel XE#2312]) -> [FAIL][305] ([Intel XE#2333]) +5 other tests fail [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][306] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][307] ([Intel XE#2311]) +3 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-render.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-bmg: [SKIP][308] ([Intel XE#2311]) -> [SKIP][309] ([Intel XE#2136] / [Intel XE#2231]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: [SKIP][310] ([Intel XE#2352]) -> [SKIP][311] ([Intel XE#2136] / [Intel XE#2231]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][312] ([Intel XE#2312]) -> [SKIP][313] ([Intel XE#2313]) +12 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][314] ([Intel XE#2312]) -> [SKIP][315] ([Intel XE#2136] / [Intel XE#2231]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][316] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][317] ([Intel XE#2313]) +2 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html - shard-dg2-set2: [SKIP][318] ([Intel XE#2136]) -> [SKIP][319] ([Intel XE#653]) +2 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-432/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][320] ([Intel XE#2313]) -> [SKIP][321] ([Intel XE#2312]) +9 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][322] ([Intel XE#2934]) -> [SKIP][323] ([Intel XE#2136] / [Intel XE#2231]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_joiner@basic-force-ultra-joiner.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][324] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][325] ([Intel XE#870]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_pm_backlight@fade-with-dpms.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-5/igt at kms_pm_backlight@fade-with-dpms.html - shard-dg2-set2: [SKIP][326] ([Intel XE#2136]) -> [SKIP][327] ([Intel XE#870]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_pm_backlight@fade-with-dpms.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][328] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][329] ([Intel XE#1489]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html - shard-dg2-set2: [SKIP][330] ([Intel XE#2136]) -> [SKIP][331] ([Intel XE#1489]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-433/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-psr-cursor-blt: - shard-bmg: [SKIP][332] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][333] ([Intel XE#2234] / [Intel XE#2850]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_psr@fbc-psr-cursor-blt.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at kms_psr@fbc-psr-cursor-blt.html - shard-dg2-set2: [SKIP][334] ([Intel XE#2136]) -> [SKIP][335] ([Intel XE#2850] / [Intel XE#929]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_psr@fbc-psr-cursor-blt.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/igt at kms_psr@fbc-psr-cursor-blt.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: [SKIP][336] ([Intel XE#2423] / [i915#2575]) -> [SKIP][337] ([Intel XE#3414]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_rotation_crc@sprite-rotation-270.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at kms_rotation_crc@sprite-rotation-270.html - shard-bmg: [SKIP][338] ([Intel XE#3007]) -> [SKIP][339] ([Intel XE#3414] / [Intel XE#3904]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_rotation_crc@sprite-rotation-270.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-4/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][340] ([Intel XE#362]) -> [SKIP][341] ([Intel XE#1500]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][342] ([Intel XE#1130]) -> [SKIP][343] ([Intel XE#1126]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0x3fff.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0x3fff.html * igt at xe_eudebug_online@pagefault-write: - shard-bmg: [SKIP][344] ([Intel XE#1130]) -> [SKIP][345] ([Intel XE#2905]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_eudebug_online@pagefault-write.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at xe_eudebug_online@pagefault-write.html - shard-dg2-set2: [SKIP][346] ([Intel XE#1130]) -> [SKIP][347] ([Intel XE#2905]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_eudebug_online@pagefault-write.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at xe_eudebug_online@pagefault-write.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [TIMEOUT][348] ([Intel XE#1473]) -> [INCOMPLETE][349] ([Intel XE#1473]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at xe_evict@evict-beng-mixed-many-threads-small.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-6/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [TIMEOUT][350] ([Intel XE#1473]) -> [FAIL][351] ([Intel XE#1000]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at xe_evict@evict-beng-threads-large.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-bmg: [SKIP][352] ([Intel XE#1130]) -> [INCOMPLETE][353] ([Intel XE#1473]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_evict@evict-mixed-many-threads-large.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-6/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [INCOMPLETE][354] ([Intel XE#1473]) -> [TIMEOUT][355] ([Intel XE#1473] / [Intel XE#2472]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at xe_evict@evict-mixed-threads-large.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-5/igt at xe_evict@evict-mixed-threads-large.html * igt at xe_evict@evict-threads-large: - shard-bmg: [FAIL][356] ([Intel XE#1000]) -> [INCOMPLETE][357] ([Intel XE#1473]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at xe_evict@evict-threads-large.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race: - shard-bmg: [SKIP][358] ([Intel XE#1130]) -> [SKIP][359] ([Intel XE#2322]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-5/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_fault_mode@many-userptr-rebind-imm: - shard-dg2-set2: [SKIP][360] ([Intel XE#1130]) -> [SKIP][361] ([Intel XE#288]) +4 other tests skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_exec_fault_mode@many-userptr-rebind-imm.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at xe_exec_fault_mode@many-userptr-rebind-imm.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [SKIP][362] ([Intel XE#1192]) -> [FAIL][363] ([Intel XE#3099]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at xe_live_ktest@xe_bo.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][364] ([Intel XE#1192]) -> [SKIP][365] ([Intel XE#2833]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-4/igt at xe_live_ktest@xe_eudebug.html * igt at xe_oa@stress-open-close: - shard-dg2-set2: [SKIP][366] ([Intel XE#1130]) -> [SKIP][367] ([Intel XE#2541] / [Intel XE#3573]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_oa@stress-open-close.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-464/igt at xe_oa@stress-open-close.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][368] ([Intel XE#2245]) -> [SKIP][369] ([Intel XE#1130]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_pat@pat-index-xelp.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at xe_pat@pat-index-xelp.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#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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#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#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#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [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#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#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#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [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#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [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#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [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#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [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#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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#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#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#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_8184 -> IGTPW_12419 * Linux: xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c -> xe-2463-424f495e9572bf87a42e3be0aa02ac4777541033 IGTPW_12419: 0f0904e71a31e60759ac032b5c424588e435a746 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8184: ee7a3ac616f55f6ed1b959ff951237099bda86d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c: c9da975358cd0763449f08b7063ee935eace4f8c xe-2463-424f495e9572bf87a42e3be0aa02ac4777541033: 424f495e9572bf87a42e3be0aa02ac4777541033 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sun Jan 12 05:42:26 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sun, 12 Jan 2025 05:42:26 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/kms=5Fdp=5Flin?= =?utf-8?q?ktrain=5Ffallback=3A_Reduce_debug_loglevel_dynamically?= In-Reply-To: <20250109170729.47646-1-pranay.samala@intel.com> References: <20250109170729.47646-1-pranay.samala@intel.com> Message-ID: <173666054634.2784815.10356973127980960452@b555e5b46a47> == Series Details == Series: tests/intel/kms_dp_linktrain_fallback: Reduce debug loglevel dynamically URL : https://patchwork.freedesktop.org/series/143342/ State : failure == Summary == CI Bug Log - changes from XEIGT_8184_full -> XEIGTPW_12420_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12420_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12420_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_12420_full: ### IGT changes ### #### Possible regressions #### * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-d-hdmi-a-3: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-d-hdmi-a-3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-d-hdmi-a-3.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_pm_rpm@basic-pci-d3-state.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system: - shard-lnl: [PASS][5] -> [FAIL][6] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-1/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-7/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system.html * igt at xe_fault_injection@inject-fault-probe-function-xe_pm_init_early: - shard-bmg: [PASS][7] -> [DMESG-WARN][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html #### Warnings #### * igt at xe_mmap@pci-membarrier-bad-object: - shard-bmg: [SKIP][9] ([Intel XE#1130]) -> [SKIP][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_mmap@pci-membarrier-bad-object.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-1/igt at xe_mmap@pci-membarrier-bad-object.html - shard-dg2-set2: [SKIP][11] ([Intel XE#1130]) -> [SKIP][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_mmap@pci-membarrier-bad-object.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/igt at xe_mmap@pci-membarrier-bad-object.html Known issues ------------ Here are the changes found in XEIGTPW_12420_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_addfb_basic@bad-pitch-63: - shard-bmg: [PASS][13] -> [SKIP][14] ([Intel XE#3007]) +15 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_addfb_basic@bad-pitch-63.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_addfb_basic@bad-pitch-63.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [PASS][15] -> [FAIL][16] ([Intel XE#3719]) +3 other tests fail [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-4/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * 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][17] ([Intel XE#2550]) +23 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: [PASS][18] -> [FAIL][19] ([Intel XE#3908]) +1 other test fail [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-4/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-5/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1407]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-2/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2327]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#316]) +6 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [PASS][25] -> [SKIP][26] ([Intel XE#2136]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@y-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#2136] / [Intel XE#2351]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#619]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#607]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +10 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +4 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-5/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2314] / [Intel XE#2894]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#2191]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#367]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-4-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1512]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-3/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#367]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-4/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][39] -> [SKIP][40] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2887]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-1/igt at kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][42] -> [INCOMPLETE][43] ([Intel XE#3862]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#3442]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#3432]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-8/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#787]) +181 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/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 at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][48] ([Intel XE#3124]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][49] ([Intel XE#1727]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/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-4-tiled-mtl-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#455] / [Intel XE#787]) +43 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2887]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-2/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#314]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-75: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#306]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at kms_chamelium_color@ctm-0-75.html * igt at kms_chamelium_color@ctm-limited-range: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#306]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-6/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2252]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#373]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-7/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#373]) +12 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][58] ([Intel XE#1178]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_content_protection@atomic-dpms at pipe-a-dp-2.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#307]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#307]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-3/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][61] ([Intel XE#3304]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/igt at kms_content_protection@lic-type-0 at pipe-a-dp-4.html * igt at kms_content_protection@lic-type-1: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#3278]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-3/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][63] ([Intel XE#1178]) +3 other tests fail [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][64] ([Intel XE#1188]) +1 other test fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2321]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-8/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-64x64: - shard-dg2-set2: [PASS][66] -> [SKIP][67] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_cursor_crc@cursor-onscreen-64x64.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_cursor_crc@cursor-onscreen-64x64.html * igt at kms_cursor_crc@cursor-random-64x21: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2320]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_cursor_crc@cursor-random-64x21.html * igt at kms_cursor_crc@cursor-rapid-movement-128x42: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1424]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-2/igt at kms_cursor_crc@cursor-rapid-movement-128x42.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#2321]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-5/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#309]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-6/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [PASS][72] -> [SKIP][73] ([Intel XE#2291]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#2423] / [i915#2575]) +6 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#323]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2374]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1135]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][78] -> [FAIL][79] ([Intel XE#301]) +3 other tests fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/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 bc-dp2-hdmi-a3: - shard-bmg: [PASS][80] -> [FAIL][81] ([Intel XE#2882]) +1 other test fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1421]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-8/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][83] -> [SKIP][84] ([Intel XE#2316]) +8 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-5/igt at kms_flip@2x-plain-flip-fb-recreate.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][85] -> [FAIL][86] ([Intel XE#2882] / [Intel XE#3288]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2: - shard-bmg: [PASS][87] -> [FAIL][88] ([Intel XE#3288] / [Intel XE#3321]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][89] ([Intel XE#3321]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][90] ([Intel XE#301]) +2 other tests fail [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank at c-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][91] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a3: - shard-bmg: [PASS][92] -> [FAIL][93] ([Intel XE#3321]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a3.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [PASS][94] -> [INCOMPLETE][95] ([Intel XE#2597]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible.html - shard-dg2-set2: [PASS][96] -> [INCOMPLETE][97] ([Intel XE#2049] / [Intel XE#2597]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at kms_flip@flip-vs-suspend-interruptible.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp4: - shard-dg2-set2: [PASS][98] -> [INCOMPLETE][99] ([Intel XE#2049]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html * igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3: - shard-bmg: [PASS][100] -> [INCOMPLETE][101] ([Intel XE#2597] / [Intel XE#2635]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1397] / [Intel XE#1745]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1397]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2293]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-4/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1401] / [Intel XE#1745]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-2/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1401]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-2/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode.html * igt at kms_force_connector_basic@force-connector-state: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#352]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-5/igt at kms_force_connector_basic@force-connector-state.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2311]) +6 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2312]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#651]) +38 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-slowdraw: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#651]) +6 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-2/igt at kms_frontbuffer_tracking@drrs-slowdraw.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2136]) +6 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#653]) +41 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2313]) +7 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#656]) +15 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-5/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_histogram@global-color: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#3898]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-1/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#346]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-8/igt at kms_joiner@basic-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#346]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_joiner@basic-big-joiner.html - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#346]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-7/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2927]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#356]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][123] ([Intel XE#616]) +4 other tests fail [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#2493]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-7/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][125] -> [FAIL][126] ([Intel XE#361]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2763]) +4 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/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][128] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/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][129] ([Intel XE#2763]) +5 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#870]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2938]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][132] ([Intel XE#1430]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-4/igt at kms_pm_dc@dc6-psr.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#1489]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-4/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1489]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#2893]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-2/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#1122]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1128]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-1/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-4/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@pr-suspend: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1406]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-5/igt at kms_psr@pr-suspend.html * igt at kms_psr@psr2-basic: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2850] / [Intel XE#929]) +19 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at kms_psr@psr2-basic.html * igt at kms_rotation_crc@bad-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#3414]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#3414] / [Intel XE#3904]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-1/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-none: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2413]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_scaling_modes@scaling-mode-none.html - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#2413] / [Intel XE#374]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-6/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#374]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-6/igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1.html * igt at kms_sequence@queue-idle: - shard-bmg: [PASS][146] -> [DMESG-WARN][147] ([Intel XE#877]) +1 other test dmesg-warn [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_sequence@queue-idle.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-1/igt at kms_sequence@queue-idle.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1435]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-1/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#362]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#362]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-4/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@flip-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#455]) +21 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_vrr@flip-dpms.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#756]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-4/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#756]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at kms_writeback@writeback-invalid-parameters.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1091] / [Intel XE#2849]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#1091] / [Intel XE#2849]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-6/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_copy_basic@mem-copy-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#1123]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at xe_copy_basic@mem-copy-linear-0xfd.html * igt at xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#2905]) +16 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at xe_eudebug@basic-close.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2905]) +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#3889]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-2/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#3889]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@discovery-empty-clients: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#2905]) +4 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-7/igt at xe_eudebug@discovery-empty-clients.html * igt at xe_evict@evict-beng-cm-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#688]) +4 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-6/igt at xe_evict@evict-beng-cm-threads-large-multi-vm.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][163] ([Intel XE#1473]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][164] -> [TIMEOUT][165] ([Intel XE#1473] / [Intel XE#402]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at xe_evict@evict-beng-mixed-many-threads-small.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#1130]) +11 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd.html * igt at xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [PASS][167] -> [SKIP][168] ([Intel XE#1130]) +20 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at xe_exec_basic@many-bindexecqueue-rebind.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at xe_exec_basic@many-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-no-exec-basic: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2322]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at xe_exec_basic@multigpu-no-exec-basic.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#1392]) +5 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-7/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt at xe_exec_basic@no-exec-userptr-invalidate: - shard-dg2-set2: [PASS][171] -> [SKIP][172] ([Intel XE#1130]) +11 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at xe_exec_basic@no-exec-userptr-invalidate.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at xe_exec_basic@no-exec-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#288]) +26 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#255]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/igt at xe_huc_copy@huc_copy.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#2229]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][176] ([Intel XE#1999]) +2 other tests fail [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#1416]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-5/igt at xe_mmap@vram.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#378]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/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][179] ([Intel XE#2541] / [Intel XE#3573]) +11 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#2248]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#2248]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-1/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#979]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at xe_pat@pat-index-xelpg.html * igt at xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][183] ([Intel XE#2284] / [Intel XE#366]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/igt at xe_pm@d3cold-basic-exec.html * igt at xe_pm@d3cold-multiple-execs: - shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#2284] / [Intel XE#366]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-7/igt at xe_pm@d3cold-multiple-execs.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#579]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at xe_pm@vram-d3cold-threshold.html - shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#579]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-4/igt at xe_pm@vram-d3cold-threshold.html - shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#579]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#944]) +3 other tests skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-guc.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#944]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-7/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_vm@bind-once: - shard-bmg: NOTRUN -> [SKIP][190] ([Intel XE#1130]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at xe_vm@bind-once.html #### Possible fixes #### * igt at kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][191] ([Intel XE#3007]) -> [PASS][192] +13 other tests pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_addfb_basic@bad-pitch-999.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_addfb_basic@bad-pitch-999.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [FAIL][193] ([Intel XE#911]) -> [PASS][194] +3 other tests pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-1/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1: - shard-lnl: [FAIL][195] ([Intel XE#3908]) -> [PASS][196] +1 other test pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-lnl-6/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][197] ([Intel XE#2136]) -> [PASS][198] +2 other tests pass [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_big_fb@4-tiled-addfb-size-overflow.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@x-tiled-8bpp-rotate-180: - shard-dg2-set2: [SKIP][199] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][200] +2 other tests pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_big_fb@x-tiled-8bpp-rotate-180.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/igt at kms_big_fb@x-tiled-8bpp-rotate-180.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [SKIP][201] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][202] +4 other tests pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-8/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][203] -> [PASS][204] +1 other test pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][205] ([Intel XE#1727] / [Intel XE#2705]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/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-b-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][207] ([Intel XE#2705]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-6.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4: - shard-dg2-set2: [DMESG-WARN][209] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][211] ([Intel XE#3124]) -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html * igt at kms_cursor_crc@cursor-random-64x21 at pipe-d-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][213] -> [PASS][214] +3 other tests pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at kms_cursor_crc@cursor-random-64x21 at pipe-d-hdmi-a-6.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/igt at kms_cursor_crc@cursor-random-64x21 at pipe-d-hdmi-a-6.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-set2: [SKIP][215] ([Intel XE#2423] / [i915#2575]) -> [PASS][216] +12 other tests pass [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][217] ([Intel XE#2291]) -> [PASS][218] +2 other tests pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][219] ([Intel XE#3321]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/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 bc-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][221] ([Intel XE#301]) -> [PASS][222] +1 other test pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a6-dp4.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-dp2-hdmi-a3: - shard-bmg: [FAIL][223] ([Intel XE#3288] / [Intel XE#3321]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-dp2-hdmi-a3.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/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: [FAIL][225] ([Intel XE#3321]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [SKIP][227] ([Intel XE#2316]) -> [PASS][228] +7 other tests pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-8/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [SKIP][229] ([Intel XE#1503]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_hdr@invalid-hdr.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][231] ([Intel XE#3012]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-4/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_vrr@negative-basic: - shard-bmg: [SKIP][233] ([Intel XE#1499]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_vrr@negative-basic.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-8/igt at kms_vrr@negative-basic.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: [ABORT][235] ([Intel XE#2625]) -> [PASS][236] +2 other tests pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html * igt at xe_exec_basic@many-execqueues-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [SKIP][237] ([Intel XE#1130]) -> [PASS][238] +23 other tests pass [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_exec_basic@many-execqueues-bindexecqueue-userptr-invalidate.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at xe_exec_basic@many-execqueues-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-null-defer-bind: - shard-dg2-set2: [SKIP][239] ([Intel XE#1392]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_exec_basic@multigpu-once-null-defer-bind.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at xe_exec_basic@multigpu-once-null-defer-bind.html * igt at xe_pm@s2idle-basic-exec: - shard-dg2-set2: [ABORT][241] ([Intel XE#1358]) -> [PASS][242] +1 other test pass [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_pm@s2idle-basic-exec.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at xe_pm@s2idle-basic-exec.html * igt at xe_pm@s3-d3hot-basic-exec: - shard-dg2-set2: [ABORT][243] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_pm@s3-d3hot-basic-exec.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at xe_pm@s3-d3hot-basic-exec.html * igt at xe_vm@munmap-style-unbind-either-side-full: - shard-bmg: [SKIP][245] ([Intel XE#1130]) -> [PASS][246] +30 other tests pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_vm@munmap-style-unbind-either-side-full.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at xe_vm@munmap-style-unbind-either-side-full.html #### Warnings #### * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][247] ([Intel XE#2385]) -> [SKIP][248] ([Intel XE#3007]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][249] ([Intel XE#1124]) -> [SKIP][250] ([Intel XE#2136]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-bmg: [SKIP][251] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][252] ([Intel XE#1124]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html - shard-dg2-set2: [SKIP][253] ([Intel XE#2136]) -> [SKIP][254] ([Intel XE#1124]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [SKIP][255] ([Intel XE#1124]) -> [SKIP][256] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html - shard-dg2-set2: [SKIP][257] ([Intel XE#1124]) -> [SKIP][258] ([Intel XE#2136] / [Intel XE#2351]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: [SKIP][259] ([Intel XE#3007]) -> [SKIP][260] ([Intel XE#2314] / [Intel XE#2894]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html - shard-dg2-set2: [SKIP][261] ([Intel XE#2423] / [i915#2575]) -> [SKIP][262] ([Intel XE#2191]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-bmg: [SKIP][263] ([Intel XE#2887]) -> [SKIP][264] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html - shard-dg2-set2: [SKIP][265] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][266] ([Intel XE#2136]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][267] ([Intel XE#2136]) -> [SKIP][268] ([Intel XE#455] / [Intel XE#787]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][269] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][270] ([Intel XE#2887]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-bmg: [SKIP][271] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][272] ([Intel XE#2136] / [Intel XE#2231]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-dg2-set2: [SKIP][273] ([Intel XE#3442]) -> [SKIP][274] ([Intel XE#2136]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][275] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][276] ([Intel XE#455] / [Intel XE#787]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: [SKIP][277] ([Intel XE#2423] / [i915#2575]) -> [SKIP][278] ([Intel XE#373]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html - shard-bmg: [SKIP][279] ([Intel XE#3007]) -> [SKIP][280] ([Intel XE#2252]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][281] ([Intel XE#2252]) -> [SKIP][282] ([Intel XE#3007]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_chamelium_hpd@common-hpd-after-suspend.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_chamelium_hpd@common-hpd-after-suspend.html - shard-dg2-set2: [SKIP][283] ([Intel XE#373]) -> [SKIP][284] ([Intel XE#2423] / [i915#2575]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at kms_chamelium_hpd@common-hpd-after-suspend.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_content_protection@atomic-dpms: - shard-dg2-set2: [SKIP][285] ([Intel XE#2423] / [i915#2575]) -> [FAIL][286] ([Intel XE#1178]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_content_protection@atomic-dpms.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/igt at kms_content_protection@atomic-dpms.html - shard-bmg: [SKIP][287] ([Intel XE#3007]) -> [FAIL][288] ([Intel XE#1178]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_content_protection@atomic-dpms.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@legacy: - shard-bmg: [DMESG-FAIL][289] ([Intel XE#877]) -> [FAIL][290] ([Intel XE#1178]) +1 other test fail [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_content_protection@legacy.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-8/igt at kms_content_protection@legacy.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][291] ([Intel XE#2341]) -> [SKIP][292] ([Intel XE#3007]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_content_protection@mei-interface.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-bmg: [FAIL][293] ([Intel XE#1178]) -> [SKIP][294] ([Intel XE#2341]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_content_protection@srm.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_content_protection@srm.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-bmg: [SKIP][295] ([Intel XE#3007]) -> [SKIP][296] ([Intel XE#2320]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_cursor_crc@cursor-random-max-size.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-sliding-32x32: - shard-dg2-set2: [SKIP][297] ([Intel XE#455]) -> [SKIP][298] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at kms_cursor_crc@cursor-sliding-32x32.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_cursor_crc@cursor-sliding-32x32.html - shard-bmg: [SKIP][299] ([Intel XE#2320]) -> [SKIP][300] ([Intel XE#3007]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_cursor_crc@cursor-sliding-32x32.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_cursor_crc@cursor-sliding-32x32.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][301] ([Intel XE#323]) -> [SKIP][302] ([Intel XE#2423] / [i915#2575]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-bmg: [SKIP][303] ([Intel XE#2286]) -> [SKIP][304] ([Intel XE#3007]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][305] ([Intel XE#877]) -> [SKIP][306] ([Intel XE#2291]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-bmg: [FAIL][307] ([Intel XE#2882]) -> [SKIP][308] ([Intel XE#2316]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][309] ([Intel XE#2049] / [Intel XE#2597]) -> [SKIP][310] ([Intel XE#2423] / [i915#2575]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_flip@flip-vs-suspend.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][311] ([Intel XE#2380]) -> [SKIP][312] ([Intel XE#2136] / [Intel XE#2231]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][313] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][314] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html - shard-dg2-set2: [SKIP][315] ([Intel XE#2136]) -> [SKIP][316] ([Intel XE#455]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/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-mmap-wc: - shard-dg2-set2: [SKIP][317] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][318] ([Intel XE#651]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][319] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][320] ([Intel XE#2311]) +4 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html - shard-dg2-set2: [SKIP][321] ([Intel XE#2136]) -> [SKIP][322] ([Intel XE#651]) +2 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][323] ([Intel XE#2312]) -> [SKIP][324] ([Intel XE#2311]) +9 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - 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_8184/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][327] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][328] ([Intel XE#2333]) +3 other tests fail [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [FAIL][329] ([Intel XE#2333]) -> [SKIP][330] ([Intel XE#2312]) +6 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][331] ([Intel XE#2312]) -> [FAIL][332] ([Intel XE#2333]) +5 other tests fail [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][333] ([Intel XE#2311]) -> [SKIP][334] ([Intel XE#2312]) +9 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear: - shard-bmg: [SKIP][335] ([Intel XE#2311]) -> [SKIP][336] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html - shard-dg2-set2: [SKIP][337] ([Intel XE#651]) -> [SKIP][338] ([Intel XE#2136]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-dg2-set2: [SKIP][339] ([Intel XE#653]) -> [SKIP][340] ([Intel XE#2136]) +3 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][341] ([Intel XE#2312]) -> [SKIP][342] ([Intel XE#2313]) +11 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][343] ([Intel XE#2312]) -> [SKIP][344] ([Intel XE#2136] / [Intel XE#2231]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][345] ([Intel XE#2313]) -> [SKIP][346] ([Intel XE#2312]) +12 other tests skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][347] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][348] ([Intel XE#2313]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html - shard-dg2-set2: [SKIP][349] ([Intel XE#2136]) -> [SKIP][350] ([Intel XE#653]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-rte: - shard-bmg: [SKIP][351] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][352] ([Intel XE#2312]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-rte.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-rte.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move: - shard-bmg: [SKIP][353] ([Intel XE#2313]) -> [SKIP][354] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][355] ([Intel XE#3544]) -> [SKIP][356] ([Intel XE#3374] / [Intel XE#3544]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-4/igt at kms_hdr@brightness-with-hdr.html * igt at kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][357] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][358] ([Intel XE#870]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_pm_backlight@fade-with-dpms.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-4/igt at kms_pm_backlight@fade-with-dpms.html - shard-dg2-set2: [SKIP][359] ([Intel XE#2136]) -> [SKIP][360] ([Intel XE#870]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_pm_backlight@fade-with-dpms.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][361] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][362] ([Intel XE#1489]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html - shard-dg2-set2: [SKIP][363] ([Intel XE#2136]) -> [SKIP][364] ([Intel XE#1489]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-bmg: [SKIP][365] ([Intel XE#1489]) -> [SKIP][366] ([Intel XE#2136] / [Intel XE#2231]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_psr2_sf@psr2-plane-move-sf-dmg-area.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt at kms_psr@fbc-psr-cursor-blt: - shard-bmg: [SKIP][367] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][368] ([Intel XE#2234] / [Intel XE#2850]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_psr@fbc-psr-cursor-blt.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-8/igt at kms_psr@fbc-psr-cursor-blt.html - shard-dg2-set2: [SKIP][369] ([Intel XE#2136]) -> [SKIP][370] ([Intel XE#2850] / [Intel XE#929]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_psr@fbc-psr-cursor-blt.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/igt at kms_psr@fbc-psr-cursor-blt.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-dg2-set2: [SKIP][371] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][372] ([Intel XE#2136] / [Intel XE#2351]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at kms_psr@fbc-psr2-cursor-blt.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_psr@psr-basic: - shard-bmg: [SKIP][373] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][374] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_psr@psr-basic.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at kms_psr@psr-basic.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: [SKIP][375] ([Intel XE#2423] / [i915#2575]) -> [SKIP][376] ([Intel XE#3414]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_rotation_crc@sprite-rotation-270.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at kms_rotation_crc@sprite-rotation-270.html - shard-bmg: [SKIP][377] ([Intel XE#3007]) -> [SKIP][378] ([Intel XE#3414] / [Intel XE#3904]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_rotation_crc@sprite-rotation-270.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][379] ([Intel XE#2426]) -> [SKIP][380] ([Intel XE#2509]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-5/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2-set2: [SKIP][381] ([Intel XE#362]) -> [SKIP][382] ([Intel XE#1500]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-464/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][383] ([Intel XE#1130]) -> [SKIP][384] ([Intel XE#1126]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0x3fff.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0x3fff.html * igt at xe_eudebug_online@pagefault-write: - shard-bmg: [SKIP][385] ([Intel XE#1130]) -> [SKIP][386] ([Intel XE#2905]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_eudebug_online@pagefault-write.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at xe_eudebug_online@pagefault-write.html - shard-dg2-set2: [SKIP][387] ([Intel XE#1130]) -> [SKIP][388] ([Intel XE#2905]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_eudebug_online@pagefault-write.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at xe_eudebug_online@pagefault-write.html * igt at xe_eudebug_online@preempt-breakpoint: - shard-dg2-set2: [SKIP][389] ([Intel XE#2905]) -> [SKIP][390] ([Intel XE#1130]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at xe_eudebug_online@preempt-breakpoint.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at xe_eudebug_online@preempt-breakpoint.html - shard-bmg: [SKIP][391] ([Intel XE#2905]) -> [SKIP][392] ([Intel XE#1130]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at xe_eudebug_online@preempt-breakpoint.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at xe_eudebug_online@preempt-breakpoint.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [TIMEOUT][393] ([Intel XE#1473]) -> [INCOMPLETE][394] ([Intel XE#1473]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at xe_evict@evict-beng-mixed-many-threads-small.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-6/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [INCOMPLETE][395] ([Intel XE#1473]) -> [FAIL][396] ([Intel XE#1000]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at xe_evict@evict-beng-mixed-threads-large.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-2/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [TIMEOUT][397] ([Intel XE#1473]) -> [FAIL][398] ([Intel XE#1000]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at xe_evict@evict-beng-threads-large.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-1/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-bmg: [SKIP][399] ([Intel XE#1130]) -> [TIMEOUT][400] ([Intel XE#1473]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_evict@evict-mixed-many-threads-large.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-1/igt at xe_evict@evict-mixed-many-threads-large.html - shard-dg2-set2: [SKIP][401] ([Intel XE#1130]) -> [TIMEOUT][402] ([Intel XE#1473]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-large.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-433/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [INCOMPLETE][403] ([Intel XE#1473]) -> [TIMEOUT][404] ([Intel XE#1473] / [Intel XE#2472]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at xe_evict@evict-mixed-threads-large.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-8/igt at xe_evict@evict-mixed-threads-large.html * igt at xe_evict@evict-threads-large: - shard-bmg: [FAIL][405] ([Intel XE#1000]) -> [TIMEOUT][406] ([Intel XE#1473] / [Intel XE#2472]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at xe_evict@evict-threads-large.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-1/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind: - shard-bmg: [SKIP][407] ([Intel XE#2322]) -> [SKIP][408] ([Intel XE#1130]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race: - shard-bmg: [SKIP][409] ([Intel XE#1130]) -> [SKIP][410] ([Intel XE#2322]) +1 other test skip [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-4/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_fault_mode@many-execqueues-userptr-imm: - shard-dg2-set2: [SKIP][411] ([Intel XE#288]) -> [SKIP][412] ([Intel XE#1130]) +1 other test skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at xe_exec_fault_mode@many-execqueues-userptr-imm.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at xe_exec_fault_mode@many-execqueues-userptr-imm.html * igt at xe_exec_fault_mode@many-userptr-rebind-imm: - shard-dg2-set2: [SKIP][413] ([Intel XE#1130]) -> [SKIP][414] ([Intel XE#288]) +3 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_exec_fault_mode@many-userptr-rebind-imm.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-463/igt at xe_exec_fault_mode@many-userptr-rebind-imm.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][415] ([Intel XE#1192]) -> [SKIP][416] ([Intel XE#2833]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-1/igt at xe_live_ktest@xe_eudebug.html * igt at xe_oa@invalid-create-userspace-config: - shard-dg2-set2: [SKIP][417] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][418] ([Intel XE#1130]) +1 other test skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at xe_oa@invalid-create-userspace-config.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at xe_oa@invalid-create-userspace-config.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][419] ([Intel XE#3342]) -> [SKIP][420] ([Intel XE#1130]) [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at xe_sriov_flr@flr-vf1-clear.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-dg2-436/igt at xe_sriov_flr@flr-vf1-clear.html - shard-bmg: [SKIP][421] ([Intel XE#3342]) -> [SKIP][422] ([Intel XE#1130]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at xe_sriov_flr@flr-vf1-clear.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/shard-bmg-5/igt at xe_sriov_flr@flr-vf1-clear.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#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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#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#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#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [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#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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [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#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [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#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [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#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [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#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [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#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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [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#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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [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#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#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#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [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#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_8184 -> IGTPW_12420 * Linux: xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c -> xe-2463-424f495e9572bf87a42e3be0aa02ac4777541033 IGTPW_12420: a8fe7fb5d072b53d480730eb01c1bf72f6783988 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8184: ee7a3ac616f55f6ed1b959ff951237099bda86d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c: c9da975358cd0763449f08b7063ee935eace4f8c xe-2463-424f495e9572bf87a42e3be0aa02ac4777541033: 424f495e9572bf87a42e3be0aa02ac4777541033 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12420/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sun Jan 12 07:45:18 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sun, 12 Jan 2025 07:45:18 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fvm=3A_F?= =?utf-8?q?ixed_documentation_=28rev2=29?= In-Reply-To: <20250109090044.913444-1-pravalika.gurram@intel.com> References: <20250109090044.913444-1-pravalika.gurram@intel.com> Message-ID: <173666791842.2811904.17029985292773063507@b555e5b46a47> == Series Details == Series: tests/intel/xe_vm: Fixed documentation (rev2) URL : https://patchwork.freedesktop.org/series/143310/ State : failure == Summary == CI Bug Log - changes from IGT_8183_full -> IGTPW_12416_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12416_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12416_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_12416/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12416_full: ### IGT changes ### #### Possible regressions #### * igt at debugfs_test@read_all_entries_display_on: - shard-mtlp: [PASS][1] -> [ABORT][2] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-7/igt at debugfs_test@read_all_entries_display_on.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-6/igt at debugfs_test@read_all_entries_display_on.html Known issues ------------ Here are the changes found in IGTPW_12416_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-4/igt at api_intel_bb@object-reloc-purge-cache.html * igt at drm_fdinfo@busy-check-all at bcs0: - shard-dg1: NOTRUN -> [SKIP][4] ([i915#8414]) +7 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at drm_fdinfo@busy-check-all at bcs0.html * igt at drm_fdinfo@busy-check-all at ccs0: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +6 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-7/igt at drm_fdinfo@busy-check-all at ccs0.html * igt at drm_fdinfo@busy-idle-check-all: - shard-rkl: [PASS][6] -> [DMESG-WARN][7] ([i915#12964]) +18 other tests dmesg-warn [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-2/igt at drm_fdinfo@busy-idle-check-all.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-5/igt at drm_fdinfo@busy-idle-check-all.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +25 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-8/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#3281]) +12 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-4/igt at gem_bad_reloc@negative-reloc-lut.html * igt at gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-9/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-5/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#7697]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-3/igt at gem_close_race@multigpu-basic-process.html * igt at gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-2/igt at gem_close_race@multigpu-basic-threads.html - shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#7697]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#8562]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-4/igt at gem_create@create-ext-set-pat.html - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8562]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-17/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-8/igt at gem_ctx_persistence@hang.html * igt at gem_ctx_persistence@heartbeat-hang: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-13/igt at gem_ctx_persistence@heartbeat-hang.html * igt at gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) +4 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-snb2/igt at gem_ctx_persistence@legacy-engines-queued.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-17/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-5/igt at gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-4/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@hibernate: - shard-rkl: NOTRUN -> [ABORT][24] ([i915#7975] / [i915#8213]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-7/igt at gem_eio@hibernate.html * igt at gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][25] ([i915#8898]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-snb5/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@full: - shard-dg2: [PASS][26] -> [FAIL][27] ([i915#13364]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-1/igt at gem_exec_balancer@full.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-5/igt at gem_exec_balancer@full.html - shard-dg1: [PASS][28] -> [FAIL][29] ([i915#13364]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg1-12/igt at gem_exec_balancer@full.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at gem_exec_balancer@full.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4036]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-18/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#4525]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at gem_exec_balancer@parallel.html * igt at gem_exec_balancer@parallel-keep-in-fence: - shard-tglu: NOTRUN -> [SKIP][32] ([i915#4525]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-7/igt at gem_exec_balancer@parallel-keep-in-fence.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-3/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4812]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-3/igt at gem_exec_balancer@sliced.html * igt at gem_exec_capture@capture-recoverable: - shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#6344]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at gem_exec_capture@capture-recoverable.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][36] ([i915#11965]) +4 other tests fail [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-3/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_fence@syncobj-backward-timeline-chain-engines: - shard-snb: NOTRUN -> [SKIP][37] +445 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-snb2/igt at gem_exec_fence@syncobj-backward-timeline-chain-engines.html * igt at gem_exec_flush@basic-batch-kernel-default-cmd: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3711]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-1/igt at gem_exec_flush@basic-batch-kernel-default-cmd.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-7/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-7/igt at gem_exec_flush@basic-wb-pro-default.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3281]) +16 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-7/igt at gem_exec_reloc@basic-gtt.html * igt at gem_exec_reloc@basic-gtt-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) +7 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at gem_exec_reloc@basic-gtt-read-noreloc.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-5/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-4/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_schedule@reorder-wide: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4812]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-17/igt at gem_exec_schedule@reorder-wide.html * igt at gem_fence_thrash@bo-write-verify-none: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-1/igt at gem_fence_thrash@bo-write-verify-none.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4860]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at gem_fence_thrash@bo-write-verify-x.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-4/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-tglu: NOTRUN -> [SKIP][50] ([i915#4613]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-7/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-3/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][52] ([i915#4613]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk9/igt at gem_lmem_swapping@random-engines.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at gem_lmem_swapping@verify-random-ccs.html - shard-dg1: NOTRUN -> [SKIP][54] ([i915#12193]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-13/igt at gem_lmem_swapping@verify-random-ccs.html - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-5/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_lmem_swapping@verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4565]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-13/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3282]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-6/igt at gem_madvise@dontneed-before-exec.html * igt at gem_mmap_gtt@basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4077]) +14 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at gem_mmap_gtt@basic-small-copy.html * igt at gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4083]) +9 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-1/igt at gem_mmap_wc@bad-size.html * igt at gem_mmap_wc@read-write: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-1/igt at gem_mmap_wc@read-write.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4083]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-17/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-13/igt at gem_partial_pwrite_pread@reads-snoop.html * igt at gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#3282]) +9 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-11/igt at gem_partial_pwrite_pread@write.html - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-3/igt at gem_partial_pwrite_pread@write.html * igt at gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][65] ([i915#2658]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-snb2/igt at gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][66] ([i915#2658]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk8/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@create-valid-protected-context: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-3/igt at gem_pxp@create-valid-protected-context.html - shard-rkl: NOTRUN -> [TIMEOUT][68] ([i915#12964]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-2/igt at gem_pxp@create-valid-protected-context.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#13398]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-3/igt at gem_pxp@hw-rejects-pxp-context.html - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#13398]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-2/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-2/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: NOTRUN -> [TIMEOUT][72] ([i915#12917] / [i915#12964]) +2 other tests timeout [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-7/igt at gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4270]) +4 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-14/igt at gem_pxp@verify-pxp-stale-ctx-execution.html * igt at gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-7/igt at gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#5190] / [i915#8428]) +12 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-3/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4079]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-11/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][77] ([i915#8411]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-1/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4079]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-4/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4885]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-18/igt at gem_softpin@evict-snoop.html * igt at gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4077]) +20 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-11/igt at gem_tiled_partial_pwrite_pread@writes.html * igt at gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4079]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at gem_tiled_pread_pwrite.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][82] ([i915#13263] / [i915#13449]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk3/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-11/igt at gem_userptr_blits@coherency-sync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#3323]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-2/igt at gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][85] ([i915#3323]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk6/igt at gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#3323]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-1/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3282] / [i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-2/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4880]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/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][90] ([i915#3297]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-4/igt at gem_userptr_blits@readonly-pwrite-unsync.html - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-8/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_userptr_blits@readonly-unsync: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#3297]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-17/igt at gem_userptr_blits@readonly-unsync.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#3297]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-2/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_workarounds@suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][94] ([i915#13356]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk3/igt at gem_workarounds@suspend-resume.html * igt at gem_workarounds@suspend-resume-context: - shard-glk: [PASS][95] -> [INCOMPLETE][96] ([i915#13356]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-glk2/igt at gem_workarounds@suspend-resume-context.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk2/igt at gem_workarounds@suspend-resume-context.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][97] +19 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-8/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#2527]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-17/igt at gen9_exec_parse@bb-chained.html - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#2856]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-7/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527]) +6 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-5/igt at gen9_exec_parse@bb-oversize.html - shard-tglu: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-4/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#2856]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-4/igt at gen9_exec_parse@unaligned-access.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4881]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-11/igt at i915_fb_tiling.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][105] -> [ABORT][106] ([i915#9820]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-2/igt at i915_module_load@reload-with-fault-injection.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-5/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#8399]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at i915_pm_freq_api@freq-reset.html - shard-rkl: NOTRUN -> [SKIP][108] ([i915#8399]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-2/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_freq_api@freq-suspend at gt0: - shard-dg2: [PASS][109] -> [INCOMPLETE][110] ([i915#12455]) +1 other test incomplete [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-1/igt at i915_pm_freq_api@freq-suspend at gt0.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-5/igt at i915_pm_freq_api@freq-suspend at gt0.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][111] ([i915#12797]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk1/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][112] ([i915#8346]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-2/igt at i915_pm_rps@reset.html * igt at i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#11681]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-5/igt at i915_pm_rps@thresholds.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#11681]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#4387]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-7/igt at i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][116] ([i915#4387]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-4/igt at i915_pm_sseu@full-enable.html * igt at i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#7984]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-5/igt at i915_power@sanity.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#5723]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-7/igt at i915_query@test-query-geometry-subslices.html - shard-tglu: NOTRUN -> [SKIP][119] ([i915#5723]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-3/igt at i915_query@test-query-geometry-subslices.html * igt at i915_suspend@basic-s3-without-i915: - shard-glk: NOTRUN -> [INCOMPLETE][120] ([i915#4817]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk6/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: [PASS][121] -> [INCOMPLETE][122] ([i915#4817]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-glk8/igt at i915_suspend@fence-restore-tiled2untiled.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk9/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at i915_suspend@sysfs-reader: - shard-rkl: NOTRUN -> [DMESG-FAIL][123] ([i915#12964]) +1 other test dmesg-fail [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-3/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_12416/shard-rkl-3/igt at intel_hwmon@hwmon-write.html - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#7707]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4215] / [i915#5190]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-11/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4212]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-11/igt at kms_addfb_basic@clobberred-modifier.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_12416/shard-dg1-17/igt at kms_addfb_basic@framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#12454] / [i915#12712]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-7/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: [PASS][130] -> [INCOMPLETE][131] ([i915#12761] / [i915#1982]) +1 other test incomplete [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-glk8/igt at kms_async_flips@async-flip-suspend-resume.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk8/igt at kms_async_flips@async-flip-suspend-resume.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][132] ([i915#8709]) +7 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-6/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][133] ([i915#8709]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/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-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#8709]) +11 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/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@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#12967] / [i915#6228]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-8/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3555]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-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_12416/shard-dg1-18/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#5286]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#5286]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-18/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#5286]) +8 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-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-dg1: NOTRUN -> [SKIP][141] ([i915#4538] / [i915#5286]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-13/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-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#5286]) +5 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#3638]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-5/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#3638]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-18/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#4538] / [i915#5190]) +13 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-8/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][146] +11 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-1/igt at kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#5190]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-11/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#4538]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-17/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#6095]) +59 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#12313]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-1/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-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#6095]) +24 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-8/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-d-edp-1.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#6095]) +79 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/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-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#12313]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-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: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#12805]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-3/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#12805]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-2/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][156] ([i915#6095]) +84 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/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-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#6095]) +9 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-1/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][158] ([i915#12796]) +3 other tests incomplete [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/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][159] ([i915#12313]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#10307] / [i915#6095]) +135 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-11/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs at pipe-c-hdmi-a-2.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-4/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#12313]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-2/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#6095]) +173 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-3.html * igt at kms_cdclk@mode-transition: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#7213] / [i915#9010]) +4 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-4/igt at kms_cdclk@mode-transition.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#3742]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-17/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#4087]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-7/igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3.html * igt at kms_chamelium_audio@dp-audio-edid: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +15 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-11/igt at kms_chamelium_audio@dp-audio-edid.html - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_chamelium_audio@dp-audio-edid.html * igt at kms_chamelium_audio@hdmi-audio: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-4/igt at kms_chamelium_audio@hdmi-audio.html * igt at kms_chamelium_frames@dp-crc-single: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +5 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-6/igt at kms_chamelium_frames@dp-crc-single.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +6 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-14/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +12 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-1/igt at kms_chamelium_hpd@vga-hpd-fast.html * igt at kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#9424]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-7/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#3116] / [i915#3299]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-2/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#7118] / [i915#9424]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-2/igt at kms_content_protection@legacy.html - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#9424]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-1/igt at kms_content_protection@lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][178] ([i915#9424]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at kms_content_protection@lic-type-0.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#3555]) +5 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-7/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#13049]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-11/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#13049]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][182] ([i915#13049]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#13049]) +4 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-6/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#3555]) +4 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#8814]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-8/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3555]) +6 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-1/igt at kms_cursor_crc@cursor-sliding-32x10.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#13049]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-4/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#13049]) +5 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-5/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_crc@cursor-sliding-64x21 at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][189] ([i915#12964]) +19 other tests dmesg-warn [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-2/igt at kms_cursor_crc@cursor-sliding-64x21 at pipe-b-hdmi-a-1.html * igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#9809]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-5/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#13046] / [i915#5354]) +6 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-8/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#4103]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-5/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][193] +39 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-4/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: [PASS][194] -> [FAIL][195] ([i915#2346]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-snb2/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.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_12416/shard-dg2-1/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][197] ([i915#9067]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-13/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#4103] / [i915#4213]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-10/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][199] ([i915#4103]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#9723]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][201] ([i915#12170]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][202] ([i915#11968]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_display_modes@extended-mode-basic: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3555]) +8 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-7/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#8588]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-3/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_12416/shard-rkl-3/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_12416/shard-rkl-3/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2.html * igt at kms_dp_aux_dev: - shard-dg2: [PASS][207] -> [SKIP][208] ([i915#1257]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-10/igt at kms_dp_aux_dev.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-3/igt at kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][209] ([i915#1257]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#12402]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-7/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#8812]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-4/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-basic: - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#3840]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-2/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#3840]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-8/igt at kms_dsc@dsc-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#3840]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-3/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#3840]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-11/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-4/igt at kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-18/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3840] / [i915#9053]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-8/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][220] ([i915#9878]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk8/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#3955]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-5/igt at kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][222] ([i915#3469]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-4/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#2065] / [i915#4854]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#4854]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#1839]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-2/igt at kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][226] ([i915#1839]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-10/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#9337]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-4/igt at kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#9337]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-1/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#658]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-3/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#9934]) +6 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-3/igt at kms_flip@2x-absolute-wf_vblank.html * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3637]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-5/igt at kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#9934]) +5 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-fences: - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#3637]) +5 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#3637]) +4 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-6/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#9934]) +9 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-5/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-snb: NOTRUN -> [FAIL][236] ([i915#11989]) +1 other test fail [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-snb2/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1: - shard-tglu: [PASS][237] -> [FAIL][238] ([i915#11989]) +5 other tests fail [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-tglu-6/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-9/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#3555]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-3/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-downscaling: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555]) +3 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-1/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#2587] / [i915#2672]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-18/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 at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#2672]) +7 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-3/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 at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#2672]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#2672] / [i915#3555]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/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-1: NOTRUN -> [SKIP][247] ([i915#2587] / [i915#2672]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/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-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#2672] / [i915#3555]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-18/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#2587] / [i915#2672]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-9/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-ytile-to-16bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-1/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#8813]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#8708]) +4 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-dg1: [PASS][253] -> [DMESG-WARN][254] ([i915#4423]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg1-18/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-14/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#5354]) +46 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][256] +81 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-9/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-snb: [PASS][257] -> [SKIP][258] +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-snb2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][259] +42 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][260] +42 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#8708]) +24 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#3458]) +18 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#5439]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#9766]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-14/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#10433] / [i915#3458]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#1825]) +12 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#1825]) +61 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#3458]) +20 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-7/igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#3023]) +37 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-2/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#8708]) +15 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdmi_inject@inject-audio: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#13030]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-2/igt at kms_hdmi_inject@inject-audio.html * igt at kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8228]) +2 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-5/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8228]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-10/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228]) +2 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-11/igt at kms_hdr@static-toggle-suspend.html - shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8228]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_hdr@static-toggle-suspend.html * igt at kms_histogram@algo-basic: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#13389]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#13389]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-3/igt at kms_histogram@algo-color.html - shard-tglu: NOTRUN -> [SKIP][278] ([i915#13389]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-7/igt at kms_histogram@algo-color.html * igt at kms_histogram@global-color: - shard-tglu: NOTRUN -> [SKIP][279] ([i915#13388]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-4/igt at kms_histogram@global-color.html - shard-rkl: NOTRUN -> [SKIP][280] ([i915#13388]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-5/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#12394]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-6/igt at kms_joiner@basic-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][282] ([i915#12394]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-1/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#12339]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-3/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#10656]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-1/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][285] ([i915#10656]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-2/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#12394]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][287] ([i915#12394]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#6301]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-7/igt at kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][289] ([i915#6301]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-2/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][290] ([i915#13026]) +1 other test incomplete [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk9/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][291] ([i915#10647] / [i915#12169]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk5/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][292] ([i915#10647]) +1 other test fail [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk5/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_multiple@tiling-yf: - shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#3555]) +4 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#6953]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-3/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#12247]) +4 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-6/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-a: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#12247]) +4 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-17/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#12247]) +18 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/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: - shard-glk: NOTRUN -> [SKIP][298] +464 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk5/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#12247]) +10 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-3/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][300] ([i915#12247] / [i915#6953]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-1/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][301] ([i915#12247] / [i915#6953] / [i915#9423]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-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-25-upscale-factor-0-25 at pipe-a: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#12247]) +3 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-a.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#12247] / [i915#3555]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#12247] / [i915#3555]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-5/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-c: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#12247]) +8 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-5/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-c.html * igt at kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#9812]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#5354]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-4/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc6-dpms: - shard-dg1: NOTRUN -> [SKIP][308] ([i915#3361]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-13/igt at kms_pm_dc@dc6-dpms.html - shard-tglu: [PASS][309] -> [FAIL][310] ([i915#9295]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-tglu-10/igt at kms_pm_dc@dc6-dpms.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-7/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#9685]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-3/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#3361]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-2/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#3828]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-9/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#8430]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-3/igt at kms_pm_lpsp@screens-disabled.html - shard-tglu: NOTRUN -> [SKIP][315] ([i915#8430]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-8/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [PASS][316] -> [SKIP][317] ([i915#9519]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-4/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-3/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#9519]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-8/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#9519]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-13/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#9519]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-5/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@pm-caching: - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#4077]) +3 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-5/igt at kms_pm_rpm@pm-caching.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#11520]) +8 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/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-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][323] ([i915#11520]) +12 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-snb7/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][324] ([i915#11520]) +12 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk4/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#11520]) +13 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-4/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#9808]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-1/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf at pipe-a-edp-1.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#11520]) +16 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-4/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#12316]) +4 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-3/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-tglu-1: NOTRUN -> [SKIP][329] ([i915#11520]) +5 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/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][330] ([i915#11520]) +7 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#9683]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_psr2_su@page_flip-nv12.html - shard-dg1: NOTRUN -> [SKIP][332] ([i915#9683]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-13/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#9683]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-10/igt at kms_psr2_su@page_flip-p010.html - shard-rkl: NOTRUN -> [SKIP][334] ([i915#9683]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-4/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#9683]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-8/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-no-drrs: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#1072] / [i915#9732]) +30 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-5/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_psr@fbc-pr-primary-blt: - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#9688]) +9 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-3/igt at kms_psr@fbc-pr-primary-blt.html * igt at kms_psr@fbc-psr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#9732]) +18 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-6/igt at kms_psr@fbc-psr-sprite-plane-move.html * igt at kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#1072] / [i915#9732]) +23 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-11/igt at kms_psr@psr2-primary-mmap-gtt.html * igt at kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#9732]) +12 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_psr@psr2-sprite-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][341] ([i915#1072] / [i915#9732]) +19 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at kms_psr@psr2-sprite-mmap-gtt.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#12755]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-11/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#5289]) +2 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][344] ([i915#5289]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/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-tglu-1: NOTRUN -> [SKIP][345] ([i915#5289]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: NOTRUN -> [SKIP][346] ([i915#5289]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-17/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.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_12416/shard-dg2-3/igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free.html * igt at kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][348] ([i915#5465]) +2 other tests fail [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-snb7/igt at kms_setmode@basic.html * igt at kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#3555] / [i915#8809]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-2/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][350] ([i915#8623]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-17/igt at kms_tiled_display@basic-test-pattern.html - shard-glk: NOTRUN -> [FAIL][351] ([i915#10959]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk1/igt at kms_tiled_display@basic-test-pattern.html - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#8623]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-7/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#8623]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][354] ([i915#8623]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-3/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@flip-basic-fastset: - shard-mtlp: NOTRUN -> [SKIP][355] ([i915#8808] / [i915#9906]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-5/igt at kms_vrr@flip-basic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#9906]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#11920]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-2/igt at kms_vrr@lobf.html - shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#11920]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-1/igt at kms_vrr@lobf.html * igt at kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][359] ([i915#9906]) +2 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-14/igt at kms_vrr@max-min.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][360] ([i915#9906]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-1/igt at kms_vrr@seamless-rr-switch-drrs.html - shard-dg2: NOTRUN -> [SKIP][361] ([i915#9906]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-8/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#9906]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-10/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#2437] / [i915#9412]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-4/igt at kms_writeback@writeback-check-output-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][364] ([i915#2437] / [i915#9412]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-5/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][365] ([i915#2437]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-3/igt at kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][366] ([i915#2437]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-8/igt at kms_writeback@writeback-fb-id.html - shard-dg1: NOTRUN -> [SKIP][367] ([i915#2437]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-13/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][368] ([i915#2437]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-4/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][369] ([i915#2437]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk2/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#2436]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-7/igt at perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][371] ([i915#2436]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-7/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#7387]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-3/igt at perf@global-sseu-config.html * igt at perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][373] ([i915#2435]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-7/igt at perf@per-context-mode-unprivileged.html * igt at perf@unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][374] ([i915#2433]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-13/igt at perf@unprivileged-single-ctx-counters.html * igt at perf_pmu@busy: - shard-dg2: NOTRUN -> [FAIL][375] ([i915#4349]) +6 other tests fail [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-7/igt at perf_pmu@busy.html * igt at perf_pmu@busy-double-start at rcs0: - shard-mtlp: [PASS][376] -> [FAIL][377] ([i915#4349]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-5/igt at perf_pmu@busy-double-start at rcs0.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-6/igt at perf_pmu@busy-double-start at rcs0.html * igt at perf_pmu@event-wait: - shard-mtlp: NOTRUN -> [SKIP][378] ([i915#8807]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-4/igt at perf_pmu@event-wait.html * igt at perf_pmu@event-wait at rcs0: - shard-mtlp: NOTRUN -> [SKIP][379] ([i915#3555] / [i915#8807]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-4/igt at perf_pmu@event-wait at rcs0.html * igt at perf_pmu@frequency at gt0: - shard-dg2: [PASS][380] -> [FAIL][381] ([i915#12549] / [i915#6806]) +1 other test fail [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-7/igt at perf_pmu@frequency at gt0.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-8/igt at perf_pmu@frequency at gt0.html - shard-dg1: [PASS][382] -> [FAIL][383] ([i915#12549] / [i915#6806]) +1 other test fail [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg1-13/igt at perf_pmu@frequency at gt0.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-13/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][384] ([i915#8516]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-7/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][385] ([i915#3291] / [i915#3708]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-4/igt at prime_vgem@basic-read.html * igt at prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][386] ([i915#3708] / [i915#4077]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-14/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][387] ([i915#3708]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-8/igt at prime_vgem@fence-write-hang.html - shard-dg1: NOTRUN -> [SKIP][388] ([i915#3708]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-13/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][389] ([i915#9917]) +2 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-3/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#9917]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-3/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][391] ([i915#4818]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-14/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at gem_eio@hibernate: - shard-dg1: [ABORT][392] ([i915#7975] / [i915#8213]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg1-14/igt at gem_eio@hibernate.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-13/igt at gem_eio@hibernate.html * igt at gem_eio@in-flight-internal-10ms: - shard-mtlp: [ABORT][394] -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-4/igt at gem_eio@in-flight-internal-10ms.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-1/igt at gem_eio@in-flight-internal-10ms.html * igt at gem_eio@kms: - shard-tglu: [DMESG-WARN][396] ([i915#13363]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-tglu-4/igt at gem_eio@kms.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-10/igt at gem_eio@kms.html * igt at gem_exec_suspend@basic-s3 at smem: - shard-glk: [INCOMPLETE][398] ([i915#13196]) -> [PASS][399] +1 other test pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-glk8/igt at gem_exec_suspend@basic-s3 at smem.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk2/igt at gem_exec_suspend@basic-s3 at smem.html * igt at gem_ppgtt@shrink-vs-evict-any: - shard-dg2: [ABORT][400] -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-4/igt at gem_ppgtt@shrink-vs-evict-any.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-8/igt at gem_ppgtt@shrink-vs-evict-any.html * igt at gem_tiled_swapping@non-threaded: - shard-rkl: [FAIL][402] -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-7/igt at gem_tiled_swapping@non-threaded.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-3/igt at gem_tiled_swapping@non-threaded.html - shard-tglu: [FAIL][404] -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-tglu-9/igt at gem_tiled_swapping@non-threaded.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-7/igt at gem_tiled_swapping@non-threaded.html * igt at gen9_exec_parse@bb-large: - shard-glk: [ABORT][406] -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-glk6/igt at gen9_exec_parse@bb-large.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-glk4/igt at gen9_exec_parse@bb-large.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][408] ([i915#12817] / [i915#9820]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-tglu-4/igt at i915_module_load@reload-with-fault-injection.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-10/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: [FAIL][410] ([i915#12739] / [i915#3591]) -> [PASS][411] +1 other test pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-rkl: [DMESG-FAIL][412] ([i915#12964]) -> [PASS][413] +1 other test pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-4/igt at kms_async_flips@async-flip-suspend-resume.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-7/igt at kms_async_flips@async-flip-suspend-resume.html * igt at kms_atomic_transition@plane-all-modeset-transition at pipe-b-hdmi-a-2: - shard-rkl: [DMESG-WARN][414] ([i915#12964]) -> [PASS][415] +26 other tests pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-3/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-b-hdmi-a-2.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-1/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-b-hdmi-a-2.html * igt at kms_big_fb@y-tiled-16bpp-rotate-0: - shard-dg1: [DMESG-WARN][416] ([i915#4423]) -> [PASS][417] +1 other test pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg1-13/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-17/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html * igt at kms_cursor_crc@cursor-sliding-64x64: - shard-mtlp: [DMESG-WARN][418] -> [PASS][419] +1 other test pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-6/igt at kms_cursor_crc@cursor-sliding-64x64.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-5/igt at kms_cursor_crc@cursor-sliding-64x64.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-mtlp: [FAIL][420] ([i915#2346]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-3/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-8/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-vga1-hdmi-a1: - shard-snb: [FAIL][422] ([i915#11989]) -> [PASS][423] +1 other test pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-snb5/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-vga1-hdmi-a1.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-snb2/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-vga1-hdmi-a1.html * igt at kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [DMESG-WARN][424] ([i915#12917] / [i915#12964]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-1/igt at kms_flip@absolute-wf_vblank-interruptible.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-7/igt at kms_flip@absolute-wf_vblank-interruptible.html * igt at kms_flip@blocking-wf_vblank: - shard-mtlp: [FAIL][426] ([i915#11989]) -> [PASS][427] +5 other tests pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-5/igt at kms_flip@blocking-wf_vblank.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-2/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@blocking-wf_vblank at b-hdmi-a1: - shard-tglu: [FAIL][428] ([i915#11989]) -> [PASS][429] +2 other tests pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-tglu-10/igt at kms_flip@blocking-wf_vblank at b-hdmi-a1.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-tglu-3/igt at kms_flip@blocking-wf_vblank at b-hdmi-a1.html * igt at kms_pm_rpm@cursor: - shard-rkl: [SKIP][430] -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-5/igt at kms_pm_rpm@cursor.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-4/igt at kms_pm_rpm@cursor.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][432] ([i915#9519]) -> [PASS][433] [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-7/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-rkl-3/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_vrr@negative-basic: - shard-mtlp: [FAIL][434] ([i9 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sun Jan 12 08:43:15 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sun, 12 Jan 2025 08:43:15 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_lib/igt=5Fkmemleak=3A_libr?= =?utf-8?q?ary_to_interact_with_kmemleak_=28rev2=29?= In-Reply-To: <20250109181027.90402-1-peter.senna@linux.intel.com> References: <20250109181027.90402-1-peter.senna@linux.intel.com> Message-ID: <173667139526.2829460.13324038630832694591@b555e5b46a47> == Series Details == Series: lib/igt_kmemleak: library to interact with kmemleak (rev2) URL : https://patchwork.freedesktop.org/series/142673/ State : failure == Summary == CI Bug Log - changes from XEIGT_8184_full -> XEIGTPW_12421_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12421_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12421_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_12421_full: ### IGT changes ### #### Possible regressions #### * igt at xe_pm_residency@cpg-basic: - shard-dg2-set2: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at xe_pm_residency@cpg-basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at xe_pm_residency@cpg-basic.html #### Warnings #### * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [INCOMPLETE][3] ([Intel XE#1473]) -> [DMESG-FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at xe_evict@evict-mixed-threads-large.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-1/igt at xe_evict@evict-mixed-threads-large.html * igt at xe_mmap@pci-membarrier-bad-object: - shard-bmg: [SKIP][5] ([Intel XE#1130]) -> [SKIP][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_mmap@pci-membarrier-bad-object.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-8/igt at xe_mmap@pci-membarrier-bad-object.html Known issues ------------ Here are the changes found in XEIGTPW_12421_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][7] -> [FAIL][8] ([Intel XE#827]) +1 other test fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-4/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_big_fb@4-tiled-64bpp-rotate-180: - shard-dg2-set2: [PASS][9] -> [SKIP][10] ([Intel XE#2136]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_big_fb@4-tiled-64bpp-rotate-180.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_big_fb@4-tiled-64bpp-rotate-180.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-3/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2327]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#316]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#619]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#607]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-1/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +9 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/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-180-hflip: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +4 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-1/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#367]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-4-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1512]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-8/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#367]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#787]) +181 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs at pipe-a-dp-2.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +5 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-1/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-8/igt at kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#3442]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#3432]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][28] ([Intel XE#2692] / [Intel XE#4010]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/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: NOTRUN -> [INCOMPLETE][29] ([Intel XE#2705]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/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-mtl-mc-ccs: - 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_12421/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#314]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-25: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2325]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-8/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_color@ctm-0-75: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#306]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at kms_chamelium_color@ctm-0-75.html * igt at kms_chamelium_color@ctm-limited-range: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#306]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-5/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2252]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_frames@hdmi-crc-single: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#373]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-8/igt at kms_chamelium_frames@hdmi-crc-single.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#373]) +11 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][38] ([Intel XE#1178]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at kms_content_protection@atomic-dpms at pipe-a-dp-2.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#307]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#307]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-5/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][41] ([Intel XE#3304]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_content_protection@lic-type-0 at pipe-a-dp-4.html * igt at kms_content_protection@lic-type-1: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#3278]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-5/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1468]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-3/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][44] ([Intel XE#1178]) +3 other tests fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][45] ([Intel XE#1188]) +1 other test fail [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at kms_content_protection@uevent.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_12421/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-64x21: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2320]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-6/igt at kms_cursor_crc@cursor-random-64x21.html * igt at kms_cursor_crc@cursor-random-64x64: - shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#3007]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_cursor_crc@cursor-random-64x64.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_cursor_crc@cursor-random-64x64.html - shard-dg2-set2: [PASS][50] -> [SKIP][51] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_cursor_crc@cursor-random-64x64.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_cursor_crc@cursor-random-64x64.html * igt at kms_cursor_crc@cursor-rapid-movement-128x42: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1424]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-2/igt at kms_cursor_crc@cursor-rapid-movement-128x42.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#2423] / [i915#2575]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#2321]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-5/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#2291]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-5/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#323]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#309]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-7/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][59] -> [DMESG-WARN][60] ([Intel XE#877]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2291]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2374]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1135]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3: - shard-bmg: [PASS][64] -> [FAIL][65] ([Intel XE#3288] / [Intel XE#3321]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-1/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-interruptible at cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][66] -> [FAIL][67] ([Intel XE#301]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/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-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1421]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-6/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [PASS][69] -> [SKIP][70] ([Intel XE#2316]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_flip@2x-wf_vblank-ts-check.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-6/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@flip-vs-expired-vblank at d-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][71] ([Intel XE#301] / [Intel XE#3321]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html * igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][72] ([Intel XE#301]) +1 other test fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a6.html * igt at kms_flip@wf_vblank-ts-check at a-edp1: - shard-lnl: [PASS][73] -> [FAIL][74] ([Intel XE#886]) +1 other test fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-1/igt at kms_flip@wf_vblank-ts-check at a-edp1.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-8/igt at kms_flip@wf_vblank-ts-check at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1397] / [Intel XE#1745]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-8/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1397]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-8/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2293]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling: - shard-bmg: [PASS][78] -> [SKIP][79] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1401]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-3/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_force_connector_basic@force-connector-state: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#352]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-2/igt at kms_force_connector_basic@force-connector-state.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2311]) +7 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#651]) +35 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-slowdraw: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#651]) +7 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-6/igt at kms_frontbuffer_tracking@drrs-slowdraw.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#2136]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#653]) +40 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-dp-2: - shard-bmg: NOTRUN -> [FAIL][88] ([Intel XE#2333]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-1/igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-dp-2.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2313]) +8 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#656]) +12 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-5/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_histogram@global-color: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#3898]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-4/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#346]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-1/igt at kms_joiner@basic-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#346]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at kms_joiner@basic-big-joiner.html - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#346]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-8/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2927]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2925]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#356]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: NOTRUN -> [FAIL][98] ([Intel XE#616]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64.html * igt at kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#2493]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-1/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][100] -> [FAIL][101] ([Intel XE#361]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2763]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-8/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]) +7 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/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]) +11 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#870]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2938]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2392]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-8/igt at kms_pm_dc@dc5-psr.html - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1129]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][109] ([Intel XE#1430]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-4/igt at kms_pm_dc@dc6-psr.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#1489]) +7 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#1489]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#2893]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-4/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1122]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1128]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-3/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2850] / [Intel XE#929]) +18 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_psr@pr-sprite-plane-onoff.html - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@pr-suspend: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at kms_psr@pr-suspend.html - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1406]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-2/igt at kms_psr@pr-suspend.html * igt at kms_rotation_crc@bad-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#3414]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#3414] / [Intel XE#3904]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-6/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-full: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#455]) +14 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_scaling_modes@scaling-mode-none: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2413]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-none.html - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#2413] / [Intel XE#374]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-8/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#374]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-8/igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1.html * igt at kms_setmode@clone-exclusive-crtc: - shard-bmg: [PASS][126] -> [SKIP][127] ([Intel XE#1435]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_setmode@clone-exclusive-crtc.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-6/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1435]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-7/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#362]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#362]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-6/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#756]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-3/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#756]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/igt at kms_writeback@writeback-invalid-parameters.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#1091] / [Intel XE#2849]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-2/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_copy_basic@mem-copy-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1123]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at xe_copy_basic@mem-copy-linear-0xfd.html * igt at xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2905]) +16 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at xe_eudebug@basic-close.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2905]) +5 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#3889]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-4/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#3889]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@discovery-empty-clients: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#2905]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-1/igt at xe_eudebug@discovery-empty-clients.html * igt at xe_evict@evict-beng-cm-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#688]) +4 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-1/igt at xe_evict@evict-beng-cm-threads-large-multi-vm.html * igt at xe_exec_balancer@once-cm-parallel-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1130]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at xe_exec_balancer@once-cm-parallel-userptr.html * igt at xe_exec_basic@multigpu-no-exec-basic: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2322]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-1/igt at xe_exec_basic@multigpu-no-exec-basic.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1392]) +5 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-5/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [PASS][144] -> [SKIP][145] ([Intel XE#1392]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#288]) +28 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html * igt at xe_exec_sip_eudebug@wait-writesip-nodebug: - shard-dg2-set2: [PASS][147] -> [SKIP][148] ([Intel XE#1130]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at xe_exec_sip_eudebug@wait-writesip-nodebug.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at xe_exec_sip_eudebug@wait-writesip-nodebug.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#255]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at xe_huc_copy@huc_copy.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2229]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-1/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][151] -> [SKIP][152] ([Intel XE#1192]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at xe_live_ktest@xe_dma_buf.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-6/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#2229]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][154] ([Intel XE#1999]) +2 other tests fail [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#1416]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-7/igt at xe_mmap@vram.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_12421/shard-lnl-1/igt at xe_module_load@force-load.html * igt at xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2248]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#2248]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-1/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#2541] / [Intel XE#3573]) +8 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#979]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at xe_pat@pat-index-xelpg.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2284]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-4/igt at xe_pm@s2idle-d3cold-basic-exec.html - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#2284] / [Intel XE#366]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at xe_pm@s2idle-d3cold-basic-exec.html - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-2/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s3-multiple-execs: - shard-dg2-set2: [PASS][164] -> [ABORT][165] ([Intel XE#1358] / [Intel XE#1794]) +2 other tests abort [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at xe_pm@s3-multiple-execs.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at xe_pm@s3-multiple-execs.html * igt at xe_pm@s4-d3hot-basic-exec: - shard-dg2-set2: NOTRUN -> [ABORT][166] ([Intel XE#1358]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at xe_pm@s4-d3hot-basic-exec.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_12421/shard-dg2-464/igt at xe_pm@vram-d3cold-threshold.html - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#579]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-6/igt at xe_pm@vram-d3cold-threshold.html - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#579]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-4/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#944]) +4 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/igt at xe_query@multigpu-query-uc-fw-version-guc.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#944]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-3/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_vm@mixed-userptr-misaligned-binds-3145728: - shard-bmg: [PASS][172] -> [SKIP][173] ([Intel XE#1130]) +8 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-5/igt at xe_vm@mixed-userptr-misaligned-binds-3145728.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at xe_vm@mixed-userptr-misaligned-binds-3145728.html #### Possible fixes #### * igt at kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][174] ([Intel XE#3007]) -> [PASS][175] +13 other tests pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_addfb_basic@bad-pitch-999.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-6/igt at kms_addfb_basic@bad-pitch-999.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1: - shard-lnl: [FAIL][176] ([Intel XE#3908]) -> [PASS][177] +1 other test pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-2/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][178] ([Intel XE#2136]) -> [PASS][179] +3 other tests pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_big_fb@4-tiled-addfb-size-overflow.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@x-tiled-8bpp-rotate-180: - shard-dg2-set2: [SKIP][180] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][181] +2 other tests pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_big_fb@x-tiled-8bpp-rotate-180.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at kms_big_fb@x-tiled-8bpp-rotate-180.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [SKIP][182] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][183] +4 other tests pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-8/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-lnl: [INCOMPLETE][184] ([Intel XE#3862]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-2/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1: - shard-lnl: [INCOMPLETE][186] -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-2/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][188] -> [PASS][189] +1 other test pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-4/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][190] ([Intel XE#1727] / [Intel XE#2705]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/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-b-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][192] ([Intel XE#2705]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-6.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][194] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/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-b-dp-4: - shard-dg2-set2: [DMESG-WARN][196] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][198] ([Intel XE#3124]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-set2: [SKIP][200] ([Intel XE#2423] / [i915#2575]) -> [PASS][201] +11 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][202] ([Intel XE#2291]) -> [PASS][203] +2 other tests pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][204] ([Intel XE#2882]) -> [PASS][205] +1 other test pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][206] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][207] [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-1/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: [FAIL][208] ([Intel XE#3321]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [SKIP][210] ([Intel XE#2316]) -> [PASS][211] +6 other tests pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: - shard-dg2-set2: [FAIL][212] ([Intel XE#301]) -> [PASS][213] +3 other tests pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][214] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_flip@flip-vs-suspend.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at d-dp4: - shard-dg2-set2: [INCOMPLETE][216] ([Intel XE#2049]) -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_flip@flip-vs-suspend at d-dp4.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/igt at kms_flip@flip-vs-suspend at d-dp4.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [SKIP][218] ([Intel XE#1503]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_hdr@invalid-hdr.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-8/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][220] ([Intel XE#3012]) -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-8/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4: - shard-dg2-set2: [FAIL][222] ([Intel XE#361]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html * igt at kms_sequence@get-forked-busy: - shard-dg2-set2: [INCOMPLETE][224] -> [PASS][225] +1 other test pass [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at kms_sequence@get-forked-busy.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at kms_sequence@get-forked-busy.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [FAIL][226] ([Intel XE#899]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-3/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [FAIL][228] ([Intel XE#2159]) -> [PASS][229] +1 other test pass [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-3/igt at kms_vrr@cmrr at pipe-a-edp-1.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-lnl-1/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@negative-basic: - shard-bmg: [SKIP][230] ([Intel XE#1499]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_vrr@negative-basic.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-4/igt at kms_vrr@negative-basic.html * igt at xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [FAIL][232] ([Intel XE#1600]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at xe_evict@evict-beng-large-multi-vm-cm.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at xe_evict@evict-beng-large-multi-vm-cm.html * igt at xe_exec_basic@multigpu-once-null-defer-bind: - shard-dg2-set2: [SKIP][234] ([Intel XE#1392]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_exec_basic@multigpu-once-null-defer-bind.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at xe_exec_basic@multigpu-once-null-defer-bind.html * igt at xe_exec_threads@threads-mixed-shared-vm-basic: - shard-dg2-set2: [SKIP][236] ([Intel XE#1130]) -> [PASS][237] +18 other tests pass [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_exec_threads@threads-mixed-shared-vm-basic.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at xe_exec_threads@threads-mixed-shared-vm-basic.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [SKIP][238] ([Intel XE#1192]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at xe_live_ktest@xe_bo.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-1/igt at xe_live_ktest@xe_bo.html * igt at xe_module_load@load: - shard-dg2-set2: ([PASS][240], [PASS][241], [PASS][242], [PASS][243], [SKIP][244], [PASS][245], [PASS][246], [PASS][247], [PASS][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], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265]) ([Intel XE#378]) -> ([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], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at xe_module_load@load.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at xe_module_load@load.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_module_load@load.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at xe_module_load@load.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at xe_module_load@load.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at xe_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at xe_module_load@load.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at xe_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at xe_module_load@load.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at xe_module_load@load.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/igt at xe_module_load@load.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at xe_module_load@load.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at xe_module_load@load.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at xe_module_load@load.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at xe_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/igt at xe_module_load@load.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/igt at xe_module_load@load.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at xe_module_load@load.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at xe_module_load@load.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at xe_module_load@load.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at xe_module_load@load.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at xe_module_load@load.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at xe_module_load@load.html * igt at xe_pm@s2idle-basic-exec: - shard-dg2-set2: [ABORT][291] ([Intel XE#1358]) -> [PASS][292] +1 other test pass [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_pm@s2idle-basic-exec.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/igt at xe_pm@s2idle-basic-exec.html * igt at xe_pm@s3-d3hot-basic-exec: - shard-dg2-set2: [ABORT][293] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_pm@s3-d3hot-basic-exec.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at xe_pm@s3-d3hot-basic-exec.html * igt at xe_pm_residency@gt-c6-freeze: - shard-dg2-set2: [ABORT][295] ([Intel XE#2625]) -> [PASS][296] +1 other test pass [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_pm_residency@gt-c6-freeze.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at xe_pm_residency@gt-c6-freeze.html * igt at xe_pm_residency@toggle-gt-c6: - shard-bmg: [SKIP][297] ([Intel XE#1130]) -> [PASS][298] +27 other tests pass [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_pm_residency@toggle-gt-c6.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-4/igt at xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt at kms_big_fb@linear-8bpp-rotate-90: - shard-dg2-set2: [SKIP][299] ([Intel XE#316]) -> [SKIP][300] ([Intel XE#2136]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_big_fb@linear-8bpp-rotate-90.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_big_fb@linear-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: [SKIP][301] ([Intel XE#1124]) -> [SKIP][302] ([Intel XE#2136]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-bmg: [SKIP][303] ([Intel XE#1124]) -> [SKIP][304] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_big_fb@yf-tiled-8bpp-rotate-90.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-bmg: [SKIP][305] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][306] ([Intel XE#1124]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html - shard-dg2-set2: [SKIP][307] ([Intel XE#2136]) -> [SKIP][308] ([Intel XE#1124]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: [SKIP][309] ([Intel XE#3007]) -> [SKIP][310] ([Intel XE#2314] / [Intel XE#2894]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-1/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html - shard-dg2-set2: [SKIP][311] ([Intel XE#2423] / [i915#2575]) -> [SKIP][312] ([Intel XE#2191]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][313] ([Intel XE#2136]) -> [SKIP][314] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][315] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][316] ([Intel XE#2887]) +2 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs: - shard-bmg: [SKIP][317] ([Intel XE#2887]) -> [SKIP][318] ([Intel XE#2136] / [Intel XE#2231]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html - shard-dg2-set2: [SKIP][319] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][320] ([Intel XE#2136]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: [SKIP][321] ([Intel XE#2423] / [i915#2575]) -> [SKIP][322] ([Intel XE#373]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html - shard-bmg: [SKIP][323] ([Intel XE#3007]) -> [SKIP][324] ([Intel XE#2252]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-8/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_content_protection@atomic-dpms: - shard-dg2-set2: [SKIP][325] ([Intel XE#2423] / [i915#2575]) -> [FAIL][326] ([Intel XE#1178]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_content_protection@atomic-dpms.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_content_protection@atomic-dpms.html - shard-bmg: [SKIP][327] ([Intel XE#3007]) -> [FAIL][328] ([Intel XE#1178]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_content_protection@atomic-dpms.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@legacy: - shard-bmg: [DMESG-FAIL][329] ([Intel XE#877]) -> [FAIL][330] ([Intel XE#1178]) +1 other test fail [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_content_protection@legacy.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_content_protection@legacy.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: [SKIP][331] ([Intel XE#2423] / [i915#2575]) -> [SKIP][332] ([Intel XE#455]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_cursor_crc@cursor-random-max-size.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-433/igt at kms_cursor_crc@cursor-random-max-size.html - shard-bmg: [SKIP][333] ([Intel XE#3007]) -> [SKIP][334] ([Intel XE#2320]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_cursor_crc@cursor-random-max-size.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-6/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-bmg: [SKIP][335] ([Intel XE#2320]) -> [SKIP][336] ([Intel XE#3007]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][337] ([Intel XE#2882]) -> [SKIP][338] ([Intel XE#2316]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2-set2: [SKIP][339] ([Intel XE#2136]) -> [SKIP][340] ([Intel XE#455]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][341] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][342] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-6/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-mmap-wc: - shard-dg2-set2: [SKIP][343] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][344] ([Intel XE#651]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][345] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][346] ([Intel XE#2311]) +4 other tests skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html - shard-dg2-set2: [SKIP][347] ([Intel XE#2136]) -> [SKIP][348] ([Intel XE#651]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][349] ([Intel XE#2312]) -> [SKIP][350] ([Intel XE#2311]) +13 other tests skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][351] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][352] ([Intel XE#2333]) +3 other tests fail [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][353] ([Intel XE#2333]) -> [SKIP][354] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][355] ([Intel XE#2312]) -> [FAIL][356] ([Intel XE#2333]) +6 other tests fail [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][357] ([Intel XE#2333]) -> [SKIP][358] ([Intel XE#2312]) +6 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][359] ([Intel XE#2311]) -> [SKIP][360] ([Intel XE#2312]) +11 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][361] ([Intel XE#2311]) -> [SKIP][362] ([Intel XE#2136] / [Intel XE#2231]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][363] ([Intel XE#2313]) -> [SKIP][364] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][365] ([Intel XE#2313]) -> [SKIP][366] ([Intel XE#2312]) +8 other tests skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-dg2-set2: [SKIP][367] ([Intel XE#653]) -> [SKIP][368] ([Intel XE#2136]) +2 other tests skip [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][369] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][370] ([Intel XE#2313]) +2 other tests skip [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html - shard-dg2-set2: [SKIP][371] ([Intel XE#2136]) -> [SKIP][372] ([Intel XE#653]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][373] ([Intel XE#2312]) -> [SKIP][374] ([Intel XE#2313]) +12 other tests skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][375] ([Intel XE#3544]) -> [SKIP][376] ([Intel XE#3374] / [Intel XE#3544]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-8/igt at kms_hdr@brightness-with-hdr.html * igt at kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][377] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][378] ([Intel XE#870]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_pm_backlight@fade-with-dpms.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at kms_pm_backlight@fade-with-dpms.html - shard-dg2-set2: [SKIP][379] ([Intel XE#2136]) -> [SKIP][380] ([Intel XE#870]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_pm_backlight@fade-with-dpms.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][381] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][382] ([Intel XE#1489]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-4/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html - shard-dg2-set2: [SKIP][383] ([Intel XE#2136]) -> [SKIP][384] ([Intel XE#1489]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-bmg: [SKIP][385] ([Intel XE#1489]) -> [SKIP][386] ([Intel XE#2136] / [Intel XE#2231]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html - shard-dg2-set2: [SKIP][387] ([Intel XE#1489]) -> [SKIP][388] ([Intel XE#2136]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-psr-cursor-blt: - shard-bmg: [SKIP][389] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][390] ([Intel XE#2234] / [Intel XE#2850]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_psr@fbc-psr-cursor-blt.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-4/igt at kms_psr@fbc-psr-cursor-blt.html - shard-dg2-set2: [SKIP][391] ([Intel XE#2136]) -> [SKIP][392] ([Intel XE#2850] / [Intel XE#929]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_psr@fbc-psr-cursor-blt.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at kms_psr@fbc-psr-cursor-blt.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: [SKIP][393] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][394] ([Intel XE#3007]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-dg2-set2: [SKIP][395] ([Intel XE#3414]) -> [SKIP][396] ([Intel XE#2423] / [i915#2575]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: [SKIP][397] ([Intel XE#2423] / [i915#2575]) -> [SKIP][398] ([Intel XE#3414]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_rotation_crc@sprite-rotation-270.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at kms_rotation_crc@sprite-rotation-270.html - shard-bmg: [SKIP][399] ([Intel XE#3007]) -> [SKIP][400] ([Intel XE#3414] / [Intel XE#3904]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_rotation_crc@sprite-rotation-270.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][401] ([Intel XE#362]) -> [SKIP][402] ([Intel XE#1500]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-464/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][403] ([Intel XE#1130]) -> [SKIP][404] ([Intel XE#1126]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0x3fff.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at xe_copy_basic@mem-set-linear-0x3fff.html * igt at xe_eudebug@discovery-empty-clients: - shard-bmg: [SKIP][405] ([Intel XE#2905]) -> [SKIP][406] ([Intel XE#1130]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-5/igt at xe_eudebug@discovery-empty-clients.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at xe_eudebug@discovery-empty-clients.html - shard-dg2-set2: [SKIP][407] ([Intel XE#2905]) -> [SKIP][408] ([Intel XE#1130]) [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_eudebug@discovery-empty-clients.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at xe_eudebug@discovery-empty-clients.html * igt at xe_eudebug_online@pagefault-write: - shard-bmg: [SKIP][409] ([Intel XE#1130]) -> [SKIP][410] ([Intel XE#2905]) +1 other test skip [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_eudebug_online@pagefault-write.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at xe_eudebug_online@pagefault-write.html - shard-dg2-set2: [SKIP][411] ([Intel XE#1130]) -> [SKIP][412] ([Intel XE#2905]) +1 other test skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_eudebug_online@pagefault-write.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at xe_eudebug_online@pagefault-write.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [TIMEOUT][413] ([Intel XE#1473]) -> [FAIL][414] ([Intel XE#1000]) [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at xe_evict@evict-beng-threads-large.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-8/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-bmg: [SKIP][415] ([Intel XE#1130]) -> [TIMEOUT][416] ([Intel XE#1473]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_evict@evict-mixed-many-threads-large.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-8/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_evict@evict-threads-large: - shard-bmg: [FAIL][417] ([Intel XE#1000]) -> [INCOMPLETE][418] ([Intel XE#1473]) [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at xe_evict@evict-threads-large.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-2/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-once-userptr-rebind: - shard-bmg: [SKIP][419] ([Intel XE#1130]) -> [SKIP][420] ([Intel XE#2322]) [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_exec_basic@multigpu-once-userptr-rebind.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-4/igt at xe_exec_basic@multigpu-once-userptr-rebind.html * igt at xe_exec_fault_mode@many-userptr-rebind-imm: - shard-dg2-set2: [SKIP][421] ([Intel XE#1130]) -> [SKIP][422] ([Intel XE#288]) +1 other test skip [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_exec_fault_mode@many-userptr-rebind-imm.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-436/igt at xe_exec_fault_mode@many-userptr-rebind-imm.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race-prefetch: - shard-dg2-set2: [SKIP][423] ([Intel XE#288]) -> [SKIP][424] ([Intel XE#1130]) [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race-prefetch.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race-prefetch.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][425] ([Intel XE#1192]) -> [SKIP][426] ([Intel XE#2833]) [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-5/igt at xe_live_ktest@xe_eudebug.html * igt at xe_oa@stress-open-close: - shard-dg2-set2: [SKIP][427] ([Intel XE#1130]) -> [SKIP][428] ([Intel XE#2541] / [Intel XE#3573]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_oa@stress-open-close.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-463/igt at xe_oa@stress-open-close.html * igt at xe_peer2peer@write: - shard-dg2-set2: [FAIL][429] ([Intel XE#1173]) -> [SKIP][430] ([Intel XE#1061]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at xe_peer2peer@write.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at xe_peer2peer@write.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [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#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#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [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#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#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#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [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#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [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#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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [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#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#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010 [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#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#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#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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [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_8184 -> IGTPW_12421 * Linux: xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c -> xe-2464-15b0ea8b453b7e91a74530afa85a602eaca01527 IGTPW_12421: bdc8ea9492db57d40ecd569d84681108dfe488fb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8184: ee7a3ac616f55f6ed1b959ff951237099bda86d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c: c9da975358cd0763449f08b7063ee935eace4f8c xe-2464-15b0ea8b453b7e91a74530afa85a602eaca01527: 15b0ea8b453b7e91a74530afa85a602eaca01527 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sun Jan 12 10:32:30 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sun, 12 Jan 2025 10:32:30 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Remove_redundant_hotplug_d?= =?utf-8?q?etection_assertion_=28rev3=29?= In-Reply-To: <20250109200911.1243517-1-ramanaidu.naladala@intel.com> References: <20250109200911.1243517-1-ramanaidu.naladala@intel.com> Message-ID: <173667795054.2851927.8272153224393170359@b555e5b46a47> == Series Details == Series: Remove redundant hotplug detection assertion (rev3) URL : https://patchwork.freedesktop.org/series/143141/ State : failure == Summary == CI Bug Log - changes from XEIGT_8184_full -> XEIGTPW_12422_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12422_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12422_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_12422_full: ### IGT changes ### #### Possible regressions #### * igt at kms_sequence@get-busy at pipe-d-dp-4: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +2 other tests incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_sequence@get-busy at pipe-d-dp-4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_sequence@get-busy at pipe-d-dp-4.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-d-dp-2.html #### Warnings #### * igt at xe_mmap@pci-membarrier-bad-object: - shard-bmg: [SKIP][4] ([Intel XE#1130]) -> [SKIP][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_mmap@pci-membarrier-bad-object.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-5/igt at xe_mmap@pci-membarrier-bad-object.html - shard-dg2-set2: [SKIP][6] ([Intel XE#1130]) -> [SKIP][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_mmap@pci-membarrier-bad-object.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/igt at xe_mmap@pci-membarrier-bad-object.html * igt at xe_pm_residency@toggle-gt-c6: - shard-dg2-set2: [SKIP][8] ([Intel XE#1130]) -> [INCOMPLETE][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_pm_residency@toggle-gt-c6.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-435/igt at xe_pm_residency@toggle-gt-c6.html Known issues ------------ Here are the changes found in XEIGTPW_12422_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at kms_addfb_basic@addfb25-x-tiled-legacy.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_addfb_basic@addfb25-x-tiled-legacy.html * 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][12] ([Intel XE#2550]) +23 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-463/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-bmg: [PASS][13] -> [SKIP][14] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#2136]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/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-270: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-6/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2327]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-2/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@x-tiled-64bpp-rotate-0: - shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#2136]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at kms_big_fb@x-tiled-64bpp-rotate-0.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_big_fb@x-tiled-64bpp-rotate-0.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#316]) +5 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-463/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#619]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#607]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-436/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +12 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/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-180-hflip: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#2314] / [Intel XE#2894]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2191]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-463/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#367]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-4-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1512]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-4/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#367]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-1/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +6 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-8/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc at pipe-c-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#787]) +237 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc at pipe-c-dp-2.html * igt at kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#455] / [Intel XE#787]) +50 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-d-dp-2.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#3442]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#3432]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-3/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#314]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-436/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-75: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#306]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_chamelium_color@ctm-0-75.html * igt at kms_chamelium_color@ctm-limited-range: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#306]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-2/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2252]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-5/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-4/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#373]) +13 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#307]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-3/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#3304]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-435/igt at kms_content_protection@lic-type-0 at pipe-a-dp-4.html * igt at kms_content_protection@lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_content_protection@lic-type-1.html - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#3278]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-2/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1468]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-1/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][50] ([Intel XE#1178]) +3 other tests fail [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][51] ([Intel XE#1188]) +1 other test fail [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_content_protection@uevent.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_12422/shard-bmg-6/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-64x21: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2320]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-8/igt at kms_cursor_crc@cursor-random-64x21.html * igt at kms_cursor_crc@cursor-rapid-movement-128x42: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1424]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-3/igt at kms_cursor_crc@cursor-rapid-movement-128x42.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#2321]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-3/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2291]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-5/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#309]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-5/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.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_8184/shard-lnl-8/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-4/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: [PASS][61] -> [INCOMPLETE][62] ([Intel XE#3226]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-6/igt at kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-8/igt at kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#323]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-435/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_feature_discovery@display-2x: - shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2373]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_feature_discovery@display-2x.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2374]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1135]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-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_8184/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/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 ad-hdmi-a6-dp4: - shard-dg2-set2: [PASS][70] -> [FAIL][71] ([Intel XE#301]) +1 other test fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank at ad-hdmi-a6-dp4.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank at ad-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_12422/shard-lnl-2/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-dg2-set2: [PASS][73] -> [INCOMPLETE][74] ([Intel XE#2049] / [Intel XE#2597]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_flip@2x-flip-vs-suspend-interruptible.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-463/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_flip@2x-plain-flip-interruptible: - shard-bmg: [PASS][75] -> [SKIP][76] ([Intel XE#2316]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_flip@2x-plain-flip-interruptible.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_flip@2x-plain-flip-interruptible.html * igt at kms_flip@flip-vs-expired-vblank at a-dp2: - shard-bmg: [PASS][77] -> [FAIL][78] ([Intel XE#2882]) +1 other test fail [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html * igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][79] ([Intel XE#301]) +1 other test fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a6.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1397] / [Intel XE#1745]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1397]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2293]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1401]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#455]) +25 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-2/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_force_connector_basic@force-connector-state: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#352]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-8/igt at kms_force_connector_basic@force-connector-state.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2311]) +7 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2312]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#651]) +39 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-slowdraw: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#651]) +7 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-8/igt at kms_frontbuffer_tracking@drrs-slowdraw.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: [PASS][91] -> [SKIP][92] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#653]) +39 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-dp-2: - shard-bmg: NOTRUN -> [FAIL][94] ([Intel XE#2333]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-2/igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-dp-2.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2313]) +8 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#656]) +15 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_histogram@global-color: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#3898]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-8/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#346]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-5/igt at kms_joiner@basic-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#346]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at kms_joiner@basic-big-joiner.html - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#346]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-6/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2927]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-435/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2925]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-435/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-2-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][103] ([Intel XE#616]) +3 other tests fail [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-2-size-256.html * igt at kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#2493]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-6/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][105] -> [SKIP][106] ([Intel XE#2571]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2763]) +8 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-436/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][108] ([Intel XE#2763]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-436/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html * igt at kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#870]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-435/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2938]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2392]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][113] ([Intel XE#1430]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-3/igt at kms_pm_dc@dc6-psr.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#1489]) +8 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#1489]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2893]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-2/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#1122]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1128]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-6/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-2/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr2-basic: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2850] / [Intel XE#929]) +21 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at kms_psr@psr2-basic.html * igt at kms_rotation_crc@bad-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#3414]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-436/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#3414] / [Intel XE#3904]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-8/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-none: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2413]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-8/igt at kms_scaling_modes@scaling-mode-none.html - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#2413] / [Intel XE#374]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-8/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#374]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-8/igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1.html * igt at kms_setmode@clone-exclusive-crtc: - shard-bmg: [PASS][126] -> [SKIP][127] ([Intel XE#1435]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_setmode@clone-exclusive-crtc.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1435]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-3/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: NOTRUN -> [FAIL][129] ([Intel XE#1729]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vblank@ts-continuation-dpms-suspend: - shard-dg2-set2: [PASS][130] -> [ABORT][131] ([Intel XE#2625]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_vblank@ts-continuation-dpms-suspend.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/igt at kms_vblank@ts-continuation-dpms-suspend.html * igt at kms_vblank@ts-continuation-suspend: - shard-bmg: [PASS][132] -> [SKIP][133] ([Intel XE#3007]) +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_vblank@ts-continuation-suspend.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#756]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-4/igt at kms_writeback@writeback-check-output-xrgb2101010.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_12422/shard-dg2-435/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1091] / [Intel XE#2849]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-4/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_copy_basic@mem-copy-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1123]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-436/igt at xe_copy_basic@mem-copy-linear-0xfd.html * igt at xe_dma_buf_sync@export-dma-buf-many-read-write-sync: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#1130]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-1/igt at xe_dma_buf_sync@export-dma-buf-many-read-write-sync.html * igt at xe_eudebug@basic-close: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#2905]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-1/igt at xe_eudebug@basic-close.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2905]) +13 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#3889]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2905]) +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#3889]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-5/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][144] ([Intel XE#1473]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-436/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][145] -> [TIMEOUT][146] ([Intel XE#1473] / [Intel XE#402]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at xe_evict@evict-beng-mixed-many-threads-small.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-threads-small: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#688]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-2/igt at xe_evict@evict-threads-small.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#1392]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html * igt at xe_exec_basic@multigpu-no-exec-basic: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2322]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-8/igt at xe_exec_basic@multigpu-no-exec-basic.html * igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap: - shard-dg2-set2: [PASS][150] -> [SKIP][151] ([Intel XE#1392]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1392]) +5 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-1/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt at xe_exec_fault_mode@many-bindexecqueue-userptr-imm: - shard-bmg: [PASS][153] -> [SKIP][154] ([Intel XE#1130]) +21 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#1130]) +6 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#288]) +24 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#255]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at xe_huc_copy@huc_copy.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2229]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-5/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#2229]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-435/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [PASS][160] -> [SKIP][161] ([Intel XE#1192]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_live_ktest@xe_mocs.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at xe_live_ktest@xe_mocs.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][162] ([Intel XE#1999]) +2 other tests fail [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#1416]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-4/igt at xe_mmap@vram.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#378]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/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][165] ([Intel XE#2541] / [Intel XE#3573]) +9 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-463/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#2248]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-6/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-436/igt at xe_pm@d3cold-basic-exec.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2284]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-8/igt at xe_pm@s2idle-d3cold-basic-exec.html - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-1/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [PASS][170] -> [ABORT][171] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-464/igt at xe_pm@s2idle-vm-bind-unbind-all.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_pm@s4-basic-exec: - shard-lnl: [PASS][172] -> [ABORT][173] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-4/igt at xe_pm@s4-basic-exec.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-2/igt at xe_pm@s4-basic-exec.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [ABORT][174] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#579]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-435/igt at xe_pm@vram-d3cold-threshold.html - shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#579]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-6/igt at xe_pm@vram-d3cold-threshold.html - shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#579]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-invalid-extension: - shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#944]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-435/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#944]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-2/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_sysfs_defaults@engine-defaults: - shard-dg2-set2: [PASS][180] -> [SKIP][181] ([Intel XE#1130]) +4 other tests skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at xe_sysfs_defaults@engine-defaults.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at xe_sysfs_defaults@engine-defaults.html #### Possible fixes #### * igt at kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][182] ([Intel XE#3007]) -> [PASS][183] +12 other tests pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_addfb_basic@bad-pitch-999.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-8/igt at kms_addfb_basic@bad-pitch-999.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [FAIL][184] ([Intel XE#911]) -> [PASS][185] +3 other tests pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-3/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_big_fb@x-tiled-8bpp-rotate-180: - shard-dg2-set2: [SKIP][186] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][187] +3 other tests pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_big_fb@x-tiled-8bpp-rotate-180.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-463/igt at kms_big_fb@x-tiled-8bpp-rotate-180.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [SKIP][188] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][189] +3 other tests pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-2/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-lnl: [INCOMPLETE][190] ([Intel XE#3862]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-1/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1: - shard-lnl: [INCOMPLETE][192] -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-1/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][194] -> [PASS][195] +1 other test pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-8/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][196] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/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-b-dp-4: - shard-dg2-set2: [DMESG-WARN][198] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][200] ([Intel XE#3124]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html * igt at kms_cursor_crc@cursor-random-64x21 at pipe-d-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][202] -> [PASS][203] +2 other tests pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-435/igt at kms_cursor_crc@cursor-random-64x21 at pipe-d-hdmi-a-6.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-436/igt at kms_cursor_crc@cursor-random-64x21 at pipe-d-hdmi-a-6.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-set2: [SKIP][204] ([Intel XE#2423] / [i915#2575]) -> [PASS][205] +9 other tests pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-435/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: [DMESG-WARN][206] ([Intel XE#877]) -> [PASS][207] [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-5/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: [SKIP][208] ([Intel XE#2291]) -> [PASS][209] +2 other tests pass [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][210] ([Intel XE#2882]) -> [PASS][211] +1 other test pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-5/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [SKIP][212] ([Intel XE#2316]) -> [PASS][213] +6 other tests pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-2/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][214] ([Intel XE#301]) -> [PASS][215] +3 other tests pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][216] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_flip@flip-vs-suspend.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-463/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at d-dp4: - shard-dg2-set2: [INCOMPLETE][218] ([Intel XE#2049]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_flip@flip-vs-suspend at d-dp4.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-463/igt at kms_flip@flip-vs-suspend at d-dp4.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][220] ([Intel XE#3012]) -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-1/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_plane_cursor@overlay: - shard-dg2-set2: [FAIL][222] ([Intel XE#616]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at kms_plane_cursor@overlay.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at kms_plane_cursor@overlay.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][224] ([Intel XE#718]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-5/igt at kms_pm_dc@dc5-psr.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-4/igt at kms_pm_dc@dc5-psr.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [FAIL][226] ([Intel XE#899]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [FAIL][228] ([Intel XE#2159]) -> [PASS][229] +1 other test pass [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-3/igt at kms_vrr@cmrr at pipe-a-edp-1.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-6/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@negative-basic: - shard-bmg: [SKIP][230] ([Intel XE#1499]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_vrr@negative-basic.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_vrr@negative-basic.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: [ABORT][232] ([Intel XE#2625]) -> [PASS][233] +4 other tests pass [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html * igt at xe_exec_threads@threads-mixed-shared-vm-basic: - shard-dg2-set2: [SKIP][234] ([Intel XE#1130]) -> [PASS][235] +18 other tests pass [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_exec_threads@threads-mixed-shared-vm-basic.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-436/igt at xe_exec_threads@threads-mixed-shared-vm-basic.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [SKIP][236] ([Intel XE#1192]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at xe_live_ktest@xe_bo.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-5/igt at xe_live_ktest@xe_bo.html * igt at xe_pm@s2idle-basic-exec: - shard-dg2-set2: [ABORT][238] ([Intel XE#1358]) -> [PASS][239] +1 other test pass [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_pm@s2idle-basic-exec.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-436/igt at xe_pm@s2idle-basic-exec.html * igt at xe_pm@s3-d3hot-basic-exec: - shard-dg2-set2: [ABORT][240] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at xe_pm@s3-d3hot-basic-exec.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at xe_pm@s3-d3hot-basic-exec.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][242] ([Intel XE#958]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-5/igt at xe_pm_residency@toggle-gt-c6.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-lnl-1/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_vm@munmap-style-unbind-either-side-full: - shard-bmg: [SKIP][244] ([Intel XE#1130]) -> [PASS][245] +26 other tests pass [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_vm@munmap-style-unbind-either-side-full.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at xe_vm@munmap-style-unbind-either-side-full.html #### Warnings #### * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-bmg: [SKIP][246] ([Intel XE#2327]) -> [SKIP][247] ([Intel XE#2136] / [Intel XE#2231]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_big_fb@linear-16bpp-rotate-90.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-bmg: [SKIP][248] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][249] ([Intel XE#1124]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html - shard-dg2-set2: [SKIP][250] ([Intel XE#2136]) -> [SKIP][251] ([Intel XE#1124]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-463/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: [SKIP][252] ([Intel XE#3007]) -> [SKIP][253] ([Intel XE#2314] / [Intel XE#2894]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-2/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html - shard-dg2-set2: [SKIP][254] ([Intel XE#2423] / [i915#2575]) -> [SKIP][255] ([Intel XE#2191]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-435/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][256] ([Intel XE#2136]) -> [SKIP][257] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-463/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][258] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][259] ([Intel XE#2887]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][260] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][261] ([Intel XE#455] / [Intel XE#787]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html * igt at kms_content_protection@atomic-dpms: - shard-dg2-set2: [SKIP][262] ([Intel XE#2423] / [i915#2575]) -> [FAIL][263] ([Intel XE#1178]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_content_protection@atomic-dpms.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@legacy: - shard-bmg: [DMESG-FAIL][264] ([Intel XE#877]) -> [FAIL][265] ([Intel XE#1178]) +1 other test fail [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_content_protection@legacy.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-1/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-1: - shard-bmg: [SKIP][266] ([Intel XE#2341]) -> [SKIP][267] ([Intel XE#3007]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_content_protection@lic-type-1.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_content_protection@lic-type-1.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: [SKIP][268] ([Intel XE#2423] / [i915#2575]) -> [SKIP][269] ([Intel XE#455]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_cursor_crc@cursor-random-max-size.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-463/igt at kms_cursor_crc@cursor-random-max-size.html - shard-bmg: [SKIP][270] ([Intel XE#3007]) -> [SKIP][271] ([Intel XE#2320]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_cursor_crc@cursor-random-max-size.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: [SKIP][272] ([Intel XE#2286]) -> [SKIP][273] ([Intel XE#3007]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][274] ([Intel XE#877]) -> [SKIP][275] ([Intel XE#2291]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: [SKIP][276] ([Intel XE#455]) -> [SKIP][277] ([Intel XE#2136] / [Intel XE#2351]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_dsc@dsc-with-bpc-formats.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_dsc@dsc-with-bpc-formats.html - shard-bmg: [SKIP][278] ([Intel XE#2244]) -> [SKIP][279] ([Intel XE#2136] / [Intel XE#2231]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-5/igt at kms_dsc@dsc-with-bpc-formats.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][280] ([Intel XE#2882]) -> [SKIP][281] ([Intel XE#2316]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][282] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][283] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html - shard-dg2-set2: [SKIP][284] ([Intel XE#2136]) -> [SKIP][285] ([Intel XE#455]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-435/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-mmap-wc: - shard-dg2-set2: [SKIP][286] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][287] ([Intel XE#651]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][288] ([Intel XE#2311]) -> [SKIP][289] ([Intel XE#2312]) +12 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][290] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][291] ([Intel XE#2311]) +3 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html - shard-dg2-set2: [SKIP][292] ([Intel XE#2136]) -> [SKIP][293] ([Intel XE#651]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][294] ([Intel XE#2312]) -> [SKIP][295] ([Intel XE#2311]) +9 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-bmg: [SKIP][296] ([Intel XE#2311]) -> [SKIP][297] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html - shard-dg2-set2: [SKIP][298] ([Intel XE#651]) -> [SKIP][299] ([Intel XE#2136] / [Intel XE#2351]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [FAIL][300] ([Intel XE#2333]) -> [SKIP][301] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][302] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][303] ([Intel XE#2333]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [FAIL][304] ([Intel XE#2333]) -> [SKIP][305] ([Intel XE#2312]) +6 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][306] ([Intel XE#2312]) -> [FAIL][307] ([Intel XE#2333]) +5 other tests fail [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte: - shard-dg2-set2: [SKIP][308] ([Intel XE#651]) -> [SKIP][309] ([Intel XE#2136]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][310] ([Intel XE#2313]) -> [SKIP][311] ([Intel XE#2312]) +11 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-rte: - shard-bmg: [SKIP][312] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][313] ([Intel XE#2313]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-rte.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][314] ([Intel XE#2312]) -> [SKIP][315] ([Intel XE#2313]) +9 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][316] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][317] ([Intel XE#2312]) +2 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html - shard-dg2-set2: [SKIP][318] ([Intel XE#2136]) -> [SKIP][319] ([Intel XE#653]) +2 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][320] ([Intel XE#653]) -> [SKIP][321] ([Intel XE#2136]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html - shard-bmg: [SKIP][322] ([Intel XE#2312]) -> [SKIP][323] ([Intel XE#2136] / [Intel XE#2231]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][324] ([Intel XE#3544]) -> [SKIP][325] ([Intel XE#3374] / [Intel XE#3544]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-8/igt at kms_hdr@brightness-with-hdr.html * igt at kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][326] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][327] ([Intel XE#870]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_pm_backlight@fade-with-dpms.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-8/igt at kms_pm_backlight@fade-with-dpms.html - shard-dg2-set2: [SKIP][328] ([Intel XE#2136]) -> [SKIP][329] ([Intel XE#870]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_pm_backlight@fade-with-dpms.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-436/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][330] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][331] ([Intel XE#1489]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-5/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html - shard-dg2-set2: [SKIP][332] ([Intel XE#2136]) -> [SKIP][333] ([Intel XE#1489]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/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-bmg: [SKIP][334] ([Intel XE#1489]) -> [SKIP][335] ([Intel XE#2136] / [Intel XE#2231]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-1/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr@fbc-psr-cursor-blt: - shard-bmg: [SKIP][336] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][337] ([Intel XE#2234] / [Intel XE#2850]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_psr@fbc-psr-cursor-blt.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_psr@fbc-psr-cursor-blt.html - shard-dg2-set2: [SKIP][338] ([Intel XE#2136]) -> [SKIP][339] ([Intel XE#2850] / [Intel XE#929]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_psr@fbc-psr-cursor-blt.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-463/igt at kms_psr@fbc-psr-cursor-blt.html * igt at kms_psr@pr-sprite-plane-move: - shard-dg2-set2: [SKIP][340] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][341] ([Intel XE#2136]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_psr@pr-sprite-plane-move.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at kms_psr@pr-sprite-plane-move.html - shard-bmg: [SKIP][342] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][343] ([Intel XE#2136] / [Intel XE#2231]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at kms_psr@pr-sprite-plane-move.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_psr@pr-sprite-plane-move.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-bmg: [SKIP][344] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][345] ([Intel XE#3007]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][346] ([Intel XE#362]) -> [SKIP][347] ([Intel XE#1500]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][348] ([Intel XE#1130]) -> [SKIP][349] ([Intel XE#1126]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0x3fff.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at xe_copy_basic@mem-set-linear-0x3fff.html * igt at xe_eudebug_online@pagefault-write: - shard-bmg: [SKIP][350] ([Intel XE#1130]) -> [SKIP][351] ([Intel XE#2905]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_eudebug_online@pagefault-write.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-2/igt at xe_eudebug_online@pagefault-write.html - shard-dg2-set2: [SKIP][352] ([Intel XE#1130]) -> [SKIP][353] ([Intel XE#2905]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_eudebug_online@pagefault-write.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/igt at xe_eudebug_online@pagefault-write.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [TIMEOUT][354] ([Intel XE#1473]) -> [INCOMPLETE][355] ([Intel XE#1473]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at xe_evict@evict-beng-mixed-many-threads-small.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-2/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [TIMEOUT][356] ([Intel XE#1473]) -> [FAIL][357] ([Intel XE#1000]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at xe_evict@evict-beng-threads-large.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-8/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [INCOMPLETE][358] ([Intel XE#1473]) -> [TIMEOUT][359] ([Intel XE#1473] / [Intel XE#2472]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at xe_evict@evict-mixed-threads-large.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-4/igt at xe_evict@evict-mixed-threads-large.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race: - shard-bmg: [SKIP][360] ([Intel XE#1130]) -> [SKIP][361] ([Intel XE#2322]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-5/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-once-userptr-rebind: - shard-dg2-set2: [SKIP][362] ([Intel XE#1130]) -> [SKIP][363] ([Intel XE#1392]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_exec_basic@multigpu-once-userptr-rebind.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-432/igt at xe_exec_basic@multigpu-once-userptr-rebind.html * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch: - shard-dg2-set2: [SKIP][364] ([Intel XE#288]) -> [SKIP][365] ([Intel XE#1130]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html * igt at xe_exec_fault_mode@many-userptr-rebind-imm: - shard-dg2-set2: [SKIP][366] ([Intel XE#1130]) -> [SKIP][367] ([Intel XE#288]) +3 other tests skip [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_exec_fault_mode@many-userptr-rebind-imm.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-433/igt at xe_exec_fault_mode@many-userptr-rebind-imm.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-bmg: [SKIP][368] ([Intel XE#2905]) -> [SKIP][369] ([Intel XE#1130]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_exec_sip_eudebug@breakpoint-writesip.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-1/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][370] ([Intel XE#1192]) -> [SKIP][371] ([Intel XE#2833]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-1/igt at xe_live_ktest@xe_eudebug.html * igt at xe_oa@stress-open-close: - shard-dg2-set2: [SKIP][372] ([Intel XE#1130]) -> [SKIP][373] ([Intel XE#2541] / [Intel XE#3573]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_oa@stress-open-close.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at xe_oa@stress-open-close.html * igt at xe_oa@syncs-ufence-wait-cfg: - shard-dg2-set2: [SKIP][374] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][375] ([Intel XE#1130]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-463/igt at xe_oa@syncs-ufence-wait-cfg.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-dg2-464/igt at xe_oa@syncs-ufence-wait-cfg.html * igt at xe_peer2peer@read: - shard-bmg: [SKIP][376] ([Intel XE#2427]) -> [SKIP][377] ([Intel XE#2557]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at xe_peer2peer@read.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/shard-bmg-1/igt at xe_peer2peer@read.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#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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#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#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#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [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#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#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#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [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#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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [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#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#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#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#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#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [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_8184 -> IGTPW_12422 * Linux: xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c -> xe-2465-e9fabefcb38e3d79cdb3e51e771b6a83f7fa25c2 IGTPW_12422: 8616c1eeda1eb48db1cee782a15467107d1f81cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8184: ee7a3ac616f55f6ed1b959ff951237099bda86d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c: c9da975358cd0763449f08b7063ee935eace4f8c xe-2465-e9fabefcb38e3d79cdb3e51e771b6a83f7fa25c2: e9fabefcb38e3d79cdb3e51e771b6a83f7fa25c2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12422/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sun Jan 12 12:00:43 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sun, 12 Jan 2025 12:00:43 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/xe=5Fdebugfs=3A_Im?= =?utf-8?q?prove_test=5Fgt_subtest?= In-Reply-To: <20250109105721.914096-1-pravalika.gurram@intel.com> References: <20250109105721.914096-1-pravalika.gurram@intel.com> Message-ID: <173668324323.2878109.17876879780583969027@b555e5b46a47> == Series Details == Series: tests/xe_debugfs: Improve test_gt subtest URL : https://patchwork.freedesktop.org/series/143322/ State : failure == Summary == CI Bug Log - changes from IGT_8183_full -> IGTPW_12417_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12417_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12417_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_12417/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12417_full: ### IGT changes ### #### Possible regressions #### * igt at gem_softpin@noreloc-s3: - shard-rkl: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-5/igt at gem_softpin@noreloc-s3.html * igt at i915_pm_rpm@gem-execbuf-stress-pc8: - shard-rkl: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-4/igt at i915_pm_rpm@gem-execbuf-stress-pc8.html * igt at i915_pm_rps@engine-order: - shard-glk: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-glk2/igt at i915_pm_rps@engine-order.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk7/igt at i915_pm_rps@engine-order.html * igt at i915_selftest@live at gem_contexts: - shard-dg1: [PASS][5] -> [DMESG-FAIL][6] +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg1-12/igt at i915_selftest@live at gem_contexts.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-17/igt at i915_selftest@live at gem_contexts.html * igt at perf_pmu@module-unload: - shard-glk: [PASS][7] -> [ABORT][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-glk5/igt at perf_pmu@module-unload.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk2/igt at perf_pmu@module-unload.html Known issues ------------ Here are the changes found in IGTPW_12417_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-10/igt at api_intel_bb@object-reloc-keep-cache.html * igt at device_reset@unbind-cold-reset-rebind: - shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#11078]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-12/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-check-all at bcs0: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +12 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-18/igt at drm_fdinfo@busy-check-all at bcs0.html * igt at drm_fdinfo@busy-check-all at ccs0: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +6 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-7/igt at drm_fdinfo@busy-check-all at ccs0.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_12417/shard-dg2-10/igt at drm_fdinfo@most-busy-idle-check-all at vecs1.html * igt at gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#3936]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-10/igt at gem_busy@semaphore.html * igt at gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-17/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-1/igt at gem_ccs@ctrl-surf-copy-new-ctx.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_12417/shard-tglu-1/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#7697]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-1/igt at gem_close_race@multigpu-basic-threads.html - shard-rkl: NOTRUN -> [SKIP][21] ([i915#7697]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-6/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#6335]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_create@create-ext-set-pat: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#8562]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-13/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][24] ([i915#12353]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk1/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#8555]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-5/igt at gem_ctx_persistence@heartbeat-hang.html * igt at gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][26] ([i915#1099]) +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-snb2/igt at gem_ctx_persistence@processes.html * igt at gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-8/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-14/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-7/igt at gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-2/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@hibernate: - shard-tglu: NOTRUN -> [ABORT][31] ([i915#10030] / [i915#7975] / [i915#8213]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-10/igt at gem_eio@hibernate.html - shard-rkl: NOTRUN -> [ABORT][32] ([i915#7975] / [i915#8213]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-1/igt at gem_eio@hibernate.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][33] ([i915#13390]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk9/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][34] ([i915#8898]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-snb2/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4812]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-11/igt at gem_exec_balancer@bonded-false-hang.html * igt at gem_exec_balancer@parallel-keep-in-fence: - shard-tglu-1: NOTRUN -> [SKIP][36] ([i915#4525]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at gem_exec_balancer@parallel-keep-in-fence.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#4525]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-1/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_capture@capture-invisible: - shard-tglu-1: NOTRUN -> [SKIP][38] ([i915#6334]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture-invisible at smem0: - shard-glk: NOTRUN -> [SKIP][39] ([i915#6334]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk9/igt at gem_exec_capture@capture-invisible at smem0.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][40] ([i915#11965]) +4 other tests fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-3/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_fence@syncobj-backward-timeline-chain-engines: - shard-snb: NOTRUN -> [SKIP][41] +432 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-snb2/igt at gem_exec_fence@syncobj-backward-timeline-chain-engines.html * igt at gem_exec_flush@basic-batch-kernel-default-cmd: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3711]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-4/igt at gem_exec_flush@basic-batch-kernel-default-cmd.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-10/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-11/igt at gem_exec_flush@basic-uc-ro-default.html * igt at gem_exec_flush@basic-wb-rw-before-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_12417/shard-dg1-12/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_reloc@basic-concurrent16: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) +4 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-3/igt at gem_exec_reloc@basic-concurrent16.html * igt at gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3281]) +20 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-10/igt at gem_exec_reloc@basic-gtt.html * igt at gem_exec_reloc@basic-gtt-cpu: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +8 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-17/igt at gem_exec_reloc@basic-gtt-cpu.html * igt at gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +12 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-2/igt at gem_exec_reloc@basic-wc-read-noreloc.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-3/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_schedule@reorder-wide: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4812]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-12/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: NOTRUN -> [ABORT][52] ([i915#7975] / [i915#8213]) +1 other test abort [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4860]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-8/igt at gem_fence_thrash@bo-write-verify-x.html - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-12/igt at gem_fence_thrash@bo-write-verify-x.html - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-3/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613] / [i915#7582]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-7/igt at gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][57] ([i915#4613] / [i915#7582]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-8/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@parallel-multi: - shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at gem_lmem_swapping@parallel-multi.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +6 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-2/igt at gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu: NOTRUN -> [SKIP][60] ([i915#4613]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-4/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][61] ([i915#4613]) +6 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk1/igt at gem_lmem_swapping@random-engines.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#12193]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-17/igt at gem_lmem_swapping@verify-random-ccs.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-1/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_lmem_swapping@verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4565]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-17/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3282]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-8/igt at gem_madvise@dontneed-before-exec.html * igt at gem_mmap_gtt@basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4077]) +14 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-14/igt at gem_mmap_gtt@basic-small-copy.html * igt at gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +8 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-7/igt at gem_mmap_wc@bad-size.html * igt at gem_mmap_wc@read-write: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4083]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-7/igt at gem_mmap_wc@read-write.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-17/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-14/igt at gem_partial_pwrite_pread@reads-snoop.html * igt at gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3282]) +7 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-7/igt at gem_partial_pwrite_pread@writes-after-reads.html * igt at gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) +7 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-10/igt at gem_pread@snoop.html * igt at gem_pxp@create-regular-buffer: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-5/igt at gem_pxp@create-regular-buffer.html * igt at gem_pxp@display-protected-crc: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-17/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#13398]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [TIMEOUT][76] ([i915#12917] / [i915#12964]) +3 other tests timeout [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-4/igt at gem_pxp@reject-modify-context-protection-on.html * igt at gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8428]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-4/igt at gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#5190] / [i915#8428]) +13 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-8/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-4/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][80] ([i915#8411]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-5/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4079]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-17/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4079]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-1/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_12417/shard-dg1-17/igt at gem_softpin@evict-snoop.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4885]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-8/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_softpin@noreloc: - shard-rkl: NOTRUN -> [DMESG-WARN][85] ([i915#12964]) +22 other tests dmesg-warn [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-3/igt at gem_softpin@noreloc.html * igt at gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4077]) +22 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-8/igt at gem_tiled_partial_pwrite_pread@writes.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][87] ([i915#13263] / [i915#13449]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk8/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@access-control: - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#3297]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at gem_userptr_blits@access-control.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_12417/shard-tglu-6/igt at gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][90] ([i915#3323]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk4/igt at gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#3323]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-4/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3282] / [i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-2/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4880]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-10/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4880]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-14/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#3297]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-8/igt at gem_userptr_blits@readonly-pwrite-unsync.html - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3297]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-3/igt at gem_userptr_blits@readonly-pwrite-unsync.html - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-8/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_userptr_blits@readonly-unsync: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#3297]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-18/igt at gem_userptr_blits@readonly-unsync.html * igt at gem_userptr_blits@relocations: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#3281] / [i915#3297]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-5/igt at gem_userptr_blits@relocations.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#3281] / [i915#3297]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-12/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#3297]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-5/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][102] +21 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-7/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#2527]) +4 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-17/igt at gen9_exec_parse@bb-secure.html - shard-tglu: NOTRUN -> [SKIP][104] ([i915#2527] / [i915#2856]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-8/igt at gen9_exec_parse@bb-secure.html - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-1/igt at gen9_exec_parse@bb-secure.html * igt at gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#2527]) +6 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-6/igt at gen9_exec_parse@bb-start-far.html * igt at gen9_exec_parse@bb-start-out: - shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#2527] / [i915#2856]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at gen9_exec_parse@bb-start-out.html * igt at gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#2856]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-8/igt at gen9_exec_parse@bb-start-param.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#4881]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-5/igt at i915_fb_tiling.html * igt at i915_module_load@reload-no-display: - shard-tglu: [PASS][110] -> [DMESG-WARN][111] ([i915#13029]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-tglu-9/igt at i915_module_load@reload-no-display.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-7/igt at i915_module_load@reload-no-display.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: [PASS][112] -> [DMESG-WARN][113] ([i915#13475]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg1-18/igt at i915_module_load@reload-with-fault-injection.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-12/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#6412]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-5/igt at i915_module_load@resize-bar.html * igt at i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#8399]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-6/igt at i915_pm_freq_api@freq-basic-api.html - shard-rkl: NOTRUN -> [SKIP][116] ([i915#8399]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-4/igt at i915_pm_freq_api@freq-basic-api.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-tglu-1: NOTRUN -> [WARN][117] ([i915#2681]) +4 other tests warn [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rpm@reg-read-ioctl: - shard-rkl: [PASS][118] -> [SKIP][119] ([i915#13328]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-1/igt at i915_pm_rpm@reg-read-ioctl.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-1/igt at i915_pm_rpm@reg-read-ioctl.html * igt at i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][120] ([i915#8346]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-4/igt at i915_pm_rps@reset.html * igt at i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#11681]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-7/igt at i915_pm_rps@thresholds.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#11681]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-13/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_pm_sseu@full-enable: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#4387]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-7/igt at i915_pm_sseu@full-enable.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#5723]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-7/igt at i915_query@test-query-geometry-subslices.html - shard-tglu: NOTRUN -> [SKIP][125] ([i915#5723]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-8/igt at i915_query@test-query-geometry-subslices.html * igt at i915_suspend@forcewake: - shard-rkl: NOTRUN -> [INCOMPLETE][126] ([i915#4817]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-5/igt at i915_suspend@forcewake.html * igt at intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#7707]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-4/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4212]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-1/igt at kms_addfb_basic@clobberred-modifier.html * igt at kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#4212]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-18/igt at kms_addfb_basic@framebuffer-vs-set-tiling.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-mtlp: [PASS][130] -> [FAIL][131] ([i915#10991]) +1 other test fail [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-5/igt at kms_async_flips@alternate-sync-async-flip.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-5/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-tglu: [PASS][132] -> [FAIL][133] ([i915#10991] / [i915#13320]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-tglu-2/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-3/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1: - shard-tglu: [PASS][134] -> [FAIL][135] ([i915#10991]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-tglu-2/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-3/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: [PASS][136] -> [INCOMPLETE][137] ([i915#12761]) +1 other test incomplete [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-glk8/igt at kms_async_flips@async-flip-suspend-resume.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk6/igt at kms_async_flips@async-flip-suspend-resume.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][138] ([i915#8709]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/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-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#8709]) +15 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/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-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#8709]) +11 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-3/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-3-4-mc-ccs.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#12967] / [i915#6228]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-7/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#3555]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-1/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#1769] / [i915#3555]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-addfb: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#5286]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_big_fb@4-tiled-addfb.html - shard-dg1: NOTRUN -> [SKIP][145] ([i915#5286]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/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: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#5286]) +13 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#5286]) +8 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-6/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-async-flip: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#4538] / [i915#5286]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-14/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#4538] / [i915#5190]) +17 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-8/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#3638]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-17/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3638]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-7/igt at kms_big_fb@y-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#5190]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-1/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][153] +9 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-3/igt at kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#4538]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-13/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#6095]) +155 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-14/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-4.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc 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_12417/shard-dg2-4/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-1.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][157] +487 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk3/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-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#10307] / [i915#6095]) +161 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-7/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-3.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#12313]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-13/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#12313]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-2/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs at pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#4423] / [i915#6095]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-17/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs at pipe-a-hdmi-a-4.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#6095]) +79 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-8/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][163] ([i915#6095]) +97 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/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-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#12805]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-3/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#6095]) +39 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/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][166] ([i915#12805]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-3/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][167] ([i915#12796]) +3 other tests incomplete [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk2/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-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#6095]) +23 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-4/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][169] ([i915#12313]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-2/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#6095]) +29 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-7/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][171] ([i915#12313]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-10/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][172] ([i915#12313]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-8/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#7213] / [i915#9010]) +4 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-3/igt at kms_cdclk@mode-transition.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#3742]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-12/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#11616] / [i915#7213]) +3 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-8/igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-1.html * igt at kms_chamelium_audio@dp-audio-edid: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +16 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-5/igt at kms_chamelium_audio@dp-audio-edid.html * igt at kms_chamelium_audio@hdmi-audio: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-4/igt at kms_chamelium_audio@hdmi-audio.html * igt at kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +5 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +7 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-18/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@dp-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#11151] / [i915#7828]) +9 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-10/igt at kms_chamelium_hpd@dp-hpd-fast.html * igt at kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#11151] / [i915#7828]) +13 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-6/igt at kms_chamelium_hpd@vga-hpd-fast.html * igt at kms_color@ctm-negative: - shard-dg1: NOTRUN -> [DMESG-WARN][182] ([i915#4423]) +2 other tests dmesg-warn [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-17/igt at kms_color@ctm-negative.html * igt at kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#7118] / [i915#9424]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-3/igt at kms_content_protection@atomic.html * igt at kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#7118] / [i915#9424]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-2/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#3116]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-3/igt at kms_content_protection@dp-mst-type-0.html - shard-tglu: NOTRUN -> [SKIP][186] ([i915#3116] / [i915#3299]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-7/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#3116] / [i915#3299]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#9424]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-11/igt at kms_content_protection@lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][189] ([i915#9424]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-13/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#7118]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-7/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#3555]) +5 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-4/igt at kms_cursor_crc@cursor-offscreen-32x32.html - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8814]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-8/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#13049]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-3/igt at kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][195] ([i915#13049]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-1/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#13049]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-11/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: NOTRUN -> [DMESG-WARN][197] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-4/igt at kms_cursor_crc@cursor-onscreen-64x21.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#8814]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-6/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#13049]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-4/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#13049]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#9809]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-4/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#13046] / [i915#5354]) +7 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/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][203] ([i915#4103]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-10/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#4103]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][205] +34 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-4/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#9067]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-4/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_12417/shard-dg1-12/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-dg2: NOTRUN -> [SKIP][208] ([i915#4103] / [i915#4213]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#4103]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#9723]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#8588]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-4/igt at kms_display_modes@mst-extended-mode-negative.html - shard-dg1: NOTRUN -> [SKIP][212] ([i915#8588]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-14/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#1769] / [i915#3555] / [i915#3804]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-7/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-tglu: NOTRUN -> [SKIP][214] ([i915#3804]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-7/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1.html * igt at kms_dp_aux_dev: - shard-dg2: [PASS][215] -> [SKIP][216] ([i915#1257]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-10/igt at kms_dp_aux_dev.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-5/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#12402]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-1/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][218] ([i915#12402]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-4/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#12402]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-3/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#8812]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-4/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-1/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-4/igt at kms_dsc@dsc-with-output-formats.html - shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#3840]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-12/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][225] ([i915#9878]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk8/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#3955]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-4/igt at kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][227] ([i915#3469]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-6/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#2065] / [i915#4854]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#4854]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-13/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#1839]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#1839]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-6/igt at kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][232] ([i915#1839]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-4/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#9337]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-7/igt at kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][234] ([i915#9337]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-4/igt at kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#9337]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-8/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#658]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-10/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#658]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3637]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-3/igt at kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#3637]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-8/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#9934]) +5 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-13/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][241] ([i915#12745] / [i915#4839]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk3/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: NOTRUN -> [INCOMPLETE][242] ([i915#4839]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk3/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#9934]) +9 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-4/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#3637]) +5 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/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][245] ([i915#9934]) +9 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-11/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg1: [PASS][246] -> [INCOMPLETE][247] ([i915#4839] / [i915#6113]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg1-18/igt at kms_flip@flip-vs-suspend-interruptible.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-18/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a4: - shard-dg1: [PASS][248] -> [INCOMPLETE][249] ([i915#6113]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg1-18/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a4.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-18/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a4.html * igt at kms_flip@wf_vblank-ts-check: - shard-dg2: NOTRUN -> [FAIL][250] ([i915#11989]) +3 other tests fail [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-5/igt at kms_flip@wf_vblank-ts-check.html - shard-snb: [PASS][251] -> [FAIL][252] ([i915#11989]) +1 other test fail [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-snb2/igt at kms_flip@wf_vblank-ts-check.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-snb2/igt at kms_flip@wf_vblank-ts-check.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#3555]) +3 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-3/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: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-12/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#2672]) +5 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-10/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-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +4 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-5/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#2587] / [i915#2672]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-14/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-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#2587] / [i915#2672] / [i915#3555]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-6/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#2672]) +5 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#2672] / [i915#3555]) +5 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-1/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: NOTRUN -> [SKIP][262] ([i915#2587] / [i915#2672]) +4 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-3/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: - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#3555]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/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-upscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#2587] / [i915#2672]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#2672] / [i915#3555] / [i915#5190]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-3/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#8813]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#8708]) +4 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#5354]) +42 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-8/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-snb: [PASS][269] -> [SKIP][270] +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-snb2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][271] +56 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: - shard-dg2: [PASS][272] -> [FAIL][273] ([i915#6880]) +1 other test fail [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#5439]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#3458]) +16 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][276] +46 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#8708]) +39 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#9766]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-13/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#10433] / [i915#3458]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#4423] / [i915#8708]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#3458]) +19 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#3023]) +40 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#1825]) +15 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-7/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#1825]) +62 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][285] +83 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-10/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#8708]) +8 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-12/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@bpc-switch-dpms: - shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@brightness-with-hdr: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#12713]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-2/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-10/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-5/igt at kms_hdr@static-toggle-dpms.html - shard-rkl: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8228]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-3/igt at kms_hdr@static-toggle-dpms.html * igt at kms_histogram@algo-basic: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#13389]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-18/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#13389]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-9/igt at kms_histogram@algo-color.html * igt at kms_histogram@global-basic: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#13388]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-7/igt at kms_histogram@global-basic.html * igt at kms_histogram@global-color: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#13388]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-3/igt at kms_histogram@global-color.html - shard-dg2: NOTRUN -> [SKIP][296] ([i915#13388]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-4/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#12388]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-4/igt at kms_joiner@basic-force-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][298] ([i915#12388]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-5/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#12394]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-9/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#12339]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-8/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#10656]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-2/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][302] ([i915#10656]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-4/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#12394]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][304] ([i915#12394]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-14/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#12339]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#6301]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][307] ([i915#13026]) +1 other test incomplete [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk1/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][308] ([i915#10647] / [i915#12169]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk1/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][309] ([i915#10647]) +1 other test fail [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk1/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_scaling@intel-max-src-size: - shard-tglu: NOTRUN -> [FAIL][310] ([i915#8292]) +1 other test fail [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-8/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#12247]) +8 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#3555]) +9 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-5/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation at pipe-b: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#12247]) +8 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-5/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation at pipe-b.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_12417/shard-rkl-2/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#12247]) +7 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-10/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: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#12247] / [i915#9423]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-4/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#6953]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-3/igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#12247] / [i915#6953]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/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: NOTRUN -> [SKIP][319] ([i915#12247] / [i915#3555]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-8/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#12247] / [i915#3555]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-2/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: NOTRUN -> [SKIP][321] ([i915#12247]) +3 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-8/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-c: - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#12247]) +12 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-c.html * igt at kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#9812]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][324] ([i915#5354]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-13/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#12343]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-5/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#5354]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-4/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#3828]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-7/igt at kms_pm_dc@dc5-retention-flops.html - shard-tglu-1: NOTRUN -> [SKIP][328] ([i915#3828]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-dg1: NOTRUN -> [SKIP][329] ([i915#3361]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-17/igt at kms_pm_dc@dc6-dpms.html - shard-tglu: [PASS][330] -> [FAIL][331] ([i915#9295]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-tglu-10/igt at kms_pm_dc@dc6-dpms.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-7/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#9685]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-8/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][333] ([i915#3828]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-9/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#8430]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-6/igt at kms_pm_lpsp@screens-disabled.html - shard-tglu: NOTRUN -> [SKIP][335] ([i915#8430]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-4/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#9519]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-2/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][337] -> [SKIP][338] ([i915#9519]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-10/igt at kms_pm_rpm@dpms-non-lpsp.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-4/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][339] -> [SKIP][340] ([i915#9519]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-4/igt at kms_pm_rpm@modeset-lpsp.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-3/igt at kms_pm_rpm@modeset-lpsp.html - shard-dg1: NOTRUN -> [SKIP][341] ([i915#9519]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-17/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@pm-caching: - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#4077]) +4 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-8/igt at kms_pm_rpm@pm-caching.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: [PASS][343] -> [INCOMPLETE][344] ([i915#10553]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-glk7/igt at kms_pm_rpm@system-suspend-modeset.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk5/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][345] ([i915#6524] / [i915#6805]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-8/igt at kms_prime@basic-crc-vgem.html * igt at kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#6524]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-1/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][347] ([i915#11520]) +7 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-7/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][348] ([i915#11520]) +15 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-snb5/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#9808]) +3 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-8/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf at pipe-a-edp-1.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][350] ([i915#11520]) +16 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-5/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#12316]) +5 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-4/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][352] ([i915#11520]) +8 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-18/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html - shard-glk: NOTRUN -> [SKIP][353] ([i915#11520]) +13 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk5/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#11520]) +5 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#11520]) +10 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-3/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg1: NOTRUN -> [SKIP][356] ([i915#9683]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-17/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#9683]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-7/igt at kms_psr2_su@page_flip-p010.html - shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#9683]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#9683]) +2 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-7/igt at kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][360] ([i915#9683]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-2/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +31 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-10/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_psr@fbc-psr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#9732]) +21 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-10/igt at kms_psr@fbc-psr-sprite-plane-move.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][363] ([i915#9688]) +12 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-7/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#1072] / [i915#9732]) +33 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-1/igt at kms_psr@psr-sprite-plane-move.html * igt at kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +16 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-14/igt at kms_psr@psr2-sprite-mmap-gtt.html * igt at kms_psr@psr2-suspend: - shard-tglu-1: NOTRUN -> [SKIP][366] ([i915#9732]) +12 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_psr@psr2-suspend.html * igt at kms_rotation_crc@cursor-rotation-180: - shard-dg1: [PASS][367] -> [DMESG-WARN][368] ([i915#4423]) +4 other tests dmesg-warn [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg1-17/igt at kms_rotation_crc@cursor-rotation-180.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-17/igt at kms_rotation_crc@cursor-rotation-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][369] ([i915#5289]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][370] ([i915#5289]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][371] ([i915#12755]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-10/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][372] ([i915#13179]) +1 other test abort [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-snb5/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@basic: - shard-tglu: [PASS][373] -> [FAIL][374] ([i915#5465]) +2 other tests fail [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-tglu-8/igt at kms_setmode@basic.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-10/igt at kms_setmode@basic.html * igt at kms_setmode@basic-clone-single-crtc: - shard-dg1: NOTRUN -> [SKIP][375] ([i915#3555]) +3 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-13/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][376] ([i915#3555] / [i915#8809]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-3/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#3555]) +7 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-3/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-tglu-1: NOTRUN -> [SKIP][378] ([i915#3555]) +2 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tiled_display@basic-test-pattern: - shard-tglu-1: NOTRUN -> [SKIP][379] ([i915#8623]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at kms_tiled_display@basic-test-pattern.html - shard-dg1: NOTRUN -> [SKIP][380] ([i915#8623]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-13/igt at kms_tiled_display@basic-test-pattern.html - shard-mtlp: NOTRUN -> [SKIP][381] ([i915#8623]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-2/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][382] ([i915#8623]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-10/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][383] ([i915#12276]) +1 other test incomplete [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk7/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-2.html * igt at kms_vblank@wait-forked-busy-hang: - shard-rkl: [PASS][384] -> [DMESG-WARN][385] ([i915#12964]) +14 other tests dmesg-warn [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-4/igt at kms_vblank@wait-forked-busy-hang.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-2/igt at kms_vblank@wait-forked-busy-hang.html * igt at kms_vrr@flip-basic-fastset: - shard-mtlp: NOTRUN -> [SKIP][386] ([i915#8808] / [i915#9906]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-8/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][387] ([i915#11920]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-10/igt at kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][388] ([i915#11920]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-5/igt at kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][389] ([i915#11920]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-2/igt at kms_vrr@lobf.html * igt at kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][390] ([i915#9906]) +1 other test skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-12/igt at kms_vrr@max-min.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][391] ([i915#9906]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-2/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-tglu: NOTRUN -> [SKIP][392] ([i915#9906]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-9/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][393] ([i915#2437] / [i915#9412]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-11/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][394] ([i915#2437]) +1 other test skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-10/igt at kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][395] ([i915#2437]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-7/igt at kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][396] ([i915#2437]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-10/igt at kms_writeback@writeback-fb-id.html - shard-rkl: NOTRUN -> [SKIP][397] ([i915#2437]) +1 other test skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-2/igt at kms_writeback@writeback-fb-id.html - shard-dg1: NOTRUN -> [SKIP][398] ([i915#2437]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-18/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][399] ([i915#2437]) +2 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-glk7/igt at kms_writeback@writeback-pixel-formats.html - shard-rkl: NOTRUN -> [SKIP][400] ([i915#2437] / [i915#9412]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-5/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][401] ([i915#7387]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-11/igt at perf@global-sseu-config.html * igt at perf@unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][402] ([i915#2433]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-12/igt at perf@unprivileged-single-ctx-counters.html * igt at perf_pmu@busy-double-start at rcs0: - shard-mtlp: [PASS][403] -> [FAIL][404] ([i915#4349]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-5/igt at perf_pmu@busy-double-start at rcs0.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-4/igt at perf_pmu@busy-double-start at rcs0.html * igt at perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][405] ([i915#8850]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-10/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@event-wait: - shard-mtlp: NOTRUN -> [SKIP][406] ([i915#8807]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-6/igt at perf_pmu@event-wait.html * igt at perf_pmu@event-wait at rcs0: - shard-mtlp: NOTRUN -> [SKIP][407] ([i915#3555] / [i915#8807]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-mtlp-6/igt at perf_pmu@event-wait at rcs0.html * igt at perf_pmu@frequency at gt0: - shard-dg2: [PASS][408] -> [FAIL][409] ([i915#12549] / [i915#6806]) +1 other test fail [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-7/igt at perf_pmu@frequency at gt0.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-4/igt at perf_pmu@frequency at gt0.html - shard-dg1: [PASS][410] -> [FAIL][411] ([i915#12549] / [i915#6806]) +1 other test fail [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg1-13/igt at perf_pmu@frequency at gt0.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-14/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@most-busy-idle-check-all at rcs0: - shard-dg1: [PASS][412] -> [FAIL][413] ([i915#11943]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg1-14/igt at perf_pmu@most-busy-idle-check-all at rcs0.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-18/igt at perf_pmu@most-busy-idle-check-all at rcs0.html - shard-dg2: [PASS][414] -> [FAIL][415] ([i915#11943]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-3/igt at perf_pmu@most-busy-idle-check-all at rcs0.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-4/igt at perf_pmu@most-busy-idle-check-all at rcs0.html * igt at perf_pmu@rc6-all-gts: - shard-tglu-1: NOTRUN -> [SKIP][416] ([i915#8516]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][417] ([i915#8516]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-4/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][418] ([i915#3291] / [i915#3708]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-2/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][419] ([i915#3708]) +1 other test skip [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-7/igt at prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][420] ([i915#3708]) +1 other test skip [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-rkl-2/igt at prime_vgem@fence-read-hang.html * igt at prime_vgem@fence-write-hang: - shard-dg1: NOTRUN -> [SKIP][421] ([i915#3708]) +1 other test skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-18/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][422] ([i915#9917]) +1 other test skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg2-1/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-dg1: NOTRUN -> [SKIP][423] ([i915#9917]) +1 other test skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-dg1-13/igt at sriov_basic@enable-vfs-autoprobe-on.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-5: - shard-tglu-1: NOTRUN -> [FAIL][424] ([i915#12910]) +18 other tests fail [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/shard-tglu-1/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-5.html * igt at t == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12417/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sun Jan 12 21:32:30 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sun, 12 Jan 2025 21:32:30 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_lib/meson=2Ebuild=3A_all?= =?utf-8?q?ow_build_IGT_with_link_time_optimization_=28rev2=29?= In-Reply-To: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> References: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> Message-ID: <173671755098.3015349.14059085318624153320@b555e5b46a47> == Series Details == Series: lib/meson.build: allow build IGT with link time optimization (rev2) URL : https://patchwork.freedesktop.org/series/142655/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15931_full -> IGTPW_12419_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12419_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12419_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_12419/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_12419_full: ### IGT changes ### #### Possible regressions #### * igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-mtlp: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-mtlp-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt at perf_pmu@module-unload: - shard-dg1: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-dg1-12/igt at perf_pmu@module-unload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-17/igt at perf_pmu@module-unload.html Known issues ------------ Here are the changes found in IGTPW_12419_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-8/igt at api_intel_bb@object-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-6/igt at api_intel_bb@object-reloc-purge-cache.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-7/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-13/igt at device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-10/igt at device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-2/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-hang at rcs0: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +6 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-4/igt at drm_fdinfo@busy-hang at rcs0.html * igt at drm_fdinfo@busy at vcs1: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +12 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-17/igt at drm_fdinfo@busy at vcs1.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +34 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-11/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at gem_basic@multigpu-create-close: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-4/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_12419/shard-tglu-6/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-5/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-3/igt at gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-4/igt at gem_close_race@multigpu-basic-process.html * igt at gem_close_race@multigpu-basic-threads: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/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_12419/shard-tglu-6/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_ctx_persistence@heartbeat-close: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-4/igt at gem_ctx_persistence@heartbeat-close.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-4/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][23] ([i915#1099]) +5 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-snb2/igt at gem_ctx_persistence@legacy-engines-queued.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-5/igt at gem_ctx_sseu@engines.html * igt at gem_eio@hibernate: - shard-dg1: [PASS][25] -> [ABORT][26] ([i915#7975] / [i915#8213]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-dg1-12/igt at gem_eio@hibernate.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-14/igt at gem_eio@hibernate.html * igt at gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4771]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-4/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#4812]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-14/igt at gem_exec_balancer@bonded-semaphore.html * igt at gem_exec_balancer@full-pulse: - shard-dg1: [PASS][29] -> [FAIL][30] ([i915#13364]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-dg1-12/igt at gem_exec_balancer@full-pulse.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-14/igt at gem_exec_balancer@full-pulse.html - shard-mtlp: [PASS][31] -> [FAIL][32] ([i915#13364]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-mtlp-4/igt at gem_exec_balancer@full-pulse.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-8/igt at gem_exec_balancer@full-pulse.html - shard-dg2: NOTRUN -> [FAIL][33] ([i915#13364]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-3/igt at gem_exec_balancer@full-pulse.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4036]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-5/igt at gem_exec_balancer@parallel-contexts.html * igt at gem_exec_big@single: - shard-tglu-1: NOTRUN -> [ABORT][36] ([i915#11713]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at gem_exec_big@single.html * igt at gem_exec_capture@capture-invisible: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#6334]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-10/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture-recoverable: - shard-tglu: NOTRUN -> [SKIP][38] ([i915#6344]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-7/igt at gem_exec_capture@capture-recoverable.html * igt at gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4812]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at gem_exec_fence@submit67.html * igt at gem_exec_flush@basic-uc-pro-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_12419/shard-dg1-18/igt at gem_exec_flush@basic-uc-pro-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_12419/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][42] ([i915#3539] / [i915#4852]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-11/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#5107]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-2/igt at gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][44] ([i915#5107]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-8/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-cpu-read: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +16 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-8/igt at gem_exec_reloc@basic-cpu-read.html * igt at gem_exec_reloc@basic-cpu-wc-active: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-8/igt at gem_exec_reloc@basic-cpu-wc-active.html * igt at gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +12 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-1/igt at gem_exec_reloc@basic-gtt-read-noreloc.html * igt at gem_exec_reloc@basic-gtt-wc-noreloc: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +4 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-13/igt at gem_exec_reloc@basic-gtt-wc-noreloc.html * igt at gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-8/igt at gem_exec_schedule@preempt-queue-contexts.html * igt at gem_exec_schedule@reorder-wide: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-4/igt at gem_exec_schedule@reorder-wide.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4860]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860]) +5 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at gem_fence_thrash@bo-write-verify-y.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-17/igt at gem_fenced_exec_thrash@no-spare-fences-busy.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_12419/shard-glk8/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-random: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4613]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-2/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@heavy-verify-multi: - shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at gem_lmem_swapping@heavy-verify-multi.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#4613]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-6/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-glk: NOTRUN -> [SKIP][58] ([i915#4613]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk2/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-1/igt at gem_lmem_swapping@heavy-verify-random.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [PASS][60] -> [TIMEOUT][61] ([i915#5493]) +1 other test timeout [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-dg1-17/igt at gem_lmem_swapping@smem-oom at lmem0.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-12/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#8289]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at gem_media_fill@media-fill.html * igt at gem_media_vme: - shard-tglu-1: NOTRUN -> [SKIP][63] ([i915#284]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at gem_media_vme.html * igt at gem_mmap@basic-small-bo: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4083]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-4/igt at gem_mmap@basic-small-bo.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4077]) +18 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-11/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@coherency: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4077]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-14/igt at gem_mmap_gtt@coherency.html * igt at gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +10 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-1/igt at gem_mmap_wc@invalid-flags.html * igt at gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-13/igt at gem_mmap_wc@read.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +9 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-10/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][70] ([i915#2658]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at gem_pread@exhaustion.html - shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-12/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3282]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-4/igt at gem_pread@snoop.html * igt at gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3282]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-7/igt at gem_pwrite@basic-self.html * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: NOTRUN -> [TIMEOUT][74] ([i915#12964]) +1 other test timeout [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-4/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-rkl: NOTRUN -> [TIMEOUT][75] ([i915#12917] / [i915#12964]) +4 other tests timeout [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-5/igt at gem_pxp@hw-rejects-pxp-context.html - shard-tglu: NOTRUN -> [SKIP][76] ([i915#13398]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-10/igt at gem_pxp@hw-rejects-pxp-context.html - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#13398]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-3/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4270]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4270]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-17/igt at gem_pxp@verify-pxp-stale-ctx-execution.html * igt at gem_render_copy@y-tiled-ccs-to-linear: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#5190] / [i915#8428]) +8 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-11/igt at gem_render_copy@y-tiled-ccs-to-linear.html * igt at gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#8428]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt at gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4079]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-11/igt at gem_render_tiled_blits@basic.html * igt at gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4885]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-5/igt at gem_softpin@evict-snoop.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][84] ([i915#13263] / [i915#13449]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk8/igt at gem_tiled_swapping@non-threaded.html * igt at gem_tiling_max_stride: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4077]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at gem_tiling_max_stride.html * igt at gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-3/igt at gem_userptr_blits@access-control.html * igt at gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][87] ([i915#3323]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk4/igt at gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#3323]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-6/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-10/igt at gem_userptr_blits@dmabuf-unsync.html - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-18/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3282] / [i915#3297]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-18/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#3297]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-2/igt at gem_userptr_blits@readonly-pwrite-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_12419/shard-rkl-6/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@unsync-overlap: - shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#3297]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at gem_userptr_blits@unsync-overlap.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#3297]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-7/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_workarounds@suspend-resume-fd: - shard-rkl: NOTRUN -> [DMESG-FAIL][96] ([i915#12964]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-2/igt at gem_workarounds@suspend-resume-fd.html - shard-glk: NOTRUN -> [INCOMPLETE][97] ([i915#13356]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk8/igt at gem_workarounds@suspend-resume-fd.html * igt at gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-3/igt at gen9_exec_parse@basic-rejected-ctx-param.html - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#2856]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at gen9_exec_parse@basic-rejected-ctx-param.html * igt at gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-1/igt at gen9_exec_parse@bb-oversize.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_12419/shard-dg1-17/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +8 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-1/igt at gen9_exec_parse@bb-start-param.html * igt at gen9_exec_parse@shadow-peek: - 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_12419/shard-tglu-1/igt at gen9_exec_parse@shadow-peek.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4881]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at i915_fb_tiling.html * igt at i915_module_load@reload-with-fault-injection: - shard-glk: NOTRUN -> [ABORT][105] ([i915#9820]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk3/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#8399]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-9/igt at i915_pm_freq_api@freq-basic-api.html * igt at i915_pm_freq_api@freq-suspend: - shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#8399]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: [PASS][108] -> [FAIL][109] ([i915#12739] / [i915#3591]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#11681] / [i915#6621]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-13/igt at i915_pm_rps@min-max-config-idle.html - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#11681] / [i915#6621]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#6245]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-13/igt at i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][113] ([i915#6245]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-2/igt at i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][114] ([i915#6245]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-4/igt at i915_query@hwconfig_table.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#6188]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][116] ([i915#9311]) +1 other test dmesg-warn [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-snb7/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][117] ([i915#9311]) +1 other test dmesg-warn [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-4/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s2idle-without-i915: - shard-snb: [PASS][118] -> [ABORT][119] ([i915#11703]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-snb2/igt at i915_suspend@basic-s2idle-without-i915.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-snb7/igt at i915_suspend@basic-s2idle-without-i915.html * igt at i915_suspend@basic-s3-without-i915: - shard-glk: [PASS][120] -> [INCOMPLETE][121] ([i915#4817]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-glk8/igt at i915_suspend@basic-s3-without-i915.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk9/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@sysfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][122] ([i915#4817]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk3/igt at i915_suspend@sysfs-reader.html * igt at intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#7707]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-4/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4212]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#12454] / [i915#12712]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-2/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-rkl: NOTRUN -> [SKIP][126] ([i915#12454] / [i915#12712]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-4/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_addfb_basic@tile-pitch-mismatch: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#4212]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-5/igt at kms_addfb_basic@tile-pitch-mismatch.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][128] ([i915#8709]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/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-atomic at pipe-c-hdmi-a-1-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#8709]) +23 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-4/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-c-hdmi-a-1-4-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][130] ([i915#8709]) +7 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/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_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#5286]) +7 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-4/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5286]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-13/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-addfb: - shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#5286]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#5286]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-14/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#5286]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-6/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][136] -> [FAIL][137] ([i915#5138]) +1 other test fail [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-mtlp-8/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-3/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#3638]) +5 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-3/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][139] +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-2/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.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]) +22 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-5/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#6187]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-4/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#4538]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-14/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-cc at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-8/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs at pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#6095]) +49 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/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-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#6095]) +168 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-3/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#12313]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-8/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6095]) +14 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#12313]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-12/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs at pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#6095]) +186 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-12/igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#6095]) +99 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-5/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][151] ([i915#12805]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][152] ([i915#12796]) +1 other test incomplete [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk9/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#6095]) +12 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-5/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-3.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][154] ([i915#6095]) +49 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-4/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-1.html * igt at kms_cdclk@mode-transition: - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#3742]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#11616] / [i915#7213]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-3/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#4087]) +4 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-11/igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-2.html * igt at kms_chamelium_edid@hdmi-edid-read: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at kms_chamelium_edid@hdmi-edid-read.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +23 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-13/igt at kms_chamelium_hpd@hdmi-hpd-fast.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +5 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-2/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +11 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-3/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt at kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-3/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#9424]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-5/igt at kms_content_protection@content-type-change.html - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#6944] / [i915#9424]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#3116] / [i915#3299]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#3116]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-5/igt at kms_content_protection@dp-mst-type-1.html - shard-dg1: NOTRUN -> [SKIP][169] ([i915#3299]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-14/igt at kms_content_protection@dp-mst-type-1.html - shard-tglu: NOTRUN -> [SKIP][170] ([i915#3116] / [i915#3299]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-10/igt at kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3299]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-3/igt at kms_content_protection@dp-mst-type-1.html - shard-dg2: NOTRUN -> [SKIP][172] ([i915#3299]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-11/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#9424]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-5/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#7118]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-1/igt at kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][176] ([i915#6944] / [i915#7116] / [i915#7118]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-9/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#7118] / [i915#9424]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-8/igt at kms_content_protection@type1.html - shard-rkl: NOTRUN -> [SKIP][178] ([i915#7118] / [i915#9424]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-6/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#6944] / [i915#9424]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-4/igt at kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][180] ([i915#7116] / [i915#9424]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-12/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555]) +4 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-5/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#13049]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-3/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][183] ([i915#13049]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-17/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-tglu: NOTRUN -> [SKIP][184] ([i915#13049]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-3/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#13049]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-5/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8814]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#3555]) +4 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3555]) +5 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-3/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#13049]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-1/igt at kms_cursor_crc@cursor-sliding-512x512.html - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#13049]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_edge_walk@128x128-top-edge: - shard-rkl: [PASS][191] -> [DMESG-WARN][192] ([i915#12964]) +32 other tests dmesg-warn [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-rkl-7/igt at kms_cursor_edge_walk@128x128-top-edge.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-4/igt at kms_cursor_edge_walk@128x128-top-edge.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#9809]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-5/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#13046] / [i915#5354]) +10 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/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-varying-size: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#4103]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][196] +21 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-7/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][197] ([i915#2346]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk3/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#9067]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-4/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][199] ([i915#4103] / [i915#4213]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-10/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-dg1: NOTRUN -> [SKIP][200] ([i915#4103] / [i915#4213]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-18/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#9723]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-5/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][202] ([i915#12170]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][203] ([i915#11968]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#9833]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-11/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#8588]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][206] ([i915#8588]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-1/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#1257]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-7/igt at kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][208] ([i915#1257]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-18/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#12402]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-11/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#8812]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-18/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#3840] / [i915#9688]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-3/igt at kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][212] ([i915#3840]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-3/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#3840]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#3840]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#3840]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-6/igt at kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#3840]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-5/igt at kms_dsc@dsc-with-formats.html * igt at kms_fbcon_fbt@psr: - shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#3469]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#4854]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][219] ([i915#4854]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-1/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#1839]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-10/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#1839]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-5/igt at kms_feature_discovery@display-3x.html - shard-dg1: NOTRUN -> [SKIP][222] ([i915#1839]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-13/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#1839]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#9337]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-7/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#658]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-3/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][226] ([i915#658]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-4/igt at kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][227] ([i915#658]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-6/igt at kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][228] ([i915#658]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-13/igt at kms_feature_discovery@psr1.html * igt at kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#4881]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-14/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][230] ([i915#3637]) +6 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-4/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#9934]) +9 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-5/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#3637]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#8381]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-11/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#9934]) +10 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-1/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][235] ([i915#12745] / [i915#1982] / [i915#4839]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk5/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: NOTRUN -> [INCOMPLETE][236] ([i915#1982] / [i915#4839]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk5/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3637]) +3 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#9934]) +3 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-17/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-snb: [PASS][239] -> [FAIL][240] ([i915#11989]) +1 other test fail [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-snb5/igt at kms_flip@2x-plain-flip-fb-recreate.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-snb5/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: NOTRUN -> [FAIL][241] ([i915#11989]) +1 other test fail [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-snb5/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555]) +2 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-5/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#2587] / [i915#2672]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-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-tglu: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-8/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-upscaling: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#2587] / [i915#2672] / [i915#3555]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-18/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#2672] / [i915#8813]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#2672]) +5 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555] / [i915#5190]) +5 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#2672]) +8 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555]) +5 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#3555]) +2 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-17/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][254] ([i915#2587] / [i915#2672]) +3 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-17/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling at pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) +3 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling at pipe-a-valid-mode.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#5274]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-11/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [FAIL][257] ([i915#6880]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: [PASS][258] -> [FAIL][259] ([i915#6880]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#8708]) +10 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-12/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#5354]) +56 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-4/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][262] +21 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#1825]) +10 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [PASS][264] -> [DMESG-FAIL][265] ([i915#12964]) +1 other test dmesg-fail [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-rkl-2/igt at kms_frontbuffer_tracking@fbc-suspend.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-1/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#5439]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-8/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#3023]) +32 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#3458]) +10 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#8708]) +26 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-10/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#10433] / [i915#3458]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#10055]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][272] +52 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#1825]) +49 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][274] +66 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-9/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#3458]) +39 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-8/igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#6118]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-3/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#12713]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-1/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228]) +3 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-7/igt at kms_hdr@static-toggle.html - shard-dg1: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-18/igt at kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8228]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-11/igt at kms_hdr@static-toggle-suspend.html * igt at kms_histogram@algo-basic: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#13389]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-10/igt at kms_histogram@algo-basic.html * igt at kms_histogram@global-basic: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#13388]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-1/igt at kms_histogram@global-basic.html * igt at kms_histogram@global-color: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#13388]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-11/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#10656]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-18/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#12394]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_joiner@basic-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][287] ([i915#12394]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-1/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#12339]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-3/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#10656]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-4/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][290] ([i915#10656]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-2/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#10656]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-3/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#4070] / [i915#4816]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-5/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#6301]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-6/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][294] +18 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-4/igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-0: - shard-rkl: NOTRUN -> [DMESG-WARN][295] ([i915#12964]) +30 other tests dmesg-warn [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-6/igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-0.html * igt at kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][296] ([i915#12178]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk3/igt at kms_plane_alpha_blend@alpha-basic.html * igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][297] ([i915#7862]) +1 other test fail [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk3/igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1.html * igt at kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][298] ([i915#10647] / [i915#12177]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk3/igt at kms_plane_alpha_blend@alpha-transparent-fb.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][299] ([i915#10647] / [i915#12169]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/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][300] ([i915#10647]) +3 other tests fail [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk7/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#3555]) +5 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-10/igt at kms_plane_lowres@tiling-4.html - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-3/igt at kms_plane_lowres@tiling-4.html * igt at kms_plane_lowres@tiling-4 at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#11614] / [i915#3582]) +3 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-3/igt at kms_plane_lowres@tiling-4 at pipe-b-edp-1.html * igt at kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#8821]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-10/igt at kms_plane_lowres@tiling-y.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_12419/shard-dg2-8/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#3555]) +5 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-17/igt at kms_plane_multiple@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#3555] / [i915#8806]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-3/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#12247] / [i915#9423]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#12247]) +4 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#12247] / [i915#6953]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-1/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-b: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#12247]) +9 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-b.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#12247]) +14 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg1: NOTRUN -> [SKIP][313] ([i915#12247]) +4 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-12/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 at pipe-b: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#12247]) +7 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-1/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-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_12419/shard-dg2-3/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-d: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#12247]) +7 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-3/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d.html * igt at kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#5354]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-4/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#13441]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-2/igt at kms_pm_dc@dc5-dpms-negative.html * igt at kms_pm_dc@dc5-retention-flops: - shard-mtlp: NOTRUN -> [SKIP][319] ([i915#3828]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at kms_pm_dc@dc5-retention-flops.html - shard-rkl: NOTRUN -> [SKIP][320] ([i915#3828]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-7/igt at kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][321] ([i915#3828]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-18/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#3361]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-4/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#8430]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-4/igt at kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][324] ([i915#8430]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-11/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: NOTRUN -> [SKIP][325] ([i915#9519]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-14/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#9519]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-11/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][327] ([i915#9519]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-1/igt at kms_pm_rpm@modeset-non-lpsp.html - shard-tglu-1: NOTRUN -> [SKIP][328] ([i915#9519]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][329] -> [SKIP][330] ([i915#9519]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-rkl-1/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-4/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-tglu: NOTRUN -> [SKIP][331] ([i915#9519]) +2 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-3/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_prime@basic-crc-hybrid: - shard-dg1: NOTRUN -> [SKIP][332] ([i915#6524]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-12/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#6524] / [i915#6805]) +2 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-5/igt at kms_prime@basic-crc-vgem.html * igt at kms_prime@basic-modeset-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#6524]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#6524]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-3/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][336] ([i915#11520]) +17 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk2/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#12316]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/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-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#11520]) +4 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][339] ([i915#11520]) +12 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/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][340] ([i915#11520]) +6 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-10/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#11520]) +10 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-7/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][342] ([i915#11520]) +3 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-18/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#11520]) +13 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-8/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#9683]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-4/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +33 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at kms_psr@fbc-psr-primary-mmap-gtt.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#9732]) +9 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_psr@pr-cursor-blt: - shard-mtlp: NOTRUN -> [SKIP][347] ([i915#9688]) +8 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at kms_psr@pr-cursor-blt.html * igt at kms_psr@pr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#1072] / [i915#9732]) +25 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-1/igt at kms_psr@pr-sprite-mmap-gtt.html * igt at kms_psr@psr-primary-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][349] ([i915#1072] / [i915#9732]) +11 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-13/igt at kms_psr@psr-primary-mmap-cpu.html * igt at kms_psr@psr-primary-render: - shard-tglu: NOTRUN -> [SKIP][350] ([i915#9732]) +19 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-2/igt at kms_psr@psr-primary-render.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][351] +524 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk4/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#9685]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-5/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#9685]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#4235]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at kms_rotation_crc@exhaust-fences.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#5289]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-1/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][356] ([i915#5289]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-2/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][357] ([i915#12755]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-3/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#5190]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-10/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#12755] / [i915#5190]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][360] ([i915#12755]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-8/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][361] ([i915#13179]) +1 other test abort [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-7/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@basic: - shard-tglu: [PASS][362] -> [FAIL][363] ([i915#5465]) +2 other tests fail [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-tglu-7/igt at kms_setmode@basic.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-7/igt at kms_setmode@basic.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#8623]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-4/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#3555] / [i915#9906]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-5/igt at kms_vrr@negative-basic.html - shard-tglu: NOTRUN -> [SKIP][366] ([i915#3555] / [i915#9906]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-2/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#2437]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-3/igt at kms_writeback@writeback-check-output.html - shard-rkl: NOTRUN -> [SKIP][368] ([i915#2437]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-1/igt at kms_writeback@writeback-check-output.html - shard-dg1: NOTRUN -> [SKIP][369] ([i915#2437]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-14/igt at kms_writeback@writeback-check-output.html - shard-tglu: NOTRUN -> [SKIP][370] ([i915#2437]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-2/igt at kms_writeback@writeback-check-output.html - shard-mtlp: NOTRUN -> [SKIP][371] ([i915#2437]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-8/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#2437] / [i915#9412]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-3/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][373] ([i915#2437]) +4 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk3/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-pixel-formats: - shard-rkl: NOTRUN -> [SKIP][374] ([i915#2437] / [i915#9412]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-6/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#7387]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-10/igt at perf@global-sseu-config.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][376] +445 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-snb7/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#8850]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@frequency at gt0: - shard-dg2: NOTRUN -> [FAIL][378] ([i915#12549] / [i915#6806]) +1 other test fail [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-5/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][379] ([i915#11823]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-1/igt at perf_pmu@module-unload.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#8516]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-3/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at perf_pmu@render-node-busy-idle at vcs1: - shard-mtlp: [PASS][381] -> [FAIL][382] ([i915#4349]) +5 other tests fail [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-mtlp-8/igt at perf_pmu@render-node-busy-idle at vcs1.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-7/igt at perf_pmu@render-node-busy-idle at vcs1.html * igt at prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][383] ([i915#3708] / [i915#4077]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-1/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][384] ([i915#3291] / [i915#3708]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-7/igt at prime_vgem@basic-write.html * igt at prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][385] ([i915#3708]) +2 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-5/igt at prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][386] ([i915#3708]) +1 other test skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-4/igt at prime_vgem@fence-read-hang.html * igt at prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][387] ([i915#3708]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-4/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][388] ([i915#9917]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-7/igt at sriov_basic@enable-vfs-autoprobe-on.html - shard-rkl: NOTRUN -> [SKIP][389] ([i915#9917]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-5/igt at sriov_basic@enable-vfs-autoprobe-on.html * igt at vgem_basic@dmabuf-fence-before: - shard-mtlp: [PASS][390] -> [DMESG-WARN][391] ([i915#1982]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-mtlp-3/igt at vgem_basic@dmabuf-fence-before.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-3/igt at vgem_basic@dmabuf-fence-before.html #### Possible fixes #### * igt at gem_ctx_freq@sysfs: - shard-dg2: [FAIL][392] ([i915#9561]) -> [PASS][393] +1 other test pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-dg2-8/igt at gem_ctx_freq@sysfs.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-3/igt at gem_ctx_freq@sysfs.html * igt at gem_eio@kms: - shard-dg1: [FAIL][394] ([i915#5784]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-dg1-17/igt at gem_eio@kms.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-13/igt at gem_eio@kms.html * igt at gem_exec_suspend@basic-s3 at smem: - shard-glk: [INCOMPLETE][396] ([i915#13196]) -> [PASS][397] +1 other test pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-glk1/igt at gem_exec_suspend@basic-s3 at smem.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk6/igt at gem_exec_suspend@basic-s3 at smem.html * igt at gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][398] -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-tglu-6/igt at gem_tiled_swapping@non-threaded.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-tglu-10/igt at gem_tiled_swapping@non-threaded.html * igt at gem_workarounds@suspend-resume: - shard-glk: [INCOMPLETE][400] ([i915#13356]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-glk7/igt at gem_workarounds@suspend-resume.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk6/igt at gem_workarounds@suspend-resume.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][402] ([i915#9820]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-rkl-4/igt at i915_module_load@reload-with-fault-injection.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-5/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-dg1: [FAIL][404] ([i915#3591]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: [INCOMPLETE][406] ([i915#12797]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-glk2/igt at i915_pm_rpm@system-suspend-execbuf.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk8/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [DMESG-FAIL][408] ([i915#13393]) -> [PASS][409] +1 other test pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-mtlp-3/igt at i915_selftest@live at workarounds.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-4/igt at i915_selftest@live at workarounds.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-dg1: [FAIL][410] ([i915#12518] / [i915#12766]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-dg1-12/igt at kms_async_flips@alternate-sync-async-flip.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-12/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-glk: [FAIL][412] ([i915#10991] / [i915#13335]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-glk8/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk4/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-b-hdmi-a-2: - shard-glk: [FAIL][414] ([i915#10991]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-glk8/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-b-hdmi-a-2.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk4/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-b-hdmi-a-2.html * igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-3: - shard-dg1: [FAIL][416] ([i915#12518]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-dg1-12/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-3.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-12/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-3.html * igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-4: - shard-dg1: [FAIL][418] ([i915#5956]) -> [PASS][419] +1 other test pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-dg1-17/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-4.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-14/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-4.html * igt at kms_busy@extended-modeset-hang-newfb-with-reset: - shard-rkl: [DMESG-WARN][420] ([i915#12964]) -> [PASS][421] +22 other tests pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-rkl-7/igt at kms_busy@extended-modeset-hang-newfb-with-reset.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-7/igt at kms_busy@extended-modeset-hang-newfb-with-reset.html * igt at kms_cursor_legacy@basic-flip-before-cursor-varying-size: - shard-glk: [FAIL][422] ([i915#2346]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-glk8/igt at kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-glk8/igt at kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-snb: [FAIL][424] ([i915#11989]) -> [PASS][425] +1 other test pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-snb7/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-snb7/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [DMESG-WARN][426] ([i915#12917] / [i915#12964]) -> [PASS][427] +1 other test pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-rkl-6/igt at kms_flip@absolute-wf_vblank-interruptible.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-4/igt at kms_flip@absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-dg1: [DMESG-WARN][428] ([i915#4423]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-dg1-12/igt at kms_flip@flip-vs-absolute-wf_vblank.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-14/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-mtlp: [FAIL][430] ([i915#11989]) -> [PASS][431] +1 other test pass [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-mtlp-8/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-3/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at c-hdmi-a1: - shard-tglu: [FAIL][432] ([i915#11989]) -> [PASS][433] +3 other tests pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-tglu-4/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at c-hdmi-a1.html [433]: https://intel-gfx- == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 13 00:16:09 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 13 Jan 2025 00:16: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?= In-Reply-To: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> References: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> Message-ID: <173672736960.3056530.3136516762501809805@b555e5b46a47> == Series Details == Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa URL : https://patchwork.freedesktop.org/series/143367/ State : failure == Summary == CI Bug Log - changes from XEIGT_8186_full -> XEIGTPW_12423_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12423_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12423_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_12423_full: ### IGT changes ### #### Possible regressions #### * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-2-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][1] +24 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-432/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-2-4-rc-ccs-cc.html * igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner (NEW): - shard-bmg: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-4/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-lnl: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-1/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2.html New tests --------- New tests have been introduced between XEIGT_8186_full and XEIGTPW_12423_full: ### New IGT tests (2) ### * igt at kms_hdr@static-swap at pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.97] 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_12423_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#623]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-464/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [PASS][6] -> [FAIL][7] ([Intel XE#3701] / [Intel XE#3718] / [Intel XE#827]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-d-dp-2: - shard-bmg: [PASS][8] -> [FAIL][9] ([Intel XE#3746]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-d-dp-2.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-d-dp-2.html * 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][10] ([Intel XE#2550]) +23 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-436/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#873]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-4/igt at kms_async_flips@invalid-async-flip.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_12423/shard-lnl-8/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1407]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-1/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#316]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-436/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@linear-64bpp-rotate-0: - shard-bmg: [PASS][15] -> [INCOMPLETE][16] ([Intel XE#3225]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_big_fb@linear-64bpp-rotate-0.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-1/igt at kms_big_fb@linear-64bpp-rotate-0.html - shard-dg2-set2: NOTRUN -> [INCOMPLETE][17] ([Intel XE#3225]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-435/igt at kms_big_fb@linear-64bpp-rotate-0.html * igt at kms_big_fb@x-tiled-8bpp-rotate-0: - shard-bmg: [PASS][18] -> [SKIP][19] ([Intel XE#2136] / [Intel XE#2231]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_big_fb@x-tiled-8bpp-rotate-0.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_big_fb@x-tiled-8bpp-rotate-0.html * igt at kms_big_fb@y-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#1124]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-3/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +8 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1467]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-2/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#610]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-432/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#367]) +6 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-436/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1512]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-2/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#367]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-1/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2887]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-6/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2907]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-436/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2887]) +9 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-5/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][32] -> [INCOMPLETE][33] ([Intel XE#3862]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-d-dp-2: - shard-bmg: NOTRUN -> [INCOMPLETE][34] ([Intel XE#3862]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-d-dp-2.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#787]) +153 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#455] / [Intel XE#787]) +34 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-432/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs at pipe-d-dp-2.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][37] -> [INCOMPLETE][38] ([Intel XE#1727] / [Intel XE#3124]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-hdmi-a-6.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][39] -> [INCOMPLETE][40] ([Intel XE#2692] / [Intel XE#4010]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-433/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-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][41] ([Intel XE#2705]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-dp-4.html * igt at kms_chamelium_color@ctm-max: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#306]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-435/igt at kms_chamelium_color@ctm-max.html * igt at kms_chamelium_hpd@dp-hpd-fast: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#373]) +12 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-436/igt at kms_chamelium_hpd@dp-hpd-fast.html * igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#373]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-2/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#307]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-4/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@lic-type-0: - shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#1178]) +2 other tests fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-433/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#3304]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-433/igt at kms_content_protection@lic-type-0 at pipe-a-dp-4.html * igt at kms_content_protection@lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#455]) +17 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][49] ([Intel XE#1188]) +1 other test fail [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1424]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-5/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2321]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-2/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#308]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-435/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#2291]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#323]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-2/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@basic-flip-after-cursor-varying-size: - shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#3007]) +7 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#309]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-2/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-dp-2: - shard-bmg: NOTRUN -> [FAIL][59] ([Intel XE#2141]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-8/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-dp-2.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_12423/shard-lnl-7/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@extended-mode-basic at pipe-a-hdmi-a-3-pipe-b-dp-2: - shard-bmg: [PASS][61] -> [DMESG-WARN][62] ([Intel XE#877]) +1 other test dmesg-warn [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_display_modes@extended-mode-basic at pipe-a-hdmi-a-3-pipe-b-dp-2.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-1/igt at kms_display_modes@extended-mode-basic at pipe-a-hdmi-a-3-pipe-b-dp-2.html * igt at kms_feature_discovery@chamelium: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#701]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-7/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1138]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-433/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1137]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-4/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-blocking-wf_vblank: - shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#2316]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_flip@2x-blocking-wf_vblank.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-6/igt at kms_flip@2x-blocking-wf_vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][68] ([Intel XE#2882]) +3 other tests fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-1/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 ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][69] -> [FAIL][70] ([Intel XE#301]) +1 other test fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][71] ([Intel XE#3321]) +1 other test fail [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/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][72] ([Intel XE#1421]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-4/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][73] ([Intel XE#301]) +5 other tests fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [PASS][74] -> [INCOMPLETE][75] ([Intel XE#2597]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_flip@flip-vs-suspend-interruptible.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/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: [PASS][76] -> [INCOMPLETE][77] ([Intel XE#2597] / [Intel XE#2635]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-4/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1: - shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#886]) +3 other tests fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-4/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-1/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1397] / [Intel XE#1745]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-3/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1397]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-3/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1401] / [Intel XE#1745]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-6/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-default-mode: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1401]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#651]) +30 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-432/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [PASS][85] -> [SKIP][86] ([Intel XE#2136]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#656]) +21 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte.html * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#651]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2313]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2136]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#653]) +29 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_hdr@invalid-metadata-sizes: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1503]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-3/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_histogram@algo-basic: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#3897]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-435/igt at kms_histogram@algo-basic.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2925]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - shard-dg2-set2: [PASS][95] -> [SKIP][96] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html * igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#599]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-8/igt at kms_plane_lowres@tiling-x at pipe-b-edp-1.html * igt at kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#2493]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-1/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2763]) +8 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-436/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-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-433/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-downscale-factor-0-5: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2763]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-1/igt at kms_plane_scaling@planes-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2423] / [i915#2575]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#736]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-1/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1439] / [Intel XE#836]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-4/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#2893]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-2/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#1489]) +12 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-433/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1122]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-432/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-8/igt at kms_psr@fbc-pr-cursor-blt.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1406]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-7/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2850] / [Intel XE#929]) +17 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-435/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#1127]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#3414]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1127]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#3414] / [Intel XE#3904]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_setmode@basic: - shard-bmg: [PASS][115] -> [FAIL][116] ([Intel XE#2883]) +4 other tests fail [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at kms_setmode@basic.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-8/igt at kms_setmode@basic.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1435]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-6/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [PASS][118] -> [SKIP][119] ([Intel XE#1435]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_setmode@invalid-clone-single-crtc-stealing.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#330]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-435/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2168]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-433/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1499]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-1/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#756]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-436/igt at kms_writeback@writeback-fb-id.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#1091] / [Intel XE#2849]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-435/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#2905]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-4/igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html * igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2905]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-4/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][128] ([Intel XE#1600]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-433/igt at xe_evict@evict-beng-large-multi-vm-cm.html * igt at xe_evict@evict-beng-threads-small: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#688]) +6 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-3/igt at xe_evict@evict-beng-threads-small.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: NOTRUN -> [TIMEOUT][130] ([Intel XE#1473]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-464/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-dg2-set2: [PASS][131] -> [SKIP][132] ([Intel XE#1392]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-432/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][133] -> [SKIP][134] ([Intel XE#1130]) +7 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@multigpu-once-null-defer-bind: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2322]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-2/igt at xe_exec_basic@multigpu-once-null-defer-bind.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#1392]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-432/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1392]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-5/igt at xe_exec_basic@multigpu-once-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#288]) +23 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-464/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: NOTRUN -> [SKIP][139] ([Intel XE#2360]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-435/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_exec_reset@cm-close-fd-no-exec: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#1130]) +5 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at xe_exec_reset@cm-close-fd-no-exec.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2905]) +10 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-435/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_exec_threads@threads-hang-fd-userptr-rebind: - shard-dg2-set2: [PASS][142] -> [DMESG-WARN][143] ([Intel XE#3876]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at xe_exec_threads@threads-hang-fd-userptr-rebind.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-435/igt at xe_exec_threads@threads-hang-fd-userptr-rebind.html * igt at xe_intel_bb@intel-bb-blit-x: - shard-bmg: [PASS][144] -> [SKIP][145] ([Intel XE#1130]) +17 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at xe_intel_bb@intel-bb-blit-x.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at xe_intel_bb@intel-bb-blit-x.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][146] -> [SKIP][147] ([Intel XE#1192]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at xe_live_ktest@xe_dma_buf.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-2/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_live_ktest@xe_eudebug: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1192] / [Intel XE#3026]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-4/igt at xe_live_ktest@xe_eudebug.html * igt at xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#560]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-435/igt at xe_media_fill@media-fill.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#512]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-432/igt at xe_mmap@small-bar.html * igt at xe_oa@oa-regs-whitelisted: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#2541] / [Intel XE#3573]) +8 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-436/igt at xe_oa@oa-regs-whitelisted.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][152] ([Intel XE#1173]) +1 other test fail [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-436/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2284] / [Intel XE#366]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-2/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3cold-mocs: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#2284]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-432/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-exec-after: - shard-dg2-set2: NOTRUN -> [ABORT][155] ([Intel XE#1358]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-432/igt at xe_pm@s2idle-exec-after.html * igt at xe_pm@s2idle-mocs: - shard-dg2-set2: [PASS][156] -> [ABORT][157] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at xe_pm@s2idle-mocs.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-432/igt at xe_pm@s2idle-mocs.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-464/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_pm@s3-vm-bind-prefetch: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#584]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-6/igt at xe_pm@s3-vm-bind-prefetch.html * igt at xe_pm@s4-basic: - shard-dg2-set2: [PASS][160] -> [ABORT][161] ([Intel XE#1358]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at xe_pm@s4-basic.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-432/igt at xe_pm@s4-basic.html * igt at xe_pm_residency@gt-c6-freeze: - shard-dg2-set2: [PASS][162] -> [ABORT][163] ([Intel XE#2625]) +2 other tests abort [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at xe_pm_residency@gt-c6-freeze.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-432/igt at xe_pm_residency@gt-c6-freeze.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#944]) +4 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-436/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#944]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-4/igt at xe_query@multigpu-query-topology-l3-bank-mask.html #### Possible fixes #### * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1: - shard-lnl: [FAIL][166] ([Intel XE#3908]) -> [PASS][167] +1 other test pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-8/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-2/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][168] ([Intel XE#2291]) -> [PASS][169] +5 other tests pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: [SKIP][170] ([Intel XE#2316]) -> [PASS][171] +2 other tests pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-vs-hang.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4: - shard-dg2-set2: [INCOMPLETE][172] -> [PASS][173] +2 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-433/igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][174] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3: - shard-bmg: [FAIL][176] ([Intel XE#3288] / [Intel XE#3321]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank 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_8186/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html * igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3: - shard-bmg: [FAIL][180] ([Intel XE#3321]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][182] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-464/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-dg2-set2: [ABORT][184] ([Intel XE#2625]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_frontbuffer_tracking@fbc-suspend.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][186] ([Intel XE#455]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_hdr@invalid-hdr.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_hdr@invalid-hdr.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][188] ([Intel XE#718]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-7/igt at kms_pm_dc@dc5-dpms.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][190] ([Intel XE#899]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-4/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at kms_vrr@negative-basic: - shard-bmg: [SKIP][192] ([Intel XE#1499]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_vrr@negative-basic.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-4/igt at kms_vrr@negative-basic.html * igt at xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [SKIP][194] ([Intel XE#1130]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_exec_basic@many-bindexecqueue-rebind.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-6/igt at xe_exec_basic@many-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [SKIP][196] ([Intel XE#1392]) -> [PASS][197] +3 other tests pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-435/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][198] ([Intel XE#1192]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_live_ktest@xe_mocs.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-4/igt at xe_live_ktest@xe_mocs.html * igt at xe_module_load@reload: - shard-dg2-set2: [FAIL][200] ([Intel XE#3546]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at xe_module_load@reload.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-435/igt at xe_module_load@reload.html - shard-bmg: [FAIL][202] ([Intel XE#3546]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_module_load@reload.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-1/igt at xe_module_load@reload.html * igt at xe_pm@s3-basic: - shard-dg2-set2: [ABORT][204] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at xe_pm@s3-basic.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-436/igt at xe_pm@s3-basic.html * igt at xe_pm@s4-mocs: - shard-lnl: [ABORT][206] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][207] [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-2/igt at xe_pm@s4-mocs.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-lnl-7/igt at xe_pm@s4-mocs.html * igt at xe_pm_residency@cpg-basic: - shard-dg2-set2: [ABORT][208] -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at xe_pm_residency@cpg-basic.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-433/igt at xe_pm_residency@cpg-basic.html #### Warnings #### * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][210] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][211] ([Intel XE#1124]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-1/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][212] ([Intel XE#2136]) -> [SKIP][213] ([Intel XE#1124]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-436/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - 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_8186/shard-bmg-6/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][216] ([Intel XE#1124]) -> [SKIP][217] ([Intel XE#2136] / [Intel XE#2351]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][218] ([Intel XE#2887]) -> [SKIP][219] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][220] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][221] ([Intel XE#2136]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][222] ([Intel XE#3432]) -> [SKIP][223] ([Intel XE#2136] / [Intel XE#2231]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_chamelium_color@ctm-0-75: - shard-dg2-set2: [SKIP][224] ([Intel XE#306]) -> [SKIP][225] ([Intel XE#2423] / [i915#2575]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_chamelium_color@ctm-0-75.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_chamelium_color@ctm-0-75.html - shard-bmg: [SKIP][226] ([Intel XE#2325]) -> [SKIP][227] ([Intel XE#3007]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_chamelium_color@ctm-0-75.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_chamelium_color@ctm-0-75.html * igt at kms_chamelium_frames@dp-frame-dump: - shard-bmg: [SKIP][228] ([Intel XE#2252]) -> [SKIP][229] ([Intel XE#3007]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_chamelium_frames@dp-frame-dump.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_chamelium_frames@dp-frame-dump.html - shard-dg2-set2: [SKIP][230] ([Intel XE#373]) -> [SKIP][231] ([Intel XE#2423] / [i915#2575]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_chamelium_frames@dp-frame-dump.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_chamelium_frames@dp-frame-dump.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-bmg: [SKIP][232] ([Intel XE#2316]) -> [FAIL][233] ([Intel XE#2882]) +1 other test fail [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-bmg: [SKIP][234] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][235] ([Intel XE#2136] / [Intel XE#2231]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][236] ([Intel XE#651]) -> [SKIP][237] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][238] ([Intel XE#2312]) -> [SKIP][239] ([Intel XE#2311]) +16 other tests skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-bmg: [FAIL][240] ([Intel XE#2333]) -> [INCOMPLETE][241] ([Intel XE#2050]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][242] ([Intel XE#2312]) -> [FAIL][243] ([Intel XE#2333]) +3 other tests fail [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [INCOMPLETE][244] ([Intel XE#2050]) -> [FAIL][245] ([Intel XE#2333]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][246] ([Intel XE#2333]) -> [SKIP][247] ([Intel XE#2312]) +4 other tests skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][248] ([Intel XE#651]) -> [SKIP][249] ([Intel XE#2136]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][250] ([Intel XE#2311]) -> [SKIP][251] ([Intel XE#2312]) +8 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move: - shard-bmg: [SKIP][252] ([Intel XE#2311]) -> [SKIP][253] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][254] ([Intel XE#2313]) -> [SKIP][255] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html - shard-dg2-set2: [SKIP][256] ([Intel XE#653]) -> [SKIP][257] ([Intel XE#2136]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][258] ([Intel XE#2312]) -> [SKIP][259] ([Intel XE#2313]) +12 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-bmg: [FAIL][260] ([Intel XE#2333]) -> [SKIP][261] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][262] ([Intel XE#2312]) -> [SKIP][263] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][264] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][265] ([Intel XE#2313]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html - shard-dg2-set2: [SKIP][266] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][267] ([Intel XE#653]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][268] ([Intel XE#2313]) -> [SKIP][269] ([Intel XE#2312]) +10 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move: - shard-dg2-set2: [SKIP][270] ([Intel XE#653]) -> [SKIP][271] ([Intel XE#2136] / [Intel XE#2351]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-bmg: [SKIP][272] ([Intel XE#2763]) -> [SKIP][273] ([Intel XE#3007]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-bmg: [SKIP][274] ([Intel XE#1489]) -> [SKIP][275] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html - shard-dg2-set2: [SKIP][276] ([Intel XE#1489]) -> [SKIP][277] ([Intel XE#2136]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr@fbc-psr2-primary-blt: - shard-bmg: [SKIP][278] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][279] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_psr@fbc-psr2-primary-blt.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_psr@fbc-psr2-primary-blt.html - shard-dg2-set2: [SKIP][280] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][281] ([Intel XE#2136]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at kms_psr@fbc-psr2-primary-blt.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_psr@fbc-psr2-primary-blt.html * igt at kms_scaling_modes@scaling-mode-none: - shard-bmg: [SKIP][282] ([Intel XE#2413]) -> [SKIP][283] ([Intel XE#3007]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at kms_scaling_modes@scaling-mode-none.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at kms_scaling_modes@scaling-mode-none.html - shard-dg2-set2: [SKIP][284] ([Intel XE#455]) -> [SKIP][285] ([Intel XE#2423] / [i915#2575]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_scaling_modes@scaling-mode-none.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][286] ([Intel XE#1729]) -> [SKIP][287] ([Intel XE#2426]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-4/igt at kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [SKIP][288] ([Intel XE#362]) -> [FAIL][289] ([Intel XE#1729]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][290] ([Intel XE#2426]) -> [SKIP][291] ([Intel XE#2509]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [TIMEOUT][292] ([Intel XE#1473]) -> [INCOMPLETE][293] ([Intel XE#1473]) +2 other tests incomplete [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at xe_evict@evict-mixed-many-threads-small.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-6/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_evict@evict-threads-large: - shard-bmg: [INCOMPLETE][294] ([Intel XE#1473]) -> [TIMEOUT][295] ([Intel XE#1473] / [Intel XE#2472]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_evict@evict-threads-large.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-4/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-no-exec-null: - shard-bmg: [SKIP][296] ([Intel XE#2322]) -> [SKIP][297] ([Intel XE#1130]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_exec_basic@multigpu-no-exec-null.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-5/igt at xe_exec_basic@multigpu-no-exec-null.html * igt at xe_exec_fault_mode@twice-bindexecqueue-rebind-prefetch: - shard-dg2-set2: [SKIP][298] ([Intel XE#288]) -> [SKIP][299] ([Intel XE#1130]) +2 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at xe_exec_fault_mode@twice-bindexecqueue-rebind-prefetch.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-dg2-463/igt at xe_exec_fault_mode@twice-bindexecqueue-rebind-prefetch.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][300] ([Intel XE#2833]) -> [SKIP][301] ([Intel XE#1192]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at xe_live_ktest@xe_eudebug.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html * igt at xe_mmap@pci-membarrier: - shard-bmg: [SKIP][302] -> [SKIP][303] ([Intel XE#1130]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at xe_mmap@pci-membarrier.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/shard-bmg-8/igt at xe_mmap@pci-membarrier.html [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#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [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#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [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#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#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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [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#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [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#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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [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#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [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#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#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#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026 [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#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [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#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [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#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#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#3701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3701 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3746]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3746 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3897]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3897 [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#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [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#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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_8186 -> IGTPW_12423 * Linux: xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917 -> xe-2472-4c299eeff0b03f0e988491bc9102594620e67d42 IGTPW_12423: 2132aaf8f6cffe66afb76cea4f7ee9a5328a7d9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8186: 2c6b2f0ed4075aa1ac3d341d612e41343cff4e4d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917: 0ca002b6f088ddd9bdde5630662526a50b7ef917 xe-2472-4c299eeff0b03f0e988491bc9102594620e67d42: 4c299eeff0b03f0e988491bc9102594620e67d42 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12423/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 13 02:09:14 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 13 Jan 2025 02:09:14 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel/kms=5Fdp=5Fl?= =?utf-8?q?inktrain=5Ffallback=3A_Reduce_debug_loglevel_dynamically?= In-Reply-To: <20250109170729.47646-1-pranay.samala@intel.com> References: <20250109170729.47646-1-pranay.samala@intel.com> Message-ID: <173673415417.3087657.13801028080529000091@b555e5b46a47> == Series Details == Series: tests/intel/kms_dp_linktrain_fallback: Reduce debug loglevel dynamically URL : https://patchwork.freedesktop.org/series/143342/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15932_full -> IGTPW_12420_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12420_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12420_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_12420/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_12420_full: ### IGT changes ### #### Possible regressions #### * igt at gem_exec_balancer@individual: - shard-dg2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-dg2-8/igt at gem_exec_balancer@individual.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-3/igt at gem_exec_balancer@individual.html - shard-dg1: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-dg1-12/igt at gem_exec_balancer@individual.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at gem_exec_balancer@individual.html * igt at i915_selftest@live at gt_pm: - shard-rkl: [PASS][5] -> [DMESG-FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-rkl-1/igt at i915_selftest@live at gt_pm.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-7/igt at i915_selftest@live at gt_pm.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-vga-1: - shard-snb: NOTRUN -> [FAIL][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-vga-1.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at b-edp1: - shard-mtlp: [PASS][8] -> [FAIL][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-mtlp-5/igt at kms_flip@plain-flip-fb-recreate-interruptible at b-edp1.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-5/igt at kms_flip@plain-flip-fb-recreate-interruptible at b-edp1.html * igt at kms_pm_rpm@fences-dpms: - shard-rkl: [PASS][10] -> [SKIP][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-rkl-7/igt at kms_pm_rpm@fences-dpms.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-4/igt at kms_pm_rpm@fences-dpms.html Known issues ------------ Here are the changes found in IGTPW_12420_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#8411]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-4/igt at api_intel_bb@blit-reloc-keep-cache.html * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8411]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-12/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8411]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#11078]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-7/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][16] ([i915#11078]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-12/igt at device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][17] ([i915#11078]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-9/igt at device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#11078]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-5/igt at device_reset@unbind-cold-reset-rebind.html * igt at device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [INCOMPLETE][19] ([i915#11814]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at device_reset@unbind-reset-rebind.html * igt at drm_fdinfo@most-busy-idle-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8414]) +33 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-3/igt at drm_fdinfo@most-busy-idle-check-all at vecs1.html * igt at drm_fdinfo@virtual-busy-all: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8414]) +7 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at drm_fdinfo@virtual-busy-all.html * igt at gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#7697]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-6/igt at gem_basic@multigpu-create-close.html - shard-tglu: NOTRUN -> [SKIP][23] ([i915#7697]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-8/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#3555] / [i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-7/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#9323]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-4/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#13008]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-13/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#9323]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-17/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#7697]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-7/igt at gem_close_race@multigpu-basic-process.html * igt at gem_close_race@multigpu-basic-threads: - shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#7697]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][30] ([i915#13427]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-4/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-set-pat: - shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#8562]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][32] ([i915#12353]) +1 other test incomplete [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk4/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#8555]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-13/igt at gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#8555]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-4/igt at gem_ctx_persistence@heartbeat-close.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#8555]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-7/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][36] ([i915#1099]) +5 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-snb5/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#280]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-11/igt at gem_ctx_sseu@engines.html * igt at gem_eio@hibernate: - shard-tglu: [PASS][38] -> [ABORT][39] ([i915#10030] / [i915#7975] / [i915#8213]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-tglu-4/igt at gem_eio@hibernate.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-10/igt at gem_eio@hibernate.html - shard-dg2: NOTRUN -> [ABORT][40] ([i915#10030] / [i915#7975] / [i915#8213]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at gem_eio@hibernate.html * igt at gem_eio@kms: - shard-tglu: [PASS][41] -> [DMESG-WARN][42] ([i915#13363]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-tglu-3/igt at gem_eio@kms.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-4/igt at gem_eio@kms.html - shard-dg1: NOTRUN -> [FAIL][43] ([i915#5784]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at gem_eio@kms.html * igt at gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4771]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-14/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4771]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-10/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@individual: - shard-mtlp: [PASS][46] -> [FAIL][47] ([i915#13366]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-mtlp-6/igt at gem_exec_balancer@individual.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-3/igt at gem_exec_balancer@individual.html * igt at gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4525]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-5/igt at gem_exec_balancer@parallel-keep-in-fence.html - shard-tglu: NOTRUN -> [SKIP][49] ([i915#4525]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-4/igt at gem_exec_balancer@parallel-keep-in-fence.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#4525]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4812]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-14/igt at gem_exec_fence@submit.html * igt at gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-11/igt at gem_exec_flush@basic-uc-ro-default.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3539]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-4/igt at gem_exec_flush@basic-uc-set-default.html - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3539]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-12/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-prw-default: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3539] / [i915#4852]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-14/igt at gem_exec_flush@basic-wb-prw-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#5107]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-1/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-cpu-wc: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#3281]) +6 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-13/igt at gem_exec_reloc@basic-cpu-wc.html * igt at gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3281]) +9 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-4/igt at gem_exec_reloc@basic-gtt-cpu-active.html * igt at gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3281]) +9 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-1/igt at gem_exec_reloc@basic-gtt-wc-noreloc.html * igt at gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4537] / [i915#4812]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-7/igt at gem_exec_schedule@preempt-queue-contexts.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-glk: [PASS][61] -> [DMESG-WARN][62] ([i915#118]) +1 other test dmesg-warn [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-glk4/igt at gem_exec_schedule@preempt-queue-contexts-chain.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk6/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_schedule@reorder-wide: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4537] / [i915#4812]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-7/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_suspend@basic-s0: - shard-dg2: NOTRUN -> [INCOMPLETE][64] ([i915#11441] / [i915#13304]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-1/igt at gem_exec_suspend@basic-s0.html * igt at gem_exec_suspend@basic-s0 at lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][65] ([i915#11441]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-1/igt at gem_exec_suspend@basic-s0 at lmem0.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: [PASS][66] -> [ABORT][67] ([i915#7975] / [i915#8213]) +1 other test abort [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-dg1-17/igt at gem_exec_suspend@basic-s4-devices at lmem0.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4860]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-12/igt at gem_fence_thrash@bo-write-verify-x.html - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4860]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-3/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4860]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-7/igt at gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt at gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][71] ([i915#4613]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-6/igt at gem_lmem_swapping@heavy-random.html - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4613]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-7/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][73] ([i915#4613]) +4 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk1/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@massive-random: - shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#4613]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at gem_lmem_swapping@massive-random.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#4613]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-1/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#284]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-7/igt at gem_media_vme.html * igt at gem_mmap_gtt@big-copy: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4077]) +14 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-3/igt at gem_mmap_gtt@big-copy.html * igt at gem_mmap_gtt@isolation: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4077]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-7/igt at gem_mmap_gtt@isolation.html * igt at gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4083]) +12 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at gem_mmap_wc@invalid-flags.html * igt at gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4083]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-12/igt at gem_mmap_wc@read.html * igt at gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3282]) +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at gem_partial_pwrite_pread@write.html * igt at gem_pread@exhaustion: - shard-tglu: NOTRUN -> [WARN][82] ([i915#2658]) +1 other test warn [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-8/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3282]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-8/igt at gem_pread@snoop.html * igt at gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][84] ([i915#2658]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-snb2/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#3282]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-1/igt at gem_pwrite@basic-self.html * igt at gem_pwrite_snooped: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#3282]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at gem_pwrite_snooped.html * igt at gem_pxp@create-valid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][87] ([i915#12964]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-1/igt at gem_pxp@create-valid-protected-context.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#13398]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-7/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4270]) +6 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-rkl: NOTRUN -> [TIMEOUT][90] ([i915#12917] / [i915#12964]) +2 other tests timeout [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-7/igt at gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4270]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-14/igt at gem_pxp@verify-pxp-stale-ctx-execution.html * igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#5190] / [i915#8428]) +6 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt at gem_render_copy@yf-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#8428]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-3/igt at gem_render_copy@yf-tiled-to-vebox-linear.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4079]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4885]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-17/igt at gem_softpin@evict-snoop.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][96] ([i915#13263] / [i915#13449]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk2/igt at gem_tiled_swapping@non-threaded.html * igt at gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#4879]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#3297]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-3/igt at gem_userptr_blits@access-control.html - shard-rkl: NOTRUN -> [SKIP][99] ([i915#3297]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-3/igt at gem_userptr_blits@access-control.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#3297]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-17/igt at gem_userptr_blits@access-control.html * igt at gem_userptr_blits@coherency-sync: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#3297]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-7/igt at gem_userptr_blits@coherency-sync.html * igt at gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3297]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at gem_userptr_blits@coherency-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3282] / [i915#3297]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-7/igt at gem_userptr_blits@forbidden-operations.html - shard-dg2: NOTRUN -> [SKIP][104] ([i915#3282] / [i915#3297]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-1/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#3297] / [i915#4880]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-12/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-dg2: NOTRUN -> [SKIP][106] ([i915#3297] / [i915#4880]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_workarounds@suspend-resume: - shard-tglu: [PASS][107] -> [ABORT][108] ([i915#12817]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-tglu-7/igt at gem_workarounds@suspend-resume.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-6/igt at gem_workarounds@suspend-resume.html * igt at gem_workarounds@suspend-resume-context: - shard-glk: NOTRUN -> [INCOMPLETE][109] ([i915#13356]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk5/igt at gem_workarounds@suspend-resume-context.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][110] +16 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-11/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@allowed-all: - shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#2527] / [i915#2856]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at gen9_exec_parse@allowed-all.html * igt at gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#2527] / [i915#2856]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-10/igt at gen9_exec_parse@basic-rejected-ctx-param.html * igt at gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#2527]) +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-5/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#2527]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-13/igt at gen9_exec_parse@bb-start-cmd.html - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#2856]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-4/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#2856]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-1/igt at gen9_exec_parse@valid-registers.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#4881]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-3/igt at i915_fb_tiling.html * igt at i915_pm_rc6_residency@rc6-idle: - shard-dg1: NOTRUN -> [FAIL][118] ([i915#3591]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0: - shard-dg1: NOTRUN -> [FAIL][119] ([i915#12739] / [i915#3591]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0.html * igt at i915_pm_rpm@debugfs-forcewake-user: - shard-rkl: [PASS][120] -> [SKIP][121] ([i915#13328]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-rkl-4/igt at i915_pm_rpm@debugfs-forcewake-user.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-4/igt at i915_pm_rpm@debugfs-forcewake-user.html * igt at i915_pm_rpm@gem-execbuf-stress: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#13328]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-4/igt at i915_pm_rpm@gem-execbuf-stress.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#11681] / [i915#6621]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#11681]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-4/igt at i915_pm_rps@thresholds.html * igt at i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#6245]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-17/igt at i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][126] ([i915#6245]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-6/igt at i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][127] ([i915#6245]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-3/igt at i915_query@hwconfig_table.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#6188]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-11/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_selftest@live: - shard-rkl: [PASS][129] -> [DMESG-FAIL][130] ([i915#12964]) +2 other tests dmesg-fail [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-rkl-1/igt at i915_selftest@live.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-7/igt at i915_selftest@live.html * igt at i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][131] ([i915#9311]) +1 other test dmesg-warn [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-snb7/igt at i915_selftest@mock.html - shard-tglu: NOTRUN -> [DMESG-WARN][132] ([i915#9311]) +1 other test dmesg-warn [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-4/igt at i915_selftest@mock.html * igt at i915_suspend@basic-s2idle-without-i915: - shard-dg1: [PASS][133] -> [DMESG-WARN][134] ([i915#4391] / [i915#4423]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-dg1-13/igt at i915_suspend@basic-s2idle-without-i915.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at i915_suspend@basic-s2idle-without-i915.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][135] ([i915#4817]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk6/igt at i915_suspend@forcewake.html * igt at intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#7707]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at intel_hwmon@hwmon-read.html * igt at intel_hwmon@hwmon-write: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#7707]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-3/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#4212]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#12454] / [i915#12712]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-5/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#4212]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-13/igt at kms_addfb_basic@tile-pitch-mismatch.html - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#4212]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-4/igt at kms_addfb_basic@tile-pitch-mismatch.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][142] ([i915#8709]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-6/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_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [PASS][143] -> [FAIL][144] ([i915#11808]) +1 other test fail [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-tglu-3/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-10/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#1769] / [i915#3555]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-3/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][146] ([i915#1769] / [i915#3555]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-4/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][147] ([i915#1769] / [i915#3555]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-5/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1: - shard-mtlp: [PASS][148] -> [FAIL][149] ([i915#11808] / [i915#5956]) +1 other test fail [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-mtlp-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#5286]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-2/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#5286]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-17/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][152] ([i915#5286]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/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-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#5286]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][154] -> [FAIL][155] ([i915#5138]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-mtlp-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-3/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#4538] / [i915#5286]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#3638]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-17/igt at kms_big_fb@linear-64bpp-rotate-270.html * igt at kms_big_fb@linear-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#3638]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-1/igt at kms_big_fb@linear-8bpp-rotate-90.html * igt at kms_big_fb@x-tiled-64bpp-rotate-0: - shard-dg1: [PASS][159] -> [DMESG-WARN][160] ([i915#4423]) +1 other test dmesg-warn [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-dg1-18/igt at kms_big_fb@x-tiled-64bpp-rotate-0.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-14/igt at kms_big_fb@x-tiled-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#5190]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#4538] / [i915#5190]) +20 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#4538]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-13/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#12313]) +6 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-11/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#12313]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-17/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#10307] / [i915#6095]) +114 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/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@bad-rotation-90-yf-tiled-ccs at pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#6095]) +44 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-4/igt at kms_ccs@bad-rotation-90-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#6095]) +14 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-5/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#12313]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-3/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][170] ([i915#12313]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-2/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#4423] / [i915#6095]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-12/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#12805]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-13/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#12805]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-8/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][174] ([i915#6095]) +89 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/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-mtl-rc-ccs at pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#6095]) +16 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-1/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][176] ([i915#12796]) +1 other test incomplete [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk7/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-4/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#6095]) +34 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#6095]) +155 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-12/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-3.html * igt at kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#3742]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-9/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#11616] / [i915#7213]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at kms_cdclk@mode-transition-all-outputs.html - shard-rkl: NOTRUN -> [SKIP][182] ([i915#3742]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-7/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#11151] / [i915#7828]) +7 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-14/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_color@ctm-0-50: - shard-tglu-1: NOTRUN -> [SKIP][184] +46 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-negative: - shard-mtlp: NOTRUN -> [SKIP][185] +7 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-2/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#11151] / [i915#7828]) +17 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#11151] / [i915#7828]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_chamelium_frames@dp-crc-single.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#11151] / [i915#7828]) +5 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-3/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#11151] / [i915#7828]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-5/igt at kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#11151] / [i915#7828]) +8 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-2/igt at kms_chamelium_hpd@hdmi-hpd-fast.html * igt at kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [TIMEOUT][191] ([i915#7173]) +1 other test timeout [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-10/igt at kms_content_protection@atomic-dpms.html - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#3116]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-7/igt at kms_content_protection@dp-mst-type-1.html - shard-dg1: NOTRUN -> [SKIP][194] ([i915#3299]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at kms_content_protection@dp-mst-type-1.html - shard-tglu: NOTRUN -> [SKIP][195] ([i915#3116] / [i915#3299]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-6/igt at kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3299]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-7/igt at kms_content_protection@dp-mst-type-1.html - shard-dg2: NOTRUN -> [SKIP][197] ([i915#3299]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-6/igt at kms_content_protection@legacy.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#7118] / [i915#9424]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-4/igt at kms_content_protection@type1.html - shard-rkl: NOTRUN -> [SKIP][200] ([i915#7118] / [i915#9424]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-5/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#7116] / [i915#9424]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-12/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8814]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-8/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-onscreen-256x256: - shard-rkl: [PASS][203] -> [DMESG-WARN][204] ([i915#12964]) +50 other tests dmesg-warn [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-rkl-7/igt at kms_cursor_crc@cursor-onscreen-256x256.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-6/igt at kms_cursor_crc@cursor-onscreen-256x256.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#3555]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-32x32.html - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8814]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-7/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#13049]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-6/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][208] ([i915#13049]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-10/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][209] ([i915#13049]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-4/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#13049]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#13049]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-3/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_edge_walk@128x128-right-edge at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][212] ([i915#12964]) +17 other tests dmesg-warn [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-6/igt at kms_cursor_edge_walk@128x128-right-edge at pipe-a-hdmi-a-2.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#9809]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-8/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#13046] / [i915#5354]) +8 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-11/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: NOTRUN -> [SKIP][215] +19 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-6/igt at kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: NOTRUN -> [FAIL][216] ([i915#2346]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-snb2/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-dg2: NOTRUN -> [SKIP][217] ([i915#4103] / [i915#4213]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#4103]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][219] ([i915#12170]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][220] ([i915#11968]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#8588]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-11/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][222] ([i915#3804]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-1/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2.html * igt at kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#1257]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-4/igt at kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][224] ([i915#1257]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-3/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#12402]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-7/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#8812]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][227] ([i915#8812]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-12/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#3840] / [i915#9688]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-1/igt at kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][229] ([i915#3840]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-7/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#3840]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#3840]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-7/igt at kms_dsc@dsc-with-formats.html * igt at kms_fbcon_fbt@psr: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#3469]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-14/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#4854]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][234] ([i915#4854]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-2/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#1839]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#1839]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-4/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#9337]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#658]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-10/igt at kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][239] ([i915#658]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-4/igt at kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][240] ([i915#658]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-14/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#9934]) +10 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#8381]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-17/igt at kms_flip@2x-flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][243] ([i915#8381]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#3637]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-2/igt at kms_flip@2x-flip-vs-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][245] ([i915#12745] / [i915#4839]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk5/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: NOTRUN -> [INCOMPLETE][246] ([i915#4839]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk5/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-modeset-vs-vblank-race: - shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#3637]) +4 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_flip@2x-modeset-vs-vblank-race.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#9934]) +5 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-1/igt at kms_flip@2x-plain-flip.html - shard-dg1: NOTRUN -> [SKIP][249] ([i915#9934]) +8 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-13/igt at kms_flip@2x-plain-flip.html - shard-tglu: NOTRUN -> [SKIP][250] ([i915#3637]) +4 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-2/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-snb: NOTRUN -> [FAIL][251] ([i915#11989]) +1 other test fail [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-snb7/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@plain-flip-fb-recreate-interruptible: - shard-mtlp: [PASS][252] -> [FAIL][253] ([i915#11989]) +1 other test fail [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-mtlp-5/igt at kms_flip@plain-flip-fb-recreate-interruptible.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-5/igt at kms_flip@plain-flip-fb-recreate-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-13/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#2672] / [i915#3555]) +5 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#2672]) +8 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-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-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-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-1: NOTRUN -> [SKIP][258] ([i915#2587] / [i915#2672] / [i915#3555]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672] / [i915#3555]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-14/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-tglu: NOTRUN -> [SKIP][260] ([i915#2587] / [i915#2672] / [i915#3555]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-10/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#2672] / [i915#3555] / [i915#8813]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#8813]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#2672]) +4 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][264] ([i915#2587] / [i915#2672]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-14/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#2672] / [i915#3555]) +4 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-1/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: NOTRUN -> [SKIP][266] ([i915#2587] / [i915#2672]) +3 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-6/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-yftile-to-32bpp-yftile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#2672] / [i915#3555]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/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-downscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#2587] / [i915#2672]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-1/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [FAIL][270] ([i915#6880]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-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_12420/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#1825]) +5 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#5354]) +44 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#8708]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#8708]) +16 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#10433] / [i915#3458]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#3023]) +20 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][278] +35 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-13/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#3458]) +14 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-13/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#5439]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#1825]) +28 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-1/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][282] +58 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#3458]) +29 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-11/igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt at kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#8228]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-11/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@invalid-hdr: - shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-6/igt at kms_hdr@static-toggle.html - shard-dg1: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-8/igt at kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-7/igt at kms_hdr@static-toggle.html * igt at kms_histogram@algo-basic: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#13389]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-10/igt at kms_histogram@algo-basic.html * igt at kms_histogram@global-basic: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#13388]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-1/igt at kms_histogram@global-basic.html * igt at kms_histogram@global-color: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#13388]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#10656]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-5/igt at kms_joiner@basic-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][294] ([i915#10656]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-4/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][295] ([i915#12388]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#10656]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-12/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][297] ([i915#10656]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#12388]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#12394]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][300] ([i915#12178]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk7/igt at kms_plane_alpha_blend@alpha-basic.html * igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][301] ([i915#7862]) +1 other test fail [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk7/igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1.html * igt at kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][302] ([i915#10647] / [i915#12177]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk4/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][303] ([i915#10647]) +1 other test fail [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk4/igt at kms_plane_alpha_blend@alpha-transparent-fb at pipe-a-hdmi-a-1.html * igt at kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][304] ([i915#3555]) +5 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-2/igt at kms_plane_lowres@tiling-4.html - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-6/igt at kms_plane_lowres@tiling-4.html * igt at kms_plane_lowres@tiling-4 at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#11614] / [i915#3582]) +3 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-6/igt at kms_plane_lowres@tiling-4 at pipe-b-edp-1.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#3555] / [i915#8821]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#8806]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-10/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#3555]) +4 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-3/igt at kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#8806]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-3/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#6953] / [i915#9423]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#12247] / [i915#9423]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-7/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#12247]) +7 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-7/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#12247]) +4 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-4/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#12247]) +2 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-5/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-rkl: [PASS][316] -> [DMESG-WARN][317] ([i915#12917] / [i915#12964]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-rkl-1/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-6/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-dg1: NOTRUN -> [SKIP][318] ([i915#12247]) +4 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-13/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-dg2: NOTRUN -> [SKIP][319] ([i915#12247] / [i915#6953] / [i915#9423]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-10/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#12247] / [i915#3555]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/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][321] ([i915#12247]) +3 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-a.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#12247] / [i915#6953]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-10/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-b: - shard-tglu: NOTRUN -> [SKIP][323] ([i915#12247]) +3 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-10/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#9812]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade-with-dpms: - shard-dg1: NOTRUN -> [SKIP][325] ([i915#5354]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-17/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#13441]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-8/igt at kms_pm_dc@dc5-dpms-negative.html * igt at kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#9685]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#3828]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-4/igt at kms_pm_dc@dc5-retention-flops.html - shard-rkl: NOTRUN -> [SKIP][329] ([i915#3828]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-5/igt at kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][330] ([i915#3828]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-13/igt at kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][331] ([i915#3828]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-3/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_lpsp@kms-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#3828]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#8430]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-3/igt at kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][334] ([i915#8430]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#9519]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][336] ([i915#4077]) +9 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at kms_pm_rpm@fences.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][337] -> [SKIP][338] ([i915#9519]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-rkl-2/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-5/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][339] ([i915#9519]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-10/igt at kms_pm_rpm@modeset-non-lpsp.html - shard-rkl: NOTRUN -> [SKIP][340] ([i915#9519]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-7/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#9519]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-1/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][342] ([i915#10553]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk2/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#6524]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-4/igt at kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][344] ([i915#6524]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-10/igt at kms_prime@basic-crc-hybrid.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][345] ([i915#11520]) +4 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-7/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#11520]) +8 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-3/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][347] ([i915#11520]) +6 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-18/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#12316]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-1/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][349] ([i915#11520]) +13 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk6/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-snb: NOTRUN -> [SKIP][350] ([i915#11520]) +14 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-snb5/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#11520]) +3 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#11520]) +10 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-11/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#9683]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr-cursor-mmap-gtt at edp-1: - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#9688]) +5 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-1/igt at kms_psr@fbc-psr-cursor-mmap-gtt at edp-1.html * igt at kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#1072] / [i915#9732]) +15 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-3/igt at kms_psr@psr-sprite-plane-move.html * igt at kms_psr@psr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#9732]) +8 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_psr@psr2-cursor-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][357] ([i915#1072] / [i915#9732]) +19 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-12/igt at kms_psr@psr2-cursor-mmap-gtt.html * igt at kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][358] ([i915#9732]) +16 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-6/igt at kms_psr@psr2-cursor-plane-onoff.html * igt at kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#1072] / [i915#9732]) +31 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-7/igt at kms_psr@psr2-primary-mmap-gtt.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][360] +453 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk6/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][361] ([i915#9685]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-9/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#5289]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-6/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][363] ([i915#12755]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-5/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#12755] / [i915#5190]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][365] ([i915#5289]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#12755]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_setmode@basic at pipe-a-hdmi-a-1: - shard-rkl: [PASS][367] -> [FAIL][368] ([i915#5465]) +2 other tests fail [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-rkl-4/igt at kms_setmode@basic at pipe-a-hdmi-a-1.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-4/igt at kms_setmode@basic at pipe-a-hdmi-a-1.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-mtlp: [PASS][369] -> [FAIL][370] ([i915#5465]) +2 other tests fail [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-mtlp-7/igt at kms_setmode@basic at pipe-b-edp-1.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-8/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_setmode@clone-exclusive-crtc: - shard-dg1: NOTRUN -> [SKIP][371] ([i915#3555]) +4 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-14/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#3555]) +6 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-3/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][373] ([i915#12276]) +1 other test incomplete [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk1/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#11920]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-10/igt at kms_vrr@lobf.html * igt at kms_vrr@max-min: - shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#9906]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at kms_vrr@max-min.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-dg1: NOTRUN -> [SKIP][376] ([i915#9906]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-14/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-dg1: NOTRUN -> [SKIP][377] ([i915#2437]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-12/igt at kms_writeback@writeback-check-output.html - shard-tglu: NOTRUN -> [SKIP][378] ([i915#2437]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-9/igt at kms_writeback@writeback-check-output.html - shard-mtlp: NOTRUN -> [SKIP][379] ([i915#2437]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-3/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#2437] / [i915#9412]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-3/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][381] ([i915#2437]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk3/igt at kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][382] ([i915#2437]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-invalid-parameters: - shard-rkl: NOTRUN -> [SKIP][383] ([i915#2437]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-5/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][384] ([i915#2436]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-10/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][385] ([i915#2434]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at perf@mi-rpc.html - shard-rkl: NOTRUN -> [SKIP][386] ([i915#2434]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-5/igt at perf@mi-rpc.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][387] +492 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-snb2/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@busy-double-start at vecs0: - shard-mtlp: [PASS][388] -> [FAIL][389] ([i915#4349]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-mtlp-5/igt at perf_pmu@busy-double-start at vecs0.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-7/igt at perf_pmu@busy-double-start at vecs0.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: NOTRUN -> [FAIL][390] ([i915#4349]) +4 other tests fail [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#8850]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-10/igt at perf_pmu@cpu-hotplug.html - shard-tglu-1: NOTRUN -> [SKIP][392] ([i915#8850]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-1/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][393] ([i915#11823]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-11/igt at perf_pmu@module-unload.html * igt at perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][394] ([i915#8516]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-8/igt at perf_pmu@rc6-all-gts.html * igt at prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][395] ([i915#3708] / [i915#4077]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-12/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][396] ([i915#3708]) +1 other test skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-5/igt at prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][397] ([i915#3708]) +2 other tests skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-2/igt at prime_vgem@fence-read-hang.html * igt at prime_vgem@fence-write-hang: - shard-dg1: NOTRUN -> [SKIP][398] ([i915#3708]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-13/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][399] ([i915#9917]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-11/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][400] ([i915#9917]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-4/igt at sriov_basic@enable-vfs-autoprobe-on.html * igt at sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][401] ([i915#9917]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg1-13/igt at sriov_basic@enable-vfs-bind-unbind-each.html #### Possible fixes #### * igt at gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][402] ([i915#7297]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-dg2-3/igt at gem_ccs@suspend-resume.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-11/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][404] ([i915#12392] / [i915#7297]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-dg2-3/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-smem-lmem0.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-11/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-smem-lmem0.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: [TIMEOUT][406] ([i915#5493]) -> [PASS][407] +1 other test pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-dg2-5/igt at gem_lmem_swapping@smem-oom at lmem0.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-10/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][408] -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-tglu-7/igt at gem_tiled_swapping@non-threaded.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-9/igt at gem_tiled_swapping@non-threaded.html * igt at gem_workarounds@suspend-resume: - shard-glk: [INCOMPLETE][410] ([i915#13356]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-glk7/igt at gem_workarounds@suspend-resume.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk9/igt at gem_workarounds@suspend-resume.html * igt at i915_module_load@reload-with-fault-injection: - shard-snb: [DMESG-WARN][412] ([i915#13475]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-snb7/igt at i915_module_load@reload-with-fault-injection.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-snb5/igt at i915_module_load@reload-with-fault-injection.html - shard-tglu: [ABORT][414] ([i915#12817] / [i915#9820]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-tglu-2/igt at i915_module_load@reload-with-fault-injection.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-tglu-6/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_suspend@debugfs-reader: - shard-glk: [INCOMPLETE][416] ([i915#4817]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-glk4/igt at i915_suspend@debugfs-reader.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk4/igt at i915_suspend@debugfs-reader.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-dg2: [FAIL][418] ([i915#10991] / [i915#12766]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-dg2-7/igt at kms_async_flips@alternate-sync-async-flip.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-dg2-11/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: [INCOMPLETE][420] ([i915#12761] / [i915#1982]) -> [PASS][421] +1 other test pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-glk5/igt at kms_async_flips@async-flip-suspend-resume.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk5/igt at kms_async_flips@async-flip-suspend-resume.html * igt at kms_atomic_transition@modeset-transition-fencing: - shard-glk: [FAIL][422] ([i915#12238]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-glk8/igt at kms_atomic_transition@modeset-transition-fencing.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk3/igt at kms_atomic_transition@modeset-transition-fencing.html * igt at kms_atomic_transition@modeset-transition-fencing at 2x-outputs: - shard-glk: [FAIL][424] ([i915#11859]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-glk8/igt at kms_atomic_transition@modeset-transition-fencing at 2x-outputs.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk3/igt at kms_atomic_transition@modeset-transition-fencing at 2x-outputs.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][426] ([i915#5138]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-mtlp-8/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-mtlp-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180: - shard-glk: [DMESG-WARN][428] ([i915#118]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-glk3/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-glk9/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_busy@extended-modeset-hang-newfb-with-reset: - shard-rkl: [DMESG-WARN][430] ([i915#12964]) -> [PASS][431] +35 other tests pass [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-rkl-7/igt at kms_busy@extended-modeset-hang-newfb-with-reset.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-7/igt at kms_busy@extended-modeset-hang-newfb-with-reset.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [FAIL][432] ([i915#2346]) -> [PASS][433] [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-snb2/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [DMESG-WARN][434] ([i915#12917] / [i915#12964]) -> [PASS][435] [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15932/shard-rkl-3/igt at kms_flip@absolute-wf_vblank-interruptible.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/shard-rkl-7/igt at kms_flip@absolute-wf_vblank-interruptible.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-snb: == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12420/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 13 02:15:49 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 13 Jan 2025 02:15:49 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Support_for_IN=5FFORMATS?= =?utf-8?q?=5FASYNC_plane_property?= In-Reply-To: <20250110063909.34042-1-santhosh.reddy.guddati@intel.com> References: <20250110063909.34042-1-santhosh.reddy.guddati@intel.com> Message-ID: <173673454944.3090899.2006145199605512210@b555e5b46a47> == Series Details == Series: Support for IN_FORMATS_ASYNC plane property URL : https://patchwork.freedesktop.org/series/143374/ State : failure == Summary == CI Bug Log - changes from XEIGT_8186_full -> XEIGTPW_12424_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12424_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12424_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_12424_full: ### IGT changes ### #### Possible regressions #### * igt at kms_async_flips@async-flip-with-page-flip-events: - shard-bmg: [PASS][1] -> [SKIP][2] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_async_flips@async-flip-with-page-flip-events.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_async_flips@async-flip-with-page-flip-events.html - shard-lnl: [PASS][3] -> [SKIP][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-1/igt at kms_async_flips@async-flip-with-page-flip-events.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-6.html * igt at kms_dp_aux_dev: - shard-dg2-set2: [PASS][6] -> [SKIP][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_dp_aux_dev.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_dp_aux_dev.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible at bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][8] -> [FAIL][9] +1 other test fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_flip@2x-plain-flip-ts-check-interruptible at bd-hdmi-a6-dp4.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at kms_flip@2x-plain-flip-ts-check-interruptible at bd-hdmi-a6-dp4.html * igt at kms_flip@modeset-vs-vblank-race at a-dp4: - shard-dg2-set2: [PASS][10] -> [INCOMPLETE][11] +1 other test incomplete [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at kms_flip@modeset-vs-vblank-race at a-dp4.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at kms_flip@modeset-vs-vblank-race at a-dp4.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf at pipe-b-edp-1: - shard-lnl: [PASS][12] -> [INCOMPLETE][13] +2 other tests incomplete [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-3/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf at pipe-b-edp-1.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-1/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf at pipe-b-edp-1.html * igt at kms_psr@fbc-psr2-sprite-render: - shard-lnl: [PASS][14] -> [FAIL][15] +1 other test fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-2/igt at kms_psr@fbc-psr2-sprite-render.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-3/igt at kms_psr@fbc-psr2-sprite-render.html #### Warnings #### * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][16] ([Intel XE#3719]) -> [SKIP][17] [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-6/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html Known issues ------------ Here are the changes found in XEIGTPW_12424_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@unplug-rescan: - shard-bmg: [PASS][18] -> [SKIP][19] ([Intel XE#1885]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at core_hotunplug@unplug-rescan.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at core_hotunplug@unplug-rescan.html - shard-dg2-set2: [PASS][20] -> [SKIP][21] ([Intel XE#1885]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at core_hotunplug@unplug-rescan.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at core_hotunplug@unplug-rescan.html * igt at fbdev@nullptr: - shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2134]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at fbdev@nullptr.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at fbdev@nullptr.html - shard-dg2-set2: [PASS][24] -> [SKIP][25] ([Intel XE#2134]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at fbdev@nullptr.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at fbdev@nullptr.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#623]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][27] -> [FAIL][28] ([Intel XE#827]) +1 other test fail [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-4/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@async-flip-with-page-flip-events: - shard-dg2-set2: [PASS][29] -> [SKIP][30] ([Intel XE#455]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_async_flips@async-flip-with-page-flip-events.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-436/igt at kms_async_flips@async-flip-with-page-flip-events.html * igt at kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#873]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-8/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#3279]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@modeset-transition-nonblocking: - shard-bmg: [PASS][33] -> [DMESG-WARN][34] ([Intel XE#877]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_atomic_transition@modeset-transition-nonblocking.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-1/igt at kms_atomic_transition@modeset-transition-nonblocking.html * igt at kms_atomic_transition@modeset-transition-nonblocking at 2x-outputs: - shard-bmg: NOTRUN -> [DMESG-WARN][35] ([Intel XE#877]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-1/igt at kms_atomic_transition@modeset-transition-nonblocking at 2x-outputs.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1407]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-3/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][37] -> [SKIP][38] ([Intel XE#2136] / [Intel XE#2231]) +6 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at kms_big_fb@4-tiled-64bpp-rotate-180.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_big_fb@4-tiled-64bpp-rotate-180.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#316]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-435/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#2136] / [Intel XE#2231]) +7 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_big_fb@x-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@y-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#1124]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-4/igt at kms_big_fb@y-tiled-32bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#1124]) +7 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-435/igt at kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1124]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-6/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1467]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-3/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#610]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#367]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-4/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#367]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-436/igt at kms_bw@linear-tiling-3-displays-3840x2160p.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2887]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-6/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#2907]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-463/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#2887]) +9 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [PASS][53] -> [INCOMPLETE][54] ([Intel XE#3862]) +1 other test incomplete [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-463/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#787]) +125 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#455] / [Intel XE#787]) +31 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-463/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-dp-4: - shard-dg2-set2: [PASS][57] -> [INCOMPLETE][58] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-dp-4.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][59] ([Intel XE#1727] / [Intel XE#3124]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-463/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-cc: - shard-dg2-set2: [PASS][60] -> [INCOMPLETE][61] ([Intel XE#1727] / [Intel XE#2692]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-435/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 at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][62] ([Intel XE#1727] / [Intel XE#3113]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-463/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-4-tiled-dg2-rc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][63] ([Intel XE#3124]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-hdmi-a-6.html * igt at kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1152]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-7/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_color@ctm-negative: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#306]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-464/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_hpd@dp-hpd-fast: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#373]) +8 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-435/igt at kms_chamelium_hpd@dp-hpd-fast.html * igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#373]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-3/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#307]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-4/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@lic-type-0: - shard-dg2-set2: NOTRUN -> [FAIL][69] ([Intel XE#1178]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-435/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][70] ([Intel XE#1178]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-2/igt at kms_content_protection@lic-type-0 at pipe-a-dp-2.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][71] ([Intel XE#3304]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-435/igt at kms_content_protection@lic-type-0 at pipe-a-dp-4.html * igt at kms_content_protection@lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#455]) +14 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-463/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][73] ([Intel XE#1188]) +1 other test fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1424]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-5/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#2321]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-8/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#308]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-436/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#323]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-5/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursor-vs-flip-atomic-transitions: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([i915#2575]) +8 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#2291]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#309]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-6/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [PASS][82] -> [FAIL][83] ([Intel XE#1475]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-8/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-4/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-dp-2: - shard-bmg: NOTRUN -> [FAIL][84] ([Intel XE#2141]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-4/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-dp-2.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#3383]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-7/igt at kms_display_modes@extended-mode-basic.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#1138]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1137]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-2/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-dp2-hdmi-a3: - shard-bmg: [PASS][88] -> [FAIL][89] ([Intel XE#3288] / [Intel XE#3321]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-dp2-hdmi-a3.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/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 cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][90] -> [FAIL][91] ([Intel XE#301]) +6 other tests fail [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/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 ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][92] ([Intel XE#2882]) +1 other test fail [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/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: NOTRUN -> [FAIL][93] ([Intel XE#3321]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1421]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-3/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][95] -> [SKIP][96] ([Intel XE#2316]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb-recreate.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg2-set2: [PASS][97] -> [FAIL][98] ([Intel XE#886]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@2x-plain-flip-ts-check at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][99] -> [FAIL][100] ([Intel XE#2882]) +2 other tests fail [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_flip@2x-plain-flip-ts-check at ab-hdmi-a6-dp4.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-464/igt at kms_flip@2x-plain-flip-ts-check at ab-hdmi-a6-dp4.html * igt at kms_flip@busy-flip: - shard-dg2-set2: [PASS][101] -> [SKIP][102] ([i915#2575]) +10 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_flip@busy-flip.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_flip@busy-flip.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][103] ([Intel XE#301]) +8 other tests fail [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html * igt at kms_flip@modeset-vs-vblank-race: - shard-dg2-set2: [PASS][104] -> [INCOMPLETE][105] ([Intel XE#2049]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at kms_flip@modeset-vs-vblank-race.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at kms_flip@modeset-vs-vblank-race.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1401] / [Intel XE#1745]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-6/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-default-mode: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1401]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#651]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#651]) +28 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#656]) +22 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2313]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-dp-2: - shard-bmg: NOTRUN -> [FAIL][112] ([Intel XE#2333]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-2/igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-dp-2.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#653]) +31 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_hdr@invalid-metadata-sizes: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1503]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-1/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_histogram@algo-basic: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#3897]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-463/igt at kms_histogram@algo-basic.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2925]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-463/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-lnl: [PASS][117] -> [INCOMPLETE][118] ([Intel XE#4016]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-5/igt at kms_pipe_crc_basic@suspend-read-crc.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-7/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [PASS][119] -> [SKIP][120] ([Intel XE#3007]) +15 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_plane@plane-panning-bottom-right-suspend.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#2493]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-2/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][122] -> [SKIP][123] ([Intel XE#2571]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2763]) +8 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-464/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-downscale-factor-0-5: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#2763]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-4/igt at kms_plane_scaling@planes-downscale-factor-0-5.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#736]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-7/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [PASS][128] -> [FAIL][129] ([Intel XE#718]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-4/igt at kms_pm_dc@dc5-psr.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-8/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1439] / [Intel XE#836]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-4/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#2893]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-3/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#1489]) +11 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-435/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#1122]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-6/igt at kms_psr@fbc-pr-cursor-blt.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#1406]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-4/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2850] / [Intel XE#929]) +20 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-435/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html * igt at kms_rotation_crc@bad-tiling: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#3414] / [Intel XE#3904]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-4/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1127]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#3414]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#1127]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1435]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-2/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#330]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#2168]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-436/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1499]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-1/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#756]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at kms_writeback@writeback-fb-id.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#1091] / [Intel XE#2849]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-464/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-464/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#1126]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at xe_copy_basic@mem-set-linear-0xfffe.html * igt at xe_eudebug_online@basic-breakpoint: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#1130]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at xe_eudebug_online@basic-breakpoint.html * igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#2905]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-4/igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html * igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2905]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-6/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][152] ([Intel XE#1600]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-436/igt at xe_evict@evict-beng-large-multi-vm-cm.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][153] -> [TIMEOUT][154] ([Intel XE#1473] / [Intel XE#402]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at xe_evict@evict-beng-mixed-many-threads-small.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-threads-small: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#688]) +6 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-7/igt at xe_evict@evict-beng-threads-small.html * igt at xe_exec_basic@multigpu-once-null-defer-bind: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2322]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at xe_exec_basic@multigpu-once-null-defer-bind.html * igt at xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1392]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-3/igt at xe_exec_basic@multigpu-once-userptr-invalidate.html * igt at xe_exec_compute_mode@twice-bindexecqueue-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#1130]) +10 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at xe_exec_compute_mode@twice-bindexecqueue-rebind.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#288]) +24 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-464/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: NOTRUN -> [SKIP][160] ([Intel XE#2360]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-435/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#2905]) +9 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_gt_freq@freq_low_max: - shard-dg2-set2: [PASS][162] -> [SKIP][163] ([Intel XE#1130]) +28 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at xe_gt_freq@freq_low_max.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at xe_gt_freq@freq_low_max.html * igt at xe_live_ktest@xe_eudebug: - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#1192] / [Intel XE#3026]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-1/igt at xe_live_ktest@xe_eudebug.html * igt at xe_live_ktest@xe_migrate: - shard-bmg: [PASS][165] -> [SKIP][166] ([Intel XE#1192]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at xe_live_ktest@xe_migrate.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-2/igt at xe_live_ktest@xe_migrate.html * igt at xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#560]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at xe_media_fill@media-fill.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#512]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-463/igt at xe_mmap@small-bar.html * igt at xe_oa@oa-regs-whitelisted: - shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#2541] / [Intel XE#3573]) +8 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-435/igt at xe_oa@oa-regs-whitelisted.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][170] ([Intel XE#1173]) +1 other test fail [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-436/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#2284] / [Intel XE#366]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-2/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3cold-mocs: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#2284]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s3-vm-bind-prefetch: - shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#584]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-1/igt at xe_pm@s3-vm-bind-prefetch.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#2284] / [Intel XE#366]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-463/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-d3hot-basic-exec: - shard-lnl: [PASS][175] -> [ABORT][176] ([Intel XE#1358] / [Intel XE#1607]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-1/igt at xe_pm@s4-d3hot-basic-exec.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-2/igt at xe_pm@s4-d3hot-basic-exec.html * igt at xe_pm@s4-vm-bind-userptr: - shard-lnl: [PASS][177] -> [ABORT][178] ([Intel XE#1358] / [Intel XE#1794]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-5/igt at xe_pm@s4-vm-bind-userptr.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-2/igt at xe_pm@s4-vm-bind-userptr.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][179] ([Intel XE#944]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#944]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-7/igt at xe_query@multigpu-query-topology-l3-bank-mask.html * igt at xe_sysfs_scheduler@job_timeout_ms-min-max: - shard-bmg: [PASS][181] -> [SKIP][182] ([Intel XE#1130]) +42 other tests skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at xe_sysfs_scheduler@job_timeout_ms-min-max.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at xe_sysfs_scheduler@job_timeout_ms-min-max.html #### Possible fixes #### * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1: - shard-lnl: [FAIL][183] ([Intel XE#3908]) -> [PASS][184] +1 other test pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-8/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html * igt at kms_cursor_crc@cursor-suspend: - shard-dg2-set2: [ABORT][185] -> [PASS][186] +1 other test pass [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_cursor_crc@cursor-suspend.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-436/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][187] ([Intel XE#2291]) -> [PASS][188] +5 other tests pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][189] ([Intel XE#3321]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: [SKIP][191] ([Intel XE#2316]) -> [PASS][192] +3 other tests pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-vs-hang.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-5/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][193] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-2/igt at kms_flip@blocking-wf_vblank.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-5/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@blocking-wf_vblank at c-edp1: - shard-lnl: [FAIL][195] ([Intel XE#886]) -> [PASS][196] +2 other tests pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-2/igt at kms_flip@blocking-wf_vblank at c-edp1.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-5/igt at kms_flip@blocking-wf_vblank at c-edp1.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][197] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3: - shard-bmg: [FAIL][199] ([Intel XE#3288] / [Intel XE#3321]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank at a-dp2: - shard-bmg: [FAIL][201] ([Intel XE#2882]) -> [PASS][202] +1 other test pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html * igt at kms_flip@flip-vs-expired-vblank at b-edp1: - shard-lnl: [FAIL][203] ([Intel XE#301]) -> [PASS][204] +1 other test pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-5/igt at kms_flip@flip-vs-expired-vblank at b-edp1.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-4/igt at kms_flip@flip-vs-expired-vblank at b-edp1.html * igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3: - shard-bmg: [FAIL][205] ([Intel XE#3321]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][207] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-464/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a6: - shard-dg2-set2: [INCOMPLETE][209] -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a6.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-464/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a6.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-dg2-set2: [ABORT][211] ([Intel XE#2625]) -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_frontbuffer_tracking@fbc-suspend.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][213] ([Intel XE#718]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-1/igt at kms_pm_dc@dc5-dpms.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [FAIL][215] ([Intel XE#899]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-4/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-3/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vrr@negative-basic: - shard-bmg: [SKIP][217] ([Intel XE#1499]) -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_vrr@negative-basic.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-5/igt at kms_vrr@negative-basic.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [INCOMPLETE][219] ([Intel XE#1473]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_evict@evict-beng-mixed-threads-large.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-2/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [SKIP][221] ([Intel XE#1130]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_exec_basic@many-bindexecqueue-rebind.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-4/igt at xe_exec_basic@many-bindexecqueue-rebind.html - shard-dg2-set2: [SKIP][223] ([Intel XE#1130]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at xe_exec_basic@many-bindexecqueue-rebind.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-463/igt at xe_exec_basic@many-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [SKIP][225] ([Intel XE#1392]) -> [PASS][226] +4 other tests pass [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-435/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][227] ([Intel XE#1192]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_live_ktest@xe_mocs.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at xe_live_ktest@xe_mocs.html * igt at xe_module_load@reload: - shard-bmg: [FAIL][229] ([Intel XE#3546]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_module_load@reload.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-2/igt at xe_module_load@reload.html * igt at xe_pm@s3-basic: - shard-dg2-set2: [ABORT][231] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at xe_pm@s3-basic.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-463/igt at xe_pm@s3-basic.html * igt at xe_pm@s4-mocs: - shard-lnl: [ABORT][233] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-2/igt at xe_pm@s4-mocs.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-lnl-5/igt at xe_pm@s4-mocs.html #### Warnings #### * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: [SKIP][235] ([Intel XE#2327]) -> [SKIP][236] ([Intel XE#2136] / [Intel XE#2231]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_big_fb@linear-8bpp-rotate-270.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_big_fb@linear-8bpp-rotate-270.html - shard-dg2-set2: [SKIP][237] ([Intel XE#316]) -> [SKIP][238] ([Intel XE#2136] / [Intel XE#2231]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at kms_big_fb@linear-8bpp-rotate-270.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][239] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][240] ([Intel XE#1124]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-5/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][241] ([Intel XE#2136]) -> [SKIP][242] ([Intel XE#1124]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-463/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-bmg: [SKIP][243] ([Intel XE#1124]) -> [SKIP][244] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_big_fb@yf-tiled-8bpp-rotate-90.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_big_fb@yf-tiled-8bpp-rotate-90.html - shard-dg2-set2: [SKIP][245] ([Intel XE#1124]) -> [SKIP][246] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_big_fb@yf-tiled-8bpp-rotate-90.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: [SKIP][247] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][248] ([Intel XE#3007]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html - shard-dg2-set2: [SKIP][249] ([Intel XE#2191]) -> [SKIP][250] ([i915#2575]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt at kms_bw@linear-tiling-3-displays-2560x1440p: - shard-dg2-set2: [SKIP][251] ([Intel XE#367]) -> [SKIP][252] ([i915#2575]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_bw@linear-tiling-3-displays-2560x1440p.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_bw@linear-tiling-3-displays-2560x1440p.html - shard-bmg: [SKIP][253] ([Intel XE#367]) -> [SKIP][254] ([Intel XE#3007]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_bw@linear-tiling-3-displays-2560x1440p.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_bw@linear-tiling-3-displays-2560x1440p.html * igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][255] ([Intel XE#2887]) -> [SKIP][256] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][257] ([Intel XE#3432]) -> [SKIP][258] ([Intel XE#2136] / [Intel XE#2231]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs: - shard-dg2-set2: [SKIP][259] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][260] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html * igt at kms_chamelium_edid@vga-edid-read: - shard-dg2-set2: [SKIP][261] ([Intel XE#373]) -> [SKIP][262] ([i915#2575]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_chamelium_edid@vga-edid-read.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_chamelium_edid@vga-edid-read.html * igt at kms_chamelium_hpd@dp-hpd-after-hibernate: - shard-bmg: [SKIP][263] ([Intel XE#2252]) -> [SKIP][264] ([Intel XE#3007]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_chamelium_hpd@dp-hpd-after-hibernate.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-after-hibernate.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-bmg: [SKIP][265] ([Intel XE#2390]) -> [SKIP][266] ([Intel XE#3007]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_content_protection@dp-mst-lic-type-1.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_content_protection@dp-mst-lic-type-1.html - shard-dg2-set2: [SKIP][267] ([Intel XE#307]) -> [SKIP][268] ([i915#2575]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_content_protection@dp-mst-lic-type-1.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@lic-type-0: - shard-bmg: [SKIP][269] ([Intel XE#2341]) -> [FAIL][270] ([Intel XE#1178]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_content_protection@lic-type-0.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-2/igt at kms_content_protection@lic-type-0.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-bmg: [SKIP][271] ([Intel XE#2321]) -> [SKIP][272] ([Intel XE#3007]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_cursor_crc@cursor-random-512x170.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: [SKIP][273] ([Intel XE#308]) -> [SKIP][274] ([i915#2575]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-bmg: [SKIP][275] ([Intel XE#2286]) -> [SKIP][276] ([Intel XE#3007]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][277] ([Intel XE#877]) -> [SKIP][278] ([Intel XE#3007]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [SKIP][279] ([Intel XE#2316]) -> [FAIL][280] ([Intel XE#2882]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-bmg: [SKIP][281] ([Intel XE#2316]) -> [SKIP][282] ([Intel XE#3007]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@2x-flip-vs-wf_vblank-interruptible.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: [SKIP][283] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][284] ([Intel XE#2136] / [Intel XE#2231]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][285] ([Intel XE#2311]) -> [SKIP][286] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][287] ([Intel XE#651]) -> [SKIP][288] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-suspend.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [FAIL][289] ([Intel XE#2333]) -> [INCOMPLETE][290] ([Intel XE#2050]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [FAIL][291] ([Intel XE#2333]) -> [SKIP][292] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][293] ([Intel XE#2333]) -> [SKIP][294] ([Intel XE#2312]) +6 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][295] ([Intel XE#2312]) -> [FAIL][296] ([Intel XE#2333]) +3 other tests fail [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [INCOMPLETE][297] ([Intel XE#2050]) -> [FAIL][298] ([Intel XE#2333]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][299] ([Intel XE#2312]) -> [SKIP][300] ([Intel XE#2311]) +12 other tests skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][301] ([Intel XE#2312]) -> [SKIP][302] ([Intel XE#2136] / [Intel XE#2231]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][303] ([Intel XE#2311]) -> [SKIP][304] ([Intel XE#2312]) +9 other tests skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][305] ([Intel XE#2313]) -> [SKIP][306] ([Intel XE#2312]) +11 other tests skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][307] ([Intel XE#2313]) -> [SKIP][308] ([Intel XE#2136] / [Intel XE#2231]) +7 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][309] ([Intel XE#2312]) -> [SKIP][310] ([Intel XE#2313]) +13 other tests skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][311] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][312] ([Intel XE#2313]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html - shard-dg2-set2: [SKIP][313] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][314] ([Intel XE#653]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][315] ([Intel XE#653]) -> [SKIP][316] ([Intel XE#2136] / [Intel XE#2231]) +6 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-bmg: [SKIP][317] ([Intel XE#2763]) -> [SKIP][318] ([Intel XE#3007]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-dg2-set2: [SKIP][319] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][320] ([i915#2575]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-dg2-set2: [SKIP][321] ([Intel XE#1489]) -> [SKIP][322] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-bmg: [SKIP][323] ([Intel XE#1489]) -> [SKIP][324] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: [SKIP][325] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][326] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_psr@fbc-psr2-primary-render.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-plane-onoff: - shard-bmg: [SKIP][327] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][328] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_psr@pr-cursor-plane-onoff.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_psr@pr-cursor-plane-onoff.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][329] ([Intel XE#1729]) -> [SKIP][330] ([Intel XE#2426]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-6/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@max-min: - shard-bmg: [SKIP][331] ([Intel XE#1499]) -> [SKIP][332] ([Intel XE#3007]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_vrr@max-min.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at kms_vrr@max-min.html - shard-dg2-set2: [SKIP][333] ([Intel XE#455]) -> [SKIP][334] ([i915#2575]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_vrr@max-min.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at kms_vrr@max-min.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-bmg: [SKIP][335] ([Intel XE#3889]) -> [SKIP][336] ([Intel XE#1130]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html - shard-dg2-set2: [SKIP][337] ([Intel XE#3889]) -> [SKIP][338] ([Intel XE#1130]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [TIMEOUT][339] ([Intel XE#1473]) -> [INCOMPLETE][340] ([Intel XE#1473]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_evict@evict-beng-mixed-many-threads-small.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-6/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][341] ([Intel XE#1000]) -> [TIMEOUT][342] ([Intel XE#1473]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_evict@evict-beng-threads-large.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-5/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [TIMEOUT][343] ([Intel XE#1473]) -> [TIMEOUT][344] ([Intel XE#1473] / [Intel XE#2472]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at xe_evict@evict-mixed-many-threads-small.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-4/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [TIMEOUT][345] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][346] ([Intel XE#1000]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_evict@evict-mixed-threads-large.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-1/igt at xe_evict@evict-mixed-threads-large.html * igt at xe_evict@evict-threads-large: - shard-bmg: [INCOMPLETE][347] ([Intel XE#1473]) -> [SKIP][348] ([Intel XE#1130]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_evict@evict-threads-large.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-once-null: - shard-bmg: [SKIP][349] ([Intel XE#2322]) -> [SKIP][350] ([Intel XE#1130]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_exec_basic@multigpu-once-null.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-bmg-8/igt at xe_exec_basic@multigpu-once-null.html * igt at xe_exec_fault_mode@many-userptr-invalidate-race-prefetch: - shard-dg2-set2: [SKIP][351] ([Intel XE#288]) -> [SKIP][352] ([Intel XE#1130]) +4 other tests skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at xe_exec_fault_mode@many-userptr-invalidate-race-prefetch.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at xe_exec_fault_mode@many-userptr-invalidate-race-prefetch.html * igt at xe_oa@mi-rpc: - shard-dg2-set2: [SKIP][353] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][354] ([Intel XE#1130]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at xe_oa@mi-rpc.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/shard-dg2-432/igt at xe_oa@mi-rpc.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#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [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#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [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#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#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [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#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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [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#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026 [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#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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [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#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908 [Intel XE#4016]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4016 [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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [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#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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_8186 -> IGTPW_12424 * Linux: xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917 -> xe-2472-4c299eeff0b03f0e988491bc9102594620e67d42 IGTPW_12424: 237a2abd877b0066525313f9aa05816420c5c671 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8186: 2c6b2f0ed4075aa1ac3d341d612e41343cff4e4d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917: 0ca002b6f088ddd9bdde5630662526a50b7ef917 xe-2472-4c299eeff0b03f0e988491bc9102594620e67d42: 4c299eeff0b03f0e988491bc9102594620e67d42 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12424/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 13 05:46:18 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 13 Jan 2025 05:46:18 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/kms=5Fplane=5Fscalin?= =?utf-8?q?g=3A_get_mode_only_after_setting_the_output_pipe?= In-Reply-To: <20250110123403.1818011-1-luciano.coelho@intel.com> References: <20250110123403.1818011-1-luciano.coelho@intel.com> Message-ID: <173674717890.3139263.9477051405974825494@b555e5b46a47> == Series Details == Series: tests/kms_plane_scaling: get mode only after setting the output pipe URL : https://patchwork.freedesktop.org/series/143388/ State : failure == Summary == CI Bug Log - changes from XEIGT_8186_full -> XEIGTPW_12425_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12425_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12425_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_12425_full: ### IGT changes ### #### Possible regressions #### * igt at kms_fbcon_fbt@fbc-suspend: - shard-lnl: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-6/igt at kms_fbcon_fbt@fbc-suspend.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-5/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_pm_rpm@i2c: - shard-bmg: [PASS][3] -> [FAIL][4] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_pm_rpm@i2c.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_pm_rpm@i2c.html - shard-dg2-set2: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_pm_rpm@i2c.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_pm_rpm@i2c.html * igt at kms_vblank@query-forked-busy-hang: - shard-bmg: [PASS][7] -> [INCOMPLETE][8] +1 other test incomplete [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_vblank@query-forked-busy-hang.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-5/igt at kms_vblank@query-forked-busy-hang.html * igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][9] +1 other test abort [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2.html Known issues ------------ Here are the changes found in XEIGTPW_12425_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#623]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [PASS][11] -> [FAIL][12] ([Intel XE#911]) +3 other tests fail [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-1/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-4/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * 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][13] ([Intel XE#2550]) +23 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#873]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#3279]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-5/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407]) +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-4/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316]) +4 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#1124]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_big_fb@y-tiled-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +11 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-3/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1467]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-5/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#610]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#367]) +6 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1512]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-4/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#367]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-7/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2887]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-8/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#2907]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +8 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-b-edp-1: - shard-lnl: [PASS][29] -> [INCOMPLETE][30] ([Intel XE#3862]) +1 other test incomplete [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-2/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-b-edp-1.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-b-edp-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#787]) +174 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#455] / [Intel XE#787]) +40 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][33] ([Intel XE#1727] / [Intel XE#3124]) +1 other test incomplete [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html * igt at kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1152]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_color@ctm-negative: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#306]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_hpd@dp-hpd-fast: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#373]) +11 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_chamelium_hpd@dp-hpd-fast.html * igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#373]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-5/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#307]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@legacy: - shard-dg2-set2: NOTRUN -> [FAIL][39] ([Intel XE#1178]) +1 other test fail [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][40] ([Intel XE#1178]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_content_protection@lic-type-0 at pipe-a-dp-2.html * igt at kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][41] ([Intel XE#1188]) +1 other test fail [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1424]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-1/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#2321]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-2/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#308]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#455]) +16 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#323]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#323]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#309]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-7/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][49] -> [SKIP][50] ([Intel XE#2291]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@torture-move at all-pipes: - shard-dg2-set2: [PASS][51] -> [DMESG-WARN][52] ([Intel XE#3184]) +1 other test dmesg-warn [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at kms_cursor_legacy@torture-move at all-pipes.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_cursor_legacy@torture-move at all-pipes.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_12425/shard-lnl-1/igt at kms_display_modes@extended-mode-basic.html * igt at kms_feature_discovery@chamelium: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#701]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-6/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1138]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1137]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-3/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-blocking-wf_vblank at ac-dp2-hdmi-a3: - shard-bmg: [PASS][57] -> [FAIL][58] ([Intel XE#2882]) +5 other tests fail [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_flip@2x-blocking-wf_vblank at ac-dp2-hdmi-a3.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/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 bc-hdmi-a6-dp4: - shard-dg2-set2: [PASS][59] -> [FAIL][60] ([Intel XE#301]) +2 other tests fail [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a6-dp4.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#2316]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1421]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-6/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1: - shard-lnl: [PASS][64] -> [FAIL][65] ([Intel XE#886]) +2 other tests fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-1/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: [PASS][66] -> [FAIL][67] ([Intel XE#3321]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/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][68] -> [FAIL][69] ([Intel XE#301] / [Intel XE#3321]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at b-dp4.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at b-dp4.html * igt at kms_flip@flip-vs-suspend: - shard-bmg: NOTRUN -> [INCOMPLETE][70] ([Intel XE#2597]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at d-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][71] ([Intel XE#2597] / [Intel XE#2635]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_flip@flip-vs-suspend at d-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1397] / [Intel XE#1745]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1397]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1401] / [Intel XE#1745]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-3/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-default-mode: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1401]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#651]) +35 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#656]) +21 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte.html * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#651]) +6 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2313]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-dp-2: - shard-bmg: NOTRUN -> [FAIL][80] ([Intel XE#2333]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-5/igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-dp-2.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#653]) +34 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2312]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_histogram@algo-basic: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#3897]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_histogram@algo-basic.html * igt at kms_joiner@basic-force-big-joiner: - shard-bmg: [PASS][84] -> [SKIP][85] ([Intel XE#3012]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_joiner@basic-force-big-joiner.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#2927]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#2925]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_plane_cursor@viewport: - shard-dg2-set2: [PASS][88] -> [FAIL][89] ([Intel XE#616]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_plane_cursor@viewport.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at kms_plane_cursor@viewport.html * igt at kms_plane_cursor@viewport at pipe-a-hdmi-a-2-size-64: - shard-dg2-set2: NOTRUN -> [FAIL][90] ([Intel XE#616]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at kms_plane_cursor@viewport at pipe-a-hdmi-a-2-size-64.html * igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#599]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-1/igt at kms_plane_lowres@tiling-x at pipe-b-edp-1.html * igt at kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#2493]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-2/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2763]) +11 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2763] / [Intel XE#455]) +7 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-downscale-factor-0-5: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#2763]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at kms_plane_scaling@planes-downscale-factor-0-5.html * igt at kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#870]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [PASS][97] -> [FAIL][98] ([Intel XE#718]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-4/igt at kms_pm_dc@dc5-psr.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1439] / [Intel XE#836]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-4/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2893]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-2/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#1489]) +10 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#1122]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-2/igt at kms_psr@fbc-pr-cursor-blt.html * igt at kms_psr@fbc-pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1406]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-7/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2850] / [Intel XE#929]) +18 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html * igt at kms_rotation_crc@bad-tiling: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#3414] / [Intel XE#3904]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-2/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1127]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#3414]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1127]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#3414] / [Intel XE#3904]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_setmode@clone-exclusive-crtc: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#1435]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1435]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-6/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [PASS][113] -> [ABORT][114] ([Intel XE#2625]) +1 other test abort [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_vblank@ts-continuation-suspend.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2168]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_vrr@lobf.html * igt at kms_vrr@seamless-rr-switch-virtual at pipe-a-edp-1: - shard-lnl: [PASS][116] -> [FAIL][117] ([Intel XE#2142]) +1 other test fail [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-8/igt at kms_vrr@seamless-rr-switch-virtual at pipe-a-edp-1.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-2/igt at kms_vrr@seamless-rr-switch-virtual at pipe-a-edp-1.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#756]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_writeback@writeback-fb-id.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_12425/shard-dg2-435/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#1126]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at xe_copy_basic@mem-set-linear-0xfffe.html * igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2905]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-5/igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html * igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2905]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-4/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][124] ([Intel XE#1600]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at xe_evict@evict-beng-large-multi-vm-cm.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][125] -> [TIMEOUT][126] ([Intel XE#1473] / [Intel XE#402]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at xe_evict@evict-beng-mixed-many-threads-small.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-threads-small: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#688]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at xe_evict@evict-beng-threads-small.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: NOTRUN -> [TIMEOUT][128] ([Intel XE#1473]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2322]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-4/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1392]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [PASS][131] -> [SKIP][132] ([Intel XE#1392]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#1392]) +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-2/igt at xe_exec_basic@multigpu-once-userptr-invalidate.html * igt at xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#288]) +20 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at xe_exec_fault_mode@once-bindexecqueue-imm.html * igt at xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2360]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2905]) +13 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][137] -> [SKIP][138] ([Intel XE#1192]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at xe_live_ktest@xe_dma_buf.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-2/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_live_ktest@xe_eudebug: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1192] / [Intel XE#3026]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at xe_live_ktest@xe_eudebug.html * igt at xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#560]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at xe_media_fill@media-fill.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#512]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at xe_mmap@small-bar.html * igt at xe_oa@oa-regs-whitelisted: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#2541] / [Intel XE#3573]) +8 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at xe_oa@oa-regs-whitelisted.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][143] ([Intel XE#1173]) +1 other test fail [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mocs: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#2284]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-multiple-execs: - shard-dg2-set2: [PASS][145] -> [ABORT][146] ([Intel XE#1358]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at xe_pm@s2idle-multiple-execs.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at xe_pm@s2idle-multiple-execs.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_pm@s3-multiple-execs: - shard-dg2-set2: [PASS][148] -> [ABORT][149] ([Intel XE#1358] / [Intel XE#1794]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at xe_pm@s3-multiple-execs.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at xe_pm@s3-multiple-execs.html * igt at xe_pm@s3-vm-bind-prefetch: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#584]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-5/igt at xe_pm@s3-vm-bind-prefetch.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [PASS][151] -> [ABORT][152] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) +1 other test abort [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-7/igt at xe_pm@s4-vm-bind-unbind-all.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#944]) +5 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#944]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-3/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html #### Possible fixes #### * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][155] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/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: [INCOMPLETE][157] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-6.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/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_cursor_crc@cursor-suspend: - shard-dg2-set2: [ABORT][159] -> [PASS][160] +1 other test pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_cursor_crc@cursor-suspend.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][161] ([Intel XE#2291]) -> [PASS][162] +3 other tests pass [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-8/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][163] ([Intel XE#877]) -> [PASS][164] +1 other test pass [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][165] ([Intel XE#3321]) -> [PASS][166] [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: [SKIP][167] ([Intel XE#2316]) -> [PASS][168] +3 other tests pass [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-vs-hang.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-5/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4: - shard-dg2-set2: [INCOMPLETE][169] -> [PASS][170] +1 other test pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][171] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-2/igt at kms_flip@blocking-wf_vblank.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-4/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@blocking-wf_vblank at c-edp1: - shard-lnl: [FAIL][173] ([Intel XE#886]) -> [PASS][174] +2 other tests pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-2/igt at kms_flip@blocking-wf_vblank at c-edp1.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-4/igt at kms_flip@blocking-wf_vblank at c-edp1.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][175] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-4/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3: - shard-bmg: [FAIL][177] ([Intel XE#3288] / [Intel XE#3321]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-4/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank at b-edp1: - shard-lnl: [FAIL][179] ([Intel XE#301]) -> [PASS][180] +1 other test pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-5/igt at kms_flip@flip-vs-expired-vblank at b-edp1.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-5/igt at kms_flip@flip-vs-expired-vblank at b-edp1.html * igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3: - shard-bmg: [FAIL][181] ([Intel XE#3321]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank at d-dp4: - shard-dg2-set2: [FAIL][183] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-dg2-set2: [ABORT][185] ([Intel XE#2625]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_frontbuffer_tracking@fbc-suspend.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][187] ([Intel XE#455]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_hdr@invalid-hdr.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_hdr@invalid-hdr.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][189] ([Intel XE#361]) -> [PASS][190] +1 other test pass [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_plane_scaling@intel-max-src-size.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][191] ([Intel XE#718]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-4/igt at kms_pm_dc@dc5-dpms.html * igt at kms_setmode@basic at pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][193] ([Intel XE#2883]) -> [PASS][194] +4 other tests pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_setmode@basic at pipe-a-hdmi-a-6.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at kms_setmode@basic at pipe-a-hdmi-a-6.html * igt at kms_vrr@negative-basic: - shard-bmg: [SKIP][195] ([Intel XE#1499]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_vrr@negative-basic.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-2/igt at kms_vrr@negative-basic.html * igt at xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [SKIP][197] ([Intel XE#1130]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_exec_basic@many-bindexecqueue-rebind.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at xe_exec_basic@many-bindexecqueue-rebind.html - shard-dg2-set2: [SKIP][199] ([Intel XE#1130]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at xe_exec_basic@many-bindexecqueue-rebind.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at xe_exec_basic@many-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-dg2-set2: [SKIP][201] ([Intel XE#1392]) -> [PASS][202] +4 other tests pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-dg2-set2: [FAIL][203] ([Intel XE#1999]) -> [PASS][204] +2 other tests pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_module_load@reload: - shard-dg2-set2: [FAIL][205] ([Intel XE#3546]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at xe_module_load@reload.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at xe_module_load@reload.html - shard-bmg: [FAIL][207] ([Intel XE#3546]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_module_load@reload.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-8/igt at xe_module_load@reload.html * igt at xe_pm@s3-basic: - shard-dg2-set2: [ABORT][209] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at xe_pm@s3-basic.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at xe_pm@s3-basic.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][211] ([Intel XE#958]) -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-3/igt at xe_pm_residency@toggle-gt-c6.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-6/igt at xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][213] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][214] ([Intel XE#1124]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-5/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][215] ([Intel XE#2136]) -> [SKIP][216] ([Intel XE#1124]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_content_protection@lic-type-0: - shard-bmg: [SKIP][217] ([Intel XE#2341]) -> [FAIL][218] ([Intel XE#1178]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_content_protection@lic-type-0.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_content_protection@lic-type-0.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][219] ([Intel XE#2882] / [Intel XE#3288]) -> [SKIP][220] ([Intel XE#2316]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][221] ([Intel XE#2311]) -> [SKIP][222] ([Intel XE#2312]) +14 other tests skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][223] ([Intel XE#2312]) -> [SKIP][224] ([Intel XE#2311]) +16 other tests skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [SKIP][225] ([Intel XE#2312]) -> [FAIL][226] ([Intel XE#2333]) +1 other test fail [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [INCOMPLETE][227] ([Intel XE#2050]) -> [FAIL][228] ([Intel XE#2333]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][229] ([Intel XE#2333]) -> [SKIP][230] ([Intel XE#2312]) +8 other tests skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][231] ([Intel XE#2313]) -> [SKIP][232] ([Intel XE#2312]) +9 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][233] ([Intel XE#2312]) -> [SKIP][234] ([Intel XE#2313]) +11 other tests skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][235] ([Intel XE#362]) -> [FAIL][236] ([Intel XE#1729]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][237] ([Intel XE#1000]) -> [INCOMPLETE][238] ([Intel XE#1473]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_evict@evict-beng-threads-large.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-2/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [TIMEOUT][239] ([Intel XE#1473]) -> [TIMEOUT][240] ([Intel XE#1473] / [Intel XE#2472]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at xe_evict@evict-mixed-many-threads-small.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][241] ([Intel XE#2833]) -> [SKIP][242] ([Intel XE#1192]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at xe_live_ktest@xe_eudebug.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-2/igt at xe_live_ktest@xe_eudebug.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#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [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#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [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#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#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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [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#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#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026 [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#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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [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#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#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#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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3897]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3897 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [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#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [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#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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 Build changes ------------- * IGT: IGT_8186 -> IGTPW_12425 * Linux: xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917 -> xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde IGTPW_12425: 3ecd83f130ed2cb4419226fad481364f8a39a5be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8186: 2c6b2f0ed4075aa1ac3d341d612e41343cff4e4d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917: 0ca002b6f088ddd9bdde5630662526a50b7ef917 xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde: 00f4619246294b1de4bac42742cfef95c1f37fde == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From sai.teja.pottumuttu at intel.com Mon Jan 13 06:19:46 2025 From: sai.teja.pottumuttu at intel.com (Sai Teja Pottumuttu) Date: Mon, 13 Jan 2025 11:49:46 +0530 Subject: [PATCH i-g-t v3 0/3] Miscellaneous OA Refactors Message-ID: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> The patch series cleans up some unused arguments and also removes hardcoded time heuristics. It also reduces the number of mmap periodic reports being checked. Sai Teja Pottumuttu (3): tests/intel/xe_oa: Remove unused function arguments tests/intel/xe_oa: Reduce the number of mmap reports checked tests/intel/xe_oa: Remove hardcoded time heuristics tests/intel/xe_oa.c | 51 ++++++++++++++++++++++++++++++--------------- 1 file changed, 34 insertions(+), 17 deletions(-) -- 2.34.1 From sai.teja.pottumuttu at intel.com Mon Jan 13 06:19:47 2025 From: sai.teja.pottumuttu at intel.com (Sai Teja Pottumuttu) Date: Mon, 13 Jan 2025 11:49:47 +0530 Subject: [PATCH i-g-t v3 1/3] tests/intel/xe_oa: Remove unused function arguments In-Reply-To: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> References: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> Message-ID: <20250113061949.753864-2-sai.teja.pottumuttu@intel.com> The oa_exponent argument is unused in oa_report_is_periodic function. Thus remove it. Signed-off-by: Sai Teja Pottumuttu Reviewed-by: Jonathan Cavitt --- tests/intel/xe_oa.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c index 492a6b5d6..ad3526406 100644 --- a/tests/intel/xe_oa.c +++ b/tests/intel/xe_oa.c @@ -791,7 +791,7 @@ emit_report_perf_count(struct intel_bb *ibb, } static bool -oa_report_is_periodic(uint32_t oa_exponent, const uint32_t *report) +oa_report_is_periodic(const uint32_t *report) { if (report_reason(report) & OAREPORT_REASON_TIMER) return true; @@ -1342,7 +1342,7 @@ read_2_oa_reports(int format_id, igt_assert_neq_u64(oa_timestamp(report, format_id), 0); if (timer_only) { - if (!oa_report_is_periodic(exponent, report)) { + if (!oa_report_is_periodic(report)) { igt_debug("skipping non timer report\n"); continue; } @@ -1752,7 +1752,7 @@ static void test_oa_exponents(const struct drm_xe_engine_class_instance *hwe) if (oa_status & DRM_XE_OASTATUS_REPORT_LOST) igt_debug("report loss\n"); - if (!oa_report_is_periodic(exponent, report)) + if (!oa_report_is_periodic(report)) continue; memcpy(timer_reports, report, format_size); @@ -1969,7 +1969,7 @@ static void test_blocking(uint64_t requested_oa_period, for (int offset = 0; offset < ret; offset += format_size) { uint32_t *report = (void *)(buf + offset); - if (oa_report_is_periodic(oa_exponent, report)) + if (oa_report_is_periodic(report)) timer_report_read = true; else non_timer_report_read = true; @@ -2142,7 +2142,7 @@ static void test_polling(uint64_t requested_oa_period, for (int offset = 0; offset < ret; offset += format_size) { uint32_t *report = (void *)(buf + offset); - if (oa_report_is_periodic(oa_exponent, report)) + if (oa_report_is_periodic(report)) timer_report_read = true; else non_timer_report_read = true; @@ -2463,7 +2463,7 @@ again_1: " ts_delta_last_periodic=%"PRIu64" is_timer=%i ctx_id=%8x nb_periodic=%u\n", oa_timestamp(report, fmt), n_periodic_reports > 0 ? oa_timestamp_delta(report, last_periodic_report, fmt) : 0, - oa_report_is_periodic(oa_exponent, report), + oa_report_is_periodic(report), oa_report_get_ctx_id(report), n_periodic_reports); @@ -2471,7 +2471,7 @@ again_1: first_timestamp = oa_timestamp(report, fmt); last_timestamp = oa_timestamp(report, fmt); - if (oa_report_is_periodic(oa_exponent, report)) { + if (oa_report_is_periodic(report)) { memcpy(last_periodic_report, report, report_size); n_periodic_reports++; } @@ -2677,12 +2677,12 @@ test_enable_disable(const struct drm_xe_engine_class_instance *hwe) " ts_delta_last_periodic=%s%"PRIu64"" " is_timer=%i ctx_id=0x%8x\n", oa_timestamp(report, fmt), - oa_report_is_periodic(oa_exponent, report) ? " " : "*", + oa_report_is_periodic(report) ? " " : "*", n_periodic_reports > 0 ? oa_timestamp_delta(report, last_periodic_report, fmt) : 0, - oa_report_is_periodic(oa_exponent, report), + oa_report_is_periodic(report), oa_report_get_ctx_id(report)); - if (oa_report_is_periodic(oa_exponent, report)) { + if (oa_report_is_periodic(report)) { memcpy(last_periodic_report, report, report_size); /* We want to measure only the periodic reports, @@ -4380,7 +4380,7 @@ static void check_reports(void *oa_vaddr, uint32_t oa_size, for (reports = (uint32_t *)oa_vaddr; timer_reports < 20 && reports[0] && oa_timestamp(reports, fmt); reports += report_words) { - if (!oa_report_is_periodic(oa_exp_1_millisec, reports)) + if (!oa_report_is_periodic(reports)) continue; timer_reports++; -- 2.34.1 From sai.teja.pottumuttu at intel.com Mon Jan 13 06:19:48 2025 From: sai.teja.pottumuttu at intel.com (Sai Teja Pottumuttu) Date: Mon, 13 Jan 2025 11:49:48 +0530 Subject: [PATCH i-g-t v3 2/3] tests/intel/xe_oa: Reduce the number of mmap reports checked In-Reply-To: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> References: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> Message-ID: <20250113061949.753864-3-sai.teja.pottumuttu@intel.com> Currently, 20 mmap periodic reports are checked which seems unnecessary, reduce it to 10. Signed-off-by: Sai Teja Pottumuttu --- tests/intel/xe_oa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c index ad3526406..cd081ecff 100644 --- a/tests/intel/xe_oa.c +++ b/tests/intel/xe_oa.c @@ -4378,7 +4378,7 @@ static void check_reports(void *oa_vaddr, uint32_t oa_size, uint32_t timer_reports = 0; for (reports = (uint32_t *)oa_vaddr; - timer_reports < 20 && reports[0] && oa_timestamp(reports, fmt); + timer_reports < 10 && reports[0] && oa_timestamp(reports, fmt); reports += report_words) { if (!oa_report_is_periodic(reports)) continue; -- 2.34.1 From sai.teja.pottumuttu at intel.com Mon Jan 13 06:19:49 2025 From: sai.teja.pottumuttu at intel.com (Sai Teja Pottumuttu) Date: Mon, 13 Jan 2025 11:49:49 +0530 Subject: [PATCH i-g-t v3 3/3] tests/intel/xe_oa: Remove hardcoded time heuristics In-Reply-To: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> References: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> Message-ID: <20250113061949.753864-4-sai.teja.pottumuttu@intel.com> Some tests in xe_oa tests have hardcoded timing heuristics. Refactor it to make it more robust and reliable. The patch extends the wait time logically but usually it would take a single iteration for the required reports to be available so wait time doesn't change much. v2: - Extend commit message [Lucas] - Make wait function more generic [Lucas] v3: - Change wait function name [Ashutosh] - Address nits [Ashutosh] Signed-off-by: Sai Teja Pottumuttu --- tests/intel/xe_oa.c | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c index cd081ecff..df7fa3229 100644 --- a/tests/intel/xe_oa.c +++ b/tests/intel/xe_oa.c @@ -4367,6 +4367,26 @@ static void map_oa_buffer_forked_access(const struct drm_xe_engine_class_instanc munmap(vaddr, size); } +static void mmap_wait_for_periodic_reports(void *oa_vaddr, uint32_t n, + const struct drm_xe_engine_class_instance *hwe) +{ + uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000; + struct intel_xe_perf_metric_set *test_set = metric_set(hwe); + uint64_t fmt = test_set->perf_oa_format; + uint32_t num_periodic_reports = 0; + uint32_t *reports; + + while (num_periodic_reports < n) { + usleep(4 * n * period_us); + num_periodic_reports = 0; + for (reports = (uint32_t *)oa_vaddr; + reports[0] && oa_timestamp(reports, fmt) && oa_report_is_periodic(reports); + reports += get_oa_format(fmt).size) { + num_periodic_reports++; + } + } +} + static void check_reports(void *oa_vaddr, uint32_t oa_size, const struct drm_xe_engine_class_instance *hwe) { @@ -4396,12 +4416,10 @@ static void check_reports_from_mapped_buffer(const struct drm_xe_engine_class_in { void *vaddr; uint32_t size; - uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000; vaddr = map_oa_buffer(&size); - /* wait for approx 100 reports */ - usleep(100 * period_us); + mmap_wait_for_periodic_reports(vaddr, 10, hwe); check_reports(vaddr, size, hwe); munmap(vaddr, size); @@ -4426,12 +4444,11 @@ static void closed_fd_and_unmapped_access(const struct drm_xe_engine_class_insta }; void *vaddr; uint32_t size; - uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000; stream_fd = __perf_open(drm_fd, ¶m, false); vaddr = map_oa_buffer(&size); - usleep(100 * period_us); + mmap_wait_for_periodic_reports(vaddr, 10, hwe); check_reports(vaddr, size, hwe); munmap(vaddr, size); -- 2.34.1 From patchwork at emeril.freedesktop.org Mon Jan 13 06:34:21 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 13 Jan 2025 06:34:21 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_series_starting_with_=5Bi-?= =?utf-8?q?g-t=2Cv1=2C1/1=5D_tests/xe=5Feudebug=3A_check_if_driver_is_open_b?= =?utf-8?q?efore_toggling_enable?= In-Reply-To: <20250110125201.59630-1-jan.sokolowski@intel.com> References: <20250110125201.59630-1-jan.sokolowski@intel.com> Message-ID: <173675006177.3144867.8423032667765544655@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v1,1/1] tests/xe_eudebug: check if driver is open before toggling enable URL : https://patchwork.freedesktop.org/series/143389/ State : failure == Summary == CI Bug Log - changes from XEIGT_8186_full -> XEIGTPW_12426_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12426_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12426_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_12426_full: ### IGT changes ### #### Possible regressions #### * igt at core_hotunplug@unbind-rebind: - shard-dg2-set2: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-435/igt at core_hotunplug@unbind-rebind.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe-a-hdmi-a-6.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-433/igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe-a-hdmi-a-6.html * igt at kms_flip@2x-wf_vblank-ts-check at ad-hdmi-a2-dp2: - shard-dg2-set2: NOTRUN -> [FAIL][5] +3 other tests fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-432/igt at kms_flip@2x-wf_vblank-ts-check at ad-hdmi-a2-dp2.html * igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][6] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2.html Known issues ------------ Here are the changes found in XEIGTPW_12426_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#623]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-433/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@too-high: - shard-dg2-set2: [PASS][8] -> [SKIP][9] ([Intel XE#2423] / [i915#2575]) +11 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_addfb_basic@too-high.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_addfb_basic@too-high.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [PASS][10] -> [FAIL][11] ([Intel XE#911]) +3 other tests fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-1/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-3/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * 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][12] ([Intel XE#2550]) +23 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#873]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-8/igt at kms_async_flips@invalid-async-flip.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_12426/shard-lnl-3/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2-set2: [PASS][15] -> [INCOMPLETE][16] ([Intel XE#2613]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-433/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-3: - shard-bmg: [PASS][17] -> [INCOMPLETE][18] ([Intel XE#2613]) +1 other test incomplete [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-3.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-5/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-3.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1407]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-5/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#316]) +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-433/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_big_fb@x-tiled-addfb-size-offset-overflow.html - shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2136] / [Intel XE#2231]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_big_fb@x-tiled-addfb-size-offset-overflow.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_big_fb@x-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#1124]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-4/igt at kms_big_fb@y-tiled-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +10 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-432/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-4/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1467]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-5/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][28] -> [SKIP][29] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#367]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-1/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#367]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-436/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2887]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-4/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#2907]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-433/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +8 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-3/igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +27 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-432/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs at pipe-d-dp-2.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#3862]) +1 other test incomplete [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#787]) +111 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-463/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1152]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-8/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_color@ctm-negative: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#306]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-463/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_hpd@dp-hpd-fast: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#373]) +7 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-463/igt at kms_chamelium_hpd@dp-hpd-fast.html * igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#373]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-6/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#307]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-8/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@lic-type-0: - shard-dg2-set2: NOTRUN -> [FAIL][44] ([Intel XE#1178]) +3 other tests fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-432/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#1178]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-1/igt at kms_content_protection@lic-type-0 at pipe-a-dp-2.html * igt at kms_content_protection@lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#455]) +13 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-433/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#1188]) +1 other test fail [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-433/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1424]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#2321]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#2423] / [i915#2575]) +6 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#323]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-433/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#323]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#309]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-6/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-bmg: [PASS][54] -> [SKIP][55] ([Intel XE#2291]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipb-legacy.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#3383]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-1/igt at kms_display_modes@extended-mode-basic.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-dg2-set2: [PASS][57] -> [SKIP][58] ([Intel XE#2136]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_fbcon_fbt@fbc-suspend.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@chamelium: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#701]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-8/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1138]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-463/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1137]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#2316]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1421]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-4/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][65] ([Intel XE#301]) +2 other tests fail [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2: - shard-bmg: NOTRUN -> [FAIL][66] ([Intel XE#3288] / [Intel XE#3321]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: [PASS][67] -> [FAIL][68] ([Intel XE#3321]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at b-dp2: - shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#3321]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at b-dp2.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank at b-dp2.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: - shard-dg2-set2: [PASS][71] -> [FAIL][72] ([Intel XE#301]) +5 other tests fail [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank at c-dp4: - shard-dg2-set2: [PASS][73] -> [FAIL][74] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1397] / [Intel XE#1745]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1397]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1401] / [Intel XE#1745]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-3/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-default-mode: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1401]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#651]) +28 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#656]) +19 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-dg2-set2: [PASS][81] -> [SKIP][82] ([Intel XE#2136] / [Intel XE#2351]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#651]) +6 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2313]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-dp-2: - shard-bmg: NOTRUN -> [FAIL][85] ([Intel XE#2333]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-2/igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-dp-2.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#653]) +34 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [PASS][87] -> [SKIP][88] ([Intel XE#1503]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_hdr@invalid-hdr.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-1/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@invalid-metadata-sizes: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1503]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-1/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_histogram@algo-basic: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#3897]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-432/igt at kms_histogram@algo-basic.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2927]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-432/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2925]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-463/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#2493]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-3/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2763]) +8 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-436/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-bmg: [PASS][95] -> [DMESG-WARN][96] ([Intel XE#877]) +1 other test dmesg-warn [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-436/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-downscale-factor-0-5: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#2763]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at kms_plane_scaling@planes-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75: - shard-bmg: [PASS][99] -> [SKIP][100] ([Intel XE#3007]) +13 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html * igt at kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#870]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-463/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#736]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-4/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [PASS][103] -> [FAIL][104] ([Intel XE#718]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-4/igt at kms_pm_dc@dc5-psr.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1439] / [Intel XE#836]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-1/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#2893]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1489]) +10 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-463/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1122]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-463/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at kms_psr@fbc-pr-cursor-blt.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1406]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-pr-sprite-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2136]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_psr@fbc-pr-sprite-plane-move.html - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2136] / [Intel XE#2231]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_psr@fbc-pr-sprite-plane-move.html * igt at kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-463/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html * igt at kms_rotation_crc@bad-tiling: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#3414] / [Intel XE#3904]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-3/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#3414]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1127]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#3414] / [Intel XE#3904]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_setmode@clone-exclusive-crtc: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#3007]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1435]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-4/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#330]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-435/igt at kms_tv_load_detect@load-detect.html * igt at kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [PASS][121] -> [ABORT][122] ([Intel XE#2625]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_vblank@ts-continuation-suspend.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2168]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-433/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1499]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-4/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#756]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-433/igt at kms_writeback@writeback-fb-id.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_12426/shard-dg2-436/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-463/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#1126]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at xe_copy_basic@mem-set-linear-0xfffe.html * igt at xe_drm_fdinfo@utilization-single-full-load-isolation: - shard-bmg: [PASS][129] -> [SKIP][130] ([Intel XE#1130]) +21 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at xe_drm_fdinfo@utilization-single-full-load-isolation.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at xe_drm_fdinfo@utilization-single-full-load-isolation.html * igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#2905]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html * igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2905]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-threads-small: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#688]) +6 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at xe_evict@evict-beng-threads-small.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-dg2-set2: [PASS][134] -> [SKIP][135] ([Intel XE#1392]) +6 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt at xe_exec_basic@multigpu-once-null-defer-bind: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2322]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-4/igt at xe_exec_basic@multigpu-once-null-defer-bind.html * igt at xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1392]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-8/igt at xe_exec_basic@multigpu-once-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#288]) +20 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-436/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2360]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-436/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2905]) +8 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_exec_threads@threads-bal-userptr-invalidate: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1130]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at xe_exec_threads@threads-bal-userptr-invalidate.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [PASS][142] -> [SKIP][143] ([Intel XE#1192]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_live_ktest@xe_bo.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_eudebug: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1192] / [Intel XE#3026]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-6/igt at xe_live_ktest@xe_eudebug.html * igt at xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#560]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-436/igt at xe_media_fill@media-fill.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#512]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at xe_mmap@small-bar.html * igt at xe_oa@create-destroy-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2541] / [Intel XE#3573]) +7 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-436/igt at xe_oa@create-destroy-userspace-config.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][148] ([Intel XE#1173]) +1 other test fail [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-436/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#2284] / [Intel XE#366]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-3/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3cold-mocs: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#2284]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-463/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_pm@s3-d3hot-basic-exec: - shard-dg2-set2: [PASS][152] -> [ABORT][153] ([Intel XE#1358] / [Intel XE#1794]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at xe_pm@s3-d3hot-basic-exec.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-432/igt at xe_pm@s3-d3hot-basic-exec.html * igt at xe_pm@s3-exec-after: - shard-dg2-set2: NOTRUN -> [ABORT][154] ([Intel XE#1358]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-432/igt at xe_pm@s3-exec-after.html * igt at xe_pm@s3-vm-bind-prefetch: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#584]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-5/igt at xe_pm@s3-vm-bind-prefetch.html * igt at xe_pm@s4-basic: - shard-dg2-set2: [PASS][156] -> [ABORT][157] ([Intel XE#1358]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at xe_pm@s4-basic.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-432/igt at xe_pm@s4-basic.html * igt at xe_pm@s4-vm-bind-userptr: - shard-lnl: [PASS][158] -> [ABORT][159] ([Intel XE#1358] / [Intel XE#1794]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-5/igt at xe_pm@s4-vm-bind-userptr.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-2/igt at xe_pm@s4-vm-bind-userptr.html * igt at xe_prime_self_import@basic-with_fd_dup: - shard-dg2-set2: [PASS][160] -> [SKIP][161] ([Intel XE#1130]) +16 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at xe_prime_self_import@basic-with_fd_dup.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at xe_prime_self_import@basic-with_fd_dup.html * igt at xe_query@multigpu-query-invalid-extension: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#944]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#944]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-3/igt at xe_query@multigpu-query-topology-l3-bank-mask.html #### Possible fixes #### * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1: - shard-lnl: [FAIL][164] ([Intel XE#3908]) -> [PASS][165] +1 other test pass [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-8/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-4/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][166] ([Intel XE#2291]) -> [PASS][167] +3 other tests pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-5/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - 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_8186/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-435/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 ad-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][170] ([Intel XE#301]) -> [PASS][171] +2 other tests pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-hdmi-a6-dp4.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: [SKIP][172] ([Intel XE#2316]) -> [PASS][173] +4 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-vs-hang.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-4/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4: - shard-dg2-set2: [INCOMPLETE][174] -> [PASS][175] +1 other test pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-463/igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][176] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-2/igt at kms_flip@blocking-wf_vblank.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@blocking-wf_vblank at c-edp1: - shard-lnl: [FAIL][178] ([Intel XE#886]) -> [PASS][179] +2 other tests pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-2/igt at kms_flip@blocking-wf_vblank at c-edp1.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at kms_flip@blocking-wf_vblank at c-edp1.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3: - shard-bmg: [FAIL][180] ([Intel XE#3288] / [Intel XE#3321]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank at a-dp2: - shard-bmg: [FAIL][182] ([Intel XE#2882]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html * igt at kms_flip@flip-vs-expired-vblank at b-edp1: - shard-lnl: [FAIL][184] ([Intel XE#301]) -> [PASS][185] +1 other test pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-5/igt at kms_flip@flip-vs-expired-vblank at b-edp1.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-8/igt at kms_flip@flip-vs-expired-vblank at b-edp1.html * igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3: - shard-bmg: [FAIL][186] ([Intel XE#3321]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank at d-dp4: - shard-dg2-set2: [FAIL][188] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-dg2-set2: [ABORT][190] ([Intel XE#2625]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_frontbuffer_tracking@fbc-suspend.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][192] ([Intel XE#718]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html * igt at kms_setmode@basic at pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][194] ([Intel XE#2883]) -> [PASS][195] +4 other tests pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_setmode@basic at pipe-a-hdmi-a-6.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-433/igt at kms_setmode@basic at pipe-a-hdmi-a-6.html * igt at kms_vrr@negative-basic: - shard-bmg: [SKIP][196] ([Intel XE#1499]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_vrr@negative-basic.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-1/igt at kms_vrr@negative-basic.html * igt at xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [SKIP][198] ([Intel XE#1130]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_exec_basic@many-bindexecqueue-rebind.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-2/igt at xe_exec_basic@many-bindexecqueue-rebind.html - shard-dg2-set2: [SKIP][200] ([Intel XE#1130]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at xe_exec_basic@many-bindexecqueue-rebind.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-436/igt at xe_exec_basic@many-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [SKIP][202] ([Intel XE#1392]) -> [PASS][203] +3 other tests pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_module_load@load: - shard-lnl: ([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], [PASS][219], [PASS][220], [PASS][221], [SKIP][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229]) ([Intel XE#378]) -> ([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], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-5/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-6/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-3/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-1/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-1/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-4/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-5/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-3/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-8/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-8/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-4/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-2/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-4/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-1/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-8/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-7/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-3/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-5/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-3/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-5/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-7/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-7/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-6/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-6/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-6/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-2/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-3/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-8/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-8/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-4/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-4/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-4/igt at xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-4/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-6/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-8/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-1/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-3/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-5/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-1/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-5/igt at xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-1/igt at xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-2/igt at xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-6/igt at xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-6/igt at xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-3/igt at xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-5/igt at xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-8/igt at xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at xe_module_load@load.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-7/igt at xe_module_load@load.html - shard-bmg: ([PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [SKIP][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280]) ([Intel XE#2457]) -> ([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], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_module_load@load.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at xe_module_load@load.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at xe_module_load@load.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at xe_module_load@load.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at xe_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at xe_module_load@load.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at xe_module_load@load.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at xe_module_load@load.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at xe_module_load@load.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at xe_module_load@load.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-4/igt at xe_module_load@load.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-2/igt at xe_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at xe_module_load@load.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-2/igt at xe_module_load@load.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at xe_module_load@load.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at xe_module_load@load.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at xe_module_load@load.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-2/igt at xe_module_load@load.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-4/igt at xe_module_load@load.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at xe_module_load@load.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at xe_module_load@load.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at xe_module_load@load.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-1/igt at xe_module_load@load.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-1/igt at xe_module_load@load.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-5/igt at xe_module_load@load.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-5/igt at xe_module_load@load.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-5/igt at xe_module_load@load.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-4/igt at xe_module_load@load.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-4/igt at xe_module_load@load.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-5/igt at xe_module_load@load.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at xe_module_load@load.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-1/igt at xe_module_load@load.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-1/igt at xe_module_load@load.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-1/igt at xe_module_load@load.html * igt at xe_module_load@reload: - shard-dg2-set2: [FAIL][305] ([Intel XE#3546]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at xe_module_load@reload.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-463/igt at xe_module_load@reload.html - shard-bmg: [FAIL][307] ([Intel XE#3546]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_module_load@reload.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-4/igt at xe_module_load@reload.html * igt at xe_pm@s3-basic: - shard-dg2-set2: [ABORT][309] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at xe_pm@s3-basic.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-433/igt at xe_pm@s3-basic.html * igt at xe_pm@s4-mocs: - shard-lnl: [ABORT][311] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-2/igt at xe_pm@s4-mocs.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-lnl-5/igt at xe_pm@s4-mocs.html * igt at xe_pm_residency@cpg-basic: - shard-dg2-set2: [ABORT][313] -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at xe_pm_residency@cpg-basic.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-436/igt at xe_pm_residency@cpg-basic.html #### Warnings #### * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][315] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][316] ([Intel XE#1124]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-1/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_bw@linear-tiling-3-displays-1920x1080p: - shard-bmg: [SKIP][317] ([Intel XE#367]) -> [SKIP][318] ([Intel XE#3007]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_bw@linear-tiling-3-displays-1920x1080p.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_bw@linear-tiling-3-displays-1920x1080p.html - shard-dg2-set2: [SKIP][319] ([Intel XE#367]) -> [SKIP][320] ([Intel XE#2423] / [i915#2575]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_bw@linear-tiling-3-displays-1920x1080p.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_bw@linear-tiling-3-displays-1920x1080p.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs: - shard-dg2-set2: [SKIP][321] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][322] ([Intel XE#2136] / [Intel XE#2351]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][323] ([Intel XE#2887]) -> [SKIP][324] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][325] ([Intel XE#2252]) -> [SKIP][326] ([Intel XE#3007]) +2 other tests skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-dg2-set2: [SKIP][327] ([Intel XE#373]) -> [SKIP][328] ([Intel XE#2423] / [i915#2575]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt at kms_content_protection@atomic-dpms: - shard-dg2-set2: [FAIL][329] ([Intel XE#1178]) -> [SKIP][330] ([Intel XE#2423] / [i915#2575]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_content_protection@atomic-dpms.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_content_protection@atomic-dpms.html - shard-bmg: [FAIL][331] ([Intel XE#1178]) -> [SKIP][332] ([Intel XE#3007]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at kms_content_protection@atomic-dpms.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@legacy: - shard-bmg: [FAIL][333] ([Intel XE#1178]) -> [SKIP][334] ([Intel XE#2341]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_content_protection@legacy.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-bmg: [SKIP][335] ([Intel XE#2341]) -> [FAIL][336] ([Intel XE#1178]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_content_protection@lic-type-0.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-1/igt at kms_content_protection@lic-type-0.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][337] ([Intel XE#2320]) -> [SKIP][338] ([Intel XE#3007]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-128x42.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-bmg: [SKIP][339] ([Intel XE#2321]) -> [SKIP][340] ([Intel XE#3007]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_cursor_crc@cursor-onscreen-512x512.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][341] ([Intel XE#455]) -> [SKIP][342] ([Intel XE#2136]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_dsc@dsc-with-output-formats-with-bpc.html - shard-bmg: [SKIP][343] ([Intel XE#2244]) -> [SKIP][344] ([Intel XE#2136] / [Intel XE#2231]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [FAIL][345] ([Intel XE#1695]) -> [SKIP][346] ([Intel XE#2136] / [Intel XE#2231]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_fbcon_fbt@fbc-suspend.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][347] ([Intel XE#2882] / [Intel XE#3288]) -> [SKIP][348] ([Intel XE#2316]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-bmg: [SKIP][349] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][350] ([Intel XE#2136] / [Intel XE#2231]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][351] ([Intel XE#651]) -> [SKIP][352] ([Intel XE#2136]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][353] ([Intel XE#2311]) -> [SKIP][354] ([Intel XE#2312]) +9 other tests skip [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][355] ([Intel XE#2312]) -> [SKIP][356] ([Intel XE#2136] / [Intel XE#2231]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html - shard-dg2-set2: [SKIP][357] ([Intel XE#651]) -> [SKIP][358] ([Intel XE#2136] / [Intel XE#2351]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][359] ([Intel XE#2312]) -> [SKIP][360] ([Intel XE#2311]) +12 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-bmg: [FAIL][361] ([Intel XE#2333]) -> [SKIP][362] ([Intel XE#2312]) +5 other tests skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [FAIL][363] ([Intel XE#2333]) -> [SKIP][364] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [SKIP][365] ([Intel XE#2312]) -> [FAIL][366] ([Intel XE#2333]) +2 other tests fail [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [INCOMPLETE][367] ([Intel XE#2050]) -> [FAIL][368] ([Intel XE#2333]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear: - shard-bmg: [SKIP][369] ([Intel XE#2311]) -> [SKIP][370] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][371] ([Intel XE#2313]) -> [SKIP][372] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html - shard-dg2-set2: [SKIP][373] ([Intel XE#653]) -> [SKIP][374] ([Intel XE#2136]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][375] ([Intel XE#2313]) -> [SKIP][376] ([Intel XE#2312]) +11 other tests skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][377] ([Intel XE#2312]) -> [SKIP][378] ([Intel XE#2313]) +15 other tests skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][379] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][380] ([Intel XE#2312]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html - shard-dg2-set2: [SKIP][381] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][382] ([Intel XE#653]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][383] ([Intel XE#653]) -> [SKIP][384] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][385] ([Intel XE#3544]) -> [SKIP][386] ([Intel XE#3374] / [Intel XE#3544]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_hdr@brightness-with-hdr.html * igt at kms_psr@psr2-primary-page-flip: - shard-bmg: [SKIP][387] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][388] ([Intel XE#2136] / [Intel XE#2231]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_psr@psr2-primary-page-flip.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_psr@psr2-primary-page-flip.html * igt at kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: [SKIP][389] ([Intel XE#1435]) -> [SKIP][390] ([Intel XE#3007]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_setmode@invalid-clone-exclusive-crtc.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at kms_setmode@invalid-clone-exclusive-crtc.html - shard-dg2-set2: [SKIP][391] ([Intel XE#455]) -> [SKIP][392] ([Intel XE#2423] / [i915#2575]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at kms_setmode@invalid-clone-exclusive-crtc.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at kms_setmode@invalid-clone-exclusive-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][393] ([Intel XE#1729]) -> [SKIP][394] ([Intel XE#2426]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [SKIP][395] ([Intel XE#362]) -> [FAIL][396] ([Intel XE#1729]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][397] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][398] ([Intel XE#1130]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at xe_compute_preempt@compute-threadgroup-preempt.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][399] ([Intel XE#2504]) -> [SKIP][400] ([Intel XE#1130]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at xe_create@multigpu-create-massive-size.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at xe_create@multigpu-create-massive-size.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][401] ([Intel XE#3889]) -> [SKIP][402] ([Intel XE#1130]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at xe_eudebug@basic-vm-access-parameters-userptr.html - shard-dg2-set2: [SKIP][403] ([Intel XE#3889]) -> [SKIP][404] ([Intel XE#1130]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@resume-one: - shard-bmg: [SKIP][405] ([Intel XE#2905]) -> [SKIP][406] ([Intel XE#1130]) +1 other test skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_eudebug_online@resume-one.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at xe_eudebug_online@resume-one.html - shard-dg2-set2: [SKIP][407] ([Intel XE#2905]) -> [SKIP][408] ([Intel XE#1130]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at xe_eudebug_online@resume-one.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at xe_eudebug_online@resume-one.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][409] ([Intel XE#1000]) -> [SKIP][410] ([Intel XE#1130]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_evict@evict-beng-threads-large.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [TIMEOUT][411] ([Intel XE#1473]) -> [TIMEOUT][412] ([Intel XE#1473] / [Intel XE#2472]) [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at xe_evict@evict-mixed-many-threads-small.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [TIMEOUT][413] ([Intel XE#1473] / [Intel XE#2472]) -> [INCOMPLETE][414] ([Intel XE#1473]) [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_evict@evict-mixed-threads-large.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-6/igt at xe_evict@evict-mixed-threads-large.html * igt at xe_evict@evict-threads-large: - shard-bmg: [INCOMPLETE][415] ([Intel XE#1473]) -> [FAIL][416] ([Intel XE#1000]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_evict@evict-threads-large.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-2/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind: - shard-bmg: [SKIP][417] ([Intel XE#2322]) -> [SKIP][418] ([Intel XE#1130]) +1 other test skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-bmg-8/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html * igt at xe_exec_fault_mode@twice-rebind: - shard-dg2-set2: [SKIP][419] ([Intel XE#288]) -> [SKIP][420] ([Intel XE#1130]) +1 other test skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at xe_exec_fault_mode@twice-rebind.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/shard-dg2-464/igt at xe_exec_fault_mode@twice-rebind.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#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [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#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [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#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#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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [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#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [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#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [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#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [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#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#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026 [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#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [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#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#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#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#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#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3897]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3897 [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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [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#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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_8186 -> IGTPW_12426 * Linux: xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917 -> xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde IGTPW_12426: 12426 IGT_8186: 2c6b2f0ed4075aa1ac3d341d612e41343cff4e4d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917: 0ca002b6f088ddd9bdde5630662526a50b7ef917 xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde: 00f4619246294b1de4bac42742cfef95c1f37fde == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From sai.teja.pottumuttu at intel.com Mon Jan 13 06:41:47 2025 From: sai.teja.pottumuttu at intel.com (Pottumuttu, Sai Teja) Date: Mon, 13 Jan 2025 12:11:47 +0530 Subject: [PATCH i-g-t v2 2/2] tests/intel/xe_oa: Remove hardcoded time heuristics In-Reply-To: <855xmnvczf.wl-ashutosh.dixit@intel.com> References: <20250106034638.1746051-1-sai.teja.pottumuttu@intel.com> <20250106034638.1746051-3-sai.teja.pottumuttu@intel.com> <855xmnvczf.wl-ashutosh.dixit@intel.com> Message-ID: <747154d7-ab12-43e5-a9b2-070752c3d990@intel.com> On 10-01-2025 03:58, Dixit, Ashutosh wrote: > On Sun, 05 Jan 2025 19:46:38 -0800, Sai Teja Pottumuttu wrote: >> > > Hi Sai Teja, > > Thanks for the patch, mostly looks good but I have some usual nits. > >> Some tests in xe_oa tests have hardcoded timing heuristics. Refactor it to >> make it more robust and reliable. The patch extends the wait time logically >> but usually it would take a single iteration for the required reports to be >> available so wait time doesn't change much. >> >> v2: >> - Extend commit message [Lucas] >> - Make wait function more generic [Lucas] >> >> Signed-off-by: Sai Teja Pottumuttu >> --- >> tests/intel/xe_oa.c | 30 +++++++++++++++++++++++++----- >> 1 file changed, 25 insertions(+), 5 deletions(-) >> >> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c >> index ad3526406..b271278d6 100644 >> --- a/tests/intel/xe_oa.c >> +++ b/tests/intel/xe_oa.c >> @@ -4367,6 +4367,29 @@ static void map_oa_buffer_forked_access(const struct drm_xe_engine_class_instanc >> munmap(vaddr, size); >> } >> >> +static void wait_for_periodic_reports(void *oa_vaddr, > > Let's change this name to 'mmap_wait_for_periodic_reports', to highlight it > only applies to the mmap'd OA buffer case. Sure, made most of the suggested changes in v3. Some comments below. > > >> + uint32_t n, > > optional nit: move this to the previous line, I generally try to to optimize > vertical real estate. > >> + const struct drm_xe_engine_class_instance *hwe) >> +{ >> + uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000; >> + struct intel_xe_perf_metric_set *test_set = metric_set(hwe); >> + uint64_t fmt = test_set->perf_oa_format; >> + struct oa_format format = get_oa_format(fmt); > > optional nit again, but delete the two temporary variables above, see > below. In v3, I deleted oa_format, but kept fmt as its used at two places in the loop. > >> + uint32_t num_periodic_reports = 0; >> + uint32_t *reports; >> + >> + while (num_periodic_reports < n) { >> + usleep(100 * period_us); > > I think this should be something like: > > usleep(2 * n * period_us); > > So the wait time should be a function of n (not constant like 100). Here > I'm assuming if we wait for '2 * n' periods, we should probably have n > periodic reports. After some experiments, I finalized with 4 * n as that seems to be the time to get n reports. > >> + num_periodic_reports = 0; >> + for (reports = (uint32_t *)oa_vaddr; >> + reports[0] && oa_timestamp(reports, fmt); >> + reports += format.size) { >> + if (oa_report_is_periodic(reports)) >> + num_periodic_reports++; >> + } > > optional nit: I think this entire loop can just be: > > num_periodic_reports = 0; > for (reports = (uint32_t *)oa_vaddr; > reports[0] && oa_timestamp(reports, fmt) && oa_report_is_periodic(reports); > reports += get_oa_format(test_set->perf_oa_format).size) > num_periodic_reports++; > > Just a couple of general comments below, no need to change anything: > > * The loop is a little 'funky' in that it goes over the mapped OA buffer > multiple times, even over previoulsy found reports. I think that is ok > for now. > > * The other thing is that OA periodic reports should be generated as long > as DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT has been used in OA > properties. Both places where this function is called from has that, so > that should be ok. > > * If HW somehow doesn't generate periodic reports we'll hang here. But that > is not expected, so leave as is and we'll deal with it later if we ever > hit that. > >> + } >> +} >> + >> static void check_reports(void *oa_vaddr, uint32_t oa_size, >> const struct drm_xe_engine_class_instance *hwe) >> { >> @@ -4396,12 +4419,10 @@ static void check_reports_from_mapped_buffer(const struct drm_xe_engine_class_in >> { >> void *vaddr; >> uint32_t size; >> - uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000; >> >> vaddr = map_oa_buffer(&size); >> >> - /* wait for approx 100 reports */ >> - usleep(100 * period_us); >> + wait_for_periodic_reports(vaddr, 20, hwe); > > I am wondering if we should make this 10 instead of 20, and also change 20 > to 10 in check_reports(). That makes sense, added a patch to reduce number of reports being checked to 10 in v3. > >> check_reports(vaddr, size, hwe); >> >> munmap(vaddr, size); >> @@ -4426,12 +4447,11 @@ static void closed_fd_and_unmapped_access(const struct drm_xe_engine_class_insta >> }; >> void *vaddr; >> uint32_t size; >> - uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000; >> >> stream_fd = __perf_open(drm_fd, ¶m, false); >> vaddr = map_oa_buffer(&size); >> >> - usleep(100 * period_us); >> + wait_for_periodic_reports(vaddr, 20, hwe); > > Here too. > >> check_reports(vaddr, size, hwe); >> >> munmap(vaddr, size); >> -- >> 2.34.1 >> > > Thanks. > -- > Ashutosh From peter.senna at linux.intel.com Mon Jan 13 08:00:26 2025 From: peter.senna at linux.intel.com (Peter Senna Tschudin) Date: Mon, 13 Jan 2025 09:00:26 +0100 Subject: =?UTF-8?B?UmU6IOKclyBYZS5DSS5GdWxsOiBmYWlsdXJlIGZvciBsaWIvaWd0X2tt?= =?UTF-8?Q?emleak=3A_library_to_interact_with_kmemleak_=28rev2=29?= In-Reply-To: <173667139526.2829460.13324038630832694591@b555e5b46a47> References: <20250109181027.90402-1-peter.senna@linux.intel.com> <173667139526.2829460.13324038630832694591@b555e5b46a47> Message-ID: <70130f72-1bb6-492b-8760-e5a523109e4f@linux.intel.com> Dear I915, On 12.01.2025 09:43, Patchwork wrote: > == Series Details == > > Series: lib/igt_kmemleak: library to interact with kmemleak (rev2) > URL : https://patchwork.freedesktop.org/series/142673/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8184_full -> XEIGTPW_12421_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_12421_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_12421_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_12421_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at xe_pm_residency@cpg-basic: > - shard-dg2-set2: [PASS][1] -> [ABORT][2] > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at xe_pm_residency@cpg-basic.html > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/igt at xe_pm_residency@cpg-basic.html > > > #### Warnings #### > > * igt at xe_evict@evict-mixed-threads-large: > - shard-bmg: [INCOMPLETE][3] ([Intel XE#1473]) -> [DMESG-FAIL][4] > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at xe_evict@evict-mixed-threads-large.html > [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-1/igt at xe_evict@evict-mixed-threads-large.html > > * igt at xe_mmap@pci-membarrier-bad-object: > - shard-bmg: [SKIP][5] ([Intel XE#1130]) -> [SKIP][6] > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_mmap@pci-membarrier-bad-object.html > [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-8/igt at xe_mmap@pci-membarrier-bad-object.html These warnings and regression are unrelated. Please fix and re-run. Thank you! [...] From andrzej.hajda at intel.com Mon Jan 13 08:26:14 2025 From: andrzej.hajda at intel.com (Hajda, Andrzej) Date: Mon, 13 Jan 2025 09:26:14 +0100 Subject: [PATCH i-g-t] tests/xe_eudebug_online: correct calculate the time diff In-Reply-To: <20250110153455.2791158-1-maciej.patelczyk@intel.com> References: <20250110153455.2791158-1-maciej.patelczyk@intel.com> Message-ID: <318cf3d2-950b-4be4-b07b-cb5a2c5d6284@intel.com> W dniu 10.01.2025 o?16:34, Maciej Patelczyk pisze: > When calculating time difference between two timespec values use > library function which does it right. > > Previous way wasn't working well on slower machines. It was only > taking the tv_nsec field from struct timespec. > > Fixes: bbf1730baf ("tests/xe_eudebug_online: Debug client which > runs workloads on EU") > CC: Dominik Grzegorzek > Signed-off-by: Maciej Patelczyk > --- > tests/intel/xe_eudebug_online.c | 13 ++++++++----- > 1 file changed, 8 insertions(+), 5 deletions(-) > > diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c > index 052774a3b..f532387af 100644 > --- a/tests/intel/xe_eudebug_online.c > +++ b/tests/intel/xe_eudebug_online.c > @@ -2235,6 +2235,11 @@ static int find_suitable_engines(struct drm_xe_engine_class_instance **hwes, > return engine_count; > } > > +static uint64_t timespecs_diff_us(struct timespec *ts1, struct timespec *ts2) > +{ > + return (uint64_t)(fabs(igt_time_elapsed(ts1, ts2)) * USEC_PER_SEC); It seems igt_time_elapsed handles correctly case ts1 > ts2, so the conversion looks correct. Something to bikeshed is the conversion from int type to double, then int again, up to you. I think there is no need to explicit conversion to uint64_t, no big deal. Reviewed-by: Andrzej Hajda Regards Andrzej > +} > + > /** > * SUBTEST: breakpoint-many-sessions-single-tile > * Description: > @@ -2255,7 +2260,7 @@ static void test_many_sessions_on_tiles(int fd, bool multi_tile) > struct online_debug_data **data; > struct drm_xe_engine_class_instance **hwe; > struct drm_xe_eudebug_event_eu_attention *eus; > - uint64_t current_t, next_t, diff; > + uint64_t diff; > int attempt_mask = 0, final_mask, should_break; > int i; > > @@ -2318,10 +2323,8 @@ static void test_many_sessions_on_tiles(int fd, bool multi_tile) > igt_assert_eq(attempt_mask, final_mask); > > for (i = 0; i < n - 1; i++) { > - /* Convert timestamps to microseconds */ > - current_t = data[i]->exception_arrived.tv_nsec * 1000; > - next_t = data[i + 1]->exception_arrived.tv_nsec * 1000; > - diff = current_t < next_t ? next_t - current_t : current_t - next_t; > + diff = timespecs_diff_us(&data[i]->exception_arrived, > + &data[i + 1]->exception_arrived); > > if (multi_tile) > igt_assert_f(diff < WORKLOAD_DELAY_US, From maciej.patelczyk at intel.com Mon Jan 13 08:47:31 2025 From: maciej.patelczyk at intel.com (Maciej Patelczyk) Date: Mon, 13 Jan 2025 09:47:31 +0100 Subject: [PATCH i-g-t] tests/xe_eudebug_online: correct calculate the time diff In-Reply-To: <318cf3d2-950b-4be4-b07b-cb5a2c5d6284@intel.com> References: <20250110153455.2791158-1-maciej.patelczyk@intel.com> <318cf3d2-950b-4be4-b07b-cb5a2c5d6284@intel.com> Message-ID: On 13.01.2025 09:26, Hajda, Andrzej wrote: > > W dniu 10.01.2025 o?16:34, Maciej Patelczyk pisze: >> When calculating time difference between two timespec values use >> library function which does it right. >> >> Previous way wasn't working well on slower machines. It was only >> taking the tv_nsec field from struct timespec. >> >> Fixes: bbf1730baf ("tests/xe_eudebug_online: Debug client which >> ???????????????????? runs workloads on EU") >> CC: Dominik Grzegorzek >> Signed-off-by: Maciej Patelczyk >> --- >> ? tests/intel/xe_eudebug_online.c | 13 ++++++++----- >> ? 1 file changed, 8 insertions(+), 5 deletions(-) >> >> diff --git a/tests/intel/xe_eudebug_online.c >> b/tests/intel/xe_eudebug_online.c >> index 052774a3b..f532387af 100644 >> --- a/tests/intel/xe_eudebug_online.c >> +++ b/tests/intel/xe_eudebug_online.c >> @@ -2235,6 +2235,11 @@ static int find_suitable_engines(struct >> drm_xe_engine_class_instance **hwes, >> ????? return engine_count; >> ? } >> ? +static uint64_t timespecs_diff_us(struct timespec *ts1, struct >> timespec *ts2) >> +{ >> +??? return (uint64_t)(fabs(igt_time_elapsed(ts1, ts2)) * USEC_PER_SEC); > > > It seems igt_time_elapsed handles correctly case ts1 > ts2, so the > conversion looks correct. > > Something to bikeshed is the conversion from int type to double, then > int again, up to you. > > I think there is no need to explicit conversion to uint64_t, no big deal. > > Reviewed-by: Andrzej Hajda > > Regards > Andrzej > > Thanks Andrzej. I wanted encapsulate all in that function so that no further changes are needed. I could change the diff variable to double but since WORKLOAD_DELAY_US is long int what's the point? Some conversion is unavoidable anyway. Regards, Maciej >> +} >> + >> ? /** >> ?? * SUBTEST: breakpoint-many-sessions-single-tile >> ?? * Description: >> @@ -2255,7 +2260,7 @@ static void test_many_sessions_on_tiles(int fd, >> bool multi_tile) >> ????? struct online_debug_data **data; >> ????? struct drm_xe_engine_class_instance **hwe; >> ????? struct drm_xe_eudebug_event_eu_attention *eus; >> -??? uint64_t current_t, next_t, diff; >> +??? uint64_t diff; >> ????? int attempt_mask = 0, final_mask, should_break; >> ????? int i; >> ? @@ -2318,10 +2323,8 @@ static void test_many_sessions_on_tiles(int >> fd, bool multi_tile) >> ????? igt_assert_eq(attempt_mask, final_mask); >> ? ????? for (i = 0; i < n - 1; i++) { >> -??????? /* Convert timestamps to microseconds */ >> -??????? current_t = data[i]->exception_arrived.tv_nsec * 1000; >> -??????? next_t = data[i + 1]->exception_arrived.tv_nsec * 1000; >> -??????? diff = current_t < next_t ? next_t - current_t : current_t - >> next_t; >> +??????? diff = timespecs_diff_us(&data[i]->exception_arrived, >> +???????????????????? &data[i + 1]->exception_arrived); >> ? ????????? if (multi_tile) >> ????????????? igt_assert_f(diff < WORKLOAD_DELAY_US, From jupallyx.ravali at intel.com Mon Jan 13 10:04:57 2025 From: jupallyx.ravali at intel.com (Ravali, JupallyX) Date: Mon, 13 Jan 2025 10:04:57 +0000 Subject: =?utf-8?B?UkU6IOKclyBYZS5DSS5GdWxsOiBmYWlsdXJlIGZvciBsaWIvaWd0X2ttZW1s?= =?utf-8?Q?eak:_library_to_interact_with_kmemleak_(rev2)?= In-Reply-To: <70130f72-1bb6-492b-8760-e5a523109e4f@linux.intel.com> References: <20250109181027.90402-1-peter.senna@linux.intel.com> <173667139526.2829460.13324038630832694591@b555e5b46a47> <70130f72-1bb6-492b-8760-e5a523109e4f@linux.intel.com> Message-ID: Hi, https://patchwork.freedesktop.org/series/142673/ Xe.CI.Full - Addressed failures, Xe cannot be re-reported. Thanks, Ravali -----Original Message----- From: I915-ci-infra On Behalf Of Peter Senna Tschudin Sent: 13 January 2025 13:30 To: igt-dev at lists.freedesktop.org; I915-ci-infra at lists.freedesktop.org Subject: Re: ? Xe.CI.Full: failure for lib/igt_kmemleak: library to interact with kmemleak (rev2) Dear I915, On 12.01.2025 09:43, Patchwork wrote: > == Series Details == > > Series: lib/igt_kmemleak: library to interact with kmemleak (rev2) > URL : https://patchwork.freedesktop.org/series/142673/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8184_full -> XEIGTPW_12421_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_12421_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_12421_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_12421_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at xe_pm_residency@cpg-basic: > - shard-dg2-set2: [PASS][1] -> [ABORT][2] > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-433/igt at xe_pm_residency@cpg-basic.html > [2]: > https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-dg2-432/ig > t at xe_pm_residency@cpg-basic.html > > > #### Warnings #### > > * igt at xe_evict@evict-mixed-threads-large: > - shard-bmg: [INCOMPLETE][3] ([Intel XE#1473]) -> [DMESG-FAIL][4] > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at xe_evict@evict-mixed-threads-large.html > [4]: > https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-1/igt@ > xe_evict at evict-mixed-threads-large.html > > * igt at xe_mmap@pci-membarrier-bad-object: > - shard-bmg: [SKIP][5] ([Intel XE#1130]) -> [SKIP][6] > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_mmap@pci-membarrier-bad-object.html > [6]: > https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12421/shard-bmg-8/igt@ > xe_mmap at pci-membarrier-bad-object.html These warnings and regression are unrelated. Please fix and re-run. Thank you! [...] From luca at coelho.fi Mon Jan 13 12:17:00 2025 From: luca at coelho.fi (Luca Coelho) Date: Mon, 13 Jan 2025 14:17:00 +0200 Subject: =?UTF-8?Q?=E2=9C=97?= Xe.CI.Full: failure for tests/kms_plane_scaling: get mode only after setting the output pipe In-Reply-To: <173674717890.3139263.9477051405974825494@b555e5b46a47> References: <20250110123403.1818011-1-luciano.coelho@intel.com> <173674717890.3139263.9477051405974825494@b555e5b46a47> Message-ID: Hi, None of these new failures are related to this patch. The first one is a bad file descriptor in the fbc-suspend test, then a few failures related to EDID mismatches and finally the last one is about a network failure, with nothing noticeable in the logs. Please re-report. -- Cheers, Luca. On Mon, 2025-01-13 at 05:46 +0000, Patchwork wrote: > Patch Details > > Series:tests/kms_plane_scaling: get mode only after setting the > output pipe > > URL:https://patchwork.freedesktop.org/series/143388/ > > State:failure > Details: > https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/index.html > CI Bug Log - changes from XEIGT_8186_full -> XEIGTPW_12425_fullSummaryFAILURE > Serious unknown changes coming with XEIGTPW_12425_full absolutely > need to be > verified manually. > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_12425_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 issuesHere are the unknown changes that may have been introduced in > XEIGTPW_12425_full: > IGT changesPossible regressions * > igt at kms_fbcon_fbt@fbc-suspend:shard-lnl: PASS [370] -> FAIL [369] > * > igt at kms_pm_rpm@i2c:shard-bmg: PASS [366] -> FAIL [365] +1 other test > failshard-dg2-set2: PASS [368] -> FAIL [367] > * > igt at kms_vblank@query-forked-busy-hang:shard-bmg: PASS [364] -> > INCOMPLETE [363] +1 other test incomplete > * > igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2:shard-dg2-set2: > NOTRUN -> ABORT [362] +1 other test abort > Known issuesHere are the changes found in XEIGTPW_12425_full that come from known > issues: > IGT changesIssues hit * > igt at kms_addfb_basic@addfb25-y-tiled-small-legacy:shard-dg2-set2: > NOTRUN -> SKIP [361] (Intel XE#623 [360]) > * > igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1- > linear:shard-lnl: PASS [359] -> FAIL [358] (Intel XE#911 [357]) +3 > other tests fail > * > 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 [356] (Intel XE#2550 > [355]) +23 other tests skip > * > igt at kms_async_flips@invalid-async-flip:shard-lnl: NOTRUN -> SKIP > [354] (Intel XE#873 [353]) > * > igt at kms_atomic@plane-primary-overlay-mutable-zpos:shard-lnl: NOTRUN > -> SKIP [352] (Intel XE#3279 [351]) > * > igt at kms_big_fb@4-tiled-32bpp-rotate-270:shard-lnl: NOTRUN -> SKIP > [350] (Intel XE#1407 [349]) +3 other tests skip > * > igt at kms_big_fb@x-tiled-8bpp-rotate-270:shard-dg2-set2: NOTRUN -> > SKIP [348] (Intel XE#316 [347]) +4 other tests skip > * > igt at kms_big_fb@y-tiled-32bpp-rotate-90:shard-bmg: NOTRUN -> SKIP > [346] (Intel XE#1124 [44]) > * > igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:shard-dg2- > set2: NOTRUN -> SKIP [345] (Intel XE#1124 [44]) +11 other tests skip > * > igt at kms_big_fb@yf-tiled-16bpp-rotate-180:shard-lnl: NOTRUN -> SKIP > [344] (Intel XE#1124 [44]) +2 other tests skip > * > igt at kms_big_fb@yf-tiled-addfb:shard-lnl: NOTRUN -> SKIP [343] (Intel > XE#1467 [342]) +1 other test skip > * > igt at kms_big_fb@yf-tiled-addfb-size-overflow:shard-dg2-set2: NOTRUN - > > SKIP [341] (Intel XE#610 [340]) > * > igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p:shard-dg2- > set2: NOTRUN -> SKIP [339] (Intel XE#367 [335]) +6 other tests skip > * > igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p:shard-lnl: > NOTRUN -> SKIP [338] (Intel XE#1512 [337]) > * > igt at kms_bw@linear-tiling-2-displays-2160x1440p:shard-lnl: NOTRUN -> > SKIP [336] (Intel XE#367 [335]) > * > igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:shard-bmg: NOTRUN -> > SKIP [334] (Intel XE#2887 [330]) > * > igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:shard-dg2-set2: NOTRUN - > > SKIP [333] (Intel XE#2907 [332]) +2 other tests skip > * > igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:shard- > lnl: NOTRUN -> SKIP [331] (Intel XE#2887 [330]) +8 other tests skip > * > igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-b-edp-1:shard- > lnl: PASS [329] -> INCOMPLETE [328] (Intel XE#3862 [327]) +1 other > test incomplete > * > igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c- > hdmi-a-6:shard-dg2-set2: NOTRUN -> SKIP [326] (Intel XE#787 [324]) > +174 other tests skip > * > igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4:shard- > dg2-set2: NOTRUN -> SKIP [325] (Intel XE#455 [87] / Intel XE#787 > [324]) +40 other tests skip > * > igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a- > 6:shard-dg2-set2: NOTRUN -> INCOMPLETE [323] (Intel XE#1727 [127] / > Intel XE#3124 [125]) +1 other test incomplete > * > igt at kms_cdclk@plane-scaling:shard-lnl: NOTRUN -> SKIP [322] (Intel > XE#1152 [321]) +3 other tests skip > * > igt at kms_chamelium_color@ctm-negative:shard-dg2-set2: NOTRUN -> SKIP > [320] (Intel XE#306 [319]) +1 other test skip > * > igt at kms_chamelium_hpd@dp-hpd-fast:shard-dg2-set2: NOTRUN -> SKIP > [318] (Intel XE#373 [316]) +11 other tests skip > * > igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode:shard-lnl: NOTRUN -> > SKIP [317] (Intel XE#373 [316]) +1 other test skip > * > igt at kms_content_protection@dp-mst-lic-type-0:shard-lnl: NOTRUN -> > SKIP [315] (Intel XE#307 [314]) +1 other test skip > * > igt at kms_content_protection@legacy:shard-dg2-set2: NOTRUN -> FAIL > [313] (Intel XE#1178 [40]) +1 other test fail > * > igt at kms_content_protection@lic-type-0 at pipe-a-dp-2:shard-bmg: NOTRUN > -> FAIL [312] (Intel XE#1178 [40]) > * > igt at kms_content_protection@uevent:shard-dg2-set2: NOTRUN -> FAIL > [311] (Intel XE#1188 [310]) +1 other test fail > * > igt at kms_cursor_crc@cursor-offscreen-32x32:shard-lnl: NOTRUN -> SKIP > [309] (Intel XE#1424 [308]) +2 other tests skip > * > igt at kms_cursor_crc@cursor-onscreen-512x170:shard-lnl: NOTRUN -> SKIP > [307] (Intel XE#2321 [306]) +2 other tests skip > * > igt at kms_cursor_crc@cursor-onscreen-512x512:shard-dg2-set2: NOTRUN -> > SKIP [305] (Intel XE#308 [304]) +1 other test skip > * > igt at kms_cursor_crc@cursor-random-max-size:shard-dg2-set2: NOTRUN -> > SKIP [303] (Intel XE#455 [87]) +16 other tests skip > * > igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:shard- > dg2-set2: NOTRUN -> SKIP [302] (Intel XE#323 [300]) > * > igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying- > size:shard-lnl: NOTRUN -> SKIP [301] (Intel XE#323 [300]) > * > igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size:shard-lnl: > NOTRUN -> SKIP [299] (Intel XE#309 [298]) +1 other test skip > * > igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying- > size:shard-bmg: PASS [297] -> SKIP [296] (Intel XE#2291 [120]) +1 > other test skip > * > igt at kms_cursor_legacy@torture-move at all-pipes:shard-dg2-set2: PASS > [295] -> DMESG-WARN [294] (Intel XE#3184 [293]) +1 other test dmesg- > warn > * > igt at kms_display_modes@extended-mode-basic:shard-lnl: NOTRUN -> SKIP > [292] (Intel XE#3383 [291]) > * > igt at kms_feature_discovery@chamelium:shard-lnl: NOTRUN -> SKIP [290] > (Intel XE#701 [289]) > * > igt at kms_feature_discovery@display-4x:shard-dg2-set2: NOTRUN -> SKIP > [288] (Intel XE#1138 [287]) > * > igt at kms_feature_discovery@dp-mst:shard-lnl: NOTRUN -> SKIP [286] > (Intel XE#1137 [285]) > * > igt at kms_flip@2x-blocking-wf_vblank at ac-dp2-hdmi-a3:shard-bmg: PASS > [284] -> FAIL [283] (Intel XE#2882 [38]) +5 other tests fail > * > igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a6- > dp4:shard-dg2-set2: PASS [282] -> FAIL [281] (Intel XE#301 [94]) +2 > other tests fail > * > igt at kms_flip@2x-flip-vs-modeset-vs-hang:shard-bmg: PASS [280] -> > SKIP [279] (Intel XE#2316 [35]) +4 other tests skip > * > igt at kms_flip@2x-flip-vs-rmfb-interruptible:shard-lnl: NOTRUN -> SKIP > [278] (Intel XE#1421 [277]) > * > igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1:shard- > lnl: PASS [276] -> FAIL [275] (Intel XE#886 [105]) +2 other tests > fail > * > igt at kms_flip@flip-vs-expired-vblank at a-dp4:shard-dg2-set2: PASS [274] > -> FAIL [273] (Intel XE#3321 [93]) > * > igt at kms_flip@flip-vs-expired-vblank at b-dp4:shard-dg2-set2: PASS [272] > -> FAIL [271] (Intel XE#301 [94] / Intel XE#3321 [93]) > * > igt at kms_flip@flip-vs-suspend:shard-bmg: NOTRUN -> INCOMPLETE [270] > (Intel XE#2597 [268]) > * > igt at kms_flip@flip-vs-suspend at d-hdmi-a3:shard-bmg: NOTRUN -> > INCOMPLETE [269] (Intel XE#2597 [268] / Intel XE#2635 [267]) > * > igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile- > downscaling:shard-lnl: NOTRUN -> SKIP [266] (Intel XE#1397 [264] / > Intel XE#1745 [262]) > * > igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile- > downscaling at pipe-a-default-mode:shard-lnl: NOTRUN -> SKIP [265] > (Intel XE#1397 [264]) > * > igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs- > upscaling:shard-lnl: NOTRUN -> SKIP [263] (Intel XE#1401 [260] / > Intel XE#1745 [262]) > * > igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs- > upscaling at pipe-a-default-mode:shard-lnl: NOTRUN -> SKIP [261] (Intel > XE#1401 [260]) > * > igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw- > render:shard-dg2-set2: NOTRUN -> SKIP [259] (Intel XE#651 [255]) +35 > other tests skip > * > igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte:shard-lnl: NOTRUN -> > SKIP [258] (Intel XE#656 [257]) +21 other tests skip > * > igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:shard-lnl: > NOTRUN -> SKIP [256] (Intel XE#651 [255]) +6 other tests skip > * > igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw- > blt:shard-bmg: NOTRUN -> SKIP [254] (Intel XE#2313 [16]) +1 other > test skip > * > igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-dp-2:shard-bmg: > NOTRUN -> FAIL [253] (Intel XE#2333 [23]) > * > igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:shard- > dg2-set2: NOTRUN -> SKIP [251] (Intel XE#653 [250]) +34 other tests > skipshard-bmg: NOTRUN -> SKIP [252] (Intel XE#2312 [18]) > * > igt at kms_histogram@algo-basic:shard-dg2-set2: NOTRUN -> SKIP [249] > (Intel XE#3897 [248]) +1 other test skip > * > igt at kms_joiner@basic-force-big-joiner:shard-bmg: PASS [247] -> SKIP > [246] (Intel XE#3012 [245]) > * > igt at kms_joiner@basic-ultra-joiner:shard-dg2-set2: NOTRUN -> SKIP > [244] (Intel XE#2927 [243]) > * > igt at kms_joiner@invalid-modeset-force-ultra-joiner:shard-dg2-set2: > NOTRUN -> SKIP [242] (Intel XE#2925 [241]) > * > igt at kms_plane_cursor@viewport:shard-dg2-set2: PASS [240] -> FAIL > [239] (Intel XE#616 [237]) > * > igt at kms_plane_cursor@viewport at pipe-a-hdmi-a-2-size-64:shard-dg2- > set2: NOTRUN -> FAIL [238] (Intel XE#616 [237]) > * > igt at kms_plane_lowres@tiling-x at pipe-b-edp-1:shard-lnl: NOTRUN -> SKIP > [236] (Intel XE#599 [235]) +3 other tests skip > * > igt at kms_plane_multiple@tiling-yf:shard-lnl: NOTRUN -> SKIP [234] > (Intel XE#2493 [233]) > * > igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel- > format at pipe-b:shard-dg2-set2: NOTRUN -> SKIP [232] (Intel XE#2763 > [229]) +11 other tests skip > * > igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0- > 25 at pipe-d:shard-dg2-set2: NOTRUN -> SKIP [231] (Intel XE#2763 [229] > / Intel XE#455 [87]) +7 other tests skip > * > igt at kms_plane_scaling@planes-downscale-factor-0-5:shard-lnl: NOTRUN > -> SKIP [230] (Intel XE#2763 [229]) +3 other tests skip > * > igt at kms_pm_backlight@bad-brightness:shard-dg2-set2: NOTRUN -> SKIP > [228] (Intel XE#870 [227]) > * > igt at kms_pm_dc@dc5-psr:shard-lnl: PASS [226] -> FAIL [225] (Intel > XE#718 [81]) > * > igt at kms_pm_rpm@dpms-mode-unset-non-lpsp:shard-lnl: NOTRUN -> SKIP > [224] (Intel XE#1439 [223] / Intel XE#836 [222]) > * > igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully- > sf:shard-lnl: NOTRUN -> SKIP [221] (Intel XE#2893 [220]) > * > igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:shard-dg2- > set2: NOTRUN -> SKIP [219] (Intel XE#1489 [218]) +10 other tests > skip > * > igt at kms_psr2_su@page_flip-xrgb8888:shard-dg2-set2: NOTRUN -> SKIP > [217] (Intel XE#1122 [216]) > * > igt at kms_psr@fbc-pr-cursor-blt:shard-bmg: NOTRUN -> SKIP [215] (Intel > XE#2234 [214] / Intel XE#2850 [210]) +2 other tests skip > * > igt at kms_psr@fbc-pr-no-drrs:shard-lnl: NOTRUN -> SKIP [213] (Intel > XE#1406 [212]) +2 other tests skip > * > igt at kms_psr@fbc-psr2-cursor-plane-onoff:shard-dg2-set2: NOTRUN -> > SKIP [211] (Intel XE#2850 [210] / Intel XE#929 [209]) +18 other > tests skip > * > igt at kms_rotation_crc@bad-tiling:shard-lnl: NOTRUN -> SKIP [208] > (Intel XE#3414 [202] / Intel XE#3904 [201]) > * > igt at kms_rotation_crc@primary-y-tiled-reflect-x-180:shard-dg2-set2: > NOTRUN -> SKIP [207] (Intel XE#1127 [204]) > * > igt at kms_rotation_crc@primary-y-tiled-reflect-x-90:shard-dg2-set2: > NOTRUN -> SKIP [206] (Intel XE#3414 [202]) +3 other tests skip > * > igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180:shard-lnl: > NOTRUN -> SKIP [205] (Intel XE#1127 [204]) > * > igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90:shard-bmg: NOTRUN > -> SKIP [203] (Intel XE#3414 [202] / Intel XE#3904 [201]) > * > igt at kms_setmode@clone-exclusive-crtc:shard-bmg: NOTRUN -> SKIP [200] > (Intel XE#1435 [198]) > * > igt at kms_setmode@invalid-clone-single-crtc:shard-lnl: NOTRUN -> SKIP > [199] (Intel XE#1435 [198]) > * > igt at kms_vblank@ts-continuation-suspend:shard-dg2-set2: PASS [197] -> > ABORT [196] (Intel XE#2625 [90]) +1 other test abort > * > igt at kms_vrr@lobf:shard-dg2-set2: NOTRUN -> SKIP [195] (Intel XE#2168 > [194]) > * > igt at kms_vrr@seamless-rr-switch-virtual at pipe-a-edp-1:shard-lnl: PASS > [193] -> FAIL [192] (Intel XE#2142 [191]) +1 other test fail > * > igt at kms_writeback@writeback-fb-id:shard-dg2-set2: NOTRUN -> SKIP > [190] (Intel XE#756 [189]) +1 other test skip > * > igt at sriov_basic@enable-vfs-autoprobe-off:shard-dg2-set2: NOTRUN -> > SKIP [188] (Intel XE#1091 [187] / Intel XE#2849 [186]) > * > igt at xe_compute_preempt@compute-preempt-many:shard-dg2-set2: NOTRUN - > > SKIP [185] (Intel XE#1280 [184] / Intel XE#455 [87]) +1 other test > skip > * > igt at xe_copy_basic@mem-set-linear-0xfffe:shard-dg2-set2: NOTRUN -> > SKIP [183] (Intel XE#1126 [182]) > * > igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram:shard- > lnl: NOTRUN -> SKIP [181] (Intel XE#2905 [160]) +2 other tests skip > * > igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:shard- > bmg: NOTRUN -> SKIP [180] (Intel XE#2905 [160]) +2 other tests skip > * > igt at xe_evict@evict-beng-large-multi-vm-cm:shard-dg2-set2: NOTRUN -> > FAIL [179] (Intel XE#1600 [178]) > * > igt at xe_evict@evict-beng-mixed-many-threads-small:shard-dg2-set2: > PASS [177] -> TIMEOUT [176] (Intel XE#1473 [6] / Intel XE#402 [175]) > * > igt at xe_evict@evict-beng-threads-small:shard-lnl: NOTRUN -> SKIP > [174] (Intel XE#688 [173]) +5 other tests skip > * > igt at xe_evict@evict-mixed-many-threads-small:shard-dg2-set2: NOTRUN - > > TIMEOUT [172] (Intel XE#1473 [6]) > * > igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr- > invalidate:shard-bmg: NOTRUN -> SKIP [171] (Intel XE#2322 [170]) > * > igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr- > invalidate:shard-dg2-set2: NOTRUN -> SKIP [169] (Intel XE#1392 [67]) > * > igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr- > invalidate:shard-dg2-set2: PASS [168] -> SKIP [167] (Intel XE#1392 > [67]) +3 other tests skip > * > igt at xe_exec_basic@multigpu-once-userptr-invalidate:shard-lnl: NOTRUN > -> SKIP [166] (Intel XE#1392 [67]) +4 other tests skip > * > igt at xe_exec_fault_mode@once-bindexecqueue-imm:shard-dg2-set2: NOTRUN > -> SKIP [165] (Intel XE#288 [164]) +20 other tests skip > * > igt at xe_exec_mix_modes@exec-simple-batch-store-lr:shard-dg2-set2: > NOTRUN -> SKIP [163] (Intel XE#2360 [162]) +1 other test skip > * > igt at xe_exec_sip_eudebug@breakpoint-writesip:shard-dg2-set2: NOTRUN - > > SKIP [161] (Intel XE#2905 [160]) +13 other tests skip > * > igt at xe_live_ktest@xe_dma_buf:shard-bmg: PASS [159] -> SKIP [158] > (Intel XE#1192 [1]) > * > igt at xe_live_ktest@xe_eudebug:shard-lnl: NOTRUN -> SKIP [157] (Intel > XE#1192 [1] / Intel XE#3026 [156]) > * > igt at xe_media_fill@media-fill:shard-dg2-set2: NOTRUN -> SKIP [155] > (Intel XE#560 [154]) > * > igt at xe_mmap@small-bar:shard-dg2-set2: NOTRUN -> SKIP [153] (Intel > XE#512 [152]) > * > igt at xe_oa@oa-regs-whitelisted:shard-dg2-set2: NOTRUN -> SKIP [151] > (Intel XE#2541 [150] / Intel XE#3573 [149]) +8 other tests skip > * > igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p:shard-dg2- > set2: NOTRUN -> FAIL [148] (Intel XE#1173 [147]) +1 other test fail > * > igt at xe_pm@d3cold-mocs:shard-dg2-set2: NOTRUN -> SKIP [146] (Intel > XE#2284 [142]) > * > igt at xe_pm@s2idle-multiple-execs:shard-dg2-set2: PASS [145] -> ABORT > [144] (Intel XE#1358 [56]) > * > igt at xe_pm@s3-d3cold-basic-exec:shard-dg2-set2: NOTRUN -> SKIP [143] > (Intel XE#2284 [142] / Intel XE#366 [141]) +1 other test skip > * > igt at xe_pm@s3-multiple-execs:shard-dg2-set2: PASS [140] -> ABORT > [139] (Intel XE#1358 [56] / Intel XE#1794 [55]) > * > igt at xe_pm@s3-vm-bind-prefetch:shard-lnl: NOTRUN -> SKIP [138] (Intel > XE#584 [137]) > * > igt at xe_pm@s4-vm-bind-unbind-all:shard-lnl: PASS [136] -> ABORT [135] > (Intel XE#1358 [56] / Intel XE#1607 [134] / Intel XE#1794 [55]) +1 > other test abort > * > igt at xe_query@multigpu-query-invalid-cs-cycles:shard-dg2-set2: NOTRUN > -> SKIP [133] (Intel XE#944 [131]) +5 other tests skip > * > igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz:shard-lnl: > NOTRUN -> SKIP [132] (Intel XE#944 [131]) > Possible fixes * > igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:shard-dg2-set2: > INCOMPLETE [130] (Intel XE#1727 [127] / Intel XE#3124 [125]) -> PASS > [129] > * > igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a- > 6:shard-dg2-set2: INCOMPLETE [128] (Intel XE#1727 [127] / Intel > XE#3113 [126] / Intel XE#3124 [125]) -> PASS [124] > * > igt at kms_cursor_crc@cursor-suspend:shard-dg2-set2: ABORT [123] -> > PASS [122] +1 other test pass > * > igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:shard-bmg: SKIP > [121] (Intel XE#2291 [120]) -> PASS [119] +3 other tests pass > * > igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying- > size:shard-bmg: DMESG-WARN [118] (Intel XE#877 [117]) -> PASS [116] > +1 other test pass > * > igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6- > dp4:shard-dg2-set2: FAIL [115] (Intel XE#3321 [93]) -> PASS [114] > * > igt at kms_flip@2x-flip-vs-panning-vs-hang:shard-bmg: SKIP [113] (Intel > XE#2316 [35]) -> PASS [112] +3 other tests pass > * > igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4:shard-dg2-set2: > INCOMPLETE [111] -> PASS [110] +1 other test pass > * > igt at kms_flip@blocking-wf_vblank:shard-lnl: FAIL [109] (Intel XE#3149 > [108] / Intel XE#886 [105]) -> PASS [107] > * > igt at kms_flip@blocking-wf_vblank at c-edp1:shard-lnl: FAIL [106] (Intel > XE#886 [105]) -> PASS [104] +2 other tests pass > * > igt at kms_flip@flip-vs-expired-vblank-interruptible:shard-bmg: FAIL > [103] (Intel XE#2882 [38] / Intel XE#3288 [37]) -> PASS [102] > * > igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3:shard- > bmg: FAIL [101] (Intel XE#3288 [37] / Intel XE#3321 [93]) -> PASS > [100] > * > igt at kms_flip@flip-vs-expired-vblank at b-edp1:shard-lnl: FAIL [99] > (Intel XE#301 [94]) -> PASS [98] +1 other test pass > * > igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3:shard-bmg: FAIL [97] > (Intel XE#3321 [93]) -> PASS [96] > * > igt at kms_flip@flip-vs-expired-vblank at d-dp4:shard-dg2-set2: FAIL [95] > (Intel XE#301 [94] / Intel XE#3321 [93]) -> PASS [92] > * > igt at kms_frontbuffer_tracking@fbc-suspend:shard-dg2-set2: ABORT [91] > (Intel XE#2625 [90]) -> PASS [89] > * > igt at kms_hdr@invalid-hdr:shard-dg2-set2: SKIP [88] (Intel XE#455 > [87]) -> PASS [86] > * > igt at kms_plane_scaling@intel-max-src-size:shard-dg2-set2: FAIL [85] > (Intel XE#361 [84]) -> PASS [83] +1 other test pass > * > igt at kms_pm_dc@dc5-dpms:shard-lnl: FAIL [82] (Intel XE#718 [81]) -> > PASS [80] > * > igt at kms_setmode@basic at pipe-a-hdmi-a-6:shard-dg2-set2: FAIL [79] > (Intel XE#2883 [78]) -> PASS [77] +4 other tests pass > * > igt at kms_vrr@negative-basic:shard-bmg: SKIP [76] (Intel XE#1499 [75]) > -> PASS [74] > * > igt at xe_exec_basic@many-bindexecqueue-rebind:shard-bmg: SKIP [71] > (Intel XE#1130 [70]) -> PASS [69]shard-dg2-set2: SKIP [73] (Intel > XE#1130 [70]) -> PASS [72] > * > igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer- > bind:shard-dg2-set2: SKIP [68] (Intel XE#1392 [67]) -> PASS [66] +4 > other tests pass > * > igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit:shard-dg2-set2: > FAIL [65] (Intel XE#1999 [64]) -> PASS [63] +2 other tests pass > * > igt at xe_module_load@reload:shard-dg2-set2: FAIL [60] (Intel XE#3546 > [59]) -> PASS [58]shard-bmg: FAIL [62] (Intel XE#3546 [59]) -> PASS > [61] > * > igt at xe_pm@s3-basic:shard-dg2-set2: ABORT [57] (Intel XE#1358 [56] / > Intel XE#1794 [55]) -> PASS [54] > * > igt at xe_pm_residency@toggle-gt-c6:shard-lnl: FAIL [53] (Intel XE#958 > [52]) -> PASS [51] > Warnings * > igt at kms_big_fb@y-tiled-32bpp-rotate-180:shard-bmg: SKIP [48] (Intel > XE#2136 [47] / Intel XE#2231 [46]) -> SKIP [45] (Intel XE#1124 > [44])shard-dg2-set2: SKIP [50] (Intel XE#2136 [47]) -> SKIP [49] > (Intel XE#1124 [44]) > * > igt at kms_content_protection@lic-type-0:shard-bmg: SKIP [43] (Intel > XE#2341 [42]) -> FAIL [41] (Intel XE#1178 [40]) > * > igt at kms_flip@2x-flip-vs-expired-vblank-interruptible:shard-bmg: FAIL > [39] (Intel XE#2882 [38] / Intel XE#3288 [37]) -> SKIP [36] (Intel > XE#2316 [35]) > * > igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip- > blt:shard-bmg: SKIP [34] (Intel XE#2311 [30]) -> SKIP [33] (Intel > XE#2312 [18]) +14 other tests skip > * > igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap- > wc:shard-bmg: SKIP [32] (Intel XE#2312 [18]) -> SKIP [31] (Intel > XE#2311 [30]) +16 other tests skip > * > igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:shard- > bmg: SKIP [29] (Intel XE#2312 [18]) -> FAIL [28] (Intel XE#2333 > [23]) +1 other test fail > * > igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:shard- > bmg: INCOMPLETE [27] (Intel XE#2050 [26]) -> FAIL [25] (Intel > XE#2333 [23]) > * > igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw- > render:shard-bmg: FAIL [24] (Intel XE#2333 [23]) -> SKIP [22] (Intel > XE#2312 [18]) +8 other tests skip > * > igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw- > render:shard-bmg: SKIP [21] (Intel XE#2313 [16]) -> SKIP [20] (Intel > XE#2312 [18]) +9 other tests skip > * > igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw- > blt:shard-bmg: SKIP [19] (Intel XE#2312 [18]) -> SKIP [17] (Intel > XE#2313 [16]) +11 other tests skip > * > igt at kms_tiled_display@basic-test-pattern:shard-dg2-set2: SKIP [15] > (Intel XE#362 [14]) -> FAIL [13] (Intel XE#1729 [12]) > * > igt at xe_evict@evict-beng-threads-large:shard-bmg: FAIL [11] (Intel > XE#1000 [10]) -> INCOMPLETE [9] (Intel XE#1473 [6]) > * > igt at xe_evict@evict-mixed-many-threads-small:shard-bmg: TIMEOUT [8] > (Intel XE#1473 [6]) -> TIMEOUT [7] (Intel XE#1473 [6] / Intel > XE#2472 [5]) > * > igt at xe_live_ktest@xe_eudebug:shard-bmg: SKIP [4] (Intel XE#2833 [3]) > -> SKIP [2] (Intel XE#1192 [1]) > Build changes * IGT: IGT_8186 -> IGTPW_12425 > * Linux: xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917 -> xe-2474- > 00f4619246294b1de4bac42742cfef95c1f37fde > IGTPW_12425: 3ecd83f130ed2cb4419226fad481364f8a39a5be @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8186: 2c6b2f0ed4075aa1ac3d341d612e41343cff4e4d @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917: > 0ca002b6f088ddd9bdde5630662526a50b7ef917 > xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde: > 00f4619246294b1de4bac42742cfef95c1f37fde [1] Intel XE#1192 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [2] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-2/igt at xe_live_ktest@xe_eudebug.html [3] Intel XE#2833 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [4] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at xe_live_ktest@xe_eudebug.html [5] Intel XE#2472 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [6] Intel XE#1473 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [7] TIMEOUT https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at xe_evict@evict-mixed-many-threads-small.html [8] TIMEOUT https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at xe_evict@evict-mixed-many-threads-small.html [9] INCOMPLETE https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-2/igt at xe_evict@evict-beng-threads-large.html [10] Intel XE#1000 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [11] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_evict@evict-beng-threads-large.html [12] Intel XE#1729 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [13] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern.html [14] Intel XE#362 https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [15] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html [16] Intel XE#2313 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [17] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [18] Intel XE#2312 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [19] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [20] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [21] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [22] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [23] Intel XE#2333 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [24] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [25] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [26] Intel XE#2050 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [27] INCOMPLETE https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [28] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [29] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [30] Intel XE#2311 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [31] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [32] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [33] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [34] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [35] Intel XE#2316 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [36] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [37] Intel XE#3288 https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [38] Intel XE#2882 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [39] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [40] Intel XE#1178 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [41] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_content_protection@lic-type-0.html [42] Intel XE#2341 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [43] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_content_protection@lic-type-0.html [44] Intel XE#1124 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [45] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-5/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [46] Intel XE#2231 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [47] Intel XE#2136 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [48] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [49] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [50] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html [51] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-6/igt at xe_pm_residency@toggle-gt-c6.html [52] Intel XE#958 https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [53] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-3/igt at xe_pm_residency@toggle-gt-c6.html [54] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at xe_pm@s3-basic.html [55] Intel XE#1794 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [56] Intel XE#1358 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [57] ABORT https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at xe_pm@s3-basic.html [58] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at xe_module_load@reload.html [59] Intel XE#3546 https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [60] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at xe_module_load@reload.html [61] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-8/igt at xe_module_load@reload.html [62] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at xe_module_load@reload.html [63] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [64] Intel XE#1999 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [65] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [66] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html [67] Intel XE#1392 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [68] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html [69] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at xe_exec_basic@many-bindexecqueue-rebind.html [70] Intel XE#1130 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [71] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at xe_exec_basic@many-bindexecqueue-rebind.html [72] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at xe_exec_basic@many-bindexecqueue-rebind.html [73] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at xe_exec_basic@many-bindexecqueue-rebind.html [74] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-2/igt at kms_vrr@negative-basic.html [75] Intel XE#1499 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [76] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_vrr@negative-basic.html [77] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at kms_setmode@basic at pipe-a-hdmi-a-6.html [78] Intel XE#2883 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [79] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_setmode@basic at pipe-a-hdmi-a-6.html [80] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-4/igt at kms_pm_dc@dc5-dpms.html [81] Intel XE#718 https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [82] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [83] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size.html [84] Intel XE#361 https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [85] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_plane_scaling@intel-max-src-size.html [86] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_hdr@invalid-hdr.html [87] Intel XE#455 https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [88] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_hdr@invalid-hdr.html [89] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-suspend.html [90] Intel XE#2625 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [91] ABORT https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_frontbuffer_tracking@fbc-suspend.html [92] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html [93] Intel XE#3321 https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [94] Intel XE#301 https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [95] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html [96] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html [97] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html [98] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-5/igt at kms_flip@flip-vs-expired-vblank at b-edp1.html [99] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-5/igt at kms_flip@flip-vs-expired-vblank at b-edp1.html [100] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-4/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3.html [101] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3.html [102] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-4/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [103] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [104] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-4/igt at kms_flip@blocking-wf_vblank at c-edp1.html [105] Intel XE#886 https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [106] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-2/igt at kms_flip@blocking-wf_vblank at c-edp1.html [107] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-4/igt at kms_flip@blocking-wf_vblank.html [108] Intel XE#3149 https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [109] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-2/igt at kms_flip@blocking-wf_vblank.html [110] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4.html [111] INCOMPLETE https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4.html [112] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-5/igt at kms_flip@2x-flip-vs-panning-vs-hang.html [113] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-vs-hang.html [114] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [115] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [116] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [117] Intel XE#877 https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [118] DMESG-WARN https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [119] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-8/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [120] Intel XE#2291 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [121] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-6/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [122] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_cursor_crc@cursor-suspend.html [123] ABORT https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-432/igt at kms_cursor_crc@cursor-suspend.html [124] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-6.html [125] Intel XE#3124 https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [126] Intel XE#3113 https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [127] Intel XE#1727 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [128] INCOMPLETE https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-6.html [129] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [130] INCOMPLETE https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [131] Intel XE#944 https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [132] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-3/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html [133] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at xe_query@multigpu-query-invalid-cs-cycles.html [134] Intel XE#1607 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [135] ABORT https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [136] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-7/igt at xe_pm@s4-vm-bind-unbind-all.html [137] Intel XE#584 https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [138] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-5/igt at xe_pm@s3-vm-bind-prefetch.html [139] ABORT https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at xe_pm@s3-multiple-execs.html [140] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at xe_pm@s3-multiple-execs.html [141] Intel XE#366 https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [142] Intel XE#2284 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [143] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at xe_pm@s3-d3cold-basic-exec.html [144] ABORT https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at xe_pm@s2idle-multiple-execs.html [145] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at xe_pm@s2idle-multiple-execs.html [146] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at xe_pm@d3cold-mocs.html [147] Intel XE#1173 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [148] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html [149] Intel XE#3573 https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [150] Intel XE#2541 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [151] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at xe_oa@oa-regs-whitelisted.html [152] Intel XE#512 https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [153] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at xe_mmap@small-bar.html [154] Intel XE#560 https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [155] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at xe_media_fill@media-fill.html [156] Intel XE#3026 https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026 [157] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at xe_live_ktest@xe_eudebug.html [158] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-2/igt at xe_live_ktest@xe_dma_buf.html [159] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at xe_live_ktest@xe_dma_buf.html [160] Intel XE#2905 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [161] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at xe_exec_sip_eudebug@breakpoint-writesip.html [162] Intel XE#2360 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [163] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html [164] Intel XE#288 https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [165] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at xe_exec_fault_mode@once-bindexecqueue-imm.html [166] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-2/igt at xe_exec_basic@multigpu-once-userptr-invalidate.html [167] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [168] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [169] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html [170] Intel XE#2322 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [171] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-4/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html [172] TIMEOUT https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at xe_evict@evict-mixed-many-threads-small.html [173] Intel XE#688 https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [174] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at xe_evict@evict-beng-threads-small.html [175] Intel XE#402 https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [176] TIMEOUT https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at xe_evict@evict-beng-mixed-many-threads-small.html [177] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at xe_evict@evict-beng-mixed-many-threads-small.html [178] Intel XE#1600 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [179] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at xe_evict@evict-beng-large-multi-vm-cm.html [180] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-4/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html [181] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-5/igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html [182] Intel XE#1126 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [183] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at xe_copy_basic@mem-set-linear-0xfffe.html [184] Intel XE#1280 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [185] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at xe_compute_preempt@compute-preempt-many.html [186] Intel XE#2849 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [187] Intel XE#1091 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [188] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at sriov_basic@enable-vfs-autoprobe-off.html [189] Intel XE#756 https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [190] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_writeback@writeback-fb-id.html [191] Intel XE#2142 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [192] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-2/igt at kms_vrr@seamless-rr-switch-virtual at pipe-a-edp-1.html [193] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-8/igt at kms_vrr@seamless-rr-switch-virtual at pipe-a-edp-1.html [194] Intel XE#2168 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [195] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_vrr@lobf.html [196] ABORT https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend.html [197] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_vblank@ts-continuation-suspend.html [198] Intel XE#1435 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [199] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-6/igt at kms_setmode@invalid-clone-single-crtc.html [200] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_setmode@clone-exclusive-crtc.html [201] Intel XE#3904 https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [202] Intel XE#3414 https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [203] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [204] Intel XE#1127 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [205] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [206] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [207] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [208] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-2/igt at kms_rotation_crc@bad-tiling.html [209] Intel XE#929 https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [210] Intel XE#2850 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [211] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html [212] Intel XE#1406 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [213] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-7/igt at kms_psr@fbc-pr-no-drrs.html [214] Intel XE#2234 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [215] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-2/igt at kms_psr@fbc-pr-cursor-blt.html [216] Intel XE#1122 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [217] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at kms_psr2_su@page_flip-xrgb8888.html [218] Intel XE#1489 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [219] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html [220] Intel XE#2893 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [221] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-2/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html [222] Intel XE#836 https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [223] Intel XE#1439 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [224] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-4/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [225] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at kms_pm_dc@dc5-psr.html [226] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-4/igt at kms_pm_dc@dc5-psr.html [227] Intel XE#870 https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [228] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at kms_pm_backlight@bad-brightness.html [229] Intel XE#2763 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [230] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at kms_plane_scaling@planes-downscale-factor-0-5.html [231] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html [232] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b.html [233] Intel XE#2493 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [234] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-2/igt at kms_plane_multiple@tiling-yf.html [235] Intel XE#599 https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [236] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-1/igt at kms_plane_lowres@tiling-x at pipe-b-edp-1.html [237] Intel XE#616 https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [238] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at kms_plane_cursor@viewport at pipe-a-hdmi-a-2-size-64.html [239] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at kms_plane_cursor@viewport.html [240] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_plane_cursor@viewport.html [241] Intel XE#2925 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [242] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [243] Intel XE#2927 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [244] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_joiner@basic-ultra-joiner.html [245] Intel XE#3012 https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [246] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_joiner@basic-force-big-joiner.html [247] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_joiner@basic-force-big-joiner.html [248] Intel XE#3897 https://gitlab.freedesktop.org/drm/xe/kernel/issues/3897 [249] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_histogram@algo-basic.html [250] Intel XE#653 https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [251] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html [252] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html [253] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-5/igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-dp-2.html [254] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html [255] Intel XE#651 https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [256] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html [257] Intel XE#656 https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [258] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte.html [259] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html [260] Intel XE#1401 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [261] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode.html [262] Intel XE#1745 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [263] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [264] Intel XE#1397 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [265] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode.html [266] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [267] Intel XE#2635 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [268] Intel XE#2597 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [269] INCOMPLETE https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_flip@flip-vs-suspend at d-hdmi-a3.html [270] INCOMPLETE https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_flip@flip-vs-suspend.html [271] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at b-dp4.html [272] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at b-dp4.html [273] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html [274] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html [275] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1.html [276] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-1/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1.html [277] Intel XE#1421 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [278] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-6/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html [279] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html [280] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-1/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html [281] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a6-dp4.html [282] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a6-dp4.html [283] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_flip@2x-blocking-wf_vblank at ac-dp2-hdmi-a3.html [284] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-5/igt at kms_flip@2x-blocking-wf_vblank at ac-dp2-hdmi-a3.html [285] Intel XE#1137 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [286] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-3/igt at kms_feature_discovery@dp-mst.html [287] Intel XE#1138 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [288] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_feature_discovery@display-4x.html [289] Intel XE#701 https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [290] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-6/igt at kms_feature_discovery@chamelium.html [291] Intel XE#3383 https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383 [292] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-1/igt at kms_display_modes@extended-mode-basic.html [293] Intel XE#3184 https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [294] DMESG-WARN https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_cursor_legacy@torture-move at all-pipes.html [295] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-433/igt at kms_cursor_legacy@torture-move at all-pipes.html [296] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [297] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [298] Intel XE#309 https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [299] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-7/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [300] Intel XE#323 https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [301] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [302] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [303] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_cursor_crc@cursor-random-max-size.html [304] Intel XE#308 https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [305] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_cursor_crc@cursor-onscreen-512x512.html [306] Intel XE#2321 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [307] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-2/igt at kms_cursor_crc@cursor-onscreen-512x170.html [308] Intel XE#1424 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [309] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-1/igt at kms_cursor_crc@cursor-offscreen-32x32.html [310] Intel XE#1188 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [311] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_content_protection@uevent.html [312] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_content_protection@lic-type-0 at pipe-a-dp-2.html [313] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_content_protection@legacy.html [314] Intel XE#307 https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [315] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at kms_content_protection@dp-mst-lic-type-0.html [316] Intel XE#373 https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [317] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-5/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html [318] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_chamelium_hpd@dp-hpd-fast.html [319] Intel XE#306 https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [320] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_chamelium_color@ctm-negative.html [321] Intel XE#1152 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [322] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at kms_cdclk@plane-scaling.html [323] INCOMPLETE https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html [324] Intel XE#787 https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [325] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html [326] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6.html [327] Intel XE#3862 https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [328] INCOMPLETE https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-b-edp-1.html [329] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-2/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-b-edp-1.html [330] Intel XE#2887 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [331] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [332] Intel XE#2907 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [333] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [334] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-8/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [335] Intel XE#367 https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [336] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-7/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [337] Intel XE#1512 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [338] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-4/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [339] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-463/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [340] Intel XE#610 https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [341] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html [342] Intel XE#1467 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [343] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-5/igt at kms_big_fb@yf-tiled-addfb.html [344] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-3/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html [345] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [346] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_big_fb@y-tiled-32bpp-rotate-90.html [347] Intel XE#316 https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [348] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html [349] Intel XE#1407 https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [350] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-4/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html [351] Intel XE#3279 https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [352] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-5/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html [353] Intel XE#873 https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [354] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-8/igt at kms_async_flips@invalid-async-flip.html [355] Intel XE#2550 https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [356] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-464/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html [357] Intel XE#911 https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [358] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-4/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [359] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-1/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [360] Intel XE#623 https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [361] SKIP https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [362] ABORT https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2.html [363] INCOMPLETE https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-5/igt at kms_vblank@query-forked-busy-hang.html [364] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-8/igt at kms_vblank@query-forked-busy-hang.html [365] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-bmg-1/igt at kms_pm_rpm@i2c.html [366] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-bmg-2/igt at kms_pm_rpm@i2c.html [367] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-dg2-435/igt at kms_pm_rpm@i2c.html [368] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-dg2-463/igt at kms_pm_rpm@i2c.html [369] FAIL https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/shard-lnl-5/igt at kms_fbcon_fbt@fbc-suspend.html [370] PASS https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8186/shard-lnl-6/igt at kms_fbcon_fbt@fbc-suspend.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Mon Jan 13 12:25:07 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Mon, 13 Jan 2025 13:25:07 +0100 Subject: [PATCH i-g-t] lib/igt_kmemleak: library to interact with kmemleak In-Reply-To: <20250109181027.90402-1-peter.senna@linux.intel.com> References: <20250109181027.90402-1-peter.senna@linux.intel.com> Message-ID: <20250113122507.73kgyxkf5qkncmjv@kamilkon-desk.igk.intel.com> Hi Peter, On 2025-01-09 at 19:10:27 +0100, Peter Senna Tschudin wrote: > Adds a simple library for interacting with kmemleak ispired by > 'tests/amdgpu/amd_mem_leak.c'. Also adds unit testing for the > library. > > To use the library include "igt_kmemleak.h" and: > 1. igt_kmemleak_init(NULL) /* Returns true if kmemleak is active */ > 2. igt_kmemleak_clear() > 3. /* Run your test */ > 4. igt_kmemleak_scan() > 5. if (igt_kmemleak_found_leaks()) > igt_kmemleak_cp_leaks_file(*dst) I have few small nits, see below. > > CC: stylon.wang at amd.com > CC: Rodrigo.Siqueira at amd.com> > CC: ramadevi.gandi at intel.com > CC: ryszard.knop at intel.com > CC: sameer.lattannavar at intel.com > CC: lucas.demarchi at intel.com > CC: jani.saarinen at intel.com > CC: katarzyna.piecielska at intel.com > CC: matthew.d.roper at intel.com > CC: gregory.f.germano at intel.com > CC: clinton.a.taylor at intel.com > CC: balasubramani.vivekanandan at intel.com > CC: jianshui.yu at intel.com > CC: jonathan.cavitt at intel.com > Signed-off-by: Peter Senna Tschudin > --- > lib/igt_kmemleak.c | 149 ++++++++++++++++++++ > lib/igt_kmemleak.h | 17 +++ > lib/meson.build | 1 + > lib/tests/igt_kmemleak.c | 289 +++++++++++++++++++++++++++++++++++++++ > lib/tests/meson.build | 1 + > 5 files changed, 457 insertions(+) > create mode 100644 lib/igt_kmemleak.c > create mode 100644 lib/igt_kmemleak.h > create mode 100644 lib/tests/igt_kmemleak.c > > diff --git a/lib/igt_kmemleak.c b/lib/igt_kmemleak.c > new file mode 100644 > index 000000000..c3f0f06a7 > --- /dev/null > +++ b/lib/igt_kmemleak.c > @@ -0,0 +1,149 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright ? 2024 Intel Corporation > + */ > + > +#include > +#include > +#include > +#include > +#include > + > +#include "igt_core.h" > +#include "igt_device_scan.h" > +#include "igt_kmemleak.h" > +#include "igt_kmod.h" > +#include "igt_list.h" > + > +/* We can change the path for unit testing, see igt_kmemleak_init() */ > +static char igt_kmemleak_file[256] = "/sys/kernel/debug/kmemleak"; > + > +/** > + * igt_kmemeak_init: > + * @igt_kmemleak_file: update the path to kmemleak file to enable unit testing > + * > + * Check if kmemleak is enabled in the kernel, if debugfs is mounted and > + * if kmemleak file is present and readable. > + * > + * Returns: true if kmemleak is enabled, false otherwise. > + */ > +bool igt_kmemleak_init(const char *unit_test_kmemleak_file) > +{ > + FILE *fp; > + > + if (unit_test_kmemleak_file) > + snprintf(igt_kmemleak_file, > + sizeof(igt_kmemleak_file), > + "%s", > + unit_test_kmemleak_file); > + > + fp = fopen(igt_kmemleak_file, "r"); > + if (!fp) > + return false; > + > + fclose(fp); Add newline before return. > + return true; > +} > + > +/** > + * igt_kmemeak_cmd: > + * @cmd: command to send to kmemleak > + * > + * Send a command to kmemleak. > + * > + * Returns: true if sending the command was successful, false otherwise. > + */ > +bool igt_kmemleak_cmd(const char *cmd) > +{ > + FILE *fp; > + size_t wlen; > + > + fp = fopen(igt_kmemleak_file, "r+"); > + if (!fp) > + return false; Add newline here. > + wlen = fwrite(cmd, 1, strlen(cmd), fp); > + fclose(fp); > + > + return wlen == strlen(cmd); > +} > + > +/** > + * igt_kmemeak_scan: > + * > + * Trigger an immediate scan on kmemleak. > + * > + * Returns: true if sending the command to scan was successful, false otherwise. > + */ > +bool igt_kmemleak_scan(void) > +{ > + return igt_kmemleak_cmd("scan"); > +} > + > +/** > + * igt_kmemeak_clear: > + * > + * Trigger an immediate clear on kmemleak. > + * > + * Returns: true if sending the command to clear was successful, false > + * otherwise. > + */ > +bool igt_kmemleak_clear(void) > +{ > + return igt_kmemleak_cmd("clear"); > +} > + > +/** > + * igt_kmemeak_found_leaks: > + * > + * Check if kmemleak found any leaks. > + * > + * Returns: true if kmemleak found any leaks, false otherwise. > + */ > +bool igt_kmemleak_found_leaks(void) > +{ > + FILE *fp; > + char buf[1]; > + size_t rlen; > + > + fp = fopen(igt_kmemleak_file, "r"); > + if (!fp) > + return false; > + > + rlen = fread(buf, 1, 1, fp); > + fclose(fp); > + > + return rlen == 1; > +} > + > +/** > + * igt_kmemeak_cp_leaks_file: > + * @dst: path of destination file including the file name > + * > + * Copy kmemleak file to dst. > + * > + * Returns: true if copy was successful, false otherwise > + */ > +bool igt_kmemleak_cp_leaks_file(const char *dst) > +{ > + FILE *src, *dest; > + char buf[1024]; > + size_t n; > + > + src = fopen(igt_kmemleak_file, "r"); > + if (!src) > + return false; > + > + dest = fopen(dst, "w"); > + if (!dest) { > + fclose(src); > + return false; > + } > + > + while ((n = fread(buf, 1, sizeof(buf), src)) > 0) > + fwrite(buf, 1, n, dest); > + > + fclose(dest); > + fclose(src); > + > + return true; > +} > diff --git a/lib/igt_kmemleak.h b/lib/igt_kmemleak.h > new file mode 100644 > index 000000000..c0c187847 > --- /dev/null > +++ b/lib/igt_kmemleak.h > @@ -0,0 +1,17 @@ > +/* SPDX-License-Identifier: MIT > + * Copyright ? 2024 Intel Corporation > + */ > + > +#ifndef IGT_KMEMLEAK_H > +#define IGT_KMEMLEAK_H > + > +#include > + > +bool igt_kmemleak_init(const char *unit_test_kmemleak_file); > +bool igt_kmemleak_cmd(const char *cmd); > +bool igt_kmemleak_scan(void); > +bool igt_kmemleak_clear(void); > +bool igt_kmemleak_found_leaks(void); > +bool igt_kmemleak_cp_leaks_file(const char *dst); > + > +#endif /* IGT_KMEMLEAK_H */ > diff --git a/lib/meson.build b/lib/meson.build > index 640513e6c..24423ef37 100644 > --- a/lib/meson.build > +++ b/lib/meson.build > @@ -96,6 +96,7 @@ lib_sources = [ > 'igt_dummyload.c', > 'igt_store.c', > 'uwildmat/uwildmat.c', > + 'igt_kmemleak.c', > 'igt_kmod.c', > 'igt_ktap.c', > 'igt_panfrost.c', > diff --git a/lib/tests/igt_kmemleak.c b/lib/tests/igt_kmemleak.c > new file mode 100644 > index 000000000..e683158a5 > --- /dev/null > +++ b/lib/tests/igt_kmemleak.c > @@ -0,0 +1,289 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright ? 2024 Intel Corporation > + */ > + > +#include > +#include > +#include > +#include > + > +#include "igt_core.h" > +#include "igt_kmemleak.h" > + > +const char *kmemleak_file_example = > +"unreferenced object 0xffff888102a2e638 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 00 00 00 00 00 00 00 00 0d 01 a2 00 00 00 00 00 ................\n" > +" f0 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" > +" backtrace (crc 2df71a7e):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2ed18 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 38 e6 a2 02 81 88 ff ff 0d 11 2d 00 00 00 00 00 8.........-.....\n" > +" f2 7c 03 00 00 c9 ff ff 58 ea a2 02 81 88 ff ff .|......X.......\n" > +" backtrace (crc ec2a8bdc):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2ea58 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 38 e6 a2 02 81 88 ff ff 0d 01 a0 00 00 00 00 00 8...............\n" > +" f6 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" > +" backtrace (crc f911c0d1):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e428 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 58 ea a2 02 81 88 ff ff 0d 01 35 00 00 00 00 00 X.........5.....\n" > +" fc 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" > +" backtrace (crc cb8aaffd):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e008 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 28 e4 a2 02 81 88 ff ff 0d 01 2d 00 00 00 00 00 (.........-.....\n" > +" fc 7c 03 00 00 c9 ff ff c8 e2 a2 02 81 88 ff ff .|..............\n" > +" backtrace (crc 7f883e78):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_get_next_namepath+0x1f5/0x390\n" > +" [] acpi_ps_parse_loop+0x4a5/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e2c8 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 28 e4 a2 02 81 88 ff ff 0d 01 73 00 00 00 00 00 (.........s.....\n" > +" 00 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" > +" backtrace (crc 338c016):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e378 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" c8 e2 a2 02 81 88 ff ff 0d 01 0d 00 00 00 00 00 ................\n" > +" 01 7d 03 00 00 c9 ff ff 98 e7 a2 02 81 88 ff ff .}..............\n" > +" backtrace (crc 665fb8a7):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e798 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 7c8 e2 a2 02 81 88 ff ff 0d 01 98 00 00 00 00 00 ................\n" > +" 1b 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" > +" backtrace (crc b7a23a1c):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170" > +"unreferenced object 0xffff888102a2e0b8 (size 80):\n" > +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" > +" hex dump (first 32 bytes):\n" > +" 98 e7 a2 02 81 88 ff ff 0d 01 2d 00 00 00 00 00 ..........-.....\n" > +" 1c 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" > +" backtrace (crc 14d67a9c):\n" > +" [] kmemleak_alloc+0x4b/0x80\n" > +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" > +" [] acpi_ps_alloc_op+0xdc/0xf0\n" > +" [] acpi_ps_create_op+0x1c0/0x400\n" > +" [] acpi_ps_parse_loop+0x16c/0xa60\n" > +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" > +" [] acpi_ps_execute_method+0x152/0x380\n" > +" [] acpi_ns_evaluate+0x31d/0x5e0\n" > +" [] acpi_evaluate_object+0x206/0x490\n" > +" [] __acpi_power_off.isra.0+0x22/0x70\n" > +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" > +" [] acpi_scan_init+0x119/0x290\n" > +" [] acpi_init+0x23a/0x590\n" > +" [] do_one_initcall+0x61/0x3d0\n" > +" [] kernel_init_freeable+0x3e2/0x680\n" > +" [] kernel_init+0x1b/0x170\n"; > + > +static unsigned long crc32_file(int fd) > +{ > + unsigned long crc; > + char buf[1024]; > + ssize_t n; > + > + crc = crc32(0, Z_NULL, 0); > + while ((n = read(fd, buf, sizeof(buf))) > 0) > + crc = crc32(crc, (const Bytef *)buf, n); > + > + return crc; > +} > + > +static void test_igt_kmemleak_cp_leaks_file(void) > +{ > + char src_file_path[256] = "/tmp/igt_kmemleak_test_XXXXXX"; > + char dst_file_path[256] = "/tmp/igt_kmemleak_dstfile_XXXXXX"; > + unsigned long crc_src, crc_dst; > + int fd; > + > + /* Emulate a kmemleak file */ > + fd = mkstemp(src_file_path); > + write(fd, kmemleak_file_example, strlen(kmemleak_file_example)); > + close(fd); > + > + /* Init the library */ > + igt_kmemleak_init(src_file_path); > + > + /* Copy the emulated kmemleak file */ > + igt_assert(igt_kmemleak_cp_leaks_file(dst_file_path)); > + > + /* Test that both files have the same content */ > + fd = open(src_file_path, O_RDONLY); > + crc_src = crc32_file(fd); > + close(fd); > + > + fd = open(dst_file_path, O_RDONLY); > + crc_dst = crc32_file(fd); > + close(fd); > + > + igt_assert(crc_src == crc_dst); > + Remove this empty line. > +} Rest looks good, Regards, Kamil > + > +static void test_kmemleak_file(bool test_write) > +{ > + char tmp_file_path[256] = "/tmp/igt_kmemleak_test_XXXXXX"; > + int fd; > + > + fd = mkstemp(tmp_file_path); > + igt_assert(fd >= 0); > + > + if (test_write) > + write(fd, kmemleak_file_example, strlen(kmemleak_file_example)); > + > + igt_assert(igt_kmemleak_init(tmp_file_path)); > +} > + > +static void test_empty_file(void) > +{ > + test_kmemleak_file(false); > + igt_assert(!igt_kmemleak_found_leaks()); > +} > + > +static void test_non_empty_file(void) > +{ > + test_kmemleak_file(true); > + igt_assert(igt_kmemleak_found_leaks()); > +} > + > +igt_simple_main > +{ > + test_empty_file(); > + test_non_empty_file(); > + test_igt_kmemleak_cp_leaks_file(); > +} > diff --git a/lib/tests/meson.build b/lib/tests/meson.build > index df8092638..bcbea9ba4 100644 > --- a/lib/tests/meson.build > +++ b/lib/tests/meson.build > @@ -15,6 +15,7 @@ lib_tests = [ > 'igt_ktap_parser', > 'igt_list_only', > 'igt_invalid_subtest_name', > + 'igt_kmemleak', > 'igt_nesting', > 'igt_no_exit', > 'igt_runnercomms_packets', > -- > 2.34.1 > From patchwork at emeril.freedesktop.org Mon Jan 13 12:54:07 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 13 Jan 2025 12:54:07 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_lib/igt=5Fkmemleak=3A_li?= =?utf-8?q?brary_to_interact_with_kmemleak_=28rev2=29?= In-Reply-To: <20250109181027.90402-1-peter.senna@linux.intel.com> References: <20250109181027.90402-1-peter.senna@linux.intel.com> Message-ID: <173677284723.3237056.1486075895877836651@b555e5b46a47> == Series Details == Series: lib/igt_kmemleak: library to interact with kmemleak (rev2) URL : https://patchwork.freedesktop.org/series/142673/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15934_full -> IGTPW_12421_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12421_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12421_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_12421/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12421_full: ### IGT changes ### #### Possible regressions #### * igt at gem_exec_suspend@basic-s3-devices at smem: - shard-mtlp: [PASS][1] -> [ABORT][2] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-5/igt at gem_exec_suspend@basic-s3-devices at smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-4/igt at gem_exec_suspend@basic-s3-devices at smem.html * igt at gem_exec_whisper@basic-contexts-priority: - shard-mtlp: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-1/igt at gem_exec_whisper@basic-contexts-priority.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-6/igt at gem_exec_whisper@basic-contexts-priority.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk1/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html #### Warnings #### * igt at gem_exec_big@single: - shard-tglu: [ABORT][6] ([i915#11713]) -> [ABORT][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-tglu-10/igt at gem_exec_big@single.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-10/igt at gem_exec_big@single.html Known issues ------------ Here are the changes found in IGTPW_12421_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#6230]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at api_intel_bb@crc32.html * igt at api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#8411]) +4 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at api_intel_bb@object-reloc-keep-cache.html * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8411]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at api_intel_bb@object-reloc-purge-cache.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8411]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at api_intel_bb@object-reloc-purge-cache.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#11078]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at device_reset@unbind-cold-reset-rebind.html - shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#11078]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-12/igt at device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#11078]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-3/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-hang at rcs0: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8414]) +6 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-1/igt at drm_fdinfo@busy-hang at rcs0.html * igt at drm_fdinfo@most-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8414]) +13 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-12/igt at drm_fdinfo@most-busy-check-all.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8414]) +40 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-13/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-6/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#13008]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at gem_ccs@large-ctrl-surf-copy.html - shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#13008]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#9323]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][24] ([i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-6/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][25] ([i915#12392] / [i915#7297]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-5/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-lmem0-lmem0.html * igt at gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][27] ([i915#6335]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-6/igt at gem_create@create-ext-cpu-access-sanity-check.html - shard-rkl: NOTRUN -> [SKIP][28] ([i915#6335]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-7/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#8562]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][30] ([i915#12353]) +1 other test incomplete [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk2/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#8555]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#8555]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-2/igt at gem_ctx_persistence@heartbeat-close.html * igt at gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#8555]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at gem_ctx_persistence@heartbeat-stop.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][34] ([i915#1099]) +7 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-snb5/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#280]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@reset-stress: - shard-dg1: NOTRUN -> [FAIL][36] ([i915#12543] / [i915#5784]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at gem_eio@reset-stress.html * igt at gem_eio@unwedge-stress: - shard-dg1: NOTRUN -> [FAIL][37] ([i915#12714] / [i915#5784]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4771]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at gem_exec_balancer@bonded-pair.html - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4771]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@full: - shard-mtlp: [PASS][40] -> [FAIL][41] ([i915#13364]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-6/igt at gem_exec_balancer@full.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-8/igt at gem_exec_balancer@full.html * igt at gem_exec_balancer@full-late: - shard-dg1: [PASS][42] -> [FAIL][43] ([i915#13364]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg1-14/igt at gem_exec_balancer@full-late.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-13/igt at gem_exec_balancer@full-late.html * igt at gem_exec_balancer@parallel-balancer: - shard-tglu: NOTRUN -> [SKIP][44] ([i915#4525]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-2/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4525]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4525]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-5/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_capture@capture-invisible: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#6334]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at gem_exec_capture@capture-invisible.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#6334]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#6344]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at gem_exec_capture@capture-recoverable.html - shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#6344]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at gem_exec_capture@capture-recoverable.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4812]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-12/igt at gem_exec_fence@submit.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4812]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-8/igt at gem_exec_fence@submit.html - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4812]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at gem_exec_fence@submit.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3539] / [i915#4852]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3539] / [i915#4852]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-12/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#5107]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-4/igt at gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][57] ([i915#5107]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-gtt-read: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#3281]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at gem_exec_reloc@basic-gtt-read.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#3281]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3281]) +21 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at gem_exec_reloc@basic-write-read-active.html * igt at gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4537] / [i915#4812]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at gem_exec_schedule@preempt-queue.html * igt at gem_exec_schedule@reorder-wide: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4537] / [i915#4812]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-2/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#7276]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at gem_exec_schedule@semaphore-power.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4860]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at gem_fence_thrash@bo-write-verify-y.html * igt at gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][65] ([i915#2190]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk4/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-8/igt at gem_lmem_swapping@heavy-random.html - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4613]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-1/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#4613]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@massive: - shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#4613]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at gem_lmem_swapping@massive.html * igt at gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][70] ([i915#4613]) +6 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk3/igt at gem_lmem_swapping@random-engines.html * igt at gem_mmap@basic-small-bo: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4083]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-8/igt at gem_mmap@basic-small-bo.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4077]) +17 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@medium-copy-odd: - shard-rkl: [PASS][73] -> [DMESG-WARN][74] ([i915#12917] / [i915#12964]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-5/igt at gem_mmap_gtt@medium-copy-odd.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-7/igt at gem_mmap_gtt@medium-copy-odd.html * igt at gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4083]) +5 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at gem_mmap_wc@invalid-flags.html * igt at gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4083]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at gem_mmap_wc@read.html * igt at gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at gem_partial_pwrite_pread@reads-snoop.html * igt at gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][78] ([i915#2658]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3282]) +8 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at gem_pread@snoop.html - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3282]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-3/igt at gem_pread@snoop.html * igt at gem_pxp@create-valid-protected-context: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#4270]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-5/igt at gem_pxp@create-valid-protected-context.html * igt at gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4270]) +6 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][83] ([i915#12917] / [i915#12964]) +3 other tests timeout [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#13398]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at gem_pxp@hw-rejects-pxp-context.html - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#13398]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-5/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4270]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at gem_pxp@reject-modify-context-protection-on.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#5190] / [i915#8428]) +10 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#8428]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-5/igt at gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt at gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4079]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at gem_render_tiled_blits@basic.html * igt at gem_tiled_partial_pwrite_pread@writes: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#3282]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at gem_tiled_partial_pwrite_pread@writes.html - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4077]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at gem_tiled_partial_pwrite_pread@writes.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][92] ([i915#13263] / [i915#13449]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk4/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-6/igt at gem_userptr_blits@access-control.html - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at gem_userptr_blits@access-control.html - shard-tglu: NOTRUN -> [SKIP][95] ([i915#3297]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-9/igt at gem_userptr_blits@access-control.html * igt at gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#3297]) +4 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-7/igt at gem_userptr_blits@coherency-unsync.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297]) +4 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at gem_userptr_blits@create-destroy-unsync.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_12421/shard-dg2-3/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#4880]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#3297] / [i915#4958]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#3297]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][102] +21 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#2856]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at gen9_exec_parse@basic-rejected-ctx-param.html * igt at gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#2527]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-oversize: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#2527] / [i915#2856]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#2527]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-13/igt at gen9_exec_parse@bb-start-cmd.html - shard-tglu: NOTRUN -> [SKIP][107] ([i915#2527] / [i915#2856]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-2/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#2856]) +5 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/igt at gen9_exec_parse@unaligned-access.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [ABORT][109] ([i915#9820]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#8399]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at i915_pm_freq_api@freq-basic-api.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#6590]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [WARN][112] ([i915#2681]) +4 other tests warn [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-9/igt at i915_pm_rc6_residency@rc6-idle.html * igt at i915_pm_rpm@gem-mmap-type: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#13328]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at i915_pm_rpm@gem-mmap-type.html * igt at i915_pm_rpm@system-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][114] ([i915#12797]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk3/igt at i915_pm_rpm@system-suspend.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#11681] / [i915#6621]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at i915_pm_rps@min-max-config-idle.html - shard-dg1: NOTRUN -> [SKIP][116] ([i915#11681] / [i915#6621]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at i915_pm_rps@min-max-config-idle.html - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#11681] / [i915#6621]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-3/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#11681]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at i915_pm_rps@thresholds.html * igt at i915_power@sanity: - shard-mtlp: [PASS][119] -> [SKIP][120] ([i915#7984]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-7/igt at i915_power@sanity.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at i915_power@sanity.html * igt at i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#6245]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][122] ([i915#6245]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-6/igt at i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][123] ([i915#6245]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at i915_query@hwconfig_table.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][124] ([i915#4817]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk7/igt at i915_suspend@forcewake.html * igt at intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#7707]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4212]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4212]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_addfb_basic@tile-pitch-mismatch.html - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#4212]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-2/igt at kms_addfb_basic@tile-pitch-mismatch.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][129] ([i915#8709]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#8709]) +11 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/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@async-flip-with-page-flip-events at pipe-d-hdmi-a-1-y-rc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#8709]) +7 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#9531]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#1769] / [i915#3555]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/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][134] ([i915#5286]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_big_fb@4-tiled-8bpp-rotate-180.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5286]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#5286]) +5 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#5286]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#5286]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-3/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt at kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#3638]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#3638]) +4 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_big_fb@y-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#5190]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][142] +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#4538] / [i915#5190]) +16 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-13/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6187]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][146] +25 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#6095]) +44 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-aux-stride-y-tiled-ccs at pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#6095]) +44 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-3/igt at kms_ccs@bad-aux-stride-y-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#12313]) +6 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][150] ([i915#12313]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][151] ([i915#12313]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-7/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#10307] / [i915#6095]) +163 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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@ccs-on-another-bo-y-tiled-gen12-rc-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_12421/shard-mtlp-7/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][154] +536 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2.html * igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs at pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#6095]) +169 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs at pipe-a-hdmi-a-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#6095]) +86 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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-mtl-mc-ccs at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#6095]) +21 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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: - shard-glk: NOTRUN -> [INCOMPLETE][158] ([i915#12796]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk1/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#4423] / [i915#6095]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-4.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3742]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_edid@hdmi-edid-read: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +4 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_chamelium_edid@hdmi-edid-read.html - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at kms_chamelium_edid@hdmi-edid-read.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +16 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +6 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-10/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +12 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#3299]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-12/igt at kms_content_protection@dp-mst-type-1.html - shard-tglu: NOTRUN -> [SKIP][170] ([i915#3116] / [i915#3299]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-3/igt at kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3299]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at kms_content_protection@dp-mst-type-1.html - shard-dg2: NOTRUN -> [SKIP][172] ([i915#3299]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#9424]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#7116]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#7118] / [i915#7162] / [i915#9424]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#6944] / [i915#9424]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-1/igt at kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][177] ([i915#7118] / [i915#9424]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][178] ([i915#7116] / [i915#9424]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-13/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-256x256: - shard-rkl: NOTRUN -> [DMESG-WARN][179] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-5/igt at kms_cursor_crc@cursor-offscreen-256x256.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#13049]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#13049]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#13049]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-6/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#9809]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-8/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#13046] / [i915#5354]) +7 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-snb: [PASS][185] -> [SKIP][186] +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-snb7/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-snb2/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#4103]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [DMESG-WARN][188] ([i915#12964]) +15 other tests dmesg-warn [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_cursor_legacy@basic-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#9067]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-4/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#4103] / [i915#4213]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#9723]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#3555]) +8 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#8588]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2: [PASS][194] -> [SKIP][195] ([i915#3555]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg2-10/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-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][196] ([i915#3804]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2.html * igt at kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#1257]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_dp_aux_dev.html - shard-rkl: NOTRUN -> [SKIP][198] ([i915#1257]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-6/igt at kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#1257]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-13/igt at kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][200] ([i915#1257]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-2/igt at kms_dp_aux_dev.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#8812]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#8812]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#3840] / [i915#9688]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][204] ([i915#3840]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3840]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][206] ([i915#3840]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-8/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3840]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-8/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#3840]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3469]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-6/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#3955]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at kms_fbcon_fbt@psr-suspend.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_12421/shard-dg2-1/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#1839]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#1839]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#658]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-4/igt at kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#658]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#658]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_feature_discovery@psr2.html * igt at kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#4881]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-absolute-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#3637]) +4 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_flip@2x-absolute-wf_vblank.html * igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1: - shard-snb: [PASS][219] -> [FAIL][220] ([i915#11989]) +1 other test fail [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-snb5/igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-snb7/igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#9934]) +11 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#8381]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][223] ([i915#12745] / [i915#1982] / [i915#4839]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk5/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: NOTRUN -> [INCOMPLETE][224] ([i915#1982] / [i915#4839]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk5/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3637]) +3 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-3/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#3637]) +7 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-4/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#9934]) +9 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#9934]) +5 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [FAIL][229] ([i915#11989]) +2 other tests fail [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-5/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html - shard-mtlp: [PASS][230] -> [FAIL][231] ([i915#11989]) +1 other test fail [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-3/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-4/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-glk: [PASS][232] -> [DMESG-WARN][233] ([i915#118] / [i915#12314]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-glk5/igt at kms_flip@flip-vs-blocking-wf-vblank.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk8/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1: - shard-glk: [PASS][234] -> [DMESG-WARN][235] ([i915#118]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-glk5/igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk8/igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1.html * igt at kms_flip@flip-vs-suspend at d-hdmi-a4: - shard-dg1: [PASS][236] -> [DMESG-WARN][237] ([i915#4423]) +1 other test dmesg-warn [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg1-18/igt at kms_flip@flip-vs-suspend at d-hdmi-a4.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_flip@flip-vs-suspend at d-hdmi-a4.html * igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1: - shard-tglu: [PASS][238] -> [FAIL][239] ([i915#11989]) +6 other tests fail [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-tglu-8/igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-8/igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check: - shard-rkl: [PASS][240] -> [FAIL][241] ([i915#11989]) +1 other test fail [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-5/igt at kms_flip@plain-flip-ts-check.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at kms_flip@plain-flip-ts-check.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#2587] / [i915#2672]) +4 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-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-downscaling: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555]) +5 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#2587] / [i915#2672] / [i915#3555]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-tglu: NOTRUN -> [SKIP][245] ([i915#2587] / [i915#2672] / [i915#3555]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-dg2: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#2672] / [i915#8813]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#2587] / [i915#2672]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#2672]) +7 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-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_12421/shard-tglu-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555]) +2 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-12/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-rkl: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#3555]) +6 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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-rkl: NOTRUN -> [SKIP][255] ([i915#2672]) +6 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode.html - shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#2587] / [i915#2672]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-rkl: [PASS][257] -> [DMESG-WARN][258] ([i915#12964]) +34 other tests dmesg-warn [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-6/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-dg2: [PASS][259] -> [FAIL][260] ([i915#6880]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#5354]) +56 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#1825]) +6 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][263] ([i915#10056] / [i915#13353]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk2/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][264] +66 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#10433] / [i915#3458]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#3023]) +33 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#8708]) +24 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][268] +22 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#8708]) +9 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#5439]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][271] ([i915#5439]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-10/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#1825]) +36 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#3458]) +33 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#3458]) +15 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt at kms_hdmi_inject@inject-audio: - shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#13030]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_hdmi_inject@inject-audio.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#12713]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8228]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-swap: - shard-dg2: [PASS][278] -> [SKIP][279] ([i915#3555] / [i915#8228]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg2-10/igt at kms_hdr@static-swap.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8228]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at kms_hdr@static-toggle.html - shard-dg1: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8228]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-6/igt at kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#8228]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-8/igt at kms_hdr@static-toggle.html * igt at kms_histogram@algo-basic: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#13389]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at kms_histogram@algo-basic.html * igt at kms_histogram@global-basic: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#13388]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_histogram@global-basic.html - shard-dg1: NOTRUN -> [SKIP][287] ([i915#13388]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_histogram@global-basic.html * igt at kms_histogram@global-color: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#13388]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#12388]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#12339]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#10656]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-5/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][292] ([i915#10656]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#10656]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-5/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][294] ([i915#10656]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#12388]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#12394]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][297] ([i915#12394]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-9/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#6301]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][299] ([i915#6301]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-tglu-1: NOTRUN -> [SKIP][300] +53 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][301] ([i915#12756] / [i915#13409] / [i915#13476]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk9/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][302] ([i915#12756]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk9/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.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_12421/shard-glk6/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_12421/shard-glk6/igt at kms_plane_alpha_blend@alpha-transparent-fb at pipe-a-hdmi-a-1.html * igt at kms_plane_lowres@tiling-4: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at kms_plane_lowres@tiling-4.html * igt at kms_plane_lowres@tiling-4 at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#11614] / [i915#3582]) +3 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at kms_plane_lowres@tiling-4 at pipe-b-edp-1.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#3555] / [i915#8821]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#3555]) +7 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-6/igt at kms_plane_multiple@tiling-yf.html - shard-dg1: NOTRUN -> [SKIP][309] ([i915#3555]) +6 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-13/igt at kms_plane_multiple@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#8806]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-1/igt at kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][311] ([i915#3555] / [i915#8806]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-tglu: NOTRUN -> [FAIL][312] ([i915#8292]) +1 other test fail [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-4/igt at kms_plane_scaling@intel-max-src-size.html - shard-dg2: NOTRUN -> [SKIP][313] ([i915#6953] / [i915#9423]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#12247]) +8 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#12247] / [i915#9423]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-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-modifiers: - shard-mtlp: NOTRUN -> [SKIP][316] ([i915#12247]) +4 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-8/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][317] ([i915#12247] / [i915#6953]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/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][318] ([i915#12247]) +9 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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-dg2: NOTRUN -> [SKIP][319] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][320] ([i915#12247] / [i915#6953]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][321] ([i915#12247] / [i915#6953]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-10/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][322] ([i915#12247]) +4 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-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-25-upscale-factor-0-25 at pipe-d: - shard-tglu: NOTRUN -> [SKIP][323] ([i915#12247]) +8 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-10/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 at pipe-c: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#12247]) +11 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#12343]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#5354]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][327] ([i915#9812]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-7/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-tglu-1: NOTRUN -> [SKIP][328] ([i915#9685]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#13441]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-6/igt at kms_pm_dc@dc5-dpms-negative.html * igt at kms_pm_dc@dc5-retention-flops: - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#3828]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-2/igt at kms_pm_dc@dc5-retention-flops.html - shard-dg2: NOTRUN -> [SKIP][331] ([i915#3828]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][332] ([i915#3828]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-12/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#9685]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#9340]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-5/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#8430]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#9519]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][337] -> [SKIP][338] ([i915#9519]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-5/igt at kms_pm_rpm@dpms-non-lpsp.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][339] ([i915#9519]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][340] ([i915#9519]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-4/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#9519]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][342] ([i915#10553]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk8/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#6524] / [i915#6805]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_prime@basic-crc-vgem.html * igt at kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][344] ([i915#6524]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][345] ([i915#11520]) +14 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-snb5/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#12316]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-4/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-tglu-1: NOTRUN -> [SKIP][347] ([i915#11520]) +4 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#11520]) +6 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-10/igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][349] ([i915#11520]) +11 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-5/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][350] ([i915#11520]) +19 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk3/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][351] ([i915#11520]) +5 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#11520]) +17 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#9683]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#9683]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-sprite-render: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#9732]) +11 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_psr@fbc-pr-sprite-render.html * igt at kms_psr@pr-cursor-blt: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#9688]) +8 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-8/igt at kms_psr@pr-cursor-blt.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#1072] / [i915#9732]) +36 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr-primary-render: - shard-tglu: NOTRUN -> [SKIP][358] ([i915#9732]) +13 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-9/igt at kms_psr@psr-primary-render.html * igt at kms_psr@psr2-sprite-blt: - shard-dg1: NOTRUN -> [SKIP][359] ([i915#1072] / [i915#9732]) +19 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at kms_psr@psr2-sprite-blt.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][360] ([i915#1072] / [i915#9732]) +28 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at kms_psr@psr2-suspend.html * igt at kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#4235]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at kms_rotation_crc@exhaust-fences.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][362] ([i915#5289]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][363] ([i915#5289]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][364] ([i915#12755]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-5/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][365] ([i915#5289]) +2 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#12755]) +2 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/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][367] ([i915#3555]) +7 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-3/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_scaling_modes@scaling-mode-none: - shard-tglu-1: NOTRUN -> [SKIP][368] ([i915#3555]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_universal_plane@cursor-fb-leak at pipe-d-edp-1: - shard-mtlp: [PASS][369] -> [FAIL][370] ([i915#9196]) +1 other test fail [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-8/igt at kms_universal_plane@cursor-fb-leak at pipe-d-edp-1.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-3/igt at kms_universal_plane@cursor-fb-leak at pipe-d-edp-1.html * igt at kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: [PASS][371] -> [DMESG-FAIL][372] ([i915#12964]) +1 other test dmesg-fail [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-7/igt at kms_vblank@ts-continuation-dpms-suspend.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at kms_vblank@ts-continuation-dpms-suspend.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][373] ([i915#12276]) +1 other test incomplete [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk6/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#11920]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#3555] / [i915#9906]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][376] ([i915#3555] / [i915#9906]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][377] ([i915#9906]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-tglu-1: NOTRUN -> [SKIP][378] ([i915#9906]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][379] ([i915#9906]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-7/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#2437]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_writeback@writeback-check-output.html - shard-rkl: NOTRUN -> [SKIP][381] ([i915#2437]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-6/igt at kms_writeback@writeback-check-output.html - shard-tglu: NOTRUN -> [SKIP][382] ([i915#2437]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-2/igt at kms_writeback@writeback-check-output.html - shard-mtlp: NOTRUN -> [SKIP][383] ([i915#2437]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-1/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][384] ([i915#2437] / [i915#9412]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_writeback@writeback-check-output-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][385] ([i915#2437] / [i915#9412]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-8/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][386] ([i915#2437] / [i915#9412]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-7/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-tglu-1: NOTRUN -> [SKIP][387] ([i915#2437]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_writeback@writeback-invalid-parameters.html - shard-dg1: NOTRUN -> [SKIP][388] ([i915#2437]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][389] ([i915#2437]) +1 other test skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk9/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#2436]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#2434]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at perf@mi-rpc.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][392] +491 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-snb2/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@frequency at gt0: - shard-dg2: NOTRUN -> [FAIL][393] ([i915#12549] / [i915#6806]) +1 other test fail [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][394] ([i915#8516]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][395] ([i915#13356]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk8/igt at perf_pmu@rc6-suspend.html * igt at perf_pmu@render-node-busy-idle: - shard-mtlp: [PASS][396] -> [FAIL][397] ([i915#4349]) +1 other test fail [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-2/igt at perf_pmu@render-node-busy-idle.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-6/igt at perf_pmu@render-node-busy-idle.html * igt at prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][398] ([i915#3708] / [i915#4077]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at prime_vgem@basic-gtt.html - shard-dg1: NOTRUN -> [SKIP][399] ([i915#3708] / [i915#4077]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][400] ([i915#3708]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][401] ([i915#3708]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-3/igt at prime_vgem@fence-write-hang.html - shard-dg2: NOTRUN -> [SKIP][402] ([i915#3708]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at prime_vgem@fence-write-hang.html - shard-rkl: NOTRUN -> [SKIP][403] ([i915#3708]) +1 other test skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][404] ([i915#9917]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][405] ([i915#12910]) +19 other tests fail [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][406] ([i915#9917]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/igt at sriov_basic@enable-vfs-autoprobe-on.html * igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-random: - shard-tglu: NOTRUN -> [FAIL][407] ([i915#12910]) +8 other tests fail [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-3/igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-random.html #### Possible fixes #### * igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][408] ([i915#7297]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg2-4/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-smem-lmem0.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-5/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-smem-lmem0.html * igt at gem_exec_suspend@basic-s0 at smem: - shard-dg2: [INCOMPLETE][410] ([i915#11441] / [i915#13304]) -> [PASS][411] +1 other test pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg2-1/igt at gem_exec_suspend@basic-s0 at smem.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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: [ABORT][412] ([i915#7975] / [i915#8213]) -> [PASS][413] +1 other test pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: [INCOMPLETE][414] ([i915#12797]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-glk1/igt at i915_pm_rpm@system-suspend-execbuf.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk7/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [DMESG-FAIL][416] ([i915#13393]) -> [PASS][417] +1 other test pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-3/igt at i915_selftest@live at workarounds.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-3/igt at i915_selftest@live at workarounds.html * igt at i915_suspend@fence-restore-untiled: - shard-glk: [INCOMPLETE][418] ([i915#4817]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-glk6/igt at i915_suspend@fence-restore-untiled.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk8/igt at i915_suspend@fence-restore-untiled.html * igt at kms_cursor_legacy@cursora-vs-flipa-atomic-transitions: - shard-rkl: [DMESG-WARN][420] ([i915#12964]) -> [PASS][421] +29 other tests pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-7/igt at kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: [FAIL][422] ([i915#2346]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1: - shard-snb: [FAIL][424] ([i915#11989]) -> [PASS][425] +1 other test pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-snb2/igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-snb5/igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [DMESG-WARN][426] ([i915#12917] / [i915#12964]) -> [PASS][427] +1 other test pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-1/igt at kms_flip@absolute-wf_vblank-interruptible.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at kms_flip@absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-rkl: [DMESG-FAIL][428] ([i915#12964]) -> [PASS][429] +1 other test pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-3/igt at kms_flip@flip-vs-suspend.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1: - shard-tglu: [FAIL][430] ([i915#11989]) -> [PASS][431] +1 other test pass [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-tglu-9/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-7/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html * igt at kms_getfb@getfb2-accept-ccs: - shard-dg1: [DMESG-WARN][432] ([ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From pravalika.gurram at intel.com Mon Jan 13 13:13:46 2025 From: pravalika.gurram at intel.com (Gurram, Pravalika) Date: Mon, 13 Jan 2025 13:13:46 +0000 Subject: [PATCH v2] tests/intel: Enhance the wedged_mode sysfs support In-Reply-To: <20250110113311.jyeuekjsaqd4m7sr@kamilkon-desk.igk.intel.com> References: <20250108062826.908027-1-pravalika.gurram@intel.com> <20250110113311.jyeuekjsaqd4m7sr@kamilkon-desk.igk.intel.com> Message-ID: > -----Original Message----- > From: Kamil Konieczny > Sent: Friday, January 10, 2025 5:03 PM > To: Gurram, Pravalika > Cc: igt-dev at lists.freedesktop.org; Cavitt, Jonathan > > Subject: Re: [PATCH v2] tests/intel: Enhance the wedged_mode sysfs support > > Hi Pravalika, > On 2025-01-08 at 11:58:26 +0530, Pravalika Gurram wrote: > > 1. Added support to read the wedged_mode sysfs 2. Handle the > > -ETIMEDOUT return value during forcewake_all sysfs open > > How is testing forcewake related to wedged? imho this should be separate > patch, see also below. > > > > > Signed-off-by: Pravalika Gurram > > Reviewed-by: Jonathan Cavitt > > --- > > tests/intel/xe_debugfs.c | 2 +- > > tests/intel/xe_wedged.c | 12 ++++++++++++ > > 2 files changed, 13 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); > > Please drop this change, that function return -1 in case of error, if you have a > report that it is not please send this in separate patch. > This changes got pushed by mistake will remove from patch. > > close(handle); > > } > > > > diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c index > > 613d571b4..844ab2809 100644 > > --- a/tests/intel/xe_wedged.c > > +++ b/tests/intel/xe_wedged.c > > @@ -203,11 +203,16 @@ simple_hang(int fd, struct drm_xe_sync *sync) > > * SUBTEST: wedged-mode-toggle > > * Description: Test wedged.mode=1 after testing wedged.mode=2 > > */ > > +/** > > + * SUBTEST: basic-wedged-read > > + * Description: Read wedged debugfs > > + */ > > 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); > > @@ -279,6 +284,13 @@ igt_main > > igt_assert_eq(simple_ioctl(fd), 0); > > } > > > > + igt_subtest_f("basic-wedged-read") { > > + igt_require(igt_debugfs_exists(fd, "wedged_mode", > O_RDONLY)); > > + > > + igt_debugfs_read(fd, "wedged_mode", str); > > + igt_assert_f(str[0] != '\0', "Failed to read wedged_mode from > > +debugfs!\n"); > > Is this correct? Why not using > ret = igt_debugfs_read(fd, "wedged_mode", str); and assert on > ret <= 0 > > Regards, > Kamil > Since igt_debugfs_read is wraper for __igt_debugfs_read. #define igt_debugfs_read(fd, filename, buf) \ __igt_debugfs_read(fd, (filename), (buf), sizeof(buf)) > > > + } > > + > > igt_fixture { > > if (igt_debugfs_exists(fd, "fail_gt_reset/probability", O_RDWR)) > { > > igt_debugfs_write(fd, "fail_gt_reset/probability", "0"); > > -- > > 2.34.1 > > From pravalika.gurram at intel.com Mon Jan 13 13:45:58 2025 From: pravalika.gurram at intel.com (Pravalika Gurram) Date: Mon, 13 Jan 2025 19:15:58 +0530 Subject: [PATCH v2] tests/xe_debugfs: Improve test_gt subtest Message-ID: <20250113134558.947544-1-pravalika.gurram@intel.com> Read the debugfs entries in the loop to improve the readability. Added library function to check whether the debugfs is a directory or not. Signed-off-by: Pravalika Gurram --- lib/igt_debugfs.c | 27 +++++++++++++ lib/igt_debugfs.h | 1 + tests/intel/xe_debugfs.c | 82 ++++++---------------------------------- 3 files changed, 40 insertions(+), 70 deletions(-) diff --git a/lib/igt_debugfs.c b/lib/igt_debugfs.c index f4f749e30..cd604e7c6 100644 --- a/lib/igt_debugfs.c +++ b/lib/igt_debugfs.c @@ -376,6 +376,33 @@ igt_debugfs_gt_open(int device, unsigned int gt, const char *filename, int mode) return ret; } +/** + * igt_debugfs_is_dir: + * @drm_fd: fd of the device + * @name: name of the debugfs node to check + * @gt: gt instance number + * + * This helps to find the debugfs file is a directory or not + * + * Returns: + * true if the debugfs is a directory + */ +bool igt_debugfs_is_dir(int drm_fd, const char *name, int gt_id) +{ + char path[128]; + struct stat st; + + if (fstat(drm_fd, &st) != 0) + return false; + + snprintf(path, sizeof(path), "/sys/kernel/debug/dri/%d/gt%d/%s", + minor(st.st_rdev), gt_id, name); + if (!stat(path, &st) && S_ISDIR(st.st_mode)) + return true; + + return false; +} + /** * igt_debugfs_simple_read: * @dir: fd of the debugfs directory diff --git a/lib/igt_debugfs.h b/lib/igt_debugfs.h index 3e6194ade..f4044d545 100644 --- a/lib/igt_debugfs.h +++ b/lib/igt_debugfs.h @@ -39,6 +39,7 @@ int igt_debugfs_connector_dir(int device, char *conn_name, int mode); int igt_debugfs_pipe_dir(int device, int pipe, int mode); int igt_debugfs_open(int fd, const char *filename, int mode); +bool igt_debugfs_is_dir(int drm_fd, const char *name, int gt_id); bool igt_debugfs_exists(int fd, const char *filename, int mode); void __igt_debugfs_read(int fd, const char *filename, char *buf, int size); void __igt_debugfs_write(int fd, const char *filename, const char *buf, int size); diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c index bcbb5036a..c653daae4 100644 --- a/tests/intel/xe_debugfs.c +++ b/tests/intel/xe_debugfs.c @@ -180,77 +180,19 @@ test_gt(int fd, int gt_id) // "guc_ct_selftest" }; - sprintf(name, "gt%d/hw_engines", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/sa_info", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/steering", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/topology", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/pat", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/mocs", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/ggtt", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/register-save-restore", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/workarounds", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/default_lrc_rcs", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/default_lrc_ccs", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/default_lrc_bcs", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/default_lrc_vecs", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/default_lrc_vcs", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/hwconfig", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/uc/guc_info", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); - - sprintf(name, "gt%d/uc/huc_info", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); + for (int i = 0; i < ARRAY_SIZE(expected_files); i++) { + sprintf(name, "gt%d/%s", gt_id, expected_files[i]); + igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); + if (igt_debugfs_is_dir(fd, expected_files[i], gt_id)) + continue; + igt_debugfs_dump(fd, name); + } - sprintf(name, "gt%d/uc/guc_log", gt_id); - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); - igt_debugfs_dump(fd, name); + for (int i = 0; i < ARRAY_SIZE(expected_files_uc); i++) { + sprintf(name, "gt%d/uc/%s", gt_id, expected_files_uc[i]); + igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); + igt_debugfs_dump(fd, name); + } sprintf(name, "/gt%d", gt_id); validate_entries(fd, name, expected_files, ARRAY_SIZE(expected_files)); -- 2.34.1 From pravalika.gurram at intel.com Mon Jan 13 13:51:03 2025 From: pravalika.gurram at intel.com (Pravalika Gurram) Date: Mon, 13 Jan 2025 19:21:03 +0530 Subject: [PATCH v3] tests/intel: Enhance the wedged_mode sysfs support Message-ID: <20250113135103.947823-1-pravalika.gurram@intel.com> Added support to read the wedged_mode sysfs Reviewed-by: Jonathan Cavitt Signed-off-by: Pravalika Gurram --- tests/intel/xe_wedged.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c index 613d571b4..844ab2809 100644 --- a/tests/intel/xe_wedged.c +++ b/tests/intel/xe_wedged.c @@ -203,11 +203,16 @@ simple_hang(int fd, struct drm_xe_sync *sync) * SUBTEST: wedged-mode-toggle * Description: Test wedged.mode=1 after testing wedged.mode=2 */ +/** + * SUBTEST: basic-wedged-read + * Description: Read wedged debugfs + */ 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); @@ -279,6 +284,13 @@ igt_main igt_assert_eq(simple_ioctl(fd), 0); } + igt_subtest_f("basic-wedged-read") { + igt_require(igt_debugfs_exists(fd, "wedged_mode", O_RDONLY)); + + igt_debugfs_read(fd, "wedged_mode", str); + igt_assert_f(str[0] != '\0', "Failed to read wedged_mode from debugfs!\n"); + } + igt_fixture { if (igt_debugfs_exists(fd, "fail_gt_reset/probability", O_RDWR)) { igt_debugfs_write(fd, "fail_gt_reset/probability", "0"); -- 2.34.1 From zhanjun.dong at intel.com Mon Jan 13 14:47:52 2025 From: zhanjun.dong at intel.com (Dong, Zhanjun) Date: Mon, 13 Jan 2025 09:47:52 -0500 Subject: =?UTF-8?Q?Re=3A_=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_tests/inte?= =?UTF-8?Q?l/xe=5Fexec=5Fcapture=3A_Add_xe=5Fexec=5Fcapture_test_=28rev10=29?= In-Reply-To: <173638721304.1474787.12996179438277855344@b555e5b46a47> References: <20250109004403.58162-1-zhanjun.dong@intel.com> <173638721304.1474787.12996179438277855344@b555e5b46a47> Message-ID: My change is to add xe_exec_capture test, all i915 BAT failures is not related to my changes. Regards, Zhanjun Dong On 2025-01-08 8:46 p.m., Patchwork wrote: > *Patch Details* > *Series:* tests/intel/xe_exec_capture: Add xe_exec_capture test (rev10) > *URL:* https://patchwork.freedesktop.org/series/140007/ patchwork.freedesktop.org/series/140007/> > *State:* failure > *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12407/ > index.html > > > CI Bug Log - changes from IGT_8182 -> IGTPW_12407 > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_12407 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12407, 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_12407/ > index.html > > > Participating hosts (38 -> 37) > > Missing (1): fi-snb-2520m > > > Possible new issues > > Here are the unknown changes that may have been introduced in IGTPW_12407: > > > IGT changes > > > Possible regressions > > * igt at i915_pm_rpm@module-reload: > o bat-rpls-4: PASS IGT_8182/bat-rpls-4/igt at i915_pm_rpm@module-reload.html> -> > DMESG-WARN IGTPW_12407/bat-rpls-4/igt at i915_pm_rpm@module-reload.html> > > > Known issues > > Here are the changes found in IGTPW_12407 that come from known issues: > > > IGT changes > > > Issues hit > > * igt at i915_selftest@live at workarounds: > o bat-arlh-2: PASS IGT_8182/bat-arlh-2/igt at i915_selftest@live at workarounds.html> -> > DMESG-FAIL IGTPW_12407/bat-arlh-2/igt at i915_selftest@live at workarounds.html> > (i915#13393 issues/13393>) +1 other test dmesg-fail > > > Possible fixes > > * igt at i915_selftest@live at workarounds: > o {bat-mtlp-9}: DMESG-FAIL tip/IGT_8182/bat-mtlp-9/igt at i915_selftest@live at workarounds.html> > (i915#13393 issues/13393>) -> PASS tip/IGTPW_12407/bat-mtlp-9/igt at i915_selftest@live at workarounds.html> > o {bat-arls-6}: DMESG-FAIL tip/IGT_8182/bat-arls-6/igt at i915_selftest@live at workarounds.html> > (i915#13393 issues/13393>) -> PASS tip/IGTPW_12407/bat-arls-6/ > igt at i915_selftest@live at workarounds.html> +1 other test pass > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_8182 -> IGTPW_12407 > * Linux: CI_DRM_15924 -> CI_DRM_15927 > > CI-20190529: 20190529 > CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git:// > anongit.freedesktop.org/gfx-ci/linux > CI_DRM_15927: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a @ git:// > anongit.freedesktop.org/gfx-ci/linux > IGTPW_12407: 0afa7b205dd6a755ad29c432e9bcca2d0d552917 @ https:// > gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https:// > gitlab.freedesktop.org/drm/igt-gpu-tools.git > From zhanjun.dong at intel.com Mon Jan 13 14:49:11 2025 From: zhanjun.dong at intel.com (Dong, Zhanjun) Date: Mon, 13 Jan 2025 09:49:11 -0500 Subject: =?UTF-8?Q?Re=3A_=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel?= =?UTF-8?Q?/xe=5Fexec=5Fcapture=3A_Add_xe=5Fexec=5Fcapture_test_=28rev10=29?= In-Reply-To: <173657326155.2189926.14980677364995391392@b555e5b46a47> References: <20250109004403.58162-1-zhanjun.dong@intel.com> <173657326155.2189926.14980677364995391392@b555e5b46a47> Message-ID: <1a0fdf52-375e-4e3e-92d3-17766e71727b@intel.com> On 2025-01-11 12:27 a.m., Patchwork wrote: > *Patch Details* > *Series:* tests/intel/xe_exec_capture: Add xe_exec_capture test (rev10) > *URL:* https://patchwork.freedesktop.org/series/140007/ patchwork.freedesktop.org/series/140007/> > *State:* failure > *Details:* https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12407/ > index.html index.html> > > > CI Bug Log - changes from XEIGT_8182_full -> XEIGTPW_12407_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with XEIGTPW_12407_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_12407_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_12407_full: > > > IGT changes > > > Possible regressions > > * > > igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe- > a-dp-4: > > o shard-dg2-set2: PASS IGT_8182/shard-dg2-436/igt at kms_atomic_transition@plane-all- > modeset-transition-fencing at pipe-a-dp-4.html> -> INCOMPLETE > dg2-433/igt at kms_atomic_transition@plane-all-modeset-transition- > fencing at pipe-a-dp-4.html> > * > > igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-d-dp-2: > > o shard-dg2-set2: NOTRUN -> ABORT tree/intel-xe/IGTPW_12407/shard-dg2-432/igt at kms_ccs@crc-primary- > suspend-4-tiled-dg2-rc-ccs at pipe-d-dp-2.html> > * > > igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a2-dp2: > > o shard-dg2-set2: NOTRUN -> FAIL tree/intel-xe/IGTPW_12407/shard-dg2-432/igt at kms_flip@2x-flip-vs- > expired-vblank at bc-hdmi-a2-dp2.html> +2 other tests fail > * > > igt at xe_fault_injection@vm-create-fail-xe_pt_create: > > o shard-bmg: PASS IGT_8182/shard-bmg-8/igt at xe_fault_injection@vm-create-fail- > xe_pt_create.html> -> DMESG-WARN tree/intel-xe/IGTPW_12407/shard-bmg-2/igt at xe_fault_injection@vm- > create-fail-xe_pt_create.html> > * > > igt at xe_pm_residency@cpg-basic: > > o shard-dg2-set2: PASS IGT_8182/shard-dg2-463/igt at xe_pm_residency@cpg-basic.html> -> > ABORT shard-dg2-432/igt at xe_pm_residency@cpg-basic.html> +1 other test > abort > > > Warnings > > * igt at kms_content_protection@srm at pipe-a-dp-4: > o shard-dg2-set2: FAIL IGT_8182/shard-dg2-463/igt at kms_content_protection@srm at pipe-a- > dp-4.html> (Intel XE#1178 xe/kernel/issues/1178>) -> INCOMPLETE ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/ > igt at kms_content_protection@srm at pipe-a-dp-4.html> > My change is to add xe_exec_capture test, all above failures on other tests are not related to my change. Regards, Zhanjun Dong > > New tests > > New tests have been introduced between XEIGT_8182_full and > XEIGTPW_12407_full: > > > New IGT tests (1) > > * igt at xe_exec_capture@reset: > o Statuses : 2 pass(s) > o Exec time: [23.42, 33.12] s > > > Known issues > > Here are the changes found in XEIGTPW_12407_full that come from known > issues: > > > IGT changes > > > Issues hit > > * > > igt at core_setmaster_vs_auth: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-435/ > igt at core_setmaster_vs_auth.html> (Intel XE#2423 gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) > * > > igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1- > linear: > > o shard-lnl: PASS IGT_8182/shard-lnl-8/igt at kms_async_flips@async-flip-with-page- > flip-events at pipe-a-edp-1-linear.html> -> FAIL gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-lnl-7/ > igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a- > edp-1-linear.html> (Intel XE#911 gitlab.freedesktop.org/drm/xe/kernel/issues/911>) +3 other tests > fail > * > > igt at kms_async_flips@invalid-async-flip: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_async_flips@invalid- > async-flip.html> (Intel XE#873 drm/xe/kernel/issues/873>) > * > > igt at kms_atomic_transition@plane-all-modeset-transition-fencing: > > o shard-dg2-set2: PASS IGT_8182/shard-dg2-436/igt at kms_atomic_transition@plane-all- > modeset-transition-fencing.html> -> INCOMPLETE gfx-ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/ > igt at kms_atomic_transition@plane-all-modeset-transition- > fencing.html> (Intel XE#2613 drm/xe/kernel/issues/2613>) > * > > igt at kms_big_fb@4-tiled-64bpp-rotate-270: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_big_fb@4-tiled-64bpp- > rotate-270.html> (Intel XE#2327 drm/xe/kernel/issues/2327>) +3 other tests skip > * > > igt at kms_big_fb@4-tiled-8bpp-rotate-270: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at kms_big_fb@4- > tiled-8bpp-rotate-270.html> (Intel XE#316 gitlab.freedesktop.org/drm/xe/kernel/issues/316>) > * > > igt at kms_big_fb@linear-64bpp-rotate-270: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-4/igt at kms_big_fb@linear-64bpp- > rotate-270.html> (Intel XE#1407 drm/xe/kernel/issues/1407>) > * > > igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: > > o shard-bmg: PASS IGT_8182/shard-bmg-4/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp- > rotate-180-hflip-async-flip.html> -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/ > igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip- > async-flip.html> (Intel XE#2136 drm/xe/kernel/issues/2136> / Intel XE#2231 gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) > * > > igt at kms_big_fb@y-tiled-addfb: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-4/igt at kms_big_fb@y-tiled- > addfb.html> (Intel XE#1467 xe/kernel/issues/1467>) > * > > igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_big_fb@y-tiled- > max-hw-stride-32bpp-rotate-180-hflip.html> (Intel XE#1124 > ) +4 > other tests skip > * > > igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-8/igt at kms_big_fb@y-tiled-max-hw- > stride-64bpp-rotate-180.html> (Intel XE#1124 gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +1 other test > skip > * > > igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw- > stride-64bpp-rotate-0-hflip.html> (Intel XE#1124 gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +7 other > tests skip > * > > igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_bw@connected-linear- > tiling-3-displays-1920x1080p.html> (Intel XE#2314 gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel > XE#2894 ) > * > > igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_bw@connected- > linear-tiling-3-displays-2160x1440p.html> (Intel XE#2191 > ) > * > > igt at kms_bw@linear-tiling-2-displays-3840x2160p: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-434/igt at kms_bw@linear- > tiling-2-displays-3840x2160p.html> (Intel XE#367 gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +1 other test skip > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_bw@linear-tiling-2- > displays-3840x2160p.html> (Intel XE#367 gitlab.freedesktop.org/drm/xe/kernel/issues/367>) > * > > igt at kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: > > o shard-dg2-set2: PASS IGT_8182/shard-dg2-434/igt at kms_ccs@bad-rotation-90-4-tiled-dg2- > rc-ccs.html> -> SKIP IGTPW_12407/shard-dg2-435/igt at kms_ccs@bad-rotation-90-4-tiled- > dg2-rc-ccs.html> (Intel XE#2136 drm/xe/kernel/issues/2136> / Intel XE#2351 gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +1 other test > skip > * > > igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-3/igt at kms_ccs@bad-rotation-90-4- > tiled-mtl-rc-ccs-cc.html> (Intel XE#2887 gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +6 other > tests skip > * > > igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: > > o shard-dg2-set2: PASS IGT_8182/shard-dg2-464/igt at kms_ccs@crc-primary-rotation-180-4- > tiled-dg2-rc-ccs-cc.html> -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_ccs@crc-primary- > rotation-180-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#2136 > ) +3 > other tests skip > * > > igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc at pipe-d-dp-4: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_ccs@crc-primary- > rotation-180-4-tiled-mtl-rc-ccs-cc at pipe-d-dp-4.html> (Intel > XE#455 issues/455> / Intel XE#787 xe/kernel/issues/787>) +29 other tests skip > * > > igt at kms_ccs@crc-primary-suspend-y-tiled-ccs: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_ccs@crc-primary- > suspend-y-tiled-ccs.html> (Intel XE#3432 gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +1 other test > skip > * > > igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c- > hdmi-a-6: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_ccs@crc-sprite- > planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6.html> (Intel > XE#787 issues/787>) +167 other tests skip > * > > igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_ccs@random-ccs-data-4- > tiled-dg2-rc-ccs-cc.html> (Intel XE#2887 gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +4 other > tests skip > * > > igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-434/igt at kms_ccs@random-ccs- > data-4-tiled-lnl-ccs.html> (Intel XE#2907 gitlab.freedesktop.org/drm/xe/kernel/issues/2907>) > * > > igt at kms_cdclk@plane-scaling at pipe-b-dp-4: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_cdclk@plane- > scaling at pipe-b-dp-4.html> (Intel XE#1152 gitlab.freedesktop.org/drm/xe/kernel/issues/1152>) +3 other > tests skip > * > > igt at kms_chamelium_color@ctm-green-to-red: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-4/igt at kms_chamelium_color@ctm- > green-to-red.html> (Intel XE#306 gitlab.freedesktop.org/drm/xe/kernel/issues/306>) > * > > igt at kms_chamelium_edid@dp-edid-change-during-hibernate: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_chamelium_edid@dp-edid- > change-during-hibernate.html> (Intel XE#2252 gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +6 other > tests skip > * > > igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-4/igt at kms_chamelium_frames@hdmi- > crc-nonplanar-formats.html> (Intel XE#373 gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +2 other tests > skip > * > > igt at kms_chamelium_hpd@dp-hpd-storm-disable: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-463/ > igt at kms_chamelium_hpd@dp-hpd-storm-disable.html> (Intel XE#373 > ) +1 > other test skip > * > > igt at kms_content_protection@atomic: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-6/ > igt at kms_content_protection@atomic.html> (Intel XE#2341 gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) > o shard-dg2-set2: NOTRUN -> FAIL tree/intel-xe/IGTPW_12407/shard-dg2-464/ > igt at kms_content_protection@atomic.html> (Intel XE#1178 gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +1 other test > fail > * > > igt at kms_content_protection@uevent: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-8/ > igt at kms_content_protection@uevent.html> (Intel XE#3278 gitlab.freedesktop.org/drm/xe/kernel/issues/3278>) +1 other test > skip > * > > igt at kms_cursor_crc@cursor-offscreen-512x170: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_cursor_crc@cursor- > offscreen-512x170.html> (Intel XE#2321 gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +1 other test > skip > * > > igt at kms_cursor_crc@cursor-random-max-size: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-3/igt at kms_cursor_crc@cursor- > random-max-size.html> (Intel XE#1424 gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +1 other test > skip > * > > igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_cursor_legacy@basic- > busy-flip-before-cursor-atomic.html> (Intel XE#2286 gitlab.freedesktop.org/drm/xe/kernel/issues/2286>) +1 other test > skip > * > > igt at kms_cursor_legacy@cursora-vs-flipb-atomic: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-4/igt at kms_cursor_legacy@cursora- > vs-flipb-atomic.html> (Intel XE#309 gitlab.freedesktop.org/drm/xe/kernel/issues/309>) > * > > igt at kms_cursor_legacy@cursora-vs-flipb-varying-size: > > o shard-bmg: PASS IGT_8182/shard-bmg-3/igt at kms_cursor_legacy@cursora-vs-flipb- > varying-size.html> -> SKIP intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_cursor_legacy@cursora- > vs-flipb-varying-size.html> (Intel XE#2291 gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +3 other > tests skip > * > > igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: > > o shard-bmg: PASS IGT_8182/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa- > atomic-transitions.html> -> INCOMPLETE ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/ > igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html> > (Intel XE#3226 issues/3226>) > * > > igt at kms_cursor_legacy@flip-vs-cursor-toggle: > > o shard-lnl: PASS IGT_8182/shard-lnl-8/igt at kms_cursor_legacy@flip-vs-cursor- > toggle.html> -> FAIL IGTPW_12407/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor- > toggle.html> (Intel XE#1475 xe/kernel/issues/1475>) > * > > igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-433/ > igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic- > transitions.html> (Intel XE#323 drm/xe/kernel/issues/323>) > * > > igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at kms_dither@fb-8bpc- > vs-panel-6bpc at pipe-a-hdmi-a-6.html> (i915#3804 gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) > * > > igt at kms_dsc@dsc-with-bpc: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-3/igt at kms_dsc@dsc-with-bpc.html> > (Intel XE#2244 issues/2244>) > * > > igt at kms_feature_discovery@display-2x: > > o shard-bmg: PASS IGT_8182/shard-bmg-8/igt at kms_feature_discovery@display-2x.html> > -> SKIP shard-bmg-6/igt at kms_feature_discovery@display-2x.html> (Intel > XE#2373 ) > * > > igt at kms_feature_discovery@psr2: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-2/ > igt at kms_feature_discovery@psr2.html> (Intel XE#2374 gitlab.freedesktop.org/drm/xe/kernel/issues/2374>) > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-436/ > igt at kms_feature_discovery@psr2.html> (Intel XE#1135 gitlab.freedesktop.org/drm/xe/kernel/issues/1135>) > * > > igt at kms_flip@2x-blocking-absolute-wf_vblank: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-8/igt at kms_flip@2x-blocking- > absolute-wf_vblank.html> (Intel XE#1421 gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) > * > > igt at kms_flip@2x-flip-vs-expired-vblank: > > o shard-dg2-set2: NOTRUN -> FAIL tree/intel-xe/IGTPW_12407/shard-dg2-432/igt at kms_flip@2x-flip-vs- > expired-vblank.html> (Intel XE#301 gitlab.freedesktop.org/drm/xe/kernel/issues/301>) > * > > igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3: > > o shard-bmg: PASS IGT_8182/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank- > interruptible at ad-dp2-hdmi-a3.html> -> FAIL ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_flip@2x- > flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3.html> (Intel > XE#3288 issues/3288> / Intel XE#3321 drm/xe/kernel/issues/3321>) > * > > igt at kms_flip@2x-flip-vs-modeset-vs-hang: > > o shard-bmg: PASS IGT_8182/shard-bmg-4/igt at kms_flip@2x-flip-vs-modeset-vs- > hang.html> -> SKIP IGTPW_12407/shard-bmg-6/igt at kms_flip@2x-flip-vs-modeset-vs- > hang.html> (Intel XE#2316 xe/kernel/issues/2316>) +4 other tests skip > * > > igt at kms_flip@2x-nonexisting-fb: > > o shard-bmg: PASS IGT_8182/shard-bmg-1/igt at kms_flip@2x-nonexisting-fb.html> -> > SKIP shard-bmg-8/igt at kms_flip@2x-nonexisting-fb.html> (Intel XE#3007 > ) +8 > other tests skip > * > > igt at kms_flip@2x-plain-flip-fb-recreate: > > o shard-bmg: PASS IGT_8182/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb- > recreate.html> -> FAIL xe/IGTPW_12407/shard-bmg-4/igt at kms_flip@2x-plain-flip-fb- > recreate.html> (Intel XE#2882 drm/xe/kernel/issues/2882>) +1 other test fail > * > > igt at kms_flip@flip-vs-expired-vblank at b-dp4: > > o shard-dg2-set2: PASS IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at b- > dp4.html> -> FAIL IGTPW_12407/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at b- > dp4.html> (Intel XE#301 kernel/issues/301> / Intel XE#3321 gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) > * > > igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a6: > > o shard-dg2-set2: PASS IGT_8182/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at c- > hdmi-a6.html> -> FAIL xe/IGTPW_12407/shard-dg2-434/igt at kms_flip@flip-vs-expired- > vblank at c-hdmi-a6.html> (Intel XE#301 gitlab.freedesktop.org/drm/xe/kernel/issues/301>) > * > > igt at kms_flip@flip-vs-suspend: > > o shard-lnl: PASS IGT_8182/shard-lnl-5/igt at kms_flip@flip-vs-suspend.html> -> > INCOMPLETE IGTPW_12407/shard-lnl-7/igt at kms_flip@flip-vs-suspend.html> > (Intel XE#2049 issues/2049>) +1 other test incomplete > * > > igt at kms_flip@flip-vs-suspend-interruptible at c-hdmi-a3: > > o shard-bmg: PASS IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-suspend- > interruptible at c-hdmi-a3.html> -> INCOMPLETE ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/ > igt at kms_flip@flip-vs-suspend-interruptible at c-hdmi-a3.html> > (Intel XE#2597 issues/2597>) > * > > igt at kms_flip@flip-vs-suspend-interruptible at d-dp4: > > o shard-dg2-set2: NOTRUN -> INCOMPLETE ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-436/ > igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html> (Intel > XE#2049 ) > * > > igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile- > downscaling at pipe-a-default-mode: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-5/ > igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile- > downscaling at pipe-a-default-mode.html> (Intel XE#1397 gitlab.freedesktop.org/drm/xe/kernel/issues/1397>) +2 other > tests skip > * > > igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-434/ > igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile- > upscaling.html> (Intel XE#455 drm/xe/kernel/issues/455>) +6 other tests skip > * > > igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-3/ > igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear- > downscaling.html> (Intel XE#1397 gitlab.freedesktop.org/drm/xe/kernel/issues/1397> / Intel > XE#1745 issues/1745>) +2 other tests skip > * > > igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile- > downscaling at pipe-a-valid-mode: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-5/ > igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile- > downscaling at pipe-a-valid-mode.html> (Intel XE#2293 gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) > * > > igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-8/ > igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw- > render.html> (Intel XE#651 xe/kernel/issues/651>) +4 other tests skip > * > > igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-6/ > igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip- > blt.html> (Intel XE#2312 kernel/issues/2312>) +2 other tests skip > * > > igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-2/ > igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html> > (Intel XE#2311 issues/2311>) +18 other tests skip > * > > igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: > > o shard-bmg: NOTRUN -> FAIL intel-xe/IGTPW_12407/shard-bmg-6/ > igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw- > render.html> (Intel XE#2333 xe/kernel/issues/2333>) +5 other tests fail > * > > igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-5/ > igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb- > move.html> (Intel XE#656 kernel/issues/656>) +8 other tests skip > * > > igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-8/ > igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw- > mmap-wc.html> (Intel XE#2136 drm/xe/kernel/issues/2136> / Intel XE#2231 gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) > * > > igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-463/ > igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip- > blt.html> (Intel XE#651 kernel/issues/651>) +7 other tests skip > * > > igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-433/ > igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw- > blt.html> (Intel XE#653 kernel/issues/653>) +11 other tests skip > * > > igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-435/ > igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html> (Intel XE#658 > ) > * > > igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-5/ > igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html> > (Intel XE#2313 issues/2313>) +17 other tests skip > * > > igt at kms_hdmi_inject@inject-audio: > > o shard-dg2-set2: PASS IGT_8182/shard-dg2-435/igt at kms_hdmi_inject@inject-audio.html> -> > SKIP shard-dg2-435/igt at kms_hdmi_inject@inject-audio.html> (Intel > XE#2423 issues/2423> / i915#2575 i915/kernel/-/issues/2575>) +8 other tests skip > * > > igt at kms_histogram@algo-basic: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_histogram@algo- > basic.html> (Intel XE#3897 xe/kernel/issues/3897>) > * > > igt at kms_histogram@algo-color: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-8/igt at kms_histogram@algo- > color.html> (Intel XE#3897 xe/kernel/issues/3897>) > * > > igt at kms_joiner@invalid-modeset-big-joiner: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_joiner@invalid-modeset- > big-joiner.html> (Intel XE#346 drm/xe/kernel/issues/346>) > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_joiner@invalid- > modeset-big-joiner.html> (Intel XE#346 gitlab.freedesktop.org/drm/xe/kernel/issues/346>) > * > > igt at kms_joiner@invalid-modeset-force-ultra-joiner: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_joiner@invalid-modeset- > force-ultra-joiner.html> (Intel XE#2934 gitlab.freedesktop.org/drm/xe/kernel/issues/2934>) > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-463/igt at kms_joiner@invalid- > modeset-force-ultra-joiner.html> (Intel XE#2925 gitlab.freedesktop.org/drm/xe/kernel/issues/2925>) > * > > igt at kms_panel_fitting@legacy: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-4/ > igt at kms_panel_fitting@legacy.html> (Intel XE#2486 gitlab.freedesktop.org/drm/xe/kernel/issues/2486>) > * > > igt at kms_plane@planar-pixel-format-settings: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-8/igt at kms_plane@planar-pixel- > format-settings.html> (Intel XE#3007 gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) +1 other test > skip > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_plane@planar- > pixel-format-settings.html> (Intel XE#2423 gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575 > ) > +1 other test skip > * > > igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: > > o shard-dg2-set2: NOTRUN -> FAIL tree/intel-xe/IGTPW_12407/shard-dg2-435/ > igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html> > (Intel XE#616 issues/616>) +2 other tests fail > * > > igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-5/igt at kms_plane_lowres@tiling- > x at pipe-b-edp-1.html> (Intel XE#599 gitlab.freedesktop.org/drm/xe/kernel/issues/599>) +3 other tests > skip > * > > igt at kms_plane_scaling@intel-max-src-size: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-8/igt at kms_plane_scaling@intel- > max-src-size.html> (Intel XE#3307 gitlab.freedesktop.org/drm/xe/kernel/issues/3307>) > * > > igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-434/ > igt at kms_plane_scaling@plane-downscale-factor-0-25-with- > modifiers at pipe-a.html> (Intel XE#2763 gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +2 other > tests skip > * > > igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-434/ > igt at kms_plane_scaling@plane-downscale-factor-0-25-with- > modifiers at pipe-d.html> (Intel XE#2763 gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455 > ) +1 > other test skip > * > > igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel- > format at pipe-c: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-3/igt at kms_plane_scaling@plane- > downscale-factor-0-5-with-pixel-format at pipe-c.html> (Intel > XE#2763 issues/2763>) +7 other tests skip > * > > igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale- > factor-0-25 at pipe-c: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_plane_scaling@planes- > downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html> (Intel > XE#2763 issues/2763>) +9 other tests skip > * > > igt at kms_pm_dc@dc5-psr: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_pm_dc@dc5-psr.html> > (Intel XE#2392 issues/2392>) > * > > igt at kms_pm_dc@dc6-dpms: > > o shard-bmg: NOTRUN -> FAIL intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_pm_dc@dc6-dpms.html> > (Intel XE#1430 issues/1430>) > * > > igt at kms_pm_rpm@dpms-mode-unset-lpsp: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_pm_rpm@dpms-mode-unset- > lpsp.html> (Intel XE#1439 xe/kernel/issues/1439> / Intel XE#836 gitlab.freedesktop.org/drm/xe/kernel/issues/836>) > * > > igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-5/igt at kms_psr2_sf@pr-overlay- > plane-move-continuous-exceed-fully-sf.html> (Intel XE#2893 > ) > * > > igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-2/igt at kms_psr2_sf@pr-overlay- > plane-update-continuous-sf.html> (Intel XE#1489 gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +5 other > tests skip > * > > igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-463/igt at kms_psr2_sf@psr2- > cursor-plane-move-continuous-sf.html> (Intel XE#1489 gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +3 other > tests skip > * > > igt at kms_psr2_su@page_flip-nv12: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-7/igt at kms_psr2_su@page_flip- > nv12.html> (Intel XE#1128 xe/kernel/issues/1128>) > * > > igt at kms_psr@fbc-psr2-primary-render: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_psr@fbc-psr2- > primary-render.html> (Intel XE#2850 gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929 > ) +8 > other tests skip > * > > igt at kms_psr@pr-sprite-blt: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-8/igt at kms_psr@pr-sprite-blt.html> > (Intel XE#1406 issues/1406>) +1 other test skip > * > > igt at kms_psr@pr-sprite-plane-onoff: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_psr@pr-sprite-plane- > onoff.html> (Intel XE#2234 xe/kernel/issues/2234> / Intel XE#2850 gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +8 other > tests skip > * > > igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_rotation_crc@primary- > yf-tiled-reflect-x-0.html> (Intel XE#2330 gitlab.freedesktop.org/drm/xe/kernel/issues/2330>) > * > > igt at kms_setmode@basic-clone-single-crtc: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_setmode@basic-clone- > single-crtc.html> (Intel XE#1435 gitlab.freedesktop.org/drm/xe/kernel/issues/1435>) > * > > igt at kms_tiled_display@basic-test-pattern-with-chamelium: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-436/ > igt at kms_tiled_display@basic-test-pattern-with-chamelium.html> > (Intel XE#1500 issues/1500>) > * > > igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: > > o shard-lnl: PASS IGT_8182/shard-lnl-7/igt at kms_universal_plane@cursor-fb- > leak at pipe-b-edp-1.html> -> FAIL tree/intel-xe/IGTPW_12407/shard-lnl-8/ > igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html> (Intel > XE#899 ) > * > > igt at kms_vrr@flip-suspend: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-5/igt at kms_vrr@flip-suspend.html> > (Intel XE#1499 issues/1499>) > * > > igt at kms_vrr@seamless-rr-switch-vrr: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-5/igt at kms_vrr@seamless-rr-switch- > vrr.html> (Intel XE#1499 kernel/issues/1499>) > * > > igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-432/igt at sriov_basic@enable- > vfs-bind-unbind-each-numvfs-all.html> (Intel XE#1091 gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel > XE#2849 ) > * > > igt at xe_compute_preempt@compute-threadgroup-preempt at engine- > drm_xe_engine_class_compute: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-464/ > igt at xe_compute_preempt@compute-threadgroup-preempt at engine- > drm_xe_engine_class_compute.html> (Intel XE#1280 gitlab.freedesktop.org/drm/xe/kernel/issues/1280> / Intel XE#455 > ) > * > > igt at xe_eudebug@basic-vm-bind-metadata-discovery: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at xe_eudebug@basic-vm- > bind-metadata-discovery.html> (Intel XE#2905 gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +2 other > tests skip > * > > igt at xe_eudebug@basic-vm-bind-ufence-reconnect: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-1/igt at xe_eudebug@basic-vm-bind- > ufence-reconnect.html> (Intel XE#3889 gitlab.freedesktop.org/drm/xe/kernel/issues/3889>) > * > > igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-5/igt at xe_eudebug@basic-vm-bind- > ufence-sigint-client.html> (Intel XE#3889 gitlab.freedesktop.org/drm/xe/kernel/issues/3889>) > * > > igt at xe_eudebug_online@interrupt-all-set-breakpoint: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-5/ > igt at xe_eudebug_online@interrupt-all-set-breakpoint.html> (Intel > XE#2905 issues/2905>) +2 other tests skip > * > > igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-5/igt at xe_eudebug_online@writes- > caching-sram-bb-vram-target-vram.html> (Intel XE#2905 gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +4 other > tests skip > * > > igt at xe_evict@evict-beng-mixed-many-threads-small: > > o shard-bmg: NOTRUN -> TIMEOUT intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_evict@evict-beng-mixed- > many-threads-small.html> (Intel XE#1473 gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) > * > > igt at xe_evict@evict-beng-mixed-threads-large-multi-vm: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-6/igt at xe_evict@evict-beng-mixed- > threads-large-multi-vm.html> (Intel XE#688 gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +3 other tests > skip > * > > igt at xe_evict@evict-mixed-many-threads-small: > > o shard-dg2-set2: PASS IGT_8182/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads- > small.html> -> TIMEOUT xe/IGTPW_12407/shard-dg2-432/igt at xe_evict@evict-mixed-many- > threads-small.html> (Intel XE#1473 gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) > * > > igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue- > userptr-invalidate: > > o shard-dg2-set2: PASS IGT_8182/shard-dg2-436/igt at xe_exec_basic@multigpu-many- > execqueues-many-vm-bindexecqueue-userptr-invalidate.html> -> > SKIP shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many- > vm-bindexecqueue-userptr-invalidate.html> (Intel XE#1392 > ) +3 > other tests skip > * > > igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-2/igt at xe_exec_basic@multigpu- > once-bindexecqueue-rebind.html> (Intel XE#2322 gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +4 other > tests skip > * > > igt at xe_exec_basic@multigpu-once-userptr: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-3/igt at xe_exec_basic@multigpu- > once-userptr.html> (Intel XE#1392 gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +1 other test > skip > * > > igt at xe_exec_fault_mode@many-basic-prefetch: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-435/ > igt at xe_exec_fault_mode@many-basic-prefetch.html> (Intel XE#1130 > ) +1 > other test skip > * > > igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-464/ > igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate- > imm.html> (Intel XE#288 kernel/issues/288>) +7 other tests skip > * > > igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: > > o shard-dg2-set2: PASS IGT_8182/shard-dg2-464/igt at xe_fault_injection@vm-create-fail- > xe_exec_queue_create_bind.html> -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/ > igt at xe_fault_injection@vm-create-fail- > xe_exec_queue_create_bind.html> (Intel XE#1130 gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +12 other > tests skip > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_fault_injection@vm- > create-fail-xe_exec_queue_create_bind.html> (Intel XE#1130 > ) > * > > igt at xe_live_ktest@xe_bo: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-2/igt at xe_live_ktest@xe_bo.html> > (Intel XE#1192 issues/1192>) > * > > igt at xe_live_ktest@xe_mocs: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-5/igt at xe_live_ktest@xe_mocs.html> > (Intel XE#1192 issues/1192>) > * > > igt at xe_mmap@small-bar: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-436/igt at xe_mmap@small- > bar.html> (Intel XE#512 kernel/issues/512>) > * > > igt at xe_module_load@force-load: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-6/igt at xe_module_load@force- > load.html> (Intel XE#2457 xe/kernel/issues/2457>) > * > > igt at xe_module_load@load: > > o shard-bmg: (PASS IGT_8182/shard-bmg-1/igt at xe_module_load@load.html>, PASS > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/ > igt at xe_module_load@load.html>) -> (PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/ > igt at xe_module_load@load.html>, SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/ > igt at xe_module_load@load.html>, PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/ > igt at xe_module_load@load.html>) (Intel XE#2457 gitlab.freedesktop.org/drm/xe/kernel/issues/2457>) > * > > igt at xe_oa@disabled-read-error: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at xe_oa@disabled-read- > error.html> (Intel XE#2541 xe/kernel/issues/2541> / Intel XE#3573 gitlab.freedesktop.org/drm/xe/kernel/issues/3573>) +1 other test > skip > * > > igt at xe_oa@unprivileged-single-ctx-counters: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-6/igt at xe_oa@unprivileged-single- > ctx-counters.html> (Intel XE#2248 gitlab.freedesktop.org/drm/xe/kernel/issues/2248>) > * > > igt at xe_pat@pat-index-xehpc: > > o shard-bmg: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_pat@pat-index- > xehpc.html> (Intel XE#1420 xe/kernel/issues/1420>) > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-436/igt at xe_pat@pat-index- > xehpc.html> (Intel XE#2838 xe/kernel/issues/2838> / Intel XE#979 gitlab.freedesktop.org/drm/xe/kernel/issues/979>) > * > > igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: > > o shard-dg2-set2: NOTRUN -> FAIL tree/intel-xe/IGTPW_12407/shard-dg2-464/ > igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html> > (Intel XE#1173 issues/1173>) > * > > igt at xe_pm@d3cold-mocs: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-4/igt at xe_pm@d3cold-mocs.html> > (Intel XE#2284 issues/2284>) > * > > igt at xe_pm@s2idle-d3cold-basic-exec: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-464/igt at xe_pm@s2idle-d3cold- > basic-exec.html> (Intel XE#2284 drm/xe/kernel/issues/2284> / Intel XE#366 gitlab.freedesktop.org/drm/xe/kernel/issues/366>) > * > > igt at xe_pm@s3-basic-exec: > > o shard-dg2-set2: PASS IGT_8182/shard-dg2-464/igt at xe_pm@s3-basic-exec.html> -> ABORT > dg2-432/igt at xe_pm@s3-basic-exec.html> (Intel XE#1358 gitlab.freedesktop.org/drm/xe/kernel/issues/1358>) > * > > igt at xe_pm_residency@gt-c6-freeze: > > o shard-dg2-set2: PASS IGT_8182/shard-dg2-464/igt at xe_pm_residency@gt-c6-freeze.html> -> > ABORT shard-dg2-432/igt at xe_pm_residency@gt-c6-freeze.html> (Intel > XE#2625 issues/2625>) +1 other test abort > * > > igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: > > o shard-dg2-set2: NOTRUN -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at xe_query@multigpu- > query-invalid-uc-fw-version-mbz.html> (Intel XE#944 gitlab.freedesktop.org/drm/xe/kernel/issues/944>) > * > > igt at xe_query@multigpu-query-topology-l3-bank-mask: > > o shard-lnl: NOTRUN -> SKIP intel-xe/IGTPW_12407/shard-lnl-6/igt at xe_query@multigpu-query- > topology-l3-bank-mask.html> (Intel XE#944 gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +1 other test skip > * > > igt at xe_vm@large-split-misaligned-binds-67108864: > > o shard-bmg: PASS IGT_8182/shard-bmg-2/igt at xe_vm@large-split-misaligned- > binds-67108864.html> -> SKIP intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_vm@large-split- > misaligned-binds-67108864.html> (Intel XE#1130 gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +15 other > tests skip > * > > igt at xe_wedged@wedged-mode-toggle: > > o shard-lnl: PASS IGT_8182/shard-lnl-2/igt at xe_wedged@wedged-mode-toggle.html> -> > ABORT shard-lnl-7/igt at xe_wedged@wedged-mode-toggle.html> (Intel > XE#3084 ) > o shard-bmg: PASS IGT_8182/shard-bmg-7/igt at xe_wedged@wedged-mode-toggle.html> -> > ABORT shard-bmg-5/igt at xe_wedged@wedged-mode-toggle.html> (Intel > XE#3084 ) > > > Possible fixes > > * > > igt at kms_async_flips@alternate-sync-async-flip: > > o shard-bmg: FAIL IGT_8182/shard-bmg-5/igt at kms_async_flips@alternate-sync-async- > flip.html> (Intel XE#827 kernel/issues/827>) -> PASS intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_async_flips@alternate- > sync-async-flip.html> +1 other test pass > * > > igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2- > displays-3840x2160p.html> (Intel XE#2314 gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel > XE#2894 issues/2894>) -> PASS xe/IGTPW_12407/shard-bmg-2/igt at kms_bw@connected-linear-tiling-2- > displays-3840x2160p.html> > * > > igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor- > atomic.html> (Intel XE#2291 xe/kernel/issues/2291>) -> PASS tree/intel-xe/IGTPW_12407/shard-bmg-4/igt at kms_cursor_legacy@2x- > flip-vs-cursor-atomic.html> +2 other tests pass > * > > igt at kms_cursor_legacy@cursora-vs-flipa-legacy: > > o shard-bmg: INCOMPLETE xe/IGT_8182/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipa- > legacy.html> (Intel XE#3226 xe/kernel/issues/3226>) -> PASS tree/intel-xe/IGTPW_12407/shard-bmg-2/ > igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html> > * > > igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: > > o shard-bmg: DMESG-WARN xe/IGT_8182/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa- > atomic-transitions-varying-size.html> (Intel XE#877 gitlab.freedesktop.org/drm/xe/kernel/issues/877>) -> PASS > bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions- > varying-size.html> > * > > igt at kms_flip@2x-dpms-vs-vblank-race: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_flip@2x-dpms-vs-vblank-race.html> > (Intel XE#2316 issues/2316>) -> PASS xe/IGTPW_12407/shard-bmg-8/igt at kms_flip@2x-dpms-vs-vblank- > race.html> +1 other test pass > * > > igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: > > o shard-bmg: FAIL IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ab- > dp2-hdmi-a3.html> (Intel XE#2882 gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) -> PASS > bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi- > a3.html> +2 other tests pass > * > > igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: > > o shard-bmg: FAIL IGT_8182/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at ad- > dp2-hdmi-a3.html> (Intel XE#3321 gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) -> PASS > bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi- > a3.html> +1 other test pass > * > > igt at kms_flip@absolute-wf_vblank: > > o shard-lnl: INCOMPLETE xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank.html> > (Intel XE#2049 issues/2049>) -> PASS xe/IGTPW_12407/shard-lnl-8/igt at kms_flip@absolute-wf_vblank.html> > * > > igt at kms_flip@absolute-wf_vblank at b-edp1: > > o shard-lnl: INCOMPLETE xe/IGT_8182/shard-lnl-5/igt at kms_flip@absolute-wf_vblank at b- > edp1.html> -> PASS IGTPW_12407/shard-lnl-8/igt at kms_flip@absolute-wf_vblank at b-edp1.html> > * > > igt at kms_flip@flip-vs-blocking-wf-vblank: > > o shard-dg2-set2: INCOMPLETE intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking- > wf-vblank.html> (Intel XE#3937 drm/xe/kernel/issues/3937>) -> PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/ > igt at kms_flip@flip-vs-blocking-wf-vblank.html> > * > > igt at kms_flip@flip-vs-blocking-wf-vblank at a-dp4: > > o shard-dg2-set2: INCOMPLETE intel-xe/IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-blocking- > wf-vblank at a-dp4.html> -> PASS intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_flip@flip-vs- > blocking-wf-vblank at a-dp4.html> > * > > igt at kms_flip@flip-vs-expired-vblank-interruptible: > > o shard-bmg: FAIL IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank- > interruptible.html> (Intel XE#2882 gitlab.freedesktop.org/drm/xe/kernel/issues/2882> / Intel > XE#3288 issues/3288>) -> PASS xe/IGTPW_12407/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank- > interruptible.html> +1 other test pass > * > > igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: > > o shard-dg2-set2: FAIL IGT_8182/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank- > interruptible at a-dp4.html> (Intel XE#301 gitlab.freedesktop.org/drm/xe/kernel/issues/301>) -> PASS > dg2-463/igt at kms_flip@flip-vs-expired-vblank-interruptible at a- > dp4.html> +3 other tests pass > * > > igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2: > > o shard-bmg: FAIL IGT_8182/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank- > interruptible at d-dp2.html> (Intel XE#3288 gitlab.freedesktop.org/drm/xe/kernel/issues/3288>) -> PASS > bmg-2/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2.html> > * > > igt at kms_flip@flip-vs-rmfb at d-hdmi-a3: > > o shard-bmg: INCOMPLETE xe/IGT_8182/shard-bmg-2/igt at kms_flip@flip-vs-rmfb at d-hdmi- > a3.html> -> PASS IGTPW_12407/shard-bmg-5/igt at kms_flip@flip-vs-rmfb at d-hdmi- > a3.html> +1 other test pass > * > > igt at kms_flip@flip-vs-suspend: > > o shard-dg2-set2: INCOMPLETE intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs- > suspend.html> (Intel XE#2049 drm/xe/kernel/issues/2049> / Intel XE#2597 gitlab.freedesktop.org/drm/xe/kernel/issues/2597>) -> PASS > dg2-433/igt at kms_flip@flip-vs-suspend.html> > * > > igt at kms_flip@flip-vs-suspend at c-dp4: > > o shard-dg2-set2: INCOMPLETE intel-xe/IGT_8182/shard-dg2-463/igt at kms_flip@flip-vs-suspend at c- > dp4.html> (Intel XE#2049 kernel/issues/2049>) -> PASS intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_flip@flip-vs- > suspend at c-dp4.html> > * > > igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-linear- > to-64bpp-linear-downscaling.html> (Intel XE#2136 gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel > XE#2231 issues/2231>) -> PASS xe/IGTPW_12407/shard-bmg-2/igt at kms_flip_scaled_crc@flip-32bpp- > linear-to-64bpp-linear-downscaling.html> +2 other tests pass > * > > igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: > > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-2p- > primscrn-pri-shrfb-draw-render.html> (Intel XE#2136 gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> PASS > dg2-464/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb- > draw-render.html> +4 other tests pass > * > > igt at kms_invalid_mode@bad-htotal: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_invalid_mode@bad-htotal.html> > (Intel XE#3007 issues/3007>) -> PASS xe/IGTPW_12407/shard-bmg-1/igt at kms_invalid_mode@bad-htotal.html> > +8 other tests pass > * > > igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: > > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_plane_scaling@plane-scaler-with- > clipping-clamping-pixel-formats.html> (Intel XE#2423 gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575 > ) > -> PASS shard-dg2-433/igt at kms_plane_scaling@plane-scaler-with-clipping- > clamping-pixel-formats.html> +7 other tests pass > * > > igt at kms_pm_dc@dc5-dpms: > > o shard-lnl: FAIL IGT_8182/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html> (Intel XE#718 > ) -> > PASS shard-lnl-3/igt at kms_pm_dc@dc5-dpms.html> > * > > igt at kms_pm_dc@dc6-psr: > > o shard-lnl: FAIL IGT_8182/shard-lnl-7/igt at kms_pm_dc@dc6-psr.html> (Intel XE#1430 > ) -> > PASS shard-lnl-3/igt at kms_pm_dc@dc6-psr.html> > * > > igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-non- > lpsp.html> (Intel XE#2446 xe/kernel/issues/2446>) -> PASS tree/intel-xe/IGTPW_12407/shard-bmg-6/igt at kms_pm_rpm@dpms-mode- > unset-non-lpsp.html> > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_pm_rpm@dpms-mode-unset-non- > lpsp.html> (Intel XE#2446 xe/kernel/issues/2446>) -> PASS tree/intel-xe/IGTPW_12407/shard-dg2-433/igt at kms_pm_rpm@dpms- > mode-unset-non-lpsp.html> > * > > igt at kms_pm_rpm@system-suspend-modeset: > > o shard-dg2-set2: ABORT xe/IGT_8182/shard-dg2-432/igt at kms_pm_rpm@system-suspend- > modeset.html> (Intel XE#2625 drm/xe/kernel/issues/2625>) -> PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/ > igt at kms_pm_rpm@system-suspend-modeset.html> > o shard-bmg: DMESG-WARN xe/IGT_8182/shard-bmg-6/igt at kms_pm_rpm@system-suspend- > modeset.html> -> PASS xe/IGTPW_12407/shard-bmg-6/igt at kms_pm_rpm@system-suspend- > modeset.html> > * > > igt at kms_setmode@invalid-clone-single-crtc-stealing: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc- > stealing.html> (Intel XE#1435 drm/xe/kernel/issues/1435>) -> PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-4/ > igt at kms_setmode@invalid-clone-single-crtc-stealing.html> > * > > igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: > > o shard-lnl: FAIL IGT_8182/shard-lnl-7/igt at kms_universal_plane@cursor-fb- > leak at pipe-a-edp-1.html> (Intel XE#899 gitlab.freedesktop.org/drm/xe/kernel/issues/899>) -> PASS > lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html> > +1 other test pass > * > > igt at kms_vrr@cmrr at pipe-a-edp-1: > > o shard-lnl: FAIL IGT_8182/shard-lnl-8/igt at kms_vrr@cmrr at pipe-a-edp-1.html> (Intel > XE#2159 issues/2159>) -> PASS xe/IGTPW_12407/shard-lnl-4/igt at kms_vrr@cmrr at pipe-a-edp-1.html> > +1 other test pass > * > > igt at xe_exec_basic@many-execqueues-userptr-invalidate-race: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at xe_exec_basic@many-execqueues-userptr- > invalidate-race.html> (Intel XE#1130 gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> PASS > bmg-6/igt at xe_exec_basic@many-execqueues-userptr-invalidate- > race.html> +17 other tests pass > * > > igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap: > > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null- > defer-mmap.html> (Intel XE#1392 drm/xe/kernel/issues/1392>) -> PASS ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-433/ > igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html> +3 > other tests pass > * > > igt at xe_exec_basic@once-rebind: > > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at xe_exec_basic@once-rebind.html> > (Intel XE#1130 issues/1130>) -> PASS xe/IGTPW_12407/shard-dg2-464/igt at xe_exec_basic@once-rebind.html> > +12 other tests pass > * > > igt at xe_live_ktest@xe_dma_buf: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at xe_live_ktest@xe_dma_buf.html> (Intel > XE#1192 issues/1192>) -> PASS xe/IGTPW_12407/shard-bmg-8/igt at xe_live_ktest@xe_dma_buf.html> > > > Warnings > > * > > igt at kms_async_flips@invalid-async-flip-atomic: > > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_async_flips@invalid-async-flip- > atomic.html> (Intel XE#2423 xe/kernel/issues/2423> / i915#2575 gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP > dg2-432/igt at kms_async_flips@invalid-async-flip-atomic.html> > (Intel XE#3768 issues/3768>) > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_async_flips@invalid-async-flip- > atomic.html> (Intel XE#3007 xe/kernel/issues/3007>) -> SKIP tree/intel-xe/IGTPW_12407/shard-bmg-1/ > igt at kms_async_flips@invalid-async-flip-atomic.html> (Intel > XE#3768 ) > * > > igt at kms_big_fb@y-tiled-32bpp-rotate-180: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp- > rotate-180.html> (Intel XE#2136 drm/xe/kernel/issues/2136> / Intel XE#2231 gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP > bmg-2/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html> (Intel > XE#1124 ) > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp- > rotate-180.html> (Intel XE#2136 drm/xe/kernel/issues/2136>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-463/ > igt at kms_big_fb@y-tiled-32bpp-rotate-180.html> (Intel XE#1124 > ) > * > > igt at kms_big_fb@y-tiled-32bpp-rotate-90: > > o shard-bmg: SKIP IGT_8182/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp- > rotate-90.html> (Intel XE#1124 drm/xe/kernel/issues/1124>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/ > igt at kms_big_fb@y-tiled-32bpp-rotate-90.html> (Intel XE#2136 > / > Intel XE#2231 issues/2231>) > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-434/igt at kms_big_fb@y-tiled-32bpp- > rotate-90.html> (Intel XE#1124 drm/xe/kernel/issues/1124>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/ > igt at kms_big_fb@y-tiled-32bpp-rotate-90.html> (Intel XE#2136 > / > Intel XE#2351 issues/2351>) > * > > igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset- > overflow.html> (Intel XE#2136 drm/xe/kernel/issues/2136> / Intel XE#2231 gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP > bmg-1/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> > (Intel XE#607 issues/607>) > * > > igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: > > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4- > tiled-mtl-rc-ccs-cc.html> (Intel XE#2136 gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel > XE#2351 issues/2351>) -> SKIP xe/IGTPW_12407/shard-dg2-435/igt at kms_ccs@crc-primary- > rotation-180-4-tiled-mtl-rc-ccs-cc.html> (Intel XE#455 gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787 > ) > * > > igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: > > o shard-bmg: SKIP IGT_8182/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled- > lnl-ccs.html> (Intel XE#2652 drm/xe/kernel/issues/2652> / Intel XE#787 gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP > bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> > (Intel XE#2136 issues/2136> / Intel XE#2231 drm/xe/kernel/issues/2231>) > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled- > lnl-ccs.html> (Intel XE#3442 drm/xe/kernel/issues/3442>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/ > igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> (Intel > XE#2136 ) > * > > igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4- > tiled-mtl-rc-ccs-cc.html> (Intel XE#2136 gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel > XE#2231 issues/2231>) -> SKIP xe/IGTPW_12407/shard-bmg-5/igt at kms_ccs@crc-sprite-planes- > basic-4-tiled-mtl-rc-ccs-cc.html> (Intel XE#2887 gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +2 other > tests skip > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4- > tiled-mtl-rc-ccs-cc.html> (Intel XE#2136 gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP > dg2-433/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs- > cc.html> (Intel XE#455 kernel/issues/455> / Intel XE#787 gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +1 other test skip > * > > igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: > > o shard-bmg: SKIP IGT_8182/shard-bmg-2/igt at kms_ccs@missing-ccs-buffer-y-tiled- > gen12-rc-ccs-cc.html> (Intel XE#2887 gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) -> SKIP > bmg-8/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs- > cc.html> (Intel XE#2136 kernel/issues/2136> / Intel XE#2231 gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) +2 other > tests skip > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-434/igt at kms_ccs@missing-ccs-buffer-y-tiled- > gen12-rc-ccs-cc.html> (Intel XE#455 gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787 > ) -> > SKIP shard-dg2-435/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc- > ccs-cc.html> (Intel XE#2136 xe/kernel/issues/2136>) > * > > igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-after- > hibernate.html> (Intel XE#3007 drm/xe/kernel/issues/3007>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/ > igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html> (Intel > XE#2252 issues/2252>) +1 other test skip > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-after- > hibernate.html> (Intel XE#2423 drm/xe/kernel/issues/2423> / i915#2575 gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP > dg2-433/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html> > (Intel XE#373 issues/373>) +1 other test skip > * > > igt at kms_color@ctm-0-50: > > o shard-bmg: INCOMPLETE xe/IGT_8182/shard-bmg-8/igt at kms_color@ctm-0-50.html> -> SKIP > bmg-8/igt at kms_color@ctm-0-50.html> (Intel XE#3007 gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) > * > > igt at kms_content_protection@lic-type-0: > > o shard-bmg: FAIL IGT_8182/shard-bmg-5/igt at kms_content_protection@lic-type-0.html> > (Intel XE#1178 issues/1178>) -> SKIP xe/IGTPW_12407/shard-bmg-6/igt at kms_content_protection@lic- > type-0.html> (Intel XE#2341 xe/kernel/issues/2341>) > * > > igt at kms_content_protection@mei-interface: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_content_protection@mei- > interface.html> (Intel XE#3007 drm/xe/kernel/issues/3007>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/ > igt at kms_content_protection@mei-interface.html> (Intel XE#2341 > ) > * > > igt at kms_content_protection@srm: > > o shard-dg2-set2: FAIL IGT_8182/shard-dg2-463/igt at kms_content_protection@srm.html> > (Intel XE#1178 issues/1178>) -> INCOMPLETE intel-xe/IGTPW_12407/shard-dg2-433/ > igt at kms_content_protection@srm.html> (Intel XE#2715 gitlab.freedesktop.org/drm/xe/kernel/issues/2715>) > * > > igt at kms_cursor_crc@cursor-rapid-movement-max-size: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement- > max-size.html> (Intel XE#3007 drm/xe/kernel/issues/3007>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/ > igt at kms_cursor_crc@cursor-rapid-movement-max-size.html> (Intel > XE#2320 issues/2320>) +1 other test skip > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_cursor_crc@cursor-rapid-movement- > max-size.html> (Intel XE#2423 drm/xe/kernel/issues/2423> / i915#2575 gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP > dg2-434/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html> > (Intel XE#455 issues/455>) +2 other tests skip > * > > igt at kms_fbcon_fbt@fbc-suspend: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html> (Intel > XE#2136 issues/2136> / Intel XE#2231 drm/xe/kernel/issues/2231>) -> FAIL ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-5/ > igt at kms_fbcon_fbt@fbc-suspend.html> (Intel XE#1695 gitlab.freedesktop.org/drm/xe/kernel/issues/1695>) > * > > igt at kms_feature_discovery@chamelium: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_feature_discovery@chamelium.html> > (Intel XE#3007 issues/3007>) -> SKIP xe/IGTPW_12407/shard-bmg-2/ > igt at kms_feature_discovery@chamelium.html> (Intel XE#2372 > ) > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_feature_discovery@chamelium.html> > (Intel XE#2423 issues/2423> / i915#2575 i915/kernel/-/issues/2575>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/ > igt at kms_feature_discovery@chamelium.html> (Intel XE#701 > ) > * > > igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs- > upscaling: > > o shard-bmg: SKIP IGT_8182/shard-bmg-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile- > to-32bpp-ytilegen12rcccs-upscaling.html> (Intel XE#2293 > / > Intel XE#2380 issues/2380>) -> SKIP xe/IGTPW_12407/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp- > ytile-to-32bpp-ytilegen12rcccs-upscaling.html> (Intel XE#2136 > / > Intel XE#2231 issues/2231>) > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-ytile- > to-32bpp-ytilegen12rcccs-upscaling.html> (Intel XE#455 gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP > dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp- > ytilegen12rcccs-upscaling.html> (Intel XE#2136 gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel > XE#2351 ) > * > > igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile- > to-32bpp-yftile-downscaling.html> (Intel XE#2136 gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel > XE#2231 issues/2231>) -> SKIP xe/IGTPW_12407/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp- > yftile-to-32bpp-yftile-downscaling.html> (Intel XE#2293 > / > Intel XE#2380 issues/2380>) > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp- > yftile-to-32bpp-yftile-downscaling.html> (Intel XE#2136 > ) -> > SKIP shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-yftile- > to-32bpp-yftile-downscaling.html> (Intel XE#455 gitlab.freedesktop.org/drm/xe/kernel/issues/455>) > * > > igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p- > primscrn-shrfb-pgflip-blt.html> (Intel XE#2136 gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel > XE#2231 issues/2231>) -> SKIP xe/IGTPW_12407/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p- > primscrn-shrfb-pgflip-blt.html> (Intel XE#2312 gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +1 other test > skip > * > > igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: > > o shard-bmg: SKIP IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p- > scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2311 gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP > bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb- > draw-mmap-wc.html> (Intel XE#2312 gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +7 other > tests skip > * > > igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render: > > o shard-bmg: SKIP IGT_8182/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-rgb565- > draw-render.html> (Intel XE#2311 gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP > bmg-8/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html> > (Intel XE#2136 issues/2136> / Intel XE#2231 drm/xe/kernel/issues/2231>) +1 other test skip > * > > igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-shrfb- > scaledprimary.html> (Intel XE#2136 gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel > XE#2231 issues/2231>) -> SKIP xe/IGTPW_12407/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs- > shrfb-scaledprimary.html> (Intel XE#2311 gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +2 other > tests skip > * > > igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p- > primscrn-spr-indfb-draw-blt.html> (Intel XE#2136 gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel > XE#2231 issues/2231>) -> FAIL xe/IGTPW_12407/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p- > primscrn-spr-indfb-draw-blt.html> (Intel XE#2333 gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) > * > > igt at kms_frontbuffer_tracking@fbc-2p-rte: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p- > rte.html> (Intel XE#2312 kernel/issues/2312>) -> FAIL intel-xe/IGTPW_12407/shard-bmg-1/ > igt at kms_frontbuffer_tracking@fbc-2p-rte.html> (Intel XE#2333 > ) +2 > other tests fail > * > > igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: > > o shard-bmg: INCOMPLETE xe/IGT_8182/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p- > scndscrn-cur-indfb-move.html> (Intel XE#2050 gitlab.freedesktop.org/drm/xe/kernel/issues/2050>) -> FAIL > bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb- > move.html> (Intel XE#2333 xe/kernel/issues/2333>) > * > > igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: > > o shard-bmg: FAIL IGT_8182/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p- > scndscrn-shrfb-msflip-blt.html> (Intel XE#2333 gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP > bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip- > blt.html> (Intel XE#2312 kernel/issues/2312>) +1 other test skip > * > > igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: > > o shard-bmg: FAIL IGT_8182/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p- > scndscrn-spr-indfb-onoff.html> (Intel XE#2333 gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP > bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb- > onoff.html> (Intel XE#2136 xe/kernel/issues/2136> / Intel XE#2231 gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) +1 other test > skip > * > > igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: > > o shard-bmg: FAIL IGT_8182/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-shrfb- > scaledprimary.html> (Intel XE#2333 gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> INCOMPLETE > bmg-8/igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html> > (Intel XE#2050 issues/2050>) > * > > igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt: > > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p- > primscrn-pri-shrfb-draw-blt.html> (Intel XE#2136 gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel > XE#2351 issues/2351>) -> SKIP xe/IGTPW_12407/shard-dg2-434/ > igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw- > blt.html> (Intel XE#651 kernel/issues/651>) +2 other tests skip > * > > igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt: > > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-2p- > primscrn-shrfb-pgflip-blt.html> (Intel XE#651 gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> SKIP > dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb- > pgflip-blt.html> (Intel XE#2136 drm/xe/kernel/issues/2136>) +1 other test skip > * > > igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p- > scndscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2312 gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP > bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur- > indfb-draw-mmap-wc.html> (Intel XE#2311 gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +5 other > tests skip > * > > igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: > > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p- > primscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2136 gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP > dg2-432/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri- > shrfb-draw-mmap-wc.html> (Intel XE#653 gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +1 other test skip > * > > igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: > > o shard-bmg: SKIP IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri- > indfb-multidraw.html> (Intel XE#2313 gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP > bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb- > multidraw.html> (Intel XE#2312 drm/xe/kernel/issues/2312>) +13 other tests skip > * > > igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p- > primscrn-indfb-plflip-blt.html> (Intel XE#2312 gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP > bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb- > plflip-blt.html> (Intel XE#2313 drm/xe/kernel/issues/2313>) +3 other tests skip > * > > igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p- > primscrn-spr-indfb-move.html> (Intel XE#2312 gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP > bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb- > move.html> (Intel XE#2136 xe/kernel/issues/2136> / Intel XE#2231 gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) > * > > igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-indfb- > scaledprimary.html> (Intel XE#2136 gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel > XE#2231 issues/2231>) -> SKIP xe/IGTPW_12407/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr- > indfb-scaledprimary.html> (Intel XE#2313 gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +4 other > tests skip > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr- > indfb-scaledprimary.html> (Intel XE#2136 gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel > XE#2351 issues/2351>) -> SKIP xe/IGTPW_12407/shard-dg2-434/ > igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html> > (Intel XE#653 issues/653>) +1 other test skip > * > > igt at kms_frontbuffer_tracking@psr-modesetfrombusy: > > o shard-bmg: SKIP IGT_8182/shard-bmg-4/igt at kms_frontbuffer_tracking@psr- > modesetfrombusy.html> (Intel XE#2313 gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP > bmg-8/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html> > (Intel XE#2136 issues/2136> / Intel XE#2231 drm/xe/kernel/issues/2231>) +2 other tests skip > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-433/igt at kms_frontbuffer_tracking@psr- > modesetfrombusy.html> (Intel XE#653 gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP > dg2-435/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html> > (Intel XE#2136 issues/2136>) +3 other tests skip > * > > igt at kms_histogram@global-basic: > > o shard-bmg: SKIP IGT_8182/shard-bmg-8/igt at kms_histogram@global-basic.html> (Intel > XE#3898 issues/3898>) -> SKIP xe/IGTPW_12407/shard-bmg-8/igt at kms_histogram@global-basic.html> > (Intel XE#3007 issues/3007>) > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-432/igt at kms_histogram@global-basic.html> > (Intel XE#455 issues/455>) -> SKIP IGTPW_12407/shard-dg2-435/igt at kms_histogram@global-basic.html> > (Intel XE#2423 issues/2423> / i915#2575 i915/kernel/-/issues/2575>) > * > > igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: > > o shard-bmg: SKIP IGT_8182/shard-bmg-4/igt at kms_psr2_sf@psr2-overlay-plane-move- > continuous-exceed-fully-sf.html> (Intel XE#1489 gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) -> SKIP > bmg-8/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed- > fully-sf.html> (Intel XE#2136 drm/xe/kernel/issues/2136> / Intel XE#2231 gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) +1 other test > skip > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-433/igt at kms_psr2_sf@psr2-overlay-plane-move- > continuous-exceed-fully-sf.html> (Intel XE#1489 gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) -> SKIP > dg2-435/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous- > exceed-fully-sf.html> (Intel XE#2136 gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +1 other test > skip > * > > igt at kms_psr2_su@frontbuffer-xrgb8888: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html> > (Intel XE#2136 issues/2136> / Intel XE#2231 drm/xe/kernel/issues/2231>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-6/ > igt at kms_psr2_su@frontbuffer-xrgb8888.html> (Intel XE#2387 > ) > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_psr2_su@frontbuffer- > xrgb8888.html> (Intel XE#2136 drm/xe/kernel/issues/2136>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/ > igt at kms_psr2_su@frontbuffer-xrgb8888.html> (Intel XE#1122 > ) > * > > igt at kms_psr@fbc-pr-sprite-blt: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_psr@fbc-pr-sprite-blt.html> (Intel > XE#2136 issues/2136> / Intel XE#2231 drm/xe/kernel/issues/2231>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at kms_psr@fbc- > pr-sprite-blt.html> (Intel XE#2234 gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel > XE#2850 ) > * > > igt at kms_psr@psr-basic: > > o shard-bmg: SKIP IGT_8182/shard-bmg-3/igt at kms_psr@psr-basic.html> (Intel XE#2234 > / > Intel XE#2850 issues/2850>) -> SKIP xe/IGTPW_12407/shard-bmg-8/igt at kms_psr@psr-basic.html> (Intel > XE#2136 issues/2136> / Intel XE#2231 drm/xe/kernel/issues/2231>) +1 other test skip > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-434/igt at kms_psr@psr-basic.html> (Intel > XE#2850 issues/2850> / Intel XE#929 xe/kernel/issues/929>) -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_psr@psr- > basic.html> (Intel XE#2136 xe/kernel/issues/2136>) > * > > igt at kms_psr@psr-sprite-plane-onoff: > > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-436/igt at kms_psr@psr-sprite-plane-onoff.html> > (Intel XE#2850 issues/2850> / Intel XE#929 xe/kernel/issues/929>) -> SKIP tree/intel-xe/IGTPW_12407/shard-dg2-435/igt at kms_psr@psr-sprite- > plane-onoff.html> (Intel XE#2351 gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) > * > > igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled- > reflect-x-270.html> (Intel XE#3007 gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) -> SKIP > bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> > (Intel XE#3414 issues/3414> / Intel XE#3904 drm/xe/kernel/issues/3904>) > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled- > reflect-x-270.html> (Intel XE#2423 gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575 > ) > -> SKIP shard-dg2-433/igt at kms_rotation_crc@primary-yf-tiled-reflect- > x-270.html> (Intel XE#3414 xe/kernel/issues/3414>) > * > > igt at kms_tiled_display@basic-test-pattern: > > o shard-dg2-set2: FAIL IGT_8182/shard-dg2-432/igt at kms_tiled_display@basic-test- > pattern.html> (Intel XE#1729 drm/xe/kernel/issues/1729>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-463/ > igt at kms_tiled_display@basic-test-pattern.html> (Intel XE#362 > ) > * > > igt at xe_compute_preempt@compute-threadgroup-preempt: > > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at xe_compute_preempt@compute- > threadgroup-preempt.html> (Intel XE#1130 gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP > dg2-464/igt at xe_compute_preempt@compute-threadgroup-preempt.html> > (Intel XE#1280 issues/1280> / Intel XE#455 xe/kernel/issues/455>) > * > > igt at xe_eudebug@basic-vm-access-parameters-userptr: > > o shard-bmg: SKIP IGT_8182/shard-bmg-8/igt at xe_eudebug@basic-vm-access-parameters- > userptr.html> (Intel XE#3889 drm/xe/kernel/issues/3889>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/ > igt at xe_eudebug@basic-vm-access-parameters-userptr.html> (Intel > XE#1130 ) > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-464/igt at xe_eudebug@basic-vm-access- > parameters-userptr.html> (Intel XE#3889 gitlab.freedesktop.org/drm/xe/kernel/issues/3889>) -> SKIP > dg2-435/igt at xe_eudebug@basic-vm-access-parameters-userptr.html> > (Intel XE#1130 issues/1130>) > * > > igt at xe_eudebug@basic-vm-bind-extended-discovery: > > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-extended- > discovery.html> (Intel XE#1130 drm/xe/kernel/issues/1130>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-464/ > igt at xe_eudebug@basic-vm-bind-extended-discovery.html> (Intel > XE#2905 ) > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-extended- > discovery.html> (Intel XE#1130 drm/xe/kernel/issues/1130>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-2/ > igt at xe_eudebug@basic-vm-bind-extended-discovery.html> (Intel > XE#2905 issues/2905>) +1 other test skip > * > > igt at xe_evict@evict-beng-mixed-threads-large: > > o shard-bmg: TIMEOUT IGT_8182/shard-bmg-3/igt at xe_evict@evict-beng-mixed-threads- > large.html> (Intel XE#1473 xe/kernel/issues/1473>) -> SKIP tree/intel-xe/IGTPW_12407/shard-bmg-8/igt at xe_evict@evict-beng- > mixed-threads-large.html> (Intel XE#1130 gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) > * > > igt at xe_evict@evict-mixed-many-threads-small: > > o shard-bmg: FAIL IGT_8182/shard-bmg-7/igt at xe_evict@evict-mixed-many-threads- > small.html> (Intel XE#1000 xe/kernel/issues/1000>) -> TIMEOUT tree/intel-xe/IGTPW_12407/shard-bmg-1/igt at xe_evict@evict-mixed- > many-threads-small.html> (Intel XE#1473 gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel > XE#2472 ) > * > > igt at xe_evict@evict-mixed-threads-large: > > o shard-bmg: TIMEOUT IGT_8182/shard-bmg-3/igt at xe_evict@evict-mixed-threads- > large.html> (Intel XE#1473 xe/kernel/issues/1473> / Intel XE#2472 gitlab.freedesktop.org/drm/xe/kernel/issues/2472>) -> INCOMPLETE > bmg-6/igt at xe_evict@evict-mixed-threads-large.html> (Intel > XE#1473 ) > * > > igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap: > > o shard-bmg: SKIP IGT_8182/shard-bmg-3/igt at xe_exec_basic@multigpu-no-exec-basic- > defer-mmap.html> (Intel XE#2322 drm/xe/kernel/issues/2322>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/ > igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html> (Intel > XE#1130 ) > * > > igt at xe_exec_basic@multigpu-once-null-rebind: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null- > rebind.html> (Intel XE#1130 xe/kernel/issues/1130>) -> SKIP tree/intel-xe/IGTPW_12407/shard-bmg-2/ > igt at xe_exec_basic@multigpu-once-null-rebind.html> (Intel XE#2322 > ) > * > > igt at xe_exec_fault_mode@many-userptr-invalidate-imm: > > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@many-userptr- > invalidate-imm.html> (Intel XE#288 gitlab.freedesktop.org/drm/xe/kernel/issues/288>) -> SKIP > dg2-435/igt at xe_exec_fault_mode@many-userptr-invalidate-imm.html> > (Intel XE#1130 issues/1130>) +2 other tests skip > * > > igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race: > > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at xe_exec_fault_mode@twice- > bindexecqueue-userptr-invalidate-race.html> (Intel XE#1130 > ) -> > SKIP shard-dg2-463/igt at xe_exec_fault_mode@twice-bindexecqueue- > userptr-invalidate-race.html> (Intel XE#288 gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +1 other test skip > * > > igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: > > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at xe_exec_mix_modes@exec-spinner- > interrupted-dma-fence.html> (Intel XE#1130 gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP > dg2-436/igt at xe_exec_mix_modes@exec-spinner-interrupted-dma- > fence.html> (Intel XE#2360 xe/kernel/issues/2360>) > * > > igt at xe_media_fill@media-fill: > > o shard-bmg: SKIP IGT_8182/shard-bmg-2/igt at xe_media_fill@media-fill.html> (Intel > XE#2459 issues/2459> / Intel XE#2596 drm/xe/kernel/issues/2596>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-bmg-8/ > igt at xe_media_fill@media-fill.html> (Intel XE#1130 gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-434/igt at xe_media_fill@media-fill.html> (Intel > XE#560 issues/560>) -> SKIP IGTPW_12407/shard-dg2-435/igt at xe_media_fill@media-fill.html> > (Intel XE#1130 issues/1130>) > * > > igt at xe_oa@stress-open-close: > > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-464/igt at xe_oa@stress-open-close.html> (Intel > XE#2541 issues/2541> / Intel XE#3573 drm/xe/kernel/issues/3573>) -> SKIP ci.01.org/tree/intel-xe/IGTPW_12407/shard-dg2-435/ > igt at xe_oa@stress-open-close.html> (Intel XE#1130 gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) > * > > igt at xe_peer2peer@read: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at xe_peer2peer@read.html> (Intel XE#2557 > ) -> > SKIP shard-bmg-6/igt at xe_peer2peer@read.html> (Intel XE#2427 gitlab.freedesktop.org/drm/xe/kernel/issues/2427>) > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at xe_peer2peer@read.html> (Intel > XE#1061 issues/1061>) -> FAIL xe/IGTPW_12407/shard-dg2-464/igt at xe_peer2peer@read.html> (Intel > XE#1173 ) > * > > igt at xe_peer2peer@write: > > o shard-bmg: SKIP IGT_8182/shard-bmg-2/igt at xe_peer2peer@write.html> (Intel XE#2427 > ) -> > SKIP shard-bmg-8/igt at xe_peer2peer@write.html> (Intel XE#2557 > ) > o shard-dg2-set2: FAIL IGT_8182/shard-dg2-434/igt at xe_peer2peer@write.html> (Intel > XE#1173 issues/1173>) -> SKIP xe/IGTPW_12407/shard-dg2-435/igt at xe_peer2peer@write.html> (Intel > XE#1061 ) > * > > igt at xe_query@multigpu-query-uc-fw-version-huc: > > o shard-bmg: SKIP IGT_8182/shard-bmg-6/igt at xe_query@multigpu-query-uc-fw-version- > huc.html> (Intel XE#1130 kernel/issues/1130>) -> SKIP intel-xe/IGTPW_12407/shard-bmg-6/igt at xe_query@multigpu-query-uc- > fw-version-huc.html> (Intel XE#944 gitlab.freedesktop.org/drm/xe/kernel/issues/944>) > o shard-dg2-set2: SKIP IGT_8182/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw- > version-huc.html> (Intel XE#1130 gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP > dg2-433/igt at xe_query@multigpu-query-uc-fw-version-huc.html> > (Intel XE#944 issues/944>) > > > Build changes > > * IGT: IGT_8182 -> IGTPW_12407 > * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> > xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a > > IGTPW_12407: 0afa7b205dd6a755ad29c432e9bcca2d0d552917 @ https:// > gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https:// > gitlab.freedesktop.org/drm/igt-gpu-tools.git > xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: > 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 > xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: > 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a > From stuart.summers at intel.com Mon Jan 13 16:00:24 2025 From: stuart.summers at intel.com (Summers, Stuart) Date: Mon, 13 Jan 2025 16:00:24 +0000 Subject: [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes In-Reply-To: <63cc246d2c4e3929dedce3058cd93d9e17ba1a83.camel@intel.com> References: <20250108225424.95051-1-stuart.summers@intel.com> <63cc246d2c4e3929dedce3058cd93d9e17ba1a83.camel@intel.com> Message-ID: On Thu, 2025-01-09 at 15:39 +0000, Summers, Stuart wrote: > On Wed, 2025-01-08 at 23:38 +0000, Cavitt, Jonathan wrote: > > -----Original Message----- > > From: igt-dev On Behalf Of > > Stuart Summers > > Sent: Wednesday, January 8, 2025 2:54 PM > > Cc: igt-dev at lists.freedesktop.org; Summers, Stuart > > > > Subject: [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind > > after the stress test completes > > > > > > The test is submitting workloads in a tight loop and then > > > destroying the exec queue for each of these. There is a > > > potential that the GuC IDs could get used up during these > > > submissions and before a GT reset goes through. If that > > > happens, the subsequent submissions will essentially be > > > "lost" in that they aren't submitted to GuC and just wait > > > for a submission timeout to happen, at which point we do > > > a reset_async in the driver. What seems to be happening > > > however is these workloads are lingering beyond the > > > completion of the xe_exec_reset test. Then when the > > > reset_async eventually goes through, the submissions > > > from a next test can also hang (or possibly because > > > they too ran into the guc_id exhaustion case). > > > > > > Add an explicit vm_unbind before destroying the VM > > > to give time for those submissions to complete > > > before the test ends. > > > > > > https://gitlab.freedesktop.org/drm/xe/kernel/issues/4015 > > > > I think this needs to be: > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4015 > > Ok I'll update. > > > But otherwise: > > Reviewed-by: Jonathan Cavitt > > Thanks! > > > Well, assuming this works, at least.? I might be reading a bit too > > far into the > > commit message and kernel issue comment, but it seems you aren't > > too > > certain this will work? > > Yeah before merging I need to make sure this fully fixes the issue :) > This particular test was already passing so just need to review the > logs and make sure the cleanup is consistently happening. I'll report > back here with the details... Ok I've done quite a bit of testing here over the past couple of days and I can't reproduce this behavior on the latest without the IGT change I have here. Let's drop this change for now. If this pops back up we can revisit. Thanks for the look here Jonathan! -Stuart > > Thanks, > Stuart > > > -Jonathan Cavitt > > > > > > > > Signed-off-by: Stuart Summers > > > --- > > > ?tests/intel/xe_exec_reset.c | 2 ++ > > > ?1 file changed, 2 insertions(+) > > > > > > diff --git a/tests/intel/xe_exec_reset.c > > > b/tests/intel/xe_exec_reset.c > > > index a3eaf8bbf..ca5566d11 100644 > > > --- a/tests/intel/xe_exec_reset.c > > > +++ b/tests/intel/xe_exec_reset.c > > > @@ -645,6 +645,8 @@ static void submit_jobs(struct gt_thread_data > > > *t) > > > ????????????????xe_exec_queue_destroy(fd, exec.exec_queue_id); > > > ????????} > > > ? > > > +???????xe_vm_unbind_sync(fd, vm, 0, addr, bo_size); > > > + > > > ????????munmap(data, bo_size); > > > ????????gem_close(fd, bo); > > > ????????xe_vm_destroy(fd, vm); > > > -- > > > 2.34.1 > > > > > > > From patchwork at emeril.freedesktop.org Mon Jan 13 18:41:11 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 13 Jan 2025 18:41:11 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_Remove_redundant_hotplug?= =?utf-8?q?_detection_assertion_=28rev3=29?= In-Reply-To: <20250109200911.1243517-1-ramanaidu.naladala@intel.com> References: <20250109200911.1243517-1-ramanaidu.naladala@intel.com> Message-ID: <173679367192.3324133.3450488948158247289@b555e5b46a47> == Series Details == Series: Remove redundant hotplug detection assertion (rev3) URL : https://patchwork.freedesktop.org/series/143141/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15934_full -> IGTPW_12422_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12422_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12422_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_12422/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12422_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-snb: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-snb2/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_pm_rpm@cursor: - shard-rkl: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-1/igt at kms_pm_rpm@cursor.html * igt at perf_pmu@busy-check-all at vcs1: - shard-mtlp: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-5/igt at perf_pmu@busy-check-all at vcs1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-6/igt at perf_pmu@busy-check-all at vcs1.html Known issues ------------ Here are the changes found in IGTPW_12422_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#6230]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-1/igt at api_intel_bb@crc32.html * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at api_intel_bb@object-reloc-purge-cache.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-4/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-18/igt at device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-4/igt at device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-3/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-hang at rcs0: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +6 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-6/igt at drm_fdinfo@busy-hang at rcs0.html * igt at drm_fdinfo@most-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +13 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-13/igt at drm_fdinfo@most-busy-check-all.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +24 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-8/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-4/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#9323]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-7/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-10/igt at gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-2/igt at gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-13/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#6335]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-2/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#6335]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-2/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8562]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-8/igt at gem_create@create-ext-set-pat.html - shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#8562]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][24] ([i915#12353]) +1 other test incomplete [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk8/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_persistence@engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +4 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-snb2/igt at gem_ctx_persistence@engines-hostile-preempt.html * igt at gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#8555]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-8/igt at gem_ctx_persistence@hang.html * igt at gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-6/igt at gem_ctx_persistence@heartbeat-close.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#280]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-11/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][30] ([i915#13390]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk2/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@reset-stress: - shard-dg1: NOTRUN -> [FAIL][31] ([i915#12543] / [i915#5784]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-13/igt at gem_eio@reset-stress.html * igt at gem_eio@unwedge-stress: - shard-dg1: NOTRUN -> [FAIL][32] ([i915#12714] / [i915#5784]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-13/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-pair: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4771]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-3/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@parallel-balancer: - shard-tglu: NOTRUN -> [SKIP][35] ([i915#4525]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-2/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][36] ([i915#4525]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#4525]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-4/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_capture@capture-invisible: - shard-tglu-1: NOTRUN -> [SKIP][38] ([i915#6334]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at gem_exec_capture@capture-invisible.html - shard-dg1: NOTRUN -> [SKIP][39] ([i915#6334]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-17/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#6344]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-7/igt at gem_exec_capture@capture-recoverable.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4812]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at gem_exec_fence@submit.html - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-8/igt at gem_exec_fence@submit.html - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-7/igt at gem_exec_fence@submit.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +5 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-7/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#5107]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-1/igt at gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][47] ([i915#5107]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-cpu-gtt: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#3281]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-4/igt at gem_exec_reloc@basic-cpu-gtt.html * igt at gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +19 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-4/igt at gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-11/igt at gem_exec_schedule@reorder-wide.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-7/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#7276]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-5/igt at gem_exec_schedule@semaphore-power.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-18/igt at gem_fence_thrash@bo-write-verify-x.html - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-7/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4860]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at gem_fence_thrash@bo-write-verify-y.html * igt at gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][57] ([i915#2190]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk3/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-6/igt at gem_lmem_swapping@heavy-random.html - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4613]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-6/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk8/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@massive-random: - shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#4613]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at gem_lmem_swapping@massive-random.html * igt at gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +6 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-3/igt at gem_lmem_swapping@parallel-multi.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#12193]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_lmem_swapping@verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4565]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#284]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-5/igt at gem_media_vme.html * igt at gem_mmap@basic-small-bo: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4083]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-7/igt at gem_mmap@basic-small-bo.html * igt at gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +10 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at gem_mmap_wc@invalid-flags.html * igt at gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at gem_mmap_wc@read.html * igt at gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +8 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at gem_partial_pwrite_pread@reads.html * igt at gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-18/igt at gem_partial_pwrite_pread@reads-snoop.html * igt at gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][71] ([i915#2658]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at gem_pread@exhaustion.html - shard-snb: NOTRUN -> [WARN][72] ([i915#2658]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-snb5/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3282]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-3/igt at gem_pread@snoop.html * igt at gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4270]) +7 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-1/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][75] ([i915#12917] / [i915#12964]) +2 other tests timeout [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-4/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#13398]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at gem_pxp@hw-rejects-pxp-context.html - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#13398]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-1/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: NOTRUN -> [TIMEOUT][78] ([i915#12964]) +1 other test timeout [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-4/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#4270]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-5/igt at gem_pxp@reject-modify-context-protection-off-1.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-18/igt at gem_pxp@verify-pxp-stale-ctx-execution.html * igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#5190] / [i915#8428]) +7 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-10/igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt at gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8428]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-1/igt at gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#8411]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-7/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4079]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-11/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4077]) +19 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-3/igt at gem_tiled_partial_pwrite_pread@writes.html - shard-rkl: NOTRUN -> [SKIP][86] ([i915#3282]) +6 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-1/igt at gem_tiled_partial_pwrite_pread@writes.html - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4077]) +5 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-12/igt at gem_tiled_partial_pwrite_pread@writes.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][88] ([i915#13263] / [i915#13449]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk1/igt at gem_tiled_swapping@non-threaded.html * igt at gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4879]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-7/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-6/igt at gem_userptr_blits@access-control.html - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at gem_userptr_blits@access-control.html - shard-tglu: NOTRUN -> [SKIP][92] ([i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-10/igt at gem_userptr_blits@access-control.html * igt at gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-8/igt at gem_userptr_blits@coherency-unsync.html - shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#3297]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at gem_userptr_blits@coherency-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][95] ([i915#3323]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk8/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3282] / [i915#3297]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4880]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-3/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#3297] / [i915#4958]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#3297]) +4 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-7/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][100] +22 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-11/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@allowed-single: - shard-glk: [PASS][101] -> [ABORT][102] ([i915#5566]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-glk1/igt at gen9_exec_parse@allowed-single.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk4/igt at gen9_exec_parse@allowed-single.html * igt at gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#2856]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-6/igt at gen9_exec_parse@basic-rejected-ctx-param.html * igt at gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#2527]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-6/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-oversize: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#2527] / [i915#2856]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#2527]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-18/igt at gen9_exec_parse@bb-start-cmd.html - shard-tglu: NOTRUN -> [SKIP][107] ([i915#2527] / [i915#2856]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-2/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#2856]) +5 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-3/igt at gen9_exec_parse@unaligned-access.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#4881]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-8/igt at i915_fb_tiling.html * igt at i915_module_load@resize-bar: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#6412]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at i915_module_load@resize-bar.html * igt at i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#8399]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-6/igt at i915_pm_freq_api@freq-reset-multiple.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#6590]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-1/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [PASS][113] -> [FAIL][114] ([i915#12942]) +1 other test fail [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-2/igt at i915_pm_rc6_residency@rc6-accuracy.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-7/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [WARN][115] ([i915#2681]) +4 other tests warn [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-2/igt at i915_pm_rc6_residency@rc6-idle.html * igt at i915_pm_rpm@system-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][116] ([i915#12797]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk2/igt at i915_pm_rpm@system-suspend.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#11681] / [i915#6621]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at i915_pm_rps@min-max-config-idle.html - shard-dg1: NOTRUN -> [SKIP][118] ([i915#11681] / [i915#6621]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-13/igt at i915_pm_rps@min-max-config-idle.html - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#11681] / [i915#6621]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-1/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#11681]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-11/igt at i915_pm_rps@thresholds-idle.html * igt at i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#6245]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][122] ([i915#6245]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-10/igt at i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][123] ([i915#6245]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-7/igt at i915_query@hwconfig_table.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#5723]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-4/igt at i915_query@test-query-geometry-subslices.html * igt at i915_suspend@basic-s3-without-i915: - shard-glk: [PASS][125] -> [INCOMPLETE][126] ([i915#4817]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-glk5/igt at i915_suspend@basic-s3-without-i915.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk7/igt at i915_suspend@basic-s3-without-i915.html * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4212]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-11/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt at kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4212]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at kms_addfb_basic@tile-pitch-mismatch.html - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#4212]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-4/igt at kms_addfb_basic@tile-pitch-mismatch.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-mtlp: [PASS][130] -> [FAIL][131] ([i915#10991]) +1 other test fail [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-4/igt at kms_async_flips@alternate-sync-async-flip.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-8/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-glk: [PASS][132] -> [FAIL][133] ([i915#10991] / [i915#13335]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-glk5/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk8/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-2: - shard-glk: [PASS][134] -> [FAIL][135] ([i915#13335]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-glk5/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-2.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk8/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-2.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][136] ([i915#8709]) +7 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-13/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-atomic at pipe-b-hdmi-a-3-4-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#8709]) +11 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-3-4-rc-ccs.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#1769] / [i915#3555]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-11/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#5286]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#5286]) +7 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-4/igt at kms_big_fb@4-tiled-16bpp-rotate-180.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538] / [i915#5286]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-13/igt at kms_big_fb@4-tiled-8bpp-rotate-270.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_12422/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-async-flip: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#5286]) +5 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-6/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt at kms_big_fb@linear-32bpp-rotate-0: - shard-dg1: [PASS][144] -> [FAIL][145] ([i915#5138]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg1-18/igt at kms_big_fb@linear-32bpp-rotate-0.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at kms_big_fb@linear-32bpp-rotate-0.html - shard-mtlp: [PASS][146] -> [FAIL][147] ([i915#5138]) +1 other test fail [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-6/igt at kms_big_fb@linear-32bpp-rotate-0.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-7/igt at kms_big_fb@linear-32bpp-rotate-0.html * igt at kms_big_fb@linear-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_12422/shard-rkl-5/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#3638]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-13/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#4538] / [i915#5190]) +20 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-3/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#5190]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-4/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][152] +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-3/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#4538]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-18/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#6187]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-1/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][155] +30 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-1/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-y-tiled-ccs at pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6095]) +34 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-9/igt at kms_ccs@bad-aux-stride-y-tiled-ccs at pipe-d-hdmi-a-1.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][157] ([i915#6095]) +19 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/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-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#12313]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-5/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][159] ([i915#12313]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-4/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#6095]) +105 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/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@bad-rotation-90-y-tiled-gen12-rc-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_12422/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@ccs-on-another-bo-y-tiled-gen12-rc-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_12422/shard-mtlp-3/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#12313]) +5 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-11/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#6095]) +16 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-1/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#10307] / [i915#6095]) +168 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-1/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-dg2-rc-ccs at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#6095]) +163 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-12/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-3.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#11616] / [i915#7213]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-7/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#3742]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-1/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#4087]) +3 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3.html * igt at kms_chamelium_edid@hdmi-edid-read: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-6/igt at kms_chamelium_edid@hdmi-edid-read.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +12 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-11/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +8 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-6/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +12 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-5/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_chamelium_hpd@hdmi-hpd-fast: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +4 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_chamelium_hpd@hdmi-hpd-fast.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +5 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-12/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [TIMEOUT][176] ([i915#7173]) +1 other test timeout [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-10/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#9424]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-5/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3299]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-1/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3116]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-7/igt at kms_content_protection@dp-mst-type-1.html - shard-dg1: NOTRUN -> [SKIP][180] ([i915#3299]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at kms_content_protection@dp-mst-type-1.html - shard-tglu: NOTRUN -> [SKIP][181] ([i915#3116] / [i915#3299]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-10/igt at kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3299]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-6/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#7118]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-4/igt at kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#7116]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-12/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#6944] / [i915#9424]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-5/igt at kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][187] ([i915#7118] / [i915#9424]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-3/igt at kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][188] ([i915#7116] / [i915#9424]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-17/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-max-size: - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#3555]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-max-size.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#13049]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-4/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][191] ([i915#13049]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-2/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#13049]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-13/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-tglu: NOTRUN -> [SKIP][193] ([i915#13049]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-3/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#13049]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-1/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#9809]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-1/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#4103] / [i915#4213]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/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][197] ([i915#4103]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#13046] / [i915#5354]) +13 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-7/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][199] ([i915#2346]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk8/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#9067]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-7/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_12422/shard-tglu-7/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#9723]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-6/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#3555]) +11 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-7/igt at kms_display_modes@extended-mode-basic.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#3555]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-13/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2: [PASS][205] -> [SKIP][206] ([i915#3555]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg2-10/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-7/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][207] ([i915#3804]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/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-dg2: NOTRUN -> [SKIP][208] ([i915#1257]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at kms_dp_aux_dev.html - shard-rkl: NOTRUN -> [SKIP][209] ([i915#1257]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-7/igt at kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#1257]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-13/igt at kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][211] ([i915#1257]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-9/igt at kms_dp_aux_dev.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#8812]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-1/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-basic: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#3840]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3840] / [i915#9688]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-8/igt at kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][215] ([i915#3840]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-5/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#3840]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-1/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][217] ([i915#3840]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-6/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-2/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#3840]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-7/igt at kms_dsc@dsc-with-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#3840] / [i915#9053]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#3469]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-9/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#3955]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-5/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#4854]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-8/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#1839]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#658]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-7/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][226] ([i915#658]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-3/igt at kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][227] ([i915#658]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-1/igt at kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][228] ([i915#658]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-18/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#9934]) +12 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-4/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#8381]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-7/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3637]) +3 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-2/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#3637]) +6 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-9/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#9934]) +11 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-7/igt at kms_flip@2x-plain-flip.html - shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#3637]) +4 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#9934]) +6 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-12/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@basic-flip-vs-wf_vblank: - shard-dg2: [PASS][236] -> [FAIL][237] ([i915#11989]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg2-4/igt at kms_flip@basic-flip-vs-wf_vblank.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-3/igt at kms_flip@basic-flip-vs-wf_vblank.html * igt at kms_flip@basic-flip-vs-wf_vblank at b-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][238] ([i915#11989]) +3 other tests fail [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-3/igt at kms_flip@basic-flip-vs-wf_vblank at b-hdmi-a3.html * igt at kms_flip@blocking-wf_vblank at a-hdmi-a1: - shard-rkl: NOTRUN -> [FAIL][239] ([i915#11989]) +1 other test fail [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-2/igt at kms_flip@blocking-wf_vblank at a-hdmi-a1.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-mtlp: [PASS][240] -> [FAIL][241] ([i915#11989]) +3 other tests fail [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-1/igt at kms_flip@flip-vs-absolute-wf_vblank.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-1/igt at kms_flip@flip-vs-absolute-wf_vblank.html - shard-snb: NOTRUN -> [FAIL][242] ([i915#11989]) +1 other test fail [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-snb5/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@plain-flip-fb-recreate-interruptible: - shard-glk: NOTRUN -> [FAIL][243] ([i915#11989]) +1 other test fail [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk7/igt at kms_flip@plain-flip-fb-recreate-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at b-hdmi-a1: - shard-snb: [PASS][244] -> [FAIL][245] ([i915#11989]) +4 other tests fail [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-snb2/igt at kms_flip@plain-flip-fb-recreate-interruptible at b-hdmi-a1.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-snb7/igt at kms_flip@plain-flip-fb-recreate-interruptible at b-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at d-hdmi-a1: - shard-tglu: [PASS][246] -> [FAIL][247] ([i915#11989]) +4 other tests fail [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-tglu-7/igt at kms_flip@plain-flip-fb-recreate-interruptible at d-hdmi-a1.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-8/igt at kms_flip@plain-flip-fb-recreate-interruptible at d-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#2672] / [i915#3555]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-4/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#2587] / [i915#2672]) +5 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-9/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-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672] / [i915#3555]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-13/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-tglu: NOTRUN -> [SKIP][251] ([i915#2587] / [i915#2672] / [i915#3555]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-6/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#8813]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#2672] / [i915#3555]) +4 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-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-upscaling: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +3 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-17/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][257] ([i915#2587] / [i915#2672]) +4 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-17/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-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#3555]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555]) +6 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-3/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][261] ([i915#2672]) +6 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-3/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-32bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#2672]) +6 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-11/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-indfb-draw-blt: - shard-dg2: [PASS][263] -> [FAIL][264] ([i915#6880]) +1 other test fail [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [FAIL][265] ([i915#6880]) +1 other test fail [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-snb: [PASS][266] -> [SKIP][267] +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-snb2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#8708]) +30 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#5354]) +58 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#1825]) +6 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][271] ([i915#10056] / [i915#13353]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk3/igt at kms_frontbuffer_tracking@fbc-suspend.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_12422/shard-rkl-5/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#10433] / [i915#3458]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][274] +63 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-6/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#3023]) +37 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][276] +26 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-18/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#8708]) +8 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#5439]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-9/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][279] +30 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#1825]) +45 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-1/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#3458]) +35 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-11/igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#3458]) +17 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.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_12422/shard-dg2-7/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_12422/shard-tglu-7/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-toggle: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-12/igt at kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-4/igt at kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-1/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at kms_hdr@static-toggle-suspend.html * igt at kms_histogram@algo-basic: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#13389]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-4/igt at kms_histogram@algo-basic.html * igt at kms_histogram@global-basic: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#13388]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-7/igt at kms_histogram@global-basic.html - shard-dg1: NOTRUN -> [SKIP][291] ([i915#13388]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at kms_histogram@global-basic.html * igt at kms_histogram@global-color: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#13388]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-4/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#12388]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-7/igt at kms_joiner@basic-force-big-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#12388]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#12339]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-7/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#10656]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-4/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][297] ([i915#10656]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-18/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#10656]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-3/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#12388]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#12394]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-6/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][301] ([i915#12394]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-6/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#12339]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-9/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#6301]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][304] ([i915#6301]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-17/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][305] ([i915#12756] / [i915#13409] / [i915#13476]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk5/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][306] ([i915#12756]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk5/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][307] ([i915#12178]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk3/igt at kms_plane_alpha_blend@alpha-basic.html * igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][308] ([i915#7862]) +1 other test fail [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk3/igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][309] ([i915#10647] / [i915#12169]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk8/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][310] ([i915#10647]) +1 other test fail [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk8/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_cursor@viewport at pipe-a-hdmi-a-2-size-128: - shard-rkl: [PASS][311] -> [DMESG-WARN][312] ([i915#12917] / [i915#12964]) +4 other tests dmesg-warn [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-3/igt at kms_plane_cursor@viewport at pipe-a-hdmi-a-2-size-128.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-3/igt at kms_plane_cursor@viewport at pipe-a-hdmi-a-2-size-128.html * igt at kms_plane_lowres@tiling-4: - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-5/igt at kms_plane_lowres@tiling-4.html * igt at kms_plane_lowres@tiling-4 at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#11614] / [i915#3582]) +3 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-5/igt at kms_plane_lowres@tiling-4 at pipe-b-edp-1.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#3555] / [i915#8821]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-4/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#8806]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-11/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#3555]) +7 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-5/igt at kms_plane_multiple@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#3555] / [i915#8806]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-5/igt at kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][319] ([i915#3555] / [i915#8806]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-8/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-tglu: NOTRUN -> [FAIL][320] ([i915#8292]) +1 other test fail [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-6/igt at kms_plane_scaling@intel-max-src-size.html - shard-dg2: NOTRUN -> [SKIP][321] ([i915#6953] / [i915#9423]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-11/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#12247]) +4 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-5/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#12247] / [i915#9423]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-a: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#12247]) +2 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#12247]) +15 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-8/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-tglu-1: NOTRUN -> [SKIP][326] ([i915#12247]) +9 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg1: NOTRUN -> [SKIP][327] ([i915#12247]) +9 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/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-dg2: NOTRUN -> [SKIP][328] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-4/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][329] ([i915#12247] / [i915#6953]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/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-25-upscale-factor-0-25 at pipe-d: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#12247]) +8 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#12247] / [i915#3555] / [i915#9423]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-10/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#12343]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-1/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][333] ([i915#9812]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-4/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc5-dpms-negative: - shard-rkl: NOTRUN -> [DMESG-WARN][334] ([i915#12964]) +24 other tests dmesg-warn [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-5/igt at kms_pm_dc@dc5-dpms-negative.html - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#13441]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-5/igt at kms_pm_dc@dc5-dpms-negative.html * igt at kms_pm_dc@dc5-retention-flops: - shard-mtlp: NOTRUN -> [SKIP][336] ([i915#3828]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-4/igt at kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][337] ([i915#3828]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#9685]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-4/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][339] ([i915#3361]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-1/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#9340]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-3/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#8430]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-7/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#9519]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-3/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][343] ([i915#9519]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-1/igt at kms_pm_rpm@modeset-non-lpsp.html - shard-rkl: NOTRUN -> [SKIP][344] ([i915#12916]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-7/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#9519]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress.html - shard-tglu: NOTRUN -> [SKIP][346] ([i915#9519]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-3/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-rkl: [PASS][347] -> [SKIP][348] ([i915#12916]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-4/igt at kms_pm_rpm@system-suspend-modeset.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-1/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#6524]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#6524] / [i915#6805]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-7/igt at kms_prime@basic-crc-vgem.html * igt at kms_prime@basic-modeset-hybrid: - shard-tglu: NOTRUN -> [SKIP][351] ([i915#6524]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-10/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][352] ([i915#6524]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-17/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][353] ([i915#11520]) +16 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-snb5/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#12316]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/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-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#11520]) +2 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][356] ([i915#11520]) +6 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-3/igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][357] ([i915#11520]) +4 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-13/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][358] ([i915#11520]) +12 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-5/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][359] ([i915#11520]) +16 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk8/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-dg2: NOTRUN -> [SKIP][360] ([i915#11520]) +13 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-7/igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][361] ([i915#9683]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#9683]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-7/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-primary-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][363] ([i915#9732]) +17 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-10/igt at kms_psr@fbc-pr-primary-mmap-cpu.html * igt at kms_psr@pr-cursor-blt: - shard-mtlp: NOTRUN -> [SKIP][364] ([i915#9688]) +8 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-1/igt at kms_psr@pr-cursor-blt.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +38 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-8/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr2-sprite-blt: - shard-tglu-1: NOTRUN -> [SKIP][366] ([i915#9732]) +9 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_psr@psr2-sprite-blt.html - shard-dg1: NOTRUN -> [SKIP][367] ([i915#1072] / [i915#9732]) +19 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-17/igt at kms_psr@psr2-sprite-blt.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][368] +473 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk3/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][369] ([i915#1072] / [i915#9732]) +34 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-4/igt at kms_psr@psr2-suspend.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][370] ([i915#5289]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-18/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][371] ([i915#12755]) +2 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-7/igt at kms_rotation_crc@primary-rotation-270.html - shard-mtlp: NOTRUN -> [SKIP][372] ([i915#12755]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-8/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][373] ([i915#12755] / [i915#5190]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][374] ([i915#5289]) +2 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][375] ([i915#3555]) +8 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-2/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][376] ([i915#8623]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-10/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][377] ([i915#12276]) +2 other tests incomplete [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk1/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flip-basic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][378] ([i915#9906]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][379] ([i915#11920]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#3555] / [i915#9906]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-4/igt at kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][381] ([i915#3555] / [i915#9906]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][382] ([i915#9906]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-3/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][383] ([i915#9906]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-10/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-tglu-1: NOTRUN -> [SKIP][384] ([i915#2437]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-1/igt at kms_writeback@writeback-check-output.html - shard-mtlp: NOTRUN -> [SKIP][385] ([i915#2437]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-8/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][386] ([i915#2437] / [i915#9412]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-1/igt at kms_writeback@writeback-check-output-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][387] ([i915#2437] / [i915#9412]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-6/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][388] ([i915#2437]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][389] ([i915#2437]) +1 other test skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-14/igt at kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][390] ([i915#2437]) +2 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk1/igt at kms_writeback@writeback-invalid-parameters.html - shard-rkl: NOTRUN -> [SKIP][391] ([i915#2437]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-7/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][392] ([i915#2436]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-4/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][393] ([i915#7387]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at perf@global-sseu-config.html * igt at perf@polling at 0-rcs0: - shard-rkl: [PASS][394] -> [DMESG-WARN][395] ([i915#12964]) +39 other tests dmesg-warn [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-3/igt at perf@polling at 0-rcs0.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-2/igt at perf@polling at 0-rcs0.html * igt at perf_pmu@all-busy-idle-check-all: - shard-mtlp: [PASS][396] -> [FAIL][397] ([i915#11943]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-6/igt at perf_pmu@all-busy-idle-check-all.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-6/igt at perf_pmu@all-busy-idle-check-all.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][398] +544 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-snb7/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@busy-check-all: - shard-mtlp: [PASS][399] -> [FAIL][400] ([i915#4349]) +2 other tests fail [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-5/igt at perf_pmu@busy-check-all.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-6/igt at perf_pmu@busy-check-all.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: NOTRUN -> [FAIL][401] ([i915#4349]) +4 other tests fail [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-4/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][402] ([i915#8850]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at perf_pmu@cpu-hotplug.html - shard-tglu: NOTRUN -> [SKIP][403] ([i915#8850]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-6/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@frequency at gt0: - shard-dg2: NOTRUN -> [FAIL][404] ([i915#12549] / [i915#6806]) +1 other test fail [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-7/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@most-busy-check-all: - shard-rkl: NOTRUN -> [FAIL][405] ([i915#4349]) +1 other test fail [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-1/igt at perf_pmu@most-busy-check-all.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][406] ([i915#8516]) +1 other test skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-1/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][407] ([i915#9351]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at prime_mmap@test_aperture_limit.html * igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][408] ([i915#9351]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-5/igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem.html * igt at prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][409] ([i915#3708] / [i915#4077]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-11/igt at prime_vgem@basic-gtt.html - shard-dg1: NOTRUN -> [SKIP][410] ([i915#3708] / [i915#4077]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-17/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][411] ([i915#3708]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-4/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][412] ([i915#3708]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-mtlp-4/igt at prime_vgem@fence-write-hang.html - shard-dg1: NOTRUN -> [SKIP][413] ([i915#3708]) +1 other test skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-18/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][414] ([i915#9917]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-1/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][415] ([i915#9917]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-rkl-2/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-random: - shard-tglu: NOTRUN -> [FAIL][416] ([i915#12910]) +8 other tests fail [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-tglu-10/igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-random.html #### Possible fixes #### * igt at gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][417] ([i915#7297]) -> [PASS][418] +1 other test pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg2-4/igt at gem_ccs@suspend-resume.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-8/igt at gem_ccs@suspend-resume.html * igt at gem_exec_suspend@basic-s0 at smem: - shard-dg2: [INCOMPLETE][419] ([i915#11441] / [i915#13304]) -> [PASS][420] +1 other test pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg2-1/igt at gem_exec_suspend@basic-s0 at smem.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-11/igt at gem_exec_suspend@basic-s0 at smem.html * igt at gem_exec_suspend@basic-s3 at smem: - shard-glk: [INCOMPLETE][421] ([i915#13196]) -> [PASS][422] +1 other test pass [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-glk4/igt at gem_exec_suspend@basic-s3 at smem.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-glk7/igt at gem_exec_suspend@basic-s3 at smem.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: [ABORT][423] ([i915#7975] / [i915#8213]) -> [PASS][424] +1 other test pass [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg2-7/igt at gem_exec_suspend@basic-s4-devices.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg2-11/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: [ABORT][425] ([i915#7975] / [i915#8213]) -> [PASS][426] +1 other test pass [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-12/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [TIMEOUT][427] ([i915#5493]) -> [PASS][428] +1 other test pass [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg1-12/igt at gem_lmem_swapping@smem-oom at lmem0.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-18/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at i915_pm_rc6_residency@rc6-idle: - shard-dg1: [FAIL][429] ([i915#3591]) -> [PASS][430] [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/shard-dg1-12/igt at i915_pm_rc6_residency@rc6-idle.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: [FAIL][431] ([i915#12739] / [i915#3591]) -> [PASS][432] [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html [432 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12422/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From ashutosh.dixit at intel.com Mon Jan 13 19:22:05 2025 From: ashutosh.dixit at intel.com (Dixit, Ashutosh) Date: Mon, 13 Jan 2025 11:22:05 -0800 Subject: [PATCH i-g-t v3 2/3] tests/intel/xe_oa: Reduce the number of mmap reports checked In-Reply-To: <20250113061949.753864-3-sai.teja.pottumuttu@intel.com> References: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> <20250113061949.753864-3-sai.teja.pottumuttu@intel.com> Message-ID: <85y0zeecyq.wl-ashutosh.dixit@intel.com> On Sun, 12 Jan 2025 22:19:48 -0800, Sai Teja Pottumuttu wrote: > > Currently, 20 mmap periodic reports are checked which seems unnecessary, > reduce it to 10. Reviewed-by: Ashutosh Dixit > > Signed-off-by: Sai Teja Pottumuttu > --- > tests/intel/xe_oa.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c > index ad3526406..cd081ecff 100644 > --- a/tests/intel/xe_oa.c > +++ b/tests/intel/xe_oa.c > @@ -4378,7 +4378,7 @@ static void check_reports(void *oa_vaddr, uint32_t oa_size, > uint32_t timer_reports = 0; > > for (reports = (uint32_t *)oa_vaddr; > - timer_reports < 20 && reports[0] && oa_timestamp(reports, fmt); > + timer_reports < 10 && reports[0] && oa_timestamp(reports, fmt); > reports += report_words) { > if (!oa_report_is_periodic(reports)) > continue; > -- > 2.34.1 > From ashutosh.dixit at intel.com Mon Jan 13 19:37:36 2025 From: ashutosh.dixit at intel.com (Dixit, Ashutosh) Date: Mon, 13 Jan 2025 11:37:36 -0800 Subject: [PATCH i-g-t v3 3/3] tests/intel/xe_oa: Remove hardcoded time heuristics In-Reply-To: <20250113061949.753864-4-sai.teja.pottumuttu@intel.com> References: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> <20250113061949.753864-4-sai.teja.pottumuttu@intel.com> Message-ID: <85wmeyec8v.wl-ashutosh.dixit@intel.com> On Sun, 12 Jan 2025 22:19:49 -0800, Sai Teja Pottumuttu wrote: > > Some tests in xe_oa tests have hardcoded timing heuristics. Refactor it to > make it more robust and reliable. The patch extends the wait time logically > but usually it would take a single iteration for the required reports to be > available so wait time doesn't change much. > > v2: > - Extend commit message [Lucas] > - Make wait function more generic [Lucas] > > v3: > - Change wait function name [Ashutosh] > - Address nits [Ashutosh] Reviewed-by: Ashutosh Dixit > Signed-off-by: Sai Teja Pottumuttu > --- > tests/intel/xe_oa.c | 27 ++++++++++++++++++++++----- > 1 file changed, 22 insertions(+), 5 deletions(-) > > diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c > index cd081ecff..df7fa3229 100644 > --- a/tests/intel/xe_oa.c > +++ b/tests/intel/xe_oa.c > @@ -4367,6 +4367,26 @@ static void map_oa_buffer_forked_access(const struct drm_xe_engine_class_instanc > munmap(vaddr, size); > } > > +static void mmap_wait_for_periodic_reports(void *oa_vaddr, uint32_t n, > + const struct drm_xe_engine_class_instance *hwe) > +{ > + uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000; > + struct intel_xe_perf_metric_set *test_set = metric_set(hwe); > + uint64_t fmt = test_set->perf_oa_format; > + uint32_t num_periodic_reports = 0; > + uint32_t *reports; > + > + while (num_periodic_reports < n) { > + usleep(4 * n * period_us); > + num_periodic_reports = 0; > + for (reports = (uint32_t *)oa_vaddr; > + reports[0] && oa_timestamp(reports, fmt) && oa_report_is_periodic(reports); > + reports += get_oa_format(fmt).size) { > + num_periodic_reports++; > + } > + } > +} > + > static void check_reports(void *oa_vaddr, uint32_t oa_size, > const struct drm_xe_engine_class_instance *hwe) > { > @@ -4396,12 +4416,10 @@ static void check_reports_from_mapped_buffer(const struct drm_xe_engine_class_in > { > void *vaddr; > uint32_t size; > - uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000; > > vaddr = map_oa_buffer(&size); > > - /* wait for approx 100 reports */ > - usleep(100 * period_us); > + mmap_wait_for_periodic_reports(vaddr, 10, hwe); > check_reports(vaddr, size, hwe); > > munmap(vaddr, size); > @@ -4426,12 +4444,11 @@ static void closed_fd_and_unmapped_access(const struct drm_xe_engine_class_insta > }; > void *vaddr; > uint32_t size; > - uint32_t period_us = oa_exponent_to_ns(oa_exp_1_millisec) / 1000; > > stream_fd = __perf_open(drm_fd, ¶m, false); > vaddr = map_oa_buffer(&size); > > - usleep(100 * period_us); > + mmap_wait_for_periodic_reports(vaddr, 10, hwe); > check_reports(vaddr, size, hwe); > > munmap(vaddr, size); > -- > 2.34.1 > From patchwork at emeril.freedesktop.org Mon Jan 13 21:17:45 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 13 Jan 2025 21:17:45 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Miscellaneous_OA_Refactor?= =?utf-8?q?s_=28rev3=29?= In-Reply-To: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> References: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> Message-ID: <173680306531.3360450.1671776422761759308@b555e5b46a47> == Series Details == Series: Miscellaneous OA Refactors (rev3) URL : https://patchwork.freedesktop.org/series/142773/ State : success == Summary == CI Bug Log - changes from IGT_8189 -> IGTPW_12433 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/index.html Participating hosts (44 -> 43) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12433 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at dmabuf@all-tests: - bat-apl-1: [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-apl-1/igt at dmabuf@all-tests.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/bat-apl-1/igt at dmabuf@all-tests.html * igt at i915_selftest@live: - bat-mtlp-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#13393]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-mtlp-8/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/bat-mtlp-8/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_mocs: - bat-twl-2: NOTRUN -> [ABORT][5] ([i915#12919]) +1 other test abort [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/bat-twl-2/igt at i915_selftest@live at gt_mocs.html * igt at i915_selftest@live at workarounds: - bat-arlh-3: [PASS][6] -> [DMESG-FAIL][7] ([i915#13393]) +1 other test dmesg-fail [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-arlh-3/igt at i915_selftest@live at workarounds.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/bat-arlh-3/igt at i915_selftest@live at workarounds.html - bat-mtlp-6: [PASS][8] -> [DMESG-FAIL][9] ([i915#13393]) +1 other test dmesg-fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/bat-mtlp-6/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_module_load@load: - {bat-mtlp-9}: [DMESG-WARN][10] -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-mtlp-9/igt at i915_module_load@load.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/bat-mtlp-9/igt at i915_module_load@load.html * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][12] ([i915#13393]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/bat-mtlp-9/igt at i915_selftest@live at workarounds.html - {bat-arls-6}: [DMESG-FAIL][14] ([i915#13393]) -> [PASS][15] +1 other test pass [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-arls-6/igt at i915_selftest@live at workarounds.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/bat-arls-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#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8189 -> IGTPW_12433 CI-20190529: 20190529 CI_DRM_15948: 20058aae3e619821197cd32b736893f1d7917ba3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12433: 8035b8a8167171e8443e4e89f41878445c51f814 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8189: e036190dc1730ecb94cb393f88378e734db4b1d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 13 21:18:51 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 13 Jan 2025 21:18:51 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Miscellaneous_OA_Refactors_?= =?utf-8?q?=28rev3=29?= In-Reply-To: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> References: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> Message-ID: <173680313114.3360825.234583317431608122@b555e5b46a47> == Series Details == Series: Miscellaneous OA Refactors (rev3) URL : https://patchwork.freedesktop.org/series/142773/ State : success == Summary == CI Bug Log - changes from XEIGT_8189_BAT -> XEIGTPW_12433_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12433_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3958]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-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_8189/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/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_8189/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/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_8189 -> IGTPW_12433 * Linux: xe-2479-19b8afc5609e9ae7b410bdb028b4aaf83656b567 -> xe-2480-20058aae3e619821197cd32b736893f1d7917ba3 IGTPW_12433: 8035b8a8167171e8443e4e89f41878445c51f814 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8189: e036190dc1730ecb94cb393f88378e734db4b1d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2479-19b8afc5609e9ae7b410bdb028b4aaf83656b567: 19b8afc5609e9ae7b410bdb028b4aaf83656b567 xe-2480-20058aae3e619821197cd32b736893f1d7917ba3: 20058aae3e619821197cd32b736893f1d7917ba3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 13 22:26:18 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 13 Jan 2025 22:26:18 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_tests/xe=5Fdebugfs=3A_Imp?= =?utf-8?q?rove_test=5Fgt_subtest_=28rev2=29?= In-Reply-To: <20250113134558.947544-1-pravalika.gurram@intel.com> References: <20250113134558.947544-1-pravalika.gurram@intel.com> Message-ID: <173680717861.3385311.7518069759432326809@b555e5b46a47> == Series Details == Series: tests/xe_debugfs: Improve test_gt subtest (rev2) URL : https://patchwork.freedesktop.org/series/143322/ State : failure == Summary == CI Bug Log - changes from IGT_8189 -> IGTPW_12434 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12434 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12434, 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_12434/index.html Participating hosts (44 -> 43) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12434: ### IGT changes ### #### Possible regressions #### * igt at i915_selftest@live: - fi-skl-6600u: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/fi-skl-6600u/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12434/fi-skl-6600u/igt at i915_selftest@live.html Known issues ------------ Here are the changes found in IGTPW_12434 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][3] ([i915#13393]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12434/bat-mtlp-9/igt at i915_selftest@live at workarounds.html - {bat-arls-6}: [DMESG-FAIL][5] ([i915#13393]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-arls-6/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12434/bat-arls-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_8189 -> IGTPW_12434 CI-20190529: 20190529 CI_DRM_15948: 20058aae3e619821197cd32b736893f1d7917ba3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12434: d9d1e7c72eb10dde5783176979a0409369ff0c9b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8189: e036190dc1730ecb94cb393f88378e734db4b1d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12434/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 13 22:40:23 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 13 Jan 2025 22:40:23 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/xe=5Fdebugfs=3A_Impro?= =?utf-8?q?ve_test=5Fgt_subtest_=28rev2=29?= In-Reply-To: <20250113134558.947544-1-pravalika.gurram@intel.com> References: <20250113134558.947544-1-pravalika.gurram@intel.com> Message-ID: <173680802395.3385311.2523105577084565859@b555e5b46a47> == Series Details == Series: tests/xe_debugfs: Improve test_gt subtest (rev2) URL : https://patchwork.freedesktop.org/series/143322/ State : success == Summary == CI Bug Log - changes from XEIGT_8189_BAT -> XEIGTPW_12434_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8189 -> IGTPW_12434 * Linux: xe-2479-19b8afc5609e9ae7b410bdb028b4aaf83656b567 -> xe-2480-20058aae3e619821197cd32b736893f1d7917ba3 IGTPW_12434: d9d1e7c72eb10dde5783176979a0409369ff0c9b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8189: e036190dc1730ecb94cb393f88378e734db4b1d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2479-19b8afc5609e9ae7b410bdb028b4aaf83656b567: 19b8afc5609e9ae7b410bdb028b4aaf83656b567 xe-2480-20058aae3e619821197cd32b736893f1d7917ba3: 20058aae3e619821197cd32b736893f1d7917ba3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12434/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 13 23:02:34 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 13 Jan 2025 23:02:34 -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_=28rev3=29?= In-Reply-To: <20250113135103.947823-1-pravalika.gurram@intel.com> References: <20250113135103.947823-1-pravalika.gurram@intel.com> Message-ID: <173680935465.3392928.18012516117079980939@b555e5b46a47> == Series Details == Series: tests/intel: Enhance the wedged_mode sysfs support (rev3) URL : https://patchwork.freedesktop.org/series/143094/ State : success == Summary == CI Bug Log - changes from IGT_8189 -> IGTPW_12435 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/index.html Participating hosts (44 -> 43) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12435 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at dmabuf@all-tests: - fi-pnv-d510: NOTRUN -> [INCOMPLETE][1] ([i915#12904]) +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/fi-pnv-d510/igt at dmabuf@all-tests.html - bat-apl-1: [PASS][2] -> [INCOMPLETE][3] ([i915#12904]) +1 other test incomplete [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-apl-1/igt at dmabuf@all-tests.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/bat-apl-1/igt at dmabuf@all-tests.html * igt at i915_selftest@live: - bat-mtlp-8: [PASS][4] -> [DMESG-FAIL][5] ([i915#13393]) +1 other test dmesg-fail [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-mtlp-8/igt at i915_selftest@live.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/bat-mtlp-8/igt at i915_selftest@live.html * igt at kms_psr@psr-primary-mmap-gtt: - fi-pnv-d510: NOTRUN -> [SKIP][6] +36 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/fi-pnv-d510/igt at kms_psr@psr-primary-mmap-gtt.html #### Possible fixes #### * igt at i915_module_load@load: - fi-pnv-d510: [ABORT][7] ([i915#13203]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/fi-pnv-d510/igt at i915_module_load@load.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/fi-pnv-d510/igt at i915_module_load@load.html - {bat-mtlp-9}: [DMESG-WARN][9] -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-mtlp-9/igt at i915_module_load@load.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/bat-mtlp-9/igt at i915_module_load@load.html * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][11] ([i915#13393]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/bat-mtlp-9/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#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8189 -> IGTPW_12435 CI-20190529: 20190529 CI_DRM_15948: 20058aae3e619821197cd32b736893f1d7917ba3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12435: e621bf6c3dde43fe644c8bd7281caf84f4c88a4f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8189: e036190dc1730ecb94cb393f88378e734db4b1d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 13 23:02:52 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 13 Jan 2025 23:02:52 -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_=28rev3=29?= In-Reply-To: <20250113135103.947823-1-pravalika.gurram@intel.com> References: <20250113135103.947823-1-pravalika.gurram@intel.com> Message-ID: <173680937240.3385311.10906403202341213912@b555e5b46a47> == Series Details == Series: tests/intel: Enhance the wedged_mode sysfs support (rev3) URL : https://patchwork.freedesktop.org/series/143094/ State : success == Summary == CI Bug Log - changes from XEIGT_8189_BAT -> XEIGTPW_12435_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8189 -> IGTPW_12435 * Linux: xe-2479-19b8afc5609e9ae7b410bdb028b4aaf83656b567 -> xe-2480-20058aae3e619821197cd32b736893f1d7917ba3 IGTPW_12435: e621bf6c3dde43fe644c8bd7281caf84f4c88a4f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8189: e036190dc1730ecb94cb393f88378e734db4b1d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2479-19b8afc5609e9ae7b410bdb028b4aaf83656b567: 19b8afc5609e9ae7b410bdb028b4aaf83656b567 xe-2480-20058aae3e619821197cd32b736893f1d7917ba3: 20058aae3e619821197cd32b736893f1d7917ba3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12435/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From vinay.belgaumkar at intel.com Mon Jan 13 23:19:05 2025 From: vinay.belgaumkar at intel.com (Belgaumkar, Vinay) Date: Mon, 13 Jan 2025 15:19:05 -0800 Subject: [PATCH i-g-t v2 0/4] tools/gputop: Add PMU stats In-Reply-To: References: <20241220003734.69174-1-vinay.belgaumkar@intel.com> <7d77e830-54c1-42c0-9402-16937697d2bb@ursulin.net> Message-ID: <6910c498-6e69-4734-9075-442c26ef89d9@intel.com> On 12/20/2024 11:32 AM, Lucas De Marchi wrote: > On Fri, Dec 20, 2024 at 02:13:26PM -0500, Rodrigo Vivi wrote: >> On Fri, Dec 20, 2024 at 10:15:04AM +0000, Tvrtko Ursulin wrote: >>> >>> On 20/12/2024 00:37, Vinay Belgaumkar wrote: >>> > Use the PMU support being added in >>> > https://patchwork.freedesktop.org/series/139121/ to add freq/c6 >>> stats. >>> >>> Brace yourself for the customary "why". So yes, why? >>> >>> Gputop so far was a reference showcase for DRM fdinfo, nothing more. >>> Why add >>> a _subset_ of PMU stats to it? Any other drivers could be wired up? >>> How far >>> do people intend to grow it, considering alternatives with nicer UI >>> and more >>> featureful exist? >> >> Well, currently intel_gpu_top doesn't support Xe and we really don't >> have any intention to add xe support there. >> >> We don't believe it is a better UI and more features. >> >> Hopefully someday we can get qmassa [1] part of the distros and make >> that to >> be our default to use the uapis that we add in Xe. >> >> But for now we were in the hope that we could use gputop for that >> which is >> the current tool that supports Xe metrics. But well, I just noticed that >> at least in Fedora it is not packaged :/ >> >> $ rpm -ql igt-gpu-tools-1.27.1-0.4.20230215git45da871.fc40.x86_64 | >> grep top >> /usr/bin/intel_gpu_top >> /usr/share/man/man1/intel_gpu_top.1.gz >> >> [1] - https://github.com/ulissesf/qmassa >> >> So, our options are: >> >> 1. Add all the Xe support in intel_gpu_top >> 2. Convince distros to build and package gputop along with >> intel_gpu_top in igt >> 3. Convince distros to adopt qmaasa > > > I think we should handle gputop as a reference implementation for a > "top-like implementation for GPU".? I think end users have tools with > better UIs like qmassa, or nvtop, or htop or other graphical > applications and we shouldn't try to block that - doing something > beautiful in gputop would be a lot of effort for little benefit if end > users are already served by other tools.? Letting gputop as a reference > impl for these tools to borrow code or consult, would be ideal IMO. > > > As Tvrtko said, currently gputop is a reference showcase for DRM fdinfo. > I think it can grow some capabilities and be a reference > implementation for top-like application. If that means adding pmu, then > be it.? However the pmu support needs to be added in a proper way so > the tool always continue to be vendor-agnostic and that it's easy to > add support for events from other vendors. That probably means that > adding pmu-related things in the fdinfo or drm-client libs are probably > not the way to go as a) it's crossing unrelated abstraction and b) > breaking the vendor-agnostic nature of the tool. The pmu_info added to drm_client in these patches is just a void pointer to the info. So, if a client doesn't support it, the freq/c6 stuff will not get displayed. Tool should still work in that case. Thanks, Vinay. > >> >> Meanwhile our PMU are blocked... > > I don't think they should be blocked. The kernel impl was blocked for a > long time in other things, not having PMU included somewhere like > gputop.? If you want to read pmu, the #1 application is perf > > I think we can add pmu in gputop as a reference. If someone can grow > gputop to have all the intel_gpu_top capabilities, but doing it in a > proper vendor-agnostic way, awesome. At that time we may then retire > intel_gpu_top and only use gputop as reference. > > Lucas De Marchi > >> >> Lucas, Thomas, thoughts? >> >>> >>> Or in case the conclusion ends up being "yes", then lets at least >>> share some >>> more code between intel_gpu_top and this work. Ie. make it in a way >>> gputop >>> completely subsumes and replaces intel_gpu_top might be an idea. >> >> with this I agree as well. >> >>> >>> Regards, >>> >>> Tvrtko >>> >>> > Cc: Rodrigo Vivi >>> > Cc: Lucas De Marchi >>> > Cc: Kamil Konieczny >>> > Signed-off-by: Vinay Belgaumkar >>> > >>> > Vinay Belgaumkar (4): >>> >??? tools/gputop: Define data structs for PMU stats >>> >??? lib/igt_drm_clients: Add pdev and driver info >>> >??? lib/igt_perf: Add utils to extract PMU event info >>> >??? tools/gputop: Add GT freq and c6 stats >>> > >>> >?? lib/igt_drm_clients.c |?? 6 ++ >>> >?? lib/igt_drm_clients.h |?? 4 + >>> >?? lib/igt_perf.c??????? |? 68 +++++++++++++ >>> >?? lib/igt_perf.h??????? |?? 2 + >>> >?? tools/gputop.c??????? | 225 >>> ++++++++++++++++++++++++++++++++++++++++++ >>> >?? tools/meson.build???? |?? 2 +- >>> >?? 6 files changed, 306 insertions(+), 1 deletion(-) >>> > From peter.senna at linux.intel.com Tue Jan 14 08:16:10 2025 From: peter.senna at linux.intel.com (Peter Senna Tschudin) Date: Tue, 14 Jan 2025 09:16:10 +0100 Subject: =?UTF-8?B?UmU6IOKclyBpOTE1LkNJLkZ1bGw6IGZhaWx1cmUgZm9yIGxpYi9pZ3Rf?= =?UTF-8?Q?kmemleak=3A_library_to_interact_with_kmemleak_=28rev2=29?= In-Reply-To: <173677284723.3237056.1486075895877836651@b555e5b46a47> References: <20250109181027.90402-1-peter.senna@linux.intel.com> <173677284723.3237056.1486075895877836651@b555e5b46a47> Message-ID: <480075f3-8914-47b4-afd7-4b73658996d4@linux.intel.com> Dear I915, On 13.01.2025 13:54, Patchwork wrote: > == Series Details == > > Series: lib/igt_kmemleak: library to interact with kmemleak (rev2) > URL : https://patchwork.freedesktop.org/series/142673/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_15934_full -> IGTPW_12421_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12421_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12421_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_12421/index.html > > Participating hosts (12 -> 11) > ------------------------------ > > Missing (1): shard-glk-0 > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12421_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at gem_exec_suspend@basic-s3-devices at smem: > - shard-mtlp: [PASS][1] -> [ABORT][2] +1 other test abort > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-5/igt at gem_exec_suspend@basic-s3-devices at smem.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-4/igt at gem_exec_suspend@basic-s3-devices at smem.html > > * igt at gem_exec_whisper@basic-contexts-priority: > - shard-mtlp: [PASS][3] -> [INCOMPLETE][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-1/igt at gem_exec_whisper@basic-contexts-priority.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-6/igt at gem_exec_whisper@basic-contexts-priority.html > > * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: > - shard-glk: NOTRUN -> [INCOMPLETE][5] > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk1/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html > > > #### Warnings #### > > * igt at gem_exec_big@single: > - shard-tglu: [ABORT][6] ([i915#11713]) -> [ABORT][7] > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-tglu-10/igt at gem_exec_big@single.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-10/igt at gem_exec_big@single.html These possible regressions and warnings are unrelated to my change. Please fix and re-run. Thank you! [...] From jan.sokolowski at intel.com Tue Jan 14 09:49:39 2025 From: jan.sokolowski at intel.com (Sokolowski, Jan) Date: Tue, 14 Jan 2025 09:49:39 +0000 Subject: =?utf-8?B?UkU6IOKclyBYZS5DSS5GdWxsOiBmYWlsdXJlIGZvciBzZXJpZXMgc3RhcnRp?= =?utf-8?B?bmcgd2l0aCBbaS1nLXQsdjEsMS8xXSB0ZXN0cy94ZV9ldWRlYnVnOiBjaGVj?= =?utf-8?Q?k_if_driver_is_open_before_toggling_enable?= In-Reply-To: <173675006177.3144867.8423032667765544655@b555e5b46a47> References: <20250110125201.59630-1-jan.sokolowski@intel.com> <173675006177.3144867.8423032667765544655@b555e5b46a47> Message-ID: It appears that this failure is a false positive as my patch does not touch these tests. Please check and confirm. Jan From: Patchwork Sent: Monday, January 13, 2025 7:34 AM To: Sokolowski, Jan Cc: igt-dev at lists.freedesktop.org Subject: ? Xe.CI.Full: failure for series starting with [i-g-t,v1,1/1] tests/xe_eudebug: check if driver is open before toggling enable Patch Details Series: series starting with [i-g-t,v1,1/1] tests/xe_eudebug: check if driver is open before toggling enable URL: https://patchwork.freedesktop.org/series/143389/ State: failure Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12426/index.html CI Bug Log - changes from XEIGT_8186_full -> XEIGTPW_12426_full Summary FAILURE Serious unknown changes coming with XEIGTPW_12426_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12426_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_12426_full: IGT changes Possible regressions * igt at core_hotunplug@unbind-rebind: * shard-dg2-set2: PASS -> ABORT * igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe-a-hdmi-a-6: * shard-dg2-set2: PASS -> INCOMPLETE * igt at kms_flip@2x-wf_vblank-ts-check at ad-hdmi-a2-dp2: * shard-dg2-set2: NOTRUN -> FAIL +3 other tests fail * igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2: * shard-dg2-set2: NOTRUN -> ABORT Known issues Here are the changes found in XEIGTPW_12426_full that come from known issues: IGT changes Issues hit * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#623) * igt at kms_addfb_basic@too-high: * shard-dg2-set2: PASS -> SKIP (Intel XE#2423 / i915#2575) +11 other tests skip * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: * shard-lnl: PASS -> FAIL (Intel XE#911) +3 other tests fail * 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_async_flips@invalid-async-flip: * shard-lnl: NOTRUN -> SKIP (Intel XE#873) * igt at kms_atomic@plane-primary-overlay-mutable-zpos: * shard-lnl: NOTRUN -> SKIP (Intel XE#3279) * igt at kms_atomic_transition@plane-all-modeset-transition-fencing: * shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#2613) * igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-3: * shard-bmg: PASS -> INCOMPLETE (Intel XE#2613) +1 other test incomplete * igt at kms_big_fb@4-tiled-32bpp-rotate-270: * shard-lnl: NOTRUN -> SKIP (Intel XE#1407) +3 other tests skip * igt at kms_big_fb@x-tiled-8bpp-rotate-270: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#316) +3 other tests skip * igt at kms_big_fb@x-tiled-addfb-size-offset-overflow: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2136 / Intel XE#2351) +1 other test skip * shard-bmg: PASS -> SKIP (Intel XE#2136 / Intel XE#2231) * igt at kms_big_fb@y-tiled-32bpp-rotate-90: * shard-bmg: NOTRUN -> SKIP (Intel XE#1124) * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1124) +10 other tests skip * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: * shard-lnl: NOTRUN -> SKIP (Intel XE#1124) +2 other tests skip * igt at kms_big_fb@yf-tiled-addfb: * shard-lnl: NOTRUN -> SKIP (Intel XE#1467) +1 other test skip * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: * shard-bmg: PASS -> SKIP (Intel XE#2314 / Intel XE#2894) +1 other test skip * igt at kms_bw@linear-tiling-2-displays-2160x1440p: * shard-lnl: NOTRUN -> SKIP (Intel XE#367) * igt at kms_bw@linear-tiling-2-displays-3840x2160p: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#367) +4 other tests skip * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: * shard-bmg: NOTRUN -> SKIP (Intel XE#2887) * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2907) +3 other tests skip * igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs: * shard-lnl: NOTRUN -> SKIP (Intel XE#2887) +8 other tests skip * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs at pipe-d-dp-2: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455 / Intel XE#787) +27 other tests skip * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: * shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#3862) +1 other test incomplete * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#787) +111 other tests skip * igt at kms_cdclk@plane-scaling: * shard-lnl: NOTRUN -> SKIP (Intel XE#1152) +3 other tests skip * igt at kms_chamelium_color@ctm-negative: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#306) +1 other test skip * igt at kms_chamelium_hpd@dp-hpd-fast: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#373) +7 other tests skip * igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode: * shard-lnl: NOTRUN -> SKIP (Intel XE#373) +1 other test skip * igt at kms_content_protection@dp-mst-lic-type-0: * shard-lnl: NOTRUN -> SKIP (Intel XE#307) +1 other test skip * igt at kms_content_protection@lic-type-0: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1178) +3 other tests fail * igt at kms_content_protection@lic-type-0 at pipe-a-dp-2: * shard-bmg: NOTRUN -> FAIL (Intel XE#1178) * igt at kms_content_protection@lic-type-1: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455) +13 other tests skip * igt at kms_content_protection@uevent: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1188) +1 other test fail * igt at kms_cursor_crc@cursor-offscreen-32x32: * shard-lnl: NOTRUN -> SKIP (Intel XE#1424) +2 other tests skip * igt at kms_cursor_crc@cursor-onscreen-512x170: * shard-lnl: NOTRUN -> SKIP (Intel XE#2321) +2 other tests skip * igt at kms_cursor_crc@cursor-onscreen-512x512: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2423 / i915#2575) +6 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-busy-flip-before-cursor-varying-size: * shard-lnl: NOTRUN -> SKIP (Intel XE#323) * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: * shard-lnl: NOTRUN -> SKIP (Intel XE#309) +1 other test skip * igt at kms_cursor_legacy@cursorb-vs-flipb-legacy: * shard-bmg: PASS -> SKIP (Intel XE#2291) * igt at kms_display_modes@extended-mode-basic: * shard-lnl: NOTRUN -> SKIP (Intel XE#3383) * igt at kms_fbcon_fbt@fbc-suspend: * shard-dg2-set2: PASS -> SKIP (Intel XE#2136) +1 other test skip * igt at kms_feature_discovery@chamelium: * shard-lnl: NOTRUN -> SKIP (Intel XE#701) * igt at kms_feature_discovery@display-4x: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1138) * igt at kms_feature_discovery@dp-mst: * shard-lnl: NOTRUN -> SKIP (Intel XE#1137) * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: * shard-bmg: PASS -> SKIP (Intel XE#2316) +1 other test skip * igt at kms_flip@2x-flip-vs-rmfb-interruptible: * shard-lnl: NOTRUN -> SKIP (Intel XE#1421) * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#301) +2 other tests fail * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2: * shard-bmg: NOTRUN -> FAIL (Intel XE#3288 / Intel XE#3321) * igt at kms_flip@flip-vs-expired-vblank at a-dp4: * shard-dg2-set2: PASS -> FAIL (Intel XE#3321) * igt at kms_flip@flip-vs-expired-vblank at b-dp2: * shard-bmg: PASS -> FAIL (Intel XE#3321) * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: * shard-dg2-set2: PASS -> FAIL (Intel XE#301) +5 other tests fail * igt at kms_flip@flip-vs-expired-vblank at c-dp4: * shard-dg2-set2: PASS -> FAIL (Intel XE#301 / Intel XE#3321) +1 other test fail * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: * shard-lnl: NOTRUN -> SKIP (Intel XE#1397 / Intel XE#1745) * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode: * shard-lnl: NOTRUN -> SKIP (Intel XE#1397) * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: * shard-lnl: NOTRUN -> SKIP (Intel XE#1401 / Intel XE#1745) * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode: * shard-lnl: NOTRUN -> SKIP (Intel XE#1401) * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#651) +28 other tests skip * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: * shard-lnl: NOTRUN -> SKIP (Intel XE#656) +19 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: * shard-dg2-set2: PASS -> SKIP (Intel XE#2136 / Intel XE#2351) * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: * shard-lnl: NOTRUN -> SKIP (Intel XE#651) +6 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: * shard-bmg: NOTRUN -> SKIP (Intel XE#2313) +2 other tests skip * igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-dp-2: * shard-bmg: NOTRUN -> FAIL (Intel XE#2333) * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#653) +34 other tests skip * igt at kms_hdr@invalid-hdr: * shard-bmg: PASS -> SKIP (Intel XE#1503) * igt at kms_hdr@invalid-metadata-sizes: * shard-lnl: NOTRUN -> SKIP (Intel XE#1503) * igt at kms_histogram@algo-basic: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#3897) +1 other test skip * igt at kms_joiner@basic-ultra-joiner: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2927) * igt at kms_joiner@invalid-modeset-force-ultra-joiner: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2925) * igt at kms_plane_multiple@tiling-yf: * shard-lnl: NOTRUN -> SKIP (Intel XE#2493) * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2763) +8 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-downscale-factor-0-25-upscale-factor-0-25 at pipe-d: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2763 / Intel XE#455) +5 other tests skip * igt at kms_plane_scaling@planes-downscale-factor-0-5: * shard-lnl: NOTRUN -> SKIP (Intel XE#2763) +3 other tests skip * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75: * shard-bmg: PASS -> SKIP (Intel XE#3007) +13 other tests skip * igt at kms_pm_backlight@bad-brightness: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#870) * igt at kms_pm_dc@dc3co-vpb-simulation: * shard-lnl: NOTRUN -> SKIP (Intel XE#736) * igt at kms_pm_dc@dc5-psr: * shard-lnl: PASS -> FAIL (Intel XE#718) * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: * shard-lnl: NOTRUN -> SKIP (Intel XE#1439 / Intel XE#836) * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: * shard-lnl: NOTRUN -> SKIP (Intel XE#2893) * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1489) +10 other tests skip * igt at kms_psr2_su@page_flip-xrgb8888: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1122) * igt at kms_psr@fbc-pr-cursor-blt: * shard-bmg: NOTRUN -> SKIP (Intel XE#2234 / Intel XE#2850) +1 other test skip * igt at kms_psr@fbc-pr-cursor-plane-onoff: * shard-lnl: NOTRUN -> SKIP (Intel XE#1406) +3 other tests skip * igt at kms_psr@fbc-pr-sprite-plane-move: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2136) +2 other tests skip * shard-bmg: NOTRUN -> SKIP (Intel XE#2136 / Intel XE#2231) * igt at kms_psr@fbc-psr2-cursor-plane-onoff: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2850 / Intel XE#929) +14 other tests skip * igt at kms_rotation_crc@bad-tiling: * shard-lnl: NOTRUN -> SKIP (Intel XE#3414 / Intel XE#3904) * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#3414) +2 other tests skip * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: * shard-lnl: NOTRUN -> SKIP (Intel XE#1127) * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: * shard-bmg: NOTRUN -> SKIP (Intel XE#3414 / Intel XE#3904) * igt at kms_setmode@clone-exclusive-crtc: * shard-bmg: NOTRUN -> SKIP (Intel XE#3007) * igt at kms_setmode@invalid-clone-single-crtc: * shard-lnl: NOTRUN -> SKIP (Intel XE#1435) * igt at kms_tv_load_detect@load-detect: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#330) * igt at kms_vblank@ts-continuation-suspend: * shard-dg2-set2: PASS -> ABORT (Intel XE#2625) * igt at kms_vrr@lobf: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2168) * igt at kms_vrr@negative-basic: * shard-lnl: NOTRUN -> SKIP (Intel XE#1499) * igt at kms_writeback@writeback-fb-id: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#756) +1 other test skip * igt at sriov_basic@enable-vfs-autoprobe-off: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1091 / Intel XE#2849) * 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_copy_basic@mem-set-linear-0xfffe: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1126) * igt at xe_drm_fdinfo@utilization-single-full-load-isolation: * shard-bmg: PASS -> SKIP (Intel XE#1130) +21 other tests skip * igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: * shard-lnl: 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) +2 other tests skip * igt at xe_evict@evict-beng-threads-small: * shard-lnl: NOTRUN -> SKIP (Intel XE#688) +6 other tests skip * igt at xe_exec_basic@multigpu-no-exec-null-defer-bind: * shard-dg2-set2: PASS -> SKIP (Intel XE#1392) +6 other tests skip * igt at xe_exec_basic@multigpu-once-null-defer-bind: * shard-bmg: NOTRUN -> SKIP (Intel XE#2322) +1 other test skip * igt at xe_exec_basic@multigpu-once-userptr-invalidate: * shard-lnl: NOTRUN -> SKIP (Intel XE#1392) +4 other tests skip * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#288) +20 other tests skip * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2360) * igt at xe_exec_sip_eudebug@breakpoint-writesip: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2905) +8 other tests skip * igt at xe_exec_threads@threads-bal-userptr-invalidate: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1130) +5 other tests skip * igt at xe_live_ktest@xe_bo: * shard-bmg: PASS -> SKIP (Intel XE#1192) * igt at xe_live_ktest@xe_eudebug: * shard-lnl: NOTRUN -> SKIP (Intel XE#1192 / Intel XE#3026) * igt at xe_media_fill@media-fill: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#560) * 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) +7 other tests skip * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1173) +1 other test fail * igt at xe_pm@d3cold-mmap-vram: * shard-lnl: NOTRUN -> SKIP (Intel XE#2284 / Intel XE#366) * igt at xe_pm@d3cold-mocs: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2284) * igt at xe_pm@s3-d3cold-basic-exec: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2284 / Intel XE#366) +1 other test skip * igt at xe_pm@s3-d3hot-basic-exec: * shard-dg2-set2: PASS -> ABORT (Intel XE#1358 / Intel XE#1794) * igt at xe_pm@s3-exec-after: * shard-dg2-set2: NOTRUN -> ABORT (Intel XE#1358) * igt at xe_pm@s3-vm-bind-prefetch: * shard-lnl: NOTRUN -> SKIP (Intel XE#584) * igt at xe_pm@s4-basic: * shard-dg2-set2: PASS -> ABORT (Intel XE#1358) * igt at xe_pm@s4-vm-bind-userptr: * shard-lnl: PASS -> ABORT (Intel XE#1358 / Intel XE#1794) * igt at xe_prime_self_import@basic-with_fd_dup: * shard-dg2-set2: PASS -> SKIP (Intel XE#1130) +16 other tests skip * igt at xe_query@multigpu-query-invalid-extension: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#944) +2 other tests skip * igt at xe_query@multigpu-query-topology-l3-bank-mask: * shard-lnl: NOTRUN -> SKIP (Intel XE#944) +1 other test skip Possible fixes * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1: * shard-lnl: FAIL (Intel XE#3908) -> PASS +1 other test pass * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: * shard-bmg: SKIP (Intel XE#2291) -> PASS +3 other tests pass * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: * shard-dg2-set2: FAIL (Intel XE#3321) -> PASS +1 other test pass * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-hdmi-a6-dp4: * shard-dg2-set2: FAIL (Intel XE#301) -> PASS +2 other tests pass * igt at kms_flip@2x-flip-vs-panning-vs-hang: * shard-bmg: SKIP (Intel XE#2316) -> PASS +4 other tests pass * igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4: * shard-dg2-set2: INCOMPLETE -> PASS +1 other test pass * igt at kms_flip@blocking-wf_vblank: * shard-lnl: FAIL (Intel XE#3149 / Intel XE#886) -> PASS * igt at kms_flip@blocking-wf_vblank at c-edp1: * shard-lnl: FAIL (Intel XE#886) -> PASS +2 other tests pass * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3: * shard-bmg: FAIL (Intel XE#3288 / Intel XE#3321) -> PASS * igt at kms_flip@flip-vs-expired-vblank at a-dp2: * shard-bmg: FAIL (Intel XE#2882) -> PASS * igt at kms_flip@flip-vs-expired-vblank at b-edp1: * shard-lnl: FAIL (Intel XE#301) -> PASS +1 other test pass * igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3: * shard-bmg: FAIL (Intel XE#3321) -> PASS * igt at kms_flip@flip-vs-expired-vblank at d-dp4: * shard-dg2-set2: FAIL (Intel XE#301 / Intel XE#3321) -> PASS * igt at kms_frontbuffer_tracking@fbc-suspend: * shard-dg2-set2: ABORT (Intel XE#2625) -> PASS * igt at kms_pm_dc@dc5-dpms: * shard-lnl: FAIL (Intel XE#718) -> PASS * igt at kms_setmode@basic at pipe-a-hdmi-a-6: * shard-dg2-set2: FAIL (Intel XE#2883) -> PASS +4 other tests pass * igt at kms_vrr@negative-basic: * shard-bmg: SKIP (Intel XE#1499) -> PASS * igt at xe_exec_basic@many-bindexecqueue-rebind: * shard-bmg: SKIP (Intel XE#1130) -> PASS * shard-dg2-set2: SKIP (Intel XE#1130) -> PASS * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: * shard-dg2-set2: SKIP (Intel XE#1392) -> PASS +3 other tests pass * igt at xe_module_load@load: * shard-lnl: (PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, SKIP, PASS, PASS, PASS, PASS, PASS, PASS, PASS) (Intel XE#378) -> (PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS) * shard-bmg: (PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, SKIP, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS) (Intel XE#2457) -> (PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS) * igt at xe_module_load@reload: * shard-dg2-set2: FAIL (Intel XE#3546) -> PASS * shard-bmg: FAIL (Intel XE#3546) -> PASS * igt at xe_pm@s3-basic: * shard-dg2-set2: ABORT (Intel XE#1358 / Intel XE#1794) -> PASS * igt at xe_pm@s4-mocs: * shard-lnl: ABORT (Intel XE#1358 / Intel XE#1794) -> PASS * igt at xe_pm_residency@cpg-basic: * shard-dg2-set2: ABORT -> PASS Warnings * igt at kms_big_fb@y-tiled-32bpp-rotate-180: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#1124) * igt at kms_bw@linear-tiling-3-displays-1920x1080p: * shard-bmg: SKIP (Intel XE#367) -> SKIP (Intel XE#3007) * shard-dg2-set2: SKIP (Intel XE#367) -> SKIP (Intel XE#2423 / i915#2575) * igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs: * shard-dg2-set2: SKIP (Intel XE#455 / Intel XE#787) -> SKIP (Intel XE#2136 / Intel XE#2351) * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs: * shard-bmg: SKIP (Intel XE#2887) -> SKIP (Intel XE#2136 / Intel XE#2231) +1 other test skip * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: * shard-bmg: SKIP (Intel XE#2252) -> SKIP (Intel XE#3007) +2 other tests skip * igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode: * shard-dg2-set2: SKIP (Intel XE#373) -> SKIP (Intel XE#2423 / i915#2575) * igt at kms_content_protection@atomic-dpms: * shard-dg2-set2: FAIL (Intel XE#1178) -> SKIP (Intel XE#2423 / i915#2575) * shard-bmg: FAIL (Intel XE#1178) -> SKIP (Intel XE#3007) * igt at kms_content_protection@legacy: * shard-bmg: FAIL (Intel XE#1178) -> SKIP (Intel XE#2341) * igt at kms_content_protection@lic-type-0: * shard-bmg: SKIP (Intel XE#2341) -> FAIL (Intel XE#1178) * igt at kms_cursor_crc@cursor-offscreen-128x42: * shard-bmg: SKIP (Intel XE#2320) -> SKIP (Intel XE#3007) * igt at kms_cursor_crc@cursor-onscreen-512x512: * shard-bmg: SKIP (Intel XE#2321) -> SKIP (Intel XE#3007) * igt at kms_dsc@dsc-with-output-formats-with-bpc: * shard-dg2-set2: SKIP (Intel XE#455) -> SKIP (Intel XE#2136) +1 other test skip * shard-bmg: SKIP (Intel XE#2244) -> SKIP (Intel XE#2136 / Intel XE#2231) * igt at kms_fbcon_fbt@fbc-suspend: * shard-bmg: FAIL (Intel XE#1695) -> SKIP (Intel XE#2136 / Intel XE#2231) * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: * shard-bmg: FAIL (Intel XE#2882 / Intel XE#3288) -> SKIP (Intel XE#2316) * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: * shard-bmg: SKIP (Intel XE#2293 / Intel XE#2380) -> SKIP (Intel XE#2136 / Intel XE#2231) * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt: * shard-dg2-set2: SKIP (Intel XE#651) -> SKIP (Intel XE#2136) +1 other test skip * igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: * shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#2312) +9 other tests skip * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt: * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2136 / Intel XE#2231) * shard-dg2-set2: SKIP (Intel XE#651) -> SKIP (Intel XE#2136 / Intel XE#2351) * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2311) +12 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: * shard-bmg: FAIL (Intel XE#2333) -> SKIP (Intel XE#2312) +5 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: * shard-bmg: FAIL (Intel XE#2333) -> SKIP (Intel XE#2136 / Intel XE#2231) +1 other test skip * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: * shard-bmg: SKIP (Intel XE#2312) -> FAIL (Intel XE#2333) +2 other tests fail * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: * shard-bmg: INCOMPLETE (Intel XE#2050) -> FAIL (Intel XE#2333) * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-linear: * shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#2136 / Intel XE#2231) +2 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render: * shard-bmg: SKIP (Intel XE#2313) -> SKIP (Intel XE#2136 / Intel XE#2231) +3 other tests skip * shard-dg2-set2: SKIP (Intel XE#653) -> SKIP (Intel XE#2136) +1 other test skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: * shard-bmg: SKIP (Intel XE#2313) -> SKIP (Intel XE#2312) +11 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2313) +15 other tests skip * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2312) * shard-dg2-set2: SKIP (Intel XE#2136 / Intel XE#2351) -> SKIP (Intel XE#653) * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff: * shard-dg2-set2: SKIP (Intel XE#653) -> SKIP (Intel XE#2136 / Intel XE#2351) +1 other test skip * igt at kms_hdr@brightness-with-hdr: * shard-bmg: SKIP (Intel XE#3544) -> SKIP (Intel XE#3374 / Intel XE#3544) * igt at kms_psr@psr2-primary-page-flip: * shard-bmg: SKIP (Intel XE#2234 / Intel XE#2850) -> SKIP (Intel XE#2136 / Intel XE#2231) * igt at kms_setmode@invalid-clone-exclusive-crtc: * shard-bmg: SKIP (Intel XE#1435) -> SKIP (Intel XE#3007) * shard-dg2-set2: SKIP (Intel XE#455) -> SKIP (Intel XE#2423 / i915#2575) * igt at kms_tiled_display@basic-test-pattern: * shard-bmg: FAIL (Intel XE#1729) -> SKIP (Intel XE#2426) * shard-dg2-set2: SKIP (Intel XE#362) -> FAIL (Intel XE#1729) * igt at xe_compute_preempt@compute-threadgroup-preempt: * shard-dg2-set2: SKIP (Intel XE#1280 / Intel XE#455) -> SKIP (Intel XE#1130) * igt at xe_create@multigpu-create-massive-size: * shard-bmg: SKIP (Intel XE#2504) -> SKIP (Intel XE#1130) * igt at xe_eudebug@basic-vm-access-parameters-userptr: * shard-bmg: SKIP (Intel XE#3889) -> SKIP (Intel XE#1130) * shard-dg2-set2: SKIP (Intel XE#3889) -> SKIP (Intel XE#1130) * igt at xe_eudebug_online@resume-one: * shard-bmg: SKIP (Intel XE#2905) -> SKIP (Intel XE#1130) +1 other test skip * shard-dg2-set2: SKIP (Intel XE#2905) -> SKIP (Intel XE#1130) +1 other test skip * igt at xe_evict@evict-beng-threads-large: * shard-bmg: FAIL (Intel XE#1000) -> SKIP (Intel XE#1130) * igt at xe_evict@evict-mixed-many-threads-small: * shard-bmg: TIMEOUT (Intel XE#1473) -> TIMEOUT (Intel XE#1473 / Intel XE#2472) * igt at xe_evict@evict-mixed-threads-large: * shard-bmg: TIMEOUT (Intel XE#1473 / Intel XE#2472) -> INCOMPLETE (Intel XE#1473) * igt at xe_evict@evict-threads-large: * shard-bmg: INCOMPLETE (Intel XE#1473) -> FAIL (Intel XE#1000) * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind: * shard-bmg: SKIP (Intel XE#2322) -> SKIP (Intel XE#1130) +1 other test skip * igt at xe_exec_fault_mode@twice-rebind: * shard-dg2-set2: SKIP (Intel XE#288) -> SKIP (Intel XE#1130) +1 other test skip Build changes * IGT: IGT_8186 -> IGTPW_12426 * Linux: xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917 -> xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde IGTPW_12426: 12426 IGT_8186: 2c6b2f0ed4075aa1ac3d341d612e41343cff4e4d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917: 0ca002b6f088ddd9bdde5630662526a50b7ef917 xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde: 00f4619246294b1de4bac42742cfef95c1f37fde -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Tue Jan 14 11:16:23 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Tue, 14 Jan 2025 12:16:23 +0100 Subject: =?utf-8?B?4pyXIFhlLkNJLkZ1bGw=?= =?utf-8?Q?=3A?= failure for tests/intel/xe_vm: Fixed documentation (rev2) In-Reply-To: <173662098290.2539242.5379790398419825508@b555e5b46a47> References: <20250109090044.913444-1-pravalika.gurram@intel.com> <173662098290.2539242.5379790398419825508@b555e5b46a47> Message-ID: <20250114111623.3fuu57prbqtsxrwc@kamilkon-desk.igk.intel.com> Hi igt-dev, On 2025-01-11 at 18:43:02 -0000, Patchwork wrote: Below are unrelated, this patch corrects documentation of test xe_vm. Regards, Kamil > == Series Details == > > Series: tests/intel/xe_vm: Fixed documentation (rev2) > URL : https://patchwork.freedesktop.org/series/143310/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8183_full -> XEIGTPW_12416_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_12416_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_12416_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_12416_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-edp-1: > - shard-lnl: [PASS][1] -> [FAIL][2] +2 other tests fail > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-1/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-edp-1.html > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-edp-1.html > > * igt at kms_pipe_crc_basic@suspend-read-crc: > - shard-dg2-set2: NOTRUN -> [ABORT][3] +1 other test abort > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-432/igt at kms_pipe_crc_basic@suspend-read-crc.html > > * igt at xe_exec_sip_eudebug@wait-writesip-nodebug: > - shard-dg2-set2: [PASS][4] -> [INCOMPLETE][5] +1 other test incomplete > [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-436/igt at xe_exec_sip_eudebug@wait-writesip-nodebug.html > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-dg2-463/igt at xe_exec_sip_eudebug@wait-writesip-nodebug.html > > > #### Warnings #### > > * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: > - shard-bmg: [DMESG-WARN][6] ([Intel XE#877]) -> [DMESG-WARN][7] > [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html > [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html > > > New tests > --------- > > New tests have been introduced between XEIGT_8183_full and XEIGTPW_12416_full: > > ### New IGT tests (1) ### > > * igt at kms_hdr@static-swap at pipe-a-hdmi-a-2: > - Statuses : 1 pass(s) > - Exec time: [0.98] s > > > > Known issues > ------------ > > Here are the changes found in XEIGTPW_12416_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: > - shard-lnl: NOTRUN -> [FAIL][8] ([Intel XE#3719]) +3 other tests fail > [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html > ...cut... > [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_8183 -> IGTPW_12416 > > IGTPW_12416: c74a7c48547d6db3cb4a53019c21e9be90b9edc1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > xe-2461-14e0c4a8247c9514dc57b2231602fb6d9455802b: 14e0c4a8247c9514dc57b2231602fb6d9455802b > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12416/index.html From kamil.konieczny at linux.intel.com Tue Jan 14 11:17:32 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Tue, 14 Jan 2025 12:17:32 +0100 Subject: =?utf-8?B?4pyXIGk5MTUuQ0kuRnVsbA==?= =?utf-8?Q?=3A?= failure for tests/intel/xe_vm: Fixed documentation (rev2) In-Reply-To: <173666791842.2811904.17029985292773063507@b555e5b46a47> References: <20250109090044.913444-1-pravalika.gurram@intel.com> <173666791842.2811904.17029985292773063507@b555e5b46a47> Message-ID: <20250114111732.g5jev6igiolaayxg@kamilkon-desk.igk.intel.com> Hi igt-dev, On 2025-01-12 at 07:45:18 -0000, Patchwork wrote: Below are unrelated, this patch corrects documentation of test xe_vm. Regards, Kamil > == Series Details == > > Series: tests/intel/xe_vm: Fixed documentation (rev2) > URL : https://patchwork.freedesktop.org/series/143310/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_8183_full -> IGTPW_12416_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12416_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12416_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_12416/index.html > > Participating hosts (12 -> 12) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12416_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at debugfs_test@read_all_entries_display_on: > - shard-mtlp: [PASS][1] -> [ABORT][2] +1 other test abort > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-7/igt at debugfs_test@read_all_entries_display_on.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-mtlp-6/igt at debugfs_test@read_all_entries_display_on.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_12416_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt at api_intel_bb@object-reloc-purge-cache: > - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411]) +2 other tests skip > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg2-4/igt at api_intel_bb@object-reloc-purge-cache.html > > * igt at drm_fdinfo@busy-check-all at bcs0: > - shard-dg1: NOTRUN -> [SKIP][4] ([i915#8414]) +7 other tests skip > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/shard-dg1-12/igt at drm_fdinfo@busy-check-all at bcs0.html > ...cut... > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12416/index.html From patchwork at emeril.freedesktop.org Tue Jan 14 11:48:31 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 14 Jan 2025 11:48:31 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_Update_image_assets_=28r?= =?utf-8?q?ev3=29?= In-Reply-To: <20250107200614.963199-1-ramanaidu.naladala@intel.com> References: <20250107200614.963199-1-ramanaidu.naladala@intel.com> Message-ID: <173685531142.3579803.12979885022000730642@b555e5b46a47> == Series Details == Series: Update image assets (rev3) URL : https://patchwork.freedesktop.org/series/141539/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15919_full -> IGTPW_12397_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12397_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12397_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_12397/index.html Participating hosts (10 -> 11) ------------------------------ Additional (1): shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12397_full: ### IGT changes ### #### Possible regressions #### * igt at i915_selftest@live: - shard-rkl: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-1/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-1/igt at i915_selftest@live.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-mtlp: [PASS][3] -> [ABORT][4] +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-5/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-5/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html #### Warnings #### * igt at gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][5] ([i915#12941]) -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-tglu-9/igt at gem_tiled_swapping@non-threaded.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-4/igt at gem_tiled_swapping@non-threaded.html Known issues ------------ Here are the changes found in IGTPW_12397_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-3/igt at api_intel_bb@object-reloc-keep-cache.html - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-5/igt at api_intel_bb@object-reloc-keep-cache.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-2/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +7 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-8/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at drm_fdinfo@virtual-busy: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-4/igt at drm_fdinfo@virtual-busy.html * igt at gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-14/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-7/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#13008]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-4/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-7/igt at gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][19] ([i915#13427]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-7/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][20] ([i915#12353]) +1 other test incomplete [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-glk7/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][21] ([i915#1099]) +5 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-snb5/igt at gem_ctx_persistence@engines-mixed-process.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-7/igt at gem_ctx_persistence@heartbeat-hostile.html - shard-dg1: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at gem_ctx_persistence@heartbeat-hostile.html - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-7/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-10/igt at gem_ctx_sseu@invalid-args.html * igt at gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@hibernate: - shard-dg1: NOTRUN -> [ABORT][27] ([i915#7975] / [i915#8213]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-14/igt at gem_eio@hibernate.html * igt at gem_eio@in-flight-suspend: - shard-rkl: [PASS][28] -> [DMESG-WARN][29] ([i915#12964]) +40 other tests dmesg-warn [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-5/igt at gem_eio@in-flight-suspend.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-5/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@kms: - shard-dg1: NOTRUN -> [FAIL][30] ([i915#5784]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at gem_eio@kms.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4036]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-10/igt at gem_exec_balancer@invalid-bonds.html - shard-dg1: NOTRUN -> [SKIP][32] ([i915#4036]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-4/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-out-fence: - shard-tglu: NOTRUN -> [SKIP][34] ([i915#4525]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-8/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_big@single: - shard-tglu: NOTRUN -> [ABORT][35] ([i915#11713]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-2/igt at gem_exec_big@single.html * igt at gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#6334]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-6/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4812]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-11/igt at gem_exec_fence@submit3.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-rkl: NOTRUN -> [DMESG-WARN][38] ([i915#12964]) +14 other tests dmesg-warn [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-1/igt at gem_exec_flush@basic-uc-prw-default.html - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-13/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-8/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-5/igt at gem_exec_flush@basic-wb-pro-default.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-18/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#5107]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-5/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-gtt-active: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +10 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-7/igt at gem_exec_reloc@basic-gtt-active.html * igt at gem_exec_reloc@basic-gtt-read-active: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +7 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-1/igt at gem_exec_reloc@basic-gtt-read-active.html * igt at gem_exec_reloc@basic-gtt-wc-active: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-5/igt at gem_exec_reloc@basic-gtt-wc-active.html * igt at gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3281]) +13 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at gem_exec_reloc@basic-write-cpu-active.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4812]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#7276]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-4/igt at gem_exec_schedule@semaphore-power.html - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-11/igt at gem_exec_schedule@semaphore-power.html * igt at gem_exec_suspend@basic-s3-devices: - shard-dg1: [PASS][51] -> [DMESG-WARN][52] ([i915#4423]) +2 other tests dmesg-warn [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt at gem_exec_suspend@basic-s3-devices.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-14/igt at gem_exec_suspend@basic-s3-devices.html * igt at gem_exec_suspend@basic-s4-devices: - shard-tglu: [PASS][53] -> [ABORT][54] ([i915#7975] / [i915#8213]) +1 other test abort [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-tglu-4/igt at gem_exec_suspend@basic-s4-devices.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-10/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4565]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at gem_lmem_swapping@heavy-verify-multi-ccs at lmem0.html * igt at gem_lmem_swapping@massive: - shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at gem_lmem_swapping@massive.html * igt at gem_lmem_swapping@massive-random: - shard-glk: NOTRUN -> [SKIP][57] ([i915#4613]) +5 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-glk6/igt at gem_lmem_swapping@massive-random.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-1/igt at gem_lmem_swapping@parallel-random-verify-ccs.html - shard-dg1: NOTRUN -> [SKIP][59] ([i915#12193]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-18/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@random: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4613]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-1/igt at gem_lmem_swapping@random.html * igt at gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-7/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_mmap@bad-offset: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4083]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-1/igt at gem_mmap@bad-offset.html * igt at gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4077]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-7/igt at gem_mmap_gtt@big-bo-tiledy.html * igt at gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4077]) +6 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-18/igt at gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt at gem_mmap_wc@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4083]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-13/igt at gem_mmap_wc@fault-concurrent.html * igt at gem_mmap_wc@write-prefaulted: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4083]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-1/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3282]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-11/igt at gem_partial_pwrite_pread@write.html * igt at gem_pwrite@basic-self: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) +5 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-14/igt at gem_pwrite@basic-self.html * igt at gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3282]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-5/igt at gem_pwrite_snooped.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-rkl: NOTRUN -> [TIMEOUT][70] ([i915#12917] / [i915#12964]) +3 other tests timeout [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-3/igt at gem_pxp@hw-rejects-pxp-context.html - shard-tglu: NOTRUN -> [SKIP][71] ([i915#13398]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-9/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4270]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-18/igt at gem_pxp@reject-modify-context-protection-off-3.html * igt at gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-5/igt at gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt at gem_render_copy@yf-tiled-ccs-to-linear: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-3/igt at gem_render_copy@yf-tiled-ccs-to-linear.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#5190] / [i915#8428]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-1/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4079]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_softpin@noreloc-s3: - shard-glk: NOTRUN -> [INCOMPLETE][77] ([i915#13306]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-glk6/igt at gem_softpin@noreloc-s3.html * igt at gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4079]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-1/igt at gem_tiled_pread_pwrite.html * igt at gem_tiled_swapping@non-threaded: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4077]) +5 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-1/igt at gem_tiled_swapping@non-threaded.html - shard-snb: NOTRUN -> [ABORT][80] ([i915#13263] / [i915#13449]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-snb7/igt at gem_tiled_swapping@non-threaded.html - shard-glk: NOTRUN -> [ABORT][81] ([i915#13263] / [i915#13449]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-glk2/igt at gem_tiled_swapping@non-threaded.html * igt at gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4879]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-8/igt at gem_userptr_blits@coherency-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#3323]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-7/igt at gem_userptr_blits@dmabuf-sync.html - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-2/igt at gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#3323]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-1/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4958]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3297]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-1/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][90] ([i915#3297]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-7/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-6/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@batch-invalid-length: - shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at gen9_exec_parse@batch-invalid-length.html * igt at gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#2856]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-3/igt at gen9_exec_parse@batch-without-end.html * igt at gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-18/igt at gen9_exec_parse@bb-large.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#2856]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-7/igt at gen9_exec_parse@shadow-peek.html * igt at gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#2527]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-3/igt at gen9_exec_parse@valid-registers.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: [PASS][97] -> [INCOMPLETE][98] ([i915#12797]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-glk7/igt at i915_pm_rpm@system-suspend-execbuf.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-glk7/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#11681] / [i915#6621]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at i915_pm_rps@basic-api.html * igt at i915_suspend@basic-s3-without-i915: - shard-tglu-1: NOTRUN -> [INCOMPLETE][100] ([i915#7443]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][101] ([i915#4817]) +1 other test incomplete [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-glk8/igt at i915_suspend@forcewake.html * igt at i915_suspend@sysfs-reader: - shard-glk: [PASS][102] -> [INCOMPLETE][103] ([i915#4817]) +1 other test incomplete [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-glk3/igt at i915_suspend@sysfs-reader.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-glk9/igt at i915_suspend@sysfs-reader.html * igt at intel_hwmon@hwmon-write: - shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#7707]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#12454] / [i915#12712]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-8/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#12454] / [i915#12712]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-6/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-rkl: NOTRUN -> [SKIP][107] ([i915#12454] / [i915#12712]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/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-atomic at pipe-a-hdmi-a-1-y-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#8709]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-4/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][109] ([i915#8709]) +7 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-14/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-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#8709]) +11 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-7/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-3-4-mc-ccs.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#12967] / [i915#6228]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-10/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe-a-hdmi-a-4: - shard-dg1: [PASS][112] -> [FAIL][113] ([i915#5956]) +1 other test fail [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-14/igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe-a-hdmi-a-4.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at kms_atomic_transition@plane-all-modeset-transition-fencing at pipe-a-hdmi-a-4.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-4/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-9/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#5286]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5286]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-13/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#5286]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/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-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-2/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#3638]) +4 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-6/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5190]) +8 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-7/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#3638]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-13/igt at kms_big_fb@y-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6187]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-2/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][124] +9 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-7/igt at kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][125] +35 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-18/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6095]) +24 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-8/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc at pipe-c-edp-1.html * igt at kms_ccs@bad-pixel-format-y-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-8/igt at kms_ccs@bad-pixel-format-y-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#10307] / [i915#6095]) +111 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-10/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#12313]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#6095]) +54 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-8/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#6095]) +19 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][133] ([i915#12796]) +1 other test incomplete [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/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-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#6095]) +11 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-10/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#12313]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/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-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#12313]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-4/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][137] ([i915#12313]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-10/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-ccs at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#6095]) +74 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-7/igt at kms_ccs@random-ccs-data-y-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#6095]) +161 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_cdclk@mode-transition: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#11616] / [i915#7213]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-1/igt at kms_cdclk@mode-transition.html - shard-dg1: NOTRUN -> [SKIP][141] ([i915#3742]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-14/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#7213]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-1/igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3.html * igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#4087]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-11/igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-2.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +8 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-4/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@dp-mode-timings: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-8/igt at kms_chamelium_edid@dp-mode-timings.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +8 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-7/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +8 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-7/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_frames@dp-frame-dump: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#4423] / [i915#7828]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-14/igt at kms_chamelium_frames@dp-frame-dump.html * igt at kms_chamelium_frames@vga-frame-dump: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +9 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-18/igt at kms_chamelium_frames@vga-frame-dump.html * igt at kms_chamelium_hpd@dp-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html * igt at kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-4/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#3299]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-4/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#3116]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-6/igt at kms_content_protection@dp-mst-type-1.html - shard-tglu: NOTRUN -> [SKIP][154] ([i915#3116] / [i915#3299]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-10/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#7118] / [i915#9424]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-8/igt at kms_content_protection@legacy.html - shard-rkl: NOTRUN -> [SKIP][156] ([i915#7118] / [i915#9424]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-5/igt at kms_content_protection@legacy.html - shard-dg1: NOTRUN -> [SKIP][157] ([i915#7116] / [i915#9424]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-13/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#9424]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-2/igt at kms_content_protection@lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#9424]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][160] ([i915#7173]) +1 other test timeout [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-10/igt at kms_content_protection@lic-type-0 at pipe-a-dp-4.html * igt at kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#6944] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-3/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#6944]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-1/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#7118] / [i915#7162] / [i915#9424]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-10/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#3555]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#13049]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-5/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#13049]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-6/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#3555]) +6 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-8/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#13049]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at kms_cursor_crc@cursor-random-512x170.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#13049]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-13/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#8814]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-7/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#13049]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-5/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3555]) +4 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-5/igt at kms_cursor_crc@cursor-sliding-max-size.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-FAIL][174] ([i915#12964]) +2 other tests dmesg-fail [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-7/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-snb: [PASS][175] -> [SKIP][176] +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-snb5/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-snb5/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][177] +20 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-2/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#9809]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-8/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#13046] / [i915#5354]) +5 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-5/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][180] ([i915#2346]) +1 other test fail [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-glk9/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#4103]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/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-dg1: NOTRUN -> [SKIP][182] ([i915#4103] / [i915#4213]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#4103]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][184] ([i915#4103]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#8588]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-9/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#1257]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at kms_dp_aux_dev.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#8812]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-11/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-4/igt at kms_dsc@dsc-basic.html - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-7/igt at kms_dsc@dsc-with-bpc-formats.html - shard-dg1: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#3840] / [i915#9053]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-9/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#1839]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-1/igt at kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][194] ([i915#1839]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-18/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#658]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-2/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#658]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-absolute-wf_vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3637]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-8/igt at kms_flip@2x-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#9934]) +7 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-13/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#9934]) +8 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-3/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#3637]) +5 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#9934]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-11/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#3637]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-9/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-snb: [PASS][203] -> [FAIL][204] ([i915#11989]) +1 other test fail [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-snb7/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-snb2/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-snb: NOTRUN -> [FAIL][205] ([i915#11989]) +1 other test fail [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-snb5/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-tglu: [PASS][206] -> [FAIL][207] ([i915#11989]) +1 other test fail [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-tglu-3/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-4/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-rkl: [PASS][208] -> [FAIL][209] ([i915#11989]) +1 other test fail [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-5/igt at kms_flip@flip-vs-blocking-wf-vblank.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-3/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-mtlp: [PASS][210] -> [FAIL][211] ([i915#11989]) +1 other test fail [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-1/igt at kms_flip@plain-flip-ts-check-interruptible.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-4/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip@plain-flip-ts-check-interruptible at b-hdmi-a1: - shard-rkl: NOTRUN -> [FAIL][212] ([i915#11989]) +2 other tests fail [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-4/igt at kms_flip@plain-flip-ts-check-interruptible at b-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/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-tglu: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) +5 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-9/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-yftileccs-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#3555] / [i915#8813]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html - shard-dg2: NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-11/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#8813]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-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-dg2: NOTRUN -> [SKIP][218] ([i915#2672]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-11/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][219] ([i915#2672]) +2 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-6/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-ytileccs-to-64bpp-ytile-upscaling: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/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-upscaling: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][222] ([i915#2672] / [i915#3555]) +4 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/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][223] ([i915#2587] / [i915#2672]) +4 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/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: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#2672] / [i915#3555]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/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-1: NOTRUN -> [SKIP][225] ([i915#2587] / [i915#2672]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/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-32bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#2672] / [i915#3555] / [i915#5190]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#8708]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-3/igt at kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][228] +38 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#8708]) +14 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-1/igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#8708]) +16 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-14/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#5439]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-5/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][232] ([i915#5439]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-3/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#3458]) +14 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#10433] / [i915#3458]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#5354]) +23 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#1825]) +7 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#1825]) +32 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#9766]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/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][239] ([i915#3023]) +26 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#3458]) +17 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt at kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-8/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@bpc-switch-suspend: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8228]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-3/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8228]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-5/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle-dpms: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8228]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at kms_hdr@static-toggle-dpms.html * igt at kms_histogram@algo-basic: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#13389]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-8/igt at kms_histogram@algo-basic.html - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#13389]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-7/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#13389]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-14/igt at kms_histogram@algo-color.html * igt at kms_histogram@global-basic: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#13388]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at kms_histogram@global-basic.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#12388]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#12394]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-7/igt at kms_joiner@basic-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][251] ([i915#12394]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-1/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#12339]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-5/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#12339]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][254] +8 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-8/igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#3555]) +5 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-7/igt at kms_plane_multiple@tiling-yf.html - shard-dg1: NOTRUN -> [SKIP][256] ([i915#3555]) +6 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#12247]) +17 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-8/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format at pipe-a: - shard-rkl: [PASS][258] -> [DMESG-WARN][259] ([i915#12964] / [i915#1982]) +1 other test dmesg-warn [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-7/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format at pipe-a.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-1/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format at pipe-a.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation at pipe-b: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#12247]) +4 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-5/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation at pipe-b.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#12247]) +4 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/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 at pipe-a: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#12247]) +4 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-4/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][263] ([i915#12247]) +8 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/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-dg1: NOTRUN -> [SKIP][264] ([i915#12247] / [i915#6953]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#12247] / [i915#6953] / [i915#9423]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-4/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][266] ([i915#12247] / [i915#6953]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-7/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][267] ([i915#12247]) +7 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-4/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#12247] / [i915#3555] / [i915#9423]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-5/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#5354]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-7/igt at kms_pm_backlight@basic-brightness.html - shard-tglu: NOTRUN -> [SKIP][270] ([i915#9812]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-6/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#5354]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-18/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#9685]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#3828]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-5/igt at kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][274] ([i915#3828]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-13/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#9685]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-8/igt at kms_pm_dc@dc6-psr.html - shard-rkl: NOTRUN -> [SKIP][276] ([i915#9685]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-1/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#3361]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-1/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#3828]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-9/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][279] ([i915#8430]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-9/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][280] -> [SKIP][281] ([i915#9519]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-4/igt at kms_pm_rpm@dpms-lpsp.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-3/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#9519]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-8/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][283] -> [SKIP][284] ([i915#9519]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-1/igt at kms_pm_rpm@dpms-non-lpsp.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-8/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_prime@basic-crc-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#6524]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#6524]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#11520]) +5 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-1/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-exceed-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#9808]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-1/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#11520]) +7 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-2/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#12316]) +3 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-1/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area at pipe-b-edp-1.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#11520]) +2 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#11520]) +6 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-14/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#11520]) +5 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-9/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][294] ([i915#11520]) +10 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-glk6/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-snb: NOTRUN -> [SKIP][295] ([i915#11520]) +7 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-snb7/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#9683]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-13/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#9683]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-11/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#9732]) +7 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at kms_psr@fbc-pr-sprite-plane-onoff.html * igt at kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#9732]) +17 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-8/igt at kms_psr@fbc-psr-no-drrs.html * igt at kms_psr@fbc-psr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#1072] / [i915#9732]) +15 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-11/igt at kms_psr@fbc-psr-primary-page-flip.html * igt at kms_psr@pr-basic: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#9688]) +4 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-8/igt at kms_psr@pr-basic.html * igt at kms_psr@psr-cursor-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#1072] / [i915#9732]) +22 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-7/igt at kms_psr@psr-cursor-mmap-cpu.html * igt at kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#1072] / [i915#9732]) +23 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at kms_psr@psr-sprite-mmap-cpu.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][304] +348 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-glk6/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#9685]) +2 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-14/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#5289]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-3/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#12755] / [i915#5190]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-10/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][308] ([i915#5289]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-14/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#12755]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-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-tglu-1: NOTRUN -> [SKIP][310] ([i915#5289]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][311] ([i915#5465]) +2 other tests fail [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-snb5/igt at kms_setmode@basic.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-mtlp: [PASS][312] -> [FAIL][313] ([i915#5465]) +2 other tests fail [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-2/igt at kms_setmode@basic at pipe-b-edp-1.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-3/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][314] ([IGT#160] / [i915#6493]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-14/igt at kms_sysfs_edid_timing.html * igt at kms_vblank@query-forked-hang: - shard-rkl: NOTRUN -> [DMESG-WARN][315] ([i915#12917] / [i915#12964]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-7/igt at kms_vblank@query-forked-hang.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][316] ([i915#12276]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-glk4/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-2.html * igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-2: - shard-rkl: [PASS][317] -> [DMESG-FAIL][318] ([i915#12964]) +1 other test dmesg-fail [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-5/igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-2.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-3/igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-2.html * igt at kms_vrr@max-min: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#9906]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-5/igt at kms_vrr@max-min.html - shard-rkl: NOTRUN -> [SKIP][320] ([i915#9906]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-3/igt at kms_vrr@max-min.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#9906]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#2437]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-8/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#2437] / [i915#9412]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-5/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#2437]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-2/igt at kms_writeback@writeback-fb-id.html - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#2437]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][326] ([i915#2437]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-14/igt at kms_writeback@writeback-invalid-parameters.html - shard-tglu: NOTRUN -> [SKIP][327] ([i915#2437]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-4/igt at kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][328] ([i915#2437]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-glk2/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#2437] / [i915#9412]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-3/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#7387]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-1/igt at perf@global-sseu-config.html * igt at perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#7387]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-5/igt at perf@global-sseu-config-invalid.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][332] +369 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-snb2/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@busy-check-all at rcs0: - shard-mtlp: NOTRUN -> [FAIL][333] ([i915#4349]) +1 other test fail [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-7/igt at perf_pmu@busy-check-all at rcs0.html - shard-dg2: NOTRUN -> [FAIL][334] ([i915#4349]) +1 other test fail [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-1/igt at perf_pmu@busy-check-all at rcs0.html - shard-dg1: NOTRUN -> [FAIL][335] ([i915#4349]) +1 other test fail [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-14/igt at perf_pmu@busy-check-all at rcs0.html * igt at perf_pmu@busy-idle at vcs1: - shard-mtlp: [PASS][336] -> [FAIL][337] ([i915#4349]) +8 other tests fail [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-1/igt at perf_pmu@busy-idle at vcs1.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-7/igt at perf_pmu@busy-idle at vcs1.html * igt at perf_pmu@busy-idle at vecs1: - shard-dg2: [PASS][338] -> [FAIL][339] ([i915#4349]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-4/igt at perf_pmu@busy-idle at vecs1.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-7/igt at perf_pmu@busy-idle at vecs1.html * igt at perf_pmu@cpu-hotplug: - shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#8850]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@most-busy-check-all: - shard-rkl: [PASS][341] -> [FAIL][342] ([i915#4349]) +1 other test fail [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-2/igt at perf_pmu@most-busy-check-all.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-3/igt at perf_pmu@most-busy-check-all.html * igt at perf_pmu@multi-client at rcs0: - shard-dg1: [PASS][343] -> [FAIL][344] ([i915#4349]) +5 other tests fail [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-14/igt at perf_pmu@multi-client at rcs0.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at perf_pmu@multi-client at rcs0.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#8516]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-7/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#3708] / [i915#4077]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-8/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][347] ([i915#3708]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][348] ([i915#3708]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-5/igt at prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][349] ([i915#3708]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-3/igt at prime_vgem@fence-read-hang.html * igt at prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][350] +67 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-8/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-dg1: NOTRUN -> [SKIP][351] ([i915#9917]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at sriov_basic@enable-vfs-autoprobe-on.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#9917]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-1/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt at gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][353] ([i915#7297]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-10/igt at gem_ccs@suspend-resume.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-11/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][355] ([i915#12392] / [i915#7297]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-10/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-smem-lmem0.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-11/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-smem-lmem0.html * igt at gem_exec_balancer@full-late-pulse: - shard-mtlp: [FAIL][357] ([i915#13364]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-4/igt at gem_exec_balancer@full-late-pulse.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-8/igt at gem_exec_balancer@full-late-pulse.html * igt at gem_exec_schedule@preemptive-hang: - shard-rkl: [DMESG-WARN][359] ([i915#12964]) -> [PASS][360] +42 other tests pass [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-5/igt at gem_exec_schedule@preemptive-hang.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-7/igt at gem_exec_schedule@preemptive-hang.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [ABORT][361] ([i915#10729]) -> [PASS][362] +1 other test pass [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-1/igt at gem_mmap_offset@clear-via-pagefault.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-1/igt at gem_mmap_offset@clear-via-pagefault.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][363] ([i915#9820]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-1/igt at i915_module_load@reload-with-fault-injection.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-3/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [DMESG-FAIL][365] ([i915#13393]) -> [PASS][366] +1 other test pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-7/igt at i915_selftest@live at workarounds.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-5/igt at i915_selftest@live at workarounds.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1: - shard-glk: [FAIL][367] ([i915#10991] / [i915#13335]) -> [PASS][368] +1 other test pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-glk3/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-glk4/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][369] ([i915#5138]) -> [PASS][370] [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-2/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_color@deep-color: - shard-dg2: [SKIP][371] ([i915#3555]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-5/igt at kms_color@deep-color.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-10/igt at kms_color@deep-color.html * igt at kms_dp_aux_dev: - shard-dg2: [SKIP][373] ([i915#1257]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-2/igt at kms_dp_aux_dev.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-10/igt at kms_dp_aux_dev.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-vga1-hdmi-a1: - shard-snb: [FAIL][375] ([i915#11989]) -> [PASS][376] +3 other tests pass [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-snb5/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-vga1-hdmi-a1.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-snb7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-vga1-hdmi-a1.html * igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1: - shard-tglu: [FAIL][377] ([i915#11989]) -> [PASS][378] +3 other tests pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-tglu-10/igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-9/igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate at a-edp1: - shard-mtlp: [FAIL][379] ([i915#11989]) -> [PASS][380] +2 other tests pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-6/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-3/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats at pipe-a: - shard-rkl: [DMESG-WARN][381] ([i915#12964] / [i915#1982]) -> [PASS][382] +1 other test pass [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-2/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats at pipe-a.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-1/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats at pipe-a.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: [INCOMPLETE][383] ([i915#10553]) -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-glk6/igt at kms_pm_rpm@system-suspend-modeset.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-glk6/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][385] ([i915#12276]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-glk2/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-glk4/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html * igt at perf_pmu@busy-idle at ccs0: - shard-dg2: [FAIL][387] ([i915#4349]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-4/igt at perf_pmu@busy-idle at ccs0.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-7/igt at perf_pmu@busy-idle at ccs0.html * igt at perf_pmu@busy-idle at vecs0: - shard-dg1: [FAIL][389] ([i915#4349]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-17/igt at perf_pmu@busy-idle at vecs0.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at perf_pmu@busy-idle at vecs0.html * igt at syncobj_timeline@invalid-query-zero-handles: - shard-dg1: [DMESG-WARN][391] ([i915#4423]) -> [PASS][392] +3 other tests pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt at syncobj_timeline@invalid-query-zero-handles.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-13/igt at syncobj_timeline@invalid-query-zero-handles.html #### Warnings #### * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: [DMESG-WARN][393] ([i915#5493]) -> [TIMEOUT][394] ([i915#5493]) +1 other test timeout [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-1/igt at gem_lmem_swapping@smem-oom at lmem0.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-5/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][395] ([i915#10131] / [i915#10887]) -> [ABORT][396] ([i915#10131] / [i915#10887] / [i915#9820]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-7/igt at i915_module_load@reload-with-fault-injection.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-8/igt at i915_module_load@reload-with-fault-injection.html - shard-dg2: [ABORT][397] ([i915#9820]) -> [DMESG-WARN][398] ([i915#13475]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-4/igt at i915_module_load@reload-with-fault-injection.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-5/igt at i915_module_load@reload-with-fault-injection.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg1: [SKIP][399] ([i915#4538]) -> [SKIP][400] ([i915#4423] / [i915#4538]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-12/igt at kms_big_fb@yf-tiled-8bpp-rotate-90.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-17/igt at kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-dg1: [SKIP][401] ([i915#4423] / [i915#6095]) -> [SKIP][402] ([i915#6095]) +2 other tests skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-13/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: [SKIP][403] ([i915#7828]) -> [SKIP][404] ([i915#11151] / [i915#7828]) +21 other tests skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-11/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/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-tglu-1: [SKIP][405] ([i915#7828]) -> [SKIP][406] ([i915#11151] / [i915#7828]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-tglu-1/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-1/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_hpd@dp-hpd: - shard-rkl: [SKIP][407] ([i915#7828]) -> [SKIP][408] ([i915#11151] / [i915#7828]) +26 other tests skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-1/igt at kms_chamelium_hpd@dp-hpd.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-rkl-3/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: [SKIP][409] ([i915#7828]) -> [SKIP][410] ([i915#11151] / [i915#7828]) +46 other tests skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-8/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-mtlp-4/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: [SKIP][411] ([i915#7828]) -> [SKIP][412] ([i915#11151] / [i915#7828]) +36 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-tglu-3/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-tglu-7/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: [SKIP][413] ([i915#7828]) -> [SKIP][414] ([i915#11151] / [i915#7828]) +33 other tests skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_content_protection@mei-interface: - shard-snb: [SKIP][415] -> [INCOMPLETE][416] ([i915#9878]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-snb4/igt at kms_content_protection@mei-interface.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-snb5/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-snb: [INCOMPLETE][417] ([i915#8816]) -> [SKIP][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-snb5/igt at kms_content_protection@uevent.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-snb7/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg1: [SKIP][419] ([i915#13049]) -> [SKIP][420] ([i915#13049] / [i915#4423]) +1 other test skip [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-12/igt at kms_cursor_crc@cursor-random-512x512.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-13/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg1: [SKIP][421] ([i915#3840] / [i915#9053]) -> [SKIP][422] ([i915#3840] / [i915#4423] / [i915#9053]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-13/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-14/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg1: [SKIP][423] ([i915#4423] / [i915#9934]) -> [SKIP][424] ([i915#9934]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg1-12/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: [INCOMPLETE][425] ([i915#10056]) -> [INCOMPLETE][426] ([i915#10056] / [i915#13353]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-glk8/igt at kms_frontbuffer_tracking@fbc-suspend.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-glk5/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][427] ([i915#3458]) -> [SKIP][428] ([i915#10433] / [i915#3458]) +2 other tests skip [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [SKIP][429] ([i915#10433] / [i915#3458]) -> [SKIP][430] ([i915#3458]) +2 other tests skip [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/shard-dg2-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html * igt at kms_hdr@brightness-with-hdr: - shard-tglu: [SKIP][431] ([i915#12713]) -> [SKIP][432] ([i915#1187] / [i915#12713]) [431]: https://intel-gf == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12397/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 14 13:00:13 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 14 Jan 2025 13:00:13 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel/kms=5Fjoiner?= =?utf-8?q?=3A_switch_modeset_from_uj_to_bj_and_vice-versa?= In-Reply-To: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> References: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> Message-ID: <173685961323.3598920.5568742051670752916@b555e5b46a47> == Series Details == Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa URL : https://patchwork.freedesktop.org/series/143367/ State : failure == Summary == CI Bug Log - changes from IGT_8186_full -> IGTPW_12423_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12423_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12423_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_12423/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12423_full: ### IGT changes ### #### Possible regressions #### * igt at gem_exec_suspend@basic-s0 at smem: - shard-rkl: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-rkl-5/igt at gem_exec_suspend@basic-s0 at smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at gem_exec_suspend@basic-s0 at smem.html * igt at i915_pm_rps@waitboost: - shard-dg1: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-dg1-17/igt at i915_pm_rps@waitboost.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at i915_pm_rps@waitboost.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk4/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner (NEW): - shard-dg1: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html New tests --------- New tests have been introduced between IGT_8186_full and IGTPW_12423_full: ### New IGT tests (1) ### * igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner: - Statuses : 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_12423_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8411]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8411]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-4/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#9318]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at debugfs_test@basic-hwmon.html - shard-rkl: NOTRUN -> [SKIP][14] ([i915#9318]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at debugfs_test@basic-hwmon.html - shard-tglu: NOTRUN -> [SKIP][15] ([i915#9318]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-7/igt at debugfs_test@basic-hwmon.html * igt at device_reset@unbind-cold-reset-rebind: - shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#11078]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-check-all at bcs0: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8414]) +6 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at drm_fdinfo@busy-check-all at bcs0.html * igt at drm_fdinfo@busy-check-all at ccs0: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#8414]) +6 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at drm_fdinfo@busy-check-all at ccs0.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#8414]) +34 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at gem_bad_reloc@negative-reloc: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#3281]) +6 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at gem_bad_reloc@negative-reloc.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#3281]) +4 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at gem_bad_reloc@negative-reloc.html * igt at gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][22] ([i915#7697]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-3/igt at gem_basic@multigpu-create-close.html * igt at gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4873]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-5/igt at gem_caching@reads.html * igt at gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][24] ([i915#7297]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][25] ([i915#9323]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][26] ([i915#12392] / [i915#7297]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-smem-lmem0.html * igt at gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][27] ([i915#13427]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][28] ([i915#6335]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_create@create-ext-set-pat: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#8562]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][30] ([i915#12353]) +1 other test incomplete [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk2/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][31] ([i915#1099]) +11 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at gem_ctx_persistence@engines-mixed-process.html * igt at gem_ctx_persistence@heartbeat-many: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#8555]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-5/igt at gem_ctx_persistence@heartbeat-many.html - shard-dg2: NOTRUN -> [SKIP][33] ([i915#8555]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at gem_ctx_persistence@heartbeat-many.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#280]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/igt at gem_ctx_sseu@engines.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][35] ([i915#13197] / [i915#13390]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk7/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][36] ([i915#8898]) +1 other test fail [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb2/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4771]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4812]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_exec_balancer@bonded-false-hang.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4812]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4036]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@noheartbeat: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#8555]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#4525]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt at gem_exec_balancer@parallel-keep-in-fence: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#4525]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at gem_exec_balancer@parallel-keep-in-fence.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#4525]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_big@single: - shard-tglu: NOTRUN -> [ABORT][45] ([i915#11713]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-7/igt at gem_exec_big@single.html * igt at gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at gem_exec_flush@basic-batch-kernel-default-wb.html * igt at gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3281]) +8 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_exec_reloc@basic-active.html * igt at gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at gem_exec_schedule@semaphore-power.html * igt at gem_exec_suspend@basic-s0 at smem: - shard-dg2: NOTRUN -> [INCOMPLETE][49] ([i915#11441] / [i915#13304]) +1 other test incomplete [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at gem_exec_suspend@basic-s0 at smem.html * igt at gem_exec_suspend@basic-s3 at smem: - shard-glk: NOTRUN -> [INCOMPLETE][50] ([i915#13196]) +1 other test incomplete [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk8/igt at gem_exec_suspend@basic-s3 at smem.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][51] ([i915#7975] / [i915#8213]) +1 other test abort [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at gem_exec_suspend@basic-s4-devices.html - shard-rkl: NOTRUN -> [ABORT][52] ([i915#7975] / [i915#8213]) +1 other test abort [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4860]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_fence_thrash@bo-copy.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-1/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-dg1: NOTRUN -> [SKIP][57] ([i915#12193]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4565]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at gem_lmem_swapping@heavy-verify-multi-ccs at lmem0.html * igt at gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][59] ([i915#4613]) +8 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk9/igt at gem_lmem_swapping@random-engines.html * igt at gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][60] ([i915#4613]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at gem_lmem_swapping@smem-oom.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][61] ([i915#5493]) +1 other test timeout [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-ccs: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-1/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#8289]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at gem_media_fill@media-fill.html * igt at gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][65] ([i915#284]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-7/igt at gem_media_vme.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4077]) +13 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@coherency: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4077]) +11 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at gem_mmap_gtt@coherency.html * igt at gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_mmap_wc@copy.html * igt at gem_mmap_wc@pf-nonblock: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4083]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at gem_mmap_wc@pf-nonblock.html * igt at gem_mmap_wc@write-cpu-read-wc: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4083]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at gem_mmap_wc@write-cpu-read-wc.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_partial_pwrite_pread@write: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at gem_partial_pwrite_pread@write.html * igt at gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][73] ([i915#2658]) +1 other test warn [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][74] ([i915#2658]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk2/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_12423/shard-dg2-10/igt at gem_pread@snoop.html * igt at gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [WARN][76] ([i915#2658]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-7/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4270]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][78] ([i915#12917] / [i915#12964]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at gem_pxp@hw-rejects-pxp-buffer.html - shard-tglu: NOTRUN -> [SKIP][79] ([i915#13398]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-4/igt at gem_pxp@hw-rejects-pxp-buffer.html - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#13398]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-4/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at gem_pxp@reject-modify-context-protection-off-3.html * igt at gem_readwrite@write-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3282]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at gem_readwrite@write-bad-handle.html * igt at gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#8428]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#5190] / [i915#8428]) +6 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#8411]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4079]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4079]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at gem_tiled_pread_pwrite.html * igt at gem_tiled_wb: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4077]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at gem_tiled_wb.html * igt at gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#4879]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at gem_unfence_active_buffers.html - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4879]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-7/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@access-control: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at gem_userptr_blits@access-control.html * igt at gem_userptr_blits@coherency-sync: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#3297]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at gem_userptr_blits@coherency-sync.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#3297]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#3297]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4880]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.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_12423/shard-rkl-1/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_12423/shard-dg1-14/igt at gem_userptr_blits@sd-probe.html * igt at gem_workarounds@suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][99] ([i915#13356]) +1 other test incomplete [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk1/igt at gem_workarounds@suspend-resume.html * igt at gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at gen9_exec_parse@batch-zero-length.html * igt at gen9_exec_parse@bb-secure: - shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at gen9_exec_parse@bb-secure.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#2527]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at gen9_exec_parse@bb-start-cmd.html - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#2856]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-7/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#2527]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/igt at gen9_exec_parse@bb-start-far.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#2856]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at gen9_exec_parse@shadow-peek.html * igt at i915_module_load@reload-with-fault-injection: - shard-glk: [PASS][106] -> [ABORT][107] ([i915#9820]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-glk1/igt at i915_module_load@reload-with-fault-injection.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk1/igt at i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [ABORT][108] ([i915#9820]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#6412]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at i915_module_load@resize-bar.html * igt at i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#8399]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#6590]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [PASS][112] -> [FAIL][113] ([i915#12942]) +1 other test fail [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-rkl-7/igt at i915_pm_rc6_residency@rc6-accuracy.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at i915_pm_rps@thresholds-idle: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#11681]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at i915_pm_rps@thresholds-idle.html * igt at i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#11681]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at i915_pm_rps@thresholds-park.html * igt at i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4387]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at i915_pm_sseu@full-enable.html * igt at i915_power@sanity: - shard-mtlp: [PASS][117] -> [SKIP][118] ([i915#7984]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-mtlp-4/igt at i915_power@sanity.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at i915_power@sanity.html * igt at i915_query@test-query-geometry-subslices: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#5723]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-6/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][120] ([i915#1982] / [i915#9311]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk5/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-tglu-1: NOTRUN -> [DMESG-WARN][121] ([i915#9311]) +1 other test dmesg-warn [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at i915_selftest@mock at memory_region.html - shard-glk: NOTRUN -> [DMESG-WARN][122] ([i915#9311]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk5/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s2idle-without-i915: - shard-snb: NOTRUN -> [ABORT][123] ([i915#11703]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at i915_suspend@basic-s2idle-without-i915.html * igt at i915_suspend@sysfs-reader: - shard-glk: [PASS][124] -> [INCOMPLETE][125] ([i915#4817]) +1 other test incomplete [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-glk9/igt at i915_suspend@sysfs-reader.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk9/igt at i915_suspend@sysfs-reader.html * igt at kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4212]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_addfb_basic@addfb25-x-tiled-legacy.html * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4212]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.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_12423/shard-tglu-1/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: [PASS][129] -> [INCOMPLETE][130] ([i915#12761] / [i915#1982]) +1 other test incomplete [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-glk3/igt at kms_async_flips@async-flip-suspend-resume.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk5/igt at kms_async_flips@async-flip-suspend-resume.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][131] ([i915#8709]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-6/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-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#8709]) +15 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-4-y-rc-ccs.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_12423/shard-rkl-1/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][134] ([i915#9531]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][135] ([i915#9531]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#1769] / [i915#3555]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][137] ([i915#1769] / [i915#3555]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][138] ([i915#1769] / [i915#3555]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-9/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][139] +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-7/igt at kms_big_fb@4-tiled-16bpp-rotate-270.html * igt at kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#5286]) +5 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_big_fb@4-tiled-8bpp-rotate-180.html - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538] / [i915#5286]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_big_fb@4-tiled-8bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#5286]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-6/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: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#5286]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [PASS][144] -> [FAIL][145] ([i915#5138]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-mtlp-8/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#3638]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-dg2: NOTRUN -> [SKIP][147] +16 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at kms_big_fb@x-tiled-64bpp-rotate-270.html - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3638]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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][149] ([i915#6187]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-7/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][150] ([i915#4538] / [i915#5190]) +9 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/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-180: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#4538]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#6095]) +24 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-1/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc at pipe-b-edp-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#10307] / [i915#6095]) +131 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#12313]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-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_12423/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-rkl: NOTRUN -> [SKIP][156] ([i915#12805]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/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][157] ([i915#6095]) +69 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-mtl-rc-ccs-cc at pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#6095]) +169 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-ccs: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#6095]) +18 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html - shard-glk: NOTRUN -> [INCOMPLETE][160] ([i915#12796]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk4/igt at kms_ccs@crc-primary-suspend-y-tiled-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][161] ([i915#6095]) +44 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#12313]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#6095]) +39 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3742]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#3742]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_cdclk@plane-scaling.html - shard-tglu: NOTRUN -> [SKIP][166] ([i915#3742]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#4087]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3.html * igt at kms_cdclk@plane-scaling at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#4087]) +4 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-5/igt at kms_cdclk@plane-scaling at pipe-c-edp-1.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +10 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +7 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-mode-timings: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +5 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-7/igt at kms_chamelium_edid@hdmi-mode-timings.html * igt at kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-4/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +10 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +8 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#7116] / [i915#9424]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_content_protection@atomic.html - shard-rkl: NOTRUN -> [SKIP][176] ([i915#7118] / [i915#9424]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#3299]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_content_protection@dp-mst-type-0.html - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3299]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3116]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#6944] / [i915#9424]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-4/igt at kms_content_protection@legacy.html * igt at kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#7116] / [i915#7118]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#7118] / [i915#9424]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8814]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8814]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-5/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#13049]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#3555]) +5 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-max-size.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#13049]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-random-64x64: - shard-dg1: [PASS][188] -> [DMESG-WARN][189] ([i915#4423]) +1 other test dmesg-warn [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-dg1-18/igt at kms_cursor_crc@cursor-random-64x64.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_cursor_crc@cursor-random-64x64.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#13049]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#13049]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][193] ([i915#12358] / [i915#7882]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk6/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][194] ([i915#12358]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk6/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#13046] / [i915#5354]) +4 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-rkl: NOTRUN -> [SKIP][196] +10 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html - shard-snb: [PASS][197] -> [SKIP][198] +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-snb7/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb2/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: NOTRUN -> [FAIL][199] ([i915#2346]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#9067]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-dg1: NOTRUN -> [SKIP][201] ([i915#4103] / [i915#4213]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_display_modes@extended-mode-basic: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#3555]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2: [PASS][203] -> [SKIP][204] ([i915#3555]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-dg2-10/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#1257]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_dp_aux_dev.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#8812]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#3840]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#3840]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_dsc@dsc-with-formats.html * igt at kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#3840]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#3469]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@display-4x: - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#1839]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#9337]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#658]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][215] ([i915#658]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_feature_discovery@psr2.html * igt at kms_fence_pin_leak: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#4881]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][217] -> [FAIL][218] ([i915#11989]) +1 other test fail [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-glk3/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at bc-hdmi-a1-hdmi-a2.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk9/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at bc-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#9934]) +6 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-rkl: NOTRUN -> [SKIP][220] ([i915#9934]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#3637]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [FAIL][222] ([i915#11989]) +3 other tests fail [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@2x-flip-vs-dpms: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#3637]) +6 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-4/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#8381]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#3637]) +3 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#9934]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#8381]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][228] ([i915#12745] / [i915#4839]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk5/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][229] ([i915#12745]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk5/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-vga1: - shard-snb: [PASS][230] -> [FAIL][231] ([i915#11989]) +1 other test fail [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-snb2/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-vga1.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-vga1.html * igt at kms_flip@plain-flip-fb-recreate at d-hdmi-a1: - shard-tglu: [PASS][232] -> [FAIL][233] ([i915#11989]) +11 other tests fail [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-tglu-6/igt at kms_flip@plain-flip-fb-recreate at d-hdmi-a1.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_flip@plain-flip-fb-recreate at d-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-3/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-3/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-4tile-to-64bpp-4tile-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#2587] / [i915#2672]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/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-yftileccs-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#2672]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#3555]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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][242] ([i915#2587] / [i915#2672]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-32bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-7/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#3555] / [i915#5190]) +4 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#2672]) +6 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/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-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][246] ([i915#6880]) +1 other test fail [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#8708]) +13 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#3458]) +16 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#3023]) +14 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#8708]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#1825]) +26 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][252] +33 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#1825]) +8 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#5354]) +32 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#10055]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#10433] / [i915#3458]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][257] +383 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][258] +46 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#8708]) +12 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][260] +47 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html - shard-dg1: NOTRUN -> [SKIP][261] ([i915#3458]) +12 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#6118]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@bpc-switch: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8228]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@brightness-with-hdr: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#12713]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-swap: - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228]) +2 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-4/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-4/igt at kms_hdr@static-toggle-dpms.html - shard-rkl: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8228]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at kms_hdr@static-toggle-dpms.html - shard-dg1: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_hdr@static-toggle-dpms.html * igt at kms_histogram@algo-basic: - shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#13389]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_histogram@algo-basic.html * igt at kms_histogram@algo-color: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#13389]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_histogram@algo-color.html * igt at kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#10656]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#12339]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#10656]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#12388]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#4070] / [i915#4816]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#6301]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][278] ([i915#12756] / [i915#13409] / [i915#13476]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk6/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][279] ([i915#12756]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk6/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][280] ([i915#13026]) +1 other test incomplete [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk3/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_cursor@primary at pipe-b-hdmi-a-1-size-256: - shard-rkl: NOTRUN -> [DMESG-WARN][281] ([i915#12964]) +27 other tests dmesg-warn [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at kms_plane_cursor@primary at pipe-b-hdmi-a-1-size-256.html * igt at kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#3555]) +3 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_plane_lowres@tiling-4.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#12247] / [i915#9423]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#12247]) +4 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html - shard-dg1: NOTRUN -> [SKIP][285] ([i915#12247]) +4 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#12247] / [i915#6953]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/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-tglu-1: NOTRUN -> [SKIP][287] ([i915#12247]) +18 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/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-dg2: NOTRUN -> [SKIP][288] ([i915#12247] / [i915#6953] / [i915#9423]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/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_12423/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-25-upscale-factor-0-25 at pipe-a: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#12247]) +7 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-25-upscale-factor-0-25 at pipe-d: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#12247]) +3 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-6/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20 at pipe-d: - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#12247]) +4 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#12247] / [i915#6953]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#12343]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_pm_backlight@brightness-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][295] ([i915#12343]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#5354]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at kms_pm_backlight@fade.html - shard-dg1: NOTRUN -> [SKIP][297] ([i915#5354]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_pm_backlight@fade.html * igt at kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#9812]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#9685]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#3828]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][301] ([i915#9340]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_pm_lpsp@kms-lpsp.html - shard-tglu: NOTRUN -> [SKIP][302] ([i915#3828]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-9/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@cursor-dpms: - shard-rkl: [PASS][303] -> [SKIP][304] ([i915#12916]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-rkl-3/igt at kms_pm_rpm@cursor-dpms.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at kms_pm_rpm@cursor-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#9519]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][306] -> [SKIP][307] ([i915#9519]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-dg2-7/igt at kms_pm_rpm@dpms-non-lpsp.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_pm_rpm@dpms-non-lpsp.html - shard-rkl: NOTRUN -> [SKIP][308] ([i915#9519]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#9519]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][310] -> [SKIP][311] ([i915#9519]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-rkl-3/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][312] ([i915#10553]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk4/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#6524] / [i915#6805]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_prime@basic-crc-vgem.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][314] ([i915#11520]) +19 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][315] ([i915#11520]) +4 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-7/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#11520]) +4 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-rkl: NOTRUN -> [SKIP][317] ([i915#11520]) +8 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/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 at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#9808]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][319] ([i915#12316]) +2 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area at pipe-b-edp-1.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][320] ([i915#11520]) +8 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk9/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#11520]) +9 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-dg1: NOTRUN -> [SKIP][322] ([i915#11520]) +4 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][323] ([i915#9683]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][324] ([i915#9683]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-basic: - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#9688]) +7 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at kms_psr@fbc-pr-basic.html * igt at kms_psr@fbc-psr-cursor-render: - shard-tglu: NOTRUN -> [SKIP][326] ([i915#9732]) +12 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-3/igt at kms_psr@fbc-psr-cursor-render.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#1072] / [i915#9732]) +24 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr-sprite-blt: - shard-snb: NOTRUN -> [SKIP][328] +788 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb2/igt at kms_psr@psr-sprite-blt.html * igt at kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][329] ([i915#1072] / [i915#9732]) +13 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_psr@psr-sprite-mmap-cpu.html * igt at kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#1072] / [i915#9732]) +14 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_psr@psr-sprite-plane-move.html * igt at kms_psr@psr2-cursor-render: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#9732]) +13 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_psr@psr2-cursor-render.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#9685]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg1: NOTRUN -> [SKIP][333] ([i915#9685]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#5190]) +3 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#12755] / [i915#5190]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#5289]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-10/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#5289]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#12755]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_rotation_crc@sprite-rotation-90.html - shard-mtlp: NOTRUN -> [SKIP][339] ([i915#12755]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][340] ([i915#13179]) +1 other test abort [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at kms_selftest@drm_framebuffer.html * igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][341] ([i915#13179]) +1 other test abort [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free.html * igt at kms_setmode@basic at pipe-a-vga-1-pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][342] ([i915#5465]) +3 other tests fail [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at kms_setmode@basic at pipe-a-vga-1-pipe-b-hdmi-a-1.html * igt at kms_setmode@clone-exclusive-crtc: - shard-dg1: NOTRUN -> [SKIP][343] ([i915#3555]) +3 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_sysfs_edid_timing: - shard-dg2: [PASS][344] -> [FAIL][345] ([IGT#160]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-dg2-10/igt at kms_sysfs_edid_timing.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_sysfs_edid_timing.html * igt at kms_vblank@query-forked-hang: - shard-rkl: [PASS][346] -> [DMESG-WARN][347] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-rkl-3/igt at kms_vblank@query-forked-hang.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_vblank@query-forked-hang.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][348] ([i915#12276]) +1 other test incomplete [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk6/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#9906]) +2 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-dg1: NOTRUN -> [SKIP][350] ([i915#9906]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#2437]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-fb-id: - shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#2437]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][353] ([i915#2437]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][354] ([i915#2435]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/igt at perf@per-context-mode-unprivileged.html * igt at perf@polling at 0-rcs0: - shard-rkl: [PASS][355] -> [DMESG-WARN][356] ([i915#12964]) +55 other tests dmesg-warn [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-rkl-7/igt at perf@polling at 0-rcs0.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at perf@polling at 0-rcs0.html * igt at perf_pmu@all-busy-idle-check-all: - shard-dg2: [PASS][357] -> [FAIL][358] ([i915#11943]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-dg2-4/igt at perf_pmu@all-busy-idle-check-all.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at perf_pmu@all-busy-idle-check-all.html - shard-dg1: [PASS][359] -> [FAIL][360] ([i915#11943]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-dg1-18/igt at perf_pmu@all-busy-idle-check-all.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at perf_pmu@all-busy-idle-check-all.html - shard-mtlp: [PASS][361] -> [FAIL][362] ([i915#11943]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-mtlp-7/igt at perf_pmu@all-busy-idle-check-all.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-1/igt at perf_pmu@all-busy-idle-check-all.html * igt at perf_pmu@busy-hang: - shard-dg1: [PASS][363] -> [FAIL][364] ([i915#4349]) +1 other test fail [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-dg1-12/igt at perf_pmu@busy-hang.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at perf_pmu@busy-hang.html * igt at perf_pmu@busy-hang at rcs0: - shard-mtlp: [PASS][365] -> [FAIL][366] ([i915#4349]) +2 other tests fail [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-mtlp-3/igt at perf_pmu@busy-hang at rcs0.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at perf_pmu@busy-hang at rcs0.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_12423/shard-dg2-1/igt at perf_pmu@cpu-hotplug.html - shard-tglu: NOTRUN -> [SKIP][368] ([i915#8850]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@frequency at gt0: - shard-dg1: NOTRUN -> [FAIL][369] ([i915#12549] / [i915#6806]) +1 other test fail [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][370] ([i915#11823]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at perf_pmu@module-unload.html * igt at perf_pmu@most-busy-idle-check-all at rcs0: - shard-mtlp: NOTRUN -> [FAIL][371] ([i915#11943]) +1 other test fail [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at perf_pmu@most-busy-idle-check-all at rcs0.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#3291] / [i915#3708]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at prime_vgem@basic-write.html * igt at prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][373] ([i915#3708] / [i915#4077]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][374] ([i915#3708]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][375] ([i915#3708] / [i915#4077]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][376] ([i915#3708] / [i915#4077]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-4/igt at prime_vgem@coherency-gtt.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#9917]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][378] ([i915#9917]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at sriov_basic@bind-unbind-vf.html #### Possible fixes #### * igt at gem_eio@in-flight-suspend: - shard-rkl: [DMESG-WARN][379] ([i915#12964]) -> [PASS][380] +45 other tests pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-rkl-3/igt at gem_eio@in-flight-suspend.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@kms: - shard-tglu: [DMESG-WARN][381] ([i915#13363]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-tglu-10/igt at gem_eio@kms.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-10/igt at gem_eio@kms.html * igt at gem_eio@unwedge-stress: - shard-dg1: [FAIL][383] ([i915#12714] / [i915#5784]) -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-dg1-17/igt at gem_eio@unwedge-stress.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at gem_eio@unwedge-stress.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [ABORT][385] ([i915#10729]) -> [PASS][386] +1 other test pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-mtlp-1/igt at gem_mmap_offset@clear-via-pagefault.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_softpin@noreloc-s3: - shard-glk: [INCOMPLETE][387] ([i915#13306]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-glk8/igt at gem_softpin@noreloc-s3.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk2/igt at gem_softpin@noreloc-s3.html * igt at gen9_exec_parse@allowed-all: - shard-glk: [ABORT][389] ([i915#5566]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-glk4/igt at gen9_exec_parse@allowed-all.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk9/igt at gen9_exec_parse@allowed-all.html * igt at i915_module_load@reload-with-fault-injection: - shard-snb: [ABORT][391] ([i915#9820]) -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-snb5/igt at i915_module_load@reload-with-fault-injection.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at i915_module_load@reload-with-fault-injection.html - shard-dg1: [ABORT][393] ([i915#9820]) -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-dg1-17/igt at i915_module_load@reload-with-fault-injection.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at i915_module_load@reload-with-fault-injection.html - shard-tglu: [ABORT][395] ([i915#10887] / [i915#12817] / [i915#9820]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-tglu-9/igt at i915_module_load@reload-with-fault-injection.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-7/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rpm@system-suspend: - shard-glk: [INCOMPLETE][397] ([i915#12797]) -> [PASS][398] +1 other test pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-glk7/igt at i915_pm_rpm@system-suspend.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk4/igt at i915_pm_rpm@system-suspend.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg1: [FAIL][399] ([i915#5956]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-dg1-18/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt at kms_big_fb@x-tiled-64bpp-rotate-0: - shard-dg1: [DMESG-WARN][401] ([i915#4423]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-dg1-12/igt at kms_big_fb@x-tiled-64bpp-rotate-0.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_big_fb@x-tiled-64bpp-rotate-0.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: [FAIL][403] ([i915#2346]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-snb2/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-snb: [FAIL][405] ([i915#11989]) -> [PASS][406] +1 other test pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-snb7/igt at kms_flip@2x-plain-flip-ts-check.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb2/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-tglu: [FAIL][407] ([i915#11989]) -> [PASS][408] +4 other tests pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-tglu-2/igt at kms_flip@plain-flip-ts-check-interruptible.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-snb: [SKIP][409] -> [PASS][410] +2 other tests pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-snb2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg2: [SKIP][411] ([i915#12388]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-dg2-4/igt at kms_joiner@basic-force-big-joiner.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][413] ([i915#4281]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-tglu-9/igt at kms_pm_dc@dc9-dpms.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-3/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-rkl: [SKIP][415] ([i915#12916]) -> [PASS][416] [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-rkl-2/igt at kms_pm_rpm@basic-pci-d3-state.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_setmode@basic at pipe-a-hdmi-a-1: - shard-snb: [FAIL][417] ([i915#5465]) -> [PASS][418] +1 other test pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-snb5/igt at kms_setmode@basic at pipe-a-hdmi-a-1.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at kms_setmode@basic at pipe-a-hdmi-a-1.html * igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1: - shard-rkl: [DMESG-FAIL][419] ([i915#12964]) -> [PASS][420] +1 other test pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-rkl-7/igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1.html * igt at perf_pmu@busy-double-start at ccs0: - shard-dg2: [FAIL][421] ([i915#4349]) -> [PASS][422] [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-dg2-1/igt at perf_pmu@busy-double-start at ccs0.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at perf_pmu@busy-double-start at ccs0.html * igt at perf_pmu@busy-double-start at vecs0: - shard-dg1: [FAIL][423] ([i915#4349]) -> [PASS][424] +3 other tests pass [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-dg1-17/igt at perf_pmu@busy-double-start at vecs0.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at perf_pmu@busy-double-start at vecs0.html * igt at perf_pmu@busy-idle-check-all at vcs0: - shard-mtlp: [FAIL][425] ([i915#4349]) -> [PASS][426] +2 other tests pass [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-mtlp-8/igt at perf_pmu@busy-idle-check-all at vcs0.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at perf_pmu@busy-idle-check-all at vcs0.html * igt at perf_pmu@module-unload: - shard-glk: [INCOMPLETE][427] ([i915#1982]) -> [PASS][428] [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-glk8/igt at perf_pmu@module-unload.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk3/igt at perf_pmu@module-unload.html #### Warnings #### * igt at gem_pxp@display-protected-crc: - shard-rkl: [SKIP][429] ([i915#4270]) -> [TIMEOUT][430] ([i915#12917] / [i915#12964]) +1 other test timeout [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-rkl-5/igt at gem_pxp@display-protected-crc.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@protected-raw-src-copy-not-readible: - shard-rkl: [TIMEOUT][431] ([i915#12917] / [i915#12964]) -> [SKIP][432] ([i915#4270]) +2 other tests skip [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-rkl-3/igt at gem_pxp@protected-raw-src-copy-not-readible.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at gem_pxp@protected-raw-src-copy-not-readible.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: [ABORT][433] ([i915#13263] / [i915#13449]) -> [ABORT][434] ([i915#13449]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-snb2/igt at gem_tiled_swapping@non-threaded.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at gem_tiled_swapping@non-threaded.html * igt at i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][435] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][436] ([i915#10131] / [i915#10887] / [i915#13493] / [i915#9820]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-mtlp-5/igt at i915_module_load@reload-with-fault-injection.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at i915_module_load@reload-with-fault-injection.html * igt at kms_addfb_basic@clobberred-modifier: - shard-dg1: [SKIP][437] ([i915#4212] / [i915#4423]) -> [SKIP][438] ([i915#4212]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8186/shard-dg1-12/igt at kms_addfb_basic@clobberred-modifier.html [43 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Tue Jan 14 13:47:50 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Tue, 14 Jan 2025 14:47:50 +0100 Subject: [PATCH i-g-t] tests/vkms: Delete VKMS test list In-Reply-To: <20241201114506.19947-1-mcanal@igalia.com> References: <20241201114506.19947-1-mcanal@igalia.com> Message-ID: <20250114134750.gonr4nmf5ey6kkb7@kamilkon-desk.igk.intel.com> Hi Ma?ra, On 2024-12-01 at 08:45:06 -0300, Ma?ra Canal wrote: > First, this list is severely outdated. Therefore, it doesn't make sense > to keep an outdated test list in the repository, especially considering > that it is not being maintained. > > Second, DRM CI now supports VKMS, and developers are maintaining an > updated list of IGT tests that VKMS supports. Thus, keeping this list > in IGT is redundant. > > Signed-off-by: Ma?ra Canal Applied, thanks! Regards, Kamil > --- > tests/vkms_ci/README | 21 ---- > tests/vkms_ci/vkms.testlist | 234 ------------------------------------ > 2 files changed, 255 deletions(-) > delete mode 100644 tests/vkms_ci/README > delete mode 100644 tests/vkms_ci/vkms.testlist > > diff --git a/tests/vkms_ci/README b/tests/vkms_ci/README > deleted file mode 100644 > index 74a59ae8f..000000000 > --- a/tests/vkms_ci/README > +++ /dev/null > @@ -1,21 +0,0 @@ > -This directory contains test lists to be used for vkms's DRM support. > -The files are passed to igt_runner/piglit with the --test-list parameter > -directly. ...cut... From patchwork at emeril.freedesktop.org Tue Jan 14 14:24:51 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 14 Jan 2025 14:24:51 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_Support_for_IN=5FFORMATS?= =?utf-8?q?=5FASYNC_plane_property?= In-Reply-To: <20250110063909.34042-1-santhosh.reddy.guddati@intel.com> References: <20250110063909.34042-1-santhosh.reddy.guddati@intel.com> Message-ID: <173686469144.3620156.7083504935643431192@b555e5b46a47> == Series Details == Series: Support for IN_FORMATS_ASYNC plane property URL : https://patchwork.freedesktop.org/series/143374/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15941_full -> IGTPW_12424_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12424_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12424_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_12424/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_12424_full: ### IGT changes ### #### Possible regressions #### * igt at gem_tiled_swapping@non-threaded: - shard-rkl: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-rkl-1/igt at gem_tiled_swapping@non-threaded.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at gem_tiled_swapping@non-threaded.html * igt at kms_async_flips@async-flip-with-page-flip-events: - shard-dg1: [PASS][3] -> [SKIP][4] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg1-18/igt at kms_async_flips@async-flip-with-page-flip-events.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-18/igt at kms_async_flips@async-flip-with-page-flip-events.html - shard-tglu: [PASS][5] -> [SKIP][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-tglu-8/igt at kms_async_flips@async-flip-with-page-flip-events.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-7/igt at kms_async_flips@async-flip-with-page-flip-events.html - shard-dg2: [PASS][7] -> [SKIP][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg2-4/igt at kms_async_flips@async-flip-with-page-flip-events.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-3/igt at kms_async_flips@async-flip-with-page-flip-events.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-tglu-1: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html - shard-mtlp: [PASS][10] -> [SKIP][11] +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-mtlp-2/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-1/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk5/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_flip@modeset-vs-vblank-race at a-hdmi-a1: - shard-tglu: [PASS][13] -> [FAIL][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-tglu-2/igt at kms_flip@modeset-vs-vblank-race at a-hdmi-a1.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-8/igt at kms_flip@modeset-vs-vblank-race at a-hdmi-a1.html * igt at kms_pm_rpm@cursor: - shard-rkl: NOTRUN -> [SKIP][15] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-3/igt at kms_pm_rpm@cursor.html * igt at kms_vblank@accuracy-idle: - shard-glk: NOTRUN -> [FAIL][16] +1 other test fail [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk8/igt at kms_vblank@accuracy-idle.html * igt at perf_pmu@rc6 at runtime-pm-gt0: - shard-rkl: [PASS][17] -> [SKIP][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-rkl-4/igt at perf_pmu@rc6 at runtime-pm-gt0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-7/igt at perf_pmu@rc6 at runtime-pm-gt0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - {shard-dg2-9}: NOTRUN -> [SKIP][19] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-9/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html Known issues ------------ Here are the changes found in IGTPW_12424_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#8411]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-17/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8411]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-4/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8411]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-10/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#9318]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-3/igt at debugfs_test@basic-hwmon.html - shard-rkl: NOTRUN -> [SKIP][24] ([i915#9318]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-3/igt at debugfs_test@basic-hwmon.html - shard-tglu: NOTRUN -> [SKIP][25] ([i915#9318]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-2/igt at debugfs_test@basic-hwmon.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#11078]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-2/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-check-all at ccs0: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#8414]) +6 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-4/igt at drm_fdinfo@busy-check-all at ccs0.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#8414]) +16 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-10/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#3281]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at gem_bad_reloc@negative-reloc-lut.html * igt at gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#7697]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at gem_basic@multigpu-create-close.html * igt at gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4873]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-5/igt at gem_caching@reads.html * igt at gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][32] ([i915#3555] / [i915#9323]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-7/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#13008]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-18/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#9323]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-4/igt at gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][35] ([i915#9323]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-7/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#7697]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-1/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][37] ([i915#6335]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-7/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#8562]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][39] ([i915#12353]) +1 other test incomplete [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk1/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@file: - shard-snb: NOTRUN -> [SKIP][40] ([i915#1099]) +5 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-snb5/igt at gem_ctx_persistence@file.html * igt at gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#8555]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-17/igt at gem_ctx_persistence@heartbeat-many.html * igt at gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#5882]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-1/igt at gem_ctx_persistence@saturated-hostile-nopreempt.html * igt at gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#280]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-4/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#280]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at gem_ctx_sseu@mmap-args.html * igt at gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4771]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-11/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#8555]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-7/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel-balancer: - shard-tglu: NOTRUN -> [SKIP][47] ([i915#4525]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-2/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4525]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-3/igt at gem_exec_balancer@parallel-keep-in-fence.html * igt at gem_exec_balancer@parallel-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#4525]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_capture@capture-invisible: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#6334]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-7/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_fence@concurrent: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4812]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-11/igt at gem_exec_fence@concurrent.html * igt at gem_exec_flush@basic-uc-pro-default: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-13/igt at gem_exec_flush@basic-uc-pro-default.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3539]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-12/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_reloc@basic-wc-active: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3281]) +7 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/igt at gem_exec_reloc@basic-wc-active.html * igt at gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3281]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-13/igt at gem_exec_reloc@basic-wc-read-active.html * igt at gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4812]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-17/igt at gem_exec_schedule@preempt-queue-contexts.html * igt at gem_exec_suspend@basic-s3 at smem: - shard-glk: NOTRUN -> [INCOMPLETE][57] ([i915#13196]) +1 other test incomplete [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk2/igt at gem_exec_suspend@basic-s3 at smem.html * igt at gem_exec_suspend@basic-s4-devices: - shard-tglu: [PASS][58] -> [ABORT][59] ([i915#7975] / [i915#8213]) +1 other test abort [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-tglu-6/igt at gem_exec_suspend@basic-s4-devices.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-10/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4860]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-6/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_fenced_exec_thrash@too-many-fences: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4860]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-4/igt at gem_fenced_exec_thrash@too-many-fences.html * igt at gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-6/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at gem_lmem_swapping@parallel-random.html * igt at gem_lmem_swapping@parallel-random-engines: - shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#4613]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at gem_lmem_swapping@parallel-random-engines.html * igt at gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][66] ([i915#4613]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk7/igt at gem_lmem_swapping@random-engines.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#12193]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_lmem_swapping@verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4565]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-13/igt at gem_mmap@bad-object.html * igt at gem_mmap_gtt@fault-concurrent: - shard-rkl: [PASS][70] -> [DMESG-WARN][71] ([i915#12964]) +30 other tests dmesg-warn [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-rkl-2/igt at gem_mmap_gtt@fault-concurrent.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at gem_mmap_gtt@fault-concurrent.html * igt at gem_mmap_gtt@medium-copy-odd: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4077]) +11 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-18/igt at gem_mmap_gtt@medium-copy-odd.html * igt at gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4077]) +19 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-5/igt at gem_mmap_gtt@zero-extend.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][74] -> [ABORT][75] ([i915#10729]) +1 other test abort [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-mtlp-4/igt at gem_mmap_offset@clear-via-pagefault.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-2/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@pf-nonblock: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4083]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-4/igt at gem_mmap_wc@pf-nonblock.html * igt at gem_mmap_wc@write-cpu-read-wc: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4083]) +5 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/igt at gem_mmap_wc@write-cpu-read-wc.html * igt at gem_partial_pwrite_pread@write-display: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-7/igt at gem_partial_pwrite_pread@write-display.html * igt at gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][79] ([i915#2658]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk6/igt at gem_pread@exhaustion.html * igt at gem_pread@uncached: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3282]) +6 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-11/igt at gem_pread@uncached.html * igt at gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#3282]) +5 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/igt at gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][82] ([i915#2658]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-3/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4270]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-1/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#13398]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-7/igt at gem_pxp@hw-rejects-pxp-buffer.html - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#13398]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-2/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][86] ([i915#12917] / [i915#12964]) +3 other tests timeout [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-7/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html * igt at gem_readwrite@write-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#3282]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-3/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]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-6/igt at gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#5190] / [i915#8428]) +9 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-1/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4079]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-11/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-rkl: NOTRUN -> [SKIP][91] ([i915#8411]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-5/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4079]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-7/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][93] ([i915#4079]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-18/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#4885]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-12/igt at gem_softpin@evict-snoop.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_12424/shard-snb2/igt at gem_tiled_swapping@non-threaded.html * igt at gem_tiled_wb: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#4077]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-8/igt at gem_tiled_wb.html * igt at gem_unfence_active_buffers: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#4879]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-6/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@access-control: - shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#3297]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at gem_userptr_blits@access-control.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#3297]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-12/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#3297] / [i915#4880]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-17/igt at gem_userptr_blits@map-fixed-invalidate.html - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#3297]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-7/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3297] / [i915#4880]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#3297]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-6/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-dg2: NOTRUN -> [SKIP][104] ([i915#3297]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-4/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_workarounds@suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][105] ([i915#13356]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk9/igt at gem_workarounds@suspend-resume.html * igt at gen3_render_linear_blits: - shard-dg2: NOTRUN -> [SKIP][106] +18 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-5/igt at gen3_render_linear_blits.html * igt at gen9_exec_parse@allowed-all: - shard-glk: [PASS][107] -> [ABORT][108] ([i915#5566]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-glk4/igt at gen9_exec_parse@allowed-all.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk3/igt at gen9_exec_parse@allowed-all.html * igt at gen9_exec_parse@allowed-single: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#2856]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-3/igt at gen9_exec_parse@allowed-single.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#2527]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-13/igt at gen9_exec_parse@bb-start-cmd.html - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#2856]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-6/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@bb-start-far: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#2527] / [i915#2856]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at gen9_exec_parse@bb-start-far.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#2527] / [i915#2856]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-6/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@shadow-peek: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#2527]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-4/igt at gen9_exec_parse@shadow-peek.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [ABORT][115] ([i915#9820]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-2/igt at i915_module_load@reload-with-fault-injection.html - shard-dg1: NOTRUN -> [ABORT][116] ([i915#13493] / [i915#4391] / [i915#4423] / [i915#9820]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-13/igt at i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [ABORT][117] ([i915#10887] / [i915#9820]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-7/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#8399]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at i915_pm_freq_api@freq-basic-api.html * igt at i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#8399]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-3/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][120] ([i915#2681]) +1 other test warn [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-4/igt at i915_pm_rc6_residency@rc6-fence.html * igt at i915_pm_rc6_residency@rc6-idle: - shard-dg1: [PASS][121] -> [FAIL][122] ([i915#3591]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg1-12/igt at i915_pm_rc6_residency@rc6-idle.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0: - shard-dg1: [PASS][123] -> [FAIL][124] ([i915#12739] / [i915#3591]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg1-12/igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-tglu-1: NOTRUN -> [WARN][125] ([i915#2681]) +4 other tests warn [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#11681] / [i915#6621]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-1/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#11681]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-7/igt at i915_pm_rps@thresholds-park.html * igt at i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4387]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-11/igt at i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][129] ([i915#4387]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-5/igt at i915_pm_sseu@full-enable.html * igt at i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#6245]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-9/igt at i915_query@hwconfig_table.html * igt at i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#5723]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-13/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [PASS][132] -> [DMESG-FAIL][133] ([i915#13393]) +1 other test dmesg-fail [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-mtlp-1/igt at i915_selftest@live at workarounds.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-3/igt at i915_selftest@live at workarounds.html * igt at i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][134] ([i915#1982] / [i915#9311]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk5/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-glk: NOTRUN -> [DMESG-WARN][135] ([i915#9311]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk5/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@forcewake: - shard-rkl: [PASS][136] -> [DMESG-FAIL][137] ([i915#12964]) +1 other test dmesg-fail [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-rkl-4/igt at i915_suspend@forcewake.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-7/igt at i915_suspend@forcewake.html * igt at i915_suspend@sysfs-reader: - shard-glk: [PASS][138] -> [INCOMPLETE][139] ([i915#4817]) +1 other test incomplete [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-glk1/igt at i915_suspend@sysfs-reader.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk8/igt at i915_suspend@sysfs-reader.html * igt at intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#7707]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-4/igt at intel_hwmon@hwmon-read.html - shard-tglu: NOTRUN -> [SKIP][141] ([i915#7707]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-3/igt at intel_hwmon@hwmon-read.html * igt at intel_hwmon@hwmon-write: - shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#7707]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#4212]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/igt at kms_addfb_basic@basic-x-tiled-legacy.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#4215] / [i915#5190]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-1/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#12454] / [i915#12712]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-7/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-4: - shard-dg1: [PASS][146] -> [FAIL][147] ([i915#12518]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg1-14/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-4.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-4.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-glk: [PASS][148] -> [SKIP][149] [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-glk7/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk8/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3555]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-6/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg2: NOTRUN -> [SKIP][151] ([i915#9531]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][152] ([i915#9531]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][153] ([i915#9531]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-9/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][154] ([i915#1769] / [i915#3555]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-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-dg2: NOTRUN -> [SKIP][155] ([i915#1769] / [i915#3555]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#1769] / [i915#3555]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-18/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][157] ([i915#1769] / [i915#3555]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-2/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-glk: NOTRUN -> [SKIP][158] ([i915#1769]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk5/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: [PASS][159] -> [FAIL][160] ([i915#11808]) +1 other test fail [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-tglu-6/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-6/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1.html * igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][161] ([i915#5956]) +1 other test fail [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-17/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-4.html * igt at kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#4538] / [i915#5286]) +4 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-18/igt at kms_big_fb@4-tiled-8bpp-rotate-180.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#5286]) +5 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-3/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#5286]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#5286]) +6 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-3/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#3638]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-3/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][167] ([i915#3638]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#6187]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-1/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][169] ([i915#4538] / [i915#5190]) +15 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-4/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-180: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#4538]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-12/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][171] +11 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-7/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/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-y-tiled-gen12-rc-ccs-cc at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#6095]) +19 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-8/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc at pipe-b-edp-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][174] ([i915#6095]) +49 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/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-dg2-mc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#6095]) +78 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/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-mtl-mc-ccs at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#6095]) +22 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-1/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-yf-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][177] ([i915#12796]) +2 other tests incomplete [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk1/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#12313]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-2/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#10307] / [i915#6095]) +121 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#12313]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-3/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#6095]) +195 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-12/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#6095]) +74 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-3/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#3742]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#3742]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-2/igt at kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][185] ([i915#3742]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-13/igt at kms_cdclk@plane-scaling.html - shard-tglu: NOTRUN -> [SKIP][186] ([i915#3742]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-6/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#4087]) +4 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-7/igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3.html * igt at kms_cdclk@plane-scaling at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#4087]) +4 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-6/igt at kms_cdclk@plane-scaling at pipe-c-edp-1.html * igt at kms_chamelium_color@ctm-0-50: - shard-tglu-1: NOTRUN -> [SKIP][189] +49 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#11151] / [i915#7828]) +5 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-7/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@dp-edid-read: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#11151] / [i915#7828]) +10 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/igt at kms_chamelium_edid@dp-edid-read.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#11151] / [i915#7828]) +5 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-2/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - shard-dg1: NOTRUN -> [SKIP][193] ([i915#11151] / [i915#7828]) +6 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-17/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#11151] / [i915#7828]) +5 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#11151] / [i915#7828]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-2/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt at kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#6944] / [i915#9424]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-4/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3116] / [i915#3299]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3116]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][199] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-3/igt at kms_content_protection@legacy.html - shard-dg2: NOTRUN -> [SKIP][200] ([i915#7118] / [i915#9424]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-11/igt at kms_content_protection@legacy.html - shard-dg1: NOTRUN -> [SKIP][201] ([i915#7116] / [i915#9424]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-18/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#9424]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-18/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#6944] / [i915#9424]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#9424]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-5/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#7118]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/igt at kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][206] ([i915#6944] / [i915#7116] / [i915#7118]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-9/igt at kms_content_protection@srm.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#8814]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-6/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-offscreen-256x256: - shard-rkl: [PASS][208] -> [DMESG-WARN][209] ([i915#12917] / [i915#12964]) +2 other tests dmesg-warn [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-rkl-1/igt at kms_cursor_crc@cursor-offscreen-256x256.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-5/igt at kms_cursor_crc@cursor-offscreen-256x256.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8814]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-4/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#13049]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#3555]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-6/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#13049]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#13049]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-3/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#3555]) +2 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][216] ([i915#12358] / [i915#7882]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk2/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][217] ([i915#12358]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk2/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#4103]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#13046] / [i915#5354]) +4 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-7/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#9067]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-5/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][221] ([i915#4103]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-4/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-rkl: NOTRUN -> [SKIP][222] ([i915#4103]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#12402]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-4/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][224] ([i915#12402]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-7/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#8812]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-17/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#8812]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-11/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-7/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#3840] / [i915#9053]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-3/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#3469]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#1839]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-4/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#9337]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-6/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#658]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-3/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_12424/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_12424/shard-dg2-7/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#3637]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-6/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-dpms: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#3637]) +3 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-9/igt at kms_flip@2x-flip-vs-dpms.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_12424/shard-dg2-8/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#9934]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#3637]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][241] ([i915#12745] / [i915#4839]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk2/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: NOTRUN -> [INCOMPLETE][242] ([i915#4839]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk2/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#9934]) +7 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-1/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html - shard-dg1: NOTRUN -> [SKIP][244] ([i915#9934]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-18/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@dpms-off-confusion-interruptible at b-hdmi-a2: - shard-rkl: NOTRUN -> [DMESG-WARN][245] ([i915#12964]) +18 other tests dmesg-warn [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at kms_flip@dpms-off-confusion-interruptible at b-hdmi-a2.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-snb: [PASS][246] -> [FAIL][247] ([i915#11989]) +2 other tests fail [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-snb5/igt at kms_flip@flip-vs-blocking-wf-vblank.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-snb7/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a2: - shard-glk: [PASS][248] -> [FAIL][249] ([i915#13027]) +1 other test fail [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-glk4/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a2.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk6/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a2.html * igt at kms_flip@modeset-vs-vblank-race: - shard-tglu: [PASS][250] -> [FAIL][251] ([i915#12431]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-tglu-2/igt at kms_flip@modeset-vs-vblank-race.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-8/igt at kms_flip@modeset-vs-vblank-race.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#2672]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-4/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-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_12424/shard-tglu-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][254] ([i915#2587] / [i915#2672]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#2672] / [i915#3555]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/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-valid-mode: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#2672]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/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-yftile-to-32bpp-yftile-downscaling: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#3555]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/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-downscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/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][261] ([i915#2587] / [i915#2672]) +3 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/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-32bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html - shard-dg2: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#3555] / [i915#5190]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-7/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg2: [PASS][264] -> [FAIL][265] ([i915#6880]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#8708]) +20 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][267] +76 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: - shard-dg2: NOTRUN -> [FAIL][268] ([i915#6880]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#3023]) +12 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][270] ([i915#8708]) +12 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#8708]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][272] +37 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#5354]) +37 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#1825]) +21 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][275] +313 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#3458]) +16 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#1825]) +7 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#3458]) +13 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-13/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#10433] / [i915#3458]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_hdr@bpc-switch-suspend: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@static-toggle: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8228]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8228]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-8/igt at kms_hdr@static-toggle-dpms.html * igt at kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-11/igt at kms_hdr@static-toggle-suspend.html - shard-tglu: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#8228]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-3/igt at kms_hdr@static-toggle-suspend.html * igt at kms_histogram@algo-color: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#13389]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-2/igt at kms_histogram@algo-color.html * igt at kms_histogram@global-basic: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#13388]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-7/igt at kms_histogram@global-basic.html * igt at kms_histogram@global-color: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#13388]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-12/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#10656]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg2: [PASS][289] -> [SKIP][290] ([i915#12388]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg2-10/igt at kms_joiner@basic-force-big-joiner.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-11/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#12339]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#10656]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-4/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#12388]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#1839]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#6301]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-11/igt at kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][296] ([i915#6301]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-18/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-mtlp: NOTRUN -> [SKIP][297] +2 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-5/igt at kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt at kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][298] ([i915#10647] / [i915#12177]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/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][299] ([i915#10647]) +1 other test fail [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk3/igt at kms_plane_alpha_blend@alpha-transparent-fb at pipe-a-hdmi-a-1.html * igt at kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#8821]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#12247]) +9 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-17/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-b: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#12247]) +9 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-6/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-b.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#12247] / [i915#9423]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/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][304] ([i915#12247]) +3 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/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-5-upscale-20x20 at pipe-d: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#12247]) +4 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-7/igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#12247] / [i915#6953]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/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-tglu-1: NOTRUN -> [SKIP][307] ([i915#12247]) +3 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#9812]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-6/igt at kms_pm_backlight@fade-with-suspend.html - shard-dg1: NOTRUN -> [SKIP][309] ([i915#5354]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-18/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu-1: NOTRUN -> [FAIL][310] ([i915#9295]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#4281]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#9340]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-7/igt at kms_pm_lpsp@kms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][313] ([i915#3828]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-7/igt at kms_pm_lpsp@kms-lpsp.html - shard-tglu: NOTRUN -> [SKIP][314] ([i915#3828]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-4/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][315] ([i915#8430]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-7/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][316] -> [SKIP][317] ([i915#9519]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg2-8/igt at kms_pm_rpm@dpms-lpsp.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-3/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#9519]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-7/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][319] -> [SKIP][320] ([i915#9519]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-rkl-3/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#6524]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-modeset-hybrid: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#6524]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-2/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][323] ([i915#11520]) +12 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-snb2/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][324] ([i915#11520]) +7 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-13/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][325] ([i915#11520]) +7 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-6/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#12316]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-5/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#11520]) +7 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-5/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#11520]) +8 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][329] ([i915#11520]) +13 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk8/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#11520]) +5 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/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-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#9683]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][332] ([i915#9683]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-17/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#9732]) +11 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_psr@fbc-psr-cursor-blt.html * igt at kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#1072] / [i915#9732]) +32 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-4/igt at kms_psr@fbc-psr-primary-mmap-gtt.html * igt at kms_psr@pr-no-drrs: - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#9688]) +4 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-2/igt at kms_psr@pr-no-drrs.html * igt at kms_psr@pr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#9732]) +19 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-2/igt at kms_psr@pr-sprite-plane-move.html * igt at kms_psr@psr2-primary-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][337] ([i915#1072] / [i915#9732]) +15 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-12/igt at kms_psr@psr2-primary-mmap-cpu.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#1072] / [i915#9732]) +14 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-3/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][339] ([i915#9685]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-4/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg1: NOTRUN -> [SKIP][340] ([i915#9685]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][341] ([i915#9685]) +2 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-7/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#5190]) +2 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-4/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#5289]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/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][344] ([i915#5289]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][345] ([i915#5289]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-9/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#12755] / [i915#5190]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#12755]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-4/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][348] ([i915#3555]) +3 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-13/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-none: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#3555]) +4 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-7/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][350] ([i915#13179]) +1 other test abort [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-3/igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free.html * igt at kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][351] ([IGT#160]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-11/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#8623]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@cursor-fb-leak: - shard-mtlp: [PASS][353] -> [FAIL][354] ([i915#9196]) +1 other test fail [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-mtlp-5/igt at kms_universal_plane@cursor-fb-leak.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-8/igt at kms_universal_plane@cursor-fb-leak.html * igt at kms_vrr@flip-dpms: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#3555]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-5/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#3555] / [i915#9906]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][357] ([i915#9906]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-7/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#9906]) +2 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-1/igt at kms_vrr@seamless-rr-switch-vrr.html - shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#9906]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-1/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][360] ([i915#2437] / [i915#9412]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][361] ([i915#2437]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-8/igt at kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][362] ([i915#2437]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-11/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][363] ([i915#2437]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk5/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg1: NOTRUN -> [SKIP][364] ([i915#2437] / [i915#9412]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-17/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][365] ([i915#9100]) +1 other test fail [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-1/igt at perf@non-zero-reason.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_12424/shard-rkl-4/igt at perf@per-context-mode-unprivileged.html - shard-dg1: NOTRUN -> [SKIP][367] ([i915#2433]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/igt at perf@per-context-mode-unprivileged.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][368] +450 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-snb2/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#8850]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-8/igt at perf_pmu@cpu-hotplug.html - shard-dg1: NOTRUN -> [SKIP][370] ([i915#8850]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@frequency at gt0: - shard-dg1: [PASS][371] -> [FAIL][372] ([i915#12549] / [i915#6806]) +1 other test fail [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg1-12/igt at perf_pmu@frequency at gt0.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-17/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@most-busy-idle-check-all at rcs0: - shard-rkl: NOTRUN -> [FAIL][373] ([i915#4349]) +1 other test fail [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-3/igt at perf_pmu@most-busy-idle-check-all at rcs0.html * igt at perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][374] ([i915#8516]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][375] ([i915#8516]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-4/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at perf_pmu@render-node-busy-idle: - shard-mtlp: [PASS][376] -> [FAIL][377] ([i915#4349]) +4 other tests fail [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-mtlp-8/igt at perf_pmu@render-node-busy-idle.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-4/igt at perf_pmu@render-node-busy-idle.html * igt at prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][378] ([i915#9351]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-1/igt at prime_mmap@test_aperture_limit.html * igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][379] ([i915#9351]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-1/igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem.html * igt at prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][380] ([i915#3708]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-18/igt at prime_vgem@basic-fence-flip.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][381] ([i915#3291] / [i915#3708]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-7/igt at prime_vgem@basic-write.html * igt at prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][382] ([i915#3708] / [i915#4077]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-3/igt at prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][383] ([i915#3708] / [i915#4077]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-18/igt at prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][384] ([i915#3708] / [i915#4077]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-5/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][385] ([i915#3708]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][386] ([i915#9917]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-11/igt at sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][387] ([i915#9917]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-5/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@bind-unbind-vf at vf-4: - shard-tglu: NOTRUN -> [FAIL][388] ([i915#12910]) +9 other tests fail [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-3/igt at sriov_basic@bind-unbind-vf at vf-4.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg1: NOTRUN -> [SKIP][389] ([i915#9917]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-12/igt at sriov_basic@enable-vfs-autoprobe-off.html #### Possible fixes #### * igt at gem_ctx_isolation@preservation-s3: - shard-rkl: [DMESG-FAIL][390] ([i915#12964]) -> [PASS][391] +1 other test pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-rkl-4/igt at gem_ctx_isolation@preservation-s3.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-4/igt at gem_ctx_isolation@preservation-s3.html * igt at gem_eio@kms: - shard-tglu: [DMESG-WARN][392] ([i915#13363]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-tglu-7/igt at gem_eio@kms.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-4/igt at gem_eio@kms.html * igt at gem_eio@reset-stress: - shard-dg1: [FAIL][394] ([i915#12543] / [i915#5784]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg1-14/igt at gem_eio@reset-stress.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-12/igt at gem_eio@reset-stress.html * igt at gem_exec_big@single: - shard-tglu: [ABORT][396] ([i915#11713]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-tglu-3/igt at gem_exec_big@single.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-4/igt at gem_exec_big@single.html * igt at gem_exec_endless@dispatch: - shard-dg2: [TIMEOUT][398] ([i915#3778] / [i915#7016]) -> [PASS][399] +1 other test pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg2-3/igt at gem_exec_endless@dispatch.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-5/igt at gem_exec_endless@dispatch.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: [ABORT][400] ([i915#7975] / [i915#8213]) -> [PASS][401] +1 other test pass [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-17/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: [INCOMPLETE][402] ([i915#12797]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-glk6/igt at i915_pm_rpm@system-suspend-execbuf.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk5/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_suspend@fence-restore-untiled: - shard-glk: [INCOMPLETE][404] ([i915#4817]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-glk4/igt at i915_suspend@fence-restore-untiled.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk5/igt at i915_suspend@fence-restore-untiled.html * igt at kms_async_flips@alternate-sync-async-flip at pipe-b-hdmi-a-4: - shard-dg1: [FAIL][406] ([i915#12766]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg1-14/igt at kms_async_flips@alternate-sync-async-flip at pipe-b-hdmi-a-4.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/igt at kms_async_flips@alternate-sync-async-flip at pipe-b-hdmi-a-4.html * igt at kms_cursor_crc@cursor-onscreen-256x256: - shard-rkl: [DMESG-WARN][408] ([i915#12964]) -> [PASS][409] +24 other tests pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-rkl-6/igt at kms_cursor_crc@cursor-onscreen-256x256.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at kms_cursor_crc@cursor-onscreen-256x256.html * igt at kms_cursor_legacy@basic-flip-after-cursor-atomic: - shard-glk: [FAIL][410] ([i915#2346]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-glk8/igt at kms_cursor_legacy@basic-flip-after-cursor-atomic.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk8/igt at kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt at kms_flip@flip-vs-absolute-wf_vblank at c-hdmi-a1: - shard-tglu: [FAIL][412] ([i915#11989]) -> [PASS][413] +1 other test pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-tglu-8/igt at kms_flip@flip-vs-absolute-wf_vblank at c-hdmi-a1.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-tglu-8/igt at kms_flip@flip-vs-absolute-wf_vblank at c-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-mtlp: [FAIL][414] ([i915#11989]) -> [PASS][415] +2 other tests pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-mtlp-6/igt at kms_flip@plain-flip-ts-check-interruptible.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-4/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [FAIL][416] ([i915#6880]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt at kms_hdmi_inject@inject-audio: - shard-rkl: [SKIP][418] ([i915#13030]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-rkl-3/igt at kms_hdmi_inject@inject-audio.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-4/igt at kms_hdmi_inject@inject-audio.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-rkl: [SKIP][420] ([i915#12916]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-rkl-2/igt at kms_pm_rpm@basic-pci-d3-state.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][422] ([i915#9519]) -> [PASS][423] +1 other test pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg2-5/igt at kms_pm_rpm@modeset-lpsp.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg2-4/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][424] ([i915#9519]) -> [PASS][425] +1 other test pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-rkl-4/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-5/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg1: [DMESG-WARN][426] ([i915#4423]) -> [PASS][427] +2 other tests pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg1-12/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-12/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at perf_pmu@busy-double-start at vecs0: - shard-dg1: [FAIL][428] ([i915#4349]) -> [PASS][429] +5 other tests pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg1-17/igt at perf_pmu@busy-double-start at vecs0.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-14/igt at perf_pmu@busy-double-start at vecs0.html - shard-mtlp: [FAIL][430] ([i915#4349]) -> [PASS][431] +4 other tests pass [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-mtlp-3/igt at perf_pmu@busy-double-start at vecs0.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-mtlp-6/igt at perf_pmu@busy-double-start at vecs0.html * igt at perf_pmu@most-busy-check-all: - shard-rkl: [FAIL][432] ([i915#4349]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-rkl-6/igt at perf_pmu@most-busy-check-all.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-rkl-1/igt at perf_pmu@most-busy-check-all.html * igt at perf_pmu@rc6-suspend: - shard-glk: [INCOMPLETE][434] ([i915#13356]) -> [PASS][435] [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-glk7/igt at perf_pmu@rc6-suspend.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-glk7/igt at perf_pmu@rc6-suspend.html #### Warnings #### * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [TIMEOUT][436] ([i915#5493]) -> [DMESG-WARN][437] ([i915#5493]) +1 other test dmesg-warn [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15941/shard-dg1-14/igt at gem_lmem_swapping@smem-oom at lmem0.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/shard-dg1-13/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_pxp@display-protected-crc: - shard-rkl: [SKIP][438] ([i915#4270]) -> [TIMEOUT][439] ([i915#12917] / [i915#12 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12424/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Tue Jan 14 14:31:23 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Tue, 14 Jan 2025 15:31:23 +0100 Subject: =?utf-8?Q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_lib=2Fmeson?= =?utf-8?Q?=2Ebuild=3A?= allow build IGT with link time optimization (rev2) In-Reply-To: <173664957296.2741499.5425200845106404861@b555e5b46a47> References: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> <173664957296.2741499.5425200845106404861@b555e5b46a47> Message-ID: <20250114143123.q5ybcgznq5wy67vo@kamilkon-desk.igk.intel.com> Hi igt-dev, On 2025-01-12 at 02:39:32 -0000, Patchwork wrote: below are unrelated to this change, Regards, Kamil > == Series Details == > > Series: lib/meson.build: allow build IGT with link time optimization (rev2) > URL : https://patchwork.freedesktop.org/series/142655/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8184_full -> XEIGTPW_12419_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_12419_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_12419_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_12419_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at core_setmaster@master-drop-set-user: > - shard-bmg: [PASS][1] -> [FAIL][2] > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at core_setmaster@master-drop-set-user.html > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at core_setmaster@master-drop-set-user.html > > * igt at kms_atomic_transition@plane-all-transition-nonblocking: > - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-432/igt at kms_atomic_transition@plane-all-transition-nonblocking.html > [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at kms_atomic_transition@plane-all-transition-nonblocking.html > > * igt at kms_atomic_transition@plane-all-transition-nonblocking at pipe-a-hdmi-a-6: > - shard-dg2-set2: NOTRUN -> [INCOMPLETE][5] > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-463/igt at kms_atomic_transition@plane-all-transition-nonblocking at pipe-a-hdmi-a-6.html > > * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: > - shard-bmg: [PASS][6] -> [INCOMPLETE][7] > [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-1/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html > [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-4/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html > > * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: > - shard-dg2-set2: [PASS][8] -> [ABORT][9] > [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html > [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html > > * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-2: > - shard-dg2-set2: NOTRUN -> [ABORT][10] +3 other tests abort > [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-2.html > > * igt at kms_flip@wf_vblank-ts-check at b-edp1: > - shard-lnl: [PASS][11] -> [INCOMPLETE][12] > [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-lnl-1/igt at kms_flip@wf_vblank-ts-check at b-edp1.html > [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-lnl-1/igt at kms_flip@wf_vblank-ts-check at b-edp1.html > > * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-2: > - shard-dg2-set2: NOTRUN -> [FAIL][13] > [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-432/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-2.html > > > #### Warnings #### > > * igt at xe_evict@evict-beng-mixed-threads-large: > - shard-bmg: [INCOMPLETE][14] ([Intel XE#1473]) -> [DMESG-FAIL][15] > [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-2/igt at xe_evict@evict-beng-mixed-threads-large.html > [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-4/igt at xe_evict@evict-beng-mixed-threads-large.html > > * igt at xe_mmap@pci-membarrier-bad-object: > - shard-bmg: [SKIP][16] ([Intel XE#1130]) -> [SKIP][17] > [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-4/igt at xe_mmap@pci-membarrier-bad-object.html > [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-2/igt at xe_mmap@pci-membarrier-bad-object.html > - shard-dg2-set2: [SKIP][18] ([Intel XE#1130]) -> [SKIP][19] > [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-dg2-436/igt at xe_mmap@pci-membarrier-bad-object.html > [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-dg2-436/igt at xe_mmap@pci-membarrier-bad-object.html > > > Known issues > ------------ > > Here are the changes found in XEIGTPW_12419_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt at kms_async_flips@alternate-sync-async-flip: > - shard-bmg: [PASS][20] -> [FAIL][21] ([Intel XE#827]) +1 other test fail > [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8184/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip.html > [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html ...cut... > [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_8184 -> IGTPW_12419 > * Linux: xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c -> xe-2463-424f495e9572bf87a42e3be0aa02ac4777541033 > > IGTPW_12419: 0f0904e71a31e60759ac032b5c424588e435a746 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8184: ee7a3ac616f55f6ed1b959ff951237099bda86d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > xe-2462-c9da975358cd0763449f08b7063ee935eace4f8c: c9da975358cd0763449f08b7063ee935eace4f8c > xe-2463-424f495e9572bf87a42e3be0aa02ac4777541033: 424f495e9572bf87a42e3be0aa02ac4777541033 > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12419/index.html From kamil.konieczny at linux.intel.com Tue Jan 14 14:32:32 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Tue, 14 Jan 2025 15:32:32 +0100 Subject: =?utf-8?Q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_lib=2Fmes?= =?utf-8?B?b24uYnVpbGQ6?= allow build IGT with link time optimization (rev2) In-Reply-To: <173671755098.3015349.14059085318624153320@b555e5b46a47> References: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> <173671755098.3015349.14059085318624153320@b555e5b46a47> Message-ID: <20250114143232.4hn3axioqkibcpqr@kamilkon-desk.igk.intel.com> Hi igt-dev, On 2025-01-12 at 21:32:30 -0000, Patchwork wrote: unrelated to this patch, no need for respin. Regards, Kamil > == Series Details == > > Series: lib/meson.build: allow build IGT with link time optimization (rev2) > URL : https://patchwork.freedesktop.org/series/142655/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_15931_full -> IGTPW_12419_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12419_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12419_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_12419/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_12419_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: > - shard-mtlp: [PASS][1] -> [FAIL][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-mtlp-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-mtlp-6/igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html > > * igt at perf_pmu@module-unload: > - shard-dg1: [PASS][3] -> [INCOMPLETE][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15931/shard-dg1-12/igt at perf_pmu@module-unload.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg1-17/igt at perf_pmu@module-unload.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_12419_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt at api_intel_bb@object-reloc-purge-cache: > - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-dg2-8/igt at api_intel_bb@object-reloc-purge-cache.html > - shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411]) > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-6/igt at api_intel_bb@object-reloc-purge-cache.html > > * igt at device_reset@unbind-cold-reset-rebind: > - shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078]) > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/shard-rkl-7/igt at device_reset@unbind-cold-reset-rebind.html ...cut... > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12419/index.html From kamil.konieczny at linux.intel.com Tue Jan 14 14:42:20 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Tue, 14 Jan 2025 15:42:20 +0100 Subject: [PATCH v2] lib/meson.build: allow build IGT with link time optimization In-Reply-To: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> References: <20250109-fix-lto-v2-1-3dc74d60a124@intel.com> Message-ID: <20250114144220.rrvfaaqqfvyomhvn@kamilkon-desk.igk.intel.com> Hi Andrzej, On 2025-01-09 at 17:26:30 +0100, Andrzej Hajda wrote: > Some distributions use -flto gcc flag to build IGT. With this flag > enabled variables declared with section attribute do not appear in > correct section in .o files. Since iga64 assembly helper script relies > on it we need to use -ffat-lto-objects in case of files containing > iga64 assembly. According to documentation this option is effective > only in case lto is in use, so it should not affect non-lto builds. > > Closes: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/165 > Signed-off-by: Andrzej Hajda > --- > This patch 'fixes' building IGT with link-time-optimization. I am not > sure it is or should be supported by IGT, but build scripts can be > modified to allow it for testing. > Grepping internet shows at least Gentoo and Arch Linux builds IGT with > LTO, so I guess it is working for them. Applied, thanks! Regards, Kamil > --- > Changes in v2: > - added Closes tag > - Link to v1: https://lore.kernel.org/r/20241216-fix-lto-v1-1-1280b17dc70f at intel.com > --- > lib/meson.build | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/meson.build b/lib/meson.build > index 1704ed1e1c17..9fffdd3c6218 100644 > --- a/lib/meson.build > +++ b/lib/meson.build > @@ -240,7 +240,7 @@ foreach f: lib_sources > '-DIGT_DATADIR="@0@"'.format(join_paths(prefix, datadir)), > '-DIGT_SRCDIR="@0@"'.format(srcdir), > '-DIGT_LOG_DOMAIN="@0@"'.format(f.split('.')[0]), > - ]) > + ] + (iga64_assembly_sources.contains(f) ? [ '-ffat-lto-objects' ] : [])) > > lib_intermediates += lib > if iga64_assembly_sources.contains(f) > > --- > base-commit: ee7a3ac616f55f6ed1b959ff951237099bda86d8 > change-id: 20241216-fix-lto-8d3bc1488c6a > > Best regards, > -- > Andrzej Hajda > From marcin.bernatowicz at linux.intel.com Tue Jan 14 15:08:41 2025 From: marcin.bernatowicz at linux.intel.com (Marcin Bernatowicz) Date: Tue, 14 Jan 2025 16:08:41 +0100 Subject: [PATCH v2 i-g-t 0/7] Add xe_sriov_auto_provisioning tests Message-ID: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> This patch series introduces several enhancements to the SR-IOV provisioning and validation functionalities. The changes include debugfs accessors, quota/spare attribute accessors, shared resource provisionability checks, and helper functions for VF range validation. Additionally, the xe_sriov_auto_provisioning tests validate the following scenarios: - Auto-provisioned resources are allocated by the PF driver in a fair manner. - Auto-provisioned resources are released once VFs are disabled. - Verify that ranges of auto-provisioned resources are exclusive. v2: - Update DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC macro comment (Lukasz) - Simplify range validation in test (Lukasz) (moved validation of provisioned ranges to library `xe_sriov_pf_debugfs_read_check_ranges`) - Rename subtests for clarity (Lukasz) - Add 'extended' command line option to enable dynamic subtests with arbitrary num_vfs Cc: Adam Miszczak Cc: Jakub Kolakowski Cc: Lukasz Laguna Cc: Micha? Wajdeczko Cc: Micha? Winiarski Cc: Narasimha C V Cc: Piotr Pi?rkowski Cc: Satyanarayana K V P Cc: Tomasz Lis Marcin Bernatowicz (7): lib/xe/xe_sriov_debugfs: Add debugfs get/set functions for u32, u64, bool lib/xe/xe_sriov_debugfs: Add validation for provisioned ranges lib/xe/xe_sriov_provisioning: Add accessors for quota/spare attributes lib/xe/xe_sriov_provisioning: Add shared resource provisionability check lib/igt_sriov_device: Add helper functions for VF range validation tests/xe_sriov_auto_provisioning: Add tests for SR-IOV auto-provisioning tests/xe_sriov_auto_provisioning: Add 'extended' command line option lib/igt_sriov_device.h | 82 +++++- lib/xe/xe_sriov_debugfs.c | 267 ++++++++++++++++++ lib/xe/xe_sriov_debugfs.h | 22 ++ lib/xe/xe_sriov_provisioning.c | 146 ++++++++++ lib/xe/xe_sriov_provisioning.h | 43 +++ tests/intel/xe_sriov_auto_provisioning.c | 328 +++++++++++++++++++++++ tests/meson.build | 1 + 7 files changed, 882 insertions(+), 7 deletions(-) create mode 100644 tests/intel/xe_sriov_auto_provisioning.c -- 2.31.1 From marcin.bernatowicz at linux.intel.com Tue Jan 14 15:08:42 2025 From: marcin.bernatowicz at linux.intel.com (Marcin Bernatowicz) Date: Tue, 14 Jan 2025 16:08:42 +0100 Subject: [PATCH v2 i-g-t 1/7] lib/xe/xe_sriov_debugfs: Add debugfs get/set functions for u32, u64, bool In-Reply-To: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> References: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> Message-ID: <20250114150848.332708-2-marcin.bernatowicz@linux.intel.com> Add helper functions to get and set SR-IOV debugfs attributes for u32, u64, and boolean types. Functions added: - __xe_sriov_pf_debugfs_get_u32 - __xe_sriov_pf_debugfs_set_u32 - __xe_sriov_pf_debugfs_get_u64 - __xe_sriov_pf_debugfs_set_u64 - __xe_sriov_pf_debugfs_get_boolean - __xe_sriov_pf_debugfs_set_boolean v2: Updated DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC macro comment (Lukasz) Signed-off-by: Marcin Bernatowicz Reviewed-by: Lukasz Laguna Cc: Adam Miszczak Cc: Jakub Kolakowski Cc: Lukasz Laguna Cc: Micha? Wajdeczko Cc: Micha? Winiarski Cc: Narasimha C V Cc: Piotr Pi?rkowski Cc: Satyanarayana K V P Cc: Tomasz Lis --- lib/xe/xe_sriov_debugfs.c | 151 ++++++++++++++++++++++++++++++++++++++ lib/xe/xe_sriov_debugfs.h | 18 +++++ 2 files changed, 169 insertions(+) diff --git a/lib/xe/xe_sriov_debugfs.c b/lib/xe/xe_sriov_debugfs.c index c87f91492..92a477764 100644 --- a/lib/xe/xe_sriov_debugfs.c +++ b/lib/xe/xe_sriov_debugfs.c @@ -9,6 +9,7 @@ #include "drmtest.h" #include "igt_debugfs.h" #include "igt_sriov_device.h" +#include "igt_sysfs.h" #include "xe/xe_query.h" #include "xe/xe_sriov_debugfs.h" #include "xe/xe_sriov_provisioning.h" @@ -204,3 +205,153 @@ cleanup: return ret; } + +static int xe_sriov_pf_debugfs_path_open(int pf, unsigned int vf_num, + unsigned int gt_num) +{ + char path[PATH_MAX]; + + if (igt_debug_on_f(!xe_sriov_pf_debugfs_path(pf, vf_num, gt_num, path, + sizeof(path)), + "path: %s\n", path)) + return -1; + + return open(path, O_RDONLY); +} + +/** + * DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC - Define a function for accessing debugfs attributes + * @type: Data type of the value to read or write (e.g., `uint32_t`, `bool`, etc.) + * @suffix: Function name suffix appended to `__xe_sriov_pf_debugfs_` + * @sysfs_func: The sysfs helper function to perform the actual read or write operation + * + * Generates a function for accessing a debugfs attribute of a PF device. + * It handles opening the debugfs path, performing the sysfs operation, and closing the + * debugfs directory. + * + * The generated function has the following signature: + * + * int __xe_sriov_pf_debugfs_(int pf, unsigned int vf_num, + * unsigned int gt_num, + * const char *attr, type value) + * + * where: + * - `pf` is the PF device file descriptor. + * - `vf_num` is the VF number. + * - `gt_num` is the GT number. + * - `attr` is the name of the debugfs attribute. + * - `value` is the data to read or write, depending on the sysfs function. + * + * Example: + * + * DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC(uint32_t, set_u32, __igt_sysfs_set_u32); + * + * This expands to a function: + * + * int __xe_sriov_pf_debugfs_set_u32(int pf, unsigned int vf_num, + * unsigned int gt_num, + * const char *attr, uint32_t value); + * + * The function returns: + * - `0` on success + * - Negative error code on failure + */ +#define DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC(type, suffix, sysfs_func) \ + int __xe_sriov_pf_debugfs_##suffix(int pf, unsigned int vf_num, \ + unsigned int gt_num, \ + const char *attr, type value) \ + { \ + bool ret; \ + int dir = xe_sriov_pf_debugfs_path_open(pf, vf_num, gt_num); \ + \ + if (igt_debug_on(dir < 0)) \ + return dir; \ + \ + ret = sysfs_func(dir, attr, value); \ + close(dir); \ + return ret ? 0 : -1; \ + } + +/** + * __xe_sriov_pf_debugfs_get_u32 - Get a 32-bit unsigned integer from debugfs + * @pf: PF device file descriptor + * @vf_num: VF number + * @gt_num: GT number + * @attr: Debugfs attribute to read + * @value: Pointer to store the retrieved value + * + * Reads a 32-bit unsigned integer from the specified debugfs attribute. + * + * Return: 0 on success, negative error code on failure. + */ +DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC(uint32_t *, get_u32, __igt_sysfs_get_u32) + +/** + * __xe_sriov_pf_debugfs_set_u32 - Set a 32-bit unsigned integer in debugfs + * @pf: PF device file descriptor + * @vf_num: VF number + * @gt_num: GT number + * @attr: Debugfs attribute to write to + * @value: The value to set + * + * Writes a 32-bit unsigned integer to the specified debugfs attribute. + * + * Return: 0 on success, negative error code on failure. + */ +DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC(uint32_t, set_u32, __igt_sysfs_set_u32) + +/** + * __xe_sriov_pf_debugfs_get_u64 - Get a 64-bit unsigned integer from debugfs + * @pf: PF device file descriptor + * @vf_num: VF number + * @gt_num: GT number + * @attr: Debugfs attribute to read + * @value: Pointer to store the retrieved value + * + * Reads a 64-bit unsigned integer from the specified debugfs attribute. + * + * Return: 0 on success, negative error code on failure. + */ +DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC(uint64_t *, get_u64, __igt_sysfs_get_u64) + +/** + * __xe_sriov_pf_debugfs_set_u64 - Set a 64-bit unsigned integer in debugfs + * @pf: PF device file descriptor + * @vf_num: VF number + * @gt_num: GT number + * @attr: Debugfs attribute to write to + * @value: The value to set + * + * Writes a 64-bit unsigned integer to the specified debugfs attribute. + * + * Return: 0 on success, negative error code on failure. + */ +DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC(uint64_t, set_u64, __igt_sysfs_set_u64) + +/** + * __xe_sriov_pf_debugfs_get_boolean - Get a boolean value from debugfs + * @pf: PF device file descriptor + * @vf_num: VF number + * @gt_num: GT number + * @attr: Debugfs attribute to read + * @value: Pointer to store the retrieved value + * + * Reads a boolean value from the specified debugfs attribute. + * + * Return: 0 on success, negative error code on failure. + */ +DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC(bool *, get_boolean, __igt_sysfs_get_boolean) + +/** + * __xe_sriov_pf_debugfs_set_boolean - Set a boolean value in debugfs + * @pf: PF device file descriptor + * @vf_num: VF number + * @gt_num: GT number + * @attr: Debugfs attribute to write to + * @value: The value to set + * + * Writes a boolean value to the specified debugfs attribute. + * + * Return: 0 on success, negative error code on failure. + */ +DEFINE_XE_SRIOV_PF_DEBUGFS_FUNC(bool, set_boolean, __igt_sysfs_set_boolean) diff --git a/lib/xe/xe_sriov_debugfs.h b/lib/xe/xe_sriov_debugfs.h index 856445e76..2db965f9b 100644 --- a/lib/xe/xe_sriov_debugfs.h +++ b/lib/xe/xe_sriov_debugfs.h @@ -16,5 +16,23 @@ int xe_sriov_pf_debugfs_read_provisioned_ranges(int pf_fd, enum xe_sriov_shared_ unsigned int gt_id, struct xe_sriov_provisioned_range **ranges, unsigned int *nr_ranges); +int __xe_sriov_pf_debugfs_get_u32(int pf, unsigned int vf_num, + unsigned int gt_num, const char *attr, + uint32_t *value); +int __xe_sriov_pf_debugfs_set_u32(int pf, unsigned int vf_num, + unsigned int gt_num, const char *attr, + uint32_t value); +int __xe_sriov_pf_debugfs_get_u64(int pf, unsigned int vf_num, + unsigned int gt_num, const char *attr, + uint64_t *value); +int __xe_sriov_pf_debugfs_set_u64(int pf, unsigned int vf_num, + unsigned int gt_num, const char *attr, + uint64_t value); +int __xe_sriov_pf_debugfs_get_boolean(int pf, unsigned int vf_num, + unsigned int gt_num, const char *attr, + bool *value); +int __xe_sriov_pf_debugfs_set_boolean(int pf, unsigned int vf_num, + unsigned int gt_num, const char *attr, + bool value); #endif /* __XE_SRIOV_DEBUGFS_H__ */ -- 2.31.1 From marcin.bernatowicz at linux.intel.com Tue Jan 14 15:08:43 2025 From: marcin.bernatowicz at linux.intel.com (Marcin Bernatowicz) Date: Tue, 14 Jan 2025 16:08:43 +0100 Subject: [PATCH v2 i-g-t 2/7] lib/xe/xe_sriov_debugfs: Add validation for provisioned ranges In-Reply-To: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> References: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> Message-ID: <20250114150848.332708-3-marcin.bernatowicz@linux.intel.com> Introduce `xe_sriov_pf_debugfs_read_check_ranges`, adding a validation step on top of `xe_sriov_pf_debugfs_read_provisioned_ranges`. Enforce checks for: - Ranges when no VFs are expected. - Duplicate, missing, or out-of-range VF IDs. The function ensures the returned ranges are sorted by VF ID. Signed-off-by: Marcin Bernatowicz Cc: Adam Miszczak Cc: Jakub Kolakowski Cc: Lukasz Laguna Cc: Micha? Wajdeczko Cc: Micha? Winiarski Cc: Narasimha C V Cc: Piotr Pi?rkowski Cc: Satyanarayana K V P Cc: Tomasz Lis --- lib/xe/xe_sriov_debugfs.c | 116 ++++++++++++++++++++++++++++++++++++++ lib/xe/xe_sriov_debugfs.h | 4 ++ 2 files changed, 120 insertions(+) diff --git a/lib/xe/xe_sriov_debugfs.c b/lib/xe/xe_sriov_debugfs.c index 92a477764..abb1bf7d5 100644 --- a/lib/xe/xe_sriov_debugfs.c +++ b/lib/xe/xe_sriov_debugfs.c @@ -206,6 +206,122 @@ cleanup: return ret; } +static int compare_ranges_by_vf_id(const void *a, const void *b) +{ + const struct xe_sriov_provisioned_range *range_a = a; + const struct xe_sriov_provisioned_range *range_b = b; + + return (range_a->vf_id - range_b->vf_id); +} + +#define MAX_DEBUG_ENTRIES 70U + +static int validate_vf_ids(enum xe_sriov_shared_res res, + struct xe_sriov_provisioned_range *ranges, + unsigned int nr_ranges, unsigned int expected_num_vfs) +{ + unsigned int current_vf_id = 0; + + /* If no VFs are expected, ensure no ranges are provided */ + if (expected_num_vfs == 0) { + if (nr_ranges > 0) { + unsigned int limit = min(nr_ranges, MAX_DEBUG_ENTRIES); + + igt_debug("%s: Unexpected %u ranges when expected num_vfs == 0\n", + xe_sriov_debugfs_provisioned_attr_name(res), + nr_ranges); + for (unsigned int i = 0; i < limit; i++) { + igt_debug((res == XE_SRIOV_SHARED_RES_GGTT) ? + "%s:VF%u: %lx-%lx\n" : + "%s:VF%u: %lu-%lu\n", + xe_sriov_shared_res_to_string(res), + ranges[i].vf_id, ranges[i].start, ranges[i].end); + } + igt_debug_on_f(nr_ranges > MAX_DEBUG_ENTRIES, + "%s: Output truncated to first %u ranges out of %u\n", + xe_sriov_debugfs_provisioned_attr_name(res), + MAX_DEBUG_ENTRIES, nr_ranges); + + return -ERANGE; + } + return 0; /* Valid case: no VFs, no ranges */ + } + + if (igt_debug_on_f(nr_ranges == 0, + "%s: No VF ranges\n", + xe_sriov_debugfs_provisioned_attr_name(res))) + return -ENOENT; + + igt_assert(ranges); + qsort(ranges, nr_ranges, sizeof(ranges[0]), compare_ranges_by_vf_id); + + for (unsigned int i = 0; i < nr_ranges; i++) { + unsigned int vf_id = ranges[i].vf_id; + + if (igt_debug_on_f(vf_id == current_vf_id, + "%s: Duplicate VF%u entry found\n", + xe_sriov_debugfs_provisioned_attr_name(res), vf_id)) + return -EEXIST; + + if (igt_debug_on_f(vf_id < 1 || vf_id > expected_num_vfs, + "%s: Out of range VF%u\n", + xe_sriov_debugfs_provisioned_attr_name(res), vf_id)) + return -ERANGE; + + if (igt_debug_on_f(vf_id > current_vf_id + 1, + "%s: Missing VF%u\n", + xe_sriov_debugfs_provisioned_attr_name(res), + current_vf_id + 1)) + return -ESRCH; + + current_vf_id = vf_id; + } + + if (igt_debug_on_f(current_vf_id != expected_num_vfs, + "%s: Missing VF%u\n", + xe_sriov_debugfs_provisioned_attr_name(res), expected_num_vfs)) + return -ESRCH; + + return 0; +} + +/** + * xe_sriov_pf_debugfs_read_check_ranges: + * @pf_fd: PF device file descriptor + * @res: resource + * @gt_id: GT number + * @ranges: pointer to array of provisioned ranges + * @expected_num_vfs: expected number of provisioned VFs + * + * Reads and validates provisioned ranges of shared resources. + * If successfully validated, returns num_vfs allocated ranges + * sorted by VF id. + * The caller should free the allocated space. + * + * Return: 0 if successful in reading valid ranges, otherwise negative error code. + */ +int xe_sriov_pf_debugfs_read_check_ranges(int pf_fd, enum xe_sriov_shared_res res, + unsigned int gt_id, + struct xe_sriov_provisioned_range **ranges, + unsigned int expected_num_vfs) +{ + unsigned int nr_ranges; + int ret; + + ret = xe_sriov_pf_debugfs_read_provisioned_ranges(pf_fd, res, gt_id, + ranges, &nr_ranges); + if (ret) + return ret; + + ret = validate_vf_ids(res, *ranges, nr_ranges, expected_num_vfs); + if (ret) { + free(*ranges); + *ranges = NULL; + } + + return ret; +} + static int xe_sriov_pf_debugfs_path_open(int pf, unsigned int vf_num, unsigned int gt_num) { diff --git a/lib/xe/xe_sriov_debugfs.h b/lib/xe/xe_sriov_debugfs.h index 2db965f9b..cd5f932be 100644 --- a/lib/xe/xe_sriov_debugfs.h +++ b/lib/xe/xe_sriov_debugfs.h @@ -16,6 +16,10 @@ int xe_sriov_pf_debugfs_read_provisioned_ranges(int pf_fd, enum xe_sriov_shared_ unsigned int gt_id, struct xe_sriov_provisioned_range **ranges, unsigned int *nr_ranges); +int xe_sriov_pf_debugfs_read_check_ranges(int pf_fd, enum xe_sriov_shared_res res, + unsigned int gt_id, + struct xe_sriov_provisioned_range **ranges, + unsigned int expected_num_vfs); int __xe_sriov_pf_debugfs_get_u32(int pf, unsigned int vf_num, unsigned int gt_num, const char *attr, uint32_t *value); -- 2.31.1 From marcin.bernatowicz at linux.intel.com Tue Jan 14 15:08:44 2025 From: marcin.bernatowicz at linux.intel.com (Marcin Bernatowicz) Date: Tue, 14 Jan 2025 16:08:44 +0100 Subject: [PATCH v2 i-g-t 3/7] lib/xe/xe_sriov_provisioning: Add accessors for quota/spare attributes In-Reply-To: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> References: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> Message-ID: <20250114150848.332708-4-marcin.bernatowicz@linux.intel.com> Introduce functions to get and set SR-IOV provisioning quota and spare attributes. These functions provide access to shared resource attributes such as GGTT, LMEM, contexts, and doorbells for both PF and VF contexts. Add returning and asserting variants to allow flexible error handling based on usage scenarios. Signed-off-by: Marcin Bernatowicz Reviewed-by: Lukasz Laguna Cc: Adam Miszczak Cc: Jakub Kolakowski Cc: Lukasz Laguna Cc: Micha? Wajdeczko Cc: Micha? Winiarski Cc: Narasimha C V Cc: Piotr Pi?rkowski Cc: Satyanarayana K V P Cc: Tomasz Lis --- lib/xe/xe_sriov_provisioning.c | 124 +++++++++++++++++++++++++++++++++ lib/xe/xe_sriov_provisioning.h | 14 ++++ 2 files changed, 138 insertions(+) diff --git a/lib/xe/xe_sriov_provisioning.c b/lib/xe/xe_sriov_provisioning.c index 67ae9cf54..536121931 100644 --- a/lib/xe/xe_sriov_provisioning.c +++ b/lib/xe/xe_sriov_provisioning.c @@ -9,6 +9,7 @@ #include "intel_chipset.h" #include "linux_scaffold.h" #include "xe/xe_mmio.h" +#include "xe/xe_sriov_debugfs.h" #include "xe/xe_sriov_provisioning.h" /** @@ -150,3 +151,126 @@ int xe_sriov_find_ggtt_provisioned_pte_offsets(int pf_fd, int gt, struct xe_mmio return 0; } + +/** + * xe_sriov_shared_res_attr_name - Retrieve the attribute name for a shared resource + * @res: Shared resource type (see enum xe_sriov_shared_res) + * @vf_num: VF number (1-based) or 0 for PF + * + * Returns the attribute name corresponding to the specified + * shared resource type and VF number. For VF (vf_num > 0), the "quota" + * attribute name is returned (e.g., "contexts_quota"). For PF (vf_num == 0), + * the "spare" attribute name is returned (e.g., "contexts_spare"). + * + * Return: + * The attribute name as a string if the resource type is valid. + * NULL if the resource type is invalid. + */ +const char *xe_sriov_shared_res_attr_name(enum xe_sriov_shared_res res, + unsigned int vf_num) +{ + switch (res) { + case XE_SRIOV_SHARED_RES_CONTEXTS: + return vf_num ? "contexts_quota" : "contexts_spare"; + case XE_SRIOV_SHARED_RES_DOORBELLS: + return vf_num ? "doorbells_quota" : "doorbells_spare"; + case XE_SRIOV_SHARED_RES_GGTT: + return vf_num ? "ggtt_quota" : "ggtt_spare"; + case XE_SRIOV_SHARED_RES_LMEM: + return vf_num ? "lmem_quota" : "lmem_spare"; + } + + return NULL; +} + +/** + * __xe_sriov_pf_get_shared_res_attr - Read shared resource attribute + * @pf: PF device file descriptor + * @res: Shared resource type (see enum xe_sriov_shared_res) + * @vf_num: VF number (1-based) or 0 for PF + * @gt_num: GT number + * @value: Pointer to store the read attribute value + * + * Reads the specified shared resource attribute for the given PF device @pf, + * VF number @vf_num, and GT @gt_num. The attribute depends on @vf_num: + * - For VF (vf_num > 0), reads the "quota" attribute. + * - For PF (vf_num == 0), reads the "spare" attribute. + * + * + * Return: 0 on success, negative error code on failure. + */ +int __xe_sriov_pf_get_shared_res_attr(int pf, enum xe_sriov_shared_res res, + unsigned int vf_num, unsigned int gt_num, + uint64_t *value) +{ + return __xe_sriov_pf_debugfs_get_u64(pf, vf_num, gt_num, + xe_sriov_shared_res_attr_name(res, vf_num), + value); +} + +/** + * xe_sriov_pf_get_shared_res_attr - Read shared resource attribute + * @pf: PF device file descriptor + * @res: Shared resource type (see enum xe_sriov_shared_res) + * @vf_num: VF number (1-based) or 0 for PF + * @gt_num: GT number + * + * A throwing version of __xe_sriov_pf_get_shared_res_attr(). + * Instead of returning an error code, it returns the quota value and asserts + * in case of an error. + * + * Return: The value for the given shared resource attribute. + * Asserts in case of failure. + */ +uint64_t xe_sriov_pf_get_shared_res_attr(int pf, enum xe_sriov_shared_res res, + unsigned int vf_num, + unsigned int gt_num) +{ + uint64_t value; + + igt_fail_on(__xe_sriov_pf_get_shared_res_attr(pf, res, vf_num, gt_num, &value)); + + return value; +} + +/** + * __xe_sriov_pf_set_shared_res_attr - Set a shared resource attribute + * @pf: PF device file descriptor + * @res: Shared resource type (see enum xe_sriov_shared_res) + * @vf_num: VF number (1-based) or 0 for PF + * @gt_num: GT number + * @value: Value to set for the shared resource attribute + * + * Sets the specified shared resource attribute for the given PF device @pf, + * VF number @vf_num, and GT @gt_num. The attribute depends on @vf_num: + * - For VF (vf_num > 0), reads the "quota" attribute. + * - For PF (vf_num == 0), reads the "spare" attribute. + * + * Return: 0 on success, negative error code on failure. + */ +int __xe_sriov_pf_set_shared_res_attr(int pf, enum xe_sriov_shared_res res, + unsigned int vf_num, unsigned int gt_num, + uint64_t value) +{ + return __xe_sriov_pf_debugfs_set_u64(pf, vf_num, gt_num, + xe_sriov_shared_res_attr_name(res, vf_num), + value); +} + +/** + * xe_sriov_pf_set_shared_res_attr - Set the shared resource attribute value + * @pf: PF device file descriptor + * @res: Shared resource type (see enum xe_sriov_shared_res) + * @vf_num: VF number (1-based) or 0 for PF + * @gt_num: GT number + * @value: Value to set + * + * A throwing version of __xe_sriov_pf_set_shared_res_attr(). + * Instead of returning an error code, it asserts in case of an error. + */ +void xe_sriov_pf_set_shared_res_attr(int pf, enum xe_sriov_shared_res res, + unsigned int vf_num, unsigned int gt_num, + uint64_t value) +{ + igt_fail_on(__xe_sriov_pf_set_shared_res_attr(pf, res, vf_num, gt_num, value)); +} diff --git a/lib/xe/xe_sriov_provisioning.h b/lib/xe/xe_sriov_provisioning.h index aa2f08f52..168b50394 100644 --- a/lib/xe/xe_sriov_provisioning.h +++ b/lib/xe/xe_sriov_provisioning.h @@ -46,5 +46,19 @@ const char *xe_sriov_shared_res_to_string(enum xe_sriov_shared_res res); int xe_sriov_find_ggtt_provisioned_pte_offsets(int pf_fd, int gt, struct xe_mmio *mmio, struct xe_sriov_provisioned_range **ranges, unsigned int *nr_ranges); +const char *xe_sriov_shared_res_attr_name(enum xe_sriov_shared_res res, + unsigned int vf_num); +int __xe_sriov_pf_get_shared_res_attr(int pf, enum xe_sriov_shared_res res, + unsigned int vf_num, unsigned int gt_num, + uint64_t *value); +uint64_t xe_sriov_pf_get_shared_res_attr(int pf, enum xe_sriov_shared_res res, + unsigned int vf_num, + unsigned int gt_num); +int __xe_sriov_pf_set_shared_res_attr(int pf, enum xe_sriov_shared_res res, + unsigned int vf_num, unsigned int gt_num, + uint64_t value); +void xe_sriov_pf_set_shared_res_attr(int pf, enum xe_sriov_shared_res res, + unsigned int vf_num, unsigned int gt_num, + uint64_t value); #endif /* __XE_SRIOV_PROVISIONING_H__ */ -- 2.31.1 From marcin.bernatowicz at linux.intel.com Tue Jan 14 15:08:45 2025 From: marcin.bernatowicz at linux.intel.com (Marcin Bernatowicz) Date: Tue, 14 Jan 2025 16:08:45 +0100 Subject: [PATCH v2 i-g-t 4/7] lib/xe/xe_sriov_provisioning: Add shared resource provisionability check In-Reply-To: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> References: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> Message-ID: <20250114150848.332708-5-marcin.bernatowicz@linux.intel.com> Introduce a helper `xe_sriov_is_shared_res_provisionable` to determine if a shared resource can be provisioned. Add macros `xe_sriov_for_each_shared_res` and `xe_sriov_for_each_provisionable_shared_res` to iterate over shared resources and provisionable shared resources, respectively. Signed-off-by: Marcin Bernatowicz Reviewed-by: Lukasz Laguna Cc: Adam Miszczak Cc: Jakub Kolakowski Cc: Lukasz Laguna Cc: Micha? Wajdeczko Cc: Micha? Winiarski Cc: Narasimha C V Cc: Piotr Pi?rkowski Cc: Satyanarayana K V P Cc: Tomasz Lis --- lib/xe/xe_sriov_provisioning.c | 22 ++++++++++++++++++++++ lib/xe/xe_sriov_provisioning.h | 29 +++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) diff --git a/lib/xe/xe_sriov_provisioning.c b/lib/xe/xe_sriov_provisioning.c index 536121931..22035ffd8 100644 --- a/lib/xe/xe_sriov_provisioning.c +++ b/lib/xe/xe_sriov_provisioning.c @@ -9,6 +9,7 @@ #include "intel_chipset.h" #include "linux_scaffold.h" #include "xe/xe_mmio.h" +#include "xe/xe_query.h" #include "xe/xe_sriov_debugfs.h" #include "xe/xe_sriov_provisioning.h" @@ -274,3 +275,24 @@ void xe_sriov_pf_set_shared_res_attr(int pf, enum xe_sriov_shared_res res, { igt_fail_on(__xe_sriov_pf_set_shared_res_attr(pf, res, vf_num, gt_num, value)); } + +/** + * xe_sriov_is_shared_res_provisionable - Check if a shared resource is provisionable + * @pf: PF device file descriptor + * @res: Shared resource type (see enum xe_sriov_shared_res) + * @gt_num: GT number + * + * Determines whether a specified shared resource can be provisioned. + * + * Return: true if the shared resource is provisionable, false otherwise. + */ +bool xe_sriov_is_shared_res_provisionable(int pf, enum xe_sriov_shared_res res, + unsigned int gt_num) +{ + if (res == XE_SRIOV_SHARED_RES_LMEM) + return xe_has_vram(pf) && !xe_is_media_gt(pf, gt_num); + else if (res == XE_SRIOV_SHARED_RES_GGTT) + return !xe_is_media_gt(pf, gt_num); + + return true; +} diff --git a/lib/xe/xe_sriov_provisioning.h b/lib/xe/xe_sriov_provisioning.h index 168b50394..b4300ec2e 100644 --- a/lib/xe/xe_sriov_provisioning.h +++ b/lib/xe/xe_sriov_provisioning.h @@ -27,6 +27,34 @@ enum xe_sriov_shared_res { XE_SRIOV_SHARED_RES_LMEM, }; +/** + * XE_SRIOV_SHARED_RES_NUM - Number of shared resource types + */ +#define XE_SRIOV_SHARED_RES_NUM (XE_SRIOV_SHARED_RES_LMEM + 1) + +/** + * xe_sriov_for_each_shared_res - Iterate over all shared resource types + * @res: Loop counter variable of type `enum xe_sriov_shared_res` + * + * Iterates over each shared resource type defined in the `enum xe_sriov_shared_res`. + */ +#define xe_sriov_for_each_shared_res(res) \ + for ((res) = 0; (res) < XE_SRIOV_SHARED_RES_NUM; (res)++) + +/** + * xe_sriov_for_each_provisionable_shared_res - Iterate over provisionable shared + * resource types + * @res: Loop counter variable of type `enum xe_sriov_shared_res` + * @pf: PF device file descriptor of type int + * @gt: GT number of type unsigned int + * + * Iterates over each provisionable shared resource type for the given PF device + * and GT number. + */ +#define xe_sriov_for_each_provisionable_shared_res(res, pf, gt) \ + for ((res) = 0; (res) < XE_SRIOV_SHARED_RES_NUM; (res)++) \ + for_if(xe_sriov_is_shared_res_provisionable((pf), (res), (gt))) + /** * struct xe_sriov_provisioned_range - Provisioned range for a Virtual Function (VF) * @vf_id: The ID of the VF @@ -43,6 +71,7 @@ struct xe_sriov_provisioned_range { }; const char *xe_sriov_shared_res_to_string(enum xe_sriov_shared_res res); +bool xe_sriov_is_shared_res_provisionable(int pf, enum xe_sriov_shared_res res, unsigned int gt); int xe_sriov_find_ggtt_provisioned_pte_offsets(int pf_fd, int gt, struct xe_mmio *mmio, struct xe_sriov_provisioned_range **ranges, unsigned int *nr_ranges); -- 2.31.1 From marcin.bernatowicz at linux.intel.com Tue Jan 14 15:08:46 2025 From: marcin.bernatowicz at linux.intel.com (Marcin Bernatowicz) Date: Tue, 14 Jan 2025 16:08:46 +0100 Subject: [PATCH v2 i-g-t 5/7] lib/igt_sriov_device: Add helper functions for VF range validation In-Reply-To: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> References: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> Message-ID: <20250114150848.332708-6-marcin.bernatowicz@linux.intel.com> Add __is_valid_range() to check if a VF range is valid. Introduce igt_sriov_random_vf_in_range() to get a random VF number within a specified range. Update for_random_sriov_vf to use the new helper functions for better range handling. Signed-off-by: Marcin Bernatowicz Reviewed-by: Lukasz Laguna Cc: Adam Miszczak Cc: Jakub Kolakowski Cc: Lukasz Laguna Cc: Micha? Wajdeczko Cc: Micha? Winiarski Cc: Narasimha C V Cc: Piotr Pi?rkowski Cc: Satyanarayana K V P Cc: Tomasz Lis Signed-off-by: Marcin Bernatowicz --- lib/igt_sriov_device.h | 82 ++++++++++++++++++++++++++++++++++++++---- 1 file changed, 75 insertions(+), 7 deletions(-) diff --git a/lib/igt_sriov_device.h b/lib/igt_sriov_device.h index 4b63ceb22..de25a7d98 100644 --- a/lib/igt_sriov_device.h +++ b/lib/igt_sriov_device.h @@ -34,6 +34,45 @@ int igt_sriov_device_sysfs_open(int pf, unsigned int vf_num); bool igt_sriov_device_reset_exists(int pf, unsigned int vf_num); bool igt_sriov_device_reset(int pf, unsigned int vf_num); +/** + * __is_valid_range - Helper to check VF range is valid + * @start_vf: Starting VF number + * @end_vf: Ending VF number + * @total_vfs: Total number of VFs + * + * Return: true if the range is valid, false otherwise. + */ +static inline bool __is_valid_range(unsigned int start_vf, unsigned int end_vf, + unsigned int total_vfs) +{ + return !igt_warn_on_f(start_vf > end_vf || end_vf > total_vfs || start_vf == 0, + "start_vf=%u, end_vf=%u, total_vfs=%u\n", + start_vf, end_vf, total_vfs); +} + +/** + * igt_sriov_random_vf_in_range - Get a random VF number within a specified range + * @pf_fd: PF device file descriptor + * @start: Starting VF number in the range + * @end: Ending VF number in the range + * + * Returns a random VF number within the specified range [start, end]. + * If the range is invalid (start > end, end > total VFs, + * or start == 0), the function returns 0. + * + * Return: A random VF number within the range, or 0 if the range is invalid. + */ +static inline unsigned int +igt_sriov_random_vf_in_range(int pf_fd, unsigned int start, unsigned int end) +{ + unsigned int total_vfs = igt_sriov_get_total_vfs(pf_fd); + + if (!__is_valid_range(start, end, total_vfs)) + return 0; + + return start + random() % (end - start + 1); +} + /** * for_each_sriov_vf - Helper for running code on each VF * @__pf_fd: PF device file descriptor @@ -48,17 +87,46 @@ bool igt_sriov_device_reset(int pf, unsigned int vf_num); #define for_each_sriov_num_vfs for_each_sriov_vf /** - * for_random_sriov_vf - Helper for running code on random VF + * for_random_sriov_vf_in_range - Iterate over a random VF in a specified range + * @__pf_fd: PF device file descriptor + * @__start: Starting VF number in the range + * @__end: Ending VF number in the range + * @__vf_num: Variable to store the random VF number + * + * Iterates over a random VF number within the specified range [__start, __end]. + * The loop runs only if the range is valid and a random + * VF number is successfully selected. + */ +#define for_random_sriov_vf_in_range(__pf_fd, __start, __end, __vf_num) \ + for (unsigned int __vf_num = igt_sriov_random_vf_in_range(__pf_fd, __start, __end); \ + __vf_num != 0; __vf_num = 0) + +/** + * for_random_sriov_vf_starting_from - Iterate over a random VF starting from a specified VF + * @__pf_fd: PF device file descriptor + * @__start: Starting VF number + * @__vf_num: Variable to store the random VF number + * + * This macro iterates over a random VF number starting from the specified + * VF number @__start to the total number of VFs associated with the given + * PF @__pf_fd. + */ +#define for_random_sriov_vf_starting_from(__pf_fd, __start, __vf_num) \ + for_random_sriov_vf_in_range(__pf_fd, __start, igt_sriov_get_total_vfs(__pf_fd), __vf_num) + +/** + * for_random_sriov_vf - Iterate over a random VF for a given PF * @__pf_fd: PF device file descriptor - * @__vf_num: stores random VF + * @__vf_num: Variable to store the random VF number * - * Helper allows to run code using random VF number (stored in @__vf_num) - * picked from the range of all VFs associated with given PF @__pf_fd. + * Iterates over a random VF number selected from the range + * of all VFs associated with the given PF @__pf_fd. The loop runs only + * if a random VF number is successfully selected. */ #define for_random_sriov_vf(__pf_fd, __vf_num) \ - for (unsigned int __vf_num = 1 + random() % igt_sriov_get_total_vfs(__pf_fd), __tmp = 0; \ - __tmp < 1; \ - ++__tmp) + for_random_sriov_vf_in_range(__pf_fd, 1, igt_sriov_get_total_vfs(__pf_fd), __vf_num) + +/* for_random_sriov_num_vfs - Alias for for_random_sriov_vf */ #define for_random_sriov_num_vfs for_random_sriov_vf /** -- 2.31.1 From marcin.bernatowicz at linux.intel.com Tue Jan 14 15:08:47 2025 From: marcin.bernatowicz at linux.intel.com (Marcin Bernatowicz) Date: Tue, 14 Jan 2025 16:08:47 +0100 Subject: [PATCH v2 i-g-t 6/7] tests/xe_sriov_auto_provisioning: Add tests for SR-IOV auto-provisioning In-Reply-To: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> References: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> Message-ID: <20250114150848.332708-7-marcin.bernatowicz@linux.intel.com> Added subtests validating below scenarios: - auto-provisioned resources are allocated by PF driver in fairly manner, - auto-provisioned resources are released once VFs are disabled, - verify that ranges of auto-provisioned resources are exclusive. The tests rely on ggtt_provisioned, lmem_provisioned, contexts_provisioned and doorbells_provisioned debugfs attributes. v2: - Simplify range validation by using xe_sriov_pf_debugfs_read_check_ranges (Lukasz) - Rename subtests for clarity (Lukasz) Signed-off-by: Marcin Bernatowicz Cc: Adam Miszczak Cc: Jakub Kolakowski Cc: Lukasz Laguna Cc: Micha? Wajdeczko Cc: Micha? Winiarski Cc: Narasimha C V Cc: Piotr Pi?rkowski Cc: Satyanarayana K V P Cc: Tomasz Lis --- tests/intel/xe_sriov_auto_provisioning.c | 290 +++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 291 insertions(+) create mode 100644 tests/intel/xe_sriov_auto_provisioning.c diff --git a/tests/intel/xe_sriov_auto_provisioning.c b/tests/intel/xe_sriov_auto_provisioning.c new file mode 100644 index 000000000..1d2aa8624 --- /dev/null +++ b/tests/intel/xe_sriov_auto_provisioning.c @@ -0,0 +1,290 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright(c) 2023 Intel Corporation. All rights reserved. + */ + +#include + +#include "drmtest.h" +#include "igt_core.h" +#include "igt_sriov_device.h" +#include "igt_sysfs.h" +#include "xe/xe_sriov_debugfs.h" +#include "xe/xe_sriov_provisioning.h" +#include "xe/xe_query.h" + +/** + * TEST: xe_sriov_auto_provisioning + * Category: Core + * Mega feature: SR-IOV + * Sub-category: provisioning + * Functionality: auto-provisioning + * Run type: FULL + * Description: Examine behavior of SR-IOV auto-provisioning + * + * SUBTEST: fair-allocation + * Description: + * Verify that auto-provisioned resources are allocated by PF driver in fairly manner + * + * SUBTEST: resources-released-on-vfs-disabling + * Description: + * Verify that auto-provisioned resources are released once VFs are disabled + * + * SUBTEST: exclusive-ranges + * Description: + * Verify that ranges of auto-provisioned resources are exclusive + */ + +IGT_TEST_DESCRIPTION("Xe tests for SR-IOV auto-provisioning"); + +/* Expects ranges sorted by VF IDs */ +static int ranges_fair_allocation(enum xe_sriov_shared_res res, + struct xe_sriov_provisioned_range *ranges, + unsigned int nr_ranges) +{ + uint64_t expected_allocation = ranges[0].end - ranges[0].start + 1; + + for (unsigned int i = 1; i < nr_ranges; i++) { + uint64_t current_allocation = ranges[i].end - ranges[i].start + 1; + + if (igt_debug_on_f(current_allocation != expected_allocation, + "%s: Allocation mismatch, expected=%lu VF%u=%lu\n", + xe_sriov_debugfs_provisioned_attr_name(res), + expected_allocation, ranges[i].vf_id, + current_allocation)) { + return -1; + } + } + + return 0; +} + +static int check_fair_allocation(int pf_fd, unsigned int num_vfs, unsigned int gt_id, + enum xe_sriov_shared_res res) +{ + struct xe_sriov_provisioned_range *ranges; + int ret; + + ret = xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res, gt_id, &ranges, num_vfs); + if (igt_debug_on_f(ret, "%s: Failed ranges check on GT%u (%d)\n", + xe_sriov_debugfs_provisioned_attr_name(res), gt_id, ret)) + return ret; + + ret = ranges_fair_allocation(res, ranges, num_vfs); + if (ret) { + free(ranges); + return ret; + } + + free(ranges); + + return 0; +} + +static void fair_allocation(int pf_fd, unsigned int num_vfs) +{ + enum xe_sriov_shared_res res; + unsigned int gt; + int fails = 0; + + igt_sriov_disable_driver_autoprobe(pf_fd); + igt_sriov_enable_vfs(pf_fd, num_vfs); + + xe_for_each_gt(pf_fd, gt) { + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) { + if (igt_debug_on_f(check_fair_allocation(pf_fd, num_vfs, gt, res), + "%s fair allocation failed on gt%u\n", + xe_sriov_shared_res_to_string(res), gt)) + fails++; + } + } + + igt_sriov_disable_vfs(pf_fd); + + igt_fail_on_f(fails, "fair allocation failed\n"); +} + +static void resources_released_on_vfs_disabling(int pf_fd, unsigned int num_vfs) +{ + struct xe_sriov_provisioned_range *ranges; + enum xe_sriov_shared_res res; + unsigned int gt; + int fails = 0; + + igt_sriov_disable_driver_autoprobe(pf_fd); + igt_sriov_enable_vfs(pf_fd, num_vfs); + + xe_for_each_gt(pf_fd, gt) { + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) { + if (igt_warn_on_f(xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res, + gt, + &ranges, + num_vfs), + "%s: Failed ranges check on gt%u\n", + xe_sriov_debugfs_provisioned_attr_name(res), gt)) + continue; + + free(ranges); + } + } + + igt_sriov_disable_vfs(pf_fd); + + xe_for_each_gt(pf_fd, gt) { + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) { + if (igt_debug_on_f(xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res, + gt, + &ranges, + 0), + "%s: Failed ranges check on gt%u\n", + xe_sriov_debugfs_provisioned_attr_name(res), gt)) + fails++; + } + } + + igt_fail_on_f(fails, "shared resource release check failed\n"); +} + +static int compare_ranges_by_start(const void *a, const void *b) +{ + const struct xe_sriov_provisioned_range *range_a = a; + const struct xe_sriov_provisioned_range *range_b = b; + + if (range_a->start < range_b->start) + return -1; + if (range_a->start > range_b->start) + return 1; + return 0; +} + +static int check_no_overlap(int pf_fd, unsigned int num_vfs, unsigned int gt_id, + enum xe_sriov_shared_res res) +{ + struct xe_sriov_provisioned_range *ranges; + int ret; + + ret = xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res, gt_id, &ranges, num_vfs); + if (ret) + return ret; + + igt_assert(ranges); + qsort(ranges, num_vfs, sizeof(ranges[0]), compare_ranges_by_start); + + for (unsigned int i = 0; i < num_vfs - 1; i++) + if (ranges[i].end >= ranges[i + 1].start) { + igt_debug((res == XE_SRIOV_SHARED_RES_GGTT) ? + "Overlapping ranges: VF%u [%lx-%lx] and VF%u [%lx-%lx]\n" : + "Overlapping ranges: VF%u [%lu-%lu] and VF%u [%lu-%lu]\n", + ranges[i].vf_id, ranges[i].start, ranges[i].end, + ranges[i + 1].vf_id, ranges[i + 1].start, ranges[i + 1].end); + free(ranges); + return -1; + } + + free(ranges); + + return 0; +} + +static void exclusive_ranges(int pf_fd, unsigned int num_vfs) +{ + enum xe_sriov_shared_res res; + unsigned int gt; + int fails = 0; + + igt_sriov_disable_driver_autoprobe(pf_fd); + igt_sriov_enable_vfs(pf_fd, num_vfs); + + xe_for_each_gt(pf_fd, gt) { + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) { + if (res == XE_SRIOV_SHARED_RES_LMEM) + /* + * lmem_provisioned is not applicable for this test, + * as it does not expose ranges + */ + continue; + + if (igt_debug_on_f(check_no_overlap(pf_fd, num_vfs, gt, res), + "%s overlap check failed on gt%u\n", + xe_sriov_shared_res_to_string(res), gt)) + fails++; + } + } + + igt_sriov_disable_vfs(pf_fd); + + igt_fail_on_f(fails, "exclusive ranges check failed\n"); +} + +igt_main +{ + enum xe_sriov_shared_res res; + unsigned int gt; + bool autoprobe; + int pf_fd; + + igt_fixture { + struct xe_sriov_provisioned_range *ranges; + int ret; + + pf_fd = drm_open_driver(DRIVER_XE); + igt_require(igt_sriov_is_pf(pf_fd)); + igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0); + + xe_for_each_gt(pf_fd, gt) { + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) { + ret = xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res, gt, + &ranges, 0); + igt_skip_on_f(ret, "%s: Failed ranges check on gt%u (%d)\n", + xe_sriov_debugfs_provisioned_attr_name(res), + gt, ret); + } + } + autoprobe = igt_sriov_is_driver_autoprobe_enabled(pf_fd); + } + + igt_describe("Verify that auto-provisioned resources are allocated by PF driver in fairly manner"); + igt_subtest_with_dynamic("fair-allocation") { + for_random_sriov_num_vfs(pf_fd, num_vfs) { + igt_dynamic_f("numvfs-random") { + igt_debug("numvfs=%u\n", num_vfs); + fair_allocation(pf_fd, num_vfs); + } + } + } + + igt_describe("Verify that auto-provisioned resources are released once VFs are disabled"); + igt_subtest_with_dynamic("resources-released-on-vfs-disabling") { + for_random_sriov_num_vfs(pf_fd, num_vfs) { + igt_dynamic_f("numvfs-random") { + igt_debug("numvfs=%u\n", num_vfs); + resources_released_on_vfs_disabling(pf_fd, num_vfs); + } + } + } + + igt_describe("Verify that ranges of auto-provisioned resources are exclusive"); + igt_subtest_with_dynamic_f("exclusive-ranges") { + unsigned int total_vfs = igt_sriov_get_total_vfs(pf_fd); + + igt_skip_on(total_vfs < 2); + + for_random_sriov_vf_in_range(pf_fd, 2, total_vfs, num_vfs) { + igt_dynamic_f("numvfs-random") { + igt_debug("numvfs=%u\n", num_vfs); + exclusive_ranges(pf_fd, num_vfs); + } + } + } + + igt_fixture { + igt_sriov_disable_vfs(pf_fd); + /* abort to avoid execution of next tests with enabled VFs */ + igt_abort_on_f(igt_sriov_get_enabled_vfs(pf_fd) > 0, "Failed to disable VF(s)"); + autoprobe ? igt_sriov_enable_driver_autoprobe(pf_fd) : + igt_sriov_disable_driver_autoprobe(pf_fd); + igt_abort_on_f(autoprobe != igt_sriov_is_driver_autoprobe_enabled(pf_fd), + "Failed to restore sriov_drivers_autoprobe value\n"); + drm_close_driver(pf_fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index 2724c7a9a..01076f401 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -315,6 +315,7 @@ intel_xe_progs = [ 'xe_vm', 'xe_waitfence', 'xe_spin_batch', + 'xe_sriov_auto_provisioning', 'xe_sriov_flr', 'xe_sysfs_defaults', 'xe_sysfs_preempt_timeout', -- 2.31.1 From marcin.bernatowicz at linux.intel.com Tue Jan 14 15:08:48 2025 From: marcin.bernatowicz at linux.intel.com (Marcin Bernatowicz) Date: Tue, 14 Jan 2025 16:08:48 +0100 Subject: [PATCH v2 i-g-t 7/7] tests/xe_sriov_auto_provisioning: Add 'extended' command line option In-Reply-To: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> References: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> Message-ID: <20250114150848.332708-8-marcin.bernatowicz@linux.intel.com> By default, a dynamic subtest is executed with a random num_vfs to limit execution time. Add an 'extended' command line option to enable iteration over all possible num_vfs. Signed-off-by: Marcin Bernatowicz Cc: Adam Miszczak Cc: Jakub Kolakowski Cc: Lukasz Laguna Cc: Micha? Wajdeczko Cc: Micha? Winiarski Cc: Narasimha C V Cc: Piotr Pi?rkowski Cc: Satyanarayana K V P Cc: Tomasz Lis --- tests/intel/xe_sriov_auto_provisioning.c | 40 +++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/tests/intel/xe_sriov_auto_provisioning.c b/tests/intel/xe_sriov_auto_provisioning.c index 1d2aa8624..e13eb3644 100644 --- a/tests/intel/xe_sriov_auto_provisioning.c +++ b/tests/intel/xe_sriov_auto_provisioning.c @@ -216,7 +216,30 @@ static void exclusive_ranges(int pf_fd, unsigned int num_vfs) igt_fail_on_f(fails, "exclusive ranges check failed\n"); } -igt_main +static bool extended_scope; + +static int opts_handler(int opt, int opt_index, void *data) +{ + switch (opt) { + case 'e': + extended_scope = true; + break; + default: + return IGT_OPT_HANDLER_ERROR; + } + + return IGT_OPT_HANDLER_SUCCESS; +} + +static const struct option long_opts[] = { + { .name = "extended", .has_arg = false, .val = 'e', }, + {} +}; + +static const char help_str[] = + " --extended\tRun the extended test scope\n"; + +igt_main_args("", long_opts, help_str, opts_handler, NULL) { enum xe_sriov_shared_res res; unsigned int gt; @@ -245,6 +268,11 @@ igt_main igt_describe("Verify that auto-provisioned resources are allocated by PF driver in fairly manner"); igt_subtest_with_dynamic("fair-allocation") { + if (extended_scope) + for_each_sriov_num_vfs(pf_fd, num_vfs) + igt_dynamic_f("numvfs-%d", num_vfs) + fair_allocation(pf_fd, num_vfs); + for_random_sriov_num_vfs(pf_fd, num_vfs) { igt_dynamic_f("numvfs-random") { igt_debug("numvfs=%u\n", num_vfs); @@ -255,6 +283,11 @@ igt_main igt_describe("Verify that auto-provisioned resources are released once VFs are disabled"); igt_subtest_with_dynamic("resources-released-on-vfs-disabling") { + if (extended_scope) + for_each_sriov_num_vfs(pf_fd, num_vfs) + igt_dynamic_f("numvfs-%d", num_vfs) + resources_released_on_vfs_disabling(pf_fd, num_vfs); + for_random_sriov_num_vfs(pf_fd, num_vfs) { igt_dynamic_f("numvfs-random") { igt_debug("numvfs=%u\n", num_vfs); @@ -269,6 +302,11 @@ igt_main igt_skip_on(total_vfs < 2); + if (extended_scope) + for_each_sriov_num_vfs(pf_fd, num_vfs) + igt_dynamic_f("numvfs-%d", num_vfs) + exclusive_ranges(pf_fd, num_vfs); + for_random_sriov_vf_in_range(pf_fd, 2, total_vfs, num_vfs) { igt_dynamic_f("numvfs-random") { igt_debug("numvfs=%u\n", num_vfs); -- 2.31.1 From patchwork at emeril.freedesktop.org Tue Jan 14 16:32:58 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 14 Jan 2025 16:32:58 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/kms=5Fplane=5Fscal?= =?utf-8?q?ing=3A_get_mode_only_after_setting_the_output_pipe?= In-Reply-To: <20250110123403.1818011-1-luciano.coelho@intel.com> References: <20250110123403.1818011-1-luciano.coelho@intel.com> Message-ID: <173687237830.3651183.6525093048759948270@b555e5b46a47> == Series Details == Series: tests/kms_plane_scaling: get mode only after setting the output pipe URL : https://patchwork.freedesktop.org/series/143388/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15942_full -> IGTPW_12425_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12425_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12425_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_12425/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_12425_full: ### IGT changes ### #### Possible regressions #### * igt at debugfs_test@read_all_entries: - shard-mtlp: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-7/igt at debugfs_test@read_all_entries.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at debugfs_test@read_all_entries.html * igt at i915_suspend@sysfs-reader: - shard-glk: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk2/igt at i915_suspend@sysfs-reader.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk1/igt at i915_suspend@sysfs-reader.html Known issues ------------ Here are the changes found in IGTPW_12425_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]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-5/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#9318]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-3/igt at debugfs_test@basic-hwmon.html - shard-rkl: NOTRUN -> [SKIP][9] ([i915#9318]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-4/igt at debugfs_test@basic-hwmon.html - shard-tglu: NOTRUN -> [SKIP][10] ([i915#9318]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at debugfs_test@basic-hwmon.html * igt at device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#11078]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at device_reset@cold-reset-bound.html * igt at device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [ABORT][12] ([i915#11814] / [i915#11815] / [i915#9413]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at device_reset@unbind-reset-rebind.html * igt at drm_fdinfo@busy-check-all at bcs0: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +5 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at drm_fdinfo@busy-check-all at bcs0.html * igt at drm_fdinfo@busy-check-all at ccs0: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) +6 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-2/igt at drm_fdinfo@busy-check-all at ccs0.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +23 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at gem_basic@multigpu-create-close.html * igt at gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4873]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at gem_caching@reads.html * igt at gem_ccs@block-multicopy-inplace: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-7/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at gem_ccs@ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#7697]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at gem_close_race@multigpu-basic-process.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_12425/shard-rkl-7/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8562]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at gem_create@create-ext-set-pat.html - shard-rkl: NOTRUN -> [SKIP][25] ([i915#8562]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][26] ([i915#8562]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-9/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][27] ([i915#1099]) +7 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb5/igt at gem_ctx_persistence@engines-mixed-process.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_12425/shard-dg2-8/igt at gem_ctx_persistence@saturated-hostile-nopreempt.html * igt at gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at gem_ctx_sseu@invalid-args.html * igt at gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][30] ([i915#10030] / [i915#7975] / [i915#8213]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-3/igt at gem_eio@hibernate.html * igt at gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4771]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4812]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at gem_exec_balancer@bonded-false-hang.html * igt at gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at gem_exec_balancer@bonded-semaphore.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4036]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-3/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#8555]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at gem_exec_balancer@parallel-balancer.html - shard-tglu: NOTRUN -> [SKIP][37] ([i915#4525]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-6/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-keep-in-fence: - shard-tglu-1: NOTRUN -> [SKIP][38] ([i915#4525]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at gem_exec_balancer@parallel-keep-in-fence.html * igt at gem_exec_capture@capture-invisible: - shard-tglu: NOTRUN -> [SKIP][39] ([i915#6334]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-4/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at gem_exec_flush@basic-uc-pro-default.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3281]) +9 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at gem_exec_reloc@basic-gtt.html * igt at gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#3281]) +5 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at gem_exec_reloc@basic-scanout.html * igt at gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at gem_exec_reloc@basic-wc-read-active.html * igt at gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at gem_exec_schedule@preempt-queue.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4860]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4860]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4860]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-5/igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt at gem_lmem_swapping@basic: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#4613]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at gem_lmem_swapping@basic.html * igt at gem_lmem_swapping@heavy-verify-random: - shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#4613]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at gem_lmem_swapping@heavy-verify-random.html * igt at gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][51] ([i915#4613]) +7 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk7/igt at gem_lmem_swapping@random-engines.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][52] ([i915#5493]) +1 other test timeout [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][53] ([i915#4613]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_madvise@dontneed-before-pwrite: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3282]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at gem_madvise@dontneed-before-pwrite.html * igt at gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#8289]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-3/igt at gem_media_fill@media-fill.html * igt at gem_mmap_gtt@cpuset-basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4077]) +10 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at gem_mmap_gtt@cpuset-basic-small-copy.html * igt at gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4077]) +16 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at gem_mmap_gtt@fault-concurrent-x.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][58] -> [ABORT][59] ([i915#10729]) +1 other test abort [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-2/igt at gem_mmap_offset@clear-via-pagefault.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-3/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-5/igt at gem_mmap_wc@bad-size.html * igt at gem_mmap_wc@invalid-flags: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4083]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at gem_mmap_wc@invalid-flags.html * igt at gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +8 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-5/igt at gem_pread@snoop.html - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +5 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at gem_pread@snoop.html * igt at gem_pwrite@basic-exhaustion: - shard-tglu-1: NOTRUN -> [WARN][64] ([i915#2658]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@create-regular-buffer: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at gem_pxp@create-regular-buffer.html * igt at gem_pxp@create-regular-context-1: - shard-rkl: NOTRUN -> [TIMEOUT][66] ([i915#12917] / [i915#12964]) +1 other test timeout [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at gem_pxp@create-regular-context-1.html * igt at gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-11/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#13398]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-2/igt at gem_pxp@hw-rejects-pxp-buffer.html - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#13398]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-4/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_readwrite@read-write: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3282]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-6/igt at gem_readwrite@read-write.html * igt at gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#8428]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#5190] / [i915#8428]) +6 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4079]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4079]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][75] ([i915#8411]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4885]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4079]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at gem_tiled_pread_pwrite.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][78] ([i915#13449]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb7/igt at gem_tiled_swapping@non-threaded.html * igt at gem_tiled_wb: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4077]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-4/igt at gem_tiled_wb.html * igt at gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4879]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at gem_unfence_active_buffers.html - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4879]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-6/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@coherency-sync: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at gem_userptr_blits@coherency-sync.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#3323]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#3282] / [i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4880]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#3297]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3297]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_workarounds@suspend-resume-fd: - shard-rkl: NOTRUN -> [DMESG-FAIL][90] ([i915#12964]) +1 other test dmesg-fail [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-4/igt at gem_workarounds@suspend-resume-fd.html * igt at gen9_exec_parse@basic-rejected-ctx-param: - shard-snb: NOTRUN -> [SKIP][91] +373 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb5/igt at gen9_exec_parse@basic-rejected-ctx-param.html * igt at gen9_exec_parse@batch-invalid-length: - shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at gen9_exec_parse@batch-invalid-length.html * igt at gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) +4 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at gen9_exec_parse@batch-zero-length.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at gen9_exec_parse@bb-start-cmd.html - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#2856]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-1/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#2856]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at gen9_exec_parse@shadow-peek.html - shard-rkl: NOTRUN -> [SKIP][97] ([i915#2527]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at gen9_exec_parse@shadow-peek.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [DMESG-WARN][98] ([i915#13475]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#7091]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#8399]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at i915_pm_freq_api@freq-basic-api.html * igt at i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#8399]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#6590]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at i915_pm_freq_mult@media-freq at gt0.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#6590]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0: - shard-dg1: [PASS][104] -> [FAIL][105] ([i915#3591]) +1 other test fail [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-14/igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: [PASS][106] -> [FAIL][107] ([i915#12739] / [i915#3591]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-14/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html * igt at i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#11681]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at i915_pm_rps@thresholds-park.html * igt at i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#4387]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at i915_pm_sseu@full-enable.html * igt at i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#6245]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at i915_query@hwconfig_table.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#5723]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-4/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][112] ([i915#9311]) +1 other test dmesg-warn [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk3/igt at i915_selftest@mock.html * igt at i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][113] -> [INCOMPLETE][114] ([i915#12964] / [i915#4817]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-2/igt at i915_suspend@basic-s3-without-i915.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@debugfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][115] ([i915#4817]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk2/igt at i915_suspend@debugfs-reader.html * igt at i915_suspend@fence-restore-untiled: - shard-rkl: [PASS][116] -> [DMESG-FAIL][117] ([i915#12964]) +2 other tests dmesg-fail [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-1/igt at i915_suspend@fence-restore-untiled.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at i915_suspend@fence-restore-untiled.html * igt at kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4212]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_addfb_basic@clobberred-modifier.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#12454] / [i915#12712]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/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-hdmi-a-3-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#8709]) +7 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/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-atomic at pipe-b-hdmi-a-3-4-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#8709]) +23 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-3-4-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][122] ([i915#8709]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/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_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#3555]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-6/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][124] ([i915#9531]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][125] ([i915#9531]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][126] ([i915#9531]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#1769] / [i915#3555]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#1769] / [i915#3555]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][129] ([i915#1769] / [i915#3555]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-16bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#5286]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_big_fb@4-tiled-16bpp-rotate-180.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#5286]) +8 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-4/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5286]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at kms_big_fb@4-tiled-64bpp-rotate-270.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_12425/shard-dg1-17/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#5286]) +7 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][135] +15 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][136] ([i915#3638]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#3638]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6187]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-1/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][139] ([i915#4538] / [i915#5190]) +15 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/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-180: - shard-rkl: NOTRUN -> [SKIP][140] +16 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#6095]) +49 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#12313]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#12313]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/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][145] ([i915#6095]) +161 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/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-y-tiled-ccs at pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#6095]) +143 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#6095]) +79 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/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-basic-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#12313]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#6095]) +86 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/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: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#6095]) +13 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][151] ([i915#12796]) +1 other test incomplete [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#12313]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-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_12425/shard-mtlp-5/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-c-edp-1.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/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-rkl: NOTRUN -> [SKIP][155] ([i915#3742]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#11616] / [i915#7213]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-1.html * igt at kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#3742]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_cdclk@plane-scaling.html - shard-tglu: NOTRUN -> [SKIP][158] ([i915#3742]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#4087]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at kms_cdclk@plane-scaling at pipe-c-edp-1.html * igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#4087]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +4 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +5 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_chamelium_frames@dp-crc-single.html * igt at kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +11 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-3/igt at kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt at kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-4/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +7 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +8 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-6/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#9979]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#7118] / [i915#9424]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#9424]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#3116] / [i915#3299]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#3116]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-7/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#6944] / [i915#9424]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-2/igt at kms_content_protection@lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][174] ([i915#9424]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#6944] / [i915#7116] / [i915#7118]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent at pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][177] ([i915#1339] / [i915#7173]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_content_protection@uevent at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#8814]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-4/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#3555]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at kms_cursor_crc@cursor-offscreen-32x32.html - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#8814]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-5/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#13049]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-9/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#3555]) +5 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#13049]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555]) +7 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_cursor_crc@cursor-sliding-32x10.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#13049]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#4103] / [i915#4213]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#4103]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-snb: [PASS][188] -> [SKIP][189] +2 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-snb2/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb2/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#13046] / [i915#5354]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#4103]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][192] ([i915#4103]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_cursor_legacy@torture-move at pipe-b: - shard-rkl: [PASS][193] -> [DMESG-WARN][194] ([i915#12964]) +16 other tests dmesg-warn [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-4/igt at kms_cursor_legacy@torture-move at pipe-b.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_cursor_legacy@torture-move at pipe-b.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#9723]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][196] ([i915#12170]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb2/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][197] ([i915#11968]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb2/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#12402]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#8812]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#8812]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-5/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#3840]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at kms_dsc@dsc-with-formats.html * igt at kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3469]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#2065] / [i915#4854]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-4/igt at kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][204] ([i915#4854]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-11/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#1839]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#1839]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#9337]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#9934]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3637]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-1/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#9934]) +6 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][211] ([i915#12745] / [i915#4839]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk6/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: NOTRUN -> [INCOMPLETE][212] ([i915#4839]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk6/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#3637]) +5 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt at kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#3637]) +9 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at kms_flip@2x-nonexisting-fb-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#9934]) +4 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1: - shard-tglu: [PASS][216] -> [FAIL][217] ([i915#11989]) +1 other test fail [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-tglu-7/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1.html * igt at kms_flip@wf_vblank-ts-check-interruptible at b-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][218] ([i915#11989]) +2 other tests fail [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-6/igt at kms_flip@wf_vblank-ts-check-interruptible at b-hdmi-a1.html * igt at kms_flip@wf_vblank-ts-check at a-edp1: - shard-mtlp: [PASS][219] -> [FAIL][220] ([i915#11989]) +4 other tests fail [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-3/igt at kms_flip@wf_vblank-ts-check at a-edp1.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at kms_flip@wf_vblank-ts-check at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html - shard-rkl: NOTRUN -> [SKIP][222] ([i915#2672] / [i915#3555]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#2672] / [i915#3555]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#2672]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling at pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#2587] / [i915#2672]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/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 at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#2587] / [i915#2672]) +2 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/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-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#2672]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-11/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-tglu: NOTRUN -> [SKIP][229] ([i915#2587] / [i915#2672] / [i915#3555]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/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: NOTRUN -> [SKIP][230] ([i915#2587] / [i915#2672]) +4 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/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-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-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_12425/shard-tglu-9/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#5274]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][235] ([i915#6880]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-dg2: [PASS][236] -> [FAIL][237] ([i915#6880]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#3458]) +24 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#3458] / [i915#4423]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#8708]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#8708]) +17 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-11/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][242] +62 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][243] +20 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][244] +88 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#1825]) +38 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#10433] / [i915#3458]) +2 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#3458]) +6 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#3023]) +24 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][249] +367 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#1825]) +7 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#5354]) +32 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-3/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#8708]) +14 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8228]) +2 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8228]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-5/igt at kms_hdr@static-toggle-dpms.html - shard-dg1: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at kms_hdr@static-toggle-dpms.html * igt at kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-2/igt at kms_hdr@static-toggle-suspend.html * igt at kms_histogram@algo-color: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#13389]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_histogram@algo-color.html - shard-rkl: NOTRUN -> [SKIP][258] ([i915#13389]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_histogram@algo-color.html - shard-tglu: NOTRUN -> [SKIP][259] ([i915#13389]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at kms_histogram@algo-color.html * igt at kms_histogram@global-color: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#13388]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at kms_histogram@global-color.html - shard-dg2: NOTRUN -> [SKIP][261] ([i915#13388]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#10656]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#12394]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#12339]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#10656]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#12388]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#10656]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#6301]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][269] ([i915#6301]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#6301]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-6/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-mtlp: NOTRUN -> [SKIP][271] +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-1/igt at kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][272] ([i915#12756] / [i915#13409] / [i915#13476]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk1/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][273] ([i915#13409] / [i915#13476]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk1/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][274] ([i915#13026]) +1 other test incomplete [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk9/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#8821]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-5/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#12247]) +19 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#12247] / [i915#9423]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-a: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#12247]) +5 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#12247]) +3 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d.html - shard-dg1: NOTRUN -> [SKIP][280] ([i915#12247]) +4 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/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-5-upscale-20x20 at pipe-d: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#12247]) +4 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-4/igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#12247] / [i915#6953]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/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-tglu-1: NOTRUN -> [SKIP][283] ([i915#12247]) +3 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#9812]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#5354]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at kms_pm_backlight@fade.html * igt at kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][286] ([i915#9812]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at kms_pm_backlight@fade-with-suspend.html - shard-rkl: NOTRUN -> [SKIP][287] ([i915#5354]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#3828]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu-1: NOTRUN -> [FAIL][289] ([i915#9295]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#9340]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-5/igt at kms_pm_lpsp@kms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][291] ([i915#3828]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_pm_lpsp@kms-lpsp.html - shard-tglu: NOTRUN -> [SKIP][292] ([i915#3828]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#9519]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][294] -> [SKIP][295] ([i915#9519]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-2/igt at kms_pm_rpm@modeset-lpsp.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#9519]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#9519]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][298] ([i915#10553]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk8/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#6524]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-4/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#11520]) +10 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#12316]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-5/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#11520]) +8 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#11520]) +9 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#11520]) +4 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][305] ([i915#11520]) +5 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][306] ([i915#11520]) +8 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb5/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][307] ([i915#11520]) +16 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk3/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#9683]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#9683]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_psr2_su@page_flip-p010.html - shard-tglu: NOTRUN -> [SKIP][310] ([i915#9683]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-2/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#9683]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@pr-no-drrs: - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#9688]) +2 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at kms_psr@pr-no-drrs.html * igt at kms_psr@pr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#1072] / [i915#9732]) +19 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-4/igt at kms_psr@pr-sprite-mmap-gtt.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#1072] / [i915#9732]) +26 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr2-cursor-render: - shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#9732]) +12 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_psr@psr2-cursor-render.html * igt at kms_psr@psr2-primary-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#1072] / [i915#9732]) +11 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at kms_psr@psr2-primary-mmap-cpu.html * igt at kms_psr@psr2-primary-render: - shard-tglu: NOTRUN -> [SKIP][317] ([i915#9732]) +21 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-7/igt at kms_psr@psr2-primary-render.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][318] ([i915#9685]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][319] ([i915#9685]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-7/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][320] ([i915#9685]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-3/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#9685]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#5190]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#12755] / [i915#5190]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/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-180: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#5289]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][325] ([i915#5289]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/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][326] ([i915#12755]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/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][327] ([i915#3555]) +5 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-9/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_scaling_modes@scaling-mode-none: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#3555]) +4 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][329] ([i915#13179]) +1 other test abort [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb7/igt at kms_selftest@drm_framebuffer.html * igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][330] ([i915#13179]) +1 other test abort [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free.html * igt at kms_vblank@query-busy: - shard-dg1: [PASS][331] -> [DMESG-WARN][332] ([i915#4423]) +2 other tests dmesg-warn [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-14/igt at kms_vblank@query-busy.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at kms_vblank@query-busy.html * igt at kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][333] ([i915#9906]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][334] ([i915#3555] / [i915#9906]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#9906]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#9906]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-11/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-dg1: NOTRUN -> [SKIP][337] ([i915#9906]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#2437]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#2437]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#2437] / [i915#9412]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#2437] / [i915#9412]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-glk: NOTRUN -> [SKIP][342] ([i915#2437]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk7/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#2437]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#2437] / [i915#9412]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at kms_writeback@writeback-pixel-formats.html * igt at perf_pmu@busy-accuracy-98 at rcs0: - shard-tglu: NOTRUN -> [FAIL][345] ([i915#4349]) +1 other test fail [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at perf_pmu@busy-accuracy-98 at rcs0.html * igt at perf_pmu@busy-double-start at vecs0: - shard-mtlp: [PASS][346] -> [FAIL][347] ([i915#4349]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-1/igt at perf_pmu@busy-double-start at vecs0.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-5/igt at perf_pmu@busy-double-start at vecs0.html * igt at perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#8850]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@frequency at gt0: - shard-dg2: [PASS][349] -> [FAIL][350] ([i915#12549] / [i915#6806]) +1 other test fail [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-1/igt at perf_pmu@frequency at gt0.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at perf_pmu@frequency at gt0.html - shard-dg1: [PASS][351] -> [FAIL][352] ([i915#12549] / [i915#6806]) +1 other test fail [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-14/igt at perf_pmu@frequency at gt0.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][353] ([i915#8516]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-4/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#8516]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-5/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#8516]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][356] ([i915#9351]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at prime_mmap@test_aperture_limit.html * igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][357] ([i915#9351]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem.html * igt at prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][358] ([i915#3291] / [i915#3708]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at prime_vgem@basic-read.html * igt at prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#3708] / [i915#4077]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][360] ([i915#3708] / [i915#4077]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][361] ([i915#3708] / [i915#4077]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-5/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#3708]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at prime_vgem@fence-read-hang.html * igt at prime_vgem@fence-write-hang: - shard-dg1: NOTRUN -> [SKIP][363] ([i915#3708]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#9917]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1: - shard-tglu: NOTRUN -> [FAIL][365] ([i915#12910]) +28 other tests fail [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-6/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1.html * igt at syncobj_timeline@etime-single-wait-for-submit-available-unsubmitted: - shard-dg1: NOTRUN -> [DMESG-WARN][366] ([i915#4423]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at syncobj_timeline@etime-single-wait-for-submit-available-unsubmitted.html * igt at vgem_basic@unload: - shard-rkl: NOTRUN -> [DMESG-WARN][367] ([i915#12964]) +10 other tests dmesg-warn [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at vgem_basic@unload.html #### Possible fixes #### * igt at gem_eio@in-flight-suspend: - shard-rkl: [DMESG-WARN][368] ([i915#12964]) -> [PASS][369] +37 other tests pass [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-7/igt at gem_eio@in-flight-suspend.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at gem_eio@in-flight-suspend.html * igt at gem_exec_suspend@basic-s0: - shard-dg2: [INCOMPLETE][370] ([i915#11441] / [i915#13304]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-7/igt at gem_exec_suspend@basic-s0.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at gem_exec_suspend@basic-s0.html * igt at gem_exec_suspend@basic-s0 at lmem0: - shard-dg2: [INCOMPLETE][372] ([i915#11441]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-7/igt at gem_exec_suspend@basic-s0 at lmem0.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at gem_exec_suspend@basic-s0 at lmem0.html * igt at gen9_exec_parse@allowed-single: - shard-glk: [ABORT][374] ([i915#5566]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk1/igt at gen9_exec_parse@allowed-single.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk4/igt at gen9_exec_parse@allowed-single.html * igt at i915_pm_rpm@debugfs-forcewake-user: - shard-dg1: [DMESG-WARN][376] ([i915#4423]) -> [PASS][377] +1 other test pass [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-18/igt at i915_pm_rpm@debugfs-forcewake-user.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at i915_pm_rpm@debugfs-forcewake-user.html * igt at i915_pm_rpm@debugfs-read: - shard-rkl: [SKIP][378] -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-5/igt at i915_pm_rpm@debugfs-read.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at i915_pm_rpm@debugfs-read.html * igt at i915_pm_rpm@system-suspend: - shard-glk: [INCOMPLETE][380] ([i915#12797]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk3/igt at i915_pm_rpm@system-suspend.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk9/igt at i915_pm_rpm@system-suspend.html * igt at kms_color@deep-color: - shard-dg2: [SKIP][382] ([i915#3555]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-11/igt at kms_color@deep-color.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_color@deep-color.html * igt at kms_cursor_crc@cursor-offscreen-256x256 at pipe-c-hdmi-a-1: - shard-glk: [DMESG-FAIL][384] ([i915#118]) -> [PASS][385] +1 other test pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk8/igt at kms_cursor_crc@cursor-offscreen-256x256 at pipe-c-hdmi-a-1.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk4/igt at kms_cursor_crc@cursor-offscreen-256x256 at pipe-c-hdmi-a-1.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [FAIL][386] ([i915#2346]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [SKIP][388] ([i915#12402]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-3/igt at kms_dp_linktrain_fallback@dp-fallback.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-snb: [FAIL][390] ([i915#11989]) -> [PASS][391] +1 other test pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-snb2/igt at kms_flip@2x-plain-flip-ts-check.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb2/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@flip-vs-suspend: - shard-rkl: [DMESG-FAIL][392] ([i915#12964]) -> [PASS][393] +2 other tests pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-1/igt at kms_flip@flip-vs-suspend.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@plain-flip-fb-recreate at a-edp1: - shard-mtlp: [FAIL][394] ([i915#11989]) -> [PASS][395] +7 other tests pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-6/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-4/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html * igt at kms_hdr@static-toggle-suspend: - shard-dg2: [SKIP][396] ([i915#3555] / [i915#8228]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-3/igt at kms_hdr@static-toggle-suspend.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg2: [SKIP][398] ([i915#12388]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-5/igt at kms_joiner@basic-force-big-joiner.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_plane_scaling@intel-max-src-size: - shard-tglu: [FAIL][400] ([i915#8292]) -> [PASS][401] +1 other test pass [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-tglu-2/igt at kms_plane_scaling@intel-max-src-size.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-rkl: [SKIP][402] ([i915#12916]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-2/igt at kms_pm_rpm@basic-pci-d3-state.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at perf_pmu@busy-idle-check-all: - shard-dg1: [FAIL][404] ([i915#4349]) -> [PASS][405] +1 other test pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-18/igt at perf_pmu@busy-idle-check-all.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at perf_pmu@busy-idle-check-all.html * igt at perf_pmu@busy-idle-check-all at vcs0: - shard-mtlp: [FAIL][406] ([i915#4349]) -> [PASS][407] +1 other test pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-2/igt at perf_pmu@busy-idle-check-all at vcs0.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-4/igt at perf_pmu@busy-idle-check-all at vcs0.html * igt at perf_pmu@most-busy-check-all: - shard-rkl: [FAIL][408] ([i915#4349]) -> [PASS][409] +1 other test pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-4/igt at perf_pmu@most-busy-check-all.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at perf_pmu@most-busy-check-all.html #### Warnings #### * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [TIMEOUT][410] ([i915#5493]) -> [DMESG-WARN][411] ([i915#5493]) +1 other test dmesg-warn [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-12/igt at gem_lmem_swapping@smem-oom at lmem0.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_pxp@display-protected-crc: - shard-rkl: [SKIP][412] ([i915#4270]) -> [TIMEOUT][413] ([i915#12917] / [i915#12964]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-3/igt at gem_pxp@display-protected-crc.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-4/igt at gem_pxp@display-protected-crc.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: [DMESG-WARN][414] ([i915#13475]) -> [ABORT][415] ([i915#13493] / [i915#9820]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-17/igt at i915_module_load@reload-with-fault-injection.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at i915_module_load@reload-with-fault-injection.html - shard-tglu: [ABORT][416] ([i915#12817] / [i915#9820]) -> [ABORT][417] ([i915#10887] / [i915#12817] / [i915#9820]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-tglu-8/igt at i915_module_load@reload-with-fault-injection.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-9/igt at i915_module_load@reload-with-fault-injection.html - shard-glk: [ABORT][418] -> [ABORT][419] ([i915#9820]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk8/igt at i915_module_load@reload-with-fault-injection.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk2/igt at i915_module_load@reload-with-fault-injection.html * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg1: [SKIP][420] ([i915#4212]) -> [SKIP][421] ([i915#4212] / [i915#4423]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-12/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg1: [SKIP][422] ([i915#11151] / [i915#7828]) -> [SKIP][423] ([i915#11151] / [i915#4423] / [i915#7828]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-12/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt at kms_content_protection@mei-interface: - shard-dg1: [SKIP][424] ([i915#9433]) -> [SKIP][425] ([i915#9424]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-13/igt at kms_content_protection@mei-interface.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-dg2: [SKIP][426] ([i915#7118] / [i915#9424]) -> [FAIL][427] ([i915#1339] / [i915#7173]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-7/igt at kms_content_protection@uevent.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_content_protection@uevent.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][428] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][429] ([i915#12745] / [i915#1982] / [i915#4839]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk5/igt at kms_flip@2x-flip-vs-suspend-interruptible.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk6/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2: - shard-glk: [INCOMPLETE][430] ([i915#4839]) -> [INCOMPLETE][431] ([i915#1982] / [i915#4839]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk5/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk6/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: [SKIP][432] ([i915#9934]) -> [SKIP][433] ([i915#4423] / [i915#9934]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 14 16:56:35 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 14 Jan 2025 16:56:35 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_series_starting_with_=5B?= =?utf-8?q?i-g-t=2Cv1=2C1/1=5D_tests/xe=5Feudebug=3A_check_if_driver_is_open?= =?utf-8?q?_before_toggling_enable?= In-Reply-To: <20250110125201.59630-1-jan.sokolowski@intel.com> References: <20250110125201.59630-1-jan.sokolowski@intel.com> Message-ID: <173687379506.3651906.17511031643642854238@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v1,1/1] tests/xe_eudebug: check if driver is open before toggling enable URL : https://patchwork.freedesktop.org/series/143389/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15942_full -> IGTPW_12426_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12426_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12426_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_12426/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_12426_full: ### IGT changes ### #### Possible regressions #### * igt at gem_tiled_swapping@non-threaded: - shard-rkl: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-5/igt at gem_tiled_swapping@non-threaded.html - shard-tglu: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-tglu-2/igt at gem_tiled_swapping@non-threaded.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-9/igt at gem_tiled_swapping@non-threaded.html * igt at kms_flip@absolute-wf_vblank-interruptible at b-vga1: - shard-snb: [PASS][4] -> [INCOMPLETE][5] +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-snb7/igt at kms_flip@absolute-wf_vblank-interruptible at b-vga1.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-snb2/igt at kms_flip@absolute-wf_vblank-interruptible at b-vga1.html * igt at perf_pmu@module-unload: - shard-dg1: [PASS][6] -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-18/igt at perf_pmu@module-unload.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-14/igt at perf_pmu@module-unload.html Known issues ------------ Here are the changes found in IGTPW_12426_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_12426/shard-dg1-17/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-2/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-5/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#9318]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-2/igt at debugfs_test@basic-hwmon.html - shard-rkl: NOTRUN -> [SKIP][12] ([i915#9318]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at debugfs_test@basic-hwmon.html - shard-tglu: NOTRUN -> [SKIP][13] ([i915#9318]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-9/igt at debugfs_test@basic-hwmon.html * igt at device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-5/igt at device_reset@cold-reset-bound.html * igt at drm_fdinfo@busy-check-all at bcs0: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#8414]) +5 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-18/igt at drm_fdinfo@busy-check-all at bcs0.html * igt at drm_fdinfo@busy-check-all at ccs0: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8414]) +6 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-5/igt at drm_fdinfo@busy-check-all at ccs0.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8414]) +41 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-11/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-8/igt at gem_basic@multigpu-create-close.html * igt at gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#4873]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-6/igt at gem_caching@reads.html * igt at gem_ccs@block-multicopy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-2/igt at gem_ccs@ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-14/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#13008]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-2/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][24] ([i915#7297]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-7/igt at gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][25] ([i915#9323]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-7/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][26] ([i915#12392] / [i915#7297]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-7/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html * igt at gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#6335]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#8562]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-5/igt at gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][29] ([i915#8562]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-2/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][30] ([i915#12353]) +1 other test incomplete [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk4/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][31] ([i915#1099]) +6 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-snb7/igt at gem_ctx_persistence@engines-mixed-process.html * igt at gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-7/igt at gem_ctx_sseu@invalid-args.html * igt at gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][33] ([i915#10030] / [i915#7975] / [i915#8213]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-4/igt at gem_eio@hibernate.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][34] ([i915#13197] / [i915#13390]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk6/igt at gem_eio@in-flight-suspend.html * igt at gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4771]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-11/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-5/igt at gem_exec_balancer@bonded-false-hang.html * igt at gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-13/igt at gem_exec_balancer@bonded-semaphore.html * igt at gem_exec_balancer@parallel-balancer: - shard-tglu: NOTRUN -> [SKIP][38] ([i915#4525]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-8/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#4525]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-1/igt at gem_exec_balancer@parallel-dmabuf-import-out-fence.html - shard-tglu-1: NOTRUN -> [SKIP][40] ([i915#4525]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt at gem_exec_capture@capture-invisible: - shard-tglu: NOTRUN -> [SKIP][41] ([i915#6334]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-10/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-13/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-10/igt at gem_exec_flush@basic-wb-rw-default.html * igt at gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +7 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-7/igt at gem_exec_reloc@basic-active.html * igt at gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3281]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-12/igt at gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt at gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +8 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-7/igt at gem_exec_reloc@basic-gtt-read-noreloc.html * igt at gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-5/igt at gem_exec_schedule@preempt-queue.html * igt at gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#7276]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at gem_exec_schedule@semaphore-power.html * igt at gem_exec_schedule@wide: - shard-tglu: [PASS][49] -> [INCOMPLETE][50] ([i915#13391]) +1 other test incomplete [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-tglu-6/igt at gem_exec_schedule@wide.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-8/igt at gem_exec_schedule@wide.html * igt at gem_exec_suspend@basic-s0 at smem: - shard-dg2: [PASS][51] -> [INCOMPLETE][52] ([i915#11441] / [i915#13304]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-7/igt at gem_exec_suspend@basic-s0 at smem.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-3/igt at gem_exec_suspend@basic-s0 at smem.html * igt at gem_exec_suspend@basic-s4-devices: - shard-tglu: [PASS][53] -> [ABORT][54] ([i915#7975] / [i915#8213]) +1 other test abort [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-tglu-8/igt at gem_exec_suspend@basic-s4-devices.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-10/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-14/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4860]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-7/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_fenced_exec_thrash@too-many-fences: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4860]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-10/igt at gem_fenced_exec_thrash@too-many-fences.html * igt at gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at gem_lmem_swapping@parallel-random.html * igt at gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][59] ([i915#4613]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk1/igt at gem_lmem_swapping@random-engines.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][60] ([i915#5493]) +1 other test timeout [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-4/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-random: - shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#4613]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at gem_lmem_swapping@verify-random.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#4613]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-6/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_madvise@dontneed-before-pwrite: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3282]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-13/igt at gem_madvise@dontneed-before-pwrite.html * igt at gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#284]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-5/igt at gem_media_vme.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4077]) +19 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-1/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@cpuset-basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4077]) +8 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-14/igt at gem_mmap_gtt@cpuset-basic-small-copy.html * igt at gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-1/igt at gem_mmap_wc@bad-size.html * igt at gem_mmap_wc@invalid-flags: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-12/igt at gem_mmap_wc@invalid-flags.html * igt at gem_mmap_wc@pf-nonblock: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4083]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-3/igt at gem_mmap_wc@pf-nonblock.html * igt at gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][70] ([i915#2658]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk3/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +8 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-11/igt at gem_pread@snoop.html * igt at gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +7 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-2/igt at gem_pwrite@basic-exhaustion.html - shard-snb: NOTRUN -> [WARN][73] ([i915#2658]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-snb7/igt at gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][74] ([i915#2658]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-7/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@create-regular-buffer: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4270]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-13/igt at gem_pxp@create-regular-buffer.html * igt at gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4270]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-4/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#13398]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-2/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@reject-modify-context-protection-off-3: - shard-rkl: NOTRUN -> [TIMEOUT][78] ([i915#12917] / [i915#12964]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-1/igt at gem_pxp@reject-modify-context-protection-off-3.html * igt at gem_readwrite@write-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3282]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-5/igt at gem_readwrite@write-bad-handle.html * igt at gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#5190] / [i915#8428]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-4/igt at gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt at gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#8428]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-8/igt at gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4079]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-3/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4079]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-5/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#4885]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-14/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4079]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-17/igt at gem_tiled_pread_pwrite.html * igt at gem_tiled_wb: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4077]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-5/igt at gem_tiled_wb.html * igt at gem_unfence_active_buffers: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4879]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-6/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@access-control: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-1/igt at gem_userptr_blits@access-control.html * igt at gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-3/igt at gem_userptr_blits@coherency-sync.html - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-17/igt at gem_userptr_blits@coherency-sync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#3323]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-6/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#3297]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#3282] / [i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-5/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3297]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-8/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4880]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-18/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4880]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-1/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.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_12426/shard-tglu-4/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_workarounds@suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][98] ([i915#13356]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk7/igt at gem_workarounds@suspend-resume.html - shard-rkl: [PASS][99] -> [DMESG-FAIL][100] ([i915#12964]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-4/igt at gem_workarounds@suspend-resume.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-1/igt at gem_workarounds@suspend-resume.html * igt at gen9_exec_parse@allowed-single: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#2856]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-5/igt at gen9_exec_parse@allowed-single.html * igt at gen9_exec_parse@basic-rejected-ctx-param: - shard-snb: NOTRUN -> [SKIP][102] +386 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-snb5/igt at gen9_exec_parse@basic-rejected-ctx-param.html * igt at gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#2527]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-2/igt at gen9_exec_parse@batch-invalid-length.html * igt at gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#2527] / [i915#2856]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-2/igt at gen9_exec_parse@batch-zero-length.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#2527]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-12/igt at gen9_exec_parse@bb-start-cmd.html - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#2856]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-3/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@unaligned-access: - shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#2527] / [i915#2856]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at gen9_exec_parse@unaligned-access.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#4881]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-10/igt at i915_fb_tiling.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [ABORT][109] ([i915#9820]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-5/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#6412]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-9/igt at i915_module_load@resize-bar.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#7091]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-5/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#8399]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-9/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#6590]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-5/igt at i915_pm_freq_mult@media-freq at gt0.html - shard-dg1: NOTRUN -> [SKIP][114] ([i915#6590]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-12/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: NOTRUN -> [FAIL][115] ([i915#12942]) +1 other test fail [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-2/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-tglu-1: NOTRUN -> [WARN][116] ([i915#2681]) +4 other tests warn [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html - shard-dg1: [PASS][117] -> [FAIL][118] ([i915#3591]) +1 other test fail [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-14/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: [PASS][119] -> [FAIL][120] ([i915#12739] / [i915#3591]) +1 other test fail [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-14/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html * igt at i915_pm_rpm@reg-read-ioctl: - shard-rkl: [PASS][121] -> [SKIP][122] ([i915#13328]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-1/igt at i915_pm_rpm@reg-read-ioctl.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-6/igt at i915_pm_rpm@reg-read-ioctl.html * igt at i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#11681]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-5/igt at i915_pm_rps@thresholds-park.html * igt at i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#4387]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-5/igt at i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][125] ([i915#4387]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-9/igt at i915_pm_sseu@full-enable.html * igt at i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#6245]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][127] ([i915#6245]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-7/igt at i915_query@hwconfig_table.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#5723]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [PASS][129] -> [DMESG-FAIL][130] ([i915#13393]) +1 other test dmesg-fail [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-8/igt at i915_selftest@live at workarounds.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-6/igt at i915_selftest@live at workarounds.html * igt at i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][131] ([i915#9311]) +1 other test dmesg-warn [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk2/igt at i915_selftest@mock.html * igt at i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][132] -> [INCOMPLETE][133] ([i915#4817]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-2/igt at i915_suspend@basic-s3-without-i915.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-3/igt at i915_suspend@basic-s3-without-i915.html - shard-glk: [PASS][134] -> [INCOMPLETE][135] ([i915#4817]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk9/igt at i915_suspend@basic-s3-without-i915.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk5/igt at i915_suspend@basic-s3-without-i915.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#12454] / [i915#12712]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-7/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-b-hdmi-a-2-y-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#8709]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/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][138] ([i915#8709]) +7 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/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_atomic@plane-immutable-zpos: - shard-dg1: [PASS][139] -> [DMESG-WARN][140] ([i915#4423]) +3 other tests dmesg-warn [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-13/igt at kms_atomic@plane-immutable-zpos.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-14/igt at kms_atomic@plane-immutable-zpos.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#3555]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg2: NOTRUN -> [SKIP][142] ([i915#9531]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-11/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][143] ([i915#9531]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][144] ([i915#9531]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-18/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][145] ([i915#9531]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-6/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#1769] / [i915#3555]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-5/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][147] ([i915#1769] / [i915#3555]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-18/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][148] ([i915#1769] / [i915#3555]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-9/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#4538] / [i915#5286]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-14/igt at kms_big_fb@4-tiled-8bpp-rotate-180.html - shard-tglu: NOTRUN -> [SKIP][150] ([i915#5286]) +6 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-6/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][151] ([i915#5286]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/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-hflip: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#5286]) +9 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#5286]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][154] -> [FAIL][155] ([i915#5138]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-5/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][156] +14 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-5/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][157] ([i915#3638]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-13/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#3638]) +5 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-1/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#5190]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-11/igt at kms_big_fb@y-tiled-addfb.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#6187]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-4/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][161] ([i915#4538] / [i915#5190]) +15 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-10/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][162] ([i915#4538]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-14/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][163] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-8/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-tglu-1: NOTRUN -> [SKIP][164] ([i915#12313]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#12313]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-8/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][166] ([i915#6095]) +157 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-18/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-cc at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#6095]) +19 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-8/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc at pipe-b-edp-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#6095]) +69 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-4/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-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#12313]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#6095]) +13 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-4/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][171] ([i915#12796]) +1 other test incomplete [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk9/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#6095]) +39 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#12313]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-3/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#10307] / [i915#6095]) +114 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-8/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#6095]) +84 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-2/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3742]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-5/igt at kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][177] ([i915#3742]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-17/igt at kms_cdclk@plane-scaling.html - shard-tglu: NOTRUN -> [SKIP][178] ([i915#3742]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-4/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#4087]) +4 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-8/igt at kms_cdclk@plane-scaling at pipe-c-edp-1.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#11151] / [i915#7828]) +10 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/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][181] ([i915#11151] / [i915#7828]) +10 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-7/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - shard-dg1: NOTRUN -> [SKIP][182] ([i915#11151] / [i915#7828]) +5 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-12/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#11151] / [i915#7828]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-5/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#11151] / [i915#7828]) +3 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#11151] / [i915#7828]) +9 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-10/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_content_protection@atomic.html * igt at kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#7118] / [i915#9424]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-5/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#9424]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#3116] / [i915#3299]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-8/igt at kms_content_protection@dp-mst-type-0.html - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3299]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-7/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#6944] / [i915#9424]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-8/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#6944] / [i915#7116] / [i915#7118]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-7/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-9/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#8814]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-5/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-rkl: [PASS][195] -> [DMESG-WARN][196] ([i915#12964]) +41 other tests dmesg-warn [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-1/igt at kms_cursor_crc@cursor-offscreen-256x85.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-1/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#3555]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-14/igt at kms_cursor_crc@cursor-offscreen-32x32.html - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8814]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-4/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][199] ([i915#13049]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-7/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#3555]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#13049]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#3555]) +6 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-2/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#13049]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#3555]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-5/igt at kms_cursor_crc@cursor-sliding-32x10.html * igt at kms_cursor_edge_walk@128x128-right-edge at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][205] ([i915#12964]) +18 other tests dmesg-warn [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-1/igt at kms_cursor_edge_walk@128x128-right-edge at pipe-a-hdmi-a-2.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#4103] / [i915#4213]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-8/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#4103]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#4103]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg1: NOTRUN -> [SKIP][209] ([i915#4103] / [i915#4213]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-14/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: NOTRUN -> [SKIP][210] +18 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-5/igt at kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt at kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-snb: [PASS][211] -> [SKIP][212] +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-snb2/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-snb7/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#13046] / [i915#5354]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-4/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-tglu: [PASS][214] -> [FAIL][215] ([i915#2346]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-tglu-6/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-9/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#9067]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#9723]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#1257]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-4/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#12402]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-18/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]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-12/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-10/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#3840]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-3/igt at kms_dsc@dsc-with-formats.html * igt at kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#3469]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-8/igt at kms_fbcon_fbt@psr.html - shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#3469]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#2065] / [i915#4854]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-10/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_12426/shard-rkl-5/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#658]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#9934]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-18/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#3637]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-8/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#9934]) +5 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-3/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#3637]) +6 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-9/igt at kms_flip@2x-nonexisting-fb-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#9934]) +5 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-11/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#3637]) +4 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank at b-vga1: - shard-snb: NOTRUN -> [FAIL][235] ([i915#11989]) +2 other tests fail [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-snb2/igt at kms_flip@flip-vs-absolute-wf_vblank at b-vga1.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#8381]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-4/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@plain-flip-fb-recreate at d-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][237] ([i915#11989]) +4 other tests fail [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-7/igt at kms_flip@plain-flip-fb-recreate at d-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check at d-hdmi-a1: - shard-tglu: [PASS][238] -> [FAIL][239] ([i915#11989]) +6 other tests fail [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-tglu-7/igt at kms_flip@plain-flip-ts-check at d-hdmi-a1.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-8/igt at kms_flip@plain-flip-ts-check at d-hdmi-a1.html * igt at kms_flip@wf_vblank-ts-check-interruptible at a-edp1: - shard-mtlp: [PASS][240] -> [FAIL][241] ([i915#11989]) +1 other test fail [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-7/igt at kms_flip@wf_vblank-ts-check-interruptible at a-edp1.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/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-64bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#2672]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-7/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-32bpp-yftileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#3555]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-8/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#2672]) +5 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#2587] / [i915#2672] / [i915#3555]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-10/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: NOTRUN -> [SKIP][247] ([i915#2587] / [i915#2672]) +3 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-10/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-yftile-to-16bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#2672] / [i915#3555]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-2/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/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][250] ([i915#2587] / [i915#2672]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/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-32bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-7/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#5274]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-11/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [FAIL][254] ([i915#6880]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#8708]) +17 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#3458]) +19 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#8708]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][258] +18 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][259] +83 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#1825]) +42 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#10055]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-1/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#3458]) +5 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-18/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][263] +48 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#3023]) +26 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][265] +351 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk9/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#1825]) +7 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#5354]) +34 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-11/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#8708]) +15 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-13/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@bpc-switch-suspend: - shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8228]) +2 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-2/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#8228]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-2/igt at kms_hdr@static-toggle-dpms.html - shard-dg1: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8228]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-13/igt at kms_hdr@static-toggle-dpms.html * igt at kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8228]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-2/igt at kms_hdr@static-toggle-suspend.html * igt at kms_histogram@algo-color: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#13389]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-1/igt at kms_histogram@algo-color.html - shard-rkl: NOTRUN -> [SKIP][275] ([i915#13389]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-1/igt at kms_histogram@algo-color.html - shard-tglu: NOTRUN -> [SKIP][276] ([i915#13389]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-10/igt at kms_histogram@algo-color.html * igt at kms_histogram@global-color: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#13388]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-7/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#10656]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-9/igt at kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][279] ([i915#10656]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-10/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#12394]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-2/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#10656]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-18/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#12388]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-5/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#12394]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#6301]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-7/igt at kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][285] ([i915#6301]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-12/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][286] ([i915#12756] / [i915#13409] / [i915#13476] / [i915#1982]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk5/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][287] ([i915#12756] / [i915#1982]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk5/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][288] ([i915#10647] / [i915#12177]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk7/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][289] ([i915#10647]) +1 other test fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk7/igt at kms_plane_alpha_blend@alpha-transparent-fb at pipe-a-hdmi-a-1.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#12247]) +28 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/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@planes-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#12247] / [i915#6953]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-2/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#12247] / [i915#9423]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-11/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-a: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#12247]) +5 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#12247]) +3 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-11/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d.html - shard-dg1: NOTRUN -> [SKIP][295] ([i915#12247]) +4 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-14/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-5-upscale-20x20 at pipe-d: - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#12247]) +4 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-5/igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#12247] / [i915#3555]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/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][298] ([i915#12247]) +3 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/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-1: NOTRUN -> [SKIP][299] ([i915#12343]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#9812]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-7/igt at kms_pm_backlight@fade.html - shard-rkl: NOTRUN -> [SKIP][301] ([i915#5354]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-3/igt at kms_pm_backlight@fade.html - shard-dg1: NOTRUN -> [SKIP][302] ([i915#5354]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-17/igt at kms_pm_backlight@fade.html * igt at kms_pm_backlight@fade-with-suspend: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#9812]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-tglu: NOTRUN -> [SKIP][304] ([i915#9685]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-3/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#3361]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-2/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#9685]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-4/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#9340]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-10/igt at kms_pm_lpsp@kms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][308] ([i915#3828]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at kms_pm_lpsp@kms-lpsp.html - shard-tglu: NOTRUN -> [SKIP][309] ([i915#3828]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-2/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#8430]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-12/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#9519]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-5/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][312] -> [SKIP][313] ([i915#9519]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-5/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-8/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#9519]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][315] -> [SKIP][316] ([i915#9519]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-2/igt at kms_pm_rpm@modeset-lpsp.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-1/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][317] ([i915#10553]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk9/igt at kms_pm_rpm@system-suspend-modeset.html - shard-rkl: [PASS][318] -> [SKIP][319] ([i915#12916]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-4/igt at kms_pm_rpm@system-suspend-modeset.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-2/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#11520]) +10 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-10/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#12316]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-1/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][322] ([i915#11520]) +9 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-snb2/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#11520]) +13 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-8/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#11520]) +9 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-5/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#11520]) +4 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][326] ([i915#11520]) +4 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-14/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][327] ([i915#11520]) +13 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk3/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][328] ([i915#9683]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#9683]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-1/igt at kms_psr2_su@page_flip-p010.html - shard-tglu: NOTRUN -> [SKIP][330] ([i915#9683]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-6/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-psr-cursor-render: - shard-mtlp: NOTRUN -> [SKIP][331] ([i915#9688]) +3 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-4/igt at kms_psr@fbc-psr-cursor-render.html * igt at kms_psr@pr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#1072] / [i915#9732]) +22 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at kms_psr@pr-sprite-mmap-gtt.html * igt at kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#1072] / [i915#9732]) +24 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-1/igt at kms_psr@psr2-cursor-blt.html * igt at kms_psr@psr2-primary-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][334] ([i915#1072] / [i915#9732]) +8 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-18/igt at kms_psr@psr2-primary-mmap-cpu.html * igt at kms_psr@psr2-primary-render: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#9732]) +21 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-10/igt at kms_psr@psr2-primary-render.html * igt at kms_psr@psr2-suspend: - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#9732]) +9 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][337] ([i915#9685]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-13/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#9685]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#12755] / [i915#5190]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#5289]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][341] ([i915#5289]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-3/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][342] ([i915#12755]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-1/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#3555]) +4 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-4/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][344] ([i915#13179]) +1 other test abort [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at kms_selftest@drm_framebuffer.html * igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][345] ([i915#13179]) +1 other test abort [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-10/igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free.html * igt at kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][346] ([i915#10959]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk2/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][347] ([i915#3555] / [i915#9906]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-17/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][348] ([i915#9906]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-1/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][349] ([i915#9906]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-1/igt at kms_vrr@seamless-rr-switch-vrr.html - shard-dg1: NOTRUN -> [SKIP][350] ([i915#9906]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-18/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][351] ([i915#2437]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#2437] / [i915#9412]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-5/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][353] ([i915#2437]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-10/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][354] ([i915#2436]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-3/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#2435]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-1/igt at perf@per-context-mode-unprivileged.html - shard-mtlp: NOTRUN -> [SKIP][356] +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-1/igt at perf@per-context-mode-unprivileged.html * igt at perf_pmu@cpu-hotplug: - shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#8850]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-1/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@multi-client at rcs0: - shard-dg1: [PASS][358] -> [FAIL][359] ([i915#4349]) +5 other tests fail [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-17/igt at perf_pmu@multi-client at rcs0.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-18/igt at perf_pmu@multi-client at rcs0.html * igt at perf_pmu@multi-client at vecs0: - shard-mtlp: [PASS][360] -> [FAIL][361] ([i915#4349]) +6 other tests fail [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-6/igt at perf_pmu@multi-client at vecs0.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-6/igt at perf_pmu@multi-client at vecs0.html * igt at perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#8516]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-7/igt at perf_pmu@rc6-all-gts.html * igt at prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][363] ([i915#3291] / [i915#3708]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-1/igt at prime_vgem@basic-read.html * igt at prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#3708] / [i915#4077]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-11/igt at prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][365] ([i915#3708]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-7/igt at prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][366] ([i915#3708] / [i915#4077]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-18/igt at prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][367] ([i915#3708] / [i915#4077]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-7/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-write-hang: - shard-dg1: NOTRUN -> [SKIP][368] ([i915#3708]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-14/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#9917]) +2 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-10/igt at sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][370] ([i915#9917]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1: - shard-tglu: NOTRUN -> [FAIL][371] ([i915#12910]) +19 other tests fail [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-10/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1.html #### Possible fixes #### * igt at gem_eio@in-flight-suspend: - shard-rkl: [DMESG-WARN][372] ([i915#12964]) -> [PASS][373] +39 other tests pass [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-7/igt at gem_eio@in-flight-suspend.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@kms: - shard-tglu: [DMESG-WARN][374] ([i915#13363]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-tglu-2/igt at gem_eio@kms.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-4/igt at gem_eio@kms.html * igt at i915_module_load@reload-with-fault-injection: - shard-glk: [ABORT][376] -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk8/igt at i915_module_load@reload-with-fault-injection.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk2/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rpm@debugfs-forcewake-user: - shard-dg1: [DMESG-WARN][378] ([i915#4423]) -> [PASS][379] +1 other test pass [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-18/igt at i915_pm_rpm@debugfs-forcewake-user.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-17/igt at i915_pm_rpm@debugfs-forcewake-user.html * igt at i915_pm_rpm@debugfs-read: - shard-rkl: [SKIP][380] -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-5/igt at i915_pm_rpm@debugfs-read.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at i915_pm_rpm@debugfs-read.html * igt at kms_cursor_crc@cursor-offscreen-256x256 at pipe-c-hdmi-a-1: - shard-glk: [DMESG-FAIL][382] ([i915#118]) -> [PASS][383] +1 other test pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk8/igt at kms_cursor_crc@cursor-offscreen-256x256 at pipe-c-hdmi-a-1.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk2/igt at kms_cursor_crc@cursor-offscreen-256x256 at pipe-c-hdmi-a-1.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][384] ([i915#2346]) -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk1/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-glk9/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [FAIL][386] ([i915#2346]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-snb2/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-snb: [FAIL][388] ([i915#11989]) -> [PASS][389] +1 other test pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-snb2/igt at kms_flip@2x-plain-flip-ts-check.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-snb7/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@flip-vs-suspend: - shard-rkl: [DMESG-FAIL][390] ([i915#12964]) -> [PASS][391] +4 other tests pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-1/igt at kms_flip@flip-vs-suspend.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-5/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@plain-flip-fb-recreate at a-edp1: - shard-mtlp: [FAIL][392] ([i915#11989]) -> [PASS][393] +7 other tests pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-6/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-7/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html * igt at kms_hdr@static-swap: - shard-dg2: [SKIP][394] ([i915#3555] / [i915#8228]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-8/igt at kms_hdr@static-swap.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-10/igt at kms_hdr@static-swap.html * igt at kms_plane_scaling@intel-max-src-size: - shard-tglu: [FAIL][396] ([i915#8292]) -> [PASS][397] +1 other test pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-tglu-2/igt at kms_plane_scaling@intel-max-src-size.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-10/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][398] ([i915#9519]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-7/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-1/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at perf_pmu@busy-double-start at rcs0: - shard-mtlp: [FAIL][400] ([i915#4349]) -> [PASS][401] +4 other tests pass [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-1/igt at perf_pmu@busy-double-start at rcs0.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-8/igt at perf_pmu@busy-double-start at rcs0.html * igt at perf_pmu@busy-double-start at vecs0: - shard-dg1: [FAIL][402] ([i915#4349]) -> [PASS][403] +5 other tests pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-12/igt at perf_pmu@busy-double-start at vecs0.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-17/igt at perf_pmu@busy-double-start at vecs0.html * igt at perf_pmu@most-busy-check-all: - shard-rkl: [FAIL][404] ([i915#4349]) -> [PASS][405] +1 other test pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-4/igt at perf_pmu@most-busy-check-all.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-6/igt at perf_pmu@most-busy-check-all.html #### Warnings #### * igt at gem_pxp@display-protected-crc: - shard-rkl: [SKIP][406] ([i915#4270]) -> [TIMEOUT][407] ([i915#12917] / [i915#12964]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-3/igt at gem_pxp@display-protected-crc.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-4/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-rkl: [TIMEOUT][408] ([i915#12917] / [i915#12964]) -> [SKIP][409] ([i915#4270]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-3/igt at gem_pxp@verify-pxp-stale-buf-optout-execution.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-3/igt at gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][410] ([i915#12817] / [i915#9820]) -> [DMESG-WARN][411] ([i915#13475]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-tglu-8/igt at i915_module_load@reload-with-fault-injection.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-tglu-4/igt at i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][412] ([i915#10131] / [i915#13493]) -> [ABORT][413] ([i915#10131] / [i915#10887] / [i915#13493]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-4/igt at i915_module_load@reload-with-fault-injection.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-5/igt at i915_module_load@reload-with-fault-injection.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg1: [SKIP][414] ([i915#4538]) -> [SKIP][415] ([i915#4423] / [i915#4538]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-14/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-17/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_content_protection@mei-interface: - shard-dg1: [SKIP][416] ([i915#9433]) -> [SKIP][417] ([i915#9424]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-13/igt at kms_content_protection@mei-interface.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-17/igt at kms_content_protection@mei-interface.html * igt at kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-dg1: [SKIP][418] ([i915#8708]) -> [SKIP][419] ([i915#4423] / [i915#8708]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-18/igt at kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-12/igt at kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [SKIP][420] ([i915#3458]) -> [SKIP][421] ([i915#10433] / [i915#3458]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][422] ([i915#9519]) -> [SKIP][423] ([i915#12916]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-7/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-rkl-5/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_psr@fbc-pr-suspend: - shard-dg1: [SKIP][424] ([i915#1072] / [i915#9732]) -> [SKIP][425] ([i915#1072] / [i915#4423] / [i915#9732]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-18/igt at kms_psr@fbc-pr-suspend.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-dg1-14/igt at kms_psr@fbc-pr-suspend.html * igt at kms_psr@psr2-primary-mmap-gtt at edp-1: - shard-mtlp: [FAIL][426] -> [SKIP][427] ([i915#4077] / [i915#9688]) +1 other test skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-7/igt at kms_psr@psr2-primary-mmap-gtt at edp-1.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/shard-mtlp-3/igt at kms_psr@psr2-primary-mmap-gtt at edp-1.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#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030 [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [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#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12426/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From oak.zeng at intel.com Tue Jan 14 17:35:23 2025 From: oak.zeng at intel.com (Oak Zeng) Date: Tue, 14 Jan 2025 12:35:23 -0500 Subject: [i-g-t] tests/intel-ci: Fix a syntax err in xe.blocklist.txt Message-ID: <20250114173523.3267049-1-oak.zeng@intel.com> The syntax in below lines are wrong: igt at xe_evict@*-multi-vm-cm* igt at xe_evict@*-threads-* With above, those xe_evict tests are not blacklisted from xe.ci.full category. Fix the issue by adding a dot (.) preceding star (*). Signed-off-by: Oak Zeng Cc: Thomas Hellstr?m --- tests/intel-ci/xe.blocklist.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt index a9b647c1d..fc270198f 100644 --- a/tests/intel-ci/xe.blocklist.txt +++ b/tests/intel-ci/xe.blocklist.txt @@ -93,7 +93,7 @@ igt at sriov_basic@bind-unbind-vf$ # Exclude xe_evict tests that are not expected to succeed # due to missing TTM exhaustive eviction ################################################################## -igt at xe_evict@*-multi-vm-cm* -igt at xe_evict@*-threads-* -# igt at xe_evict@*-cm* # Rebind and VM_BIND may race. +igt at xe_evict@.*-multi-vm-cm.* +igt at xe_evict@.*-threads-.* +# igt at xe_evict@.*-cm.* # Rebind and VM_BIND may race. ################################################################## -- 2.26.3 From patchwork at emeril.freedesktop.org Tue Jan 14 18:17:42 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 14 Jan 2025 18:17:42 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Add_xe=5Fsriov=5Fauto=5Fp?= =?utf-8?q?rovisioning_tests_=28rev2=29?= In-Reply-To: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> References: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> Message-ID: <173687866230.3677815.8404050260907059744@b555e5b46a47> == Series Details == Series: Add xe_sriov_auto_provisioning tests (rev2) URL : https://patchwork.freedesktop.org/series/142781/ State : success == Summary == CI Bug Log - changes from IGT_8190 -> IGTPW_12436 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/index.html Participating hosts (42 -> 41) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12436 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at dmabuf@all-tests: - bat-apl-1: [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-apl-1/igt at dmabuf@all-tests.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/bat-apl-1/igt at dmabuf@all-tests.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_8190/bat-arlh-3/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/bat-arlh-3/igt at i915_selftest@live at workarounds.html - bat-arls-5: [PASS][5] -> [DMESG-FAIL][6] ([i915#13393]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-arls-5/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/bat-arls-5/igt at i915_selftest@live at workarounds.html - bat-adlp-11: [PASS][7] -> [INCOMPLETE][8] ([i915#9413]) +1 other test incomplete [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-adlp-11/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/bat-adlp-11/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_8190/bat-arlh-2/igt at i915_selftest@live at workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/bat-arlh-2/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#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8190 -> IGTPW_12436 * Linux: CI_DRM_15951 -> CI_DRM_15952 CI-20190529: 20190529 CI_DRM_15951: 1c464719f6d86a08c91e6ed5d64db83b166788db @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15952: 87f85ad359b495789479da823858bcde76874d2e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12436: 531755dd4679b3817c346c593b76e2f4cf299d2e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8190: db6e252e00bc44f90b678d547e93b3f02c02c6de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 14 18:24:12 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 14 Jan 2025 18:24:12 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Add_xe=5Fsriov=5Fauto=5Fpro?= =?utf-8?q?visioning_tests_=28rev2=29?= In-Reply-To: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> References: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> Message-ID: <173687905275.3682296.8082659686532353305@b555e5b46a47> == Series Details == Series: Add xe_sriov_auto_provisioning tests (rev2) URL : https://patchwork.freedesktop.org/series/142781/ State : success == Summary == CI Bug Log - changes from XEIGT_8190_BAT -> XEIGTPW_12436_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12436_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][3] ([Intel XE#1192]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html * igt at xe_pat@pat-index-xelp at render: - bat-adlp-vf: [DMESG-WARN][5] ([Intel XE#3970]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html * igt at xe_vm@munmap-style-unbind-end: - bat-adlp-vf: [DMESG-WARN][7] ([Intel XE#3958]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_vm@munmap-style-unbind-end.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/bat-adlp-vf/igt at xe_vm@munmap-style-unbind-end.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][9] ([Intel XE#1192]) -> [SKIP][10] ([Intel XE#2229] / [Intel XE#455]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8190 -> IGTPW_12436 * Linux: xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db -> xe-2484-87f85ad359b495789479da823858bcde76874d2e IGTPW_12436: 531755dd4679b3817c346c593b76e2f4cf299d2e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8190: db6e252e00bc44f90b678d547e93b3f02c02c6de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db: 1c464719f6d86a08c91e6ed5d64db83b166788db xe-2484-87f85ad359b495789479da823858bcde76874d2e: 87f85ad359b495789479da823858bcde76874d2e == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 14 20:38:47 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 14 Jan 2025 20:38:47 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/intel-ci=3A_Fix_a_s?= =?utf-8?q?yntax_err_in_xe=2Eblocklist=2Etxt?= In-Reply-To: <20250114173523.3267049-1-oak.zeng@intel.com> References: <20250114173523.3267049-1-oak.zeng@intel.com> Message-ID: <173688712763.3713660.12561336947824162547@b555e5b46a47> == Series Details == Series: tests/intel-ci: Fix a syntax err in xe.blocklist.txt URL : https://patchwork.freedesktop.org/series/143518/ State : success == Summary == CI Bug Log - changes from IGT_8190 -> IGTPW_12437 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/index.html Participating hosts (42 -> 41) ------------------------------ Additional (1): fi-blb-e6850 Missing (2): fi-snb-2520m fi-elk-e7500 Known issues ------------ Here are the changes found in IGTPW_12437 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_pm_rpm@module-reload: - fi-blb-e6850: NOTRUN -> [SKIP][1] +33 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/fi-blb-e6850/igt at i915_pm_rpm@module-reload.html #### Possible fixes #### * igt at i915_module_load@load: - {bat-mtlp-9}: [DMESG-WARN][2] ([i915#13494]) -> [PASS][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-mtlp-9/igt at i915_module_load@load.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/bat-mtlp-9/igt at i915_module_load@load.html * igt at i915_module_load@reload: - bat-apl-1: [DMESG-WARN][4] ([i915#11621] / [i915#180] / [i915#1982]) -> [PASS][5] +4 other tests pass [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-apl-1/igt at i915_module_load@reload.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/bat-apl-1/igt at i915_module_load@reload.html * igt at i915_selftest@live at sanitycheck: - bat-apl-1: [DMESG-WARN][6] ([i915#11621]) -> [PASS][7] +79 other tests pass [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-apl-1/igt at i915_selftest@live at sanitycheck.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/bat-apl-1/igt at i915_selftest@live at sanitycheck.html * igt at i915_selftest@live at workarounds: - bat-arlh-2: [DMESG-FAIL][8] ([i915#13393]) -> [PASS][9] +1 other test pass [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-arlh-2/igt at i915_selftest@live at workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/bat-arlh-2/igt at i915_selftest@live at workarounds.html * igt at kms_pm_rpm@basic-pci-d3-state: - bat-apl-1: [DMESG-WARN][10] ([i915#11621] / [i915#180]) -> [PASS][11] +44 other tests pass [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-apl-1/igt at kms_pm_rpm@basic-pci-d3-state.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/bat-apl-1/igt at kms_pm_rpm@basic-pci-d3-state.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8190 -> IGTPW_12437 * Linux: CI_DRM_15951 -> CI_DRM_15955 CI-20190529: 20190529 CI_DRM_15951: 1c464719f6d86a08c91e6ed5d64db83b166788db @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15955: 61e0f64bde73d48e3dc204c129c25e0a15f0d4e6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12437: 0f59ba31e7b6259cc30403659f79160c707f737d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8190: db6e252e00bc44f90b678d547e93b3f02c02c6de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Tue Jan 14 20:44:10 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Tue, 14 Jan 2025 21:44:10 +0100 Subject: [i-g-t] tests/intel-ci: Fix a syntax err in xe.blocklist.txt In-Reply-To: <20250114173523.3267049-1-oak.zeng@intel.com> References: <20250114173523.3267049-1-oak.zeng@intel.com> Message-ID: <20250114204410.czxnygsqcn4vtqwj@kamilkon-desk.igk.intel.com> Hi Oak, On 2025-01-14 at 12:35:23 -0500, Oak Zeng wrote: > The syntax in below lines are wrong: > > igt at xe_evict@*-multi-vm-cm* > igt at xe_evict@*-threads-* > > With above, those xe_evict tests are not blacklisted from xe.ci.full category. > > Fix the issue by adding a dot (.) preceding star (*). Good catch! Acked-by: Kamil Konieczny > > Signed-off-by: Oak Zeng > Cc: Thomas Hellstr?m > --- > tests/intel-ci/xe.blocklist.txt | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt > index a9b647c1d..fc270198f 100644 > --- a/tests/intel-ci/xe.blocklist.txt > +++ b/tests/intel-ci/xe.blocklist.txt > @@ -93,7 +93,7 @@ igt at sriov_basic@bind-unbind-vf$ > # Exclude xe_evict tests that are not expected to succeed > # due to missing TTM exhaustive eviction > ################################################################## > -igt at xe_evict@*-multi-vm-cm* > -igt at xe_evict@*-threads-* > -# igt at xe_evict@*-cm* # Rebind and VM_BIND may race. > +igt at xe_evict@.*-multi-vm-cm.* > +igt at xe_evict@.*-threads-.* > +# igt at xe_evict@.*-cm.* # Rebind and VM_BIND may race. > ################################################################## > -- > 2.26.3 > From patchwork at emeril.freedesktop.org Tue Jan 14 20:48:03 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 14 Jan 2025 20:48:03 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/xe=5Feudebug=5Fonl?= =?utf-8?q?ine=3A_correct_calculate_the_time_diff?= In-Reply-To: <20250110153455.2791158-1-maciej.patelczyk@intel.com> References: <20250110153455.2791158-1-maciej.patelczyk@intel.com> Message-ID: <173688768329.3715442.15657091253461773059@b555e5b46a47> == Series Details == Series: tests/xe_eudebug_online: correct calculate the time diff URL : https://patchwork.freedesktop.org/series/143401/ State : failure == Summary == CI Bug Log - changes from IGT_8188_full -> IGTPW_12427_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12427_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12427_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_12427/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12427_full: ### IGT changes ### #### Possible regressions #### * igt at i915_selftest@live: - shard-rkl: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-1/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-4/igt at i915_selftest@live.html * igt at kms_flip@flip-vs-fences-interruptible at a-vga1: - shard-snb: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb2/igt at kms_flip@flip-vs-fences-interruptible at a-vga1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb2/igt at kms_flip@flip-vs-fences-interruptible at a-vga1.html * igt at kms_pm_dc@dc5-psr: - shard-mtlp: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-6/igt at kms_pm_dc@dc5-psr.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@fences-dpms: - shard-rkl: [PASS][7] -> [SKIP][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-3/igt at kms_pm_rpm@fences-dpms.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt at kms_pm_rpm@fences-dpms.html * igt at kms_setmode@basic at pipe-a-hdmi-a-1: - shard-glk: [PASS][9] -> [FAIL][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk4/igt at kms_setmode@basic at pipe-a-hdmi-a-1.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk7/igt at kms_setmode@basic at pipe-a-hdmi-a-1.html Known issues ------------ Here are the changes found in IGTPW_12427_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/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]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at device_reset@cold-reset-bound.html * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +6 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-4/igt at drm_fdinfo@busy-idle at vecs0.html * igt at drm_fdinfo@most-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8414]) +7 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt at drm_fdinfo@most-busy-check-all.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +8 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at gem_ccs@block-copy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-10/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-2/igt at gem_ccs@ctrl-surf-copy.html - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-7/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg2: [PASS][20] -> [INCOMPLETE][21] ([i915#7297]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-7/igt at gem_ccs@suspend-resume.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][22] -> [INCOMPLETE][23] ([i915#12392] / [i915#7297]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-7/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-lmem0-lmem0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-lmem0-lmem0.html * igt at gem_ctx_freq@sysfs: - shard-dg2: NOTRUN -> [FAIL][24] ([i915#9561]) +1 other test fail [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt at gem_ctx_freq@sysfs.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][25] ([i915#12353]) +1 other test incomplete [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk1/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-4/igt at gem_ctx_persistence@hang.html * igt at gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at gem_ctx_persistence@heartbeat-close.html * igt at gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#8555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt at gem_ctx_persistence@heartbeat-many.html * igt at gem_ctx_persistence@legacy-engines-persistence: - shard-snb: NOTRUN -> [SKIP][29] ([i915#1099]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb7/igt at gem_ctx_persistence@legacy-engines-persistence.html * igt at gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][30] ([i915#280]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-7/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-4/igt at gem_ctx_sseu@invalid-args.html - shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at gem_ctx_sseu@invalid-args.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_12427/shard-dg2-10/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][35] ([i915#10030] / [i915#7975] / [i915#8213]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt at gem_eio@hibernate.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][36] ([i915#13390]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk9/igt at gem_eio@in-flight-suspend.html * igt at gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4771]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-11/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@parallel-keep-in-fence: - shard-tglu: NOTRUN -> [SKIP][38] ([i915#4525]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-2/igt at gem_exec_balancer@parallel-keep-in-fence.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#4525]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt at gem_exec_fence@submit.html * igt at gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt at gem_exec_fence@submit67.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt at gem_exec_flush@basic-wb-pro-default.html * igt at gem_exec_parallel@engines: - shard-rkl: NOTRUN -> [DMESG-WARN][45] ([i915#12964]) +9 other tests dmesg-warn [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-4/igt at gem_exec_parallel@engines.html * igt at gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#5107]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-3/igt at gem_exec_reloc@basic-cpu-read-noreloc.html * igt at gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#3281]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-7/igt at gem_exec_reloc@basic-gtt-cpu-active.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +6 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +12 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt at gem_exec_reloc@basic-write-gtt.html * igt at gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt at gem_exec_schedule@semaphore-power.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: [PASS][52] -> [ABORT][53] ([i915#7975] / [i915#8213]) +1 other test abort [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-17/igt at gem_exec_suspend@basic-s4-devices at lmem0.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt at gem_fence_thrash@bo-write-verify-threaded-none.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4860]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-tglu-1: NOTRUN -> [SKIP][57] ([i915#4613] / [i915#7582]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-verify-multi: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt at gem_lmem_swapping@heavy-verify-multi.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@smem-oom: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at gem_lmem_swapping@smem-oom.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: [PASS][61] -> [TIMEOUT][62] ([i915#5493]) +1 other test timeout [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-11/igt at gem_lmem_swapping@smem-oom at lmem0.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][63] ([i915#4613]) +8 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk3/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#12193]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/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][65] ([i915#4565]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_madvise@dontneed-before-pwrite: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3282]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-6/igt at gem_madvise@dontneed-before-pwrite.html * igt at gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#284]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt at gem_media_vme.html - shard-tglu: NOTRUN -> [SKIP][68] ([i915#284]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt at gem_media_vme.html * igt at gem_mmap_gtt@basic-small-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4077]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-3/igt at gem_mmap_gtt@basic-small-copy-xy.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) +7 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt at gem_mmap_wc@write-prefaulted.html - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4083]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-6/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4083]) +5 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt at gem_mmap_wc@write-read.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) +4 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt at gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][74] ([i915#2658]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt at gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk6/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +8 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at gem_pread@snoop.html * igt at gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][77] ([i915#2658]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb5/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-1/igt at gem_pwrite_snooped.html * igt at gem_pxp@display-protected-crc: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4270]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4270]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html * igt at gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: NOTRUN -> [TIMEOUT][81] ([i915#12917] / [i915#12964]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt at gem_pxp@reject-modify-context-protection-off-1.html * igt at gem_render_copy@linear-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#5190] / [i915#8428]) +11 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-11/igt at gem_render_copy@linear-to-vebox-yf-tiled.html * igt at gem_render_copy@y-tiled-ccs-to-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#8428]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-1/igt at gem_render_copy@y-tiled-ccs-to-y-tiled.html * igt at gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4079]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at gem_render_tiled_blits@basic.html * igt at gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4077]) +13 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt at gem_tiled_partial_pwrite_pread@writes.html * igt at gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4077]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt at gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-4/igt at gem_userptr_blits@create-destroy-unsync.html - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297]) +6 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3282] / [i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-3/igt at gem_userptr_blits@map-fixed-invalidate-busy.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#4880]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4880]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@readonly-unsync: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#3297]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-9/igt at gem_userptr_blits@readonly-unsync.html * igt at gem_userptr_blits@relocations: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3281] / [i915#3297]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4958]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#3297]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][98] +13 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#2856]) +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt at gen9_exec_parse@allowed-all.html * igt at gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-7/igt at gen9_exec_parse@batch-invalid-length.html * igt at gen9_exec_parse@bb-large: - shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at gen9_exec_parse@bb-large.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@unaligned-access: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#2856]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-8/igt at gen9_exec_parse@unaligned-access.html * igt at gen9_exec_parse@unaligned-jump: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#2527]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt at gen9_exec_parse@unaligned-jump.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][105] -> [ABORT][106] ([i915#9820]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at i915_module_load@reload-with-fault-injection.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt at i915_module_load@reload-with-fault-injection.html - shard-snb: NOTRUN -> [ABORT][107] ([i915#9820]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb5/igt at i915_module_load@reload-with-fault-injection.html - shard-tglu: NOTRUN -> [ABORT][108] ([i915#12817] / [i915#9820]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-7/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#7178]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt at i915_module_load@resize-bar.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_12427/shard-dg2-10/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-tglu-1: NOTRUN -> [WARN][111] ([i915#2681]) +4 other tests warn [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rpm@system-suspend: - shard-glk: [PASS][112] -> [INCOMPLETE][113] ([i915#12797]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk1/igt at i915_pm_rpm@system-suspend.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk3/igt at i915_pm_rpm@system-suspend.html * igt at i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#11681] / [i915#6621]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#11681]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt at i915_pm_rps@thresholds-idle.html - shard-dg1: NOTRUN -> [SKIP][116] ([i915#11681]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt at i915_pm_rps@thresholds-idle.html * igt at i915_power@sanity: - shard-mtlp: [PASS][117] -> [SKIP][118] ([i915#7984]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-8/igt at i915_power@sanity.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-1/igt at i915_power@sanity.html * igt at i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#6245]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-4/igt at i915_query@hwconfig_table.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [PASS][120] -> [DMESG-FAIL][121] ([i915#13393]) +1 other test dmesg-fail [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-7/igt at i915_selftest@live at workarounds.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt at i915_selftest@live at workarounds.html * igt at i915_selftest@mock: - shard-tglu: NOTRUN -> [DMESG-WARN][122] ([i915#9311]) +1 other test dmesg-warn [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt at i915_selftest@mock.html * igt at kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4212]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at kms_addfb_basic@addfb25-x-tiled-legacy.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4212]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-8/igt at kms_addfb_basic@basic-x-tiled-legacy.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][125] ([i915#8709]) +15 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/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 at pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#8709]) +11 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-3-4-mc-ccs.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#9531]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][128] ([i915#9531]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][129] ([i915#1769]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb2/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][130] ([i915#1769] / [i915#3555]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#1769] / [i915#3555]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-edp-1: - shard-mtlp: [PASS][132] -> [FAIL][133] ([i915#11808] / [i915#5956]) +1 other test fail [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-6/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-edp-1.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-8/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-edp-1.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538] / [i915#5286]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#5286]) +4 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-8/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: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#5286]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#3638]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#5190]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5190]) +13 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6187]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#12313]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-2/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#10307] / [i915#6095]) +176 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-3.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#6095]) +59 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-8/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-basic-y-tiled-ccs: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#6095]) +44 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#6095]) +19 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/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-suspend-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#6095]) +57 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/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-dg2: NOTRUN -> [SKIP][148] ([i915#12805]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][149] ([i915#12805]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#6095]) +17 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-c-hdmi-a-3.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#12313]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#12313]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#12313]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][154] ([i915#12313]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-7/igt at kms_ccs@random-ccs-data-4-tiled-lnl-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]) +141 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +4 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +13 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-2/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-2/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +4 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt at kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#3555] / [i915#9979]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_content_protection@atomic.html - shard-dg2: NOTRUN -> [SKIP][164] ([i915#7118] / [i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3299]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/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][166] ([i915#3116] / [i915#3299]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt at kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3299]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#6944] / [i915#9424]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-2/igt at kms_content_protection@lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][169] ([i915#9424]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-11/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#9424]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#9424]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#6944] / [i915#7116] / [i915#7118]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent at pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][173] ([i915#1339] / [i915#7173]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at kms_content_protection@uevent at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#13049]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-7/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#13049]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#3555]) +3 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#13049]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#13049]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#13049]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3555]) +7 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-32x32: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-1/igt at kms_cursor_crc@cursor-sliding-32x32.html * igt at kms_cursor_crc@cursor-sliding-64x21: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8814]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-8/igt at kms_cursor_crc@cursor-sliding-64x21.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#4103]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#9809]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-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][185] +6 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-4/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#13046] / [i915#5354]) +6 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][187] ([i915#2346]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk8/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#9067]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/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_12427/shard-dg1-12/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-dg2: NOTRUN -> [SKIP][190] ([i915#4103] / [i915#4213]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-tglu: NOTRUN -> [SKIP][191] ([i915#4103]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#4103]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-2/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#9723]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#1769] / [i915#3555] / [i915#3804]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-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-1: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#3804]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1.html * igt at kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#3555]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt at kms_dither@fb-8bpc-vs-panel-8bpc.html * igt at kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#1257]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt at kms_dp_aux_dev.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#8812]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#8812]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#3840]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#3840] / [i915#9688]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt at kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][202] ([i915#3840]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#3840]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#3840]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3469]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3955]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-7/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#9337]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-1/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#658]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][209] ([i915#658]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt at kms_feature_discovery@psr1.html * igt at kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#4881]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt at kms_fence_pin_leak.html - shard-dg2: NOTRUN -> [SKIP][211] ([i915#4881]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-blocking-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#9934]) +4 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt at kms_flip@2x-blocking-wf_vblank.html * igt at kms_flip@2x-flip-vs-fences: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#3637]) +4 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-rmfb: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3637]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt at kms_flip@2x-flip-vs-rmfb.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3637]) +4 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-8/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-dg2: NOTRUN -> [SKIP][216] ([i915#9934]) +10 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#9934]) +4 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-6/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html - shard-glk: [PASS][218] -> [FAIL][219] ([i915#11989]) +3 other tests fail [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk8/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk7/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-dg1: [PASS][220] -> [DMESG-WARN][221] ([i915#4423]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-17/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1: - shard-mtlp: [PASS][222] -> [FAIL][223] ([i915#11989]) +1 other test fail [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-4/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-2/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html * igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][224] ([i915#11989]) +4 other tests fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a2.html * igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1: - shard-tglu: [PASS][225] -> [FAIL][226] ([i915#11989]) +5 other tests fail [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-9/igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-7/igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a1: - shard-glk: NOTRUN -> [FAIL][227] ([i915#13027]) +3 other tests fail [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk6/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a1.html * igt at kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#8381]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-rkl: [PASS][229] -> [DMESG-FAIL][230] ([i915#12964]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-4/igt at kms_flip@flip-vs-suspend-interruptible.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a2: - shard-rkl: NOTRUN -> [DMESG-FAIL][231] ([i915#12964]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a2.html * igt at kms_flip@plain-flip-fb-recreate: - shard-rkl: [PASS][232] -> [FAIL][233] ([i915#11989]) +1 other test fail [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-4/igt at kms_flip@plain-flip-fb-recreate.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/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][235] ([i915#2587] / [i915#2672]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/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 at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#2587] / [i915#2672]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/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][237] ([i915#2672] / [i915#3555]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555] / [i915#8813]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-7/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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#8813]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555] / [i915#5190]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#2672]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#2587] / [i915#2672] / [i915#3555]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-8/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: NOTRUN -> [SKIP][243] ([i915#2587] / [i915#2672]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-8/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-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#3555]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#8810] / [i915#8813]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-2/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8810]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-2/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [PASS][247] -> [FAIL][248] ([i915#6880]) +1 other test fail [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#1825]) +10 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][250] +24 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt: - shard-snb: [PASS][251] -> [SKIP][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb2/igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][253] +53 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#5354]) +34 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-11/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#1825]) +7 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#8708]) +33 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#10055]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#9766]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#3458]) +22 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#8708]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-1/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#3023]) +11 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-7/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#8708]) +15 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#3458]) +11 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_hdr@bpc-switch: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8228]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt at kms_hdr@bpc-switch-suspend.html - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#12713]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt at kms_hdr@static-swap.html * igt at kms_joiner@basic-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#10656]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][271] ([i915#10656]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#12394]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_joiner@basic-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][273] ([i915#12394]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#12339]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-2/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#12388]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_panel_fitting@legacy: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#6301]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][277] ([i915#13409] / [i915#13476]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk6/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#13046] / [i915#5354] / [i915#9423]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@intel-max-src-size: - shard-glk: [PASS][279] -> [SKIP][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk7/igt at kms_plane_scaling@intel-max-src-size.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk6/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#12247]) +9 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-8/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#12247] / [i915#9423]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/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-a: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#12247]) +4 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#12247]) +8 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#12247]) +19 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/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-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#12247] / [i915#6953]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/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][288] ([i915#12247] / [i915#6953]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-6/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][289] ([i915#12247]) +3 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-6/igt at kms_plane_scaling@planes-downscale-factor-0-5 at pipe-b.html * igt at kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#5354]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#9812]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-2/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_12427/shard-tglu-9/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#9812]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#3828]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_rpm@basic-rte: - shard-dg2: [PASS][295] -> [INCOMPLETE][296] ([i915#10553]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-3/igt at kms_pm_rpm@basic-rte.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt at kms_pm_rpm@basic-rte.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#9519]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-8/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#9519]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@pm-tiling: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#12916]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-1/igt at kms_pm_rpm@pm-tiling.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][300] ([i915#10553]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk9/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#6524] / [i915#6805]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][302] ([i915#11520]) +10 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk7/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-fully-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#9808]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-1/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-fully-sf at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#12316]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-1/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf at pipe-b-edp-1.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#11520]) +5 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/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][306] ([i915#11520]) +7 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb2/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][307] ([i915#11520]) +7 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#11520]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-2/igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#11520]) +5 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#11520]) +11 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-11/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#9683]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][312] ([i915#9683]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-9/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#9683]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-no-drrs: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#1072] / [i915#9732]) +6 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-2/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#1072] / [i915#9732]) +24 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt at kms_psr@fbc-pr-primary-mmap-gtt.html * igt at kms_psr@fbc-psr2-basic: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#1072] / [i915#9732]) +10 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt at kms_psr@fbc-psr2-basic.html * igt at kms_psr@pr-no-drrs: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#9688]) +4 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-7/igt at kms_psr@pr-no-drrs.html * igt at kms_psr@psr-sprite-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#9732]) +11 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_psr@psr-sprite-mmap-cpu.html * igt at kms_psr@psr2-primary-render: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#9732]) +17 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-7/igt at kms_psr@psr2-primary-render.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][320] +429 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk8/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#9685]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][322] ([i915#9685]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#12755]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#4235]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-11/igt at kms_rotation_crc@exhaust-fences.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][325] ([i915#5289]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-10/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][326] ([i915#5289]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#5289]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/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: NOTRUN -> [SKIP][328] ([i915#12755] / [i915#5190]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-snb: NOTRUN -> [SKIP][329] +450 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb5/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#3555]) +3 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][331] ([i915#13179]) +1 other test abort [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk7/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@basic: - shard-tglu: [PASS][332] -> [FAIL][333] ([i915#5465]) +2 other tests fail [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-7/igt at kms_setmode@basic.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt at kms_setmode@basic.html * igt at kms_setmode@basic at pipe-a-hdmi-a-2: - shard-glk: [PASS][334] -> [FAIL][335] ([i915#5465]) +5 other tests fail [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk4/igt at kms_setmode@basic at pipe-a-hdmi-a-2.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk7/igt at kms_setmode@basic at pipe-a-hdmi-a-2.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-mtlp: [PASS][336] -> [FAIL][337] ([i915#5465]) +2 other tests fail [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-6/igt at kms_setmode@basic at pipe-b-edp-1.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-7/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#8623]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-8/igt at kms_tiled_display@basic-test-pattern.html - shard-glk: NOTRUN -> [FAIL][339] ([i915#10959]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk5/igt at kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][340] ([i915#8623]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/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: NOTRUN -> [INCOMPLETE][341] ([i915#12276]) +2 other tests incomplete [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk4/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html * igt at kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#3555] / [i915#8808]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-2/igt at kms_vrr@flipline.html * igt at kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#11920]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt at kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][344] ([i915#11920]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-8/igt at kms_vrr@lobf.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-tglu-1: NOTRUN -> [SKIP][345] ([i915#9906]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#2437]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt at kms_writeback@writeback-check-output.html - shard-tglu-1: NOTRUN -> [SKIP][347] ([i915#2437]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt at kms_writeback@writeback-check-output.html - shard-glk: NOTRUN -> [SKIP][348] ([i915#2437]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk9/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#2437] / [i915#9412]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-11/igt at kms_writeback@writeback-check-output-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][350] ([i915#2437] / [i915#9412]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg1: NOTRUN -> [SKIP][351] ([i915#2437] / [i915#9412]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][352] +7 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#7387]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt at perf@global-sseu-config-invalid.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#2434]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt at perf@mi-rpc.html * igt at perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][355] ([i915#9100]) +1 other test fail [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at perf@non-zero-reason.html * igt at perf@polling at 0-rcs0: - shard-rkl: [PASS][356] -> [DMESG-WARN][357] ([i915#12964]) +41 other tests dmesg-warn [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-3/igt at perf@polling at 0-rcs0.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-1/igt at perf@polling at 0-rcs0.html * igt at perf_pmu@frequency at gt0: - shard-dg2: NOTRUN -> [FAIL][358] ([i915#12549] / [i915#6806]) +1 other test fail [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@semaphore-busy at bcs0: - shard-mtlp: [PASS][359] -> [FAIL][360] ([i915#4349]) +5 other tests fail [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-4/igt at perf_pmu@semaphore-busy at bcs0.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt at perf_pmu@semaphore-busy at bcs0.html * igt at perf_pmu@semaphore-busy at vcs1: - shard-dg1: [PASS][361] -> [FAIL][362] ([i915#4349]) +3 other tests fail [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at perf_pmu@semaphore-busy at vcs1.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt at perf_pmu@semaphore-busy at vcs1.html * igt at prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][363] ([i915#3708] / [i915#4077]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-6/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#3291] / [i915#3708]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][365] +80 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-2/igt at prime_vgem@fence-write-hang.html - shard-dg2: NOTRUN -> [SKIP][366] ([i915#3708]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][367] ([i915#12910]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-9/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg1: NOTRUN -> [SKIP][368] ([i915#9917]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt at gem_ctx_isolation@preservation-s3: - shard-rkl: [DMESG-FAIL][369] ([i915#12964]) -> [PASS][370] +2 other tests pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-2/igt at gem_ctx_isolation@preservation-s3.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-7/igt at gem_ctx_isolation@preservation-s3.html * igt at gem_ctx_isolation@preservation-s3 at vecs1: - shard-dg2: [INCOMPLETE][371] ([i915#12353]) -> [PASS][372] +1 other test pass [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-5/igt at gem_ctx_isolation@preservation-s3 at vecs1.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt at gem_ctx_isolation@preservation-s3 at vecs1.html * igt at gem_exec_big@single: - shard-tglu: [ABORT][373] ([i915#11713]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-2/igt at gem_exec_big@single.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-10/igt at gem_exec_big@single.html * igt at gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][375] -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-10/igt at gem_tiled_swapping@non-threaded.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-9/igt at gem_tiled_swapping@non-threaded.html * igt at i915_pm_rc6_residency@rc6-idle: - shard-dg1: [FAIL][377] ([i915#3591]) -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt at i915_pm_rc6_residency@rc6-idle.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: [FAIL][379] ([i915#12739] / [i915#3591]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html * igt at i915_pm_rpm@gem-mmap-type: - shard-rkl: [SKIP][381] ([i915#13328]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-5/igt at i915_pm_rpm@gem-mmap-type.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt at i915_pm_rpm@gem-mmap-type.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: [INCOMPLETE][383] ([i915#12761]) -> [PASS][384] +1 other test pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk5/igt at kms_async_flips@async-flip-suspend-resume.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk2/igt at kms_async_flips@async-flip-suspend-resume.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [FAIL][385] ([i915#11808]) -> [PASS][386] +1 other test pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-9/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: [FAIL][387] ([i915#2346]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@torture-move at pipe-b: - shard-rkl: [DMESG-WARN][389] ([i915#12964]) -> [PASS][390] +41 other tests pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-3/igt at kms_cursor_legacy@torture-move at pipe-b.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-4/igt at kms_cursor_legacy@torture-move at pipe-b.html * igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1: - shard-tglu: [FAIL][391] ([i915#11989]) -> [PASS][392] +3 other tests pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-10/igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff: - shard-dg1: [DMESG-WARN][393] ([i915#4391] / [i915#4423]) -> [PASS][394] +1 other test pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-rkl: [DMESG-WARN][395] ([i915#12917] / [i915#12964]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt at kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][397] ([i915#13030]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-4/igt at kms_hdmi_inject@inject-audio.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt at kms_hdmi_inject@inject-audio.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][399] ([i915#12756]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk9/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk6/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][401] ([i915#4281]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-7/igt at kms_pm_dc@dc9-dpms.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [SKIP][403] ([i915#9519]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-1/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][405] ([i915#12276]) -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk3/igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk3/igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1.html * igt at perf_pmu@all-busy-check-all: - shard-dg1: [FAIL][407] -> [PASS][408] [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at perf_pmu@all-busy-check-all.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt at perf_pmu@all-busy-check-all.html - shard-mtlp: [FAIL][409] -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-5/igt at perf_pmu@all-busy-check-all.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt at perf_pmu@all-busy-check-all.html * igt at syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled: - shard-dg1: [DMESG-WARN][411] ([i915#4423]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt at syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled.html #### Warnings #### * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [DMESG-WARN][413] ([i915#5493]) -> [TIMEOUT][414] ([i915#5493]) +1 other test timeout [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at gem_lmem_swapping@smem-oom at lmem0.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: [SKIP][415] ([i915#4270]) -> [TIMEOUT][416] ([i915#12917] / [i915#12964]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-6/igt at gem_pxp@reject-modify-context-protection-off-2.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: [TIMEOUT][417] ([i915#12917] / [i915#12964]) -> [SKIP][418] ([i915#4270]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at gem_pxp@verify-pxp-stale-ctx-execution.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-1/igt at gem_pxp@verify-pxp-stale-ctx-execution.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: [DMESG-WARN][419] ([i915#13475]) -> [ABORT][420] ([i915#13493]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-17/igt at i915_module_load@reload-with-fault-injection.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt at i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][421] ([i915#10131] / [i915#10887] / [i915#13493] / [i915#9820]) -> [DMESG-WARN][422] ([i915#10887] / [i915#13475]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-6/igt at i915_module_load@reload-with-fault-injection.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-8/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rpm@reg-read-ioctl: - shard-rkl: [DMESG-WARN][423] ([i915#12964]) -> [SKIP][424] ([i915#13328]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-4/igt at i915_pm_rpm@reg-read-ioctl.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt at i915_pm_rpm@reg-read-ioctl.html * igt at kms_content_protection@uevent: - shard-dg2: [SKIP][425] ([i915#7118] / [i915#9424]) -> [FAIL][426] ([i915#1339] / [i915#7173]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-7/igt at kms_content_protection@uevent.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at kms_content_protection@uevent.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg1: [SKIP][427] -> [SKIP][428] ([i915#4423]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-17/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: [SKIP][429] ([i915#4423] / [i915#9067]) -> [SKIP][430] ([i915#9067]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-dg1: [SKIP][431] ([i915#4423]) -> [SKIP][432] [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][433] ([i915#10433] / [i915#3458]) -> [SKIP][434] ([i915#3458]) +1 other test skip [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary: - shard-dg2: [SKIP][435] ([i915#3458]) -> [SKIP][436] ([i915#10433] / [i915#3458]) +1 other test skip [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-8/igt at kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt: - shard-dg1: [SKIP][437] ([i915#3458]) -> [SKIP][438] ([i915#3458] / [i915#4423]) +2 other tests skip [437]: https://in == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 14 20:50:55 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 14 Jan 2025 20:50:55 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel-ci=3A_Fix_a_syn?= =?utf-8?q?tax_err_in_xe=2Eblocklist=2Etxt?= In-Reply-To: <20250114173523.3267049-1-oak.zeng@intel.com> References: <20250114173523.3267049-1-oak.zeng@intel.com> Message-ID: <173688785512.3715442.6451859296808479007@b555e5b46a47> == Series Details == Series: tests/intel-ci: Fix a syntax err in xe.blocklist.txt URL : https://patchwork.freedesktop.org/series/143518/ State : success == Summary == CI Bug Log - changes from XEIGT_8190_BAT -> XEIGTPW_12437_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12437_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][3] ([Intel XE#1192]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html * igt at xe_pat@pat-index-xelp at render: - bat-adlp-vf: [DMESG-WARN][5] ([Intel XE#3970]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html * igt at xe_vm@munmap-style-unbind-end: - bat-adlp-vf: [DMESG-WARN][7] ([Intel XE#3958]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_vm@munmap-style-unbind-end.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/bat-adlp-vf/igt at xe_vm@munmap-style-unbind-end.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][9] ([Intel XE#1192]) -> [SKIP][10] ([Intel XE#2229] / [Intel XE#455]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8190 -> IGTPW_12437 * Linux: xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db -> xe-2485-30226b91b1754fdae425af3397c1e3dcba8264b0 IGTPW_12437: 0f59ba31e7b6259cc30403659f79160c707f737d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8190: db6e252e00bc44f90b678d547e93b3f02c02c6de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db: 1c464719f6d86a08c91e6ed5d64db83b166788db xe-2485-30226b91b1754fdae425af3397c1e3dcba8264b0: 30226b91b1754fdae425af3397c1e3dcba8264b0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 14 20:53:49 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 14 Jan 2025 20:53:49 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Add_xe=5Fsriov=5Fauto=5Fpr?= =?utf-8?q?ovisioning_tests_=28rev2=29?= In-Reply-To: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> References: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> Message-ID: <173688802958.3713660.7070908479254221078@b555e5b46a47> == Series Details == Series: Add xe_sriov_auto_provisioning tests (rev2) URL : https://patchwork.freedesktop.org/series/142781/ State : failure == Summary == CI Bug Log - changes from XEIGT_8190_full -> XEIGTPW_12436_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12436_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12436_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_12436_full: ### IGT changes ### #### Possible regressions #### * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-2-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][1] +26 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-432/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-2-4-rc-ccs-cc.html * igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3: - shard-bmg: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-ts-check at bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][4] -> [INCOMPLETE][5] +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_flip@2x-plain-flip-ts-check at bd-hdmi-a6-dp4.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-433/igt at kms_flip@2x-plain-flip-ts-check at bd-hdmi-a6-dp4.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp2: - shard-dg2-set2: NOTRUN -> [ABORT][6] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-432/igt at kms_flip@flip-vs-suspend-interruptible at d-dp2.html * igt at kms_flip@flip-vs-suspend at b-edp1: - shard-lnl: [PASS][7] -> [FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-3/igt at kms_flip@flip-vs-suspend at b-edp1.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-7/igt at kms_flip@flip-vs-suspend at b-edp1.html * igt at kms_pm_rpm@modeset-stress-extra-wait: - shard-bmg: [PASS][9] -> [INCOMPLETE][10] +1 other test incomplete [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_pm_rpm@modeset-stress-extra-wait.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-2/igt at kms_pm_rpm@modeset-stress-extra-wait.html * {igt at xe_sriov_auto_provisioning@fair-allocation} (NEW): - shard-lnl: NOTRUN -> [SKIP][11] +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-8/igt at xe_sriov_auto_provisioning@fair-allocation.html * {igt at xe_sriov_auto_provisioning@resources-released-on-vfs-disabling} (NEW): - shard-bmg: NOTRUN -> [SKIP][12] +2 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-4/igt at xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html New tests --------- New tests have been introduced between XEIGT_8190_full and XEIGTPW_12436_full: ### New IGT tests (4) ### * igt at kms_hdr@static-swap at pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.92] s * igt at xe_sriov_auto_provisioning@exclusive-ranges: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_sriov_auto_provisioning@fair-allocation: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_sriov_auto_provisioning@resources-released-on-vfs-disabling: - Statuses : 3 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12436_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotreplug-lateclose: - shard-lnl: NOTRUN -> [ABORT][13] ([Intel XE#3914]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-5/igt at core_hotunplug@hotreplug-lateclose.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1466]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-4/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][15] -> [FAIL][16] ([Intel XE#827]) +2 other tests fail [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at kms_async_flips@alternate-sync-async-flip.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: NOTRUN -> [FAIL][17] ([Intel XE#3719]) +3 other tests fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * 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][18] ([Intel XE#2550]) +23 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#873]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#3768]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-433/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#316]) +5 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1407]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-6/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1467]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-4/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#610]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/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-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +5 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-3/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: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +13 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1477]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-6/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: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#1124]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-1/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2191]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-5/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#367]) +9 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2191]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#367]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-4/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#455] / [Intel XE#787]) +39 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-432/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs at pipe-d-dp-2.html * igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +6 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-6/igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#787]) +188 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#3432]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-1/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-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#3442]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-dp-2.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#2907]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/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-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2669]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-1/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#1727] / [Intel XE#3124]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/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-rc-ccs at pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][43] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) +1 other test incomplete [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-dp-4.html * igt at kms_chamelium_color@ctm-limited-range: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#306]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-3/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#373]) +17 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at kms_chamelium_hpd@vga-hpd.html - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#373]) +6 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-5/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_color@ctm-signed: - shard-dg2-set2: [PASS][47] -> [SKIP][48] ([Intel XE#2423] / [i915#2575]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_color@ctm-signed.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at kms_color@ctm-signed.html * igt at kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#3278]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-4/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@lic-type-1: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2341]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-8/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][51] ([Intel XE#1178]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-3/igt at kms_content_protection@srm at pipe-a-dp-2.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][52] ([Intel XE#1178]) +2 other tests fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-434/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-offscreen-64x21: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1424]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-6/igt at kms_cursor_crc@cursor-offscreen-64x21.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#308]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-434/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#2321]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-3/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2291]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#309]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-4/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][59] -> [DMESG-WARN][60] ([Intel XE#877]) +1 other test dmesg-warn [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][61] -> [FAIL][62] ([Intel XE#1475]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([i915#3804]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6.html * igt at kms_dp_aux_dev: - shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#3009]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_dp_aux_dev.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-6/igt at kms_dp_aux_dev.html * igt at kms_dsc@dsc-fractional-bpp: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2244]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#701]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@psr1: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1135]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1421]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-2/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#2316]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_flip@2x-plain-flip.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-6/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [PASS][72] -> [FAIL][73] ([Intel XE#886]) +2 other tests fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-8/igt at kms_flip@flip-vs-absolute-wf_vblank.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-3/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4: - shard-dg2-set2: [PASS][74] -> [FAIL][75] ([Intel XE#301]) +1 other test fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][76] ([Intel XE#301]) +10 other tests fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-suspend: - shard-bmg: [PASS][77] -> [INCOMPLETE][78] ([Intel XE#2597]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-5/igt at kms_flip@flip-vs-suspend.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-2/igt at kms_flip@flip-vs-suspend.html - shard-lnl: [PASS][79] -> [FAIL][80] ([Intel XE#3879]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-3/igt at kms_flip@flip-vs-suspend.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-7/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [PASS][81] -> [ABORT][82] ([Intel XE#2625]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-432/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2293]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1401]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-8/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1401] / [Intel XE#1745]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([i915#5274]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-433/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2311]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#651]) +48 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [FAIL][89] ([Intel XE#2333]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc: - shard-dg2-set2: [PASS][90] -> [SKIP][91] ([Intel XE#2136]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc.html - shard-bmg: [PASS][92] -> [SKIP][93] ([Intel XE#2136] / [Intel XE#2231]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#651]) +7 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-8/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2313]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#656]) +25 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#1158]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-434/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#653]) +34 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_hdr@brightness-with-hdr: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#3374] / [Intel XE#3544]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-1/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#1503]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-6/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1503]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-4/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2925]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-434/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#346]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-433/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_lease@implicit-plane-lease: - shard-bmg: [PASS][104] -> [SKIP][105] ([Intel XE#3007]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_lease@implicit-plane-lease.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-8/igt at kms_lease@implicit-plane-lease.html - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2423] / [i915#2575]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at kms_lease@implicit-plane-lease.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2763]) +5 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-433/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-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-433/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2763]) +8 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-1/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75 at pipe-a: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#2763]) +11 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-3/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75 at pipe-a.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#870]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-434/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: NOTRUN -> [FAIL][112] ([Intel XE#718]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-8/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#908]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1439] / [Intel XE#3141]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-5/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#1489]) +12 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-433/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2893]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-8/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#1122]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2850] / [Intel XE#929]) +19 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-433/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-basic: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2234] / [Intel XE#2850]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-5/igt at kms_psr@pr-basic.html * igt at kms_psr@pr-sprite-plane-move: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#1406]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-7/igt at kms_psr@pr-sprite-plane-move.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#3414]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#1127]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#3414] / [Intel XE#3904]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-3/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_scaling_modes@scaling-mode-none: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#2413] / [Intel XE#374]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-6/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#374]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-6/igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [PASS][126] -> [SKIP][127] ([Intel XE#1435]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_setmode@invalid-clone-single-crtc-stealing.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#1500]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-432/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@cmrr: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2168]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at kms_vrr@cmrr.html * igt at kms_vrr@flip-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#455]) +33 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1499]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-5/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#756]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-432/igt at kms_writeback@writeback-fb-id.html - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#756]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-3/igt at kms_writeback@writeback-fb-id.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1091] / [Intel XE#2849]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute@ccs-mode-basic: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#1447]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-7/igt at xe_compute@ccs-mode-basic.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#1280] / [Intel XE#455]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1123]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/igt at xe_copy_basic@mem-copy-linear-0x369.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1126]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2905]) +15 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at xe_eudebug@basic-close.html - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#2905]) +4 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-2/igt at xe_eudebug@basic-close.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#3889]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-433/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: NOTRUN -> [INCOMPLETE][142] ([Intel XE#1473]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-6/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_evict@evict-beng-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#688]) +6 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-2/igt at xe_evict@evict-beng-threads-large-multi-vm.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][144] -> [TIMEOUT][145] ([Intel XE#1473]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at xe_evict@evict-mixed-many-threads-small.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-dg2-set2: [PASS][146] -> [SKIP][147] ([Intel XE#1392]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1392]) +5 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-7/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#1392]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-432/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#288]) +33 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/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: NOTRUN -> [SKIP][151] ([Intel XE#2360]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-434/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_gt_freq@freq_suspend: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#584]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-4/igt at xe_gt_freq@freq_suspend.html * igt at xe_live_ktest@xe_migrate: - shard-bmg: [PASS][153] -> [SKIP][154] ([Intel XE#1192]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at xe_live_ktest@xe_migrate.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-2/igt at xe_live_ktest@xe_migrate.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#2229]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-433/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html * igt at xe_mmap@pci-membarrier-bad-object: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#4045]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/igt at xe_mmap@pci-membarrier-bad-object.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_12436/shard-lnl-3/igt at xe_module_load@force-load.html * igt at xe_oa@oa-tlb-invalidate: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#2248]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-8/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#2541] / [Intel XE#3573]) +11 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#1420] / [Intel XE#2838]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-2/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#979]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][162] ([Intel XE#1173]) +1 other test fail [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-434/igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#2284] / [Intel XE#366]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#2284]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-8/igt at xe_pm@d3cold-mocs.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_12436/shard-dg2-432/igt at xe_pm@vram-d3cold-threshold.html - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#579]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-8/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#944]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-4/igt at xe_query@multigpu-query-topology-l3-bank-mask.html * igt at xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#944]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-434/igt at xe_query@multigpu-query-uc-fw-version-guc.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#3342]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-6/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_wedged@wedged-mode-toggle: - shard-dg2-set2: NOTRUN -> [ABORT][170] ([Intel XE#3075] / [Intel XE#3084]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-433/igt at xe_wedged@wedged-mode-toggle.html #### Possible fixes #### * igt at kms_addfb_basic@addfb25-modifier-no-flag: - shard-dg2-set2: [SKIP][171] ([Intel XE#2423] / [i915#2575]) -> [PASS][172] +6 other tests pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_addfb_basic@addfb25-modifier-no-flag.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/igt at kms_addfb_basic@addfb25-modifier-no-flag.html * igt at kms_atomic_transition@modeset-transition: - shard-bmg: [INCOMPLETE][173] ([Intel XE#2613]) -> [PASS][174] +1 other test pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_atomic_transition@modeset-transition.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-5/igt at kms_atomic_transition@modeset-transition.html * igt at kms_big_fb@4-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][175] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][176] +1 other test pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_big_fb@4-tiled-32bpp-rotate-0.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-1/igt at kms_big_fb@4-tiled-32bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][177] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-8/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][179] ([Intel XE#3862]) -> [PASS][180] +1 other test pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-bmg: [FAIL][181] -> [PASS][182] +1 other test pass [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-3/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs at pipe-a-dp-2: - shard-bmg: [FAIL][183] ([Intel XE#3847]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs at pipe-a-dp-2.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-3/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs at pipe-a-dp-2.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4: - shard-dg2-set2: [DMESG-WARN][185] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][187] ([Intel XE#3124]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: [INCOMPLETE][189] ([Intel XE#3226]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-432/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [SKIP][191] ([Intel XE#2291]) -> [PASS][192] +1 other test pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-5/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [FAIL][193] ([Intel XE#1475]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-7/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-1/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][195] ([Intel XE#3070]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_dp_linktrain_fallback@dp-fallback.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-4/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_fbcon_fbt@fbc: - shard-dg2-set2: [SKIP][197] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][198] +2 other tests pass [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_fbcon_fbt@fbc.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-432/igt at kms_fbcon_fbt@fbc.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][199] ([Intel XE#3820]) -> [PASS][200] +1 other test pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-3/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 at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][201] ([Intel XE#2882]) -> [PASS][202] +2 other tests pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][203] ([Intel XE#2316]) -> [PASS][204] +2 other tests pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-8/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][205] ([Intel XE#2882] / [Intel XE#3820]) -> [PASS][206] +2 other tests pass [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-hdmi-a6: - shard-dg2-set2: [FAIL][207] ([Intel XE#301]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-hdmi-a6.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-hdmi-a6.html * igt at kms_flip@wf_vblank-ts-check-interruptible: - shard-lnl: [FAIL][209] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-2/igt at kms_flip@wf_vblank-ts-check-interruptible.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-2/igt at kms_flip@wf_vblank-ts-check-interruptible.html * igt at kms_flip@wf_vblank-ts-check-interruptible at c-edp1: - shard-lnl: [FAIL][211] ([Intel XE#886]) -> [PASS][212] +2 other tests pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-2/igt at kms_flip@wf_vblank-ts-check-interruptible at c-edp1.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-2/igt at kms_flip@wf_vblank-ts-check-interruptible at c-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg2-set2: [SKIP][213] ([Intel XE#2136]) -> [PASS][214] +1 other test pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][215] ([Intel XE#3012]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-7/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3: - shard-bmg: [DMESG-WARN][217] ([Intel XE#877]) -> [PASS][218] +1 other test pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-8/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][219] ([Intel XE#718]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html * igt at kms_sequence@get-busy: - shard-bmg: [SKIP][221] ([Intel XE#3007]) -> [PASS][222] +7 other tests pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_sequence@get-busy.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-8/igt at kms_sequence@get-busy.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [FAIL][223] ([Intel XE#899]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-1/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-lnl-2/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [ABORT][225] ([Intel XE#2625] / [Intel XE#4057]) -> [PASS][226] +1 other test pass [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/igt at kms_vblank@ts-continuation-suspend.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][227] ([Intel XE#1000]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at xe_evict@evict-beng-threads-large.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-8/igt at xe_evict@evict-beng-threads-large.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind: - shard-dg2-set2: [SKIP][229] ([Intel XE#1392]) -> [PASS][230] +3 other tests pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html * igt at xe_exec_sip@invalidinstr-disabled: - shard-dg2-set2: [SKIP][231] ([Intel XE#1130]) -> [PASS][232] +8 other tests pass [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_exec_sip@invalidinstr-disabled.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/igt at xe_exec_sip@invalidinstr-disabled.html * igt at xe_exec_threads@threads-bal-shared-vm-rebind: - shard-bmg: [SKIP][233] ([Intel XE#1130]) -> [PASS][234] +14 other tests pass [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_exec_threads@threads-bal-shared-vm-rebind.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-3/igt at xe_exec_threads@threads-bal-shared-vm-rebind.html * igt at xe_pm@s3-basic-exec: - shard-dg2-set2: [ABORT][235] ([Intel XE#1358]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_pm@s3-basic-exec.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-vm-bind-prefetch: - shard-dg2-set2: [ABORT][237] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_pm@s4-vm-bind-prefetch.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/igt at xe_pm@s4-vm-bind-prefetch.html #### Warnings #### * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: [SKIP][239] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][240] ([Intel XE#1124]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-5/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: [SKIP][241] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][242] ([Intel XE#3432]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html - shard-dg2-set2: [SKIP][243] ([Intel XE#2136]) -> [SKIP][244] ([Intel XE#455] / [Intel XE#787]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: [SKIP][245] ([Intel XE#3007]) -> [SKIP][246] ([Intel XE#2252]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-storm.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-6/igt at kms_chamelium_hpd@dp-hpd-storm.html - shard-dg2-set2: [SKIP][247] ([Intel XE#2423] / [i915#2575]) -> [SKIP][248] ([Intel XE#373]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_chamelium_hpd@dp-hpd-storm.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-432/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_content_protection@srm: - shard-bmg: [SKIP][249] ([Intel XE#2341]) -> [FAIL][250] ([Intel XE#1178]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_content_protection@srm.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-3/igt at kms_content_protection@srm.html * igt at kms_fbcon_fbt@fbc: - shard-bmg: [SKIP][251] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][252] ([Intel XE#1695]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_fbcon_fbt@fbc.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-3/igt at kms_fbcon_fbt@fbc.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][253] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][254] ([Intel XE#2293] / [Intel XE#2380]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][255] ([Intel XE#2311]) -> [SKIP][256] ([Intel XE#2312]) +11 other tests skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][257] ([Intel XE#2312]) -> [SKIP][258] ([Intel XE#2311]) +8 other tests skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: [SKIP][259] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][260] ([Intel XE#651]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html - shard-bmg: [SKIP][261] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][262] ([Intel XE#2311]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][263] ([Intel XE#2312]) -> [FAIL][264] ([Intel XE#2333]) +3 other tests fail [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [FAIL][265] ([Intel XE#2333]) -> [SKIP][266] ([Intel XE#2312]) +4 other tests skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][267] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][268] ([Intel XE#2333]) +1 other test fail [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][269] ([Intel XE#2313]) -> [SKIP][270] ([Intel XE#2312]) +10 other tests skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][271] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][272] ([Intel XE#2313]) +4 other tests skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][273] ([Intel XE#2312]) -> [SKIP][274] ([Intel XE#2313]) +6 other tests skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-dg2-set2: [SKIP][275] ([Intel XE#2136]) -> [SKIP][276] ([Intel XE#653]) +3 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-bmg: [SKIP][277] ([Intel XE#3007]) -> [SKIP][278] ([Intel XE#2763]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-1/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt at kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][279] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][280] ([Intel XE#3309]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_pm_dc@dc5-retention-flops.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-3/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_psr@fbc-pr-primary-render: - shard-bmg: [SKIP][281] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][282] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_psr@fbc-pr-primary-render.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-1/igt at kms_psr@fbc-pr-primary-render.html - shard-dg2-set2: [SKIP][283] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][284] ([Intel XE#2850] / [Intel XE#929]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_psr@fbc-pr-primary-render.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-435/igt at kms_psr@fbc-pr-primary-render.html * igt at kms_psr@psr2-primary-page-flip: - shard-dg2-set2: [SKIP][285] ([Intel XE#2136]) -> [SKIP][286] ([Intel XE#2850] / [Intel XE#929]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_psr@psr2-primary-page-flip.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-436/igt at kms_psr@psr2-primary-page-flip.html * igt at kms_rotation_crc@primary-rotation-270: - shard-bmg: [SKIP][287] ([Intel XE#3007]) -> [SKIP][288] ([Intel XE#3414] / [Intel XE#3904]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_rotation_crc@primary-rotation-270.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-4/igt at kms_rotation_crc@primary-rotation-270.html - shard-dg2-set2: [SKIP][289] ([Intel XE#2423] / [i915#2575]) -> [SKIP][290] ([Intel XE#3414]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_rotation_crc@primary-rotation-270.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at kms_rotation_crc@primary-rotation-270.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: [SKIP][291] ([Intel XE#1130]) -> [SKIP][292] ([Intel XE#2905]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_eudebug@basic-vm-access.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-6/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: - shard-dg2-set2: [SKIP][293] ([Intel XE#1130]) -> [SKIP][294] ([Intel XE#2905]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-464/igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][295] ([Intel XE#1473]) -> [INCOMPLETE][296] ([Intel XE#1473]) +1 other test incomplete [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at xe_evict@evict-beng-mixed-threads-large.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-2/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-threads-large: - shard-bmg: [INCOMPLETE][297] ([Intel XE#1473]) -> [FAIL][298] ([Intel XE#1000]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at xe_evict@evict-threads-large.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-4/igt at xe_evict@evict-threads-large.html * igt at xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch: - shard-dg2-set2: [SKIP][299] ([Intel XE#1130]) -> [SKIP][300] ([Intel XE#288]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-dg2-434/igt at xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][301] ([Intel XE#2833]) -> [SKIP][302] ([Intel XE#1192]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at xe_live_ktest@xe_eudebug.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#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#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [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#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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [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#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#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [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#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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [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#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#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [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#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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [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#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820 [Intel XE#3847]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3847 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4057]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4057 [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#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#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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8190 -> IGTPW_12436 * Linux: xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db -> xe-2484-87f85ad359b495789479da823858bcde76874d2e IGTPW_12436: 531755dd4679b3817c346c593b76e2f4cf299d2e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8190: db6e252e00bc44f90b678d547e93b3f02c02c6de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db: 1c464719f6d86a08c91e6ed5d64db83b166788db xe-2484-87f85ad359b495789479da823858bcde76874d2e: 87f85ad359b495789479da823858bcde76874d2e == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12436/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 14 21:18:56 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 14 Jan 2025 21:18:56 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_lib/igt=5Fkms=3A_Helpers?= =?utf-8?q?_for_connector_managment_=28rev4=29?= In-Reply-To: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> References: <20250110-b4-cv3-01-igt-kms-v4-0-0b0474708f9f@bootlin.com> Message-ID: <173688953628.3713660.1727255370061625494@b555e5b46a47> == Series Details == Series: lib/igt_kms: Helpers for connector managment (rev4) URL : https://patchwork.freedesktop.org/series/137915/ State : failure == Summary == CI Bug Log - changes from IGT_8188_full -> IGTPW_12428_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12428_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12428_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_12428/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12428_full: ### IGT changes ### #### Possible regressions #### * igt at gem_eio@reset-stress: - shard-mtlp: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-1/igt at gem_eio@reset-stress.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-4/igt at gem_eio@reset-stress.html * igt at i915_pm_rps@reset: - shard-snb: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb5/igt at i915_pm_rps@reset.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb7/igt at i915_pm_rps@reset.html * igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-3: - shard-dg2: [PASS][5] -> [WARN][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-10/igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-3.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-3.html #### Warnings #### * igt at i915_suspend@basic-s3-without-i915: - shard-tglu: [INCOMPLETE][7] ([i915#7443]) -> [INCOMPLETE][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-8/igt at i915_suspend@basic-s3-without-i915.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt at i915_suspend@basic-s3-without-i915.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt at i915_pm_rc6_residency@rc6-accuracy: - {shard-dg2-9}: NOTRUN -> [FAIL][9] +1 other test fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-9/igt at i915_pm_rc6_residency@rc6-accuracy.html Known issues ------------ Here are the changes found in IGTPW_12428_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt at api_intel_bb@object-reloc-purge-cache.html * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +6 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-2/igt at drm_fdinfo@busy-idle at vecs0.html * igt at drm_fdinfo@most-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +6 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt at drm_fdinfo@most-busy-check-all.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +18 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at gem_caching@writes: - shard-rkl: [PASS][14] -> [DMESG-WARN][15] ([i915#12917] / [i915#12964]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-4/igt at gem_caching@writes.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-5/igt at gem_caching@writes.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_12428/shard-tglu-3/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-4/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg2: [PASS][19] -> [INCOMPLETE][20] ([i915#7297]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-7/igt at gem_ccs@suspend-resume.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][21] -> [INCOMPLETE][22] ([i915#12392] / [i915#7297]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-7/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][23] ([i915#12353]) +1 other test incomplete [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk4/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt at gem_ctx_persistence@heartbeat-many.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +7 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb2/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt at gem_ctx_sseu@invalid-args.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_12428/shard-dg2-8/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_12428/shard-tglu-2/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][30] ([i915#13390]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk3/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@kms: - shard-tglu: [PASS][31] -> [DMESG-WARN][32] ([i915#13363]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-4/igt at gem_eio@kms.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-9/igt at gem_eio@kms.html * igt at gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][33] ([i915#8898]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb7/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#8555]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_balancer@parallel-out-fence: - shard-tglu: NOTRUN -> [SKIP][37] ([i915#4525]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-8/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt at gem_exec_fence@submit.html * igt at gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4812]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt at gem_exec_fence@submit67.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt at gem_exec_flush@basic-wb-rw-default.html * igt at gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +11 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt at gem_exec_reloc@basic-cpu-gtt.html * igt at gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-3/igt at gem_exec_reloc@basic-cpu-read-noreloc.html * igt at gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt at gem_exec_reloc@basic-gtt-cpu-active.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +6 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_suspend@basic-s3 at smem: - shard-glk: NOTRUN -> [INCOMPLETE][47] ([i915#13196]) +1 other test incomplete [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk2/igt at gem_exec_suspend@basic-s3 at smem.html * igt at gem_exec_whisper@basic-fds: - shard-rkl: [PASS][48] -> [DMESG-WARN][49] ([i915#12964]) +33 other tests dmesg-warn [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-5/igt at gem_exec_whisper@basic-fds.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt at gem_exec_whisper@basic-fds.html * igt at gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4860]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt at gem_fence_thrash@bo-write-verify-threaded-none.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4860]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt at gem_fence_thrash@bo-write-verify-x.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4860]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-6/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][53] ([i915#2190]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk8/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@parallel-random: - shard-tglu-1: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at gem_lmem_swapping@parallel-random.html * igt at gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk8/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#12193]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/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][58] ([i915#4565]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_madvise@dontneed-before-pwrite: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3282]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-8/igt at gem_madvise@dontneed-before-pwrite.html * igt at gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#8289]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at gem_media_fill@media-fill.html * igt at gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#284]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-8/igt at gem_media_vme.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +14 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@basic-small-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4077]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-7/igt at gem_mmap_gtt@basic-small-copy-xy.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][64] -> [ABORT][65] ([i915#10729]) +1 other test abort [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-7/igt at gem_mmap_offset@clear-via-pagefault.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-2/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at gem_mmap_wc@invalid-flags.html * igt at gem_mmap_wc@write-prefaulted: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4083]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-4/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt at gem_mmap_wc@write-read.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#3282]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt at gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][70] ([i915#2658]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-2/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +13 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at gem_pread@snoop.html * igt at gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][72] ([i915#2658]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb2/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3282]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt at gem_pwrite_snooped.html * igt at gem_pxp@display-protected-crc: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4270]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt at gem_pxp@protected-raw-src-copy-not-readible.html * igt at gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: NOTRUN -> [TIMEOUT][76] ([i915#12917] / [i915#12964]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt at gem_pxp@reject-modify-context-protection-off-1.html * igt at gem_render_copy@y-tiled-ccs-to-linear: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +11 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt at gem_render_copy@y-tiled-ccs-to-linear.html * igt at gem_render_copy@y-tiled-ccs-to-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8428]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-6/igt at gem_render_copy@y-tiled-ccs-to-y-tiled.html * igt at gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt at gem_render_tiled_blits@basic.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4079]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4077]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt at gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297]) +5 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3282] / [i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-1/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4880]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@readonly-unsync: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/igt at gem_userptr_blits@readonly-unsync.html * igt at gem_userptr_blits@relocations: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3281] / [i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@unsync-overlap: - shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at gem_userptr_blits@unsync-overlap.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][91] +14 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@allowed-all: - shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at gen9_exec_parse@allowed-all.html * igt at gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#2527]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt at gen9_exec_parse@batch-invalid-length.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-7/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#2856]) +5 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt at gen9_exec_parse@shadow-peek.html * igt at gen9_exec_parse@unaligned-access: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#2856]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-4/igt at gen9_exec_parse@unaligned-access.html * igt at i915_module_load@reload-no-display: - shard-tglu-1: NOTRUN -> [DMESG-WARN][98] ([i915#13029]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at i915_module_load@reload-no-display.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][99] -> [DMESG-WARN][100] ([i915#13475]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at i915_module_load@reload-with-fault-injection.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#6412]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at i915_module_load@resize-bar.html - shard-dg1: NOTRUN -> [SKIP][102] ([i915#7178]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt at i915_module_load@resize-bar.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#7091]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#8399]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#11681] / [i915#6621]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt at i915_pm_rps@basic-api.html - shard-dg2: NOTRUN -> [SKIP][106] ([i915#11681] / [i915#6621]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@thresholds-idle: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#11681]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt at i915_pm_rps@thresholds-idle.html * igt at i915_power@sanity: - shard-mtlp: [PASS][108] -> [SKIP][109] ([i915#7984]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-8/igt at i915_power@sanity.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-1/igt at i915_power@sanity.html * igt at i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#6245]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-9/igt at i915_query@hwconfig_table.html * igt at i915_selftest@mock: - shard-tglu: NOTRUN -> [DMESG-WARN][111] ([i915#9311]) +1 other test dmesg-warn [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-7/igt at i915_selftest@mock.html - shard-glk: NOTRUN -> [DMESG-WARN][112] ([i915#1982] / [i915#9311]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk9/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-snb: NOTRUN -> [DMESG-WARN][113] ([i915#9311]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb5/igt at i915_selftest@mock at memory_region.html - shard-glk: NOTRUN -> [DMESG-WARN][114] ([i915#9311]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk9/igt at i915_selftest@mock at memory_region.html * igt at intel_hwmon@hwmon-write: - shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#7707]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#5190]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#4212]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-1/igt at kms_addfb_basic@basic-x-tiled-legacy.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4212]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at kms_addfb_basic@bo-too-small-due-to-tiling.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][119] ([i915#8709]) +15 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/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_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#9531]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#1769] / [i915#3555]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#1769] / [i915#3555]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5286]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#5286]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-7/igt at kms_big_fb@4-tiled-32bpp-rotate-0.html * igt at kms_big_fb@4-tiled-addfb: - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#5286]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#5286]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#3638]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5190]) +15 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][129] +7 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#6187]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-1/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4538]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#10307] / [i915#6095]) +137 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt at kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#12313]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-6/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][134] +395 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk2/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-4-tiled-mtl-rc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#4423] / [i915#6095]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#6095]) +64 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-8/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-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#12313]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_ccs@crc-primary-rotation-180-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][139] ([i915#6095]) +19 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-6/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-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#12805]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#6095]) +22 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-3.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#6095]) +34 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#12313]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#12313]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][145] ([i915#12313]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-2/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#6095]) +172 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#6095]) +74 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-6/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_edid@dp-edid-read: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt at kms_chamelium_edid@dp-edid-read.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +13 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt at kms_chamelium_frames@hdmi-crc-multiple.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +5 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-5/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#3555] / [i915#9979]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-4/igt at kms_color@deep-color.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#3116] / [i915#3299]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-6/igt at kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3299]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-6/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#9424]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#9424]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#6944] / [i915#9424]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#7116] / [i915#7118]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-4/igt at kms_content_protection@srm.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-dg1: [PASS][161] -> [DMESG-WARN][162] ([i915#4423]) +5 other tests dmesg-warn [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at kms_cursor_crc@cursor-offscreen-256x85.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#13049]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-2/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#3555]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#13049]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#13049]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#13049]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-sliding-32x32: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#3555]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt at kms_cursor_crc@cursor-sliding-32x32.html * igt at kms_cursor_crc@cursor-sliding-64x21: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#8814]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-5/igt at kms_cursor_crc@cursor-sliding-64x21.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-2: - shard-rkl: [PASS][170] -> [INCOMPLETE][171] ([i915#12358]) +1 other test incomplete [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-1/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-2.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-5/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-2.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#9809]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-1/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-snb: [PASS][173] -> [SKIP][174] +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb5/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb5/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#13046] / [i915#5354]) +8 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt at kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: NOTRUN -> [FAIL][176] ([i915#2346]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#9067]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/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][178] ([i915#4103] / [i915#4213]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/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-tglu: NOTRUN -> [SKIP][179] ([i915#4103]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#4103] / [i915#4213]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][181] ([i915#4103]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#9723]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#8588]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555]) +5 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at kms_dither@fb-8bpc-vs-panel-8bpc.html - shard-dg1: NOTRUN -> [SKIP][185] ([i915#3555]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt at kms_dither@fb-8bpc-vs-panel-8bpc.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#8812]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt at kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][187] ([i915#8812]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-7/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/igt at kms_dsc@dsc-with-bpc.html - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-6/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3469]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at kms_fbcon_fbt@psr.html - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#3469]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#1839]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#9337]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#658]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-4/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][198] ([i915#658]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt at kms_feature_discovery@psr1.html * igt at kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#4881]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt at kms_fence_pin_leak.html - shard-dg2: NOTRUN -> [SKIP][200] ([i915#4881]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-blocking-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#9934]) +3 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt at kms_flip@2x-blocking-wf_vblank.html * igt at kms_flip@2x-flip-vs-fences: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#3637]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-9/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-rmfb: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#3637]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-5/igt at kms_flip@2x-flip-vs-rmfb.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-glk: NOTRUN -> [FAIL][204] ([i915#11989]) +3 other tests fail [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk1/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@2x-plain-flip-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#3637]) +3 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_flip@2x-plain-flip-interruptible.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#9934]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#9934]) +10 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-glk: [PASS][208] -> [FAIL][209] ([i915#11989]) +2 other tests fail [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk8/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk7/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank at a-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][210] ([i915#11989]) +1 other test fail [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt at kms_flip@flip-vs-absolute-wf_vblank at a-hdmi-a1.html * igt at kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#8381]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@plain-flip-fb-recreate at b-hdmi-a2: - shard-rkl: NOTRUN -> [DMESG-WARN][212] ([i915#12964]) +4 other tests dmesg-warn [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt at kms_flip@plain-flip-fb-recreate at b-hdmi-a2.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/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][214] ([i915#2587] / [i915#2672]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/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-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#2587] / [i915#2672]) +2 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-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-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555] / [i915#8813]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#8813]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#2587] / [i915#2672]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-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-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#2587] / [i915#2672] / [i915#3555]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/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-dg2: NOTRUN -> [SKIP][222] ([i915#2672]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-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-tglu-1: NOTRUN -> [SKIP][223] ([i915#2672] / [i915#3555]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8810] / [i915#8813]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8810]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#5354]) +31 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][227] +28 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/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-tglu-1: NOTRUN -> [SKIP][228] +47 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#10433] / [i915#3458]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#1825]) +6 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#8708]) +31 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#9766]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#3458]) +19 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#1825]) +9 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#8708]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#3023]) +8 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#8708]) +15 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#3458]) +11 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_hdr@bpc-switch: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-6/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@invalid-metadata-sizes: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8228]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8228]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-dg2: [PASS][244] -> [SKIP][245] ([i915#3555] / [i915#8228]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-10/igt at kms_hdr@static-toggle.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt at kms_hdr@static-toggle.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#12394]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#12339]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/igt at kms_joiner@basic-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][248] ([i915#12339]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#10656]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-6/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][250] ([i915#10656]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#12388]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt at kms_joiner@invalid-modeset-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][252] ([i915#12388]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_plane@pixel-format-source-clamping: - shard-dg2: [PASS][253] -> [INCOMPLETE][254] ([i915#10056] / [i915#13026]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-10/igt at kms_plane@pixel-format-source-clamping.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt at kms_plane@pixel-format-source-clamping.html * igt at kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#8821]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#13046] / [i915#5354] / [i915#9423]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#12247]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/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][258] ([i915#12247]) +9 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-9/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#12247] / [i915#9423]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/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-a: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#12247]) +4 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#12247]) +9 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#12247]) +15 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/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-5: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#12247] / [i915#6953]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/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][264] ([i915#12247]) +3 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-7/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-dg2: NOTRUN -> [SKIP][265] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-11/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt at kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#5354]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-7/igt at kms_pm_backlight@bad-brightness.html - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#9812]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#9812]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-9/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][269] ([i915#12343]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt at kms_pm_backlight@brightness-with-dpms.html - shard-dg2: NOTRUN -> [SKIP][270] ([i915#12343]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#9685]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-8/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#3828]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at kms_pm_dc@dc5-retention-flops.html - shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#3828]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#9685]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#4281]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#9519]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#9519]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-2/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][278] -> [SKIP][279] ([i915#9519]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at kms_pm_rpm@modeset-lpsp.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#9519]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@pm-tiling: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#12916]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-5/igt at kms_pm_rpm@pm-tiling.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][282] ([i915#10553]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk3/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-modeset-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#6524]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_prime@basic-modeset-hybrid.html - shard-dg2: NOTRUN -> [SKIP][284] ([i915#6524] / [i915#6805]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-glk: NOTRUN -> [SKIP][285] ([i915#11520]) +6 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk6/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#9808]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-7/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-fully-sf at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#12316]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-7/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf at pipe-b-edp-1.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][288] ([i915#11520]) +11 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb2/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-tglu-1: NOTRUN -> [SKIP][289] ([i915#11520]) +4 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/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][290] ([i915#11520]) +6 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-7/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#11520]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#11520]) +7 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#11520]) +11 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#9683]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-8/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#9683]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-p010: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#9683]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#1072] / [i915#9732]) +4 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt at kms_psr@fbc-pr-sprite-plane-onoff.html * igt at kms_psr@fbc-psr2-basic: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#1072] / [i915#9732]) +10 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt at kms_psr@fbc-psr2-basic.html * igt at kms_psr@pr-cursor-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#9732]) +12 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_psr@pr-cursor-mmap-gtt.html * igt at kms_psr@pr-no-drrs: - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#9688]) +4 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-2/igt at kms_psr@pr-no-drrs.html * igt at kms_psr@psr-primary-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#1072] / [i915#9732]) +25 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt at kms_psr@psr-primary-mmap-cpu.html * igt at kms_psr@psr-sprite-blt: - shard-snb: NOTRUN -> [SKIP][302] +450 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb7/igt at kms_psr@psr-sprite-blt.html * igt at kms_psr@psr2-primary-render: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#9732]) +17 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-4/igt at kms_psr@psr2-primary-render.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][304] ([i915#9685]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#5289]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/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][306] ([i915#5289]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][307] ([i915#5289]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#12755]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][309] ([i915#3555]) +4 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-7/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][310] ([i915#13179]) +1 other test abort [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb7/igt at kms_selftest@drm_framebuffer.html * igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][311] ([i915#13179]) +1 other test abort [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free.html * igt at kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#8623]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/igt at kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][313] ([i915#8623]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][314] ([i915#12276]) +1 other test incomplete [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk9/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-2.html * igt at kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][315] ([i915#3555] / [i915#8808]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-7/igt at kms_vrr@flipline.html * igt at kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#11920]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt at kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][317] ([i915#11920]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-2/igt at kms_vrr@lobf.html * igt at kms_vrr@max-min: - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#9906]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_vrr@max-min.html - shard-dg2: NOTRUN -> [SKIP][319] ([i915#9906]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at kms_vrr@max-min.html * igt at kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#3555] / [i915#9906]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#2437]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt at kms_writeback@writeback-check-output.html - shard-rkl: NOTRUN -> [SKIP][322] ([i915#2437]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#2437] / [i915#9412]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#2437] / [i915#9412]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg1: NOTRUN -> [SKIP][325] ([i915#2437] / [i915#9412]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][326] +7 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-4/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#7387]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at perf@global-sseu-config-invalid.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#2434]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-8/igt at perf@mi-rpc.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: [PASS][329] -> [FAIL][330] ([i915#4349]) +4 other tests fail [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-11/igt at perf_pmu@busy-double-start at vecs1.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@cpu-hotplug: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#8850]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@frequency at gt0: - shard-dg2: NOTRUN -> [FAIL][332] ([i915#12549] / [i915#6806]) +1 other test fail [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#8516]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-7/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][334] ([i915#8516]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-10/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][335] ([i915#9351]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at prime_mmap@test_aperture_limit.html * igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][336] ([i915#9351]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem.html * igt at prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#3708] / [i915#4077]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-5/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#3708] / [i915#4077]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][339] +76 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-4/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][340] ([i915#12910]) +9 other tests fail [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-1/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][341] ([i915#12910]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-4/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg1: NOTRUN -> [SKIP][342] ([i915#9917]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt at gem_ctx_isolation@preservation-s3: - shard-rkl: [DMESG-FAIL][343] ([i915#12964]) -> [PASS][344] +2 other tests pass [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-2/igt at gem_ctx_isolation@preservation-s3.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-7/igt at gem_ctx_isolation@preservation-s3.html * igt at gem_ctx_isolation@preservation-s3 at vecs1: - shard-dg2: [INCOMPLETE][345] ([i915#12353]) -> [PASS][346] +1 other test pass [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-5/igt at gem_ctx_isolation@preservation-s3 at vecs1.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-1/igt at gem_ctx_isolation@preservation-s3 at vecs1.html * igt at gem_eio@reset-stress: - shard-dg1: [FAIL][347] ([i915#12543] / [i915#5784]) -> [PASS][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-18/igt at gem_eio@reset-stress.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt at gem_eio@reset-stress.html * igt at gem_exec_big@single: - shard-tglu: [ABORT][349] ([i915#11713]) -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-2/igt at gem_exec_big@single.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-8/igt at gem_exec_big@single.html * igt at i915_pm_rc6_residency@rc6-idle: - shard-dg1: [FAIL][351] ([i915#3591]) -> [PASS][352] [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: [FAIL][353] ([i915#12739] / [i915#3591]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html * igt at i915_pm_rpm@gem-mmap-type: - shard-rkl: [SKIP][355] ([i915#13328]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-5/igt at i915_pm_rpm@gem-mmap-type.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt at i915_pm_rpm@gem-mmap-type.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: [INCOMPLETE][357] ([i915#12797]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk7/igt at i915_pm_rpm@system-suspend-execbuf.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk9/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_selftest@mock at sanitycheck: - shard-snb: [ABORT][359] ([i915#11703]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb7/igt at i915_selftest@mock at sanitycheck.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb5/igt at i915_selftest@mock at sanitycheck.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-tglu: [FAIL][361] ([i915#10991] / [i915#13320]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-4/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1: - shard-tglu: [FAIL][363] ([i915#10991]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-4/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [FAIL][365] ([i915#11808]) -> [PASS][366] +1 other test pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-9/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-7/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][367] ([i915#2346]) -> [PASS][368] +1 other test pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk8/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk8/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@torture-move at pipe-b: - shard-rkl: [DMESG-WARN][369] ([i915#12964]) -> [PASS][370] +43 other tests pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-3/igt at kms_cursor_legacy@torture-move at pipe-b.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt at kms_cursor_legacy@torture-move at pipe-b.html * igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1: - shard-snb: [FAIL][371] ([i915#11989]) -> [PASS][372] +1 other test pass [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb5/igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb7/igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1: - shard-tglu: [FAIL][373] ([i915#11989]) -> [PASS][374] +3 other tests pass [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-10/igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-6/igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff: - shard-dg1: [DMESG-WARN][375] ([i915#4391] / [i915#4423]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][377] ([i915#9295]) -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-9/igt at kms_pm_dc@dc6-dpms.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-tglu-3/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][379] ([i915#9519]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-4/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-3/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][381] ([i915#9519]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-2/igt at kms_pm_rpm@dpms-non-lpsp.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_vblank@query-forked-hang: - shard-rkl: [DMESG-WARN][383] ([i915#12917] / [i915#12964]) -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at kms_vblank@query-forked-hang.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-3/igt at kms_vblank@query-forked-hang.html * igt at perf_pmu@all-busy-check-all: - shard-dg2: [FAIL][385] -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-7/igt at perf_pmu@all-busy-check-all.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-5/igt at perf_pmu@all-busy-check-all.html - shard-dg1: [FAIL][387] -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at perf_pmu@all-busy-check-all.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt at perf_pmu@all-busy-check-all.html - shard-mtlp: [FAIL][389] -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-5/igt at perf_pmu@all-busy-check-all.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-2/igt at perf_pmu@all-busy-check-all.html * igt at perf_pmu@rc6-suspend: - shard-glk: [INCOMPLETE][391] ([i915#13356]) -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk3/igt at perf_pmu@rc6-suspend.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk1/igt at perf_pmu@rc6-suspend.html * igt at syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled: - shard-dg1: [DMESG-WARN][393] ([i915#4423]) -> [PASS][394] +1 other test pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt at syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled.html #### Warnings #### * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [DMESG-WARN][395] ([i915#5493]) -> [TIMEOUT][396] ([i915#5493]) +1 other test timeout [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at gem_lmem_swapping@smem-oom at lmem0.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_pxp@display-protected-crc: - shard-rkl: [SKIP][397] ([i915#4270]) -> [TIMEOUT][398] ([i915#12917] / [i915#12964]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-5/igt at gem_pxp@display-protected-crc.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-4/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: [TIMEOUT][399] ([i915#12917] / [i915#12964]) -> [SKIP][400] ([i915#4270]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-5/igt at gem_pxp@verify-pxp-execution-after-suspend-resume.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-rkl-2/igt at gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: [ABORT][401] ([i915#13263] / [i915#13449]) -> [ABORT][402] ([i915#13449]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb5/igt at gem_tiled_swapping@non-threaded.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb2/igt at gem_tiled_swapping@non-threaded.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: [DMESG-WARN][403] ([i915#13475]) -> [ABORT][404] ([i915#13493] / [i915#9820]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-17/igt at i915_module_load@reload-with-fault-injection.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt at i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][405] ([i915#10131] / [i915#10887] / [i915#13493] / [i915#9820]) -> [ABORT][406] ([i915#10131] / [i915#13493] / [i915#9820]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-6/igt at i915_module_load@reload-with-fault-injection.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-mtlp-1/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_selftest@mock: - shard-snb: [ABORT][407] ([i915#11703]) -> [DMESG-WARN][408] ([i915#9311]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb7/igt at i915_selftest@mock.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-snb5/igt at i915_selftest@mock.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: [INCOMPLETE][409] ([i915#12761]) -> [INCOMPLETE][410] ([i915#12761] / [i915#1982]) +1 other test incomplete [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk5/igt at kms_async_flips@async-flip-suspend-resume.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk9/igt at kms_async_flips@async-flip-suspend-resume.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-dg1: [SKIP][411] ([i915#6095]) -> [SKIP][412] ([i915#4423] / [i915#6095]) +1 other test skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: [SKIP][413] ([i915#4423] / [i915#9067]) -> [SKIP][414] ([i915#9067]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_flip@flip-vs-suspend: - shard-glk: [INCOMPLETE][415] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][416] ([i915#12745] / [i915#1982] / [i915#4839]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk5/igt at kms_flip@flip-vs-suspend.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk8/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-glk: [INCOMPLETE][417] ([i915#12745]) -> [INCOMPLETE][418] ([i915#12745] / [i915#1982]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk5/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-glk8/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-dg1: [SKIP][419] ([i915#4423]) -> [SKIP][420] [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][421] ([i915#3458]) -> [SKIP][422] ([i915#10433] / [i915#3458]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt at kms_hdr@brightness-with-hdr: - shard-dg1: [SKIP][423] ([i915#1187] / [i915#12713]) -> [SKIP][424] ([i915#12713]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_hdr@brightness-with-hdr.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt at kms_hdr@brightness-with-hdr.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-dg1: [SKIP][425] ([i915#11520] / [i915#4423]) -> [SKIP][426] ([i915#11520]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-18/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-18/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-pr-primary-page-flip: - shard-dg1: [SKIP][427] ([i915#1072] / [i915#9732]) -> [SKIP][428] ([i915#1072] / [i915#4423] / [i915#9732]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-12/igt at kms_psr@fbc-pr-primary-page-flip.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-12/igt at kms_psr@fbc-pr-primary-page-flip.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-dg1: [SKIP][429] ([i915#4423] / [i915#5289]) -> [SKIP][430] ([i915#5289]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/shard-dg1-14/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.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#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [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#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#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/i == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12428/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 14 21:48:33 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 14 Jan 2025 21:48:33 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_lib/igt=5Fkms=3A_Helpers?= =?utf-8?q?_for_monitor_edid_managment_=28rev4=29?= In-Reply-To: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> References: <20250110-b4-cv3-02-monitor-edids-v4-0-aef77d3e0f50@bootlin.com> Message-ID: <173689131365.3713660.16230792851144375872@b555e5b46a47> == Series Details == Series: lib/igt_kms: Helpers for monitor edid managment (rev4) URL : https://patchwork.freedesktop.org/series/137925/ State : failure == Summary == CI Bug Log - changes from IGT_8188_full -> IGTPW_12429_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12429_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12429_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_12429/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12429_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@basic-flip-vs-wf_vblank at d-hdmi-a1: - shard-tglu: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-6/igt at kms_flip@basic-flip-vs-wf_vblank at d-hdmi-a1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-9/igt at kms_flip@basic-flip-vs-wf_vblank at d-hdmi-a1.html New tests --------- New tests have been introduced between IGT_8188_full and IGTPW_12429_full: ### New IGT tests (2) ### * igt at kms_setmode@clone-exclusive-crtc at pipe-a-vga-1-pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.23] s * igt at kms_setmode@clone-exclusive-crtc at pipe-b-vga-1-pipe-a-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.25] s Known issues ------------ Here are the changes found in IGTPW_12429_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-10/igt at api_intel_bb@object-reloc-purge-cache.html * igt at drm_fdinfo@busy-hang at bcs0: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8414]) +17 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-7/igt at drm_fdinfo@busy-hang at bcs0.html * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +6 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-7/igt at drm_fdinfo@busy-idle at vecs0.html * igt at drm_fdinfo@most-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +7 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-13/igt at drm_fdinfo@most-busy-check-all.html * igt at gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-2/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-8/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][9] ([i915#12353]) +1 other test incomplete [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk6/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8555]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-8/igt at gem_ctx_persistence@hang.html * igt at gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8555]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-14/igt at gem_ctx_persistence@heartbeat-many.html * igt at gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][12] ([i915#1099]) +8 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-snb5/igt at gem_ctx_persistence@processes.html * igt at gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#280]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-9/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-6/igt at gem_ctx_sseu@invalid-args.html * igt at gem_ctx_sseu@mmap-args: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#280]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-18/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@hibernate: - shard-dg1: [PASS][16] -> [ABORT][17] ([i915#7975] / [i915#8213]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-18/igt at gem_eio@hibernate.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-14/igt at gem_eio@hibernate.html - shard-tglu: [PASS][18] -> [ABORT][19] ([i915#10030] / [i915#7975] / [i915#8213]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-9/igt at gem_eio@hibernate.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-10/igt at gem_eio@hibernate.html * igt at gem_eio@in-flight-immediate: - shard-mtlp: [PASS][20] -> [ABORT][21] ([i915#13193]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-3/igt at gem_eio@in-flight-immediate.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-4/igt at gem_eio@in-flight-immediate.html * igt at gem_eio@in-flight-suspend: - shard-rkl: [PASS][22] -> [DMESG-WARN][23] ([i915#12964]) +52 other tests dmesg-warn [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at gem_eio@in-flight-suspend.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-7/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][24] ([i915#8898]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-snb5/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4771]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-5/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#4525]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at gem_exec_balancer@parallel.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-7/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_balancer@parallel-out-fence: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#4525]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-7/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4812]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at gem_exec_fence@submit.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-7/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-8/igt at gem_exec_flush@basic-wb-rw-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#5107]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-3/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#3281]) +5 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-1/igt at gem_exec_reloc@basic-gtt-cpu-active.html * igt at gem_exec_reloc@basic-gtt-read-active: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +11 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-7/igt at gem_exec_reloc@basic-gtt-read-active.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281]) +7 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-3/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4860]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at gem_fence_thrash@bo-write-verify-threaded-none.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4860]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-5/igt at gem_fence_thrash@bo-write-verify-x.html - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4860]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-6/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][42] ([i915#2190]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk1/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-verify-multi: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-7/igt at gem_lmem_swapping@heavy-verify-multi.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-10/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-glk: NOTRUN -> [SKIP][45] ([i915#4613]) +9 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk2/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][46] ([i915#4613]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: [PASS][47] -> [TIMEOUT][48] ([i915#5493]) +1 other test timeout [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-11/igt at gem_lmem_swapping@smem-oom at lmem0.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-7/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_madvise@dontneed-before-pwrite: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3282]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-6/igt at gem_madvise@dontneed-before-pwrite.html * igt at gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#8289]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-8/igt at gem_media_fill@media-fill.html * igt at gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#284]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-9/igt at gem_media_vme.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +13 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-3/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@basic-small-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-7/igt at gem_mmap_gtt@basic-small-copy-xy.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][54] -> [ABORT][55] ([i915#10729]) +1 other test abort [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-7/igt at gem_mmap_offset@clear-via-pagefault.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-2/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083]) +7 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-10/igt at gem_mmap_wc@invalid-flags.html * igt at gem_mmap_wc@write-prefaulted: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4083]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-3/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4083]) +5 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-13/igt at gem_mmap_wc@write-read.html * igt at gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282]) +11 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-7/igt at gem_partial_pwrite_pread@write-uncached.html * igt at gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][60] ([i915#2658]) +1 other test warn [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at gem_pread@exhaustion.html - shard-dg1: NOTRUN -> [SKIP][61] ([i915#3282]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-18/igt at gem_pread@exhaustion.html * igt at gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-2/igt at gem_pwrite_snooped.html * igt at gem_pxp@display-protected-crc: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-18/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][64] ([i915#12964]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-5/igt at gem_pxp@fail-invalid-protected-context.html * igt at gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: NOTRUN -> [TIMEOUT][65] ([i915#12917] / [i915#12964]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-1/igt at gem_pxp@reject-modify-context-protection-off-1.html * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4270]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-10/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_render_copy@linear-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#5190] / [i915#8428]) +10 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-11/igt at gem_render_copy@linear-to-vebox-yf-tiled.html * igt at gem_render_copy@y-tiled-ccs-to-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-7/igt at gem_render_copy@y-tiled-ccs-to-y-tiled.html * igt at gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4079]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-7/igt at gem_render_tiled_blits@basic.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4079]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-12/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4077]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-18/igt at gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-3/igt at gem_userptr_blits@create-destroy-unsync.html - shard-tglu-1: NOTRUN -> [SKIP][73] ([i915#3297]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-7/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297] / [i915#4880]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4880]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@relocations: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3281] / [i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-18/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297]) +5 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-8/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-2/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-12/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][81] +15 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-7/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#2856]) +6 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-5/igt at gen9_exec_parse@allowed-all.html - shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-7/igt at gen9_exec_parse@allowed-all.html * igt at gen9_exec_parse@batch-invalid-length: - shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at gen9_exec_parse@batch-invalid-length.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-8/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@unaligned-access: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#2856]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-3/igt at gen9_exec_parse@unaligned-access.html * igt at gen9_exec_parse@unaligned-jump: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#2527]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-13/igt at gen9_exec_parse@unaligned-jump.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4881]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-7/igt at i915_fb_tiling.html * igt at i915_module_load@reload-with-fault-injection: - shard-snb: NOTRUN -> [ABORT][89] ([i915#9820]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-snb2/igt at i915_module_load@reload-with-fault-injection.html - shard-glk: [PASS][90] -> [ABORT][91] ([i915#9820]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk1/igt at i915_module_load@reload-with-fault-injection.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk3/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#7178]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-14/igt at i915_module_load@resize-bar.html * igt at i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#8399]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-9/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_freq_api@freq-suspend: - shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#8399]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-tglu-1: NOTRUN -> [WARN][95] ([i915#2681]) +4 other tests warn [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html - shard-dg1: [PASS][96] -> [FAIL][97] ([i915#3591]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-12/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#11681] / [i915#6621]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at i915_pm_rps@basic-api.html - shard-dg2: NOTRUN -> [SKIP][99] ([i915#11681] / [i915#6621]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-1/igt at i915_pm_rps@basic-api.html * igt at i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][100] ([i915#9311]) +1 other test dmesg-warn [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk7/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][101] ([i915#9311]) +1 other test dmesg-warn [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-10/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s3-without-i915: - shard-dg1: [PASS][102] -> [DMESG-WARN][103] ([i915#4391] / [i915#4423]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at i915_suspend@basic-s3-without-i915.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][104] ([i915#4817]) +1 other test incomplete [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk6/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at i915_suspend@fence-restore-untiled: - shard-glk: [PASS][105] -> [INCOMPLETE][106] ([i915#4817]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk4/igt at i915_suspend@fence-restore-untiled.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk4/igt at i915_suspend@fence-restore-untiled.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4212]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-8/igt at kms_addfb_basic@basic-x-tiled-legacy.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#4212]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/igt at kms_addfb_basic@bo-too-small-due-to-tiling.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][109] ([i915#8709]) +15 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/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@async-flip-with-page-flip-events at pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#8709]) +11 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-7/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-3-4-mc-ccs.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#9531]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][112] ([i915#9531]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@modeset-transition-fencing: - shard-glk: NOTRUN -> [FAIL][113] ([i915#12238]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk8/igt at kms_atomic_transition@modeset-transition-fencing.html * igt at kms_atomic_transition@modeset-transition-fencing at 2x-outputs: - shard-glk: NOTRUN -> [FAIL][114] ([i915#11859]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk8/igt at kms_atomic_transition@modeset-transition-fencing at 2x-outputs.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5286]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-13/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#5286]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-1/igt at kms_big_fb@4-tiled-32bpp-rotate-0.html * igt at kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#5286]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/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-async-flip: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#5286]) +4 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-2/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-tglu-1: NOTRUN -> [SKIP][119] ([i915#5286]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/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-270: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#3638]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5190]) +16 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-5/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#6187]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-5/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][124] ([i915#6095]) +44 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#12313]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-6/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#12313]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-3/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#10307] / [i915#6095]) +146 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/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@ccs-on-another-bo-4-tiled-mtl-rc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#6095]) +64 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/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-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#6095]) +19 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/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-suspend-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#12805]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#12805]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-6/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][133] ([i915#12796]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk1/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][134] ([i915#6095]) +27 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-5/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-3.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][135] +511 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk2/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#12313]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-13/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][137] ([i915#12313]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-9/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#6095]) +79 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-1/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#6095]) +155 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-12/igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_cdclk@mode-transition at pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#7213]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-11/igt at kms_cdclk@mode-transition at pipe-b-hdmi-a-2.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#11151] / [i915#7828]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) +13 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-1/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-2/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +6 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-9/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-7/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@vga-hpd-fast: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +6 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at kms_chamelium_hpd@vga-hpd-fast.html * igt at kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#3555] / [i915#9979]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at kms_color@deep-color.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#3299]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-8/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][149] ([i915#3116] / [i915#3299]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-2/igt at kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3299]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-8/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#6944] / [i915#9424]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-6/igt at kms_content_protection@lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][152] ([i915#9424]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-1/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#6944] / [i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at kms_content_protection@lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][154] ([i915#9424]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-18/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#9424]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-7/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#7116] / [i915#7118]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-2/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#3555]) +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#13049]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-3/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#13049]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-3/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#13049]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#13049]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-10/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-sliding-64x21: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#8814]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-8/igt at kms_cursor_crc@cursor-sliding-64x21.html * igt at kms_cursor_edge_walk@128x128-top-bottom at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][164] ([i915#12964]) +7 other tests dmesg-warn [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-3/igt at kms_cursor_edge_walk@128x128-top-bottom at pipe-a-hdmi-a-2.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#9809]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-8/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][166] +9 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-6/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#13046] / [i915#5354]) +7 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-10/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#9067]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-3/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][169] ([i915#4103]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#4103] / [i915#4213]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][171] ([i915#4103]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-5/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#9723]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-13/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#3804]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-5/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2.html * igt at kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#3555]) +5 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-5/igt at kms_dither@fb-8bpc-vs-panel-8bpc.html - shard-dg1: NOTRUN -> [SKIP][175] ([i915#3555]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-13/igt at kms_dither@fb-8bpc-vs-panel-8bpc.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#8812]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-3/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#3840]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-3/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#3840]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-9/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#3840]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-8/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3840]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-7/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#3840]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-5/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3469]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#3955]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-2/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#1839]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#9337]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-5/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#658]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-6/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][187] ([i915#658]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-11/igt at kms_feature_discovery@psr1.html * igt at kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#4881]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-12/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-blocking-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#9934]) +4 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-13/igt at kms_flip@2x-blocking-wf_vblank.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1: - shard-snb: [PASS][190] -> [FAIL][191] ([i915#11989]) +1 other test fail [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb2/igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-snb2/igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@2x-flip-vs-fences: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#3637]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-4/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#9934]) +7 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][194] ([i915#12314] / [i915#12745] / [i915#4839]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk8/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][195] ([i915#4839]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk8/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3637]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-6/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3637]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#9934]) +4 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-7/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@basic-flip-vs-wf_vblank: - shard-rkl: [PASS][199] -> [FAIL][200] ([i915#11989]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at kms_flip@basic-flip-vs-wf_vblank.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-3/igt at kms_flip@basic-flip-vs-wf_vblank.html - shard-tglu: [PASS][201] -> [FAIL][202] ([i915#12431]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-6/igt at kms_flip@basic-flip-vs-wf_vblank.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-9/igt at kms_flip@basic-flip-vs-wf_vblank.html * igt at kms_flip@basic-flip-vs-wf_vblank at a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][203] ([i915#11989]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-3/igt at kms_flip@basic-flip-vs-wf_vblank at a-hdmi-a2.html * igt at kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#8381]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-10/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@plain-flip-ts-check-interruptible at a-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][205] ([i915#11989]) +3 other tests fail [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-3/igt at kms_flip@plain-flip-ts-check-interruptible at a-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#2672] / [i915#3555]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-14/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][207] ([i915#2587] / [i915#2672]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-14/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-downscaling: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#2672]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/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-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#2672] / [i915#3555]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-9/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#2672] / [i915#3555] / [i915#8813]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-7/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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#2672] / [i915#8813]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672] / [i915#3555]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-4/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: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-4/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-xtile-to-32bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8810] / [i915#8813]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8810]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555]) +3 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/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][218] ([i915#2587] / [i915#2672]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/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-upscaling: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#5274]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-5/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][221] ([i915#6880]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-5/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-blt: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#5354]) +38 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][223] +28 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt: - shard-snb: [PASS][224] -> [SKIP][225] [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-snb2/igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#1825]) +6 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#8708]) +30 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#10055]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#9766]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-14/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#3458]) +27 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-3/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#1825]) +15 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-7/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#8708]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][233] +52 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#3023]) +13 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-3/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#8708]) +16 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#3458]) +12 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-13/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_hdr@bpc-switch: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-3/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-18/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-8/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-6/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-dg2: [PASS][241] -> [SKIP][242] ([i915#3555] / [i915#8228]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-10/igt at kms_hdr@static-toggle.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-3/igt at kms_hdr@static-toggle.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#12394]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-14/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#12339]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-7/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#12388]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#8821]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-7/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#13046] / [i915#5354] / [i915#9423]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-8/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#12247]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-5/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: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#12247] / [i915#9423]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#12247]) +9 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/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-downscale-factor-0-5-with-rotation at pipe-a: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#12247]) +4 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-14/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: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#12247] / [i915#6953] / [i915#9423]) +2 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-5/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-tglu-1: NOTRUN -> [SKIP][253] ([i915#12247]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/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-5: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#12247] / [i915#6953]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/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][255] ([i915#12247]) +3 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/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 at pipe-c: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#12247]) +15 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-8/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#5354]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-5/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#9812]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-4/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#12343]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-4/igt at kms_pm_backlight@brightness-with-dpms.html - shard-dg2: NOTRUN -> [SKIP][260] ([i915#12343]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#9812]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#9685]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/igt at kms_pm_dc@dc3co-vpb-simulation.html - shard-tglu: NOTRUN -> [SKIP][263] ([i915#9685]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-7/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#3828]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-14/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu-1: NOTRUN -> [FAIL][265] ([i915#9295]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#4281]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][267] ([i915#9519]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-3/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#9519]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-2/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#9519]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-7/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][270] -> [SKIP][271] ([i915#9519]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-8/igt at kms_pm_rpm@modeset-lpsp-stress.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-10/igt at kms_pm_rpm@modeset-lpsp-stress.html - shard-rkl: [PASS][272] -> [SKIP][273] ([i915#9519]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at kms_pm_rpm@modeset-lpsp-stress.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-1/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][274] ([i915#10553]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk2/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#6524] / [i915#6805]) +2 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/igt at kms_prime@basic-crc-vgem.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#9808]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-6/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-fully-sf at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#12316]) +2 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-6/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf at pipe-b-edp-1.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][278] ([i915#11520]) +10 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/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][279] ([i915#11520]) +6 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-7/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#11520]) +6 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][281] ([i915#11520]) +12 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/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: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#11520]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-3/igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#11520]) +5 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-14/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#11520]) +13 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-3/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#9683]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-10/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#1072] / [i915#9732]) +7 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-7/igt at kms_psr@fbc-pr-sprite-plane-onoff.html * igt at kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#1072] / [i915#9732]) +33 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-1/igt at kms_psr@fbc-psr-primary-mmap-gtt.html * igt at kms_psr@fbc-psr2-basic: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#1072] / [i915#9732]) +11 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-14/igt at kms_psr@fbc-psr2-basic.html * igt at kms_psr@pr-no-drrs: - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#9688]) +4 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-2/igt at kms_psr@pr-no-drrs.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#9732]) +11 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr-sprite-blt: - shard-snb: NOTRUN -> [SKIP][291] +425 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-snb7/igt at kms_psr@psr-sprite-blt.html * igt at kms_psr@psr2-cursor-render: - shard-tglu: NOTRUN -> [SKIP][292] ([i915#9732]) +15 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-7/igt at kms_psr@psr2-cursor-render.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][293] ([i915#9685]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-14/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#12755]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-5/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#4235]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-8/igt at kms_rotation_crc@exhaust-fences.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#5289]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-3/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#5190]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-1/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][298] ([i915#5289]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/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-dg1: NOTRUN -> [SKIP][299] ([i915#5289]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-13/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: NOTRUN -> [SKIP][300] ([i915#12755] / [i915#5190]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-11/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#3555]) +4 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-6/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][302] ([i915#13179]) +1 other test abort [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-snb2/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@basic: - shard-dg1: [PASS][303] -> [FAIL][304] ([i915#5465]) +2 other tests fail [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-18/igt at kms_setmode@basic.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at kms_setmode@basic.html - shard-tglu: [PASS][305] -> [FAIL][306] ([i915#5465]) +2 other tests fail [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-7/igt at kms_setmode@basic.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-4/igt at kms_setmode@basic.html * igt at kms_setmode@basic at pipe-a-vga-1-pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][307] ([i915#5465]) +3 other tests fail [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-snb2/igt at kms_setmode@basic at pipe-a-vga-1-pipe-b-hdmi-a-1.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-mtlp: [PASS][308] -> [FAIL][309] ([i915#5465]) +2 other tests fail [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-6/igt at kms_setmode@basic at pipe-b-edp-1.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-1/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_setmode@invalid-clone-exclusive-crtc: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#3555]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-3/igt at kms_setmode@invalid-clone-exclusive-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#8623]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-9/igt at kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][312] ([i915#8623]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-7/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: NOTRUN -> [INCOMPLETE][313] ([i915#12276]) +2 other tests incomplete [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk1/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html * igt at kms_vblank@ts-continuation-suspend: - shard-rkl: [PASS][314] -> [DMESG-FAIL][315] ([i915#12964]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-3/igt at kms_vblank@ts-continuation-suspend.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-4/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-FAIL][316] ([i915#12964]) +1 other test dmesg-fail [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-4/igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1.html * igt at kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#3555] / [i915#8808]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-6/igt at kms_vrr@flipline.html * igt at kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#11920]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/igt at kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][319] ([i915#11920]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-4/igt at kms_vrr@lobf.html * igt at kms_vrr@max-min: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#9906]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-3/igt at kms_vrr@max-min.html * igt at kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#3555] / [i915#9906]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-7/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#2437]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-3/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#2437] / [i915#9412]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-11/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][324] ([i915#2437]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk3/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#2437] / [i915#9412]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#2437] / [i915#9412]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#2437] / [i915#9412]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-14/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][328] +7 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-2/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#2434]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-1/igt at perf@mi-rpc.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: [PASS][330] -> [FAIL][331] ([i915#4349]) +10 other tests fail [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-11/igt at perf_pmu@busy-double-start at vecs1.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-5/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@busy-start at vcs0: - shard-mtlp: [PASS][332] -> [FAIL][333] ([i915#13478]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-8/igt at perf_pmu@busy-start at vcs0.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-4/igt at perf_pmu@busy-start at vcs0.html * igt at perf_pmu@frequency at gt0: - shard-dg2: NOTRUN -> [FAIL][334] ([i915#12549] / [i915#6806]) +1 other test fail [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-5/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#8516]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-11/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][336] ([i915#8516]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-10/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at perf_pmu@render-node-busy-idle: - shard-mtlp: [PASS][337] -> [FAIL][338] ([i915#4349]) +2 other tests fail [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-6/igt at perf_pmu@render-node-busy-idle.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-4/igt at perf_pmu@render-node-busy-idle.html * igt at perf_pmu@semaphore-busy at vcs1: - shard-dg1: [PASS][339] -> [FAIL][340] ([i915#4349]) +3 other tests fail [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at perf_pmu@semaphore-busy at vcs1.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-12/igt at perf_pmu@semaphore-busy at vcs1.html * igt at prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][341] ([i915#9351]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-10/igt at prime_mmap@test_aperture_limit.html * igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][342] ([i915#9351]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-10/igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem.html * igt at prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][343] ([i915#3708] / [i915#4077]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-6/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#3291] / [i915#3708]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-5/igt at prime_vgem@basic-write.html * igt at prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][345] +80 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-8/igt at prime_vgem@fence-write-hang.html - shard-dg2: NOTRUN -> [SKIP][346] ([i915#3708]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-8/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@bind-unbind-vf at vf-1: - shard-tglu-1: NOTRUN -> [FAIL][347] ([i915#12910]) +18 other tests fail [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-1/igt at sriov_basic@bind-unbind-vf at vf-1.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][348] ([i915#12910]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-10/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg2: NOTRUN -> [SKIP][349] ([i915#9917]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-10/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg1: NOTRUN -> [SKIP][350] ([i915#9917]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-14/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt at gem_ctx_isolation@preservation-s3: - shard-rkl: [DMESG-FAIL][351] ([i915#12964]) -> [PASS][352] +3 other tests pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-2/igt at gem_ctx_isolation@preservation-s3.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-3/igt at gem_ctx_isolation@preservation-s3.html * igt at gem_exec_big@single: - shard-tglu: [ABORT][353] ([i915#11713]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-2/igt at gem_exec_big@single.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-6/igt at gem_exec_big@single.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: [ABORT][355] ([i915#7975] / [i915#8213]) -> [PASS][356] +1 other test pass [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-10/igt at gem_exec_suspend@basic-s4-devices.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-11/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-snb: [INCOMPLETE][357] -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb2/igt at gem_partial_pwrite_pread@writes-after-reads-uncached.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-snb2/igt at gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt at gem_workarounds@suspend-resume-fd: - shard-glk: [INCOMPLETE][359] ([i915#13356]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk6/igt at gem_workarounds@suspend-resume-fd.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk6/igt at gem_workarounds@suspend-resume-fd.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: [DMESG-WARN][361] ([i915#13475]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-17/igt at i915_module_load@reload-with-fault-injection.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-12/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rpm@reg-read-ioctl: - shard-dg1: [DMESG-WARN][363] ([i915#4391] / [i915#4423]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-18/igt at i915_pm_rpm@reg-read-ioctl.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-12/igt at i915_pm_rpm@reg-read-ioctl.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: [INCOMPLETE][365] ([i915#12797]) -> [PASS][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk7/igt at i915_pm_rpm@system-suspend-execbuf.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk7/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_pm_rps@engine-order: - shard-glk: [FAIL][367] -> [PASS][368] [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk5/igt at i915_pm_rps@engine-order.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk8/igt at i915_pm_rps@engine-order.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [FAIL][369] ([i915#11808]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-9/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-tglu-9/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][371] -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk9/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk1/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: [FAIL][373] ([i915#2346]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@torture-move at pipe-b: - shard-rkl: [DMESG-WARN][375] ([i915#12964]) -> [PASS][376] +59 other tests pass [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-3/igt at kms_cursor_legacy@torture-move at pipe-b.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-4/igt at kms_cursor_legacy@torture-move at pipe-b.html * igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1: - shard-snb: [FAIL][377] ([i915#11989]) -> [PASS][378] +1 other test pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb5/igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-snb7/igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-rkl: [FAIL][379] ([i915#11989]) -> [PASS][380] +1 other test pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-2/igt at kms_flip@flip-vs-blocking-wf-vblank.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-2/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@plain-flip-ts-check: - shard-dg2: [FAIL][381] ([i915#11989]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-5/igt at kms_flip@plain-flip-ts-check.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-11/igt at kms_flip@plain-flip-ts-check.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][383] ([i915#9519]) -> [PASS][384] +2 other tests pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-4/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-6/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_setmode@basic at pipe-a-hdmi-a-1: - shard-snb: [FAIL][385] ([i915#5465]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb7/igt at kms_setmode@basic at pipe-a-hdmi-a-1.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-snb2/igt at kms_setmode@basic at pipe-a-hdmi-a-1.html * igt at kms_vblank@query-forked-hang: - shard-rkl: [DMESG-WARN][387] ([i915#12917] / [i915#12964]) -> [PASS][388] +2 other tests pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at kms_vblank@query-forked-hang.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-7/igt at kms_vblank@query-forked-hang.html * igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][389] ([i915#12276]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk3/igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-glk9/igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1.html * igt at perf_pmu@all-busy-check-all: - shard-dg2: [FAIL][391] -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-7/igt at perf_pmu@all-busy-check-all.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-3/igt at perf_pmu@all-busy-check-all.html - shard-dg1: [FAIL][393] -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at perf_pmu@all-busy-check-all.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-12/igt at perf_pmu@all-busy-check-all.html - shard-mtlp: [FAIL][395] -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-5/igt at perf_pmu@all-busy-check-all.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-5/igt at perf_pmu@all-busy-check-all.html * igt at syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled: - shard-dg1: [DMESG-WARN][397] ([i915#4423]) -> [PASS][398] +1 other test pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-13/igt at syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled.html #### Warnings #### * igt at gem_pxp@create-regular-context-1: - shard-rkl: [TIMEOUT][399] ([i915#12917] / [i915#12964]) -> [SKIP][400] ([i915#4270]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-5/igt at gem_pxp@create-regular-context-1.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-4/igt at gem_pxp@create-regular-context-1.html * igt at gem_pxp@display-protected-crc: - shard-rkl: [SKIP][401] ([i915#4270]) -> [TIMEOUT][402] ([i915#12917] / [i915#12964]) +1 other test timeout [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-5/igt at gem_pxp@display-protected-crc.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-3/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: [TIMEOUT][403] ([i915#12964]) -> [SKIP][404] ([i915#4270]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-4/igt at gem_pxp@regular-baseline-src-copy-readible.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-7/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][405] ([i915#10131] / [i915#10887] / [i915#13493] / [i915#9820]) -> [ABORT][406] ([i915#10131] / [i915#10887] / [i915#13493]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-6/igt at i915_module_load@reload-with-fault-injection.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-1/igt at i915_module_load@reload-with-fault-injection.html * igt at kms_chamelium_hpd@dp-hpd: - shard-dg1: [SKIP][407] ([i915#11151] / [i915#7828]) -> [SKIP][408] ([i915#11151] / [i915#4423] / [i915#7828]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-12/igt at kms_chamelium_hpd@dp-hpd.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-12/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_content_protection@mei-interface: - shard-dg1: [SKIP][409] ([i915#9424]) -> [SKIP][410] ([i915#9433]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at kms_content_protection@mei-interface.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-13/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@type1: - shard-dg2: [SKIP][411] ([i915#7118] / [i915#9424]) -> [SKIP][412] ([i915#7118] / [i915#7162] / [i915#9424]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-1/igt at kms_content_protection@type1.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-10/igt at kms_content_protection@type1.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: [SKIP][413] ([i915#4423] / [i915#9067]) -> [SKIP][414] ([i915#9067]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-dg1: [SKIP][415] -> [SKIP][416] ([i915#4423]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-12/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-dg1: [SKIP][417] ([i915#4423]) -> [SKIP][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][419] ([i915#10433] / [i915#3458]) -> [SKIP][420] ([i915#3458]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-11/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][421] ([i915#3458]) -> [SKIP][422] ([i915#10433] / [i915#3458]) +1 other test skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-8/igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt at kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][423] ([i915#12713]) -> [SKIP][424] ([i915#1187] / [i915#12713]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-5/igt at kms_hdr@brightness-with-hdr.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-mtlp-1/igt at kms_hdr@brightness-with-hdr.html - shard-dg1: [SKIP][425] ([i915#1187] / [i915#12713]) -> [SKIP][426] ([i915#12713]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_hdr@brightness-with-hdr.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at kms_hdr@brightness-with-hdr.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][427] ([i915#4816]) -> [SKIP][428] ([i915#4070] / [i915#4816]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-2/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [DMESG-WARN][429] ([i915#12964]) -> [SKIP][430] ([i915#12916]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-1/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-rkl-7/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: [SKIP][431] ([i915#11520]) -> [SKIP][432] ([i915#11520] / [i915#4423]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-17/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-dg1: [SKIP][433] ([i915#11520] / [i915#4423]) -> [SKIP][434] ([i915#11520]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-18/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/shard-dg1-13/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-dg1: [SKIP][435] ([i915#4423] / [i915#5289]) -> [SKIP][436] ([i915#5289]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0. == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12429/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 14 22:16:07 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 14 Jan 2025 22:16:07 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/vmwgfx=3A_Check_fo?= =?utf-8?q?r_3d_support_on_context_and_surface_creation=2E?= In-Reply-To: <20250110201116.1485633-1-maaz.mombasawala@broadcom.com> References: <20250110201116.1485633-1-maaz.mombasawala@broadcom.com> Message-ID: <173689296792.3736230.14406541546365244664@b555e5b46a47> == Series Details == Series: tests/vmwgfx: Check for 3d support on context and surface creation. URL : https://patchwork.freedesktop.org/series/143414/ State : failure == Summary == CI Bug Log - changes from IGT_8188_full -> IGTPW_12431_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12431_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12431_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_12431/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12431_full: ### IGT changes ### #### Possible regressions #### * igt at gem_softpin@noreloc-s3: - shard-rkl: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-6/igt at gem_softpin@noreloc-s3.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-5/igt at gem_softpin@noreloc-s3.html Known issues ------------ Here are the changes found in IGTPW_12431_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8414]) +6 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-4/igt at drm_fdinfo@busy-idle at vecs0.html * igt at drm_fdinfo@most-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][4] ([i915#8414]) +7 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-13/igt at drm_fdinfo@most-busy-check-all.html * igt at drm_fdinfo@virtual-busy-hang: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at drm_fdinfo@virtual-busy-hang.html * igt at gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][6] ([i915#9323]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-4/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-7/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_create@create-ext-set-pat: - shard-tglu-1: NOTRUN -> [SKIP][8] ([i915#8562]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8555]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-4/igt at gem_ctx_persistence@hang.html * igt at gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8555]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-18/igt at gem_ctx_persistence@heartbeat-many.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][11] ([i915#1099]) +8 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-snb5/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#280]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-6/igt at gem_ctx_sseu@invalid-args.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#280]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-7/igt at gem_ctx_sseu@invalid-sseu.html - shard-tglu: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-7/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#280]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-12/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@hibernate: - shard-dg1: [PASS][16] -> [ABORT][17] ([i915#7975] / [i915#8213]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-18/igt at gem_eio@hibernate.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-14/igt at gem_eio@hibernate.html - shard-dg2: NOTRUN -> [ABORT][18] ([i915#10030] / [i915#7975] / [i915#8213]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-5/igt at gem_eio@hibernate.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][19] ([i915#13197] / [i915#13390]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk7/igt at gem_eio@in-flight-suspend.html * igt at gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#4771]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-10/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel-balancer: - shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#4525]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#4525]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-2/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_balancer@parallel-out-fence: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#4525]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-3/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_capture@capture-recoverable: - shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#6344]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at gem_exec_capture@capture-recoverable.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#4812]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-17/igt at gem_exec_fence@submit.html - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at gem_exec_fence@submit.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-14/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-11/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-rw-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_12431/shard-dg2-1/igt at gem_exec_flush@basic-wb-rw-default.html * igt at gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-4/igt at gem_exec_reloc@basic-cpu-read-noreloc.html * igt at gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#3281]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-2/igt at gem_exec_reloc@basic-gtt-cpu-active.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3281]) +7 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-12/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_reloc@basic-write-cpu: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +5 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-3/igt at gem_exec_reloc@basic-write-cpu.html * igt at gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at gem_exec_schedule@preempt-queue.html * igt at gem_exec_whisper@basic-contexts: - shard-rkl: [PASS][36] -> [DMESG-WARN][37] ([i915#12964]) +44 other tests dmesg-warn [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-2/igt at gem_exec_whisper@basic-contexts.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-3/igt at gem_exec_whisper@basic-contexts.html * igt at gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4860]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at gem_fence_thrash@bo-copy.html * igt at gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4860]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-12/igt at gem_fence_thrash@bo-write-verify-threaded-none.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4860]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-1/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][41] ([i915#2190]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk7/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-random: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#4613]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-1/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#4613]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-8/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-glk: NOTRUN -> [SKIP][44] ([i915#4613]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk1/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@parallel-multi: - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4613]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at gem_lmem_swapping@parallel-multi.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: [PASS][46] -> [TIMEOUT][47] ([i915#5493]) +1 other test timeout [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-11/igt at gem_lmem_swapping@smem-oom at lmem0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-5/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#12193]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-14/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_lmem_swapping@verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4565]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-14/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_madvise@dontneed-before-pwrite: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3282]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-7/igt at gem_madvise@dontneed-before-pwrite.html * igt at gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#8289]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-10/igt at gem_media_fill@media-fill.html * igt at gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#284]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at gem_media_vme.html - shard-tglu: NOTRUN -> [SKIP][53] ([i915#284]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-6/igt at gem_media_vme.html * igt at gem_mmap_gtt@basic-small-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4077]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-1/igt at gem_mmap_gtt@basic-small-copy-xy.html * igt at gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4077]) +7 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-11/igt at gem_mmap_gtt@zero-extend.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][56] -> [ABORT][57] ([i915#10729]) +1 other test abort [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-7/igt at gem_mmap_offset@clear-via-pagefault.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-1/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/igt at gem_mmap_wc@invalid-flags.html * igt at gem_mmap_wc@write-prefaulted: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4083]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-4/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-18/igt at gem_mmap_wc@write-read.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +11 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-13/igt at gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][63] ([i915#2658]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-8/igt at gem_pread@exhaustion.html * igt at gem_pread@uncached: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-3/igt at gem_pread@uncached.html * igt at gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][65] ([i915#2658]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-snb2/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][66] ([i915#12964]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-3/igt at gem_pxp@fail-invalid-protected-context.html * igt at gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/igt at gem_pxp@protected-raw-src-copy-not-readible.html * igt at gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4270]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-13/igt at gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt at gem_render_copy@linear-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#5190] / [i915#8428]) +11 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-11/igt at gem_render_copy@linear-to-vebox-yf-tiled.html * igt at gem_render_copy@y-tiled-ccs-to-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#8428]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-5/igt at gem_render_copy@y-tiled-ccs-to-y-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4079]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-12/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4077]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-13/igt at gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt at gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-5/igt at gem_userptr_blits@coherency-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3282] / [i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-7/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-7/igt at gem_userptr_blits@map-fixed-invalidate-busy.html - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4880]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-7/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4880]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-14/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@unsync-unmap: - shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#3297]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#3297]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-6/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-17/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_workarounds@suspend-resume-context: - shard-glk: [PASS][81] -> [INCOMPLETE][82] ([i915#13356]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk1/igt at gem_workarounds@suspend-resume-context.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk6/igt at gem_workarounds@suspend-resume-context.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][83] +8 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#2527]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-5/igt at gen9_exec_parse@batch-invalid-length.html * igt at gen9_exec_parse@bb-secure: - shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at gen9_exec_parse@bb-secure.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-17/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-3/igt at gen9_exec_parse@cmd-crossing-page.html - shard-dg2: NOTRUN -> [SKIP][88] ([i915#2856]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-5/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@unaligned-access: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-7/igt at gen9_exec_parse@unaligned-access.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4881]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-3/igt at i915_fb_tiling.html * igt at i915_module_load@reload-no-display: - shard-tglu-1: NOTRUN -> [DMESG-WARN][91] ([i915#13029]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at i915_module_load@reload-no-display.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][92] -> [ABORT][93] ([i915#9820]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at i915_module_load@reload-with-fault-injection.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-2/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#7178]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-12/igt at i915_module_load@resize-bar.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#7091]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-7/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#8399]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-3/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0: - shard-dg1: [PASS][97] -> [FAIL][98] ([i915#3591]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0: - shard-dg1: [PASS][99] -> [FAIL][100] ([i915#12739] / [i915#3591]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-tglu-1: NOTRUN -> [WARN][101] ([i915#2681]) +6 other tests warn [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rpm@system-suspend: - shard-glk: [PASS][102] -> [INCOMPLETE][103] ([i915#12797]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk1/igt at i915_pm_rpm@system-suspend.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk7/igt at i915_pm_rpm@system-suspend.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#11681] / [i915#6621]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-14/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#11681]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-10/igt at i915_pm_rps@thresholds-idle.html - shard-dg1: NOTRUN -> [SKIP][106] ([i915#11681]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-12/igt at i915_pm_rps@thresholds-idle.html * igt at i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#6245]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-6/igt at i915_query@hwconfig_table.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [PASS][108] -> [DMESG-FAIL][109] ([i915#13393]) +1 other test dmesg-fail [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-7/igt at i915_selftest@live at workarounds.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-7/igt at i915_selftest@live at workarounds.html * igt at i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][110] ([i915#9311]) +1 other test dmesg-warn [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk2/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][111] ([i915#9311]) +1 other test dmesg-warn [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@debugfs-reader: - shard-glk: [PASS][112] -> [INCOMPLETE][113] ([i915#4817]) +1 other test incomplete [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk5/igt at i915_suspend@debugfs-reader.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk5/igt at i915_suspend@debugfs-reader.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][114] ([i915#4817]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk5/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4212]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-1/igt at kms_addfb_basic@basic-x-tiled-legacy.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][116] ([i915#8709]) +15 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/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-c-hdmi-a-1-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#8709]) +11 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-c-hdmi-a-1-4-rc-ccs-cc.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-1-y-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#8709]) +7 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-1-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][119] ([i915#8709]) +7 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/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_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#9531]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][121] ([i915#9531]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-3/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][122] ([i915#1769]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-snb5/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][123] ([i915#1769] / [i915#3555]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5286]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-17/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#5286]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-1/igt at kms_big_fb@4-tiled-32bpp-rotate-0.html * igt at kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#5286]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-14/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#5286]) +4 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-10/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-64bpp-rotate-0: - shard-mtlp: [PASS][128] -> [FAIL][129] ([i915#5138]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-6/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-1/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-tglu-1: NOTRUN -> [SKIP][130] ([i915#5286]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#3638]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-17/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3638]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-2/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#4538] / [i915#5190]) +13 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-3/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#5190]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-1/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6187]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-3/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#4538]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-17/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#12313]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-7/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#6095]) +74 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-9/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-basic-4-tiled-mtl-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#6095]) +97 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-7/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6095]) +19 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-2/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-yf-tiled-ccs at pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#6095]) +110 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-13/igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#6095]) +61 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-3/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-dg2: NOTRUN -> [SKIP][143] ([i915#12805]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][144] ([i915#12805]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#12805]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#6095]) +18 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][147] ([i915#12796]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk2/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-2.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#12313]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#6095]) +34 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#12313]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-7/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#12313]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-14/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][153] ([i915#12313]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-6/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#11616] / [i915#7213]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-10/igt at kms_cdclk@mode-transition at pipe-a-dp-4.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +5 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-12/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_edid@dp-edid-read: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-7/igt at kms_chamelium_edid@dp-edid-read.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +9 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-1/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +6 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_chamelium_frames@dp-crc-single.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +5 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-3/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-4/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#9979]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-7/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#3299]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-11/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][164] ([i915#3116] / [i915#3299]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-6/igt at kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3299]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-4/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@dp-mst-type-1: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#3116] / [i915#3299]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#9424]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-18/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#7118]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-1/igt at kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][169] ([i915#6944] / [i915#7116] / [i915#7118]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-9/igt at kms_content_protection@srm.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#13049]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-4/igt at kms_cursor_crc@cursor-offscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][171] ([i915#13049]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-18/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#13049]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/igt at kms_cursor_crc@cursor-offscreen-512x512.html - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#13049]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#13049]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-6/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3555]) +8 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-1/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-32x32: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3555]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-1/igt at kms_cursor_crc@cursor-sliding-32x32.html * igt at kms_cursor_crc@cursor-sliding-64x21: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#8814]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-3/igt at kms_cursor_crc@cursor-sliding-64x21.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#9809]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-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][179] +6 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-3/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#13046] / [i915#5354]) +5 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-1/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][181] ([i915#2346]) +1 other test fail [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk5/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#9067]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-3/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#4103] / [i915#4213]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#4103] / [i915#4213]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/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-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#4103]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-8/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#4103]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#4103]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dp_aux_dev: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#1257]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_dp_aux_dev.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#8812]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][190] ([i915#8812]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-14/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#3840]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-7/igt at kms_dsc@dsc-with-bpc.html - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-7/igt at kms_dsc@dsc-with-bpc-formats.html - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#3840]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#658]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-7/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][197] ([i915#658]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at kms_feature_discovery@psr1.html * igt at kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#4881]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-12/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1: - shard-snb: [PASS][199] -> [FAIL][200] ([i915#11989]) +1 other test fail [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb2/igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-snb7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#9934]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-14/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-flip-vs-fences: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#3637]) +5 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-6/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3637]) +6 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#9934]) +6 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-10/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@2x-flip-vs-rmfb: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3637]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-1/igt at kms_flip@2x-flip-vs-rmfb.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][206] ([i915#12745] / [i915#4839]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk6/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][207] ([i915#4839]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk6/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#9934]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-1/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@blocking-wf_vblank at b-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][209] ([i915#12964]) +6 other tests dmesg-warn [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-2/igt at kms_flip@blocking-wf_vblank at b-hdmi-a1.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-mtlp: [PASS][210] -> [FAIL][211] ([i915#11989]) +3 other tests fail [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-3/igt at kms_flip@flip-vs-absolute-wf_vblank.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-1/igt at kms_flip@flip-vs-absolute-wf_vblank.html - shard-snb: NOTRUN -> [FAIL][212] ([i915#11989]) +1 other test fail [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-snb7/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at c-hdmi-a1: - shard-tglu: [PASS][213] -> [FAIL][214] ([i915#11989]) +3 other tests fail [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-6/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at c-hdmi-a1.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-4/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at c-hdmi-a1.html * igt at kms_flip@flip-vs-absolute-wf_vblank at a-hdmi-a2: - shard-dg2: NOTRUN -> [FAIL][215] ([i915#11989]) +2 other tests fail [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-11/igt at kms_flip@flip-vs-absolute-wf_vblank at a-hdmi-a2.html * igt at kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#8381]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-1/igt at kms_flip@flip-vs-fences.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-6/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555] / [i915#8813]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#8813]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555] / [i915#5190]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#2672]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#2587] / [i915#2672] / [i915#3555]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-3/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: NOTRUN -> [SKIP][223] ([i915#2587] / [i915#2672]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-3/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-16bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#2672] / [i915#3555]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/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][225] ([i915#2587] / [i915#2672]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/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-xtile-to-32bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8810] / [i915#8813]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-7/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8810]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-7/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [PASS][228] -> [FAIL][229] ([i915#6880]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][230] +48 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/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][231] +25 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt: - shard-snb: [PASS][232] -> [SKIP][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-snb2/igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#1825]) +7 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#8708]) +21 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-11/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#10055]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-7/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#9766]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-18/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#10433] / [i915#3458]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#3023]) +7 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-3/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#3458]) +18 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at kms_frontbuffer_tracking@psr-1p-rte.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#1825]) +11 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-5/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#5354]) +26 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#8708]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-3/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#8708]) +13 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#3458]) +9 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-18/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#6118]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@bpc-switch: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8228]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-8/igt at kms_hdr@bpc-switch.html - shard-dg2: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8228]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-3/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8228]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-12/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#13331]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-10/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#3555] / [i915#8228]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-2/igt at kms_hdr@static-swap.html * igt at kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#10656]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-1/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#12394]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-13/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][254] ([i915#12339]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-6/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#10656]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-4/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#12388]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_joiner@invalid-modeset-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][257] ([i915#12388]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-18/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#1839]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][259] ([i915#13026]) +1 other test incomplete [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk3/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_scaling@intel-max-src-size: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#6953]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#12247]) +2 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/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][262] ([i915#12247]) +9 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@plane-upscale-20x20-with-pixel-format at pipe-a: - shard-rkl: [PASS][263] -> [DMESG-WARN][264] ([i915#12964] / [i915#1982]) +1 other test dmesg-warn [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-6/igt at kms_plane_scaling@plane-upscale-20x20-with-pixel-format at pipe-a.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-6/igt at kms_plane_scaling@plane-upscale-20x20-with-pixel-format at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#12247] / [i915#9423]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#12247]) +7 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/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-5: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#12247] / [i915#6953]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/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][268] ([i915#12247]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/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][269] ([i915#12247] / [i915#6953]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/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-tglu-1: NOTRUN -> [SKIP][270] ([i915#12247]) +3 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#12247] / [i915#6953] / [i915#9423]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt at kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#5354]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-5/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#9812]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-6/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#12343]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-4/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#9685]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-1/igt at kms_pm_dc@dc3co-vpb-simulation.html - shard-tglu: NOTRUN -> [SKIP][276] ([i915#9685]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-9/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#3828]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-11/igt at kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][278] ([i915#3828]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-13/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][279] ([i915#9519]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-7/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#9519]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-1/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][281] -> [SKIP][282] ([i915#9519]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-5/igt at kms_pm_rpm@dpms-non-lpsp.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#9519]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-7/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][284] -> [SKIP][285] ([i915#9519]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at kms_pm_rpm@modeset-lpsp-stress.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-1/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][286] ([i915#10553]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk4/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#6524] / [i915#6805]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-10/igt at kms_prime@basic-crc-vgem.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#9808]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-7/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-fully-sf at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#12316]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-7/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf at pipe-b-edp-1.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#11520]) +6 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-6/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][291] ([i915#11520]) +12 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-snb7/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][292] ([i915#11520]) +11 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk3/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: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#11520]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-5/igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#11520]) +7 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-13/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#11520]) +9 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#11520]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#9683]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-7/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#1072] / [i915#9732]) +21 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-10/igt at kms_psr@fbc-pr-primary-mmap-gtt.html * igt at kms_psr@fbc-psr2-basic: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#1072] / [i915#9732]) +11 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-17/igt at kms_psr@fbc-psr2-basic.html * igt at kms_psr@fbc-psr2-sprite-blt: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#1072] / [i915#9732]) +3 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-6/igt at kms_psr@fbc-psr2-sprite-blt.html * igt at kms_psr@pr-no-drrs: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#9688]) +4 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-6/igt at kms_psr@pr-no-drrs.html * igt at kms_psr@psr-sprite-blt: - shard-snb: NOTRUN -> [SKIP][302] +460 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-snb5/igt at kms_psr@psr-sprite-blt.html * igt at kms_psr@psr2-primary-render: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#9732]) +18 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-8/igt at kms_psr@psr2-primary-render.html * igt at kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#9732]) +13 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_psr@psr2-sprite-mmap-gtt.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][305] +443 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk8/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#9685]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-12/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#12755]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#5289]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/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][309] ([i915#5289]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#5289]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-17/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: NOTRUN -> [SKIP][311] ([i915#12755] / [i915#5190]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#5289]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#3555]) +4 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-8/igt at kms_scaling_modes@scaling-mode-full.html - shard-dg1: NOTRUN -> [SKIP][314] ([i915#3555]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-13/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][315] ([i915#13179]) +1 other test abort [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-snb2/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#3555]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][317] ([i915#8623]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-6/igt at kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][318] ([i915#8623]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][319] ([i915#3555] / [i915#8808]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-3/igt at kms_vrr@flipline.html * igt at kms_vrr@lobf: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#11920]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-8/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#3555] / [i915#9906]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-1/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#2437] / [i915#9412]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][323] ([i915#2437]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk9/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#2437] / [i915#9412]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-6/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg1: NOTRUN -> [SKIP][325] ([i915#2437] / [i915#9412]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-17/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][326] +7 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-4/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#7387]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-1/igt at perf@global-sseu-config.html * igt at perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][328] ([i915#9100]) +1 other test fail [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at perf@non-zero-reason.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: [PASS][329] -> [FAIL][330] ([i915#4349]) +4 other tests fail [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-11/igt at perf_pmu@busy-double-start at vecs1.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@frequency at gt0: - shard-dg2: NOTRUN -> [FAIL][331] ([i915#12549] / [i915#6806]) +1 other test fail [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-10/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][332] ([i915#11823]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-1/igt at perf_pmu@module-unload.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#8516]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-5/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][334] ([i915#8516]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-3/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at perf_pmu@semaphore-busy at vcs1: - shard-dg1: [PASS][335] -> [FAIL][336] ([i915#4349]) +2 other tests fail [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at perf_pmu@semaphore-busy at vcs1.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-14/igt at perf_pmu@semaphore-busy at vcs1.html * igt at perf_pmu@semaphore-busy at vecs0: - shard-mtlp: [PASS][337] -> [FAIL][338] ([i915#4349]) +4 other tests fail [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-4/igt at perf_pmu@semaphore-busy at vecs0.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-4/igt at perf_pmu@semaphore-busy at vecs0.html * igt at prime_busy@hang: - shard-rkl: [PASS][339] -> [DMESG-WARN][340] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-6/igt at prime_busy@hang.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-7/igt at prime_busy@hang.html * igt at prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][341] ([i915#9351]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-7/igt at prime_mmap@test_aperture_limit.html * igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][342] ([i915#9351]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-7/igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem.html * igt at prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][343] ([i915#3708] / [i915#4077]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-4/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#3291] / [i915#3708]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-5/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][345] ([i915#3708] / [i915#4077]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-8/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][346] +74 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-7/igt at prime_vgem@fence-write-hang.html - shard-dg2: NOTRUN -> [SKIP][347] ([i915#3708]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-5/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][348] ([i915#12910]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-6/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg2: NOTRUN -> [SKIP][349] ([i915#9917]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg1: NOTRUN -> [SKIP][350] ([i915#9917]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-14/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt at gem_ctx_isolation@preservation-s3: - shard-rkl: [DMESG-FAIL][351] ([i915#12964]) -> [PASS][352] +1 other test pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-2/igt at gem_ctx_isolation@preservation-s3.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-7/igt at gem_ctx_isolation@preservation-s3.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [DMESG-WARN][353] ([i915#5493]) -> [PASS][354] +1 other test pass [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at gem_lmem_swapping@smem-oom at lmem0.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-14/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-snb: [INCOMPLETE][355] -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb2/igt at gem_partial_pwrite_pread@writes-after-reads-uncached.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-snb5/igt at gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt at gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][357] -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-10/igt at gem_tiled_swapping@non-threaded.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-6/igt at gem_tiled_swapping@non-threaded.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: [FAIL][359] ([i915#12739] / [i915#3591]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html * igt at i915_pm_rps@engine-order: - shard-glk: [FAIL][361] -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk5/igt at i915_pm_rps@engine-order.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk6/igt at i915_pm_rps@engine-order.html * igt at i915_suspend@basic-s3-without-i915: - shard-glk: [INCOMPLETE][363] ([i915#4817]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk8/igt at i915_suspend@basic-s3-without-i915.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk8/igt at i915_suspend@basic-s3-without-i915.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-tglu: [FAIL][365] ([i915#10991] / [i915#13320]) -> [PASS][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-4/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-7/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1: - shard-tglu: [FAIL][367] ([i915#10991]) -> [PASS][368] [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-4/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-7/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [FAIL][369] ([i915#11808]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-9/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-4/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][371] ([i915#12796]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk1/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk2/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: [FAIL][373] ([i915#2346]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][375] ([i915#2346]) -> [PASS][376] +1 other test pass [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk8/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk8/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [SKIP][377] ([i915#12402]) -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-1/igt at kms_dp_linktrain_fallback@dp-fallback.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-10/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1: - shard-snb: [FAIL][379] ([i915#11989]) -> [PASS][380] +1 other test pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb5/igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-snb2/igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-rkl: [FAIL][381] ([i915#11989]) -> [PASS][382] +1 other test pass [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-2/igt at kms_flip@flip-vs-blocking-wf-vblank.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-2/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1: - shard-tglu: [FAIL][383] ([i915#11989]) -> [PASS][384] +3 other tests pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-10/igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-6/igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff: - shard-dg1: [DMESG-WARN][385] ([i915#4391] / [i915#4423]) -> [PASS][386] +1 other test pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-14/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html * igt at kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][387] ([i915#13030]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-4/igt at kms_hdmi_inject@inject-audio.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-tglu-8/igt at kms_hdmi_inject@inject-audio.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][389] ([i915#9519]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-4/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-1/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [DMESG-WARN][391] ([i915#12964]) -> [PASS][392] +26 other tests pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-1/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-5/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_vblank@query-forked-hang: - shard-rkl: [DMESG-WARN][393] ([i915#12917] / [i915#12964]) -> [PASS][394] +2 other tests pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at kms_vblank@query-forked-hang.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-2/igt at kms_vblank@query-forked-hang.html * igt at perf_pmu@all-busy-check-all: - shard-dg1: [FAIL][395] -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at perf_pmu@all-busy-check-all.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-13/igt at perf_pmu@all-busy-check-all.html - shard-mtlp: [FAIL][397] -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-5/igt at perf_pmu@all-busy-check-all.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-8/igt at perf_pmu@all-busy-check-all.html * igt at perf_pmu@rc6-suspend: - shard-glk: [INCOMPLETE][399] ([i915#13356]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk3/igt at perf_pmu@rc6-suspend.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-glk7/igt at perf_pmu@rc6-suspend.html * igt at syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled: - shard-dg1: [DMESG-WARN][401] ([i915#4423]) -> [PASS][402] +1 other test pass [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-17/igt at syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled.html #### Warnings #### * igt at gem_pxp@create-protected-buffer: - shard-rkl: [TIMEOUT][403] ([i915#12964]) -> [SKIP][404] ([i915#4270]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at gem_pxp@create-protected-buffer.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-1/igt at gem_pxp@create-protected-buffer.html * igt at gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: [TIMEOUT][405] ([i915#12917] / [i915#12964]) -> [SKIP][406] ([i915#4270]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-rkl-7/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: [DMESG-WARN][407] ([i915#13475]) -> [ABORT][408] ([i915#13493] / [i915#9820]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-17/igt at i915_module_load@reload-with-fault-injection.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-18/igt at i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][409] ([i915#10131] / [i915#10887] / [i915#13493] / [i915#9820]) -> [DMESG-WARN][410] ([i915#10887] / [i915#13475]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-6/igt at i915_module_load@reload-with-fault-injection.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-mtlp-4/igt at i915_module_load@reload-with-fault-injection.html - shard-dg2: [DMESG-WARN][411] ([i915#10887] / [i915#13475]) -> [ABORT][412] ([i915#9820]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-4/igt at i915_module_load@reload-with-fault-injection.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-5/igt at i915_module_load@reload-with-fault-injection.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: [SKIP][413] ([i915#4538] / [i915#5286]) -> [SKIP][414] ([i915#4423] / [i915#4538] / [i915#5286]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-12/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-13/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: [SKIP][415] ([i915#4423] / [i915#9067]) -> [SKIP][416] ([i915#9067]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-13/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: [SKIP][417] ([i915#3458]) -> [SKIP][418] ([i915#10433] / [i915#3458]) +2 other tests skip [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-10/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_hdr@brightness-with-hdr: - shard-dg1: [SKIP][419] ([i915#1187] / [i915#12713]) -> [SKIP][420] ([i915#12713]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_hdr@brightness-with-hdr.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-12/igt at kms_hdr@brightness-with-hdr.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-dg1: [SKIP][421] ([i915#4423] / [i915#5289]) -> [SKIP][422] ([i915#5289]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/shard-dg1-18/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030 [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [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#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#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11823 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [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#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402 [i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12431/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 14 22:41:43 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 14 Jan 2025 22:41:43 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fpm=5Fre?= =?utf-8?q?sidency=3A_Skip_on_igt=5Fpower=5Fopen_failure_=28rev5=29?= In-Reply-To: <20250110212237.4052-1-jonathan.cavitt@intel.com> References: <20250110212237.4052-1-jonathan.cavitt@intel.com> Message-ID: <173689450346.3740975.14413556003856631912@b555e5b46a47> == Series Details == Series: tests/intel/xe_pm_residency: Skip on igt_power_open failure (rev5) URL : https://patchwork.freedesktop.org/series/139352/ State : failure == Summary == CI Bug Log - changes from IGT_8188_full -> IGTPW_12432_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12432_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12432_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_12432/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12432_full: ### IGT changes ### #### Possible regressions #### * igt at i915_pm_rc6_residency@rc6-fence: - shard-rkl: [PASS][1] -> [SKIP][2] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-1/igt at i915_pm_rc6_residency@rc6-fence.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-2/igt at i915_pm_rc6_residency@rc6-fence.html #### Warnings #### * igt at gem_tiled_swapping@non-threaded: - shard-rkl: [DMESG-FAIL][3] ([i915#12964]) -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-4/igt at gem_tiled_swapping@non-threaded.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-3/igt at gem_tiled_swapping@non-threaded.html Known issues ------------ Here are the changes found in IGTPW_12432_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-11/igt at api_intel_bb@object-reloc-purge-cache.html * igt at debugfs_test@basic-hwmon: - shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#9318]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at debugfs_test@basic-hwmon.html * igt at drm_fdinfo@busy-hang at bcs0: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +8 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at drm_fdinfo@busy-hang at bcs0.html * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +6 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-3/igt at drm_fdinfo@busy-idle at vecs0.html * igt at drm_fdinfo@most-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +6 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-18/igt at drm_fdinfo@most-busy-check-all.html * igt at gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-9/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-7/igt at gem_ccs@ctrl-surf-copy.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-4/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_create@create-ext-set-pat: - shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#8562]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][16] ([i915#12353]) +1 other test incomplete [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk7/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-5/igt at gem_ctx_persistence@hang.html * igt at gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at gem_ctx_persistence@heartbeat-close.html * igt at gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-12/igt at gem_ctx_persistence@heartbeat-many.html * igt at gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) +4 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-snb7/igt at gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt at gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#280]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-4/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-2/igt at gem_ctx_sseu@invalid-args.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#280]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-18/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@hibernate: - shard-dg1: [PASS][25] -> [ABORT][26] ([i915#7975] / [i915#8213]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-18/igt at gem_eio@hibernate.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-14/igt at gem_eio@hibernate.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][27] ([i915#13197] / [i915#13390]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk7/igt at gem_eio@in-flight-suspend.html * igt at gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4771]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-8/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-4/igt at gem_exec_balancer@parallel-keep-submit-fence.html - shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#4525]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_balancer@parallel-out-fence: - shard-tglu: NOTRUN -> [SKIP][31] ([i915#4525]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-10/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_endless@dispatch at vcs0: - shard-dg2: [PASS][32] -> [TIMEOUT][33] ([i915#3778] / [i915#7016]) +1 other test timeout [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-7/igt at gem_exec_endless@dispatch at vcs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-11/igt at gem_exec_endless@dispatch at vcs0.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4812]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-18/igt at gem_exec_fence@submit.html * igt at gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-4/igt at gem_exec_fence@submit67.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-14/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-1/igt at gem_exec_flush@basic-wb-rw-default.html * igt at gem_exec_parallel@engines: - shard-rkl: NOTRUN -> [DMESG-WARN][38] ([i915#12964]) +11 other tests dmesg-warn [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-4/igt at gem_exec_parallel@engines.html * igt at gem_exec_reloc@basic-cpu-read: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +13 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-4/igt at gem_exec_reloc@basic-cpu-read.html * igt at gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-5/igt at gem_exec_reloc@basic-cpu-read-noreloc.html * igt at gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-2/igt at gem_exec_reloc@basic-gtt-cpu-active.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +5 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-8/igt at gem_exec_schedule@preempt-queue.html * igt at gem_fence_thrash@bo-write-verify-none: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4860]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at gem_fence_thrash@bo-write-verify-none.html * igt at gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4860]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-12/igt at gem_fence_thrash@bo-write-verify-threaded-none.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4860]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-2/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_lmem_swapping@heavy-verify-multi: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-1/igt at gem_lmem_swapping@heavy-verify-multi.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-3/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@parallel-multi: - shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#4613]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at gem_lmem_swapping@parallel-multi.html * igt at gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][50] ([i915#4613]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk7/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#12193]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-18/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_lmem_swapping@verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4565]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-18/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_madvise@dontneed-before-pwrite: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3282]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-4/igt at gem_madvise@dontneed-before-pwrite.html * igt at gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#8289]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-11/igt at gem_media_fill@media-fill.html * igt at gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#284]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at gem_media_vme.html - shard-tglu: NOTRUN -> [SKIP][56] ([i915#284]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-7/igt at gem_media_vme.html * igt at gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at gem_mmap@bad-object.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +14 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-11/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@basic-small-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4077]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-2/igt at gem_mmap_gtt@basic-small-copy-xy.html * igt at gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at gem_mmap_wc@fault-concurrent.html * igt at gem_mmap_wc@write-prefaulted: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-8/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +13 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-5/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_partial_pwrite_pread@write-uncached: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3282]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-18/igt at gem_partial_pwrite_pread@write-uncached.html * igt at gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][64] ([i915#2658]) +1 other test warn [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][65] ([i915#2658]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk4/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][66] ([i915#2658]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-snb2/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-7/igt at gem_pwrite_snooped.html * igt at gem_pxp@display-protected-crc: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4270]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][69] ([i915#12964]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-4/igt at gem_pxp@fail-invalid-protected-context.html * igt at gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at gem_pxp@protected-raw-src-copy-not-readible.html * igt at gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: NOTRUN -> [TIMEOUT][71] ([i915#12917] / [i915#12964]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-3/igt at gem_pxp@reject-modify-context-protection-off-1.html * igt at gem_render_copy@y-tiled-ccs-to-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#8428]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-4/igt at gem_render_copy@y-tiled-ccs-to-y-tiled.html * igt at gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#5190] / [i915#8428]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4079]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-12/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4885]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-8/igt at gem_softpin@evict-snoop.html * igt at gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4077]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-12/igt at gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-4/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297]) +6 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-8/igt at gem_userptr_blits@dmabuf-unsync.html - shard-tglu-1: NOTRUN -> [SKIP][79] ([i915#3297]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3282] / [i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-5/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-4/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#4880]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-12/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@relocations: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#3281] / [i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#3297]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-9/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-12/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][87] +9 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-1/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@allowed-all: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-2/igt at gen9_exec_parse@allowed-all.html * igt at gen9_exec_parse@allowed-single: - shard-glk: NOTRUN -> [ABORT][89] ([i915#5566]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk3/igt at gen9_exec_parse@allowed-single.html * igt at gen9_exec_parse@bb-chained: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-7/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-oversize: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#2856]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-1/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#2527]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-17/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@bb-start-far: - shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at gen9_exec_parse@bb-start-far.html * igt at gen9_exec_parse@unaligned-access: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#2856]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-2/igt at gen9_exec_parse@unaligned-access.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_12432/shard-dg1-18/igt at i915_module_load@resize-bar.html * igt at i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#8399]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-8/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_freq_api@freq-reset-multiple: - shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#8399]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at i915_pm_freq_api@freq-reset-multiple.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#6590]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0: - shard-dg1: [PASS][99] -> [FAIL][100] ([i915#12739] / [i915#3591]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0.html * igt at i915_pm_rpm@system-suspend: - shard-glk: [PASS][101] -> [INCOMPLETE][102] ([i915#12797]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk1/igt at i915_pm_rpm@system-suspend.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk4/igt at i915_pm_rpm@system-suspend.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#11681] / [i915#6621]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@thresholds-idle: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#11681]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-18/igt at i915_pm_rps@thresholds-idle.html * igt at i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#6245]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-7/igt at i915_query@hwconfig_table.html * igt at i915_selftest@mock: - shard-tglu: NOTRUN -> [DMESG-WARN][106] ([i915#9311]) +1 other test dmesg-warn [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-6/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-snb: NOTRUN -> [DMESG-WARN][107] ([i915#9311]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-snb2/igt at i915_selftest@mock at memory_region.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#4212]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-6/igt at kms_addfb_basic@basic-x-tiled-legacy.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][109] ([i915#8709]) +15 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/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 at pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#8709]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-3/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][111] ([i915#8709]) +23 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/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_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#9531]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-11/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][113] ([i915#9531]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][114] ([i915#1769]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-snb7/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-4/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][116] ([i915#1769] / [i915#3555]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_atomic_transition@plane-all-transition-fencing at pipe-b-hdmi-a-2: - shard-rkl: [PASS][117] -> [DMESG-WARN][118] ([i915#12964]) +49 other tests dmesg-warn [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-6/igt at kms_atomic_transition@plane-all-transition-fencing at pipe-b-hdmi-a-2.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-5/igt at kms_atomic_transition@plane-all-transition-fencing at pipe-b-hdmi-a-2.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5286]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-5/igt at kms_big_fb@4-tiled-32bpp-rotate-0.html * igt at kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#5286]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-14/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#5286]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-7/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: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#5286]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/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-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#3638]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-3/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5190]) +12 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-8/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#5190]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-17/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#12313]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-4/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#12313]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#10434] / [i915#6095]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-4/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#6095]) +59 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-8/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#12313]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_ccs@crc-primary-rotation-180-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][133] ([i915#6095]) +19 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-6/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-rc-ccs-cc at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#6095]) +29 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#12805]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-5/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][136] ([i915#12805]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/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-mc-ccs at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#6095]) +9 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-7/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-yf-tiled-ccs at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][138] ([i915#12796]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-2.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#6095]) +162 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-4/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][140] +341 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk8/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#12313]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][142] ([i915#12313]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-3/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#6095]) +66 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-1/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#6095]) +135 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/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 at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#4087]) +3 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/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-dg1: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +5 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +13 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-1/igt at kms_chamelium_frames@hdmi-crc-multiple.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-1/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][149] ([i915#11151] / [i915#7828]) +4 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +6 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-8/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-2/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#9979]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-3/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic at pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][153] ([i915#7173]) +1 other test timeout [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at kms_content_protection@atomic at pipe-a-dp-4.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#3116] / [i915#3299]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-2/igt at kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3299]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-1/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#9424]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-3/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#9424]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-14/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#9424]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-7/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#7118]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-11/igt at kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#7116] / [i915#7118]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-7/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#13049]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-6/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#13049]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-8/igt at kms_cursor_crc@cursor-offscreen-512x512.html - shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#13049]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#13049]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-4/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#13049]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-18/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555]) +7 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-8/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#3555]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-64x21: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#8814]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-1/igt at kms_cursor_crc@cursor-sliding-64x21.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#9809]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-2/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][171] +7 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-1/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#13046] / [i915#5354]) +6 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-8/igt at kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#9067]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-8/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#9067]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/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][175] ([i915#4103] / [i915#4213]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-17/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-tglu: NOTRUN -> [SKIP][176] ([i915#4103]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#4103] / [i915#4213]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][178] ([i915#4103]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#9723]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-14/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#3555]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-18/igt at kms_dither@fb-8bpc-vs-panel-8bpc.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#8812]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-5/igt at kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][182] ([i915#8812]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-14/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#3840]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-6/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3840]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-8/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-2/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#3469]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-1/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3955]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-5/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#1839]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-7/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#9337]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-1/igt at kms_feature_discovery@dp-mst.html - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#9337]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#658]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-3/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#658]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_feature_discovery@psr2.html * igt at kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#4881]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-17/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-blocking-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#9934]) +3 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-12/igt at kms_flip@2x-blocking-wf_vblank.html * igt at kms_flip@2x-flip-vs-fences: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#3637]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-3/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-rmfb: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3637]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-3/igt at kms_flip@2x-flip-vs-rmfb.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][198] ([i915#12745] / [i915#4839]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk6/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][199] ([i915#4839]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk6/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#3637]) +6 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/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-dg2: NOTRUN -> [SKIP][201] ([i915#9934]) +10 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/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-rkl: NOTRUN -> [SKIP][202] ([i915#9934]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-1/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1: - shard-mtlp: [PASS][203] -> [FAIL][204] ([i915#11989]) +2 other tests fail [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-4/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-2/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html * igt at kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#8381]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-11/igt at kms_flip@flip-vs-fences.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#2672] / [i915#3555]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/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][207] ([i915#2587] / [i915#2672]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/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-downscaling: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-4/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#2672]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-4/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-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#2672] / [i915#3555]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-8/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#2672] / [i915#3555] / [i915#8813]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#2672] / [i915#8813]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-2/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-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-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672] / [i915#3555]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8810] / [i915#8813]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8810]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/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][218] ([i915#2587] / [i915#2672]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/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-upscaling: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][220] +47 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt: - shard-snb: [PASS][221] -> [SKIP][222] [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#1825]) +7 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#8708]) +26 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#9766]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-14/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#3458]) +19 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#1825]) +12 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#5354]) +35 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-8/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#8708]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-3/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#3023]) +15 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-7/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#8708]) +14 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#3458]) +11 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-12/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#6118]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@bpc-switch: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8228]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-10/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8228]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-18/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-11/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#13331]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at kms_hdr@brightness-with-hdr.html - shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#12713]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-7/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-dg2: [PASS][240] -> [SKIP][241] ([i915#3555] / [i915#8228]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-10/igt at kms_hdr@static-toggle.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-7/igt at kms_hdr@static-toggle.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#12394]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_joiner@basic-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][243] ([i915#12394]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#10656]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-6/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#12388]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-dg1: NOTRUN -> [SKIP][246] +27 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-12/igt at kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][247] ([i915#13409] / [i915#13476]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk4/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][248] ([i915#13026]) +1 other test incomplete [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk6/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#8821]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#13046] / [i915#5354] / [i915#9423]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-7/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#12247]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-5/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][252] ([i915#12247]) +9 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-10/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#12247] / [i915#9423]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-1/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-d: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#12247]) +7 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-d.html * igt at kms_plane_scaling@plane-upscale-factor-0-25-with-rotation at pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#12247]) +9 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/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-dg2: NOTRUN -> [SKIP][256] ([i915#12247] / [i915#6953] / [i915#9423]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/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][257] ([i915#12247] / [i915#6953]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-3/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][258] ([i915#12247]) +3 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-3/igt at kms_plane_scaling@planes-downscale-factor-0-5 at pipe-b.html * igt at kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#5354]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-5/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#9812]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-7/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#12343]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-3/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#9685]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-3/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#3828]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-1/igt at kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][264] ([i915#3828]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-18/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][265] ([i915#9519]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-7/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#9519]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-4/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#9519]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#9519]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at kms_pm_rpm@modeset-lpsp.html - shard-rkl: [PASS][269] -> [SKIP][270] ([i915#9519]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at kms_pm_rpm@modeset-lpsp.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-1/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#6524] / [i915#6805]) +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-8/igt at kms_prime@basic-crc-vgem.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-glk: NOTRUN -> [SKIP][272] ([i915#11520]) +7 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk1/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#9808]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-7/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-fully-sf at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#12316]) +2 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-7/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf at pipe-b-edp-1.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][275] ([i915#11520]) +11 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-snb2/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#11520]) +4 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#11520]) +8 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-10/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#11520]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-1/igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#11520]) +7 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-17/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#11520]) +5 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-1/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#9683]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#9683]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-pr-no-drrs: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#1072] / [i915#9732]) +7 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-7/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#1072] / [i915#9732]) +19 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-4/igt at kms_psr@fbc-psr-primary-mmap-gtt.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#9732]) +11 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_psr@pr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#1072] / [i915#9732]) +9 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-17/igt at kms_psr@pr-cursor-plane-onoff.html * igt at kms_psr@pr-no-drrs: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#9688]) +4 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-5/igt at kms_psr@pr-no-drrs.html * igt at kms_psr@pr-primary-page-flip: - shard-tglu: NOTRUN -> [SKIP][288] ([i915#9732]) +13 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-7/igt at kms_psr@pr-primary-page-flip.html * igt at kms_psr@psr-sprite-blt: - shard-snb: NOTRUN -> [SKIP][289] +487 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-snb5/igt at kms_psr@psr-sprite-blt.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#9685]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][291] ([i915#9685]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#4235]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-8/igt at kms_rotation_crc@exhaust-fences.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#5289]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-3/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#12755]) +3 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#5289]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#5289]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#5289]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#3555]) +4 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-7/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@invalid-clone-exclusive-crtc: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#3555]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-5/igt at kms_setmode@invalid-clone-exclusive-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#8623]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-7/igt at kms_tiled_display@basic-test-pattern.html - shard-glk: NOTRUN -> [FAIL][301] ([i915#10959]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk7/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#8808]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-1/igt at kms_vrr@flipline.html * igt at kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#11920]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-11/igt at kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][304] ([i915#11920]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-10/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#2437]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-7/igt at kms_writeback@writeback-check-output.html - shard-rkl: NOTRUN -> [SKIP][306] ([i915#2437]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-7/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#2437] / [i915#9412]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#2437] / [i915#9412]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-2/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#2437]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#2437] / [i915#9412]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-14/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][311] +7 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-3/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#2434]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-7/igt at perf@mi-rpc.html * igt at perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][313] ([i915#9100]) +1 other test fail [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-5/igt at perf@non-zero-reason.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: [PASS][314] -> [FAIL][315] ([i915#4349]) +4 other tests fail [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-11/igt at perf_pmu@busy-double-start at vecs1.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#8516]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-6/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at perf_pmu@render-node-busy-idle at vcs1: - shard-mtlp: [PASS][317] -> [FAIL][318] ([i915#4349]) +3 other tests fail [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-6/igt at perf_pmu@render-node-busy-idle at vcs1.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-7/igt at perf_pmu@render-node-busy-idle at vcs1.html - shard-dg1: [PASS][319] -> [FAIL][320] ([i915#4349]) +1 other test fail [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-18/igt at perf_pmu@render-node-busy-idle at vcs1.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at perf_pmu@render-node-busy-idle at vcs1.html * igt at prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#3708] / [i915#4077]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-8/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#3291] / [i915#3708]) +2 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-10/igt at prime_vgem@basic-write.html * igt at prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#3708]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-11/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][324] +73 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-6/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][325] ([i915#12910]) +19 other tests fail [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-1/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][326] ([i915#12910]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-7/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg2: NOTRUN -> [SKIP][327] ([i915#9917]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-5/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg1: NOTRUN -> [SKIP][328] ([i915#9917]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-14/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt at gem_ctx_isolation@preservation-s3: - shard-rkl: [DMESG-FAIL][329] ([i915#12964]) -> [PASS][330] +2 other tests pass [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-2/igt at gem_ctx_isolation@preservation-s3.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-4/igt at gem_ctx_isolation@preservation-s3.html * igt at gem_ctx_isolation@preservation-s3 at vecs1: - shard-dg2: [INCOMPLETE][331] ([i915#12353]) -> [PASS][332] +1 other test pass [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-5/igt at gem_ctx_isolation@preservation-s3 at vecs1.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-5/igt at gem_ctx_isolation@preservation-s3 at vecs1.html * igt at gem_eio@reset-stress: - shard-dg1: [FAIL][333] ([i915#12543] / [i915#5784]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-18/igt at gem_eio@reset-stress.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at gem_eio@reset-stress.html * igt at gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-snb: [INCOMPLETE][335] -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb2/igt at gem_partial_pwrite_pread@writes-after-reads-uncached.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-snb7/igt at gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt at gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][337] -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-10/igt at gem_tiled_swapping@non-threaded.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-10/igt at gem_tiled_swapping@non-threaded.html * igt at gem_workarounds@suspend-resume: - shard-glk: [INCOMPLETE][339] ([i915#13356]) -> [PASS][340] +1 other test pass [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk2/igt at gem_workarounds@suspend-resume.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk7/igt at gem_workarounds@suspend-resume.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: [FAIL][341] ([i915#12739] / [i915#3591]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html * igt at i915_selftest@mock at sanitycheck: - shard-snb: [ABORT][343] ([i915#11703]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb7/igt at i915_selftest@mock at sanitycheck.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-snb2/igt at i915_selftest@mock at sanitycheck.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-tglu: [FAIL][345] ([i915#10991] / [i915#13320]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-4/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-2/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1: - shard-tglu: [FAIL][347] ([i915#10991]) -> [PASS][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-4/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-2/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: [INCOMPLETE][349] ([i915#12761]) -> [PASS][350] +1 other test pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk5/igt at kms_async_flips@async-flip-suspend-resume.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk7/igt at kms_async_flips@async-flip-suspend-resume.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [FAIL][351] ([i915#11808]) -> [PASS][352] +1 other test pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-9/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/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][353] ([i915#12796]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk1/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: [FAIL][355] ([i915#2346]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][357] ([i915#2346]) -> [PASS][358] +1 other test pass [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk8/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk2/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-rkl: [FAIL][359] ([i915#11989]) -> [PASS][360] +1 other test pass [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-2/igt at kms_flip@flip-vs-blocking-wf-vblank.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-2/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1: - shard-tglu: [FAIL][361] ([i915#11989]) -> [PASS][362] +3 other tests pass [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-10/igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-4/igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check: - shard-dg2: [FAIL][363] ([i915#11989]) -> [PASS][364] +1 other test pass [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-5/igt at kms_flip@plain-flip-ts-check.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-7/igt at kms_flip@plain-flip-ts-check.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff: - shard-dg1: [DMESG-WARN][365] ([i915#4391] / [i915#4423]) -> [PASS][366] +1 other test pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-14/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html * igt at kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][367] ([i915#13030]) -> [PASS][368] [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-4/igt at kms_hdmi_inject@inject-audio.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-8/igt at kms_hdmi_inject@inject-audio.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][369] ([i915#12756]) -> [PASS][370] [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk9/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk4/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][371] ([i915#4281]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-7/igt at kms_pm_dc@dc9-dpms.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-tglu-6/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][373] ([i915#9519]) -> [PASS][374] +1 other test pass [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-4/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-11/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][375] ([i915#9519]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-5/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-7/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [DMESG-WARN][377] ([i915#12964]) -> [PASS][378] +45 other tests pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-1/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-3/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_vblank@query-forked-hang: - shard-rkl: [DMESG-WARN][379] ([i915#12917] / [i915#12964]) -> [PASS][380] +2 other tests pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt at kms_vblank@query-forked-hang.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-5/igt at kms_vblank@query-forked-hang.html * igt at perf_pmu@all-busy-check-all: - shard-dg1: [FAIL][381] -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at perf_pmu@all-busy-check-all.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-18/igt at perf_pmu@all-busy-check-all.html - shard-mtlp: [FAIL][383] -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-5/igt at perf_pmu@all-busy-check-all.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-5/igt at perf_pmu@all-busy-check-all.html * igt at syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled: - shard-dg1: [DMESG-WARN][385] ([i915#4423]) -> [PASS][386] +1 other test pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled.html #### Warnings #### * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [DMESG-WARN][387] ([i915#5493]) -> [TIMEOUT][388] ([i915#5493]) +1 other test timeout [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at gem_lmem_swapping@smem-oom at lmem0.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-18/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_pxp@display-protected-crc: - shard-rkl: [SKIP][389] ([i915#4270]) -> [TIMEOUT][390] ([i915#12917] / [i915#12964]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-5/igt at gem_pxp@display-protected-crc.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-5/igt at gem_pxp@display-protected-crc.html * igt at i915_pm_rpm@gem-mmap-type: - shard-rkl: [SKIP][391] ([i915#13328]) -> [DMESG-WARN][392] ([i915#12964]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-5/igt at i915_pm_rpm@gem-mmap-type.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-1/igt at i915_pm_rpm@gem-mmap-type.html * igt at i915_pm_rpm@reg-read-ioctl: - shard-rkl: [DMESG-WARN][393] ([i915#12964]) -> [SKIP][394] ([i915#13328]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-4/igt at i915_pm_rpm@reg-read-ioctl.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-7/igt at i915_pm_rpm@reg-read-ioctl.html * igt at i915_selftest@mock: - shard-snb: [ABORT][395] ([i915#11703]) -> [DMESG-WARN][396] ([i915#9311]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb7/igt at i915_selftest@mock.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-snb2/igt at i915_selftest@mock.html * igt at kms_content_protection@mei-interface: - shard-dg1: [SKIP][397] ([i915#9424]) -> [SKIP][398] ([i915#4423] / [i915#9424]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at kms_content_protection@mei-interface.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-14/igt at kms_content_protection@mei-interface.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: [SKIP][399] ([i915#4423] / [i915#9067]) -> [SKIP][400] ([i915#9067]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_flip@flip-vs-suspend: - shard-glk: [INCOMPLETE][401] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][402] ([i915#12745] / [i915#1982] / [i915#4839]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk5/igt at kms_flip@flip-vs-suspend.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk5/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-glk: [INCOMPLETE][403] ([i915#12745]) -> [INCOMPLETE][404] ([i915#12745] / [i915#1982]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk5/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-glk5/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-dg1: [SKIP][405] ([i915#4423]) -> [SKIP][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][407] ([i915#3458]) -> [SKIP][408] ([i915#10433] / [i915#3458]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-10/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][409] ([i915#12713]) -> [SKIP][410] ([i915#1187] / [i915#12713]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-5/igt at kms_hdr@brightness-with-hdr.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-mtlp-1/igt at kms_hdr@brightness-with-hdr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][411] ([i915#9340]) -> [SKIP][412] ([i915#3828]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-6/igt at kms_pm_lpsp@kms-lpsp.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-7/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][413] ([i915#9519]) -> [SKIP][414] ([i915#12916]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-4/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-rkl-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-dg1: [SKIP][415] ([i915#11520] / [i915#4423]) -> [SKIP][416] ([i915#11520]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-18/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-13/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-pr-primary-render: - shard-dg1: [SKIP][417] ([i915#1072] / [i915#9732]) -> [SKIP][418] ([i915#1072] / [i915#4423] / [i915#9732]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt at kms_psr@fbc-pr-primary-render.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-14/igt at kms_psr@fbc-pr-primary-render.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-dg1: [SKIP][419] ([i915#4423] / [i915#5289]) -> [SKIP][420] ([i915#5289]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/shard-dg1-17/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543 [i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12739 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12796]: https://gitlab.freedesktop.org/drm/i == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12432/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Wed Jan 15 00:01:11 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 00:01:11 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel-ci=3A_Fix_a_sy?= =?utf-8?q?ntax_err_in_xe=2Eblocklist=2Etxt?= In-Reply-To: <20250114173523.3267049-1-oak.zeng@intel.com> References: <20250114173523.3267049-1-oak.zeng@intel.com> Message-ID: <173689927142.3758484.13032617055866397864@b555e5b46a47> == Series Details == Series: tests/intel-ci: Fix a syntax err in xe.blocklist.txt URL : https://patchwork.freedesktop.org/series/143518/ State : failure == Summary == CI Bug Log - changes from XEIGT_8190_full -> XEIGTPW_12437_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12437_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12437_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_12437_full: ### IGT changes ### #### Possible regressions #### * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-2-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][1] +23 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-2-4-rc-ccs-cc.html * igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3: - shard-bmg: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible at ac-dp2-hdmi-a3: - shard-bmg: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_flip@2x-wf_vblank-ts-check-interruptible at ac-dp2-hdmi-a3.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-3/igt at kms_flip@2x-wf_vblank-ts-check-interruptible at ac-dp2-hdmi-a3.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-c-edp-1: - shard-lnl: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-5/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-c-edp-1.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-7/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-c-edp-1.html * igt at xe_evict_ccs@evict-overcommit-parallel-nofree-samefd: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][8] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html New tests --------- New tests have been introduced between XEIGT_8190_full and XEIGTPW_12437_full: ### New IGT tests (1) ### * igt at xe_copy_basic: - Statuses : 1 incomplete(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12437_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotreplug-lateclose: - shard-lnl: NOTRUN -> [ABORT][9] ([Intel XE#3914]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-6/igt at core_hotunplug@hotreplug-lateclose.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1466]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-3/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#873]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#316]) +4 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1407]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-8/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@y-tiled-16bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_big_fb@y-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1467]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-3/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +4 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-6/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: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +11 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1477]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-7/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: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-1/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2191]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-3/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#367]) +11 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-434/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#2191]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#367]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-8/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-8/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#787]) +195 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#455] / [Intel XE#787]) +41 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs at pipe-d-dp-2.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#3432]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-7/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-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#3442]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-dp-2.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#2907]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/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-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2669]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-4/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][34] ([Intel XE#1727] / [Intel XE#3124]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-464/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-4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][35] ([Intel XE#1727] / [Intel XE#3113]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][36] ([Intel XE#3124]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_chamelium_color@ctm-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#306]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_color@ctm-limited-range: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#306]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-4/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2252]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-1/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +14 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_chamelium_hpd@vga-hpd.html - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#373]) +5 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-6/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#3278]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-1/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@lic-type-1: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2341]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-6/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][44] ([Intel XE#1178]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_content_protection@srm at pipe-a-dp-2.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][45] ([Intel XE#1178]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-offscreen-64x21: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1424]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-6/igt at kms_cursor_crc@cursor-offscreen-64x21.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#308]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2321]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-1/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-bmg: [PASS][49] -> [SKIP][50] ([Intel XE#3007]) +10 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-bmg: [PASS][51] -> [INCOMPLETE][52] ([Intel XE#3226]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-dg2-set2: [PASS][53] -> [SKIP][54] ([i915#2575]) +11 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][55] -> [DMESG-WARN][56] ([Intel XE#877]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2291]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#309]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_dsc@dsc-fractional-bpp: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2244]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-8/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#701]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1135]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1421]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-3/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2316]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-5/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-6/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-bmg: [PASS][66] -> [INCOMPLETE][67] ([Intel XE#2635]) +1 other test incomplete [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-3/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#886]) +10 other tests fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-8/igt at kms_flip@flip-vs-absolute-wf_vblank.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-8/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][70] ([Intel XE#301]) +3 other tests fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-suspend: - shard-bmg: [PASS][71] -> [INCOMPLETE][72] ([Intel XE#2597]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-5/igt at kms_flip@flip-vs-suspend.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-7/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [PASS][73] -> [INCOMPLETE][74] ([Intel XE#2049] / [Intel XE#2597]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp4: - shard-dg2-set2: [PASS][75] -> [INCOMPLETE][76] ([Intel XE#2049]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2293]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1401]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1401] / [Intel XE#1745]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([i915#5274]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2311]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#651]) +45 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-dg2-set2: [PASS][83] -> [SKIP][84] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [FAIL][85] ([Intel XE#2333]) +1 other test fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#651]) +8 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-4/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2136] / [Intel XE#2231]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2313]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#656]) +20 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#1158]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#653]) +39 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_hdr@bpc-switch-suspend: - shard-dg2-set2: NOTRUN -> [ABORT][92] ([Intel XE#2625]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][93] ([Intel XE#4048]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_hdr@bpc-switch-suspend at pipe-a-dp-2.html * igt at kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1503]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-4/igt at kms_hdr@static-toggle-dpms.html * igt at kms_plane_cursor@overlay: - shard-dg2-set2: NOTRUN -> [FAIL][95] ([Intel XE#616]) +1 other test fail [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_plane_cursor@overlay.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][96] ([Intel XE#361]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-2.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2763]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-464/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-464/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2763]) +8 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75 at pipe-a: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2763]) +11 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-6/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75 at pipe-a.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#870]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: NOTRUN -> [FAIL][102] ([Intel XE#718]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-7/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#908]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-dg2-set2: [PASS][104] -> [SKIP][105] ([Intel XE#2446]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at kms_pm_rpm@modeset-non-lpsp.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@universal-planes-dpms: - shard-bmg: [PASS][106] -> [SKIP][107] ([Intel XE#2446]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_pm_rpm@universal-planes-dpms.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_pm_rpm@universal-planes-dpms.html - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2446]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_pm_rpm@universal-planes-dpms.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#1489]) +16 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#2893]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-5/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#1122]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2850] / [Intel XE#929]) +18 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-434/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-basic: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2234] / [Intel XE#2850]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-1/igt at kms_psr@pr-basic.html * igt at kms_psr@pr-sprite-plane-move: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1406]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-5/igt at kms_psr@pr-sprite-plane-move.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#3414]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#3414] / [Intel XE#3904]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-6/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([i915#2575]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [PASS][118] -> [FAIL][119] ([Intel XE#2883]) +2 other tests fail [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1500]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-464/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@cmrr: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2168]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/igt at kms_vrr@cmrr.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][122] -> [FAIL][123] ([Intel XE#2159]) +1 other test fail [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-4/igt at kms_vrr@cmrr at pipe-a-edp-1.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-8/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#455]) +26 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1499]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-5/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#756]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at kms_writeback@writeback-fb-id.html - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#756]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-5/igt at kms_writeback@writeback-fb-id.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#1091] / [Intel XE#2849]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute@ccs-mode-basic: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1447]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-4/igt at xe_compute@ccs-mode-basic.html * igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-434/igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_copy_basic (NEW): - shard-bmg: NOTRUN -> [INCOMPLETE][131] ([Intel XE#2594]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-5/igt at xe_copy_basic.html * igt at xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#1123]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at xe_copy_basic@mem-copy-linear-0x369.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#1126]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#2905]) +11 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-464/igt at xe_eudebug@basic-close.html - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#2905]) +6 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-4/igt at xe_eudebug@basic-close.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#3889]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#3889]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-2/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#688]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-5/igt at xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html * igt at xe_exec_basic@multigpu-no-exec-null-rebind: - shard-dg2-set2: [PASS][139] -> [SKIP][140] ([Intel XE#1392]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at xe_exec_basic@multigpu-no-exec-null-rebind.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-rebind.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1392]) +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-6/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#288]) +31 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/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: NOTRUN -> [SKIP][143] ([Intel XE#2360]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_gt_freq@freq_suspend: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#584]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-6/igt at xe_gt_freq@freq_suspend.html * igt at xe_intel_bb@intel-bb-blit-x: - shard-bmg: [PASS][145] -> [SKIP][146] ([Intel XE#1130]) +35 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at xe_intel_bb@intel-bb-blit-x.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at xe_intel_bb@intel-bb-blit-x.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2229]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html * igt at xe_mmap@pci-membarrier-bad-object: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#4045]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at xe_mmap@pci-membarrier-bad-object.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#378]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-5/igt at xe_module_load@force-load.html * igt at xe_module_load@many-reload: - shard-bmg: [PASS][150] -> [FAIL][151] ([Intel XE#3546]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at xe_module_load@many-reload.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-3/igt at xe_module_load@many-reload.html - shard-dg2-set2: NOTRUN -> [FAIL][152] ([Intel XE#3546]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at xe_module_load@many-reload.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#2541] / [Intel XE#3573]) +10 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1420] / [Intel XE#2838]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-8/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#979]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-464/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@write: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#1061]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_peer2peer@write.html - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1061]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-7/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#2284] / [Intel XE#366]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-434/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#2284]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-4/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s4-d3hot-basic-exec: - shard-lnl: [PASS][160] -> [ABORT][161] ([Intel XE#1358] / [Intel XE#1607]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-1/igt at xe_pm@s4-d3hot-basic-exec.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-2/igt at xe_pm@s4-d3hot-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_12437/shard-dg2-435/igt at xe_pm@vram-d3cold-threshold.html - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#579]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-1/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_pm_residency@cpg-basic: - shard-dg2-set2: [PASS][164] -> [ABORT][165] ([Intel XE#4046]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at xe_pm_residency@cpg-basic.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_pm_residency@cpg-basic.html * igt at xe_prime_self_import@basic-with_fd_dup: - shard-dg2-set2: [PASS][166] -> [SKIP][167] ([Intel XE#1130]) +16 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at xe_prime_self_import@basic-with_fd_dup.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_prime_self_import@basic-with_fd_dup.html * igt at xe_query@multigpu-query-oa-units: - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#944]) +4 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_query@multigpu-query-oa-units.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#944]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-5/igt at xe_query@multigpu-query-topology-l3-bank-mask.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#3342]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-5/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@large-misaligned-binds-536870912: - shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#1130]) +10 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_vm@large-misaligned-binds-536870912.html #### Possible fixes #### * igt at kms_atomic_transition@modeset-transition: - shard-bmg: [INCOMPLETE][172] ([Intel XE#2613]) -> [PASS][173] +1 other test pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_atomic_transition@modeset-transition.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-4/igt at kms_atomic_transition@modeset-transition.html * igt at kms_big_fb@4-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][174] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][175] +1 other test pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_big_fb@4-tiled-32bpp-rotate-0.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-3/igt at kms_big_fb@4-tiled-32bpp-rotate-0.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][176] ([Intel XE#3862]) -> [PASS][177] +1 other test pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: [INCOMPLETE][178] ([Intel XE#3226]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-434/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [SKIP][180] ([Intel XE#2291]) -> [PASS][181] +2 other tests pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-8/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][182] ([Intel XE#877]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][184] ([Intel XE#3070]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_dp_linktrain_fallback@dp-fallback.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-1/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_fbcon_fbt@fbc: - shard-dg2-set2: [SKIP][186] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][187] +2 other tests pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_fbcon_fbt@fbc.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-434/igt at kms_fbcon_fbt@fbc.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-dg2-set2: [ABORT][188] -> [PASS][189] +1 other test pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at kms_fbcon_fbt@fbc-suspend.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@display: - shard-dg2-set2: [SKIP][190] ([Intel XE#2423] / [i915#2575]) -> [PASS][191] +5 other tests pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_feature_discovery@display.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_feature_discovery@display.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][192] ([Intel XE#2882]) -> [PASS][193] +3 other tests pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][194] ([Intel XE#2316]) -> [PASS][195] +2 other tests pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-8/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3: - shard-bmg: [FAIL][196] -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3.html * igt at kms_flip@wf_vblank-ts-check-interruptible: - shard-lnl: [FAIL][198] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-2/igt at kms_flip@wf_vblank-ts-check-interruptible.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-6/igt at kms_flip@wf_vblank-ts-check-interruptible.html * igt at kms_flip@wf_vblank-ts-check-interruptible at c-edp1: - shard-lnl: [FAIL][200] ([Intel XE#886]) -> [PASS][201] +2 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-2/igt at kms_flip@wf_vblank-ts-check-interruptible at c-edp1.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-6/igt at kms_flip@wf_vblank-ts-check-interruptible at c-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg2-set2: [SKIP][202] ([Intel XE#2136]) -> [PASS][203] +2 other tests pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][204] ([Intel XE#718]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-8/igt at kms_pm_dc@dc5-dpms.html * igt at kms_sequence@get-busy: - shard-bmg: [SKIP][206] ([Intel XE#3007]) -> [PASS][207] +7 other tests pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_sequence@get-busy.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-6/igt at kms_sequence@get-busy.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][208] ([Intel XE#899]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-1/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-6/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [ABORT][210] ([Intel XE#2625] / [Intel XE#4057]) -> [PASS][211] +1 other test pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at kms_vblank@ts-continuation-suspend.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr: - shard-dg2-set2: [SKIP][212] ([Intel XE#1392]) -> [PASS][213] +1 other test pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-434/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html * igt at xe_exec_sip@invalidinstr-disabled: - shard-dg2-set2: [SKIP][214] ([Intel XE#1130]) -> [PASS][215] +10 other tests pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_exec_sip@invalidinstr-disabled.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at xe_exec_sip@invalidinstr-disabled.html * igt at xe_exec_threads@threads-bal-shared-vm-rebind: - shard-bmg: [SKIP][216] ([Intel XE#1130]) -> [PASS][217] +12 other tests pass [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_exec_threads@threads-bal-shared-vm-rebind.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-8/igt at xe_exec_threads@threads-bal-shared-vm-rebind.html * igt at xe_module_load@load: - shard-dg2-set2: ([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], [SKIP][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243]) ([Intel XE#378]) -> ([PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][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], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-434/igt at xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/igt at xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/igt at xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/igt at xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-464/igt at xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-434/igt at xe_module_load@load.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-434/igt at xe_module_load@load.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-434/igt at xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_module_load@load.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at xe_module_load@load.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-464/igt at xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_module_load@load.html * igt at xe_pm@s3-basic-exec: - shard-dg2-set2: [ABORT][266] ([Intel XE#1358]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_pm@s3-basic-exec.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-vm-bind-prefetch: - shard-dg2-set2: [ABORT][268] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_pm@s4-vm-bind-prefetch.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at xe_pm@s4-vm-bind-prefetch.html #### Warnings #### * igt at kms_big_fb@x-tiled-16bpp-rotate-90: - shard-bmg: [SKIP][270] ([Intel XE#2327]) -> [SKIP][271] ([Intel XE#2136] / [Intel XE#2231]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html - shard-dg2-set2: [SKIP][272] ([Intel XE#316]) -> [SKIP][273] ([Intel XE#2136] / [Intel XE#2231]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-bmg: [SKIP][274] ([Intel XE#1124]) -> [SKIP][275] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html - shard-dg2-set2: [SKIP][276] ([Intel XE#1124]) -> [SKIP][277] ([Intel XE#2136] / [Intel XE#2231]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: [SKIP][278] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][279] ([Intel XE#1124]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-4/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html - shard-dg2-set2: [SKIP][280] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][281] ([Intel XE#1124]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-464/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][282] ([Intel XE#2887]) -> [SKIP][283] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: [SKIP][284] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][285] ([Intel XE#3432]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html - shard-dg2-set2: [SKIP][286] ([Intel XE#2136]) -> [SKIP][287] ([Intel XE#455] / [Intel XE#787]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-bmg: [FAIL][288] -> [SKIP][289] ([Intel XE#2136] / [Intel XE#2231]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-dg2-set2: [SKIP][290] ([Intel XE#2907]) -> [SKIP][291] ([Intel XE#2136] / [Intel XE#2231]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][292] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][293] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][294] ([Intel XE#2724]) -> [SKIP][295] ([Intel XE#2136] / [Intel XE#2231]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-5/igt at kms_cdclk@mode-transition-all-outputs.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_cdclk@mode-transition-all-outputs.html - shard-dg2-set2: [SKIP][296] ([Intel XE#314]) -> [SKIP][297] ([Intel XE#2136] / [Intel XE#2231]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_cdclk@mode-transition-all-outputs.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_frames@dp-crc-single: - shard-bmg: [SKIP][298] ([Intel XE#2252]) -> [SKIP][299] ([Intel XE#3007]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_chamelium_frames@dp-crc-single.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_chamelium_frames@dp-crc-single.html - shard-dg2-set2: [SKIP][300] ([Intel XE#373]) -> [SKIP][301] ([i915#2575]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_chamelium_frames@dp-crc-single.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_chamelium_frames@dp-crc-single.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: [SKIP][302] ([Intel XE#3007]) -> [SKIP][303] ([Intel XE#2252]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-storm.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-6/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-2: - shard-bmg: [FAIL][304] ([Intel XE#1178]) -> [INCOMPLETE][305] ([Intel XE#2715]) +1 other test incomplete [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_content_protection@atomic-dpms at pipe-a-dp-2.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-1/igt at kms_content_protection@atomic-dpms at pipe-a-dp-2.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][306] ([Intel XE#307]) -> [SKIP][307] ([i915#2575]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_content_protection@dp-mst-lic-type-0.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-bmg: [SKIP][308] ([Intel XE#2390]) -> [SKIP][309] ([Intel XE#3007]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-5/igt at kms_content_protection@dp-mst-lic-type-0.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@srm: - shard-bmg: [SKIP][310] ([Intel XE#2341]) -> [FAIL][311] ([Intel XE#1178]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_content_protection@srm.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_content_protection@srm.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: [SKIP][312] ([Intel XE#2320]) -> [SKIP][313] ([Intel XE#3007]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_cursor_crc@cursor-onscreen-32x32.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][314] ([Intel XE#2323]) -> [SKIP][315] ([Intel XE#3007]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_display_modes@mst-extended-mode-negative.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_fbcon_fbt@fbc: - shard-bmg: [SKIP][316] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][317] ([Intel XE#1695]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_fbcon_fbt@fbc.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-5/igt at kms_fbcon_fbt@fbc.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][318] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][319] ([Intel XE#2293] / [Intel XE#2380]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-bmg: [SKIP][320] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][321] ([Intel XE#2136] / [Intel XE#2231]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][322] ([Intel XE#2311]) -> [SKIP][323] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][324] ([Intel XE#2312]) -> [SKIP][325] ([Intel XE#2311]) +7 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-bmg: [SKIP][326] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][327] ([Intel XE#2311]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][328] ([Intel XE#2312]) -> [FAIL][329] ([Intel XE#2333]) +2 other tests fail [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][330] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][331] ([Intel XE#2312]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [FAIL][332] ([Intel XE#2333]) -> [SKIP][333] ([Intel XE#2312]) +6 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][334] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][335] ([Intel XE#2333]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: [FAIL][336] ([Intel XE#2333]) -> [SKIP][337] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][338] ([Intel XE#2311]) -> [SKIP][339] ([Intel XE#2312]) +10 other tests skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][340] ([Intel XE#2136]) -> [SKIP][341] ([Intel XE#651]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render: - shard-dg2-set2: [SKIP][342] ([Intel XE#651]) -> [SKIP][343] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][344] ([Intel XE#2313]) -> [SKIP][345] ([Intel XE#2312]) +9 other tests skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][346] ([Intel XE#653]) -> [SKIP][347] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][348] ([Intel XE#2313]) -> [SKIP][349] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][350] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][351] ([Intel XE#2313]) +2 other tests skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html - shard-dg2-set2: [SKIP][352] ([Intel XE#2136]) -> [SKIP][353] ([Intel XE#653]) +2 other tests skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][354] ([Intel XE#2312]) -> [SKIP][355] ([Intel XE#2313]) +7 other tests skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-bmg: [DMESG-WARN][356] ([Intel XE#877]) -> [SKIP][357] ([Intel XE#3007]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_pipe_crc_basic@suspend-read-crc.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-bmg: [SKIP][358] ([Intel XE#3007]) -> [SKIP][359] ([Intel XE#2763]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][360] ([Intel XE#2938]) -> [SKIP][361] ([Intel XE#2136] / [Intel XE#2231]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_pm_backlight@brightness-with-dpms.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_pm_backlight@brightness-with-dpms.html - shard-dg2-set2: [SKIP][362] ([Intel XE#2938]) -> [SKIP][363] ([Intel XE#2136] / [Intel XE#2231]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at kms_pm_backlight@brightness-with-dpms.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][364] ([Intel XE#2136]) -> [SKIP][365] ([Intel XE#3309]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_pm_dc@dc5-retention-flops.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at kms_pm_dc@dc5-retention-flops.html - shard-bmg: [SKIP][366] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][367] ([Intel XE#3309]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_pm_dc@dc5-retention-flops.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-7/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][368] ([Intel XE#1489]) -> [SKIP][369] ([Intel XE#2136] / [Intel XE#2231]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg2-set2: [SKIP][370] ([Intel XE#1489]) -> [SKIP][371] ([Intel XE#2136] / [Intel XE#2231]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr@fbc-pr-primary-render: - shard-bmg: [SKIP][372] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][373] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_psr@fbc-pr-primary-render.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-7/igt at kms_psr@fbc-pr-primary-render.html - shard-dg2-set2: [SKIP][374] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][375] ([Intel XE#2850] / [Intel XE#929]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_psr@fbc-pr-primary-render.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at kms_psr@fbc-pr-primary-render.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: [SKIP][376] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][377] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_psr@pr-sprite-plane-onoff.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][378] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][379] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_psr@psr2-sprite-plane-move.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_psr@psr2-sprite-plane-move.html * igt at kms_rotation_crc@primary-rotation-270: - shard-bmg: [SKIP][380] ([Intel XE#3007]) -> [SKIP][381] ([Intel XE#3414] / [Intel XE#3904]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_rotation_crc@primary-rotation-270.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-3/igt at kms_rotation_crc@primary-rotation-270.html - shard-dg2-set2: [SKIP][382] ([Intel XE#2423] / [i915#2575]) -> [SKIP][383] ([Intel XE#3414]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_rotation_crc@primary-rotation-270.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-434/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: [SKIP][384] ([Intel XE#2413]) -> [SKIP][385] ([Intel XE#3007]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_scaling_modes@scaling-mode-full-aspect.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-bmg: [SKIP][386] ([Intel XE#756]) -> [SKIP][387] ([Intel XE#3007]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_writeback@writeback-fb-id-xrgb2101010.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg2-set2: [SKIP][388] ([Intel XE#756]) -> [SKIP][389] ([i915#2575]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_writeback@writeback-fb-id-xrgb2101010.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: [SKIP][390] ([Intel XE#1130]) -> [SKIP][391] ([Intel XE#2905]) +1 other test skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_eudebug@basic-vm-access.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-5/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug_online@resume-dss: - shard-dg2-set2: [SKIP][392] ([Intel XE#2905]) -> [SKIP][393] ([Intel XE#1130]) [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at xe_eudebug_online@resume-dss.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_eudebug_online@resume-dss.html - shard-bmg: [SKIP][394] ([Intel XE#2905]) -> [SKIP][395] ([Intel XE#1130]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_eudebug_online@resume-dss.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at xe_eudebug_online@resume-dss.html * igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: - shard-dg2-set2: [SKIP][396] ([Intel XE#1130]) -> [SKIP][397] ([Intel XE#2905]) +1 other test skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-434/igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind: - shard-dg2-set2: [SKIP][398] ([Intel XE#1392]) -> [SKIP][399] ([Intel XE#1130]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr: - shard-bmg: [SKIP][400] ([Intel XE#2322]) -> [SKIP][401] ([Intel XE#1130]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-2/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html * igt at xe_exec_basic@multigpu-once-null-defer-bind: - shard-bmg: [SKIP][402] ([Intel XE#1130]) -> [SKIP][403] ([Intel XE#2322]) [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_exec_basic@multigpu-once-null-defer-bind.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-8/igt at xe_exec_basic@multigpu-once-null-defer-bind.html * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch: - shard-dg2-set2: [SKIP][404] ([Intel XE#288]) -> [SKIP][405] ([Intel XE#1130]) +4 other tests skip [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html * igt at xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch: - shard-dg2-set2: [SKIP][406] ([Intel XE#1130]) -> [SKIP][407] ([Intel XE#288]) +2 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-433/igt at xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch.html * igt at xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-dg2-set2: [SKIP][408] ([Intel XE#2360]) -> [SKIP][409] ([Intel XE#1130]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt at xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: [SKIP][410] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][411] ([Intel XE#1130]) +1 other test skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at xe_oa@closed-fd-and-unmapped-access.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_oa@closed-fd-and-unmapped-access.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [ABORT][412] ([Intel XE#1358] / [Intel XE#1794]) -> [SKIP][413] ([Intel XE#1130]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [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#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#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [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#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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [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#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#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [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#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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [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#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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [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#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#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#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4046]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4046 [Intel XE#4048]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4048 [Intel XE#4057]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4057 [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#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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [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_8190 -> IGTPW_12437 * Linux: xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db -> xe-2485-30226b91b1754fdae425af3397c1e3dcba8264b0 IGTPW_12437: 0f59ba31e7b6259cc30403659f79160c707f737d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8190: db6e252e00bc44f90b678d547e93b3f02c02c6de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db: 1c464719f6d86a08c91e6ed5d64db83b166788db xe-2485-30226b91b1754fdae425af3397c1e3dcba8264b0: 30226b91b1754fdae425af3397c1e3dcba8264b0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From alan.previn.teres.alexis at intel.com Wed Jan 15 02:25:59 2025 From: alan.previn.teres.alexis at intel.com (Teres Alexis, Alan Previn) Date: Wed, 15 Jan 2025 02:25:59 +0000 Subject: [PATCH i-g-t 1/7] drm-uapi/xe: Sync PXP uapi updates In-Reply-To: <20241212001829.2082490-2-daniele.ceraolospurio@intel.com> References: <20241212001829.2082490-1-daniele.ceraolospurio@intel.com> <20241212001829.2082490-2-daniele.ceraolospurio@intel.com> Message-ID: Since this has already received RB on the kernel side, I provide my RB here on condition that if anything changes on kernel side in coming days, we update this (ofc need to update anyway for reference kernel merge point). Reviewed-by: Alan Previn As a side question (not blocking) i notice the UAPI documentation for DRM_XE_VM_BIND_FLAG_CHECK_PXP doesn't mention if the bind will still stick after a successful prior bind if a pxp teardown (key update) were to occur in future. (which i am guessing it would? - i.e. once bind, it is forever bound?). On Wed, 2024-12-11 at 16:18 -0800, Daniele Ceraolo Spurio wrote: > Based on the kernel series still in review: > https://patchwork.freedesktop.org/series/136052/ > > DO NOT MERGE: will respin with the final version once the kernel side is > merged > > Signed-off-by: Daniele Ceraolo Spurio > --- > ?include/drm-uapi/xe_drm.h | 94 ++++++++++++++++++++++++++++++++++++++- > ?1 file changed, 93 insertions(+), 1 deletion(-) > > diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h > index 56163eb91..5b288af1f 100644 > --- a/include/drm-uapi/xe_drm.h > +++ b/include/drm-uapi/xe_drm.h > @@ -629,6 +629,39 @@ struct drm_xe_query_uc_fw_version { > ????????__u64 reserved; > ?}; > ? > +/** > + * struct drm_xe_query_pxp_status - query if PXP is ready > + * > + * If PXP is enabled and no fatal error as occurred, the status will be set to > + * one of the following values: > + * 0: PXP init still in progress > + * 1: PXP init complete > + * > + * If PXP is not enabled or something has gone wrong, the query will be failed > + * with one of the following error codes: > + * -ENODEV: PXP not supported or disabled; > + * -EIO: fatal error occurred during init, so PXP will never be enabled; > + * -EINVAL: incorrect value provided as part of the query; > + * -EFAULT: error copying the memory between kernel and userspace. > + * > + * The status can only be 0 in the first few seconds after driver load. If > + * everything works as expected, the status will transition to init complete in > + * less than 1 second, while in case of errors the driver might take longer to > + * start returning an error code, but it should still take less than 10 seconds. > + * > + * The supported session type bitmask is based on the values in > + * enum drm_xe_pxp_session_type. TYPE_NONE is always supported and therefore > + * is not reported in the bitmask. > + * > + */ > +struct drm_xe_query_pxp_status { > +???????/** @status: current PXP status */ > +???????__u32 status; > + > +???????/** @supported_session_types: bitmask of supported PXP session types */ > +???????__u32 supported_session_types; > +}; > + > ?/** > ? * struct drm_xe_device_query - Input of &DRM_IOCTL_XE_DEVICE_QUERY - main > ? * structure to query device information > @@ -648,6 +681,7 @@ struct drm_xe_query_uc_fw_version { > ? *??? attributes. > ? *? - %DRM_XE_DEVICE_QUERY_GT_TOPOLOGY > ? *? - %DRM_XE_DEVICE_QUERY_ENGINE_CYCLES > + *? - %DRM_XE_DEVICE_QUERY_PXP_STATUS > ? * > ? * If size is set to 0, the driver fills it with the required size for > ? * the requested type of data to query. If size is equal to the required > @@ -700,6 +734,7 @@ struct drm_xe_device_query { > ?#define DRM_XE_DEVICE_QUERY_ENGINE_CYCLES??????6 > ?#define DRM_XE_DEVICE_QUERY_UC_FW_VERSION??????7 > ?#define DRM_XE_DEVICE_QUERY_OA_UNITS???????????8 > +#define DRM_XE_DEVICE_QUERY_PXP_STATUS?????????9 > ????????/** @query: The type of data to query */ > ????????__u32 query; > ? > @@ -743,8 +778,23 @@ struct drm_xe_device_query { > ? *? - %DRM_XE_GEM_CPU_CACHING_WC - Allocate the pages as write-combined. This > ? *??? is uncached. Scanout surfaces should likely use this. All objects > ? *??? that can be placed in VRAM must use this. > + * > + * This ioctl supports setting the following properties via the > + * %DRM_XE_GEM_CREATE_EXTENSION_SET_PROPERTY extension, which uses the > + * generic @drm_xe_ext_set_property struct: > + * > + *? - %DRM_XE_GEM_CREATE_SET_PROPERTY_PXP_TYPE - set the type of PXP session > + *??? this object will be used with. Valid values are listed in enum > + *??? drm_xe_pxp_session_type. %DRM_XE_PXP_TYPE_NONE is the default behavior, so > + *??? there is no need to explicitly set that. Objects used with session of type > + *??? %DRM_XE_PXP_TYPE_HWDRM will be marked as invalid if a PXP invalidation > + *??? event occurs after their creation. Attempting to flip an invalid object > + *??? will cause a black frame to be displayed instead. Submissions with invalid > + *??? objects mapped in the VM will be rejected. > ? */ > ?struct drm_xe_gem_create { > +#define DRM_XE_GEM_CREATE_EXTENSION_SET_PROPERTY???????0 > +#define?? DRM_XE_GEM_CREATE_SET_PROPERTY_PXP_TYPE??????0 > ????????/** @extensions: Pointer to the first extension struct, if any */ > ????????__u64 extensions; > ? > @@ -906,6 +956,9 @@ struct drm_xe_vm_destroy { > ? *??? will only be valid for DRM_XE_VM_BIND_OP_MAP operations, the BO > ? *??? handle MBZ, and the BO offset MBZ. This flag is intended to > ? *??? implement VK sparse bindings. > + *? - %DRM_XE_VM_BIND_FLAG_CHECK_PXP - If the object is encrypted via PXP, > + *??? reject the binding if the encryption key is no longer valid. This > + *??? flag has no effect on BOs that are not marked as using PXP. > ? */ > ?struct drm_xe_vm_bind_op { > ????????/** @extensions: Pointer to the first extension struct, if any */ > @@ -996,6 +1049,7 @@ struct drm_xe_vm_bind_op { > ?#define DRM_XE_VM_BIND_FLAG_IMMEDIATE??(1 << 1) > ?#define DRM_XE_VM_BIND_FLAG_NULL???????(1 << 2) > ?#define DRM_XE_VM_BIND_FLAG_DUMPABLE???(1 << 3) > +#define DRM_XE_VM_BIND_FLAG_CHECK_PXP??(1 << 4) > ????????/** @flags: Bind flags */ > ????????__u32 flags; > ? > @@ -1087,6 +1141,24 @@ struct drm_xe_vm_bind { > ?/** > ? * struct drm_xe_exec_queue_create - Input of &DRM_IOCTL_XE_EXEC_QUEUE_CREATE > ? * > + * This ioctl supports setting the following properties via the > + * %DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY extension, which uses the > + * generic @drm_xe_ext_set_property struct: > + * > + *? - %DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY - set the queue priority. > + *??? CAP_SYS_NICE is required to set a value above normal. > + *? - %DRM_XE_EXEC_QUEUE_SET_PROPERTY_TIMESLICE - set the queue timeslice > + *??? duration. > + *? - %DRM_XE_EXEC_QUEUE_SET_PROPERTY_PXP_TYPE - set the type of PXP session > + *??? this queue will be used with. Valid values are listed in enum > + *??? drm_xe_pxp_session_type. %DRM_XE_PXP_TYPE_NONE is the default behavior, so > + *??? there is no need to explicitly set that. When a queue of type > + *??? %DRM_XE_PXP_TYPE_HWDRM is created, the PXP default HWDRM session > + *??? (%XE_PXP_HWDRM_DEFAULT_SESSION) will be started, if isn't already running. > + *??? Given that going into a power-saving state kills PXP HWDRM sessions, > + *??? runtime PM will be blocked while queues of this type are alive. > + *??? All PXP queues will be killed if a PXP invalidation event occurs. > + * > ? * The example below shows how to use @drm_xe_exec_queue_create to create > ? * a simple exec_queue (no parallel submission) of class > ? * &DRM_XE_ENGINE_CLASS_RENDER. > @@ -1110,7 +1182,7 @@ struct drm_xe_exec_queue_create { > ?#define DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY???????????????0 > ?#define?? DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY??????????????0 > ?#define?? DRM_XE_EXEC_QUEUE_SET_PROPERTY_TIMESLICE?????????????1 > - > +#define?? DRM_XE_EXEC_QUEUE_SET_PROPERTY_PXP_TYPE??????????????2 > ????????/** @extensions: Pointer to the first extension struct, if any */ > ????????__u64 extensions; > ? > @@ -1713,6 +1785,26 @@ struct drm_xe_oa_stream_info { > ????????__u64 reserved[3]; > ?}; > ? > +/** > + * enum drm_xe_pxp_session_type - Supported PXP session types. > + * > + * We currently only support HWDRM sessions, which are used for protected > + * content that ends up being displayed, but the HW supports multiple types, so > + * we might extend support in the future. > + */ > +enum drm_xe_pxp_session_type { > +???????/** @DRM_XE_PXP_TYPE_NONE: PXP not used */ > +???????DRM_XE_PXP_TYPE_NONE = 0, > +???????/** > +??????? * @DRM_XE_PXP_TYPE_HWDRM: HWDRM sessions are used for content that ends > +??????? * up on the display. > +??????? */ > +???????DRM_XE_PXP_TYPE_HWDRM = 1, > +}; > + > +/* ID of the protected content session managed by Xe when PXP is active */ > +#define DRM_XE_PXP_HWDRM_DEFAULT_SESSION 0xf > + > ?#if defined(__cplusplus) > ?} > ?#endif From alan.previn.teres.alexis at intel.com Wed Jan 15 05:09:22 2025 From: alan.previn.teres.alexis at intel.com (Teres Alexis, Alan Previn) Date: Wed, 15 Jan 2025 05:09:22 +0000 Subject: [PATCH i-g-t 2/7] tests/intel/xe_vm: Update invalid flag subtest In-Reply-To: <16394f40-9549-48f7-aefd-c3b3f316ab67@intel.com> References: <20241212001829.2082490-1-daniele.ceraolospurio@intel.com> <20241212001829.2082490-3-daniele.ceraolospurio@intel.com> <16394f40-9549-48f7-aefd-c3b3f316ab67@intel.com> Message-ID: Acked. Will wait for next rev on this - but looks fine though. On Wed, 2024-12-11 at 16:24 -0800, Daniele Ceraolo Spurio wrote: > > > On 12/11/2024 4:18 PM, Daniele Ceraolo Spurio wrote: > > PXP introduced a new valid flag, so we need to add it to the test and > > shift the first invalid bit left by one. > > > > Signed-off-by: Daniele Ceraolo Spurio > > --- > > ? tests/intel/xe_vm.c | 7 ++++++- > > ? 1 file changed, 6 insertions(+), 1 deletion(-) > > > > diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c > > index e78ddd0e5..741dc0c7a 100644 > > --- a/tests/intel/xe_vm.c > > +++ b/tests/intel/xe_vm.c > > @@ -2216,6 +2216,11 @@ static void bind_flag_invalid(int fd) > > ????????igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL)); > > ????????syncobj_reset(fd, &sync[0].handle, 1); > > ? > > +???????bind.bind.flags = DRM_XE_VM_BIND_FLAG_CHECK_PXP; > > +???????igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind); > > +???????igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL)); > > +???????syncobj_reset(fd, &sync[0].handle, 1); > > Right after sending the patches I realized I forgot to squash a fix to > only perform this ioctl if the PXP interface is supported. Will wait a > bit for comments on other patches before re-spinning this one. > > Daniele > > > + > > ????????bind.bind.flags = DRM_XE_VM_BIND_FLAG_NULL; > > ????????bind.bind.obj = 0; > > ????????igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind); > > @@ -2229,7 +2234,7 @@ static void bind_flag_invalid(int fd) > > ????????syncobj_reset(fd, &sync[0].handle, 1); > > ? > > ????????/* Using invalid flags should not work */ > > -???????bind.bind.flags = 1 << 4; > > +???????bind.bind.flags = 1 << 5; > > ????????igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind); > > ????????do_ioctl_err(fd, DRM_IOCTL_XE_VM_BIND, &bind, EINVAL); > > ? > From alan.previn.teres.alexis at intel.com Wed Jan 15 05:38:16 2025 From: alan.previn.teres.alexis at intel.com (Teres Alexis, Alan Previn) Date: Wed, 15 Jan 2025 05:38:16 +0000 Subject: [PATCH i-g-t 3/7] tests/intel/xe_query: Add test for PXP status query In-Reply-To: <20241212001829.2082490-4-daniele.ceraolospurio@intel.com> References: <20241212001829.2082490-1-daniele.ceraolospurio@intel.com> <20241212001829.2082490-4-daniele.ceraolospurio@intel.com> Message-ID: <77885790bca81c9cd4030ee784147c3fa632247b.camel@intel.com> looks good. Reviewed-by: Alan Previn On Wed, 2024-12-11 at 16:18 -0800, Daniele Ceraolo Spurio wrote: > Add a new test to exercise the PXP status query. > > Signed-off-by: Daniele Ceraolo Spurio > --- > ?tests/intel/xe_query.c | 61 ++++++++++++++++++++++++++++++++++++++++++ > ?1 file changed, 61 insertions(+) > > diff --git a/tests/intel/xe_query.c b/tests/intel/xe_query.c > index 1566680e7..0a2ff8d7f 100644 > --- a/tests/intel/xe_query.c > +++ b/tests/intel/xe_query.c > @@ -1077,6 +1077,66 @@ static void test_query_oa_units(int fd) > ????????} > ?} > ? > +/** > + * SUBTEST: query-pxp-status > + * Description: Display PXP supported types and current status > + * > + * SUBTEST: multigpu-query-pxp-status > + * Description: Display fields for PXP unit query for all Xe devices > + * Sub-category: MultiGPU > + */ > +static void test_query_pxp_status(int fd) > +{ > +???????struct drm_xe_query_pxp_status *qpxp; > +???????struct drm_xe_device_query query = { > +???????????????.extensions = 0, > +???????????????.query = DRM_XE_DEVICE_QUERY_PXP_STATUS, > +???????????????.size = 0, > +???????????????.data = 0, > +???????}; > +???????int ret; > + > +???????/* > +??????? * if we run this test on an older kernel that doesn't have the PXP > +??????? * query, the ioctl will return -EINVAL. > +??????? */ > +???????errno = 0; > +???????ret = igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query); > +???????igt_require(errno != EINVAL); > +???????igt_assert_eq(ret, 0); > + > +???????/* make sure the returned size is big enough */ > +???????igt_assert(query.size >= sizeof(*qpxp)); > + > +???????qpxp = malloc(query.size); > +???????igt_assert(qpxp); > + > +???????memset(qpxp, 0, query.size); > + > +???????query.data = to_user_pointer(qpxp); > +???????ret = igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query); > +???????if (ret == -ENODEV) { > +???????????????igt_info("PXP not supported\n"); > +???????????????return; > +???????} > + > +???????igt_assert_eq(ret, 0); > +???????igt_assert_neq(qpxp->supported_session_types, 0); > + > +???????switch (qpxp->status) { > +???????case 0: > +???????????????igt_info("PXP initialization still in progress\n"); > +???????????????break; > +???????case 1: > +???????????????igt_info("PXP initialization complete\n"); > +???????????????break; > +???????default: > +???????????????igt_assert_f(0, "unexpected PXP status %u\n", qpxp->status); > +???????} > + > +???????igt_info("PXP supported types mask 0x%x\n", qpxp->supported_session_types); > +} > + > ?igt_main > ?{ > ????????const struct { > @@ -1094,6 +1154,7 @@ igt_main > ????????????????{ "query-uc-fw-version-guc", test_query_uc_fw_version_guc }, > ????????????????{ "query-uc-fw-version-huc", test_query_uc_fw_version_huc }, > ????????????????{ "query-oa-units", test_query_oa_units }, > +???????????????{ "query-pxp-status", test_query_pxp_status }, > ????????????????{ "query-invalid-cs-cycles", test_engine_cycles_invalid }, > ????????????????{ "query-invalid-query", test_query_invalid_query }, > ????????????????{ "query-invalid-size", test_query_invalid_size }, From alan.previn.teres.alexis at intel.com Wed Jan 15 06:17:41 2025 From: alan.previn.teres.alexis at intel.com (Teres Alexis, Alan Previn) Date: Wed, 15 Jan 2025 06:17:41 +0000 Subject: [PATCH i-g-t 4/7] tests/intel/xe_pxp: Add PXP object and queue creation tests In-Reply-To: <20241212001829.2082490-5-daniele.ceraolospurio@intel.com> References: <20241212001829.2082490-1-daniele.ceraolospurio@intel.com> <20241212001829.2082490-5-daniele.ceraolospurio@intel.com> Message-ID: <15aea17dcceb1a639cf11c8c1e42ac05354a7d4c.camel@intel.com> everything looks good.. except only one issue and one nit. that said, to speed things up, here is a conditional RB pending that missing memory free in query_pxp_status. (considering everything else appears correct and concise). Reviewed-by: Alan Previn ...alan On Wed, 2024-12-11 at 16:18 -0800, Daniele Ceraolo Spurio wrote: > PXP support introduces new SET_PROPERTY extensions to both BOs and > exec_queues to mark them as being used for PXP workloads, so we need to > test both correct and incorrect usage of those new interfaces. > > Since this is the first usage of extensions for BO creation, the > common BO code has been update to support the extra parameter. > > Signed-off-by: Daniele Ceraolo Spurio > --- > ?lib/xe/xe_ioctl.c???? |? 14 +-- > ?lib/xe/xe_ioctl.h???? |?? 2 +- > ?tests/intel/xe_mmap.c |?? 1 + > ?tests/intel/xe_pxp.c? | 201 ++++++++++++++++++++++++++++++++++++++++++ > ?tests/meson.build???? |?? 1 + > ?5 files changed, 213 insertions(+), 6 deletions(-) > ?create mode 100644 tests/intel/xe_pxp.c > > diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c > index 6d8388918..01ab7c758 100644 > --- a/lib/xe/xe_ioctl.c > +++ b/lib/xe/xe_ioctl.c > alan:snip > diff --git a/tests/intel/xe_mmap.c b/tests/intel/xe_mmap.c > index d818cc2f8..9f72cf2da 100644 > --- a/tests/intel/xe_mmap.c > +++ b/tests/intel/xe_mmap.c alan:snip > diff --git a/tests/intel/xe_pxp.c b/tests/intel/xe_pxp.c > new file mode 100644 > index 000000000..cfe118a1a > --- /dev/null > +++ b/tests/intel/xe_pxp.c > @@ -0,0 +1,201 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright ? 2024 Intel Corporation > + */ > + > +#include "igt.h" > +#include "xe_drm.h" > +#include "xe/xe_ioctl.h" > +#include "xe/xe_query.h" > + > +IGT_TEST_DESCRIPTION("Test PXP that manages protected content through arbitrated HW-PXP-session"); > +/* Note: PXP = "Protected Xe Path" */ > + > +/** > + * TEST: Test PXP functionality > + * Category: Content protection > + * Mega feature: PXP > + * Sub-category: PXP tests > + * Functionality: Execution of protected content > + * Test category: functionality test > + */ > + > +static int __pxp_bo_create(int fd, uint32_t vm, uint64_t size, > +????????????????????????? uint32_t session_type, uint32_t *handle) > +{ > +???????struct drm_xe_ext_set_property ext = { > +???????????????.base.next_extension = 0, > +???????????????.base.name = DRM_XE_GEM_CREATE_EXTENSION_SET_PROPERTY, > +???????????????.property = DRM_XE_GEM_CREATE_SET_PROPERTY_PXP_TYPE, > +???????????????.value = session_type, > +???????}; > +???????int ret = 0; > + > +???????if (__xe_bo_create(fd, vm, size, system_memory(fd), 0, &ext, handle)) { > +???????????????ret = -errno; > +???????????????errno = 0; > +???????} > + > +???????return ret; > +} > + > +static int __create_pxp_rcs_queue(int fd, uint32_t vm, > +???????????????????????????????? uint32_t session_type, > +???????????????????????????????? uint32_t *q) > +{ > +???????struct drm_xe_engine_class_instance inst = { > +???????????????.engine_class = DRM_XE_ENGINE_CLASS_RENDER, > +???????}; > +???????struct drm_xe_ext_set_property ext = { 0 }; > +???????uint64_t ext_ptr = to_user_pointer(&ext); > + > +???????ext.base.next_extension = 0, > +???????ext.base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, > +???????ext.property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PXP_TYPE, > +???????ext.value = session_type; > + > +???????return __xe_exec_queue_create(fd, vm, 1, 1, &inst, ext_ptr, q); > +} > + > +static int query_pxp_status(int fd) > +{ > +???????struct drm_xe_query_pxp_status *pxp_query; > +???????struct drm_xe_device_query query = { > +???????????????.extensions = 0, > +???????????????.query = DRM_XE_DEVICE_QUERY_PXP_STATUS, > +???????????????.size = 0, > +???????????????.data = 0, > +???????}; > +???????int status; > + > +???????if (igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query)) > +???????????????return -errno; > + > +???????pxp_query = malloc(query.size); > +???????igt_assert(pxp_query); > +???????memset(pxp_query, 0, query.size); > + > +???????query.data = to_user_pointer(pxp_query); > + > +???????if (igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query)) alan: forgot to free pxp_query before return > +???????????????return -errno; > + > +???????status = pxp_query->status; > +???????free(pxp_query); > + > +???????return status; > +} > + > +static bool is_pxp_hw_supported(int fd) > +{ > +???????int pxp_status; > +???????int i = 0; > + > +???????/* PXP init completes after driver init, so we might have to wait for it */ > +???????while (i++ < 50) { > +???????????????pxp_status = query_pxp_status(fd); > + > +???????????????/* -EINVAL means the PXP interface is not available */ > +???????????????igt_require(pxp_status != -EINVAL); > + > +???????????????/* -ENODEV means PXP not supported or disabled */ > +???????????????if (pxp_status == -ENODEV) > +???????????????????????return false; > + > +???????????????/* status 1 means pxp is ready */ > +???????????????if (pxp_status == 1) > +???????????????????????return true; > + > +???????????????/* > +??????????????? * 0 means init still in progress, any other remaining state > +??????????????? * is an error > +??????????????? */ > +???????????????igt_assert_eq(pxp_status, 0); > + > +???????????????usleep(50*1000); > +???????} > + > +???????igt_assert_f(0, "PXP failed to initialize within the timeout\n"); > +???????return false; > +} > + > +/** > + * SUBTEST: pxp-bo-alloc > + * Description: Verify PXP bo allocation works as expected > + */ > +static void test_pxp_bo_alloc(int fd, bool pxp_supported) > +{ > +???????uint32_t bo; > +???????int ret; > + > +???????/* BO creation with DRM_XE_PXP_TYPE_NONE must always succeed */ > +???????ret = __pxp_bo_create(fd, 0, 4096, DRM_XE_PXP_TYPE_NONE, &bo); > +???????igt_assert_eq(ret, 0); > +???????gem_close(fd, bo); > + > +???????/* BO creation with DRM_XE_PXP_TYPE_HWDRM must only succeed if PXP is supported */ > +???????ret = __pxp_bo_create(fd, 0, 4096, DRM_XE_PXP_TYPE_HWDRM, &bo); > +???????igt_assert_eq(ret, pxp_supported ? 0 : -ENODEV); > +???????if (!ret) > +???????????????gem_close(fd, bo); > + > +???????/* BO creation with an invalid type must always fail */ > +???????ret = __pxp_bo_create(fd, 0, 4096, 0xFF, &bo); > +???????igt_assert_eq(ret, -EINVAL); > +} > + > +/** > + * SUBTEST: pxp-queue-alloc > + * Description: Verify PXP exec queue creation works as expected > + */ > +static void test_pxp_queue_creation(int fd, bool pxp_supported) > +{ > +???????uint32_t q; > +???????uint32_t vm; > +???????int ret; > + > +???????vm = xe_vm_create(fd, 0, 0); > + > +???????/* queue creation with DRM_XE_PXP_TYPE_NONE must always succeed */ > +???????ret = __create_pxp_rcs_queue(fd, vm, DRM_XE_PXP_TYPE_NONE, &q); > +???????igt_assert_eq(ret, 0); > +???????xe_exec_queue_destroy(fd, q); > + > +???????/* queue creation with DRM_XE_PXP_TYPE_HWDRM must only succeed if PXP is supported */ > +???????ret = __create_pxp_rcs_queue(fd, vm, DRM_XE_PXP_TYPE_HWDRM, &q); > +???????igt_assert_eq(ret, pxp_supported ? 0 : -ENODEV); > +???????if (!ret) > +???????????????xe_exec_queue_destroy(fd, q); > + > +???????/* queue creation with an invalid type must always fail */ > +???????ret = __create_pxp_rcs_queue(fd, vm, 0xFF, &q); > +???????igt_assert_eq(ret, -EINVAL); > + > +???????xe_vm_destroy(fd, vm); > +} > + > +igt_main > +{ > +???????int xe_fd = -1; > +???????bool pxp_supported = true; > + > +???????igt_fixture { > +???????????????xe_fd = drm_open_driver(DRIVER_XE); > +???????????????igt_require(xe_fd); alan: nit: i think u can skip this check? (looking at implementation of drm_open_driver, test will skip if there's no fd?) > +???????????????igt_require(xe_has_engine_class(xe_fd, DRM_XE_ENGINE_CLASS_RENDER)); > +???????????????pxp_supported = is_pxp_hw_supported(xe_fd); > +???????} > + > +???????igt_subtest_group { > +???????????????igt_describe("Verify PXP allocations work as expected"); > +???????????????igt_subtest("pxp-bo-alloc") > +???????????????test_pxp_bo_alloc(xe_fd, pxp_supported); > + > +???????????????igt_subtest("pxp-queue-alloc") > +???????????????test_pxp_queue_creation(xe_fd, pxp_supported); > +???????} > + > +???????igt_fixture { > +???????????????close(xe_fd); > +???????} > +} > diff --git a/tests/meson.build b/tests/meson.build > index 2724c7a9a..5904d9523 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -310,6 +310,7 @@ intel_xe_progs = [ > ????????'xe_pm', > ????????'xe_pm_residency', > ????????'xe_prime_self_import', > +???????'xe_pxp', > ????????'xe_query', > ????????'xe_render_copy', > ????????'xe_vm', > -- > 2.43.0 > From jesse.zhang at amd.com Wed Jan 15 07:03:59 2025 From: jesse.zhang at amd.com (Jesse.zhang@amd.com) Date: Wed, 15 Jan 2025 15:03:59 +0800 Subject: [PATCH i-g-t] lib/amdgpu: Handle -ENODATA in amdgpu_wait_memory Message-ID: <20250115070359.3698486-1-jesse.zhang@amd.com> The amdgpu_wait_memory function currently asserts if the return value is non-zero and not -ECANCELED. However, -ENODATA is also a valid error code that can be returned during GPU job timeout recovery, particularly for queue resets. This patch updates the function to also accept -ENODATA as a non-fatal error condition. This change aligns with recent updates in the AMDGPU kernel driver where -ENODATA is used to indicate queue-specific resets during timeout recovery, while -ECANCELED or -ETIME is used for full GPU resets. For more details, see the kernel discussion: https://lists.freedesktop.org/archives/amd-gfx/2025-January/118795.html Cc: Vitaly Prosyak Cc: Christian Koenig Cc: Alexander Deucher Signed-off-by: Jesse Zhang --- lib/amdgpu/amd_deadlock_helpers.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c index 8ac6abf8f..f274a6365 100644 --- a/lib/amdgpu/amd_deadlock_helpers.c +++ b/lib/amdgpu/amd_deadlock_helpers.c @@ -142,7 +142,7 @@ amdgpu_wait_memory(amdgpu_device_handle device_handle, unsigned int ip_type, uin job_count++; } while (r == 0 && job_count < MAX_JOB_COUNT); - if (r != 0 && r != -ECANCELED) + if (r != 0 && r != -ECANCELED && r != -ENODATA) igt_assert(0); @@ -156,7 +156,7 @@ amdgpu_wait_memory(amdgpu_device_handle device_handle, unsigned int ip_type, uin r = amdgpu_cs_query_fence_status(&fence_status, AMDGPU_TIMEOUT_INFINITE, 0, &expired); - if (r != 0 && r != -ECANCELED) + if (r != 0 && r != -ECANCELED && r != -ENODATA) igt_assert(0); /* send signal to modify the memory we wait for */ -- 2.25.1 From riana.tauro at intel.com Wed Jan 15 07:30:37 2025 From: riana.tauro at intel.com (Riana Tauro) Date: Wed, 15 Jan 2025 13:00:37 +0530 Subject: [PATCH i-g-t 0/3] Add tests for per-engine-class activity Message-ID: <20250115073040.1852977-1-riana.tauro@intel.com> PMU provides two counters (engine-active-ticks, total-ticks) to calculate engine acitivity. When querying engine busyness, user must group these 2 counters using the perf_event group mechanism to ensure both counters are sampled together. Add basic IGT test to validate per-engine-class activity KMD : https://patchwork.freedesktop.org/series/143138/ Riana Tauro (2): lib/perf: Add helper functions to read format entries tests/intel/xe_pmu: Add test for per-engine-class activity Vinay Belgaumkar (1): tests/xe/pmu: Add pmu tests lib/igt_perf.c | 71 +++++++ lib/igt_perf.h | 4 + tests/intel/xe_pmu.c | 458 +++++++++++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 4 files changed, 534 insertions(+) create mode 100644 tests/intel/xe_pmu.c -- 2.47.1 From riana.tauro at intel.com Wed Jan 15 07:30:38 2025 From: riana.tauro at intel.com (Riana Tauro) Date: Wed, 15 Jan 2025 13:00:38 +0530 Subject: [PATCH i-g-t 1/3] lib/igt_perf: Add helper functions to read format entries In-Reply-To: <20250115073040.1852977-1-riana.tauro@intel.com> References: <20250115073040.1852977-1-riana.tauro@intel.com> Message-ID: <20250115073040.1852977-2-riana.tauro@intel.com> add helper functions to read format entries of pmu Signed-off-by: Riana Tauro --- lib/igt_perf.c | 23 +++++++++++++++++++++++ lib/igt_perf.h | 1 + 2 files changed, 24 insertions(+) diff --git a/lib/igt_perf.c b/lib/igt_perf.c index 3866c6d77..7d2ff8969 100644 --- a/lib/igt_perf.c +++ b/lib/igt_perf.c @@ -129,6 +129,29 @@ uint64_t igt_perf_type_id(const char *device) return strtoull(buf, NULL, 0); } +int igt_perf_format(const char *device, const char *name, char *buff, int buflen) +{ + char buf[NAME_MAX]; + ssize_t ret; + int fd; + + snprintf(buf, sizeof(buf), + "/sys/bus/event_source/devices/%s/format/%s", device, name); + + fd = open(buf, O_RDONLY); + if (fd < 0) + return -1; + + ret = read(fd, buff, buflen - 1); + close(fd); + if (ret < 1) + return -1; + + buf[ret] = '\0'; + + return 0; +} + int igt_perf_events_dir(int i915) { char buf[80]; diff --git a/lib/igt_perf.h b/lib/igt_perf.h index 3d9ba2917..c9c6b27f7 100644 --- a/lib/igt_perf.h +++ b/lib/igt_perf.h @@ -57,6 +57,7 @@ uint64_t igt_perf_type_id(const char *device); int igt_perf_events_dir(int i915); int igt_perf_open(uint64_t type, uint64_t config); int igt_perf_open_group(uint64_t type, uint64_t config, int group); +int igt_perf_format(const char *device, const char *name, char *buff, int buflen); const char *i915_perf_device(int i915, char *buf, int buflen); uint64_t i915_perf_type_id(int i915); -- 2.47.1 From riana.tauro at intel.com Wed Jan 15 07:30:39 2025 From: riana.tauro at intel.com (Riana Tauro) Date: Wed, 15 Jan 2025 13:00:39 +0530 Subject: [PATCH i-g-t 2/3] [DO NOT REVIEW] tests/xe/pmu: Add pmu tests In-Reply-To: <20250115073040.1852977-1-riana.tauro@intel.com> References: <20250115073040.1852977-1-riana.tauro@intel.com> Message-ID: <20250115073040.1852977-3-riana.tauro@intel.com> From: Vinay Belgaumkar DO NOT REVIEW. Added for compilation Simple tests for validating the PMU implementation for GT C6 residencies and frequency. These tests validate the kernel series which is currently in review here - https://patchwork.freedesktop.org/series/139121/ v2: Rename rc6-residency-* to c6-residency-* as per KMD changes. Also, move config read to igt_perf library. v3: Fix build errors. v4: add paramter for gt Cc: Riana Tauro Cc: Rodrigo Vivi Signed-off-by: Vinay Belgaumkar --- lib/igt_perf.c | 48 +++++ lib/igt_perf.h | 3 + tests/intel/xe_pmu.c | 405 +++++++++++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 4 files changed, 457 insertions(+) create mode 100644 tests/intel/xe_pmu.c diff --git a/lib/igt_perf.c b/lib/igt_perf.c index 7d2ff8969..2a7fc9be9 100644 --- a/lib/igt_perf.c +++ b/lib/igt_perf.c @@ -152,6 +152,48 @@ int igt_perf_format(const char *device, const char *name, char *buff, int buflen return 0; } +uint64_t xe_perf_event_config(int xe, const char *pmu_str) +{ + char buf[150]; + ssize_t ret; + int fd; + uint64_t config; + char device[30]; + + snprintf(buf, sizeof(buf), + "/sys/bus/event_source/devices/%s/events/%s", + xe_perf_device(xe, device, sizeof(device)), + pmu_str); + + fd = open(buf, O_RDONLY); + if (fd < 0) + return 0; + + ret = read(fd, buf, sizeof(buf) - 1); + close(fd); + if (ret < 1) + return 0; + + buf[ret] = '\0'; + ret = sscanf(buf, "config=0x%lx", &config); + if (ret != 1) + return 0; + + return config; +} + +int igt_xe_perf_events_dir(int xe) +{ + char buf[80]; + char path[PATH_MAX]; + + memset(buf, 0, sizeof(buf)); + + xe_perf_device(xe, buf, sizeof(buf)); + snprintf(path, sizeof(path), "/sys/bus/event_source/devices/%s/events", buf); + return open(path, O_RDONLY); +} + int igt_perf_events_dir(int i915) { char buf[80]; @@ -206,6 +248,12 @@ int perf_xe_open(int xe, uint64_t config) PERF_FORMAT_TOTAL_TIME_ENABLED); } +int perf_xe_open_group(int xe, uint64_t config, int group) +{ + return _perf_open(xe_perf_type_id(xe), config, group, + PERF_FORMAT_TOTAL_TIME_ENABLED | PERF_FORMAT_GROUP); +} + int perf_i915_open(int i915, uint64_t config) { return _perf_open(i915_perf_type_id(i915), config, -1, diff --git a/lib/igt_perf.h b/lib/igt_perf.h index c9c6b27f7..ae6e995cc 100644 --- a/lib/igt_perf.h +++ b/lib/igt_perf.h @@ -54,7 +54,9 @@ perf_event_open(struct perf_event_attr *attr, } uint64_t igt_perf_type_id(const char *device); +uint64_t xe_perf_event_config(int xe, const char* pmu_event); int igt_perf_events_dir(int i915); +int igt_xe_perf_events_dir(int xe); int igt_perf_open(uint64_t type, uint64_t config); int igt_perf_open_group(uint64_t type, uint64_t config, int group); int igt_perf_format(const char *device, const char *name, char *buff, int buflen); @@ -72,5 +74,6 @@ int perf_i915_open(int i915, uint64_t config); int perf_i915_open_group(int i915, uint64_t config, int group); int perf_xe_open(int xe, uint64_t config); +int perf_xe_open_group(int xe, uint64_t config, int group); #endif /* I915_PERF_H */ diff --git a/tests/intel/xe_pmu.c b/tests/intel/xe_pmu.c new file mode 100644 index 000000000..1f88e2560 --- /dev/null +++ b/tests/intel/xe_pmu.c @@ -0,0 +1,405 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright ? 2024 Intel Corporation + */ + +/** + * TEST: Test Xe PMU functionality + * Category: Perf Monitoring Unit + * Mega feature: Perf Monitoring Unit + * Sub-category: Power Management + * Functionality: Power/Perf + * Test category: Functional tests + */ + +#include +#include +#include +#include +#include +#include +#include + +#include "igt.h" +#include "igt_device.h" +#include "igt_power.h" +#include "igt_sysfs.h" +#include "igt_perf.h" + +#include "lib/igt_syncobj.h" +#include "xe/xe_ioctl.h" +#include "xe/xe_gt.h" +#include "xe/xe_query.h" +#include "xe/xe_spin.h" +#include "xe/xe_util.h" + +#define SLEEP_DURATION 2 /* in seconds */ +const double tolerance = 0.1; +const unsigned long batch_duration_ns = 500e6; +const char *no_debug_data = "\0"; + +#define __assert_within_epsilon(x, ref, tol_up, tol_down, debug_data) \ + igt_assert_f((double)(x) <= (1.0 + (tol_up)) * (double)(ref) && \ + (double)(x) >= (1.0 - (tol_down)) * (double)(ref), \ + "'%s' != '%s' (%f not within +%.1f%%/-%.1f%% tolerance of %f)\n%s\n",\ + #x, #ref, (double)(x), \ + (tol_up) * 100.0, (tol_down) * 100.0, \ + (double)(ref), debug_data) + +#define assert_within_epsilon(x, ref, tolerance) \ + __assert_within_epsilon(x, ref, tolerance, tolerance, no_debug_data) + +#define assert_within_epsilon_debug(x, ref, tolerance, debug_data) \ + __assert_within_epsilon(x, ref, tolerance, tolerance, debug_data) + +struct workload { + struct drm_xe_sync sync[2]; + struct drm_xe_exec exec; + uint64_t addr; + struct xe_spin_opts spin_opts; + struct xe_spin *spin; + uint32_t exec_queue; + uint32_t syncobj; + size_t bo_size; + uint32_t bo; + uint32_t vm; +}; + +static int open_pmu(int xe, uint64_t config) +{ + int fd; + + fd = perf_xe_open(xe, config); + igt_skip_on(fd < 0 && errno == ENODEV); + igt_assert(fd >= 0); + + return fd; +} + +static int open_group(int xe, uint64_t config, int group) +{ + int fd; + + fd = perf_xe_open_group(xe, config, group); + igt_skip_on(fd < 0 && errno == ENODEV); + igt_assert(fd >= 0); + + return fd; +} + +static uint64_t __pmu_read_single(int fd, uint64_t *ts) +{ + uint64_t data[2]; + + igt_assert_eq(read(fd, data, sizeof(data)), sizeof(data)); + if (ts) + *ts = data[1]; + + return data[0]; +} + +static uint64_t pmu_read_multi(int fd, unsigned int num, uint64_t *val) +{ + uint64_t buf[2 + num]; + unsigned int i; + + igt_assert_eq(read(fd, buf, sizeof(buf)), sizeof(buf)); + + for (i = 0; i < num; i++) + val[i] = buf[2 + i]; + + return buf[1]; +} + +static int pmu_format_shift(int xe, const char *name) +{ + int start, end, ret; + int format; + char device[80], buff[80]; + + format = igt_perf_format(xe_perf_device(xe, device, sizeof(device)), + name, buff, sizeof(buff)); + if (format) + return 0; + + ret = sscanf(buff, "config:%d-%d", &start, &end); + igt_assert(ret >= 1); + + return start; +} + +/** + * SUBTEST: gt-c6 + * Description: Basic residency test to validate idle residency + * measured over a time interval is within the tolerance + * + * SUBTEST: frequency + * Description: Read requested freq and actual frequency via PMU within + * specified time interval while workload runs + */ +static unsigned int measured_usleep(unsigned int usec) +{ + struct timespec ts = { }; + unsigned int slept; + + slept = igt_nsec_elapsed(&ts); + igt_assert(slept == 0); + do { + usleep(usec - slept); + slept = igt_nsec_elapsed(&ts) / 1000; + } while (slept < usec); + + return igt_nsec_elapsed(&ts) / 1000; +} + +static unsigned long read_idle_residency(int fd, int gt) +{ + unsigned long residency = 0; + 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_residency_ms", "%lu", &residency) == 1); + close(gt_fd); + + return residency; +} + +static void test_gt_c6(int xe, unsigned int gt) +{ + int pmu_fd, pmu_config, gt_shift; + uint64_t ts[2]; + unsigned long slept, start, end; + uint64_t val; + + gt_shift = pmu_format_shift(xe, "gt_id"); + pmu_config = xe_perf_event_config(xe, "gt-c6-residency") | gt << gt_shift; + pmu_fd = open_pmu(xe, pmu_config); + igt_assert_f(igt_wait(xe_gt_is_in_c6(xe, gt), 3000, 1), "GT %d not in C6\n", gt); + + /* While idle check full RC6. */ + start = read_idle_residency(xe, gt); + val = __pmu_read_single(pmu_fd, &ts[0]); + slept = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000; + end = read_idle_residency(xe, gt); + val = __pmu_read_single(pmu_fd, &ts[1]) - val; + + igt_debug("gt%u: slept=%lu, perf=%"PRIu64"\n", + gt, slept, val); + + igt_debug("Start res: %lu, end_res: %lu", start, end); + + assert_within_epsilon(val, + (ts[1] - ts[0])/1000000, + tolerance); + close(pmu_fd); +} + +static int set_freq(int fd, int gt_id, const char *freq_name, uint32_t freq) +{ + int ret = -EAGAIN; + char freq_attr[22]; + int gt_fd; + + snprintf(freq_attr, sizeof(freq_attr), "freq0/%s_freq", freq_name); + gt_fd = xe_sysfs_gt_open(fd, gt_id); + igt_assert(gt_fd >= 0); + + while (ret == -EAGAIN) + ret = igt_sysfs_printf(gt_fd, freq_attr, "%u", freq); + + close(gt_fd); + return ret; +} + +static uint32_t get_freq(int fd, int gt_id, const char *freq_name) +{ + uint32_t freq; + int err = -EAGAIN; + char freq_attr[22]; + int gt_fd; + + snprintf(freq_attr, sizeof(freq_attr), "freq0/%s_freq", freq_name); + gt_fd = xe_sysfs_gt_open(fd, gt_id); + igt_assert(gt_fd >= 0); + + while (err == -EAGAIN) + err = igt_sysfs_scanf(gt_fd, freq_attr, "%u", &freq); + + igt_debug("gt%d: %s freq %u\n", gt_id, freq_name, freq); + + close(gt_fd); + return freq; +} + +static void run_workload(int fd, int gt, struct drm_xe_engine_class_instance *eci, + struct workload *wl) +{ + struct drm_xe_sync sync[2] = { + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, }, + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, }, + }; + struct drm_xe_exec exec = { + .num_batch_buffer = 1, + .num_syncs = 2, + .syncs = to_user_pointer(sync), + }; + struct xe_spin_opts spin_opts = { + .addr = 0x1a0000, + .preempt = false + }; + struct xe_spin *spin; + + wl->addr = 0x1a0000; + + wl->vm = xe_vm_create(fd, 0, 0); + wl->bo_size = sizeof(*spin); + wl->bo_size = xe_bb_size(fd, wl->bo_size); + + wl->bo = xe_bo_create(fd, wl->vm, wl->bo_size, + vram_if_possible(fd, eci->gt_id), 0); + wl->spin = xe_bo_map(fd, wl->bo, wl->bo_size); + + wl->exec_queue = xe_exec_queue_create(fd, wl->vm, eci, 0); + wl->syncobj = syncobj_create(fd, 0); + + sync[0].handle = syncobj_create(fd, 0); + xe_vm_bind_async(fd, wl->vm, 0, wl->bo, 0, wl->addr, wl->bo_size, sync, 1); + + xe_spin_init(wl->spin, &spin_opts); + + sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL; + sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL; + sync[1].handle = wl->syncobj; + + exec.exec_queue_id = wl->exec_queue; + exec.address = wl->addr; + xe_exec(fd, &exec); + + xe_spin_wait_started(wl->spin); + usleep(50000); + igt_assert(!syncobj_wait(fd, &wl->syncobj, 1, 1, 0, NULL)); + + igt_info("Running on GT %d Engine %s:%d\n", eci->gt_id, + xe_engine_class_string(eci->engine_class), eci->engine_instance); + + /* Save it for the end_workload function */ + wl->sync[0] = sync[0]; + wl->sync[1] = sync[1]; +} + +static void end_workload(int fd, struct workload *wl) +{ + xe_spin_end(wl->spin); + + igt_assert(syncobj_wait(fd, &wl->syncobj, 1, INT64_MAX, 0, NULL)); + igt_assert(syncobj_wait(fd, &wl->sync[0].handle, 1, INT64_MAX, 0, NULL)); + + wl->sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL; + xe_vm_unbind_async(fd, wl->vm, 0, 0, wl->addr, wl->bo_size, wl->sync, 1); + igt_assert(syncobj_wait(fd, &wl->sync[0].handle, 1, INT64_MAX, 0, NULL)); + + syncobj_destroy(fd, wl->sync[0].handle); + syncobj_destroy(fd, wl->syncobj); + xe_exec_queue_destroy(fd, wl->exec_queue); + + munmap(wl->spin, wl->bo_size); + gem_close(fd, wl->bo); + xe_vm_destroy(fd, wl->vm); +} + +static void test_frequency(int fd, int gt, struct drm_xe_engine_class_instance *eci) +{ + struct workload wl; + + uint64_t val[2], start[2], slept; + double min[2], max[2]; + int pmu_fd[2], gt_config; + uint32_t orig_min = get_freq(fd, gt, "min"); + uint32_t orig_max = get_freq(fd, gt, "max"); + unsigned long config_rq_freq, config_act_freq; + + gt_config = gt << pmu_format_shift(fd, "gt_id"); + config_rq_freq = xe_perf_event_config(fd, "requested-frequency") | gt_config; + pmu_fd[0] = open_group(fd, config_rq_freq, -1); + + config_act_freq = xe_perf_event_config(fd, "actual-frequency") | gt_config; + pmu_fd[1] = open_group(fd, config_act_freq, pmu_fd[0]); + + run_workload(fd, gt, eci, &wl); + /* + * Set GPU to min frequency and read PMU counters. + */ + igt_assert(set_freq(fd, gt, "max", orig_min) > 0); + igt_assert(get_freq(fd, gt, "max") == orig_min); + + slept = pmu_read_multi(pmu_fd[0], 2, start); + measured_usleep(batch_duration_ns / 1000); + slept = pmu_read_multi(pmu_fd[0], 2, val) - slept; + + min[0] = 1e9*(val[0] - start[0]) / slept; + min[1] = 1e9*(val[1] - start[1]) / slept; + + /* + * Set GPU to max frequency and read PMU counters. + */ + igt_assert(set_freq(fd, gt, "max", orig_max) > 0); + igt_assert(get_freq(fd, gt, "max") == orig_max); + igt_assert(set_freq(fd, gt, "min", orig_max) > 0); + igt_assert(get_freq(fd, gt, "min") == orig_max); + + slept = pmu_read_multi(pmu_fd[0], 2, start); + measured_usleep(batch_duration_ns / 1000); + slept = pmu_read_multi(pmu_fd[0], 2, val) - slept; + + max[0] = 1e9*(val[0] - start[0]) / slept; + max[1] = 1e9*(val[1] - start[1]) / slept; + + /* + * Restore min/max. + */ + igt_assert(set_freq(fd, gt, "min", orig_min) > 0); + igt_assert(get_freq(fd, gt, "min") == orig_min); + + igt_info("Minimum frequency: requested %.1f, actual %.1f\n", + min[0], min[1]); + igt_info("Maximum frequency: requested %.1f, actual %.1f\n", + max[0], max[1]); + + close(pmu_fd[0]); + close(pmu_fd[1]); + + end_workload(fd, &wl); + + assert_within_epsilon(min[0], orig_min, tolerance); + /* + * On thermally throttled devices we cannot be sure maximum frequency + * can be reached so use larger tolerance downards. + */ + __assert_within_epsilon(max[0], orig_max, tolerance, 0.15f, no_debug_data); +} + +igt_main +{ + int fd, gt; + struct drm_xe_engine_class_instance *hwe; + + igt_fixture + fd = drm_open_driver(DRIVER_XE); + + igt_describe("Validate PMU C6 residency counters"); + igt_subtest("gt-c6") { + igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd))); + xe_for_each_gt(fd, gt) + test_gt_c6(fd, gt); + } + + igt_describe("Validate PMU GT freq measured over a time interval is within the tolerance"); + igt_subtest("frequency") + xe_for_each_engine(fd, hwe) + test_frequency(fd, hwe->gt_id, hwe); + + igt_fixture { + close(fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index a6750d523..c25b2f1af 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -309,6 +309,7 @@ intel_xe_progs = [ 'xe_pat', 'xe_peer2peer', 'xe_pm', + 'xe_pmu', 'xe_pm_residency', 'xe_prime_self_import', 'xe_query', -- 2.47.1 From riana.tauro at intel.com Wed Jan 15 07:30:40 2025 From: riana.tauro at intel.com (Riana Tauro) Date: Wed, 15 Jan 2025 13:00:40 +0530 Subject: [PATCH i-g-t 3/3] tests/intel/xe_pmu: Add test for per-engine-class activity In-Reply-To: <20250115073040.1852977-1-riana.tauro@intel.com> References: <20250115073040.1852977-1-riana.tauro@intel.com> Message-ID: <20250115073040.1852977-4-riana.tauro@intel.com> Add basic test to validate per-engine-class activity for all engines Signed-off-by: Riana Tauro --- tests/intel/xe_pmu.c | 55 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 54 insertions(+), 1 deletion(-) diff --git a/tests/intel/xe_pmu.c b/tests/intel/xe_pmu.c index 1f88e2560..de31e4dc1 100644 --- a/tests/intel/xe_pmu.c +++ b/tests/intel/xe_pmu.c @@ -35,7 +35,7 @@ #define SLEEP_DURATION 2 /* in seconds */ const double tolerance = 0.1; -const unsigned long batch_duration_ns = 500e6; +const unsigned long batch_duration_ns = 2000e6; const char *no_debug_data = "\0"; #define __assert_within_epsilon(x, ref, tol_up, tol_down, debug_data) \ @@ -308,6 +308,52 @@ static void end_workload(int fd, struct workload *wl) xe_vm_destroy(fd, wl->vm); } +/** + * SUBTEST: per-engine-class-activity + * Description: Test to validate engine busyness by running a workload and + * reading the busy ticks and total ticks counters + */ +static void engine_activity(int fd, struct drm_xe_engine_class_instance *eci) +{ + uint64_t config, engine_class, engine_instance, gt_shift, param_config; + uint64_t busy_ticks, total_ticks, before[2], after[2]; + struct workload wl; + int pmu_fd[2]; + + gt_shift = pmu_format_shift(fd, "gt_id"); + engine_class = pmu_format_shift(fd, "engine_class"); + engine_instance = pmu_format_shift(fd, "engine_instance"); + + param_config = (uint64_t)eci->gt_id << gt_shift | eci->engine_class << engine_class + | eci->engine_instance << engine_instance; + config = xe_perf_event_config(fd, "engine-active-ticks") | param_config; + pmu_fd[0] = open_group(fd, config, -1); + + config = xe_perf_event_config(fd, "total-ticks") | param_config; + pmu_fd[1] = open_group(fd, config, pmu_fd[0]); + + run_workload(fd, eci->gt_id, eci, &wl); + + pmu_read_multi(pmu_fd[0], 2, before); + measured_usleep(batch_duration_ns / 1000); + pmu_read_multi(pmu_fd[0], 2, after); + + end_workload(fd, &wl); + + busy_ticks = after[0] - before[0]; + total_ticks = after[1] - before[1]; + + igt_debug("Engine active ticks: after %ld, before %ld delta %ld\n", after[0], before[0], + busy_ticks); + igt_debug("Total ticks: after %ld, before %ld delta %ld\n", after[1], before[1], + total_ticks); + + close(pmu_fd[0]); + close(pmu_fd[1]); + + assert_within_epsilon(busy_ticks, total_ticks, tolerance); +} + static void test_frequency(int fd, int gt, struct drm_xe_engine_class_instance *eci) { struct workload wl; @@ -399,6 +445,13 @@ igt_main xe_for_each_engine(fd, hwe) test_frequency(fd, hwe->gt_id, hwe); + igt_describe("Validate per-engine-activity with workload running by reading pmu counters"); + igt_subtest_with_dynamic("per-engine-class-activity") + xe_for_each_engine(fd, hwe) + igt_dynamic_f("engine-%s%d", xe_engine_class_string(hwe->engine_class), + hwe->engine_instance) + engine_activity(fd, hwe); + igt_fixture { close(fd); } -- 2.47.1 From patchwork at emeril.freedesktop.org Wed Jan 15 07:13:00 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 07:13:00 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_Miscellaneous_OA_Refacto?= =?utf-8?q?rs_=28rev3=29?= In-Reply-To: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> References: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> Message-ID: <173692518019.3849170.15631362499694509978@b555e5b46a47> == Series Details == Series: Miscellaneous OA Refactors (rev3) URL : https://patchwork.freedesktop.org/series/142773/ State : failure == Summary == CI Bug Log - changes from IGT_8189_full -> IGTPW_12433_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12433_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12433_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_12433/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_12433_full: ### IGT changes ### #### Possible regressions #### * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][1] -> [ABORT][2] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-1/igt at gem_mmap_offset@clear-via-pagefault.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-1/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_tiled_swapping@non-threaded: - shard-tglu: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-10/igt at gem_tiled_swapping@non-threaded.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-2/igt at gem_tiled_swapping@non-threaded.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-b-dp-4: - shard-dg2: NOTRUN -> [INCOMPLETE][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-b-dp-4.html * igt at kms_plane_cursor@overlay: - shard-mtlp: [PASS][6] -> [DMESG-WARN][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-4/igt at kms_plane_cursor@overlay.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-8/igt at kms_plane_cursor@overlay.html * igt at kms_pm_rpm@pm-caching: - shard-rkl: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt at kms_pm_rpm@pm-caching.html * igt at kms_vblank@ts-continuation-dpms-suspend: - shard-tglu: [PASS][9] -> [ABORT][10] +1 other test abort [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-7/igt at kms_vblank@ts-continuation-dpms-suspend.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-2/igt at kms_vblank@ts-continuation-dpms-suspend.html * igt at perf_pmu@module-unload: - shard-mtlp: [PASS][11] -> [INCOMPLETE][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-6/igt at perf_pmu@module-unload.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-7/igt at perf_pmu@module-unload.html Known issues ------------ Here are the changes found in IGTPW_12433_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8411]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@object-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8411]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt at api_intel_bb@object-reloc-keep-cache.html * igt at device_reset@unbind-cold-reset-rebind: - shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#11078]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][16] ([i915#11078]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][17] ([i915#11078]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt at device_reset@unbind-cold-reset-rebind.html * igt at device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [ABORT][18] ([i915#11814] / [i915#11815] / [i915#9413]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt at device_reset@unbind-reset-rebind.html * igt at drm_fdinfo@busy-check-all at bcs0: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8414]) +6 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at drm_fdinfo@busy-check-all at bcs0.html * igt at drm_fdinfo@busy-hang at rcs0: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8414]) +14 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-6/igt at drm_fdinfo@busy-hang at rcs0.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8414]) +25 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at gem_bad_reloc@negative-reloc: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#3281]) +7 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-7/igt at gem_bad_reloc@negative-reloc.html * igt at gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#7697]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt at gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt at gem_close_race@multigpu-basic-process.html * igt at gem_close_race@multigpu-basic-threads: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#7697]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-big: - shard-dg2: [PASS][28] -> [ABORT][29] ([i915#13427]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-8/igt at gem_create@create-ext-cpu-access-big.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-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][30] ([i915#6335]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_ctx_isolation@preservation-s3: - shard-rkl: NOTRUN -> [DMESG-FAIL][31] ([i915#12964]) +1 other test dmesg-fail [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt at gem_ctx_isolation@preservation-s3.html * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][32] ([i915#12353]) +1 other test incomplete [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk3/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_persistence@hang: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#8555]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt at gem_ctx_persistence@hang.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#8555]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][35] ([i915#1099]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb5/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#280]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt at gem_ctx_sseu@invalid-args.html - shard-rkl: NOTRUN -> [SKIP][37] ([i915#280]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-7/igt at gem_ctx_sseu@invalid-args.html - shard-tglu: NOTRUN -> [SKIP][38] ([i915#280]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/igt at gem_ctx_sseu@invalid-args.html * igt at gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][39] ([i915#10030] / [i915#7975] / [i915#8213]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt at gem_eio@hibernate.html * igt at gem_eio@in-flight-contexts-10ms: - shard-mtlp: [PASS][40] -> [ABORT][41] ([i915#13193]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-7/igt at gem_eio@in-flight-contexts-10ms.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-4/igt at gem_eio@in-flight-contexts-10ms.html * igt at gem_eio@kms: - shard-tglu: [PASS][42] -> [DMESG-WARN][43] ([i915#13363]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-9/igt at gem_eio@kms.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt at gem_eio@kms.html - shard-dg1: [PASS][44] -> [FAIL][45] ([i915#5784]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-12/igt at gem_eio@kms.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at gem_eio@kms.html * igt at gem_eio@reset-stress: - shard-dg1: [PASS][46] -> [FAIL][47] ([i915#12543] / [i915#5784]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-14/igt at gem_eio@reset-stress.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at gem_eio@reset-stress.html * igt at gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4771]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4812]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt at gem_exec_balancer@bonded-false-hang.html * igt at gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4771]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4525]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [SKIP][52] ([i915#4525]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-4/igt at gem_exec_balancer@parallel-ordering.html * igt at gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#6334]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3539]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3539] / [i915#4852]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt at gem_exec_flush@basic-wb-ro-before-default.html - shard-dg1: NOTRUN -> [SKIP][56] ([i915#3539] / [i915#4852]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/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][57] ([i915#3281]) +13 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt at gem_exec_reloc@basic-active.html * igt at gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#3281]) +6 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt at gem_exec_reloc@basic-write-gtt-active.html * igt at gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4812]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt at gem_exec_schedule@semaphore-power.html - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4537] / [i915#4812]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt at gem_exec_schedule@semaphore-power.html * igt at gem_exec_suspend@basic-s4-devices: - shard-rkl: NOTRUN -> [ABORT][61] ([i915#7975] / [i915#8213]) +2 other tests abort [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-6/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: [PASS][62] -> [ABORT][63] ([i915#7975] / [i915#8213]) +1 other test abort [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-13/igt at gem_exec_suspend@basic-s4-devices at lmem0.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4860]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at gem_fence_thrash@bo-write-verify-y.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4860]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-3/igt at gem_fence_thrash@bo-write-verify-y.html * igt at gem_fenced_exec_thrash@2-spare-fences: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4860]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at gem_fenced_exec_thrash@2-spare-fences.html * igt at gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#2190]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt at gem_huc_copy@huc-copy.html - shard-tglu: NOTRUN -> [SKIP][68] ([i915#2190]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-3/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#4613] / [i915#7582]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#12193]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4565]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#4613]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-6/igt at gem_lmem_swapping@parallel-random-verify.html - shard-glk: NOTRUN -> [SKIP][73] ([i915#4613]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk6/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: NOTRUN -> [TIMEOUT][74] ([i915#5493]) +1 other test timeout [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-random: - shard-tglu: NOTRUN -> [SKIP][75] ([i915#4613]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/igt at gem_lmem_swapping@verify-random.html * igt at gem_mmap_gtt@flink-race: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4077]) +12 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt at gem_mmap_gtt@flink-race.html * igt at gem_mmap_gtt@hang: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4077]) +12 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at gem_mmap_gtt@hang.html * igt at gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4083]) +7 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at gem_mmap_wc@write-read.html * igt at gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4083]) +5 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt at gem_mmap_wc@write-wc-read-gtt.html * igt at gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#3282]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt at gem_partial_pwrite_pread@writes-after-reads.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#3282]) +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3282]) +8 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at gem_pread@snoop.html * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4270]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt at gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][84] ([i915#12964]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt at gem_pxp@fail-invalid-protected-context.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][85] ([i915#12917] / [i915#12964]) +3 other tests timeout [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4270]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at gem_pxp@reject-modify-context-protection-off-3.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#5190] / [i915#8428]) +9 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4079]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4885]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at gem_softpin@evict-snoop.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#4885]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4079]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt at gem_tiled_pread_pwrite.html * igt at gem_userptr_blits@coherency-unsync: - shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at gem_userptr_blits@coherency-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][93] ([i915#3323]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk4/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@invalid-mmap-offset-unsync: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#3297]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-6/igt at gem_userptr_blits@invalid-mmap-offset-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4880]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][96] +405 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb1/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_12433/shard-glk6/igt at gem_workarounds@suspend-resume-context.html * igt at gem_workarounds@suspend-resume-fd: - shard-glk: [PASS][98] -> [INCOMPLETE][99] ([i915#13356]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-glk6/igt at gem_workarounds@suspend-resume-fd.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk4/igt at gem_workarounds@suspend-resume-fd.html * igt at gen3_mixed_blits: - shard-dg2: NOTRUN -> [SKIP][100] +14 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt at gen3_mixed_blits.html * igt at gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/igt at gen9_exec_parse@bb-large.html * igt at gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#2527]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at gen9_exec_parse@bb-secure.html * igt at gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#2527]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt at gen9_exec_parse@bb-start-far.html * igt at gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#2856]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at gen9_exec_parse@bb-start-param.html * igt at gen9_exec_parse@secure-batches: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-2/igt at gen9_exec_parse@secure-batches.html * igt at i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#8399]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/igt at i915_pm_freq_api@freq-reset.html - shard-rkl: NOTRUN -> [SKIP][107] ([i915#8399]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_freq_api@freq-reset-multiple: - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#8399]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at i915_pm_freq_api@freq-reset-multiple.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#6590]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [PASS][110] -> [FAIL][111] ([i915#12942]) +1 other test fail [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-3/igt at i915_pm_rc6_residency@rc6-accuracy.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#11681] / [i915#6621]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#11681] / [i915#6621]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#11681]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt at i915_pm_rps@thresholds.html * igt at i915_pm_rps@thresholds-park: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#11681]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt at i915_pm_rps@thresholds-park.html * igt at i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4387]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt at i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][117] ([i915#4387]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt at i915_pm_sseu@full-enable.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#6188]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_suspend@basic-s3-without-i915: - shard-tglu-1: NOTRUN -> [INCOMPLETE][119] ([i915#7443]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at i915_suspend@basic-s3-without-i915.html - shard-glk: NOTRUN -> [INCOMPLETE][120] ([i915#4817]) +1 other test incomplete [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk6/igt at i915_suspend@basic-s3-without-i915.html * igt at intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#7707]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-6/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#4212]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-7/igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#4215]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at kms_addfb_basic@basic-y-tiled-legacy.html - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4215] / [i915#5190]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#4212]) +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4212]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at kms_addfb_basic@framebuffer-vs-set-tiling.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][127] ([i915#12761]) +1 other test incomplete [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk8/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-3-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#8709]) +7 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/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][129] ([i915#8709]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-6/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][130] ([i915#12967] / [i915#6228]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#12967]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#9531]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][133] ([i915#9531]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@modeset-transition-fencing: - shard-glk: [PASS][134] -> [FAIL][135] ([i915#12238]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-glk3/igt at kms_atomic_transition@modeset-transition-fencing.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk8/igt at kms_atomic_transition@modeset-transition-fencing.html * igt at kms_atomic_transition@modeset-transition-fencing at 2x-outputs: - shard-glk: [PASS][136] -> [FAIL][137] ([i915#11859]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-glk3/igt at kms_atomic_transition@modeset-transition-fencing at 2x-outputs.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk8/igt at kms_atomic_transition@modeset-transition-fencing at 2x-outputs.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#1769] / [i915#3555]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#1769] / [i915#3555]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1: - shard-tglu: [PASS][140] -> [FAIL][141] ([i915#11808]) +1 other test fail [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-4/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#5286]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html - shard-dg1: NOTRUN -> [SKIP][143] ([i915#4538] / [i915#5286]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#5286]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_big_fb@4-tiled-8bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#5286]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][146] -> [FAIL][147] ([i915#5138]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-3/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3638]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-7/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#3638]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#5190]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt at kms_big_fb@y-tiled-addfb-size-offset-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]) +17 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/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]) +7 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][153] +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-6/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#12313]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-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][155] ([i915#6095]) +127 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/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][156] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][157] +446 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk4/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2.html * igt at kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#6095]) +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-7/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#12313]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-dg2: NOTRUN -> [SKIP][160] ([i915#12313]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#6095]) +19 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#12805]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/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: - shard-dg2: [PASS][163] -> [INCOMPLETE][164] ([i915#12796]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-5/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#6095]) +24 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-3/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][166] ([i915#12796]) +1 other test incomplete [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk1/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][167] ([i915#6095]) +12 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/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][168] ([i915#12313]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#6095]) +83 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs at pipe-c-dp-4: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#10307] / [i915#6095]) +131 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs at pipe-c-dp-4.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#3742]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@mode-transition at pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#7213]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt at kms_cdclk@mode-transition at pipe-b-hdmi-a-2.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +11 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_frames@vga-frame-dump: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_chamelium_frames@vga-frame-dump.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +7 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +7 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-5/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-6/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +9 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#9424]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3299]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-10/igt at kms_content_protection@legacy.html - shard-rkl: NOTRUN -> [SKIP][182] ([i915#7118] / [i915#9424]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt at kms_content_protection@legacy.html * igt at kms_content_protection@legacy at pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][183] ([i915#7173]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at kms_content_protection@legacy at pipe-a-dp-4.html * igt at kms_content_protection@lic-type-0: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#9424]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at kms_content_protection@lic-type-0.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#8814]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-7/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#3555]) +4 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#13049]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-32x10: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555]) +6 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt at kms_cursor_crc@cursor-onscreen-32x10.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#13049]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555]) +9 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#13049]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#13049]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-sliding-128x42 at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][193] ([i915#12964]) +19 other tests dmesg-warn [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt at kms_cursor_crc@cursor-sliding-128x42 at pipe-a-hdmi-a-2.html * igt at kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][194] ([i915#12358] / [i915#7882]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk5/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][195] ([i915#12358]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk5/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#13046] / [i915#5354]) +4 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][197] +29 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#9809]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-2/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#4103]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#4103] / [i915#4213]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg2: NOTRUN -> [SKIP][201] ([i915#4103] / [i915#4213]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][202] -> [FAIL][203] ([i915#2346]) +1 other test fail [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-glk8/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk1/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: NOTRUN -> [FAIL][204] ([i915#2346]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#9723]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#9723]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][207] ([i915#9723]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#1257]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt at kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][209] ([i915#1257]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt at kms_dp_aux_dev.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#3840]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#3955]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt at kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][212] ([i915#3469]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-9/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#2065] / [i915#4854]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#1839]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt at kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#1839]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#9337]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-absolute-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#9934]) +4 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at kms_flip@2x-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1: - shard-snb: [PASS][218] -> [FAIL][219] ([i915#11989]) +1 other test fail [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-snb7/igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb4/igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@2x-flip-vs-dpms: - shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#3637]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#8381]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#9934]) +4 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#9934]) +8 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][224] ([i915#12745] / [i915#1982] / [i915#4839]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/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: NOTRUN -> [INCOMPLETE][225] ([i915#1982] / [i915#4839]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk9/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#3637]) +2 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-8/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@dpms-off-confusion: - shard-glk: NOTRUN -> [DMESG-WARN][227] ([i915#118]) +1 other test dmesg-warn [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk8/igt at kms_flip@dpms-off-confusion.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][228] ([i915#12745] / [i915#4839]) +1 other test incomplete [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk7/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][229] ([i915#12745]) +1 other test incomplete [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk5/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html * igt at kms_flip@wf_vblank-ts-check-interruptible at b-edp1: - shard-mtlp: [PASS][230] -> [FAIL][231] ([i915#11989]) +2 other tests fail [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-2/igt at kms_flip@wf_vblank-ts-check-interruptible at b-edp1.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-4/igt at kms_flip@wf_vblank-ts-check-interruptible at b-edp1.html * igt at kms_flip@wf_vblank-ts-check-interruptible at b-hdmi-a1: - shard-tglu: [PASS][232] -> [FAIL][233] ([i915#11989]) +2 other tests fail [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-4/igt at kms_flip@wf_vblank-ts-check-interruptible at b-hdmi-a1.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-2/igt at kms_flip@wf_vblank-ts-check-interruptible at b-hdmi-a1.html * igt at kms_flip@wf_vblank-ts-check-interruptible at b-vga1: - shard-snb: NOTRUN -> [FAIL][234] ([i915#11989]) +2 other tests fail [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb4/igt at kms_flip@wf_vblank-ts-check-interruptible at b-vga1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/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-32bpp-yftileccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-10/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#2672]) +4 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-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-yftileccs-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/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-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#2587] / [i915#2672] / [i915#3555]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555]) +4 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#3555]) +6 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/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-dg1: NOTRUN -> [SKIP][242] ([i915#2587] / [i915#2672]) +7 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/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-32bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.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_12433/shard-dg2-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling at pipe-a-valid-mode.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#5274]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-rkl: [PASS][246] -> [DMESG-WARN][247] ([i915#12964]) +49 other tests dmesg-warn [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-2/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-dg2: NOTRUN -> [FAIL][248] ([i915#6880]) +1 other test fail [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [DMESG-WARN][249] ([i915#12917] / [i915#12964]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#8708]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-6/igt at kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite: - shard-snb: [PASS][251] -> [SKIP][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][253] +50 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][254] +29 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/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-cpu: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#5354]) +39 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#10055]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#8708]) +21 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt: - shard-tglu: NOTRUN -> [SKIP][258] +62 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-10/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#1825]) +36 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#9766]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][261] ([i915#9766]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#8708]) +22 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#3023]) +17 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#3458]) +19 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#1825]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-8/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3458]) +26 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#6118]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@brightness-with-hdr: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#12713]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8228]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle-dpms: - shard-dg2: [PASS][271] -> [SKIP][272] ([i915#3555] / [i915#8228]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-10/igt at kms_hdr@static-toggle-dpms.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@basic-big-joiner: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#10656]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt at kms_joiner@basic-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][274] ([i915#10656]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#12388]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#12339]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_joiner@basic-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][277] ([i915#12339]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#12394]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-6/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#4816]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_cursor@overlay at pipe-c-edp-1-size-64: - shard-mtlp: [PASS][280] -> [DMESG-WARN][281] ([i915#1982]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-4/igt at kms_plane_cursor@overlay at pipe-c-edp-1-size-64.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-8/igt at kms_plane_cursor@overlay at pipe-c-edp-1-size-64.html * igt at kms_plane_lowres@tiling-none: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#11614] / [i915#3582]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-5/igt at kms_plane_lowres@tiling-none.html * igt at kms_plane_lowres@tiling-none at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-5/igt at kms_plane_lowres@tiling-none at pipe-b-edp-1.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#8821]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#6953] / [i915#9423]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#12247]) +7 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/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: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#12247]) +9 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#12247]) +8 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#12247] / [i915#6953] / [i915#9423]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#12247] / [i915#9423]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#12247] / [i915#6953]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/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-25-upscale-factor-0-25 at pipe-d: - shard-tglu: NOTRUN -> [SKIP][292] ([i915#12247]) +13 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-d: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#12247]) +7 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#12247] / [i915#6953]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-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][295] ([i915#12247] / [i915#3555]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-dg1: [PASS][296] -> [DMESG-WARN][297] ([i915#4423]) +2 other tests dmesg-warn [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-18/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt at kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#5354]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#12343]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#5354]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at kms_pm_backlight@fade.html * igt at kms_pm_backlight@fade-with-suspend: - shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#9812]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#9685]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#5978]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt at kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [SKIP][304] ([i915#3361]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#9340]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-6/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#8430]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@cursor-dpms: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#12916]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at kms_pm_rpm@cursor-dpms.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#9519]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#9519]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][310] -> [SKIP][311] ([i915#9519]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-2/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#9519]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][313] -> [SKIP][314] ([i915#12916]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-6/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-6/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][315] ([i915#6524]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-7/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-crc-vgem: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#6524]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt at kms_prime@basic-crc-vgem.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-glk: NOTRUN -> [SKIP][317] ([i915#11520]) +9 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk5/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#11520]) +10 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html - shard-rkl: NOTRUN -> [SKIP][319] ([i915#11520]) +7 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#11520]) +5 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-5/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-snb: NOTRUN -> [SKIP][321] ([i915#11520]) +8 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb1/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][322] ([i915#11520]) +10 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#11520]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#9683]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#9683]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][326] ([i915#9683]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-primary-blt: - shard-mtlp: NOTRUN -> [SKIP][327] ([i915#9688]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-6/igt at kms_psr@fbc-pr-primary-blt.html * igt at kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#1072] / [i915#9732]) +22 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-5/igt at kms_psr@fbc-psr2-sprite-render.html - shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#9732]) +7 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_psr@fbc-psr2-sprite-render.html * igt at kms_psr@psr-primary-render: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#9732]) +17 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-4/igt at kms_psr@psr-primary-render.html * igt at kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][331] ([i915#1072] / [i915#9732]) +26 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt at kms_psr@psr-sprite-mmap-cpu.html * igt at kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#1072] / [i915#9732]) +29 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt at kms_psr@psr2-primary-mmap-gtt.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#12755] / [i915#5190]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#5289]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/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-dg1: NOTRUN -> [SKIP][335] ([i915#5289]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-14/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][336] ([i915#13179]) +1 other test abort [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb7/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@clone-exclusive-crtc: - shard-tglu: NOTRUN -> [SKIP][337] ([i915#3555]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-4/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#3555]) +2 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][339] ([i915#11920]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt at kms_vrr@lobf.html - shard-dg1: NOTRUN -> [SKIP][340] ([i915#11920]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#3555] / [i915#9906]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#9906]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#9906]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt at kms_vrr@seamless-rr-switch-vrr.html - shard-tglu: NOTRUN -> [SKIP][344] ([i915#9906]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-10/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][345] ([i915#2437]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][346] ([i915#2437]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][347] ([i915#2437]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk6/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#2434]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt at perf@mi-rpc.html * igt at perf_pmu@busy-idle at vcs1: - shard-mtlp: [PASS][349] -> [FAIL][350] ([i915#4349]) +1 other test fail [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-7/igt at perf_pmu@busy-idle at vcs1.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-5/igt at perf_pmu@busy-idle at vcs1.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#8516]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#8516]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-1/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at perf_pmu@render-node-busy-idle at bcs0: - shard-dg1: [PASS][353] -> [FAIL][354] ([i915#4349]) +5 other tests fail [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-12/igt at perf_pmu@render-node-busy-idle at bcs0.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt at perf_pmu@render-node-busy-idle at bcs0.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#3291] / [i915#3708]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt at prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][356] ([i915#3708]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at prime_vgem@basic-write.html * igt at prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][357] ([i915#3708] / [i915#4077]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at prime_vgem@coherency-gtt.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#9917]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-5/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg1: NOTRUN -> [SKIP][359] ([i915#9917]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-random: - shard-tglu: NOTRUN -> [FAIL][360] ([i915#12910]) +8 other tests fail [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-9/igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-random.html #### Possible fixes #### * igt at gem_exec_schedule@fairslice: - shard-rkl: [DMESG-WARN][361] ([i915#12964]) -> [PASS][362] +17 other tests pass [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-2/igt at gem_exec_schedule@fairslice.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt at gem_exec_schedule@fairslice.html * igt at gem_exec_suspend@basic-s3 at lmem0: - shard-dg1: [ABORT][363] -> [PASS][364] +1 other test pass [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt at gem_exec_suspend@basic-s3 at lmem0.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt at gem_exec_suspend@basic-s3 at lmem0.html * igt at gem_mmap_gtt@medium-copy-odd: - shard-rkl: [DMESG-WARN][365] ([i915#12917] / [i915#12964]) -> [PASS][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-4/igt at gem_mmap_gtt@medium-copy-odd.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt at gem_mmap_gtt@medium-copy-odd.html * igt at gem_workarounds@suspend-resume-fd: - shard-rkl: [DMESG-FAIL][367] ([i915#12964]) -> [PASS][368] [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-1/igt at gem_workarounds@suspend-resume-fd.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-4/igt at gem_workarounds@suspend-resume-fd.html * igt at gen9_exec_parse@allowed-all: - shard-glk: [ABORT][369] ([i915#5566]) -> [PASS][370] [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-glk5/igt at gen9_exec_parse@allowed-all.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk2/igt at gen9_exec_parse@allowed-all.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][371] ([i915#9820]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-4/igt at i915_module_load@reload-with-fault-injection.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-1/igt at i915_module_load@reload-with-fault-injection.html - shard-snb: [ABORT][373] ([i915#9820]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-snb4/igt at i915_module_load@reload-with-fault-injection.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb2/igt at i915_module_load@reload-with-fault-injection.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][375] ([i915#5138]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-5/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-tglu: [FAIL][377] ([i915#2346]) -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-2/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-6/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [FAIL][379] ([i915#2346]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-snb2/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_flip@flip-vs-wf_vblank-interruptible: - shard-dg2: [FAIL][381] ([i915#10826]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-7/igt at kms_flip@flip-vs-wf_vblank-interruptible.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-11/igt at kms_flip@flip-vs-wf_vblank-interruptible.html * igt at kms_flip@plain-flip-ts-check at b-edp1: - shard-mtlp: [FAIL][383] ([i915#11989]) -> [PASS][384] +3 other tests pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-2/igt at kms_flip@plain-flip-ts-check at b-edp1.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-7/igt at kms_flip@plain-flip-ts-check at b-edp1.html * igt at kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][385] ([i915#12916]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-4/igt at kms_pm_rpm@modeset-lpsp.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-7/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_psr@psr2-cursor-plane-onoff: - shard-mtlp: [FAIL][387] -> [PASS][388] +1 other test pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-1/igt at kms_psr@psr2-cursor-plane-onoff.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-3/igt at kms_psr@psr2-cursor-plane-onoff.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-mtlp: [FAIL][389] ([i915#5465]) -> [PASS][390] +2 other tests pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-5/igt at kms_setmode@basic at pipe-b-edp-1.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-1/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at perf_pmu@busy: - shard-dg2: [FAIL][391] ([i915#4349]) -> [PASS][392] +2 other tests pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-10/igt at perf_pmu@busy.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-7/igt at perf_pmu@busy.html * igt at perf_pmu@busy-accuracy-98 at rcs0: - shard-tglu: [FAIL][393] ([i915#4349]) -> [PASS][394] +2 other tests pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-4/igt at perf_pmu@busy-accuracy-98 at rcs0.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-tglu-5/igt at perf_pmu@busy-accuracy-98 at rcs0.html #### Warnings #### * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: [TIMEOUT][395] ([i915#12964]) -> [SKIP][396] ([i915#4270]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-5/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: [SKIP][397] ([i915#4270]) -> [TIMEOUT][398] ([i915#12917] / [i915#12964]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-7/igt at gem_pxp@reject-modify-context-protection-off-2.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-3/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: [TIMEOUT][399] ([i915#12917] / [i915#12964]) -> [SKIP][400] ([i915#4270]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-2/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][401] ([i915#13493] / [i915#9820]) -> [DMESG-WARN][402] ([i915#13475]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt at i915_module_load@reload-with-fault-injection.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][403] ([i915#10131] / [i915#13493] / [i915#9820]) -> [ABORT][404] ([i915#10131]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-5/igt at i915_module_load@reload-with-fault-injection.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-mtlp-5/igt at i915_module_load@reload-with-fault-injection.html - shard-dg2: [ABORT][405] ([i915#9820]) -> [DMESG-WARN][406] ([i915#13475]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-10/igt at i915_module_load@reload-with-fault-injection.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-8/igt at i915_module_load@reload-with-fault-injection.html * igt at kms_content_protection@legacy: - shard-dg2: [SKIP][407] ([i915#7118] / [i915#9424]) -> [TIMEOUT][408] ([i915#7173]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-11/igt at kms_content_protection@legacy.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg2-10/igt at kms_content_protection@legacy.html * igt at kms_content_protection@mei-interface: - shard-dg1: [SKIP][409] ([i915#9424]) -> [SKIP][410] ([i915#9433]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt at kms_content_protection@mei-interface.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt at kms_content_protection@mei-interface.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][411] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][412] ([i915#12745] / [i915#4839]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-glk8/igt at kms_flip@2x-flip-vs-suspend-interruptible.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-glk1/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg1: [SKIP][413] ([i915#3458] / [i915#4423]) -> [SKIP][414] ([i915#3458]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt: - shard-dg1: [SKIP][415] ([i915#4423]) -> [SKIP][416] [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg1: [SKIP][417] ([i915#8708]) -> [SKIP][418] ([i915#4423] / [i915#8708]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-12/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: [SKIP][419] ([i915#4423] / [i915#8708]) -> [SKIP][420] ([i915#8708]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-12/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-18/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-dg1: [SKIP][421] -> [SKIP][422] ([i915#4423]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt at kms_hdr@brightness-with-hdr: - shard-dg1: [SKIP][423] ([i915#12713]) -> [SKIP][424] ([i915#1187] / [i915#12713]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-12/igt at kms_hdr@brightness-with-hdr.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-13/igt at kms_hdr@brightness-with-hdr.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][425] ([i915#9519]) -> [SKIP][426] ([i915#12916]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-7/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-rkl-2/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: [SKIP][427] ([i915#4423] / [i915#5289]) -> [SKIP][428] ([i915#5289]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-12/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/shard-dg1-12/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030 [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814 [i915#11815]: == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12433/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kunal1.joshi at intel.com Wed Jan 15 07:32:39 2025 From: kunal1.joshi at intel.com (Kunal Joshi) Date: Wed, 15 Jan 2025 13:02:39 +0530 Subject: [PATCH 0/4] add test to validate uhbr/non-uhbr over sst/mst Message-ID: <20250115073243.2002014-1-kunal1.joshi@intel.com> Add new test validating UHBR and non-UHBR link rates for both SST and MST configurations. The series comprises three patches: 1. tests/intel/kms_joiner_helper: - Introduces kms_joiner_helper.c/h for pipe assignments taking care of joiners - Moves common joiner-related logic out of kms_joiner.c. 2. tests/intel/kms_mst_helper: - Adds kms_mst_helper.c/h for MST-specific operations. - Centralizes code for identifying and assigning MST outputs. 3. tests/kms_feature_discovery: - Implements tests verifying UHBR and non-UHBR link rates with SST and MST. - Uses the new helpers for pipe assignments and topology discovery. Kunal Joshi (4): tests/intel/kms_joiner_helper: helper for joiner-related functions tests/intel/kms_mst_helper: Add helper for MST-related functions tests/kms_feature_discovery: Add tests for UHBR/non-UHBR over SST/MST HAX: DO NOT MERGE tests/intel-ci/fast-feedback.testlist | 14 ++ tests/intel-ci/xe-fast-feedback.testlist | 14 ++ tests/intel/kms_dp_linktrain_fallback.c | 28 +--- tests/intel/kms_joiner.c | 15 +- tests/intel/kms_joiner_helper.c | 179 +++++++++++++++++++++++ tests/intel/kms_joiner_helper.h | 15 ++ tests/intel/kms_mst_helper.c | 48 ++++++ tests/intel/kms_mst_helper.h | 10 ++ tests/kms_feature_discovery.c | 177 ++++++++++++++++++++++ tests/meson.build | 6 + 10 files changed, 469 insertions(+), 37 deletions(-) create mode 100644 tests/intel/kms_joiner_helper.c create mode 100644 tests/intel/kms_joiner_helper.h create mode 100644 tests/intel/kms_mst_helper.c create mode 100644 tests/intel/kms_mst_helper.h -- 2.25.1 From kunal1.joshi at intel.com Wed Jan 15 07:32:40 2025 From: kunal1.joshi at intel.com (Kunal Joshi) Date: Wed, 15 Jan 2025 13:02:40 +0530 Subject: [PATCH 1/4] tests/intel/kms_joiner_helper: helper for joiner-related functions In-Reply-To: <20250115073243.2002014-1-kunal1.joshi@intel.com> References: <20250115073243.2002014-1-kunal1.joshi@intel.com> Message-ID: <20250115073243.2002014-2-kunal1.joshi@intel.com> This patch introduces a new kms_joiner_helper.c and kms_joiner_helper.h to handle Big Joiner and Ultra Joiner logic in a centralized manner. It provides utility functions to set and manage master pipes, as well as to assign consecutive pipes for multi-pipe configurations. By moving these operations into helper files, we improve code clarity and enable reuse across multiple tests requiring joiner capabilities. The patch also updates kms_joiner.c to use igt_set_all_master_pipes_for_platform() instead of the local set_all_master_pipes_for_platform() function. This unifies the approach to pipe assignments for joiner scenarios. Finally, it updates meson.build to include kms_joiner_helper.c. Signed-off-by: Kunal Joshi Reviewed-by: Jeevan B --- tests/intel/kms_joiner.c | 15 +-- tests/intel/kms_joiner_helper.c | 179 ++++++++++++++++++++++++++++++++ tests/intel/kms_joiner_helper.h | 15 +++ tests/meson.build | 1 + 4 files changed, 197 insertions(+), 13 deletions(-) create mode 100644 tests/intel/kms_joiner_helper.c create mode 100644 tests/intel/kms_joiner_helper.h diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c index 418ff26a6..0151dd182 100644 --- a/tests/intel/kms_joiner.c +++ b/tests/intel/kms_joiner.c @@ -37,6 +37,7 @@ #include "igt.h" #include "xe/xe_query.h" #include "kms_dsc_helper.c" +#include "kms_joiner_helper.h" /** * SUBTEST: invalid-modeset-big-joiner @@ -97,18 +98,6 @@ typedef struct { static int max_dotclock; -static void set_all_master_pipes_for_platform(data_t *data) -{ - enum pipe pipe; - - for (pipe = PIPE_A; pipe < IGT_MAX_PIPES - 1; pipe++) { - if (data->display.pipes[pipe].enabled && data->display.pipes[pipe + 1].enabled) { - data->master_pipes |= BIT(pipe); - igt_info("Found master pipe %s\n", kmstest_pipe_name(pipe)); - } - } -} - static void enable_force_joiner_on_all_non_big_joiner_outputs(data_t *data) { bool status; @@ -430,7 +419,7 @@ igt_main data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); kmstest_set_vt_graphics_mode(); igt_display_require(&data.display, data.drm_fd); - set_all_master_pipes_for_platform(&data); + igt_set_all_master_pipes_for_platform(&data.display, &data.master_pipes); igt_require(data.display.is_atomic); max_dotclock = igt_get_max_dotclock(data.drm_fd); diff --git a/tests/intel/kms_joiner_helper.c b/tests/intel/kms_joiner_helper.c new file mode 100644 index 000000000..af89be777 --- /dev/null +++ b/tests/intel/kms_joiner_helper.c @@ -0,0 +1,179 @@ +#include "kms_joiner_helper.h" +#include "igt.h" +#include "igt_kms.h" +#include "intel_chipset.h" + +/* + * Detect if the output needs 1, 2, or 4 pipes (non-joiner, big joiner, ultra). + * This re-uses your existing logic from: + * bigjoiner_mode_found(), ultrajoiner_mode_found(), + * is_intel_device(), igt_get_max_dotclock(), etc. + */ +static int get_required_pipes(int drm_fd, igt_output_t *output) +{ + bool is_big = false, is_ultra = false; + int max_dotclock; + drmModeModeInfo mode; + + if (!is_intel_device(drm_fd)) + return -1; + + max_dotclock = igt_get_max_dotclock(drm_fd); + + is_ultra = ultrajoiner_mode_found(drm_fd, + output->config.connector, + max_dotclock, + &mode); + is_big = bigjoiner_mode_found(drm_fd, + output->config.connector, + max_dotclock, + &mode); + + if (is_ultra) + return 4; + if (is_big) + return 2; + + return 1; +} + +/* + * Internal helper to find a block of consecutive free pipes + * in available_pipes_mask. If count > 1, the first pipe must also + * be in master_pipes_mask. + * + * Returns the starting pipe index or -1 if not found. + */ +static int find_consecutive_pipes(int n_pipes, + uint32_t available_pipes_mask, + uint32_t master_pipes_mask, + int count) +{ + int i = 0, pipe_idx = 0; + bool can_use; + + for (int start = 0; start < n_pipes; start++) { + if (((start + count) - 1) >= n_pipes) + break; + + if ((count > 1) && (!(BIT(start) & master_pipes_mask))) + continue; + + can_use = true; + for (i = 0; i < count; i++) { + pipe_idx = start + i; + if (!(BIT(pipe_idx) & available_pipes_mask)) { + can_use = false; + break; + } + } + if (can_use) + return start; + } + return -1; +} + +static enum pipe get_next_master_pipe(uint32_t pipe_mask) +{ + int i; + + if (!pipe_mask) + return PIPE_NONE; + + i = ffs(pipe_mask) - 1; + + if (i < 0) + return PIPE_NONE; + + return i; +} + +/** + * igt_set_all_master_pipes_for_platform: + * @master_pipes: Pointer to the variable to store the master pipes bitmask. + * @display: The display structure containing pipe information. + * + * This function sets the master pipes for the platform by checking if consecutive + * pipes are enabled. If both pipe and the next pipe are enabled, the pipe is + * considered a master pipe. + */ +void igt_set_all_master_pipes_for_platform(igt_display_t *display, uint32_t *master_pipes) +{ + enum pipe pipe; + + *master_pipes = 0; + for (pipe = PIPE_A; pipe < IGT_MAX_PIPES - 1; pipe++) { + if (display->pipes[pipe].enabled && display->pipes[pipe + 1].enabled) { + *master_pipes |= BIT(pipe); + igt_info("Found master pipe %s\n", kmstest_pipe_name(pipe)); + } + } +} + +/* + * @drm_fd: DRM file descriptor + * @outputs: array of pointers to igt_output_t + * @num_outputs: how many outputs in the array + * @n_pipes: total number of pipes available + * @used_pipes_mask: pointer to a bitmask (in/out) of already-used pipes + * @master_pipes_mask: bitmask of valid "master" pipes + * @valid_pipes_mask: bitmask of valid (non-fused) pipes + * + * Assign pipes to outputs based on the number of required pipes. + * This function will assign 1, 2, or 4 consecutive pipes to each output. + * It will also mark the used pipes in the bitmask. + * + * Returns: true if all outputs can be assigned successfully; false otherwise. + */ +bool igt_assign_pipes_for_outputs(int drm_fd, + igt_output_t **outputs, + int num_outputs, + int n_pipes, + uint32_t *used_pipes_mask, + uint32_t master_pipes_mask, + uint32_t valid_pipes_mask) +{ + int i = 0, idx = 0, needed = 0, start = 0; + uint32_t available_pipes_mask = 0; + enum pipe mp = PIPE_NONE; + igt_output_t *out; + + for (idx = 0; idx < num_outputs; idx++) { + out = outputs[idx]; + needed = get_required_pipes(drm_fd, out); + if (needed < 0) + return false; + + available_pipes_mask = (~(*used_pipes_mask)) & valid_pipes_mask; + start = find_consecutive_pipes(n_pipes, available_pipes_mask, + master_pipes_mask, needed); + + if (start < 0) { + igt_debug("Cannot allocate %d consecutive pipes for output %s\n", + needed, out->name); + return false; + } + + igt_info("Assigning %d pipes [start=%s..%s] to output %s\n", + needed, kmstest_pipe_name(start), + kmstest_pipe_name(start + needed - 1), out->name); + + if (needed > 1) { + mp = get_next_master_pipe(BIT(start)); + + if (mp == PIPE_NONE) { + igt_debug("Failed to confirm master pipe for %s\n", + out->name); + return false; + } + igt_output_set_pipe(out, start); + igt_debug("Using pipe %s as master.\n", + kmstest_pipe_name(start)); + } else + igt_output_set_pipe(out, start); + + for (i = 0; i < needed; i++) + *used_pipes_mask |= BIT(start + i); + } + return true; +} diff --git a/tests/intel/kms_joiner_helper.h b/tests/intel/kms_joiner_helper.h new file mode 100644 index 000000000..95e71a229 --- /dev/null +++ b/tests/intel/kms_joiner_helper.h @@ -0,0 +1,15 @@ +#ifndef KMS_JOINER_HELPER_H +#define KMS_JOINER_HELPER_H + +#include "igt_kms.h" + +void igt_set_all_master_pipes_for_platform(igt_display_t *display, + uint32_t *master_pipes); +bool igt_assign_pipes_for_outputs(int drm_fd, + igt_output_t **outputs, + int num_outputs, + int n_pipes, + uint32_t *used_pipes_mask, + uint32_t master_pipes_mask, + uint32_t valid_pipes_mask); +#endif diff --git a/tests/meson.build b/tests/meson.build index a6750d523..cb09df288 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -366,6 +366,7 @@ extra_sources = { 'kms_chamelium_frames': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ], 'kms_chamelium_hpd': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ], 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ], + 'kms_joiner': [join_paths ('intel', 'kms_joiner_helper.c')], 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ], } -- 2.25.1 From kunal1.joshi at intel.com Wed Jan 15 07:32:41 2025 From: kunal1.joshi at intel.com (Kunal Joshi) Date: Wed, 15 Jan 2025 13:02:41 +0530 Subject: [PATCH 2/4] tests/intel/kms_mst_helper: Add helper for MST-related functions In-Reply-To: <20250115073243.2002014-1-kunal1.joshi@intel.com> References: <20250115073243.2002014-1-kunal1.joshi@intel.com> Message-ID: <20250115073243.2002014-3-kunal1.joshi@intel.com> This patch introduces kms_mst_helper.c and kms_mst_helper.h to centralize commonly used MST-related logic. The new function igt_find_all_mst_output_in_topology() enumerates MST outputs that share the same root connector, simplifying code reuse across tests needing outputs on same MST topology. The existing MST-related code in kms_dp_linktrain_fallback.c is updated to use the new helper, removing duplication. Additionally, meson.build is modified to include kms_mst_helper.c in the build process. Signed-off-by: Kunal Joshi Reviewed-by: Jeevan B --- tests/intel/kms_dp_linktrain_fallback.c | 28 +++------------ tests/intel/kms_mst_helper.c | 48 +++++++++++++++++++++++++ tests/intel/kms_mst_helper.h | 10 ++++++ tests/meson.build | 1 + 4 files changed, 63 insertions(+), 24 deletions(-) create mode 100644 tests/intel/kms_mst_helper.c create mode 100644 tests/intel/kms_mst_helper.h diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c index a05e2015f..b10946781 100644 --- a/tests/intel/kms_dp_linktrain_fallback.c +++ b/tests/intel/kms_dp_linktrain_fallback.c @@ -16,6 +16,7 @@ #include #include "igt.h" +#include "kms_mst_helper.h" /** * SUBTEST: dp-fallback @@ -47,28 +48,6 @@ typedef int (*condition_check_fn)(int drm_fd, igt_output_t *output); IGT_TEST_DESCRIPTION("Test link training fallback"); -static void find_mst_outputs(int drm_fd, data_t *data, - igt_output_t *output, - igt_output_t *mst_outputs[], - int *num_mst_outputs) -{ - int output_root_id, root_id; - igt_output_t *connector_output; - - output_root_id = igt_get_dp_mst_connector_id(output); - /* - * If output is MST check all other connected output which shares - * same path and fill mst_outputs and num_mst_outputs - */ - for_each_connected_output(&data->display, connector_output) { - if (!igt_check_output_is_dp_mst(connector_output)) - continue; - root_id = igt_get_dp_mst_connector_id(connector_output); - if (((*num_mst_outputs) < IGT_MAX_PIPES) && root_id == output_root_id) - mst_outputs[(*num_mst_outputs)++] = connector_output; - } -} - static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[], int *output_count) { @@ -83,8 +62,9 @@ static bool setup_mst_outputs(data_t *data, igt_output_t *mst_output[], traversed_mst_outputs[i] == data->output->config.connector->connector_id) return false; - find_mst_outputs(data->drm_fd, data, data->output, - mst_output, output_count); + igt_assert_f(igt_find_all_mst_output_in_topology(data->drm_fd, &data->display, data->output, + mst_output, output_count), + "Unable to find mst outputs\n"); for (i = 0; i < *output_count; i++) { output = mst_output[i]; diff --git a/tests/intel/kms_mst_helper.c b/tests/intel/kms_mst_helper.c new file mode 100644 index 000000000..9d52068f7 --- /dev/null +++ b/tests/intel/kms_mst_helper.c @@ -0,0 +1,48 @@ +#include "kms_mst_helper.h" + +/* + * @drm_fd: DRM file descriptor + * @display: pointer to an #igt_display_t structure + * @output: target output + * @mst_outputs: filled with mst output of same toplogy as @output + * @num_mst_outputs: filled with count of mst outputs found in topology + * @n_pipes: total number of pipes available + * @used_pipes_mask: pointer to a bitmask (in/out) of already-used pipes + * @master_pipes_mask: bitmask of valid "master" pipes + * @valid_pipes_mask: bitmask of valid (non-fused) pipes + * + * Assign pipes to outputs based on the number of required pipes. + * This function will assign 1, 2, or 4 consecutive pipes to each output. + * It will also mark the used pipes in the bitmask. + * + * Returns: true if all outputs can be assigned successfully; false otherwise. + */ +bool igt_find_all_mst_output_in_topology(int drm_fd, igt_display_t *display, + igt_output_t *output, + igt_output_t *mst_outputs[], + int *num_mst_outputs) +{ + int output_root_id, root_id; + igt_output_t *connector_output; + + if (!igt_check_output_is_dp_mst(output)) + return false; + + output_root_id = igt_get_dp_mst_connector_id(output); + if (output_root_id == -EINVAL) + return false; + + /* + * If output is MST, check all other connected output which shares + * same path and fill mst_outputs and num_mst_outputs + */ + for_each_connected_output(display, connector_output) { + if (!igt_check_output_is_dp_mst(connector_output)) + continue; + + root_id = igt_get_dp_mst_connector_id(connector_output); + if (((*num_mst_outputs) < IGT_MAX_PIPES) && root_id == output_root_id) + mst_outputs[(*num_mst_outputs)++] = connector_output; + } + return true; +} diff --git a/tests/intel/kms_mst_helper.h b/tests/intel/kms_mst_helper.h new file mode 100644 index 000000000..291fcebfe --- /dev/null +++ b/tests/intel/kms_mst_helper.h @@ -0,0 +1,10 @@ +#ifndef KMS_MST_HELPER_H +#define KMS_MST_HELPER_H + +#include "igt.h" + +bool igt_find_all_mst_output_in_topology(int drm_fd, igt_display_t *display, + igt_output_t *output, + igt_output_t *mst_outputs[], + int *num_mst_outputs); +#endif diff --git a/tests/meson.build b/tests/meson.build index cb09df288..6418899ca 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -367,6 +367,7 @@ extra_sources = { 'kms_chamelium_hpd': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ], 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ], 'kms_joiner': [join_paths ('intel', 'kms_joiner_helper.c')], + 'kms_dp_linktrain_fallback': [join_paths ('intel', 'kms_mst_helper.c')], 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ], } -- 2.25.1 From kunal1.joshi at intel.com Wed Jan 15 07:32:42 2025 From: kunal1.joshi at intel.com (Kunal Joshi) Date: Wed, 15 Jan 2025 13:02:42 +0530 Subject: [PATCH 3/4] tests/kms_feature_discovery: Add tests for UHBR/non-UHBR over SST/MST In-Reply-To: <20250115073243.2002014-1-kunal1.joshi@intel.com> References: <20250115073243.2002014-1-kunal1.joshi@intel.com> Message-ID: <20250115073243.2002014-4-kunal1.joshi@intel.com> This patch introduces subtests in kms_feature_discovery.c to validate both UHBR and non-UHBR link rates over SST and MST configurations. It adds four new subtests (uhbr-sst, uhbr-mst, non-uhbr-sst, non-uhbr-mst) that check if the link rates match the expected UHBR or non-UHBR capability and whether the outputs are MST or SST. The new test logic integrates with recently introduced helpers (kms_joiner_helper and kms_mst_helper) for display setup and pipe assignment. The meson build script is also updated to compile these helper sources for kms_feature_discovery. v2: Add definition for UHBR_LINK_RATE Signed-off-by: Kunal Joshi --- tests/kms_feature_discovery.c | 177 ++++++++++++++++++++++++++++++++++ tests/meson.build | 4 + 2 files changed, 181 insertions(+) diff --git a/tests/kms_feature_discovery.c b/tests/kms_feature_discovery.c index 5bca9ad76..48e655c6d 100644 --- a/tests/kms_feature_discovery.c +++ b/tests/kms_feature_discovery.c @@ -42,6 +42,8 @@ #include "igt_psr.h" #include "igt_sysfs.h" #include "igt_types.h" +#include "intel/kms_joiner_helper.h" +#include "intel/kms_mst_helper.h" /** * SUBTEST: display @@ -71,10 +73,164 @@ * Test category: functionality test * * arg[1].values: 1, 2, 3, 4 + * + * SUBTEST: uhbr-sst + * Description: Test we can drive UHBR rates over SST. + * Functionality: feature_discovery, uhbr, sst + * Test category: functionality test + * + * SUBTEST: uhbr-mst + * Description: Test we can drive UHBR rates over MST. + * Functionality: feature_discovery, uhbr, mst + * Test category: functionality test + * + * SUBTEST: non-uhbr-sst + * Description: Test we can drive non-UHBR rates over SST. + * Functionality: feature_discovery, sst + * Test category: functionality test + * + * SUBTEST: non-uhbr-mst + * Description: Test we can drive non-UHBR rates over MST. + * Functionality: feature_discovery, mst + * Test category: functionality test + */ + +/* + * DP Spec defines 10, 13.5, and 20 Gbps as UHBR + * So considering all below as NON-UHBR */ +#define UHBR_LINK_RATE 1000000 static igt_display_t display; +static void setup_planes_fbs(int fd, igt_output_t *outputs[], + int output_count, drmModeModeInfo * mode[], + struct igt_fb fbs[], struct igt_plane *primarys[]) +{ + int i; + + for (i = 0; i < output_count; i++) { + mode[i] = igt_output_get_mode(outputs[i]); + igt_info("Mode %dx%d@%d on output %s\n", + mode[i]->hdisplay, mode[i]->vdisplay, + mode[i]->vrefresh, + igt_output_name(outputs[i])); + primarys[i] = igt_output_get_plane_type(outputs[i], + DRM_PLANE_TYPE_PRIMARY); + igt_create_color_fb(fd, mode[i]->hdisplay, + mode[i]->vdisplay, + DRM_FORMAT_XRGB8888, + DRM_FORMAT_MOD_LINEAR, + 0.0, 1.0, 0.0, + &fbs[i]); + igt_plane_set_fb(primarys[i], &fbs[i]); + } +} + +static bool fit_modes_in_bw(void) +{ + bool found; + int ret; + + ret = igt_display_try_commit_atomic(&display, + DRM_MODE_ATOMIC_TEST_ONLY | + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); + if (ret != 0) { + found = igt_override_all_active_output_modes_to_fit_bw(&display); + igt_require_f(found, + "No valid mode combo found for modeset\n"); + } + return true; +} + +static void do_modeset(int fd, igt_output_t *output, + bool mst, bool uhbr) +{ + int output_count = 0, n_pipes = 0, i; + uint32_t master_pipes_mask = 0, valid_pipes_mask = 0, used_pipes_mask = 0; + igt_output_t *outputs[IGT_MAX_PIPES]; + drmModeModeInfo * modes[IGT_MAX_PIPES]; + struct igt_fb fbs[IGT_MAX_PIPES]; + struct igt_plane *primarys[IGT_MAX_PIPES]; + + for_each_pipe(&display, i) { + n_pipes++; + valid_pipes_mask = valid_pipes_mask | BIT(i); + } + + if (mst) + igt_assert_f(igt_find_all_mst_output_in_topology(fd, + &display, + output, + outputs, + &output_count), + "Unable to find mst outputs\n"); + else + outputs[output_count++] = output; + + igt_assert_f(output_count > 0, "Require at least 1 output\n"); + igt_set_all_master_pipes_for_platform(&display, &master_pipes_mask); + igt_assert_f(igt_assign_pipes_for_outputs(fd, outputs, + output_count, n_pipes, + &used_pipes_mask, + master_pipes_mask, + valid_pipes_mask), + "Unable to assign pipes for outputs\n"); + igt_assert_f(fit_modes_in_bw(), "Unable to fit modes in bw\n"); + setup_planes_fbs(fd, outputs, output_count, modes, fbs, primarys); + igt_display_commit2(&display, COMMIT_ATOMIC); +} + +static bool run_link_rate_test(int fd, igt_output_t *output, + bool mst, bool uhbr) +{ + bool is_uhbr, is_output_mst; + + igt_display_reset(&display); + igt_reset_link_params(fd, output); + + is_output_mst = igt_check_output_is_dp_mst(output); + is_uhbr = igt_get_max_link_rate(fd, output) >= UHBR_LINK_RATE; + + if ((mst && !is_output_mst) || (!mst && is_output_mst)) { + igt_info("Skipping %s as test expects %s output and output is %s\n", output->name, + mst ? "mst" : "sst", is_output_mst ? "mst" : "sst"); + return false; + } + + if ((uhbr && !is_uhbr) || (!uhbr && is_uhbr)) { + igt_info("Test expects %s but output %s is %s\n", + uhbr ? "uhbr" : "non-uhbr", output->name, + is_uhbr ? "uhbr" : "non-uhbr"); + return false; + } + + do_modeset(fd, output, mst, uhbr); + + if (uhbr) + return igt_get_current_link_rate(fd, output) >= UHBR_LINK_RATE; + else + return igt_get_current_link_rate(fd, output) < UHBR_LINK_RATE; +} + +static bool test_link_rate(int fd, bool mst, bool uhbr) +{ + bool ran = false; + igt_output_t *output; + + igt_skip_on_f(!is_intel_device(fd), + "Test supported only on intel platforms\n"); + + for_each_connected_output(&display, output) { + if (output->config.connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort) + ran = ran | run_link_rate_test(fd, output, mst, uhbr); + else + igt_info("Skipping non DisplayPort output %s\n", output->name); + } + + return ran; +} + IGT_TEST_DESCRIPTION("A metatest that checks for \"features\" presence. " "The subtests here should only skip or pass, " "anything else means we have a serious problem."); @@ -177,5 +333,26 @@ igt_main { } igt_require_f(ret == 0, "No DP-MST configuration found.\n"); } + + igt_describe("Test we can drive UHBR rates over SST"); + igt_subtest("uhbr-sst") + igt_require_f(test_link_rate(fd, false, true), + "Didn't find any SST output with uhbr rates"); + + igt_describe("Test we can drive UHBR rates over MST"); + igt_subtest("uhbr-mst") + igt_require_f(test_link_rate(fd, true, true), + "Didn't find any MST output with uhbr rates"); + + igt_describe("Test we can drive non uhbr rates over SST"); + igt_subtest("non-uhbr-sst") + igt_require_f(test_link_rate(fd, false, false), + "Didn't find any SST output with non-uhbr rates"); + + igt_describe("Test we can drive non uhbr rates over MST"); + igt_subtest("non-uhbr-mst") + igt_require_f(test_link_rate(fd, true, false), + "Didn't find any MST output with non-uhbr rates"); + } } diff --git a/tests/meson.build b/tests/meson.build index 6418899ca..851ca8fa5 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -366,6 +366,10 @@ extra_sources = { 'kms_chamelium_frames': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ], 'kms_chamelium_hpd': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ], 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ], + 'kms_feature_discovery': [ + join_paths ('intel', 'kms_joiner_helper.c'), + join_paths ('intel', 'kms_mst_helper.c') + ], 'kms_joiner': [join_paths ('intel', 'kms_joiner_helper.c')], 'kms_dp_linktrain_fallback': [join_paths ('intel', 'kms_mst_helper.c')], 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ], -- 2.25.1 From kunal1.joshi at intel.com Wed Jan 15 07:32:43 2025 From: kunal1.joshi at intel.com (Kunal Joshi) Date: Wed, 15 Jan 2025 13:02:43 +0530 Subject: [PATCH 4/4] HAX: DO NOT MERGE In-Reply-To: <20250115073243.2002014-1-kunal1.joshi@intel.com> References: <20250115073243.2002014-1-kunal1.joshi@intel.com> Message-ID: <20250115073243.2002014-5-kunal1.joshi@intel.com> HAX patch do not merge Signed-off-by: Kunal Joshi --- tests/intel-ci/fast-feedback.testlist | 14 ++++++++++++++ tests/intel-ci/xe-fast-feedback.testlist | 14 ++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index be0965110..b4b74db85 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -1,6 +1,20 @@ # Try to load the driver if it's not available yet. igt at i915_module_load@load + +igt at kms_feature_discovery@uhbr-sst +igt at kms_feature_discovery@uhbr-mst +igt at kms_feature_discovery@non-uhbr-sst +igt at kms_feature_discovery@non-uhbr-mst +igt at kms_joiner@basic-big-joiner +igt at kms_joiner@basic-ultra-joiner +igt at kms_joiner@invalid-modeset-big-joiner +igt at kms_joiner@invalid-modeset-ultra-joiner +igt at kms_joiner@basic-force-big-joiner +igt at kms_joiner@invalid-modeset-force-big-joiner +igt at kms_joiner@basic-force-ultra-joiner +igt at kms_joiner@invalid-modeset-force-ultra-joiner +igt at kms_dp_linktrain_fallback@dp-fallback # Keep alphabetically sorted by default igt at core_auth@basic-auth igt at debugfs_test@read_all_entries diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index 0234d3e72..9bb6f79d4 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -1,6 +1,20 @@ # Should be the first test igt at xe_module_load@load +igt at kms_feature_discovery@uhbr-sst +igt at kms_feature_discovery@uhbr-mst +igt at kms_feature_discovery@non-uhbr-sst +igt at kms_feature_discovery@non-uhbr-mst +igt at kms_joiner@basic-big-joiner +igt at kms_joiner@basic-ultra-joiner +igt at kms_joiner@invalid-modeset-big-joiner +igt at kms_joiner@invalid-modeset-ultra-joiner +igt at kms_joiner@basic-force-big-joiner +igt at kms_joiner@invalid-modeset-force-big-joiner +igt at kms_joiner@basic-force-ultra-joiner +igt at kms_joiner@invalid-modeset-force-ultra-joiner +igt at kms_dp_linktrain_fallback@dp-fallback + igt at fbdev@eof igt at fbdev@info igt at fbdev@nullptr -- 2.25.1 From patchwork at emeril.freedesktop.org Wed Jan 15 07:30:19 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 07:30:19 -0000 Subject: =?utf-8?q?=E2=9C=97_GitLab=2EPipeline=3A_warning_for_lib/amdgpu=3A_Handle_-E?= =?utf-8?q?NODATA_in_amdgpu=5Fwait=5Fmemory?= In-Reply-To: <20250115070359.3698486-1-jesse.zhang@amd.com> References: <20250115070359.3698486-1-jesse.zhang@amd.com> Message-ID: <173692621989.3867800.13312728589956988309@b555e5b46a47> == Series Details == Series: lib/amdgpu: Handle -ENODATA in amdgpu_wait_memory URL : https://patchwork.freedesktop.org/series/143543/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1345880 for the overview. build:tests-fedora has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69359327): section_start:1736926026:get_sources Getting source from Git repository $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out 2bc38cb5 as detached HEAD (ref is intel/IGTPW_12438)... Skipping Git submodules setup section_end:1736926033:get_sources section_start:1736926033: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-2bc38cb53d6d70b56a7fbf1afeac4cae3e052604 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora at sha256:17d64607d998df2bf29a56b88922d3a598e6f1daa3b51ece2a892c2f293daf83 ... section_end:1736926048:step_script section_start:1736926048:cleanup_file_variables Cleaning up project directory and file based variables section_end:1736926049: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) build:tests-fedora-no-libdrm-nouveau has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69359330): section_start:1736926026:get_sources Getting source from Git repository $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out 2bc38cb5 as detached HEAD (ref is intel/IGTPW_12438)... Skipping Git submodules setup section_end:1736926033:get_sources section_start:1736926033: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-2bc38cb53d6d70b56a7fbf1afeac4cae3e052604 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora at sha256:17d64607d998df2bf29a56b88922d3a598e6f1daa3b51ece2a892c2f293daf83 ... section_end:1736926048:step_script section_start:1736926048:cleanup_file_variables Cleaning up project directory and file based variables section_end:1736926049: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) build:tests-fedora-no-libunwind has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69359328): section_start:1736926026:get_sources Getting source from Git repository $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out 2bc38cb5 as detached HEAD (ref is intel/IGTPW_12438)... Skipping Git submodules setup section_end:1736926033:get_sources section_start:1736926033: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-2bc38cb53d6d70b56a7fbf1afeac4cae3e052604 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora at sha256:17d64607d998df2bf29a56b88922d3a598e6f1daa3b51ece2a892c2f293daf83 ... section_end:1736926048:step_script section_start:1736926048:cleanup_file_variables Cleaning up project directory and file based variables section_end:1736926049: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/1345880 From patchwork at emeril.freedesktop.org Wed Jan 15 07:38:44 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 07:38:44 -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_=28rev3=29?= In-Reply-To: <20250113135103.947823-1-pravalika.gurram@intel.com> References: <20250113135103.947823-1-pravalika.gurram@intel.com> Message-ID: <173692672433.3867800.16734282624258441060@b555e5b46a47> == Series Details == Series: tests/intel: Enhance the wedged_mode sysfs support (rev3) URL : https://patchwork.freedesktop.org/series/143094/ State : failure == Summary == CI Bug Log - changes from IGT_8189_full -> IGTPW_12435_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12435_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12435_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_12435/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_12435_full: ### IGT changes ### #### Possible regressions #### * igt at gem_exec_gttfill@engines: - shard-dg2: NOTRUN -> [DMESG-FAIL][1] +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at gem_exec_gttfill@engines.html * igt at i915_pm_rps@reset: - shard-snb: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-snb7/igt at i915_pm_rps@reset.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-snb4/igt at i915_pm_rps@reset.html * igt at kms_cursor_crc@cursor-suspend: - shard-snb: NOTRUN -> [DMESG-WARN][4] +1 other test dmesg-warn [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-snb2/igt at kms_cursor_crc@cursor-suspend.html * igt at perf_pmu@busy-check-all at vcs1: - shard-dg1: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt at perf_pmu@busy-check-all at vcs1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at perf_pmu@busy-check-all at vcs1.html * igt at perf_pmu@busy-check-all at vecs1: - shard-dg2: [PASS][7] -> [FAIL][8] +2 other tests fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-7/igt at perf_pmu@busy-check-all at vecs1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at perf_pmu@busy-check-all at vecs1.html Known issues ------------ Here are the changes found in IGTPW_12435_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@crc32: - shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#6230]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at api_intel_bb@crc32.html * igt at api_intel_bb@object-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/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_12435/shard-dg2-10/igt at api_intel_bb@object-reloc-keep-cache.html * igt at device_reset@unbind-cold-reset-rebind: - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#11078]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][13] ([i915#11078]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at device_reset@unbind-cold-reset-rebind.html * igt at device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [ABORT][15] ([i915#11814] / [i915#11815] / [i915#9413]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-18/igt at device_reset@unbind-reset-rebind.html * igt at drm_fdinfo@busy-check-all at bcs0: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#8414]) +18 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at drm_fdinfo@busy-check-all at bcs0.html * igt at drm_fdinfo@busy-hang at rcs0: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8414]) +14 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-2/igt at drm_fdinfo@busy-hang at rcs0.html * igt at drm_fdinfo@busy at rcs0: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8414]) +17 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at drm_fdinfo@busy at rcs0.html * igt at gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-5/igt at gem_ccs@block-copy-compressed.html - shard-rkl: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-5/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-1/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#13008]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-13/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#7697]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-3/igt at gem_close_race@multigpu-basic-process.html * igt at gem_close_race@multigpu-basic-threads: - shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#7697]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][25] ([i915#7697]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-13/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-big: - shard-dg2: [PASS][26] -> [ABORT][27] ([i915#13427]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-8/igt at gem_create@create-ext-cpu-access-big.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-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][28] ([i915#6335]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-2/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][29] ([i915#1099]) +4 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-snb2/igt at gem_ctx_persistence@engines-queued.html * igt at gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#8555]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at gem_ctx_persistence@hang.html * igt at gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#8555]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-18/igt at gem_ctx_persistence@heartbeat-many.html * igt at gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#5882]) +7 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at gem_ctx_persistence@saturated-hostile-nopreempt.html * igt at gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-1/igt at gem_ctx_sseu@invalid-args.html - shard-tglu: NOTRUN -> [SKIP][35] ([i915#280]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-9/igt at gem_ctx_sseu@invalid-args.html * igt at gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][36] ([i915#280]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@hibernate: - shard-rkl: NOTRUN -> [ABORT][37] ([i915#7975] / [i915#8213]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-3/igt at gem_eio@hibernate.html * igt at gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4771]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-false-hang: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4812]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-18/igt at gem_exec_balancer@bonded-false-hang.html * igt at gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4771]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-14/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4036]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-13/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#4525]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-3/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-contexts: - shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#4525]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at gem_exec_balancer@parallel-contexts.html * igt at gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#4525]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-8/igt at gem_exec_balancer@parallel-ordering.html * igt at gem_exec_big@single: - shard-tglu: [PASS][46] -> [ABORT][47] ([i915#11713]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-3/igt at gem_exec_big@single.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-8/igt at gem_exec_big@single.html * igt at gem_exec_capture@capture-invisible: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#6334]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at gem_exec_capture@capture-invisible.html - shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#6334]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at gem_exec_flush@basic-uc-pro-default.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-18/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3281]) +10 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-11/igt at gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt at gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3281]) +10 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-18/igt at gem_exec_reloc@basic-write-gtt-active.html * igt at gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3281]) +8 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-4/igt at gem_exec_reloc@basic-write-read.html * igt at gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-11/igt at gem_exec_schedule@preempt-queue-contexts.html * igt at gem_exec_whisper@basic-fds: - shard-rkl: [PASS][56] -> [DMESG-WARN][57] ([i915#12964]) +28 other tests dmesg-warn [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-7/igt at gem_exec_whisper@basic-fds.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-7/igt at gem_exec_whisper@basic-fds.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at gem_fence_thrash@bo-write-verify-y.html - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4860]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-5/igt at gem_fence_thrash@bo-write-verify-y.html * igt at gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#2190]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-2/igt at gem_huc_copy@huc-copy.html - shard-tglu: NOTRUN -> [SKIP][61] ([i915#2190]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-6/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613] / [i915#7582]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-2/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@basic: - shard-tglu-1: NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at gem_lmem_swapping@basic.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#12193]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4565]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0.html * igt at gem_lmem_swapping@massive-random: - shard-glk: NOTRUN -> [SKIP][66] ([i915#4613]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk8/igt at gem_lmem_swapping@massive-random.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#4613]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-4/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: NOTRUN -> [DMESG-WARN][68] ([i915#5493]) +1 other test dmesg-warn [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-random: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#4613]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-8/igt at gem_lmem_swapping@verify-random.html * igt at gem_mmap_gtt@hang: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +14 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at gem_mmap_gtt@hang.html * igt at gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4083]) +10 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at gem_mmap_wc@write-read.html * igt at gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at gem_mmap_wc@write-wc-read-gtt.html * igt at gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at gem_partial_pwrite_pread@write.html * igt at gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-2/igt at gem_partial_pwrite_pread@writes-after-reads.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#3282]) +8 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-13/igt at gem_pread@exhaustion.html * igt at gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4270]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at gem_pxp@display-protected-crc.html - shard-rkl: NOTRUN -> [TIMEOUT][77] ([i915#12917] / [i915#12964]) +1 other test timeout [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-6/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4270]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at gem_pxp@reject-modify-context-protection-off-3.html * igt at gem_render_copy@y-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#5190] / [i915#8428]) +10 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at gem_render_copy@y-tiled-ccs-to-y-tiled.html * igt at gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4079]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at gem_render_tiled_blits@basic.html * igt at gem_softpin@noreloc-s3: - shard-rkl: NOTRUN -> [DMESG-FAIL][81] ([i915#12964]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-7/igt at gem_softpin@noreloc-s3.html * igt at gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4077]) +15 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-17/igt at gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt at gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4079]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-14/igt at gem_tiled_pread_pwrite.html * igt at gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#4879]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-18/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-13/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@invalid-mmap-offset-unsync: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#3297]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-7/igt at gem_userptr_blits@invalid-mmap-offset-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4880]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4880]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at gem_userptr_blits@unsync-overlap.html * igt at gem_workarounds@suspend-resume-fd: - shard-glk: [PASS][90] -> [INCOMPLETE][91] ([i915#13356]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-glk6/igt at gem_workarounds@suspend-resume-fd.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk9/igt at gem_workarounds@suspend-resume-fd.html * igt at gen9_exec_parse@batch-without-end: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#2527]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-6/igt at gen9_exec_parse@batch-without-end.html * igt at gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) +4 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-6/igt at gen9_exec_parse@bb-large.html * igt at gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527]) +5 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at gen9_exec_parse@bb-secure.html * igt at gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#2856]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-11/igt at gen9_exec_parse@secure-batches.html - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#2856]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-6/igt at gen9_exec_parse@secure-batches.html * igt at gen9_exec_parse@unaligned-access: - 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_12435/shard-tglu-1/igt at gen9_exec_parse@unaligned-access.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][98] -> [ABORT][99] ([i915#12817] / [i915#9820]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-5/igt at i915_module_load@reload-with-fault-injection.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-6/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#8399]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-7/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [PASS][101] -> [FAIL][102] ([i915#12942]) +1 other test fail [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-3/igt at i915_pm_rc6_residency@rc6-accuracy.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-5/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#11681] / [i915#6621]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#11681]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_pm_rps@thresholds-park: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#11681]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-13/igt at i915_pm_rps@thresholds-park.html * igt at i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4387]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at i915_pm_sseu@full-enable.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#6188]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_selftest@mock at memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][108] ([i915#9311]) +1 other test dmesg-warn [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at i915_selftest@mock at memory_region.html * igt at intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#7707]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-5/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#4212]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-6/igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4215]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#4212]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-18/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4212]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at kms_addfb_basic@framebuffer-vs-set-tiling.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][114] ([i915#12761]) +1 other test incomplete [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk5/igt at kms_async_flips@async-flip-suspend-resume.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-2-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#8709]) +11 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-11/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-2-4-mc-ccs.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#12967]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#9531]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][118] ([i915#9531]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-8/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition: - shard-dg2: [PASS][119] -> [FAIL][120] ([i915#5956]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-11/igt at kms_atomic_transition@plane-all-modeset-transition.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_atomic_transition@plane-all-modeset-transition.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#1769] / [i915#3555]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#1769] / [i915#3555]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg2: NOTRUN -> [FAIL][123] ([i915#5956]) +2 other tests fail [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_atomic_transition@plane-toggle-modeset-transition.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5286]) +7 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-18/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#5286]) +4 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-4/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html - shard-tglu: NOTRUN -> [SKIP][126] ([i915#5286]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-10/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-tglu-1: NOTRUN -> [SKIP][127] ([i915#5286]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/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-mtlp: [PASS][128] -> [FAIL][129] ([i915#5138]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@y-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_12435/shard-rkl-7/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#3638]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5190]) +15 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at kms_big_fb@y-tiled-8bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538]) +6 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-17/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#6095]) +161 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-18/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-4.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#6095]) +170 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-11/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#12313]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-8/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#12313]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6095]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-1/igt at kms_ccs@crc-primary-basic-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][139] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/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-rotation-180-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#6095]) +39 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/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-dg2-rc-ccs-cc at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#6095]) +19 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-8/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#6095]) +26 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/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][143] ([i915#12313]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-3/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#6095]) +73 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-1/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#3742]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-18/igt at kms_cdclk@mode-transition-all-outputs.html - shard-tglu: NOTRUN -> [SKIP][146] ([i915#3742]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-6/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][147] +21 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_chamelium_color@degamma.html - shard-mtlp: NOTRUN -> [SKIP][148] +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-8/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +13 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +8 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-6/igt at kms_chamelium_frames@vga-frame-dump.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +7 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-2/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-4/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +11 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-17/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +4 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt at kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_content_protection@atomic.html * igt at kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#9424]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3299]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-4/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#9424]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-18/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#9424]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [TIMEOUT][161] ([i915#7173]) +1 other test timeout [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_content_protection@srm.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#8814]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-2/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#3555]) +6 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-13/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-32x10: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3555]) +4 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-3/igt at kms_cursor_crc@cursor-onscreen-32x10.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#3555]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#3555]) +6 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#13049]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-rkl: NOTRUN -> [SKIP][168] ([i915#13049]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-7/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#13049]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_cursor_crc@cursor-sliding-512x512.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#13049]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-13/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][171] ([i915#12358] / [i915#7882]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk9/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][172] ([i915#12358]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk9/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#9809]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-4/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#4103] / [i915#4213]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][175] ([i915#4103]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#4103] / [i915#4213]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-17/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursor-vs-flip-atomic: - shard-snb: [PASS][177] -> [INCOMPLETE][178] ([i915#9878]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-snb4/igt at kms_cursor_legacy@cursor-vs-flip-atomic.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-snb5/igt at kms_cursor_legacy@cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#13046] / [i915#5354]) +5 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#9067]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#9833]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-11/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][182] ([i915#9723]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-14/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#9723]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-8/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#1257]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-4/igt at kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][185] ([i915#1257]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-3/igt at kms_dp_aux_dev.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#8812]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][189] ([i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-5/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3469]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at kms_fbcon_fbt@psr.html - shard-rkl: NOTRUN -> [SKIP][192] ([i915#3955]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-4/igt at kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][193] ([i915#3469]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-10/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@display-3x: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#1839]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#1839]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-1/igt at kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][196] ([i915#1839]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-14/igt at kms_feature_discovery@display-4x.html - shard-dg2: NOTRUN -> [SKIP][197] ([i915#1839]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#9337]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_feature_discovery@dp-mst.html - shard-rkl: NOTRUN -> [SKIP][199] ([i915#9337]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-2/igt at kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][200] ([i915#9337]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-3/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#658]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#658]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#9934]) +14 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-11/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#8381]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#3637]) +3 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#9934]) +4 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-3/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#3637]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-10/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-snb: [PASS][208] -> [FAIL][209] ([i915#11989]) +1 other test fail [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-snb1/igt at kms_flip@2x-plain-flip-ts-check.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-snb5/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#9934]) +4 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-13/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#8381]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][212] ([i915#12745] / [i915#4839]) +1 other test incomplete [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk2/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][213] ([i915#12745]) +1 other test incomplete [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk2/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html * igt at kms_flip@wf_vblank-ts-check-interruptible at c-hdmi-a1: - shard-tglu: [PASS][214] -> [FAIL][215] ([i915#11989]) +3 other tests fail [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-4/igt at kms_flip@wf_vblank-ts-check-interruptible at c-hdmi-a1.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-2/igt at kms_flip@wf_vblank-ts-check-interruptible at c-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#2587] / [i915#2672]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-10/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-32bpp-yftileccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-10/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#2587] / [i915#2672]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-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-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#2672]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-2/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-32bpp-ytileccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#2587] / [i915#2672] / [i915#3555]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/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-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#2672] / [i915#3555]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#2672] / [i915#3555]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-13/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-dg1: NOTRUN -> [SKIP][225] ([i915#2587] / [i915#2672]) +5 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-13/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-32bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#2672]) +6 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/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_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#5274]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-11/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg2: [PASS][229] -> [FAIL][230] ([i915#6880]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#8708]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-8/igt at kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][232] +54 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#10055]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][234] +30 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/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-blt: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#5354]) +43 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt: - shard-tglu: NOTRUN -> [SKIP][236] +53 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-9/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#1825]) +35 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#8708]) +23 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-11/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#9766]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-14/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#8708]) +27 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-17/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-pwrite: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#3458]) +19 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#3458]) +27 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][243] +431 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-snb7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#1825]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-8/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#3023]) +19 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-5/igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][246] +36 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#6118]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#12713]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8228]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at kms_hdr@static-swap.html - shard-rkl: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8228]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-7/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle-dpms: - shard-dg2: [PASS][251] -> [SKIP][252] ([i915#3555] / [i915#8228]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-10/igt at kms_hdr@static-toggle-dpms.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-11/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@basic-big-joiner: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#10656]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-14/igt at kms_joiner@basic-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][254] ([i915#10656]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-10/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#12388]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at kms_joiner@basic-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][256] ([i915#12388]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#10656]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][258] ([i915#12394]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-3/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#12339]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-9/igt at kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][260] ([i915#12339]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-18/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#4816]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][262] ([i915#12756] / [i915#13409] / [i915#13476]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk1/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][263] ([i915#12756]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk1/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][264] ([i915#12178]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk8/igt at kms_plane_alpha_blend@alpha-basic.html * igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][265] ([i915#7862]) +1 other test fail [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk8/igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1.html * igt at kms_plane_lowres@tiling-none: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#11614] / [i915#3582]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-1/igt at kms_plane_lowres@tiling-none.html * igt at kms_plane_lowres@tiling-none at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-1/igt at kms_plane_lowres@tiling-none at pipe-b-edp-1.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8821]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][269] ([i915#8292]) +1 other test fail [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#12247]) +10 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-4/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: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#12247]) +4 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#12247] / [i915#9423]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#12247]) +4 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#12247] / [i915#6953]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/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-25-upscale-factor-0-25 at pipe-d: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#12247]) +13 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-8/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][276] ([i915#12247] / [i915#6953] / [i915#9423]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][277] ([i915#12247] / [i915#6953]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-1/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][278] ([i915#12247]) +7 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/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][279] ([i915#5354]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-5/igt at kms_pm_backlight@basic-brightness.html - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#9812]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#12343]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-11/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#9685]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-13/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#5978]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/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_12435/shard-dg1-18/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#3361]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-3/igt at kms_pm_dc@dc9-dpms.html - shard-tglu: NOTRUN -> [SKIP][286] ([i915#4281]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-7/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#9340]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-3/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#8430]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-17/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@cursor-dpms: - shard-rkl: [PASS][289] -> [SKIP][290] ([i915#12916]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-5/igt at kms_pm_rpm@cursor-dpms.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-5/igt at kms_pm_rpm@cursor-dpms.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#9519]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#9519]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-14/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][293] -> [SKIP][294] ([i915#9519]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-6/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][295] ([i915#10553]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk8/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#6524]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-10/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#6524] / [i915#6805]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at kms_prime@basic-crc-vgem.html - shard-dg1: NOTRUN -> [SKIP][298] ([i915#6524]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-18/igt at kms_prime@basic-crc-vgem.html * igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#11520]) +2 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/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-sf: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#11520]) +10 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-14/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#11520]) +17 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html - shard-rkl: NOTRUN -> [SKIP][302] ([i915#11520]) +7 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-2/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#11520]) +4 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-4/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][304] ([i915#11520]) +10 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/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-fully-sf: - shard-snb: NOTRUN -> [SKIP][305] ([i915#11520]) +11 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-snb1/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#9683]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-2/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#9683]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_psr2_su@page_flip-xrgb8888.html - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#9683]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][309] ([i915#9683]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-primary-blt: - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#9688]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-7/igt at kms_psr@fbc-pr-primary-blt.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#9732]) +8 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_psr@fbc-psr2-primary-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#9732]) +16 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-10/igt at kms_psr@fbc-psr2-primary-mmap-gtt.html * igt at kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#1072] / [i915#9732]) +18 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-2/igt at kms_psr@fbc-psr2-sprite-render.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#1072] / [i915#9732]) +31 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-11/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#1072] / [i915#9732]) +27 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-14/igt at kms_psr@psr-sprite-mmap-cpu.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][316] +436 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk5/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#9685]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#5190]) +2 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#5289]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-2/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][320] ([i915#5289]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#12755]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][322] ([i915#13179]) +1 other test abort [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-3/igt at kms_selftest@drm_framebuffer.html - shard-glk: NOTRUN -> [ABORT][323] ([i915#13179]) +1 other test abort [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk9/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@clone-exclusive-crtc: - shard-tglu: NOTRUN -> [SKIP][324] ([i915#3555]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-8/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_universal_plane@cursor-fb-leak at pipe-d-edp-1: - shard-mtlp: [PASS][325] -> [FAIL][326] ([i915#9196]) +1 other test fail [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-1/igt at kms_universal_plane@cursor-fb-leak at pipe-d-edp-1.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-2/igt at kms_universal_plane@cursor-fb-leak at pipe-d-edp-1.html * igt at kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#11920]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][328] ([i915#11920]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-7/igt at kms_vrr@lobf.html - shard-dg1: NOTRUN -> [SKIP][329] ([i915#11920]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at kms_vrr@lobf.html * igt at kms_vrr@max-min: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#9906]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at kms_vrr@max-min.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][331] ([i915#9906]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-8/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#2437]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-8/igt at kms_writeback@writeback-check-output.html - shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#2437]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#2437] / [i915#9412]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][335] ([i915#2437]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-18/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][336] ([i915#2437]) +2 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk6/igt at kms_writeback@writeback-pixel-formats.html - shard-rkl: NOTRUN -> [SKIP][337] ([i915#2437] / [i915#9412]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-7/igt at kms_writeback@writeback-pixel-formats.html * igt at perf_pmu@busy-check-all at vcs0: - shard-dg2: [PASS][338] -> [FAIL][339] ([i915#4349]) +1 other test fail [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-7/igt at perf_pmu@busy-check-all at vcs0.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at perf_pmu@busy-check-all at vcs0.html - shard-dg1: [PASS][340] -> [FAIL][341] ([i915#4349]) +3 other tests fail [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt at perf_pmu@busy-check-all at vcs0.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at perf_pmu@busy-check-all at vcs0.html * igt at perf_pmu@busy-idle at vcs0: - shard-dg2: NOTRUN -> [FAIL][342] ([i915#4349]) +7 other tests fail [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/igt at perf_pmu@busy-idle at vcs0.html * igt at perf_pmu@busy-idle at vcs1: - shard-mtlp: [PASS][343] -> [FAIL][344] ([i915#4349]) +10 other tests fail [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-7/igt at perf_pmu@busy-idle at vcs1.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-4/igt at perf_pmu@busy-idle at vcs1.html * igt at perf_pmu@idle: - shard-rkl: NOTRUN -> [DMESG-WARN][345] ([i915#12964]) +22 other tests dmesg-warn [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-4/igt at perf_pmu@idle.html * igt at perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][346] ([i915#13356]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk4/igt at perf_pmu@rc6-suspend.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#8516]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][348] ([i915#8516]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-3/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-fence-mmap: - shard-dg1: NOTRUN -> [SKIP][349] ([i915#3708] / [i915#4077]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-17/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#3291] / [i915#3708]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][351] ([i915#3291] / [i915#3708]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-7/igt at prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][352] ([i915#3708]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at prime_vgem@basic-write.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#9917]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-10/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-5: - shard-tglu-1: NOTRUN -> [FAIL][354] ([i915#12910]) +9 other tests fail [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-1/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-5.html * igt at sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][355] ([i915#9917]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-14/igt at sriov_basic@enable-vfs-bind-unbind-each.html * igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-random: - shard-tglu: NOTRUN -> [FAIL][356] ([i915#12910]) +8 other tests fail [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-4/igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-random.html #### Possible fixes #### * igt at gem_exec_schedule@preemptive-hang: - shard-rkl: [DMESG-WARN][357] ([i915#12964]) -> [PASS][358] +26 other tests pass [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-5/igt at gem_exec_schedule@preemptive-hang.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-3/igt at gem_exec_schedule@preemptive-hang.html * igt at gem_exec_suspend@basic-s3 at lmem0: - shard-dg1: [ABORT][359] -> [PASS][360] +1 other test pass [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt at gem_exec_suspend@basic-s3 at lmem0.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-14/igt at gem_exec_suspend@basic-s3 at lmem0.html * igt at gem_softpin@noreloc-s3: - shard-glk: [INCOMPLETE][361] ([i915#13306]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-glk9/igt at gem_softpin@noreloc-s3.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk5/igt at gem_softpin@noreloc-s3.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][363] ([i915#5138]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-5/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-3/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-tglu: [FAIL][365] ([i915#2346]) -> [PASS][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-2/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-7/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [FAIL][367] ([i915#2346]) -> [PASS][368] [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-snb2/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-snb1/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1: - shard-snb: [FAIL][369] ([i915#11989]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-snb7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-snb7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@flip-vs-suspend: - shard-rkl: [INCOMPLETE][371] ([i915#6113]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-5/igt at kms_flip@flip-vs-suspend.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-5/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a2: - shard-rkl: [INCOMPLETE][373] -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-5/igt at kms_flip@flip-vs-suspend at a-hdmi-a2.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-5/igt at kms_flip@flip-vs-suspend at a-hdmi-a2.html * igt at kms_flip@flip-vs-wf_vblank-interruptible: - shard-dg2: [FAIL][375] ([i915#10826]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-7/igt at kms_flip@flip-vs-wf_vblank-interruptible.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-11/igt at kms_flip@flip-vs-wf_vblank-interruptible.html * igt at kms_flip@plain-flip-ts-check at b-edp1: - shard-mtlp: [FAIL][377] ([i915#11989]) -> [PASS][378] +3 other tests pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-2/igt at kms_flip@plain-flip-ts-check at b-edp1.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-3/igt at kms_flip@plain-flip-ts-check at b-edp1.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-dg2: [FAIL][379] ([i915#6880]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-7/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-gtt: - shard-snb: [SKIP][381] -> [PASS][382] +1 other test pass [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][383] ([i915#9519]) -> [PASS][384] +1 other test pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-7/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][385] ([i915#12916]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-4/igt at kms_pm_rpm@modeset-lpsp.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-7/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-mtlp: [FAIL][387] ([i915#5465]) -> [PASS][388] +2 other tests pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-5/igt at kms_setmode@basic at pipe-b-edp-1.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-4/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at perf_pmu@all-busy-idle-check-all: - shard-dg1: [FAIL][389] ([i915#11943]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-18/igt at perf_pmu@all-busy-idle-check-all.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-17/igt at perf_pmu@all-busy-idle-check-all.html - shard-mtlp: [FAIL][391] ([i915#11943]) -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-2/igt at perf_pmu@all-busy-idle-check-all.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-1/igt at perf_pmu@all-busy-idle-check-all.html * igt at perf_pmu@busy-accuracy-98 at rcs0: - shard-tglu: [FAIL][393] ([i915#4349]) -> [PASS][394] +2 other tests pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-tglu-4/igt at perf_pmu@busy-accuracy-98 at rcs0.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-tglu-9/igt at perf_pmu@busy-accuracy-98 at rcs0.html #### Warnings #### * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: [SKIP][395] ([i915#4270]) -> [TIMEOUT][396] ([i915#12917] / [i915#12964]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-rkl-7/igt at gem_pxp@reject-modify-context-protection-off-2.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-rkl-5/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: [ABORT][397] ([i915#13263] / [i915#13449]) -> [ABORT][398] ([i915#13449]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-snb4/igt at gem_tiled_swapping@non-threaded.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-snb7/igt at gem_tiled_swapping@non-threaded.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][399] ([i915#13493] / [i915#9820]) -> [DMESG-WARN][400] ([i915#13475]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt at i915_module_load@reload-with-fault-injection.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][401] ([i915#10131] / [i915#13493] / [i915#9820]) -> [ABORT][402] ([i915#10131] / [i915#13493]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-mtlp-5/igt at i915_module_load@reload-with-fault-injection.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-mtlp-1/igt at i915_module_load@reload-with-fault-injection.html - shard-dg2: [ABORT][403] ([i915#9820]) -> [DMESG-WARN][404] ([i915#10887] / [i915#13475]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg2-10/igt at i915_module_load@reload-with-fault-injection.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg2-5/igt at i915_module_load@reload-with-fault-injection.html * igt at kms_content_protection@atomic: - shard-snb: [SKIP][405] -> [INCOMPLETE][406] ([i915#8816]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-snb5/igt at kms_content_protection@atomic.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-snb5/igt at kms_content_protection@atomic.html * igt at kms_cursor_crc@cursor-offscreen-32x10: - shard-dg1: [SKIP][407] ([i915#3555] / [i915#4423]) -> [SKIP][408] ([i915#3555]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-13/igt at kms_cursor_crc@cursor-offscreen-32x10.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-14/igt at kms_cursor_crc@cursor-offscreen-32x10.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][409] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][410] ([i915#12745] / [i915#4839]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-glk8/igt at kms_flip@2x-flip-vs-suspend-interruptible.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-glk7/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg1: [SKIP][411] ([i915#3458] / [i915#4423]) -> [SKIP][412] ([i915#3458]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-18/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt: - shard-dg1: [SKIP][413] ([i915#4423]) -> [SKIP][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-12/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: [SKIP][415] ([i915#4423] / [i915#8708]) -> [SKIP][416] ([i915#8708]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-12/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-13/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-dg1: [SKIP][417] ([i915#1072] / [i915#9732]) -> [SKIP][418] ([i915#1072] / [i915#4423] / [i915#9732]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-17/igt at kms_psr@pr-sprite-plane-onoff.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-14/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: [SKIP][419] ([i915#4423] / [i915#5289]) -> [SKIP][420] ([i915#5289]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8189/shard-dg1-12/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/shard-dg1-14/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814 [i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12942]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967 [i915#13008]: https://gitlab.freedesktop.org == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12435/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Wed Jan 15 07:54:27 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 07:54:27 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_lib/amdgpu=3A_Handle_-ENODA?= =?utf-8?q?TA_in_amdgpu=5Fwait=5Fmemory?= In-Reply-To: <20250115070359.3698486-1-jesse.zhang@amd.com> References: <20250115070359.3698486-1-jesse.zhang@amd.com> Message-ID: <173692766715.3867800.17305487296237313889@b555e5b46a47> == Series Details == Series: lib/amdgpu: Handle -ENODATA in amdgpu_wait_memory URL : https://patchwork.freedesktop.org/series/143543/ State : success == Summary == CI Bug Log - changes from XEIGT_8190_BAT -> XEIGTPW_12438_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12438_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_migrate_sanity_kunit: - bat-adlp-vf: NOTRUN -> [DMESG-FAIL][2] ([Intel XE#3958]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_migrate_sanity_kunit.html #### Possible fixes #### * igt at xe_live_ktest@xe_dma_buf: - bat-adlp-vf: [SKIP][3] ([Intel XE#1192]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_live_ktest@xe_dma_buf.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/bat-adlp-vf/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_pat@pat-index-xelp at render: - bat-adlp-vf: [DMESG-WARN][5] ([Intel XE#3970]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html * igt at xe_vm@munmap-style-unbind-end: - bat-adlp-vf: [DMESG-WARN][7] ([Intel XE#3958]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_vm@munmap-style-unbind-end.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/bat-adlp-vf/igt at xe_vm@munmap-style-unbind-end.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][9] ([Intel XE#1192]) -> [SKIP][10] ([Intel XE#2229] / [Intel XE#455]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][11] ([Intel XE#1192]) -> [DMESG-FAIL][12] ([Intel XE#3958]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8190 -> IGTPW_12438 * Linux: xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db -> xe-2490-ac1e97c603501be90e530b0ce0eac45728869c85 IGTPW_12438: 2bc38cb53d6d70b56a7fbf1afeac4cae3e052604 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8190: db6e252e00bc44f90b678d547e93b3f02c02c6de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db: 1c464719f6d86a08c91e6ed5d64db83b166788db xe-2490-ac1e97c603501be90e530b0ce0eac45728869c85: ac1e97c603501be90e530b0ce0eac45728869c85 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Wed Jan 15 07:56:30 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 07:56:30 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_lib/amdgpu=3A_Handle_-ENO?= =?utf-8?q?DATA_in_amdgpu=5Fwait=5Fmemory?= In-Reply-To: <20250115070359.3698486-1-jesse.zhang@amd.com> References: <20250115070359.3698486-1-jesse.zhang@amd.com> Message-ID: <173692779038.3867800.5875271376829708900@b555e5b46a47> == Series Details == Series: lib/amdgpu: Handle -ENODATA in amdgpu_wait_memory URL : https://patchwork.freedesktop.org/series/143543/ State : success == Summary == CI Bug Log - changes from IGT_8190 -> IGTPW_12438 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): fi-glk-j4005 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12438 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at dmabuf@all-tests: - bat-apl-1: [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-apl-1/igt at dmabuf@all-tests.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/bat-apl-1/igt at dmabuf@all-tests.html * igt at i915_selftest@live at workarounds: - bat-arls-5: [PASS][3] -> [DMESG-FAIL][4] ([i915#13393]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-arls-5/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/bat-arls-5/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_module_load@reload: - bat-apl-1: [DMESG-WARN][5] ([i915#11621] / [i915#180] / [i915#1982]) -> [PASS][6] +4 other tests pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-apl-1/igt at i915_module_load@reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/bat-apl-1/igt at i915_module_load@reload.html * igt at i915_selftest@live at sanitycheck: - bat-apl-1: [DMESG-WARN][7] ([i915#11621]) -> [PASS][8] +79 other tests pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-apl-1/igt at i915_selftest@live at sanitycheck.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/bat-apl-1/igt at i915_selftest@live at sanitycheck.html * 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_8190/bat-arlh-2/igt at i915_selftest@live at workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/bat-arlh-2/igt at i915_selftest@live at workarounds.html * igt at kms_pm_rpm@basic-pci-d3-state: - bat-apl-1: [DMESG-WARN][11] ([i915#11621] / [i915#180]) -> [PASS][12] +44 other tests pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-apl-1/igt at kms_pm_rpm@basic-pci-d3-state.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/bat-apl-1/igt at kms_pm_rpm@basic-pci-d3-state.html [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8190 -> IGTPW_12438 * Linux: CI_DRM_15951 -> CI_DRM_15958 CI-20190529: 20190529 CI_DRM_15951: 1c464719f6d86a08c91e6ed5d64db83b166788db @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15958: ac1e97c603501be90e530b0ce0eac45728869c85 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12438: 2bc38cb53d6d70b56a7fbf1afeac4cae3e052604 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8190: db6e252e00bc44f90b678d547e93b3f02c02c6de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From thomas.hellstrom at linux.intel.com Wed Jan 15 08:02:20 2025 From: thomas.hellstrom at linux.intel.com (Thomas =?ISO-8859-1?Q?Hellstr=F6m?=) Date: Wed, 15 Jan 2025 09:02:20 +0100 Subject: [i-g-t] tests/intel-ci: Fix a syntax err in xe.blocklist.txt In-Reply-To: <20250114173523.3267049-1-oak.zeng@intel.com> References: <20250114173523.3267049-1-oak.zeng@intel.com> Message-ID: On Tue, 2025-01-14 at 12:35 -0500, Oak Zeng wrote: > The syntax in below lines are wrong: > > igt at xe_evict@*-multi-vm-cm* > igt at xe_evict@*-threads-* > > With above, those xe_evict tests are not blacklisted from xe.ci.full > category. > > Fix the issue by adding a dot (.) preceding star (*). > > Signed-off-by: Oak Zeng > Cc: Thomas Hellstr?m Reviewed-by: Thomas Hellstr?m > --- > ?tests/intel-ci/xe.blocklist.txt | 6 +++--- > ?1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel- > ci/xe.blocklist.txt > index a9b647c1d..fc270198f 100644 > --- a/tests/intel-ci/xe.blocklist.txt > +++ b/tests/intel-ci/xe.blocklist.txt > @@ -93,7 +93,7 @@ igt at sriov_basic@bind-unbind-vf$ > ?# Exclude xe_evict tests that are not expected to succeed > ?# due to missing TTM exhaustive eviction > ?################################################################## > -igt at xe_evict@*-multi-vm-cm* > -igt at xe_evict@*-threads-* > -# igt at xe_evict@*-cm* # Rebind and VM_BIND may race. > +igt at xe_evict@.*-multi-vm-cm.* > +igt at xe_evict@.*-threads-.* > +# igt at xe_evict@.*-cm.* # Rebind and VM_BIND may race. > ?################################################################## From patchwork at emeril.freedesktop.org Wed Jan 15 08:22:14 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 08:22:14 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Add_tests_for_per-engine-cl?= =?utf-8?q?ass_activity?= In-Reply-To: <20250115073040.1852977-1-riana.tauro@intel.com> References: <20250115073040.1852977-1-riana.tauro@intel.com> Message-ID: <173692933454.3881350.8353489551805252182@b555e5b46a47> == Series Details == Series: Add tests for per-engine-class activity URL : https://patchwork.freedesktop.org/series/143544/ State : success == Summary == CI Bug Log - changes from XEIGT_8190_BAT -> XEIGTPW_12439_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12439_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_exec_balancer@twice-virtual-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3958]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_exec_balancer@twice-virtual-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/bat-adlp-vf/igt at xe_exec_balancer@twice-virtual-rebind.html #### Possible fixes #### * igt at xe_pat@pat-index-xelp at render: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3970]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html * igt at xe_vm@munmap-style-unbind-end: - bat-adlp-vf: [DMESG-WARN][5] ([Intel XE#3958]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_vm@munmap-style-unbind-end.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/bat-adlp-vf/igt at xe_vm@munmap-style-unbind-end.html [Intel XE#3958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3958 [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 Build changes ------------- * IGT: IGT_8190 -> IGTPW_12439 * Linux: xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db -> xe-2490-ac1e97c603501be90e530b0ce0eac45728869c85 IGTPW_12439: 12439 IGT_8190: db6e252e00bc44f90b678d547e93b3f02c02c6de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db: 1c464719f6d86a08c91e6ed5d64db83b166788db xe-2490-ac1e97c603501be90e530b0ce0eac45728869c85: ac1e97c603501be90e530b0ce0eac45728869c85 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Wed Jan 15 08:24:43 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 08:24:43 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_Add_tests_for_per-engine-?= =?utf-8?q?class_activity?= In-Reply-To: <20250115073040.1852977-1-riana.tauro@intel.com> References: <20250115073040.1852977-1-riana.tauro@intel.com> Message-ID: <173692948366.3881351.10628548940612607066@b555e5b46a47> == Series Details == Series: Add tests for per-engine-class activity URL : https://patchwork.freedesktop.org/series/143544/ State : failure == Summary == CI Bug Log - changes from IGT_8190 -> IGTPW_12439 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12439 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12439, 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_12439/index.html Participating hosts (42 -> 41) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12439: ### IGT changes ### #### Possible regressions #### * igt at kms_chamelium_edid@dp-edid-read: - bat-dg2-13: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-dg2-13/igt at kms_chamelium_edid@dp-edid-read.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12439/bat-dg2-13/igt at kms_chamelium_edid@dp-edid-read.html Known issues ------------ Here are the changes found in IGTPW_12439 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@unbind-rebind: - bat-rpls-4: [PASS][3] -> [DMESG-WARN][4] ([i915#13400]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-rpls-4/igt at core_hotunplug@unbind-rebind.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12439/bat-rpls-4/igt at core_hotunplug@unbind-rebind.html * igt at i915_selftest@live: - bat-mtlp-8: [PASS][5] -> [DMESG-FAIL][6] ([i915#13393]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-mtlp-8/igt at i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12439/bat-mtlp-8/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-arlh-3: [PASS][7] -> [DMESG-FAIL][8] ([i915#13393]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-arlh-3/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12439/bat-arlh-3/igt at i915_selftest@live at workarounds.html - bat-mtlp-6: [PASS][9] -> [DMESG-FAIL][10] ([i915#13393]) +1 other test dmesg-fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12439/bat-mtlp-6/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_module_load@reload: - bat-apl-1: [DMESG-WARN][11] ([i915#11621] / [i915#180] / [i915#1982]) -> [PASS][12] +4 other tests pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-apl-1/igt at i915_module_load@reload.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12439/bat-apl-1/igt at i915_module_load@reload.html * igt at i915_selftest@live at sanitycheck: - bat-apl-1: [DMESG-WARN][13] ([i915#11621]) -> [PASS][14] +79 other tests pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-apl-1/igt at i915_selftest@live at sanitycheck.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12439/bat-apl-1/igt at i915_selftest@live at sanitycheck.html * igt at kms_pm_rpm@basic-pci-d3-state: - bat-apl-1: [DMESG-WARN][15] ([i915#11621] / [i915#180]) -> [PASS][16] +44 other tests pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-apl-1/igt at kms_pm_rpm@basic-pci-d3-state.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12439/bat-apl-1/igt at kms_pm_rpm@basic-pci-d3-state.html [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8190 -> IGTPW_12439 * Linux: CI_DRM_15951 -> CI_DRM_15958 CI-20190529: 20190529 CI_DRM_15951: 1c464719f6d86a08c91e6ed5d64db83b166788db @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15958: ac1e97c603501be90e530b0ce0eac45728869c85 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12439: 12439 IGT_8190: db6e252e00bc44f90b678d547e93b3f02c02c6de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12439/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From chiahsuan.chung at amd.com Wed Jan 15 09:58:31 2025 From: chiahsuan.chung at amd.com (Tom Chung) Date: Wed, 15 Jan 2025 17:58:31 +0800 Subject: [PATCH i-g-t] tests/amdgpu/amd_abm: Fix test failed on self-refresh panel Message-ID: <20250115095904.1965-1-chiahsuan.chung@amd.com> [Why] For self-refresh enabled eDP panel, it will have some delay before backlight take effect after set the abm and cause test failed. [How] Slightly reduce the brightness before test and do some page flip during the test can resolve this issue. Signed-off-by: Tom Chung --- tests/amdgpu/amd_abm.c | 102 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 97 insertions(+), 5 deletions(-) diff --git a/tests/amdgpu/amd_abm.c b/tests/amdgpu/amd_abm.c index e196b6ebc..2ba678106 100644 --- a/tests/amdgpu/amd_abm.c +++ b/tests/amdgpu/amd_abm.c @@ -36,6 +36,7 @@ #define DEBUGFS_TARGET_BACKLIGHT_PWM "amdgpu_target_backlight_pwm" #define BACKLIGHT_PATH "/sys/class/backlight/amdgpu_bl0" #define PANEL_POWER_SAVINGS_PATH "/sys/class/drm/card0-%s/amdgpu/panel_power_savings" +#define MK_COLOR(r, g, b) ((0 << 24) | (r << 16) | (g << 8) | b) typedef struct data { igt_display_t display; @@ -47,15 +48,72 @@ typedef struct data { enum pipe pipe_id; int w, h; igt_fb_t ref_fb; + igt_fb_t ref_fb2; + uint32_t *fb_mem; } data_t; +static void fbmem_draw_smpte_pattern(uint32_t *fbmem, int width, int height) +{ + uint32_t x, y; + uint32_t colors_top[] = { + MK_COLOR(192, 192, 192), /* grey */ + MK_COLOR(192, 192, 0), /* yellow */ + MK_COLOR(0, 192, 192), /* cyan */ + MK_COLOR(0, 192, 0), /* green */ + MK_COLOR(192, 0, 192), /* magenta */ + MK_COLOR(192, 0, 0), /* red */ + MK_COLOR(0, 0, 192), /* blue */ + }; + uint32_t colors_middle[] = { + MK_COLOR(0, 0, 192), /* blue */ + MK_COLOR(19, 19, 19), /* black */ + MK_COLOR(192, 0, 192), /* magenta */ + MK_COLOR(19, 19, 19), /* black */ + MK_COLOR(0, 192, 192), /* cyan */ + MK_COLOR(19, 19, 19), /* black */ + MK_COLOR(192, 192, 192), /* grey */ + }; + uint32_t colors_bottom[] = { + MK_COLOR(0, 33, 76), /* in-phase */ + MK_COLOR(255, 255, 255), /* super white */ + MK_COLOR(50, 0, 106), /* quadrature */ + MK_COLOR(19, 19, 19), /* black */ + MK_COLOR(9, 9, 9), /* 3.5% */ + MK_COLOR(19, 19, 19), /* 7.5% */ + MK_COLOR(29, 29, 29), /* 11.5% */ + MK_COLOR(19, 19, 19), /* black */ + }; + + for (y = 0; y < height * 6 / 9; ++y) { + for (x = 0; x < width; ++x) + fbmem[x] = colors_top[x * 7 / width]; + fbmem += width; + } + + for (; y < height * 7 / 9; ++y) { + for (x = 0; x < width; ++x) + fbmem[x] = colors_middle[x * 7 / width]; + fbmem += width; + } + + for (; y < height; ++y) { + for (x = 0; x < width * 5 / 7; ++x) + fbmem[x] = colors_bottom[x * 4 / (width * 5 / 7)]; + for (; x < width * 6 / 7; ++x) + fbmem[x] = colors_bottom[(x - width * 5 / 7) * 3 / (width / 7) + 4]; + for (; x < width; ++x) + fbmem[x] = colors_bottom[7]; + fbmem += width; + } +} + /* Common test setup. */ static void test_init(data_t *data) { igt_display_t *display = &data->display; drmModeConnectorPtr conn; bool has_edp = false; - int i; + int i, fb_id; /* Skip test if no eDP connected. */ for (i = 0; i < display->n_outputs; i++) { @@ -92,9 +150,16 @@ static void test_init(data_t *data) data->h = data->mode->vdisplay; data->ref_fb.fb_id = 0; + data->ref_fb2.fb_id = 0; + + fb_id = igt_create_fb(data->drm_fd, data->mode->hdisplay, data->mode->vdisplay, + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, &data->ref_fb); + igt_assert(fb_id); + data->fb_mem = igt_fb_map_buffer(data->drm_fd, &data->ref_fb); + fbmem_draw_smpte_pattern(data->fb_mem, data->w, data->h); igt_create_color_fb(data->drm_fd, data->mode->hdisplay, - data->mode->vdisplay, DRM_FORMAT_XRGB8888, 0, 0.0, 0.6, 0.6, &data->ref_fb); + data->mode->vdisplay, DRM_FORMAT_XRGB8888, 0, 0.05, 0.05, 0.05, &data->ref_fb2); } /* Common test cleanup. */ @@ -105,8 +170,11 @@ static void test_fini(data_t *data) igt_display_reset(display); igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, 0); + igt_fb_unmap_buffer(&data->ref_fb, data->fb_mem); if (data->ref_fb.fb_id) igt_remove_fb(data->drm_fd, &data->ref_fb); + if (data->ref_fb2.fb_id) + igt_remove_fb(data->drm_fd, &data->ref_fb2); } @@ -217,6 +285,29 @@ static int backlight_read_max_brightness(int *result) return errno; } +static void page_flip(data_t *data, igt_output_t *output, uint32_t frame_num) +{ + int i, ret, frame_count; + igt_fb_t *flip_fb; + + if (!data || data->ref_fb.fb_id == 0 || data->ref_fb2.fb_id == 0) + igt_skip("Page flip failed.\n"); + + for (i = 0; i < 2; i++) { + if (i % 2 == 0) + flip_fb = &data->ref_fb2; + else + flip_fb = &data->ref_fb; + + for (frame_count = 0; frame_count <= frame_num; frame_count++) { + ret = drmModePageFlip(data->drm_fd, output->config.crtc->crtc_id, + flip_fb->fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL); + igt_require(ret == 0); + kmstest_wait_for_pageflip(data->drm_fd); + } + } +} + static void backlight_dpms_cycle(data_t *data) { int ret; @@ -332,7 +423,7 @@ static void abm_enabled(data_t *data) igt_assert_eq(ret, 0); set_abm_level(data, output, 0); - backlight_write_brightness(max_brightness); + backlight_write_brightness(max_brightness-max_brightness/10); usleep(100000); prev_pwm = read_target_backlight_pwm(data->drm_fd, output->name); pwm_without_abm = prev_pwm; @@ -340,6 +431,7 @@ static void abm_enabled(data_t *data) for (i = 1; i < 5; i++) { set_abm_level(data, output, i); usleep(100000); + page_flip(data, output, 10); pwm = read_target_backlight_pwm(data->drm_fd, output->name); igt_assert(pwm <= prev_pwm); igt_assert(pwm < pwm_without_abm); @@ -366,7 +458,7 @@ static void abm_gradual(data_t *data) igt_assert_eq(ret, 0); set_abm_level(data, output, 0); - backlight_write_brightness(max_brightness); + backlight_write_brightness(max_brightness-max_brightness/10); sleep(convergence_delay); prev_pwm = read_target_backlight_pwm(data->drm_fd, output->name); @@ -375,7 +467,7 @@ static void abm_gradual(data_t *data) igt_assert_eq(prev_pwm, curr); set_abm_level(data, output, 4); for (i = 0; i < 10; i++) { - usleep(100000); + page_flip(data, output, 10); pwm = read_current_backlight_pwm(data->drm_fd, output->name); if (pwm == prev_pwm) break; -- 2.43.0 From patchwork at emeril.freedesktop.org Wed Jan 15 10:16:42 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 10:16:42 -0000 Subject: =?utf-8?q?=E2=9C=97_GitLab=2EPipeline=3A_warning_for_add_test_to_validate_uh?= =?utf-8?q?br/non-uhbr_over_sst/mst_=28rev2=29?= In-Reply-To: <20250115073243.2002014-1-kunal1.joshi@intel.com> References: <20250115073243.2002014-1-kunal1.joshi@intel.com> Message-ID: <173693620242.3910126.7603141500975394185@b555e5b46a47> == Series Details == Series: add test to validate uhbr/non-uhbr over sst/mst (rev2) URL : https://patchwork.freedesktop.org/series/143039/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1345972 for the overview. build:tests-debian-meson-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69366908): Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out 5b95b3f4 as detached HEAD (ref is intel/IGTPW_12440)... Removing build/ Removing lib/i915/perf-configs/__pycache__/ Removing lib/xe/oa-configs/__pycache__/ Removing scripts/__pycache__/ Skipping Git submodules setup section_end:1736935698:get_sources section_start:1736935698:step_script Executing "step_script" stage of the job script Using docker image sha256:cc55efdc667be826910d414a562c76ce1130a9c15255a0dd115431bc42f83448 for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-mips:commit-5b95b3f4ee118f70a0be534f4d4e410fbfc265d4 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-mips at sha256:c829c44880da4782b7a72626c259ac6904b4bd5f08601e66b3be889ca1c0cf79 ... section_end:1736935703:step_script section_start:1736935703:cleanup_file_variables Cleaning up project directory and file based variables section_end:1736935704:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:cc55efdc667be826910d414a562c76ce1130a9c15255a0dd115431bc42f83448: image not known (docker.go:650:0s) == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1345972 From patchwork at emeril.freedesktop.org Wed Jan 15 10:36:23 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 10:36:23 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EBAT=3A_failure_for_add_test_to_validate_uhbr/n?= =?utf-8?q?on-uhbr_over_sst/mst_=28rev2=29?= In-Reply-To: <20250115073243.2002014-1-kunal1.joshi@intel.com> References: <20250115073243.2002014-1-kunal1.joshi@intel.com> Message-ID: <173693738383.3912472.7079582648891066054@b555e5b46a47> == Series Details == Series: add test to validate uhbr/non-uhbr over sst/mst (rev2) URL : https://patchwork.freedesktop.org/series/143039/ State : failure == Summary == CI Bug Log - changes from XEIGT_8190_BAT -> XEIGTPW_12440_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12440_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12440_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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12440_BAT: ### IGT changes ### #### Possible regressions #### * igt at kms_feature_discovery@non-uhbr-mst (NEW): - bat-lnl-1: NOTRUN -> [SKIP][1] +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-lnl-1/igt at kms_feature_discovery@non-uhbr-mst.html - bat-bmg-2: NOTRUN -> [SKIP][2] +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-bmg-2/igt at kms_feature_discovery@non-uhbr-mst.html - bat-bmg-1: NOTRUN -> [SKIP][3] +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-bmg-1/igt at kms_feature_discovery@non-uhbr-mst.html * igt at kms_feature_discovery@uhbr-sst (NEW): - bat-lnl-2: NOTRUN -> [SKIP][4] +5 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-lnl-2/igt at kms_feature_discovery@uhbr-sst.html New tests --------- New tests have been introduced between XEIGT_8190_BAT and XEIGTPW_12440_BAT: ### New IGT tests (4) ### * igt at kms_feature_discovery@non-uhbr-mst: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt at kms_feature_discovery@non-uhbr-sst: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt at kms_feature_discovery@uhbr-mst: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt at kms_feature_discovery@uhbr-sst: - Statuses : 8 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12440_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@unbind-rebind: - bat-dg2-oem2: [PASS][5] -> [SKIP][6] ([Intel XE#1885]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at core_hotunplug@unbind-rebind.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at core_hotunplug@unbind-rebind.html * igt at fbdev@nullptr: - bat-dg2-oem2: [PASS][7] -> [SKIP][8] ([Intel XE#2134]) +4 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at fbdev@nullptr.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at fbdev@nullptr.html * igt at kms_addfb_basic@bad-pitch-128: - bat-dg2-oem2: [PASS][9] -> [SKIP][10] ([Intel XE#2423] / [i915#2575]) +50 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at kms_addfb_basic@bad-pitch-128.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at kms_addfb_basic@bad-pitch-128.html * igt at kms_dp_linktrain_fallback@dp-fallback: - bat-lnl-1: NOTRUN -> [SKIP][11] ([Intel XE#3070]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-lnl-1/igt at kms_dp_linktrain_fallback@dp-fallback.html - bat-bmg-2: NOTRUN -> [SKIP][12] ([Intel XE#3419]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-bmg-2/igt at kms_dp_linktrain_fallback@dp-fallback.html - bat-bmg-1: NOTRUN -> [SKIP][13] ([Intel XE#3070]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-bmg-1/igt at kms_dp_linktrain_fallback@dp-fallback.html - bat-lnl-2: NOTRUN -> [SKIP][14] ([Intel XE#2235]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-lnl-2/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_feature_discovery@non-uhbr-sst (NEW): - bat-dg2-oem2: NOTRUN -> [SKIP][15] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at kms_feature_discovery@non-uhbr-sst.html * igt at kms_feature_discovery@uhbr-mst (NEW): - bat-adlp-vf: NOTRUN -> [SKIP][16] ([Intel XE#2463]) +12 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-adlp-vf/igt at kms_feature_discovery@uhbr-mst.html * igt at kms_frontbuffer_tracking@basic: - bat-dg2-oem2: [PASS][17] -> [SKIP][18] ([Intel XE#2351]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at kms_frontbuffer_tracking@basic.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at kms_frontbuffer_tracking@basic.html * igt at kms_joiner@basic-big-joiner: - bat-bmg-2: NOTRUN -> [SKIP][19] ([Intel XE#346]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-bmg-2/igt at kms_joiner@basic-big-joiner.html - bat-bmg-1: NOTRUN -> [SKIP][20] ([Intel XE#346]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-bmg-1/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - bat-pvc-2: NOTRUN -> [SKIP][21] ([Intel XE#1024]) +12 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-pvc-2/igt at kms_joiner@basic-force-big-joiner.html - bat-bmg-2: NOTRUN -> [SKIP][22] ([Intel XE#3012]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-bmg-2/igt at kms_joiner@basic-force-big-joiner.html - bat-bmg-1: NOTRUN -> [SKIP][23] ([Intel XE#3012]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-bmg-1/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - bat-dg2-oem2: NOTRUN -> [SKIP][24] ([Intel XE#2136]) +8 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at kms_joiner@basic-force-ultra-joiner.html - bat-atsm-2: NOTRUN -> [SKIP][25] ([Intel XE#1024]) +12 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-atsm-2/igt at kms_joiner@basic-force-ultra-joiner.html - bat-lnl-1: NOTRUN -> [SKIP][26] ([Intel XE#2934]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-lnl-1/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - bat-lnl-1: NOTRUN -> [SKIP][27] ([Intel XE#2927]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-lnl-1/igt at kms_joiner@basic-ultra-joiner.html - bat-bmg-2: NOTRUN -> [SKIP][28] ([Intel XE#2927]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-bmg-2/igt at kms_joiner@basic-ultra-joiner.html - bat-bmg-1: NOTRUN -> [SKIP][29] ([Intel XE#2927]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-bmg-1/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - bat-lnl-2: NOTRUN -> [SKIP][30] ([Intel XE#346]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-lnl-2/igt at kms_joiner@invalid-modeset-big-joiner.html - bat-lnl-1: NOTRUN -> [SKIP][31] ([Intel XE#346]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-lnl-1/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - bat-bmg-2: NOTRUN -> [SKIP][32] ([Intel XE#2934]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-bmg-2/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - bat-bmg-1: NOTRUN -> [SKIP][33] ([Intel XE#2934]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-bmg-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - bat-lnl-2: NOTRUN -> [SKIP][34] ([Intel XE#2934]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-lnl-2/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - bat-lnl-2: NOTRUN -> [SKIP][35] ([Intel XE#2927]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-lnl-2/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-dg2-oem2: [PASS][36] -> [SKIP][37] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_module_load@load: - bat-dg2-oem2: [PASS][38] -> [FAIL][39] ([Intel XE#3546]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at xe_module_load@load.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at xe_module_load@load.html * igt at xe_prime_self_import@basic-with_fd_dup: - bat-dg2-oem2: [PASS][40] -> [SKIP][41] ([Intel XE#1130]) +151 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at xe_prime_self_import@basic-with_fd_dup.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at xe_prime_self_import@basic-with_fd_dup.html * igt at xe_vm@shared-pde3-page: - bat-adlp-vf: [PASS][42] -> [DMESG-WARN][43] ([Intel XE#3958]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_vm@shared-pde3-page.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-adlp-vf/igt at xe_vm@shared-pde3-page.html #### Possible fixes #### * igt at xe_pat@pat-index-xelp at render: - bat-adlp-vf: [DMESG-WARN][44] ([Intel XE#3970]) -> [PASS][45] +1 other test pass [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html * igt at xe_vm@munmap-style-unbind-end: - bat-adlp-vf: [DMESG-WARN][46] ([Intel XE#3958]) -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-adlp-vf/igt at xe_vm@munmap-style-unbind-end.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-adlp-vf/igt at xe_vm@munmap-style-unbind-end.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-oem2: [SKIP][48] ([Intel XE#623]) -> [SKIP][49] ([Intel XE#2423] / [i915#2575]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_dsc@dsc-basic: - bat-dg2-oem2: [SKIP][50] ([Intel XE#455]) -> [SKIP][51] ([Intel XE#2351]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at kms_dsc@dsc-basic.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at kms_dsc@dsc-basic.html * igt at kms_force_connector_basic@prune-stale-modes: - bat-dg2-oem2: [SKIP][52] ([i915#5274]) -> [SKIP][53] ([Intel XE#2423] / [i915#2575]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at kms_force_connector_basic@prune-stale-modes.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_psr@psr-cursor-plane-move: - bat-dg2-oem2: [SKIP][54] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][55] ([Intel XE#2351]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at kms_psr@psr-cursor-plane-move.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at kms_psr@psr-cursor-plane-move.html * igt at sriov_basic@enable-vfs-autoprobe-off: - bat-dg2-oem2: [SKIP][56] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][57] ([Intel XE#2423] / [i915#2575]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at sriov_basic@enable-vfs-autoprobe-off.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr: - bat-dg2-oem2: [SKIP][58] ([Intel XE#288]) -> [SKIP][59] ([Intel XE#1130]) +32 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr.html * igt at xe_huc_copy@huc_copy: - bat-dg2-oem2: [SKIP][60] ([Intel XE#255]) -> [SKIP][61] ([Intel XE#1130]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at xe_huc_copy@huc_copy.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at xe_huc_copy@huc_copy.html * igt at xe_pat@pat-index-xe2: - bat-dg2-oem2: [SKIP][62] ([Intel XE#977]) -> [SKIP][63] ([Intel XE#1130]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at xe_pat@pat-index-xe2.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xehpc: - bat-dg2-oem2: [SKIP][64] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][65] ([Intel XE#1130]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at xe_pat@pat-index-xehpc.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@pat-index-xelpg: - bat-dg2-oem2: [SKIP][66] ([Intel XE#979]) -> [SKIP][67] ([Intel XE#1130]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at xe_pat@pat-index-xelpg.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at xe_pat@pat-index-xelpg.html * igt at xe_sriov_flr@flr-vf1-clear: - bat-dg2-oem2: [SKIP][68] ([Intel XE#3342]) -> [SKIP][69] ([Intel XE#1130]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/bat-dg2-oem2/igt at xe_sriov_flr@flr-vf1-clear.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/bat-dg2-oem2/igt at xe_sriov_flr@flr-vf1-clear.html [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [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#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2463]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2463 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [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#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419 [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#3958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3958 [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [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 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8190 -> IGTPW_12440 * Linux: xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db -> xe-2491-1add93ce0468986a45532aa0a83e7c5976110d7b IGTPW_12440: 12440 IGT_8190: db6e252e00bc44f90b678d547e93b3f02c02c6de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db: 1c464719f6d86a08c91e6ed5d64db83b166788db xe-2491-1add93ce0468986a45532aa0a83e7c5976110d7b: 1add93ce0468986a45532aa0a83e7c5976110d7b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Wed Jan 15 10:39:11 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Wed, 15 Jan 2025 11:39:11 +0100 Subject: [PATCH i-g-t v1 1/1] tests/xe_eudebug: check if driver is open before toggling enable In-Reply-To: <20250110125201.59630-1-jan.sokolowski@intel.com> References: <20250110125201.59630-1-jan.sokolowski@intel.com> Message-ID: <20250115103911.hvluxuonp3it2biu@kamilkon-desk.igk.intel.com> Hi Jan, On 2025-01-10 at 12:52:01 +0000, Jan Sokolowski wrote: please improve subject, it should have 'intel' there: [PATCH i-g-t v1 1/1] tests/intel/xe_eudebug: check if driver is open > In some cases, ccs_mode_all_engines can fail, > which will cause test fixture to not execute properly > and skip drm_open_driver, thus putting the test > in an unstable state. > > Check if driver is open or not and reopen if necessary. > > Signed-off-by: Jan Sokolowski > --- > tests/intel/xe_eudebug.c | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c > index 22b0da658..6d06ed647 100644 > --- a/tests/intel/xe_eudebug.c > +++ b/tests/intel/xe_eudebug.c > @@ -2868,7 +2868,16 @@ igt_main > } > > igt_fixture { > + /* in previous subtest group, ccs_mode_all_engines can fail, > + * which will cause test fixture to not execute properly > + * and skip drm_open_driver, thus putting the test in an unstable state. > + * Therefore, check if driver is open or not and reopen if necessary > + */ > + if (fcntl(fd, F_GETFD) < 0) > + fd = drm_open_driver(DRIVER_XE); This looks strange, imho you should correct fixture and make those opens for ccs in a test itself, not making corrections here. imho also there should be a var to cleanup ccs mode after that previous test so it will not affect other tests. > + > xe_eudebug_enable(fd, was_enabled); > + Please do not make unrelated code style changes in other places. Regards, Kamil > drm_close_driver(fd); > } > > -- > 2.34.1 > From patchwork at emeril.freedesktop.org Wed Jan 15 10:40:45 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 10:40:45 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_add_test_to_validate_uhbr?= =?utf-8?q?/non-uhbr_over_sst/mst_=28rev2=29?= In-Reply-To: <20250115073243.2002014-1-kunal1.joshi@intel.com> References: <20250115073243.2002014-1-kunal1.joshi@intel.com> Message-ID: <173693764520.3912472.13893993869068388293@b555e5b46a47> == Series Details == Series: add test to validate uhbr/non-uhbr over sst/mst (rev2) URL : https://patchwork.freedesktop.org/series/143039/ State : failure == Summary == CI Bug Log - changes from IGT_8190 -> IGTPW_12440 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12440 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12440, 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_12440/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-adlp-6 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12440: ### IGT changes ### #### Possible regressions #### * igt at kms_chamelium_edid@dp-edid-read: - bat-dg2-13: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-dg2-13/igt at kms_chamelium_edid@dp-edid-read.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg2-13/igt at kms_chamelium_edid@dp-edid-read.html * igt at kms_dp_linktrain_fallback@dp-fallback: - bat-dg2-9: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg2-9/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_feature_discovery@non-uhbr-mst (NEW): - bat-adls-6: NOTRUN -> [SKIP][4] +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-adls-6/igt at kms_feature_discovery@non-uhbr-mst.html - bat-jsl-1: NOTRUN -> [SKIP][5] +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-jsl-1/igt at kms_feature_discovery@non-uhbr-mst.html - bat-arlh-3: NOTRUN -> [SKIP][6] +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-arlh-3/igt at kms_feature_discovery@non-uhbr-mst.html - bat-adlp-9: NOTRUN -> [SKIP][7] +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-adlp-9/igt at kms_feature_discovery@non-uhbr-mst.html - bat-twl-1: NOTRUN -> [SKIP][8] +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-twl-1/igt at kms_feature_discovery@non-uhbr-mst.html - bat-arls-5: NOTRUN -> [SKIP][9] +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-arls-5/igt at kms_feature_discovery@non-uhbr-mst.html - bat-rplp-1: NOTRUN -> [SKIP][10] +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-rplp-1/igt at kms_feature_discovery@non-uhbr-mst.html - fi-rkl-11600: NOTRUN -> [SKIP][11] +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-rkl-11600/igt at kms_feature_discovery@non-uhbr-mst.html * igt at kms_feature_discovery@non-uhbr-sst (NEW): - {bat-mtlp-9}: NOTRUN -> [SKIP][12] +2 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-mtlp-9/igt at kms_feature_discovery@non-uhbr-sst.html - bat-jsl-3: NOTRUN -> [SKIP][13] +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-jsl-3/igt at kms_feature_discovery@non-uhbr-sst.html * igt at kms_feature_discovery@uhbr-mst (NEW): - bat-mtlp-8: NOTRUN -> [SKIP][14] +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-mtlp-8/igt at kms_feature_discovery@uhbr-mst.html - bat-dg2-8: NOTRUN -> [SKIP][15] +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg2-8/igt at kms_feature_discovery@uhbr-mst.html - {bat-arls-6}: NOTRUN -> [SKIP][16] +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-arls-6/igt at kms_feature_discovery@uhbr-mst.html * igt at kms_feature_discovery@uhbr-sst (NEW): - bat-dg2-9: NOTRUN -> [SKIP][17] +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg2-9/igt at kms_feature_discovery@uhbr-sst.html - bat-adlp-11: NOTRUN -> [SKIP][18] +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-adlp-11/igt at kms_feature_discovery@uhbr-sst.html - fi-tgl-1115g4: NOTRUN -> [SKIP][19] +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-tgl-1115g4/igt at kms_feature_discovery@uhbr-sst.html - bat-mtlp-6: NOTRUN -> [SKIP][20] +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-mtlp-6/igt at kms_feature_discovery@uhbr-sst.html - bat-twl-2: NOTRUN -> [SKIP][21] +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-twl-2/igt at kms_feature_discovery@uhbr-sst.html - bat-dg2-11: NOTRUN -> [SKIP][22] +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg2-11/igt at kms_feature_discovery@uhbr-sst.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - bat-rpls-4: NOTRUN -> [SKIP][23] +4 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-rpls-4/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html New tests --------- New tests have been introduced between IGT_8190 and IGTPW_12440: ### New IGT tests (4) ### * igt at kms_feature_discovery@non-uhbr-mst: - Statuses : 1 pass(s) 37 skip(s) - Exec time: [0.0, 1.47] s * igt at kms_feature_discovery@non-uhbr-sst: - Statuses : 9 pass(s) 29 skip(s) - Exec time: [0.0, 0.57] s * igt at kms_feature_discovery@uhbr-mst: - Statuses : 38 skip(s) - Exec time: [0.0, 0.26] s * igt at kms_feature_discovery@uhbr-sst: - Statuses : 38 skip(s) - Exec time: [0.0, 0.25] s Known issues ------------ Here are the changes found in IGTPW_12440 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-mtlp-8: [PASS][24] -> [DMESG-FAIL][25] ([i915#13393]) +1 other test dmesg-fail [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-mtlp-8/igt at i915_selftest@live.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-mtlp-8/igt at i915_selftest@live.html * igt at kms_dp_linktrain_fallback@dp-fallback: - fi-cfl-guc: NOTRUN -> [SKIP][26] +12 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-cfl-guc/igt at kms_dp_linktrain_fallback@dp-fallback.html - fi-kbl-x1275: NOTRUN -> [SKIP][27] +12 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-kbl-x1275/igt at kms_dp_linktrain_fallback@dp-fallback.html - bat-adlp-11: NOTRUN -> [SKIP][28] ([i915#10470]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-adlp-11/igt at kms_dp_linktrain_fallback@dp-fallback.html - fi-kbl-8809g: NOTRUN -> [SKIP][29] +12 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-kbl-8809g/igt at kms_dp_linktrain_fallback@dp-fallback.html - bat-dg1-6: NOTRUN -> [SKIP][30] ([i915#12311]) +4 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg1-6/igt at kms_dp_linktrain_fallback@dp-fallback.html - fi-tgl-1115g4: NOTRUN -> [SKIP][31] ([i915#12402]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-tgl-1115g4/igt at kms_dp_linktrain_fallback@dp-fallback.html - bat-mtlp-6: NOTRUN -> [SKIP][32] ([i915#9792]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-mtlp-6/igt at kms_dp_linktrain_fallback@dp-fallback.html - bat-twl-2: NOTRUN -> [SKIP][33] ([i915#12402]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-twl-2/igt at kms_dp_linktrain_fallback@dp-fallback.html - bat-dg2-11: NOTRUN -> [SKIP][34] ([i915#12402]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg2-11/igt at kms_dp_linktrain_fallback@dp-fallback.html - bat-jsl-3: NOTRUN -> [SKIP][35] ([i915#12402]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-jsl-3/igt at kms_dp_linktrain_fallback@dp-fallback.html - bat-mtlp-8: NOTRUN -> [SKIP][36] ([i915#12402]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-mtlp-8/igt at kms_dp_linktrain_fallback@dp-fallback.html - bat-jsl-1: NOTRUN -> [SKIP][37] ([i915#12402]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-jsl-1/igt at kms_dp_linktrain_fallback@dp-fallback.html - bat-arlh-3: NOTRUN -> [SKIP][38] ([i915#12402]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-arlh-3/igt at kms_dp_linktrain_fallback@dp-fallback.html - bat-twl-1: NOTRUN -> [SKIP][39] ([i915#12402]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-twl-1/igt at kms_dp_linktrain_fallback@dp-fallback.html - bat-rplp-1: NOTRUN -> [SKIP][40] ([i915#12402]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-rplp-1/igt at kms_dp_linktrain_fallback@dp-fallback.html - fi-rkl-11600: NOTRUN -> [SKIP][41] ([i915#12402]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-rkl-11600/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_feature_discovery@non-uhbr-mst (NEW): - bat-arlh-2: NOTRUN -> [SKIP][42] ([i915#11346]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-arlh-2/igt at kms_feature_discovery@non-uhbr-mst.html * igt at kms_feature_discovery@non-uhbr-sst (NEW): - bat-atsm-1: NOTRUN -> [SKIP][43] ([i915#6078]) +12 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-atsm-1/igt at kms_feature_discovery@non-uhbr-sst.html * igt at kms_feature_discovery@uhbr-mst (NEW): - fi-ivb-3770: NOTRUN -> [SKIP][44] +12 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-ivb-3770/igt at kms_feature_discovery@uhbr-mst.html - fi-elk-e7500: NOTRUN -> [SKIP][45] +12 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-elk-e7500/igt at kms_feature_discovery@uhbr-mst.html - fi-kbl-guc: NOTRUN -> [SKIP][46] +12 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-kbl-guc/igt at kms_feature_discovery@uhbr-mst.html * igt at kms_feature_discovery@uhbr-sst (NEW): - fi-kbl-7567u: NOTRUN -> [SKIP][47] +10 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-kbl-7567u/igt at kms_feature_discovery@uhbr-sst.html * igt at kms_joiner@basic-big-joiner: - bat-jsl-3: NOTRUN -> [SKIP][48] ([i915#10656]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-jsl-3/igt at kms_joiner@basic-big-joiner.html - bat-adls-6: NOTRUN -> [SKIP][49] ([i915#10656]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-adls-6/igt at kms_joiner@basic-big-joiner.html - bat-jsl-1: NOTRUN -> [SKIP][50] ([i915#10656]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-jsl-1/igt at kms_joiner@basic-big-joiner.html - bat-arlh-3: NOTRUN -> [SKIP][51] ([i915#11575]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-arlh-3/igt at kms_joiner@basic-big-joiner.html - bat-adlp-9: NOTRUN -> [SKIP][52] ([i915#10656]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-adlp-9/igt at kms_joiner@basic-big-joiner.html - bat-rpls-4: NOTRUN -> [SKIP][53] ([i915#10656]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-rpls-4/igt at kms_joiner@basic-big-joiner.html - bat-twl-1: NOTRUN -> [SKIP][54] ([i915#10656]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-twl-1/igt at kms_joiner@basic-big-joiner.html - bat-arls-5: NOTRUN -> [SKIP][55] ([i915#10656]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-arls-5/igt at kms_joiner@basic-big-joiner.html - bat-rplp-1: NOTRUN -> [SKIP][56] ([i915#10656]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-rplp-1/igt at kms_joiner@basic-big-joiner.html - bat-arlh-2: NOTRUN -> [SKIP][57] ([i915#11346] / [i915#11575]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-arlh-2/igt at kms_joiner@basic-big-joiner.html - fi-rkl-11600: NOTRUN -> [SKIP][58] ([i915#10656]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-rkl-11600/igt at kms_joiner@basic-big-joiner.html - bat-adlp-11: NOTRUN -> [SKIP][59] ([i915#10656]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-adlp-11/igt at kms_joiner@basic-big-joiner.html - bat-dg1-6: NOTRUN -> [SKIP][60] ([i915#10656] / [i915#12311]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg1-6/igt at kms_joiner@basic-big-joiner.html - fi-tgl-1115g4: NOTRUN -> [SKIP][61] ([i915#10656]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-tgl-1115g4/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - fi-ilk-650: NOTRUN -> [SKIP][62] +12 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-ilk-650/igt at kms_joiner@basic-force-big-joiner.html - fi-tgl-1115g4: NOTRUN -> [SKIP][63] ([i915#12388]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-tgl-1115g4/igt at kms_joiner@basic-force-big-joiner.html - bat-mtlp-6: NOTRUN -> [SKIP][64] ([i915#12388]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-mtlp-6/igt at kms_joiner@basic-force-big-joiner.html - bat-dg2-11: NOTRUN -> [SKIP][65] ([i915#12388]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg2-11/igt at kms_joiner@basic-force-big-joiner.html - bat-jsl-3: NOTRUN -> [SKIP][66] ([i915#12388]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-jsl-3/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - bat-jsl-3: NOTRUN -> [SKIP][67] ([i915#12394]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-jsl-3/igt at kms_joiner@basic-force-ultra-joiner.html - bat-mtlp-8: NOTRUN -> [SKIP][68] ([i915#10656]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-mtlp-8/igt at kms_joiner@basic-force-ultra-joiner.html - bat-dg2-8: NOTRUN -> [SKIP][69] ([i915#10656]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg2-8/igt at kms_joiner@basic-force-ultra-joiner.html - bat-adls-6: NOTRUN -> [SKIP][70] ([i915#12394]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-adls-6/igt at kms_joiner@basic-force-ultra-joiner.html - bat-jsl-1: NOTRUN -> [SKIP][71] ([i915#12394]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-jsl-1/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - fi-cfl-8700k: NOTRUN -> [SKIP][72] +12 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-cfl-8700k/igt at kms_joiner@basic-ultra-joiner.html - fi-bsw-nick: NOTRUN -> [SKIP][73] +12 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-bsw-nick/igt at kms_joiner@basic-ultra-joiner.html - bat-kbl-2: NOTRUN -> [SKIP][74] +12 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-kbl-2/igt at kms_joiner@basic-ultra-joiner.html - bat-jsl-3: NOTRUN -> [SKIP][75] ([i915#12339]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-jsl-3/igt at kms_joiner@basic-ultra-joiner.html - bat-mtlp-8: NOTRUN -> [SKIP][76] ([i915#12339]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-mtlp-8/igt at kms_joiner@basic-ultra-joiner.html - bat-dg2-8: NOTRUN -> [SKIP][77] ([i915#12339]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg2-8/igt at kms_joiner@basic-ultra-joiner.html - bat-adls-6: NOTRUN -> [SKIP][78] ([i915#12339]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-adls-6/igt at kms_joiner@basic-ultra-joiner.html - bat-jsl-1: NOTRUN -> [SKIP][79] ([i915#12339]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-jsl-1/igt at kms_joiner@basic-ultra-joiner.html - bat-arlh-3: NOTRUN -> [SKIP][80] ([i915#12339]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-arlh-3/igt at kms_joiner@basic-ultra-joiner.html - bat-adlp-9: NOTRUN -> [SKIP][81] ([i915#12339]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-adlp-9/igt at kms_joiner@basic-ultra-joiner.html - bat-rpls-4: NOTRUN -> [SKIP][82] ([i915#12339]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-rpls-4/igt at kms_joiner@basic-ultra-joiner.html - bat-twl-1: NOTRUN -> [SKIP][83] ([i915#12339]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-twl-1/igt at kms_joiner@basic-ultra-joiner.html - bat-arls-5: NOTRUN -> [SKIP][84] ([i915#12339]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-arls-5/igt at kms_joiner@basic-ultra-joiner.html - bat-rplp-1: NOTRUN -> [SKIP][85] ([i915#12339]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-rplp-1/igt at kms_joiner@basic-ultra-joiner.html - bat-arlh-2: NOTRUN -> [SKIP][86] ([i915#11346] / [i915#12339]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-arlh-2/igt at kms_joiner@basic-ultra-joiner.html - fi-rkl-11600: NOTRUN -> [SKIP][87] ([i915#12339]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-rkl-11600/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - bat-twl-2: NOTRUN -> [SKIP][88] ([i915#10656]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-twl-2/igt at kms_joiner@invalid-modeset-big-joiner.html - bat-dg2-11: NOTRUN -> [SKIP][89] ([i915#10656]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg2-11/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - fi-hsw-4770: NOTRUN -> [SKIP][90] +12 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-hsw-4770/igt at kms_joiner@invalid-modeset-force-big-joiner.html - bat-adls-6: NOTRUN -> [SKIP][91] ([i915#12388]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-adls-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html - bat-jsl-1: NOTRUN -> [SKIP][92] ([i915#12388]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-jsl-1/igt at kms_joiner@invalid-modeset-force-big-joiner.html - bat-rpls-4: NOTRUN -> [SKIP][93] ([i915#12388]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-rpls-4/igt at kms_joiner@invalid-modeset-force-big-joiner.html - fi-rkl-11600: NOTRUN -> [SKIP][94] ([i915#12388]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-rkl-11600/igt at kms_joiner@invalid-modeset-force-big-joiner.html - bat-adlp-11: NOTRUN -> [SKIP][95] ([i915#12388]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-adlp-11/igt at kms_joiner@invalid-modeset-force-big-joiner.html - bat-dg1-6: NOTRUN -> [SKIP][96] ([i915#12311] / [i915#12388]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg1-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - bat-arlh-3: NOTRUN -> [SKIP][97] ([i915#12394]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-arlh-3/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - fi-glk-j4005: NOTRUN -> [SKIP][98] +12 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-glk-j4005/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - bat-adlp-9: NOTRUN -> [SKIP][99] ([i915#12394]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-adlp-9/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - bat-twl-1: NOTRUN -> [SKIP][100] ([i915#12394]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-twl-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - bat-apl-1: NOTRUN -> [SKIP][101] +10 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-apl-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - bat-arls-5: NOTRUN -> [SKIP][102] ([i915#12394]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-arls-5/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - bat-rplp-1: NOTRUN -> [SKIP][103] ([i915#12394]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-rplp-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - bat-arlh-2: NOTRUN -> [SKIP][104] ([i915#11346] / [i915#12394]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-arlh-2/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - fi-rkl-11600: NOTRUN -> [SKIP][105] ([i915#12394]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-rkl-11600/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - fi-tgl-1115g4: NOTRUN -> [SKIP][106] ([i915#12394]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-tgl-1115g4/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - bat-mtlp-6: NOTRUN -> [SKIP][107] ([i915#10656]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-mtlp-6/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - bat-dg2-9: NOTRUN -> [SKIP][108] ([i915#10656]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg2-9/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - bat-adlp-11: NOTRUN -> [SKIP][109] ([i915#12394]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-adlp-11/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - bat-dg1-6: NOTRUN -> [SKIP][110] ([i915#12311] / [i915#12394]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg1-6/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - bat-twl-2: NOTRUN -> [SKIP][111] ([i915#12394]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-twl-2/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - bat-dg2-9: NOTRUN -> [SKIP][112] ([i915#12339]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg2-9/igt at kms_joiner@invalid-modeset-ultra-joiner.html - bat-adlp-11: NOTRUN -> [SKIP][113] ([i915#12339]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-adlp-11/igt at kms_joiner@invalid-modeset-ultra-joiner.html - fi-cfl-8109u: NOTRUN -> [SKIP][114] +10 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-cfl-8109u/igt at kms_joiner@invalid-modeset-ultra-joiner.html - bat-dg1-6: NOTRUN -> [SKIP][115] ([i915#12311] / [i915#12339]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg1-6/igt at kms_joiner@invalid-modeset-ultra-joiner.html - fi-tgl-1115g4: NOTRUN -> [SKIP][116] ([i915#12339]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/fi-tgl-1115g4/igt at kms_joiner@invalid-modeset-ultra-joiner.html - bat-mtlp-6: NOTRUN -> [SKIP][117] ([i915#12339]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-mtlp-6/igt at kms_joiner@invalid-modeset-ultra-joiner.html - bat-twl-2: NOTRUN -> [SKIP][118] ([i915#12339]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-twl-2/igt at kms_joiner@invalid-modeset-ultra-joiner.html - bat-dg2-11: NOTRUN -> [SKIP][119] ([i915#12339]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-dg2-11/igt at kms_joiner@invalid-modeset-ultra-joiner.html #### Possible fixes #### * igt at i915_module_load@load: - {bat-mtlp-9}: [DMESG-WARN][120] ([i915#13494]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-mtlp-9/igt at i915_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-mtlp-9/igt at i915_module_load@load.html * igt at i915_module_load@reload: - bat-apl-1: [DMESG-WARN][122] ([i915#11621] / [i915#180] / [i915#1982]) -> [PASS][123] +4 other tests pass [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-apl-1/igt at i915_module_load@reload.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-apl-1/igt at i915_module_load@reload.html * igt at i915_selftest@live at sanitycheck: - bat-apl-1: [DMESG-WARN][124] ([i915#11621]) -> [PASS][125] +79 other tests pass [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-apl-1/igt at i915_selftest@live at sanitycheck.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-apl-1/igt at i915_selftest@live at sanitycheck.html * igt at i915_selftest@live at workarounds: - bat-arlh-2: [DMESG-FAIL][126] ([i915#13393]) -> [PASS][127] +1 other test pass [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-arlh-2/igt at i915_selftest@live at workarounds.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-arlh-2/igt at i915_selftest@live at workarounds.html * igt at kms_pm_rpm@basic-pci-d3-state: - bat-apl-1: [DMESG-WARN][128] ([i915#11621] / [i915#180]) -> [PASS][129] +44 other tests pass [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8190/bat-apl-1/igt at kms_pm_rpm@basic-pci-d3-state.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/bat-apl-1/igt at kms_pm_rpm@basic-pci-d3-state.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#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#11575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11575 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8190 -> IGTPW_12440 * Linux: CI_DRM_15951 -> CI_DRM_15959 CI-20190529: 20190529 CI_DRM_15951: 1c464719f6d86a08c91e6ed5d64db83b166788db @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15959: 1add93ce0468986a45532aa0a83e7c5976110d7b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12440: 12440 IGT_8190: db6e252e00bc44f90b678d547e93b3f02c02c6de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12440/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Wed Jan 15 11:09:03 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Wed, 15 Jan 2025 12:09:03 +0100 Subject: [i-g-t] tests/intel-ci: Fix a syntax err in xe.blocklist.txt In-Reply-To: References: <20250114173523.3267049-1-oak.zeng@intel.com> Message-ID: <20250115110903.maekb7peoi4yfgbe@kamilkon-desk.igk.intel.com> Hi Thomas, On 2025-01-15 at 09:02:20 +0100, Thomas Hellstr?m wrote: > On Tue, 2025-01-14 at 12:35 -0500, Oak Zeng wrote: > > The syntax in below lines are wrong: > > > > igt at xe_evict@*-multi-vm-cm* > > igt at xe_evict@*-threads-* > > > > With above, those xe_evict tests are not blacklisted from xe.ci.full I merged this with correction s/blacklisted/removed/ > > category. > > > > Fix the issue by adding a dot (.) preceding star (*). > > > > Signed-off-by: Oak Zeng > > Cc: Thomas Hellstr?m > Reviewed-by: Thomas Hellstr?m > Sorry, I didn't see this at merge time. Regards, Kamil > > --- > > ?tests/intel-ci/xe.blocklist.txt | 6 +++--- > > ?1 file changed, 3 insertions(+), 3 deletions(-) > > > > diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel- > > ci/xe.blocklist.txt > > index a9b647c1d..fc270198f 100644 > > --- a/tests/intel-ci/xe.blocklist.txt > > +++ b/tests/intel-ci/xe.blocklist.txt > > @@ -93,7 +93,7 @@ igt at sriov_basic@bind-unbind-vf$ > > ?# Exclude xe_evict tests that are not expected to succeed > > ?# due to missing TTM exhaustive eviction > > ?################################################################## > > -igt at xe_evict@*-multi-vm-cm* > > -igt at xe_evict@*-threads-* > > -# igt at xe_evict@*-cm* # Rebind and VM_BIND may race. > > +igt at xe_evict@.*-multi-vm-cm.* > > +igt at xe_evict@.*-threads-.* > > +# igt at xe_evict@.*-cm.* # Rebind and VM_BIND may race. > > ?################################################################## > From kamil.konieczny at linux.intel.com Wed Jan 15 11:10:36 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Wed, 15 Jan 2025 12:10:36 +0100 Subject: =?utf-8?B?4pyXIFhlLkNJLkZ1bGw6IGZhaWx1cg==?= =?utf-8?Q?e?= for tests/intel-ci: Fix a syntax err in xe.blocklist.txt In-Reply-To: <173689927142.3758484.13032617055866397864@b555e5b46a47> References: <20250114173523.3267049-1-oak.zeng@intel.com> <173689927142.3758484.13032617055866397864@b555e5b46a47> Message-ID: <20250115111036.hwwxo7jcgnbbg534@kamilkon-desk.igk.intel.com> Hi igt-dev, On 2025-01-15 at 00:01:11 -0000, Patchwork wrote: none of below regressions are caused by this patch. Regards, Kamil > == Series Details == > > Series: tests/intel-ci: Fix a syntax err in xe.blocklist.txt > URL : https://patchwork.freedesktop.org/series/143518/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8190_full -> XEIGTPW_12437_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_12437_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_12437_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_12437_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-2-4-rc-ccs-cc: > - shard-dg2-set2: NOTRUN -> [SKIP][1] +23 other tests skip > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-432/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-2-4-rc-ccs-cc.html > > * igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3: > - shard-bmg: [PASS][2] -> [FAIL][3] > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html > > * igt at kms_flip@2x-wf_vblank-ts-check-interruptible at ac-dp2-hdmi-a3: > - shard-bmg: [PASS][4] -> [INCOMPLETE][5] > [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_flip@2x-wf_vblank-ts-check-interruptible at ac-dp2-hdmi-a3.html > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-bmg-3/igt at kms_flip@2x-wf_vblank-ts-check-interruptible at ac-dp2-hdmi-a3.html > > * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-c-edp-1: > - shard-lnl: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete > [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-5/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-c-edp-1.html > [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-7/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-c-edp-1.html > > * igt at xe_evict_ccs@evict-overcommit-parallel-nofree-samefd: > - shard-dg2-set2: NOTRUN -> [INCOMPLETE][8] > [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-dg2-435/igt at xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html > > > New tests > --------- > > New tests have been introduced between XEIGT_8190_full and XEIGTPW_12437_full: > > ### New IGT tests (1) ### > > * igt at xe_copy_basic: > - Statuses : 1 incomplete(s) > - Exec time: [0.0] s > > > > Known issues > ------------ > > Here are the changes found in XEIGTPW_12437_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt at core_hotunplug@hotreplug-lateclose: > - shard-lnl: NOTRUN -> [ABORT][9] ([Intel XE#3914]) > [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/shard-lnl-6/igt at core_hotunplug@hotreplug-lateclose.html > ...cut... > [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 > [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_8190 -> IGTPW_12437 > * Linux: xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db -> xe-2485-30226b91b1754fdae425af3397c1e3dcba8264b0 > > IGTPW_12437: 0f59ba31e7b6259cc30403659f79160c707f737d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8190: db6e252e00bc44f90b678d547e93b3f02c02c6de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db: 1c464719f6d86a08c91e6ed5d64db83b166788db > xe-2485-30226b91b1754fdae425af3397c1e3dcba8264b0: 30226b91b1754fdae425af3397c1e3dcba8264b0 > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12437/index.html From kamil.konieczny at linux.intel.com Wed Jan 15 11:41:47 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Wed, 15 Jan 2025 12:41:47 +0100 Subject: =?utf-8?B?4pyXIFhlLkNJLkZ1bGw=?= =?utf-8?Q?=3A?= failure for Initial PTL support (rev6) In-Reply-To: <173663061097.2602953.10099674755140442503@b555e5b46a47> References: <20241218213654.2734573-1-clinton.a.taylor@intel.com> <173663061097.2602953.10099674755140442503@b555e5b46a47> Message-ID: <20250115114147.myzcubzcp5inqlvh@kamilkon-desk.igk.intel.com> Hi igt-dev, On 2025-01-11 at 21:23:30 -0000, Patchwork wrote: could anyone from KMS team confirm that below kms regressions are not related? Thanks! Adding J-P and Jani to Cc. Cc: Juha-pekka Heikkila Cc: Jani Saarinen As for xe_mmap - imho this SKIP is not related to this series. Tejas could you confirm? Thanks! Cc: Tejas Upadhyay Regards, Kamil > == Series Details == > > Series: Initial PTL support (rev6) > URL : https://patchwork.freedesktop.org/series/141325/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8183_full -> XEIGTPW_12418_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_12418_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_12418_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_12418_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-6: > - shard-dg2-set2: [PASS][1] -> [FAIL][2] > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-6.html > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-436/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-6.html > > * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: > - shard-dg2-set2: [PASS][3] -> [ABORT][4] > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html > [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html > > * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-2: > - shard-dg2-set2: NOTRUN -> [ABORT][5] +1 other test abort > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-2.html > > * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a2-dp2: > - shard-dg2-set2: NOTRUN -> [FAIL][6] +3 other tests fail > [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a2-dp2.html > > * igt at kms_plane_lowres@tiling-4 at pipe-d-hdmi-a-3: > - shard-bmg: [PASS][7] -> [INCOMPLETE][8] +3 other tests incomplete > [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_plane_lowres@tiling-4 at pipe-d-hdmi-a-3.html > [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-8/igt at kms_plane_lowres@tiling-4 at pipe-d-hdmi-a-3.html > > * igt at kms_psr@psr2-suspend at edp-1: > - shard-lnl: [PASS][9] -> [FAIL][10] +1 other test fail > [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-2/igt at kms_psr@psr2-suspend at edp-1.html > [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-2/igt at kms_psr@psr2-suspend at edp-1.html > > * igt at xe_mmap@pci-membarrier: > - shard-dg2-set2: NOTRUN -> [SKIP][11] > [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at xe_mmap@pci-membarrier.html > > > Known issues > ------------ > > Here are the changes found in XEIGTPW_12418_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### ...cut... > [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 > [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 > > > Build changes > ------------- > > * IGT: IGT_8183 -> IGTPW_12418 > > IGTPW_12418: 23052ace3ac04fd0203b573736255ba4919c63d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > xe-2461-14e0c4a8247c9514dc57b2231602fb6d9455802b: 14e0c4a8247c9514dc57b2231602fb6d9455802b > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/index.html From patchwork at emeril.freedesktop.org Wed Jan 15 13:04:18 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 13:04:18 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_Add_xe=5Fsriov=5Fauto=5F?= =?utf-8?q?provisioning_tests_=28rev2=29?= In-Reply-To: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> References: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> Message-ID: <173694625868.3949484.2839100039759768468@b555e5b46a47> == Series Details == Series: Add xe_sriov_auto_provisioning tests (rev2) URL : https://patchwork.freedesktop.org/series/142781/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15952_full -> IGTPW_12436_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12436_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12436_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_12436/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_12436_full: ### IGT changes ### #### Possible regressions #### * igt at i915_module_load@reload-with-fault-injection: - shard-glk: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-glk6/igt at i915_module_load@reload-with-fault-injection.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk8/igt at i915_module_load@reload-with-fault-injection.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3: - shard-dg2: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-dg2-7/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-5/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3.html * igt at kms_flip@plain-flip-ts-check-interruptible at a-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/igt at kms_flip@plain-flip-ts-check-interruptible at a-hdmi-a4.html * igt at perf_pmu@busy-check-all at vcs1: - shard-dg1: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-dg1-18/igt at perf_pmu@busy-check-all at vcs1.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at perf_pmu@busy-check-all at vcs1.html - shard-mtlp: [PASS][8] -> [FAIL][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-mtlp-1/igt at perf_pmu@busy-check-all at vcs1.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-5/igt at perf_pmu@busy-check-all at vcs1.html #### Warnings #### * igt at kms_prime@basic-modeset-hybrid: - shard-tglu: [SKIP][10] ([i915#6524]) -> [ABORT][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-tglu-3/igt at kms_prime@basic-modeset-hybrid.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-5/igt at kms_prime@basic-modeset-hybrid.html Known issues ------------ Here are the changes found in IGTPW_12436_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8411]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-13/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8411]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-2/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][14] ([i915#8411]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-5/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#11078]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/igt at device_reset@cold-reset-bound.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#11078]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-7/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-idle at bcs0: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8414]) +16 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-3/igt at drm_fdinfo@busy-idle at bcs0.html * igt at drm_fdinfo@isolation at vecs0: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#8414]) +21 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at drm_fdinfo@isolation at vecs0.html * igt at drm_fdinfo@memory-info-resident: - shard-rkl: [PASS][19] -> [DMESG-WARN][20] ([i915#12964]) +44 other tests dmesg-warn [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-rkl-4/igt at drm_fdinfo@memory-info-resident.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-7/igt at drm_fdinfo@memory-info-resident.html * igt at gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-13/igt at gem_ccs@block-copy-compressed.html - shard-tglu: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-5/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#9323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#13008]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at gem_ccs@large-ctrl-surf-copy.html - shard-tglu: NOTRUN -> [SKIP][25] ([i915#13008]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-10/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#9323]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#7697]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-5/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@create-ext-set-pat: - shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#8562]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at gem_create@create-ext-set-pat.html - shard-dg1: NOTRUN -> [SKIP][29] ([i915#8562]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][30] ([i915#12353]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk4/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#8555]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-10/igt at gem_ctx_persistence@heartbeat-close.html * igt at gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#8555]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at gem_ctx_persistence@heartbeat-stop.html - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#8555]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-1/igt at gem_ctx_persistence@heartbeat-stop.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][34] ([i915#1099]) +5 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-snb4/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#280]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-5/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#280]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-5/igt at gem_ctx_sseu@invalid-args.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#280]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-13/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][38] ([i915#280]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-6/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@kms: - shard-tglu-1: NOTRUN -> [DMESG-WARN][39] ([i915#13363]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at gem_eio@kms.html - shard-dg1: NOTRUN -> [FAIL][40] ([i915#5784]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at gem_eio@kms.html * igt at gem_eio@reset-stress: - shard-dg1: NOTRUN -> [FAIL][41] ([i915#12543] / [i915#5784]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/igt at gem_eio@reset-stress.html * igt at gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4812]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-5/igt at gem_exec_balancer@bonded-false-hang.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4812]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4036]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel-keep-in-fence: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#4525]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-10/igt at gem_exec_balancer@parallel-keep-in-fence.html * igt at gem_exec_balancer@sliced: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-3/igt at gem_exec_balancer@sliced.html * igt at gem_exec_big@single: - shard-tglu: [PASS][47] -> [ABORT][48] ([i915#11713]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-tglu-9/igt at gem_exec_big@single.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-9/igt at gem_exec_big@single.html * igt at gem_exec_capture@capture-invisible: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#6334]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-9/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture-invisible at smem0: - shard-glk: NOTRUN -> [SKIP][50] ([i915#6334]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk5/igt at gem_exec_capture@capture-invisible at smem0.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][51] ([i915#11965]) +2 other tests fail [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_endless@dispatch at vcs1: - shard-dg1: [PASS][52] -> [TIMEOUT][53] ([i915#3778]) +1 other test timeout [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-dg1-12/igt at gem_exec_endless@dispatch at vcs1.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at gem_exec_endless@dispatch at vcs1.html * igt at gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3539] / [i915#4852]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at gem_exec_flush@basic-uc-ro-default.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3539] / [i915#4852]) +5 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_reloc@basic-cpu-read: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#3281]) +18 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-11/igt at gem_exec_reloc@basic-cpu-read.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_12436/shard-dg1-17/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#3281]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-1/igt at gem_exec_reloc@basic-write-read-noreloc.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-4/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4537] / [i915#4812]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-11/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_suspend@basic-s0: - shard-dg2: [PASS][61] -> [INCOMPLETE][62] ([i915#11441] / [i915#13304]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-dg2-8/igt at gem_exec_suspend@basic-s0.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-4/igt at gem_exec_suspend@basic-s0.html * igt at gem_exec_suspend@basic-s0 at lmem0: - shard-dg2: [PASS][63] -> [INCOMPLETE][64] ([i915#11441]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-dg2-8/igt at gem_exec_suspend@basic-s0 at lmem0.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-4/igt at gem_exec_suspend@basic-s0 at lmem0.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][65] ([i915#7975] / [i915#8213]) +1 other test abort [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-5/igt at gem_exec_suspend@basic-s4-devices.html - shard-rkl: NOTRUN -> [ABORT][66] ([i915#7975] / [i915#8213]) +1 other test abort [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-2/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_exec_whisper@basic-queues-priority: - shard-rkl: [PASS][67] -> [DMESG-WARN][68] ([i915#12917] / [i915#12964]) +2 other tests dmesg-warn [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-rkl-6/igt at gem_exec_whisper@basic-queues-priority.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-1/igt at gem_exec_whisper@basic-queues-priority.html * igt at gem_fence_thrash@bo-copy: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4860]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-4/igt at gem_fence_thrash@bo-copy.html * igt at gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4860]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at gem_fence_thrash@bo-write-verify-threaded-none.html * igt at gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4860]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt at gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#2190]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-10/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4613]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-4/igt at gem_lmem_swapping@basic.html * igt at gem_lmem_swapping@heavy-verify-multi: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#4613]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-5/igt at gem_lmem_swapping@heavy-verify-multi.html * igt at gem_lmem_swapping@heavy-verify-random: - shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#4613]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at gem_lmem_swapping@heavy-verify-random.html * igt at gem_lmem_swapping@smem-oom: - shard-glk: NOTRUN -> [SKIP][76] ([i915#4613]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk7/igt at gem_lmem_swapping@smem-oom.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][77] ([i915#5493]) +1 other test timeout [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#284]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at gem_media_vme.html * igt at gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4077]) +12 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-13/igt at gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt at gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4077]) +16 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/igt at gem_mmap_gtt@cpuset-medium-copy-xy.html * igt at gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4083]) +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-11/igt at gem_mmap_wc@bad-size.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4083]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-4/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4083]) +7 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at gem_mmap_wc@write-read.html * igt at gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3282]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-7/igt at gem_partial_pwrite_pread@write-uncached.html * igt at gem_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#3282]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/igt at gem_partial_pwrite_pread@writes-after-reads.html * igt at gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#3282]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-6/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pwrite_snooped: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#3282]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-7/igt at gem_pwrite_snooped.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][88] ([i915#12917] / [i915#12964]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-4/igt at gem_pxp@hw-rejects-pxp-buffer.html - shard-tglu: NOTRUN -> [SKIP][89] ([i915#13398]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-4/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4270]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-11/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4270]) +7 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/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][92] ([i915#5190] / [i915#8428]) +8 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/igt at gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt at gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#8428]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-1/igt at gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#4079]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_set_tiling_vs_gtt: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4079]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at gem_set_tiling_vs_gtt.html * igt at gem_softpin@noreloc-s3: - shard-glk: NOTRUN -> [INCOMPLETE][96] ([i915#13306]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk2/igt at gem_softpin@noreloc-s3.html * igt at gem_userptr_blits@coherency-unsync: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#3297]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-13/igt at gem_userptr_blits@coherency-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#3282] / [i915#3297]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#3297]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-6/igt at gem_userptr_blits@invalid-mmap-offset-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#3297] / [i915#4880]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#3297] / [i915#4958]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#3297]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-2/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-dg2: NOTRUN -> [SKIP][103] ([i915#3297]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-3/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_workarounds@suspend-resume-fd: - shard-glk: [PASS][104] -> [INCOMPLETE][105] ([i915#13356]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-glk1/igt at gem_workarounds@suspend-resume-fd.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk8/igt at gem_workarounds@suspend-resume-fd.html * igt at gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#2527] / [i915#2856]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at gen9_exec_parse@basic-rejected-ctx-param.html * igt at gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#2527]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-3/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-secure: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#2527] / [i915#2856]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-4/igt at gen9_exec_parse@bb-secure.html * igt at gen9_exec_parse@bb-start-out: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#2527]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at gen9_exec_parse@bb-start-out.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#2856]) +4 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/igt at gen9_exec_parse@shadow-peek.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][111] -> [ABORT][112] ([i915#12817] / [i915#9820]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-tglu-9/igt at i915_module_load@reload-with-fault-injection.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-8/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#8399]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_rpm@gem-evict-pwrite: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4077]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-6/igt at i915_pm_rpm@gem-evict-pwrite.html * igt at i915_pm_rpm@reg-read-ioctl: - shard-rkl: [PASS][115] -> [SKIP][116] ([i915#13328]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-rkl-3/igt at i915_pm_rpm@reg-read-ioctl.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-1/igt at i915_pm_rpm@reg-read-ioctl.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#11681] / [i915#6621]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/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][118] ([i915#11681] / [i915#6621]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-4/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#11681]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-10/igt at i915_pm_rps@thresholds.html * igt at i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#4387]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at i915_pm_sseu@full-enable.html - shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#4387]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at i915_pm_sseu@full-enable.html * igt at i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#7984]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-6/igt at i915_power@sanity.html * igt at i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#5723]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-13/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@perf: - shard-snb: [PASS][124] -> [ABORT][125] ([i915#11703]) +1 other test abort [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-snb1/igt at i915_selftest@perf.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-snb2/igt at i915_selftest@perf.html * igt at i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][126] ([i915#7443]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-6/igt at i915_suspend@basic-s3-without-i915.html * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4212]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4215] / [i915#5190]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-7/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4212]) +4 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-4/igt at kms_addfb_basic@framebuffer-vs-set-tiling.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][130] ([i915#10991] / [i915#13335]) +1 other test fail [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk5/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][131] ([i915#12761]) +1 other test incomplete [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk8/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][132] ([i915#8709]) +7 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/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_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#9531]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@modeset-transition: - shard-glk: [PASS][134] -> [FAIL][135] ([i915#12238]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-glk7/igt at kms_atomic_transition@modeset-transition.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk8/igt at kms_atomic_transition@modeset-transition.html * igt at kms_atomic_transition@modeset-transition at 2x-outputs: - shard-glk: [PASS][136] -> [FAIL][137] ([i915#11859]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-glk7/igt at kms_atomic_transition@modeset-transition at 2x-outputs.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk8/igt at kms_atomic_transition@modeset-transition at 2x-outputs.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2: NOTRUN -> [FAIL][138] ([i915#5956]) +1 other test fail [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-4/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][139] ([i915#1769]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][140] ([i915#1769] / [i915#3555]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/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-dg2: NOTRUN -> [SKIP][141] ([i915#1769] / [i915#3555]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#5286]) +5 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-4/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@4-tiled-64bpp-rotate-0: - shard-mtlp: [PASS][143] -> [FAIL][144] ([i915#12469] / [i915#5138]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-mtlp-2/igt at kms_big_fb@4-tiled-64bpp-rotate-0.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-8/igt at kms_big_fb@4-tiled-64bpp-rotate-0.html * igt at kms_big_fb@4-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#5286]) +4 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-2/igt at kms_big_fb@4-tiled-64bpp-rotate-270.html * igt at kms_big_fb@4-tiled-8bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#5286]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at kms_big_fb@4-tiled-8bpp-rotate-0.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#4538] / [i915#5286]) +5 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/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-mtlp: [PASS][148] -> [FAIL][149] ([i915#5138]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-mtlp-5/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-2/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#3638]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-1/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#3638]) +5 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-14/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [DMESG-WARN][152] ([i915#12964]) +14 other tests dmesg-warn [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-6/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#5190]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-11/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-mtlp: NOTRUN -> [SKIP][154] +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-4/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#4538] / [i915#5190]) +14 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#6187]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-3/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#4538]) +4 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-13/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#10307] / [i915#10434] / [i915#6095]) +6 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/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-aux-stride-yf-tiled-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#6095]) +9 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-5/igt at kms_ccs@bad-aux-stride-yf-tiled-ccs at pipe-c-edp-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#6095]) +185 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/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-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#6095]) +80 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-5/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2.html * igt at kms_ccs@bad-rotation-90-yf-tiled-ccs at pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#6095]) +34 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-3/igt at kms_ccs@bad-rotation-90-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#12313]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-3/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#12313]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-5/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#12805]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][166] ([i915#12805]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-2/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#12805]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-3/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][168] ([i915#12796]) +1 other test incomplete [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk7/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#6095]) +17 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-3/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-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#12313]) +4 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][171] ([i915#12313]) +3 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-9/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][172] ([i915#6095]) +29 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/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@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#10307] / [i915#6095]) +194 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-4/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_cdclk@mode-transition: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#11616] / [i915#7213]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_cdclk@mode-transition.html - shard-rkl: NOTRUN -> [SKIP][175] ([i915#3742]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-4/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#7213]) +3 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-rkl: NOTRUN -> [SKIP][177] +13 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-5/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +8 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-9/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#11151] / [i915#7828]) +14 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-7/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][181] ([i915#11151] / [i915#7828]) +6 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-5/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-read: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#11151] / [i915#7828]) +10 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at kms_chamelium_edid@hdmi-edid-read.html * igt at kms_chamelium_hpd@vga-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#11151] / [i915#7828]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-4/igt at kms_chamelium_hpd@vga-hpd-after-suspend.html * igt at kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#7116] / [i915#9424]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/igt at kms_content_protection@atomic.html - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#6944] / [i915#9424]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-1/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3299]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-3/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#3116] / [i915#3299]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-dg2: NOTRUN -> [TIMEOUT][188] ([i915#7173]) +1 other test timeout [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-10/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#6944] / [i915#9424]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-4/igt at kms_content_protection@lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][190] ([i915#9424]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#9424]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#7118]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-11/igt at kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][193] ([i915#6944] / [i915#7116] / [i915#7118]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-4/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#7118] / [i915#9424]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-5/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#3555]) +9 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-13/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#13049]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555]) +4 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-3/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#13049]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-2/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#13049]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-4/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#4103] / [i915#4213]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/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][202] ([i915#4103] / [i915#4213]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#13046] / [i915#5354]) +6 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-3/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#9809]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: NOTRUN -> [FAIL][205] ([i915#2346]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#9067]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/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][207] ([i915#4103]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-10/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#9723]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/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_12436/shard-tglu-4/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#8588]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#1257]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-11/igt at kms_dp_aux_dev.html - shard-rkl: NOTRUN -> [SKIP][212] ([i915#1257]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-1/igt at kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][213] ([i915#1257]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][214] ([i915#1257]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-4/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#12402]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-14/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][216] ([i915#12402]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-8/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#8812]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-13/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#8812]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3840] / [i915#9688]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#3840]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-7/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-2/igt at kms_dsc@dsc-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-3/igt at kms_dsc@dsc-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#3469]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][224] ([i915#3469]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-2/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#1839]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-3/igt at kms_feature_discovery@display-2x.html - shard-tglu: NOTRUN -> [SKIP][226] ([i915#1839]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-7/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#1839]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-14/igt at kms_feature_discovery@display-3x.html * igt at kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#4881]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-11/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-flip-vs-dpms: - shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#3637]) +4 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#8381]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][231] ([i915#4839]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk9/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#3637]) +4 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-5/igt at kms_flip@2x-nonexisting-fb-interruptible.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#9934]) +8 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-5/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#9934]) +7 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-7/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html - shard-dg1: NOTRUN -> [SKIP][235] ([i915#9934]) +7 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#3637]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-1/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2: [PASS][237] -> [FAIL][238] ([i915#13027]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-dg2-7/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-5/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#8381]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][240] ([i915#12745] / [i915#4839]) +1 other test incomplete [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk6/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][241] ([i915#12745]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk6/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at b-hdmi-a1: - shard-snb: [PASS][242] -> [FAIL][243] ([i915#11989]) +3 other tests fail [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-snb1/igt at kms_flip@plain-flip-fb-recreate-interruptible at b-hdmi-a1.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-snb2/igt at kms_flip@plain-flip-fb-recreate-interruptible at b-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at d-hdmi-a1: - shard-tglu: [PASS][244] -> [FAIL][245] ([i915#11989]) +6 other tests fail [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-tglu-4/igt at kms_flip@plain-flip-fb-recreate-interruptible at d-hdmi-a1.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-10/igt at kms_flip@plain-flip-fb-recreate-interruptible at d-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [FAIL][246] ([i915#11989]) +3 other tests fail [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-8/igt at kms_flip@plain-flip-ts-check-interruptible.html - shard-dg1: NOTRUN -> [FAIL][247] ([i915#11989]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip@wf_vblank-ts-check: - shard-rkl: [PASS][248] -> [FAIL][249] ([i915#11989]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-rkl-7/igt at kms_flip@wf_vblank-ts-check.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-5/igt at kms_flip@wf_vblank-ts-check.html * igt at kms_flip@wf_vblank-ts-check at b-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][250] ([i915#11989]) +1 other test fail [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-5/igt at kms_flip@wf_vblank-ts-check at b-hdmi-a2.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#2587] / [i915#2672]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/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-yftile-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#3555]) +2 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#2672]) +3 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-6/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 at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#2672] / [i915#8813]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-4/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#2672]) +5 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-6/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][258] ([i915#2587] / [i915#2672] / [i915#3555]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-14/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-upscaling: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/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: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html - shard-tglu: NOTRUN -> [SKIP][261] ([i915#2672] / [i915#3555]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-6/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][262] ([i915#2587] / [i915#2672]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/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_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#3555]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/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-dg1: NOTRUN -> [SKIP][264] ([i915#2587] / [i915#2672]) +4 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#5274]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-3/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-dg2: [PASS][266] -> [FAIL][267] ([i915#6880]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-snb: [PASS][268] -> [SKIP][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-snb4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#5354]) +51 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#3458]) +27 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#10433] / [i915#3458]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#8708]) +23 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][274] +49 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-13/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#1825]) +20 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#1825]) +4 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][277] +36 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#3023]) +17 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-5/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#8708]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#8708]) +26 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#3458]) +22 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_hdr@bpc-switch: - shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8228]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-suspend: - shard-dg2: [PASS][283] -> [SKIP][284] ([i915#3555] / [i915#8228]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-dg2-10/igt at kms_hdr@bpc-switch-suspend.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#13331]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-10/igt at kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][286] ([i915#12713]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-4/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-2/igt at kms_hdr@static-toggle.html - shard-dg1: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-7/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-3/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#12388]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_joiner@basic-force-big-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#12388]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][293] ([i915#12394]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-13/igt at kms_joiner@basic-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][294] ([i915#12394]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-5/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][295] ([i915#12339]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-14/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#10656]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#10656]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#4816]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#6301]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-3/igt at kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][300] ([i915#6301]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-13/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][301] +27 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-10/igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][302] ([i915#12756] / [i915#13409] / [i915#13476]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk2/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][303] ([i915#13409] / [i915#13476]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk2/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][304] ([i915#10647] / [i915#12169]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk9/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][305] ([i915#10647]) +1 other test fail [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk9/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_cursor@viewport at pipe-a-hdmi-a-2-size-128: - shard-rkl: NOTRUN -> [DMESG-WARN][306] ([i915#12917] / [i915#12964]) +2 other tests dmesg-warn [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-6/igt at kms_plane_cursor@viewport at pipe-a-hdmi-a-2-size-128.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#3555] / [i915#8821]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg1: NOTRUN -> [SKIP][308] ([i915#6953]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#12247] / [i915#9423]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#12247]) +10 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-7/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: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#12247]) +17 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#12247]) +4 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/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-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#12247] / [i915#6953]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-4/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#12247] / [i915#6953]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-3/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-b: - shard-mtlp: NOTRUN -> [SKIP][315] ([i915#12247]) +8 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-3/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#12247] / [i915#6953] / [i915#9423]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][317] ([i915#12247] / [i915#6953]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][318] ([i915#12247] / [i915#6953]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-10/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][319] ([i915#12247]) +11 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-d: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#12247]) +8 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-10/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#12247] / [i915#3555]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#5354]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-7/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][323] ([i915#9812]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-6/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#9685]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][325] ([i915#9685]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#3828]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#3361]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-1/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#9340]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-7/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][329] ([i915#8430]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-14/igt at kms_pm_lpsp@screens-disabled.html - shard-tglu: NOTRUN -> [SKIP][330] ([i915#8430]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-7/igt at kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][331] ([i915#8430]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-3/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-rkl: [PASS][332] -> [SKIP][333] ([i915#12916]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-rkl-7/igt at kms_pm_rpm@basic-pci-d3-state.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-1/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#9519]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#9519]) +2 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][336] -> [SKIP][337] ([i915#9519]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-dg2-5/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_prime@basic-crc-hybrid: - shard-dg1: NOTRUN -> [SKIP][338] ([i915#6524]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/igt at kms_prime@basic-crc-hybrid.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][339] ([i915#11520]) +10 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-4/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#11520]) +6 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-5/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#11520]) +13 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-3/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#9808]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-1/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#11520]) +3 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-mtlp: NOTRUN -> [SKIP][344] ([i915#12316]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-2/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][345] ([i915#11520]) +11 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk7/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][346] ([i915#11520]) +11 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-13/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][347] ([i915#11520]) +10 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-snb2/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#9683]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-1/igt at kms_psr2_su@page_flip-p010.html - shard-dg1: NOTRUN -> [SKIP][349] ([i915#9683]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at kms_psr2_su@page_flip-p010.html - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#4348]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-5/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#9683]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-4/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#9732]) +8 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-psr-cursor-mmap-gtt at edp-1: - shard-mtlp: NOTRUN -> [SKIP][353] ([i915#9688]) +4 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-7/igt at kms_psr@fbc-psr-cursor-mmap-gtt at edp-1.html * igt at kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][354] ([i915#1072] / [i915#9732]) +29 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt at kms_psr@pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#1072] / [i915#9732]) +16 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-7/igt at kms_psr@pr-cursor-plane-onoff.html * igt at kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#1072] / [i915#9732]) +33 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-4/igt at kms_psr@psr2-cursor-blt.html * igt at kms_psr@psr2-primary-render: - shard-tglu: NOTRUN -> [SKIP][357] ([i915#9732]) +18 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-6/igt at kms_psr@psr2-primary-render.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][358] +365 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk4/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#9685]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-3/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][360] ([i915#9685]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-10/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][361] ([i915#9685]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][362] ([i915#4884]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at kms_rotation_crc@exhaust-fences.html * igt at kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#12755]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-11/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#12755] / [i915#5190]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-11/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][365] ([i915#5289]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-tglu-1: NOTRUN -> [SKIP][366] ([i915#5289]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-dg1: NOTRUN -> [SKIP][367] ([i915#5289]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-mtlp: NOTRUN -> [SKIP][368] ([i915#12755]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][369] ([i915#3555]) +2 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-2/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_scaling_modes@scaling-mode-none: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#3555]) +7 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][371] ([i915#13179]) +1 other test abort [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-snb2/igt at kms_selftest@drm_framebuffer.html - shard-tglu: NOTRUN -> [ABORT][372] ([i915#13179]) +1 other test abort [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-3/igt at kms_selftest@drm_framebuffer.html - shard-glk: NOTRUN -> [ABORT][373] ([i915#13179]) +1 other test abort [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk1/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@basic-clone-single-crtc: - shard-tglu-1: NOTRUN -> [SKIP][374] ([i915#3555]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-1/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_sysfs_edid_timing: - shard-dg2: [PASS][375] -> [FAIL][376] ([IGT#160]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-dg2-10/igt at kms_sysfs_edid_timing.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-11/igt at kms_sysfs_edid_timing.html - shard-dg1: NOTRUN -> [FAIL][377] ([IGT#160] / [i915#6493]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at kms_sysfs_edid_timing.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][378] ([i915#12276]) +1 other test incomplete [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk9/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][379] ([i915#9906]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#11920]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/igt at kms_vrr@lobf.html * igt at kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][381] ([i915#9906]) +2 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-14/igt at kms_vrr@max-min.html - shard-tglu: NOTRUN -> [SKIP][382] ([i915#9906]) +2 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-8/igt at kms_vrr@max-min.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][383] ([i915#9906]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-5/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][384] ([i915#2437]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-3/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][385] ([i915#2437]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk5/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][386] ([i915#7387]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at perf@global-sseu-config-invalid.html * igt at perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][387] ([i915#9100]) +1 other test fail [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at perf@non-zero-reason.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][388] +437 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-snb7/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@busy-idle-check-all at ccs0: - shard-mtlp: [PASS][389] -> [FAIL][390] ([i915#4349]) +4 other tests fail [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-mtlp-2/igt at perf_pmu@busy-idle-check-all at ccs0.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-2/igt at perf_pmu@busy-idle-check-all at ccs0.html - shard-dg2: NOTRUN -> [FAIL][391] ([i915#4349]) +2 other tests fail [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-4/igt at perf_pmu@busy-idle-check-all at ccs0.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_12436/shard-dg2-3/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@frequency at gt0: - shard-dg1: NOTRUN -> [FAIL][393] ([i915#12549] / [i915#6806]) +1 other test fail [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][394] ([i915#13356]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk1/igt at perf_pmu@rc6-suspend.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][395] ([i915#8516]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at perf_pmu@semaphore-busy: - shard-dg2: [PASS][396] -> [FAIL][397] ([i915#4349]) +1 other test fail [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-dg2-5/igt at perf_pmu@semaphore-busy.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-11/igt at perf_pmu@semaphore-busy.html * igt at perf_pmu@semaphore-busy at vcs1: - shard-dg1: [PASS][398] -> [FAIL][399] ([i915#4349]) +2 other tests fail [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-dg1-13/igt at perf_pmu@semaphore-busy at vcs1.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at perf_pmu@semaphore-busy at vcs1.html * igt at prime_vgem@basic-fence-mmap: - shard-dg1: NOTRUN -> [SKIP][400] ([i915#3708] / [i915#4077]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-12/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][401] ([i915#3291] / [i915#3708]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-7/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][402] ([i915#3291] / [i915#3708]) +2 other tests skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-5/igt at prime_vgem@basic-write.html * igt at prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][403] ([i915#3708]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-1/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][404] +69 other tests skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-7/igt at prime_vgem@fence-write-hang.html - shard-dg1: NOTRUN -> [SKIP][405] ([i915#3708]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-14/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][406] ([i915#9917]) +2 other tests skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-8/igt at sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][407] ([i915#9917]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-7/igt at sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][408] ([i915#9917]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-17/igt at sriov_basic@bind-unbind-vf.html #### Possible fixes #### * igt at gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][409] ([i915#13427]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-dg2-1/igt at gem_create@create-ext-cpu-access-big.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg2-2/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_ctx_isolation@preservation-s3: - shard-rkl: [DMESG-FAIL][411] ([i915#12964]) -> [PASS][412] +3 other tests pass [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-rkl-2/igt at gem_ctx_isolation@preservation-s3.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-7/igt at gem_ctx_isolation@preservation-s3.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: [INCOMPLETE][413] ([i915#12353]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-glk2/igt at gem_ctx_isolation@preservation-s3 at rcs0.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk4/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: [ABORT][415] ([i915#7975] / [i915#8213]) -> [PASS][416] +1 other test pass [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-13/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at i915_module_load@reload-with-fault-injection: - shard-snb: [INCOMPLETE][417] -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-snb2/igt at i915_module_load@reload-with-fault-injection.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-snb5/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [FAIL][419] ([i915#12942]) -> [PASS][420] +1 other test pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-rkl-6/igt at i915_pm_rc6_residency@rc6-accuracy.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-rkl-1/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [DMESG-FAIL][421] ([i915#13393]) -> [PASS][422] +1 other test pass [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-mtlp-4/igt at i915_selftest@live at workarounds.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-mtlp-1/igt at i915_selftest@live at workarounds.html * igt at i915_suspend@debugfs-reader: - shard-glk: [INCOMPLETE][423] ([i915#4817]) -> [PASS][424] [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-glk1/igt at i915_suspend@debugfs-reader.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-glk7/igt at i915_suspend@debugfs-reader.html * igt at kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg1: [FAIL][425] ([i915#5956]) -> [PASS][426] [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-dg1-13/igt at kms_atomic_transition@plane-toggle-modeset-transition.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-dg1-18/igt at kms_atomic_transition@plane-toggle-modeset-transition.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1: - shard-tglu: [ABORT][427] -> [PASS][428] +1 other test pass [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-tglu-6/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/shard-tglu-6/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-rkl: [DMESG-WARN][429] ([i915#12964]) -> [PASS][430] +39 other tests pass [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15952/shard-rkl-6/igt at kms_cursor_crc@cursor-offscreen-256x85.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12436/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Wed Jan 15 14:25:58 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Wed, 15 Jan 2025 15:25:58 +0100 Subject: [PATCH i-g-t] tests/intel/gem_exec_balancer: Decrease expected load value In-Reply-To: References: Message-ID: <20250115142558.kknglewnvqjoatbw@kamilkon-desk.igk.intel.com> Hi Sebastian, On 2024-12-17 at 15:01:10 +0000, Sebastian Brzezinka wrote: > Expected value of 0.90 may occasionally not be achieved, either be > latency in the scheduler, or perf reporting. I'm lowering it to 0.85 > to match actual values ??(87.5% in last fail). > > Resolves: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12943 > This empty line should be removed. > Signed-off-by :Sebastian Brzezinka there is space before colon ' :S' it should be: Signed-off-by: Sebastian Brzezinka Please use checkpatch.pl script from linux kernel also for igt, you could find few helpfull options in CONTRIBUTING.md Also I just noticed after a merge that you sent it without r-b from Andi... and I forgot to cross-check mailing list... Please remember to add r-b if it was given, unless you make changes after that which justify removing r-b. Your patch is now applied, thank you for contributing! Regards, Kamil PS. Sorry Andi for missing your r-b, I tried to find out what todo only on patchwork, what is strange your mail didn't get into patchwork. > --- > tests/intel/gem_exec_balancer.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/intel/gem_exec_balancer.c b/tests/intel/gem_exec_balancer.c > index e7c43f1b4..c3f0c938b 100644 > --- a/tests/intel/gem_exec_balancer.c > +++ b/tests/intel/gem_exec_balancer.c > @@ -614,7 +614,7 @@ static void check_individual_engine(int i915, > > close(pmu); > > - igt_assert_f(load > 0.90, > + igt_assert_f(load > 0.85, > "engine %d (class:instance %d:%d) was found to be only %.1f%% busy\n", > idx, ci[idx].engine_class, ci[idx].engine_instance, load*100); > } > -- > 2.34.1 > From patchwork at emeril.freedesktop.org Wed Jan 15 14:50:58 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 14:50:58 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_lib/amdgpu=3A_Handle_-ENOD?= =?utf-8?q?ATA_in_amdgpu=5Fwait=5Fmemory?= In-Reply-To: <20250115070359.3698486-1-jesse.zhang@amd.com> References: <20250115070359.3698486-1-jesse.zhang@amd.com> Message-ID: <173695265845.3976342.11614463325673999902@b555e5b46a47> == Series Details == Series: lib/amdgpu: Handle -ENODATA in amdgpu_wait_memory URL : https://patchwork.freedesktop.org/series/143543/ State : failure == Summary == CI Bug Log - changes from XEIGT_8190_full -> XEIGTPW_12438_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12438_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12438_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_12438_full: ### IGT changes ### #### Possible regressions #### * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-dp-4: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-dp-4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-dp-4.html * igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3: - shard-bmg: [PASS][3] -> [FAIL][4] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html * igt at kms_psr@psr2-cursor-plane-onoff: - shard-lnl: [PASS][5] -> [FAIL][6] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-2/igt at kms_psr@psr2-cursor-plane-onoff.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-4/igt at kms_psr@psr2-cursor-plane-onoff.html Known issues ------------ Here are the changes found in XEIGTPW_12438_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: NOTRUN -> [FAIL][7] ([Intel XE#3719]) +3 other tests fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-2/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * 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][8] ([Intel XE#2550]) +23 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-464/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#3768]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic@plane-immutable-zpos: - shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#3007]) +5 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_atomic@plane-immutable-zpos.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_atomic@plane-immutable-zpos.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407]) +2 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-1/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#2136] / [Intel XE#2231]) +6 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#316]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-434/igt at kms_big_fb@x-tiled-16bpp-rotate-270.html * igt at kms_big_fb@x-tiled-64bpp-rotate-0: - shard-bmg: [PASS][15] -> [SKIP][16] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_big_fb@x-tiled-64bpp-rotate-0.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_big_fb@x-tiled-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1467]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-8/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#610]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-434/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +12 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-434/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1477]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-8/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +4 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-6/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#1124]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2191]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-2/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#367]) +9 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2191]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-464/igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p.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_12438/shard-lnl-3/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +46 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-433/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +6 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-4/igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#787]) +209 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-436/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][30] -> [INCOMPLETE][31] ([Intel XE#3862]) +1 other test incomplete [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#3432]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-5/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#2907]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-435/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-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2669]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-1/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][35] -> [DMESG-WARN][36] ([Intel XE#1727]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-hdmi-a-6.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-hdmi-a-6.html * igt at kms_chamelium_color@ctm-limited-range: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#306]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-2/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#306]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2252]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-2/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +15 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-463/igt at kms_chamelium_hpd@vga-hpd.html - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#373]) +6 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-8/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#3278]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-3/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@lic-type-1: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2341]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-1/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][44] ([Intel XE#1178]) +2 other tests fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-436/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-offscreen-64x21: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1424]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-1/igt at kms_cursor_crc@cursor-offscreen-64x21.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#308]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-463/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#2321]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-4/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#2291]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-6/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-set2: [PASS][50] -> [SKIP][51] ([i915#2575]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#309]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-5/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@forked-move: - shard-bmg: [PASS][53] -> [INCOMPLETE][54] ([Intel XE#3226]) +1 other test incomplete [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_cursor_legacy@forked-move.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-1/igt at kms_cursor_legacy@forked-move.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([i915#3804]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-464/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6.html * igt at kms_dp_aux_dev: - shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#3009]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_dp_aux_dev.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-6/igt at kms_dp_aux_dev.html * igt at kms_dsc@dsc-fractional-bpp: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#2244]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-3/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#701]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-435/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@psr1: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1135]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-434/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1421]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-3/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2: - shard-bmg: [PASS][62] -> [FAIL][63] ([Intel XE#3820]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4: - shard-dg2-set2: [PASS][64] -> [FAIL][65] ([Intel XE#301]) +2 other tests fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][66] ([Intel XE#301]) +5 other tests fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-suspend: - shard-bmg: [PASS][67] -> [INCOMPLETE][68] ([Intel XE#2597]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-5/igt at kms_flip@flip-vs-suspend.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-5/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [PASS][69] -> [INCOMPLETE][70] ([Intel XE#2049] / [Intel XE#2597]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible.html - shard-lnl: [PASS][71] -> [INCOMPLETE][72] ([Intel XE#2049]) +1 other test incomplete [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-1/igt at kms_flip@flip-vs-suspend-interruptible.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-7/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at c-dp4: - shard-dg2-set2: [PASS][73] -> [INCOMPLETE][74] ([Intel XE#2597]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible at c-dp4.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-436/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: [PASS][75] -> [INCOMPLETE][76] ([Intel XE#2597] / [Intel XE#2635]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-5/igt at kms_flip@flip-vs-suspend at d-hdmi-a3.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-5/igt at kms_flip@flip-vs-suspend at d-hdmi-a3.html * igt at kms_flip@plain-flip-ts-check at b-edp1: - shard-lnl: [PASS][77] -> [FAIL][78] ([Intel XE#886]) +2 other tests fail [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-7/igt at kms_flip@plain-flip-ts-check at b-edp1.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-8/igt at kms_flip@plain-flip-ts-check at b-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2293]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1401]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1401] / [Intel XE#1745]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-7/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#651]) +6 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-6/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2311]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#651]) +50 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-dg2-set2: [PASS][85] -> [SKIP][86] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [FAIL][87] ([Intel XE#2333]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2313]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#656]) +25 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#1158]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-435/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#653]) +38 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_hdr@brightness-with-hdr: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#3374] / [Intel XE#3544]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-6/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1503]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-1/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2925]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-434/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2763]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-436/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-436/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2763]) +8 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75 at pipe-a: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#2763]) +7 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-3/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75 at pipe-a.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#908]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-433/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@basic-rte: - shard-bmg: [PASS][100] -> [SKIP][101] ([Intel XE#2446]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_pm_rpm@basic-rte.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_pm_rpm@basic-rte.html - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2446]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_pm_rpm@basic-rte.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1439] / [Intel XE#3141]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-8/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#1489]) +15 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-434/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#2893]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-3/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#1122]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-434/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2850] / [Intel XE#929]) +19 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-436/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-basic: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2234] / [Intel XE#2850]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_psr@pr-basic.html * igt at kms_psr@pr-cursor-blt: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1406]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-7/igt at kms_psr@pr-cursor-blt.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([i915#2575]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#3414]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-435/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#3414] / [Intel XE#3904]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-3/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_scaling_modes@scaling-mode-none: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#2413] / [Intel XE#374]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-8/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#374]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-8/igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#1500]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][116] -> [FAIL][117] ([Intel XE#2159]) +1 other test fail [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-4/igt at kms_vrr@cmrr at pipe-a-edp-1.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-1/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#455]) +30 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-436/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1499]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-1/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#756]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-464/igt at kms_writeback@writeback-fb-id.html - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#756]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-3/igt at kms_writeback@writeback-fb-id.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: [PASS][122] -> [ABORT][123] ([Intel XE#2625]) +1 other test abort [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html * igt at xe_compute@ccs-mode-basic: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1447]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-2/igt at xe_compute@ccs-mode-basic.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-436/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1123]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at xe_copy_basic@mem-copy-linear-0x369.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#1126]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-463/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2905]) +14 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-433/igt at xe_eudebug@basic-close.html - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#2905]) +6 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-6/igt at xe_eudebug@basic-close.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#3889]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#3889]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-1/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: NOTRUN -> [TIMEOUT][132] ([Intel XE#1473]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-5/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_evict@evict-beng-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#688]) +5 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-3/igt at xe_evict@evict-beng-threads-large-multi-vm.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][134] -> [TIMEOUT][135] ([Intel XE#1473]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at xe_evict@evict-mixed-many-threads-small.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_exec_balancer@many-cm-parallel-userptr-rebind: - shard-bmg: [PASS][136] -> [SKIP][137] ([Intel XE#1130]) +16 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at xe_exec_balancer@many-cm-parallel-userptr-rebind.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at xe_exec_balancer@many-cm-parallel-userptr-rebind.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1392]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html * igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap: - shard-dg2-set2: [PASS][139] -> [SKIP][140] ([Intel XE#1392]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1392]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-8/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#288]) +34 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-433/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#1130]) +5 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/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: NOTRUN -> [SKIP][144] ([Intel XE#2360]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-463/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_gt_freq@freq_suspend: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#584]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-8/igt at xe_gt_freq@freq_suspend.html * igt at xe_live_ktest@xe_migrate: - shard-bmg: [PASS][146] -> [SKIP][147] ([Intel XE#1192]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at xe_live_ktest@xe_migrate.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-2/igt at xe_live_ktest@xe_migrate.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#2229]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-433/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#378]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-8/igt at xe_module_load@force-load.html * igt at xe_module_load@reload: - shard-bmg: [PASS][150] -> [FAIL][151] ([Intel XE#3546]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at xe_module_load@reload.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-1/igt at xe_module_load@reload.html * igt at xe_oa@oa-tlb-invalidate: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#2248]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-5/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#2541] / [Intel XE#3573]) +12 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-435/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1420] / [Intel XE#2838]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-8/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#979]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-464/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@write: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#1061]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-4/igt at xe_peer2peer@write.html * igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][157] ([Intel XE#1173]) +1 other test fail [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-434/igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#2284]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-1/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#579]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at xe_pm@vram-d3cold-threshold.html - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#579]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-1/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-oa-units: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#944]) +5 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-436/igt at xe_query@multigpu-query-oa-units.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#944]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-7/igt at xe_query@multigpu-query-topology-l3-bank-mask.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#3342]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-8/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@large-misaligned-binds-2097152: - shard-dg2-set2: [PASS][164] -> [SKIP][165] ([Intel XE#1130]) +9 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_vm@large-misaligned-binds-2097152.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at xe_vm@large-misaligned-binds-2097152.html * igt at xe_wedged@wedged-mode-toggle: - shard-dg2-set2: NOTRUN -> [ABORT][166] ([Intel XE#3075] / [Intel XE#3084]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-435/igt at xe_wedged@wedged-mode-toggle.html #### Possible fixes #### * igt at kms_addfb_basic@addfb25-modifier-no-flag: - shard-dg2-set2: [SKIP][167] ([Intel XE#2423] / [i915#2575]) -> [PASS][168] +8 other tests pass [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_addfb_basic@addfb25-modifier-no-flag.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_addfb_basic@addfb25-modifier-no-flag.html * igt at kms_big_fb@4-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][169] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][170] +1 other test pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_big_fb@4-tiled-32bpp-rotate-0.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-4/igt at kms_big_fb@4-tiled-32bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][171] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-5/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-bmg: [FAIL][173] -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-3/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs at pipe-a-dp-2: - shard-bmg: [FAIL][175] ([Intel XE#3847]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs at pipe-a-dp-2.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-3/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs at pipe-a-dp-2.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: [INCOMPLETE][177] ([Intel XE#3226]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-463/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [SKIP][179] ([Intel XE#2291]) -> [PASS][180] +2 other tests pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-3/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][181] ([Intel XE#877]) -> [PASS][182] +2 other tests pass [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-3/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: [FAIL][183] ([Intel XE#1475]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-7/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-8/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][185] ([Intel XE#3070]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_dp_linktrain_fallback@dp-fallback.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-8/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-dg2-set2: [ABORT][187] -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at kms_fbcon_fbt@fbc-suspend.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][189] ([Intel XE#2882]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][191] ([Intel XE#2316]) -> [PASS][192] +1 other test pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-8/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2: - shard-bmg: [FAIL][193] ([Intel XE#3820]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: - shard-dg2-set2: [FAIL][195] ([Intel XE#301]) -> [PASS][196] +2 other tests pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html * igt at kms_flip@wf_vblank-ts-check-interruptible: - shard-lnl: [FAIL][197] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-2/igt at kms_flip@wf_vblank-ts-check-interruptible.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-4/igt at kms_flip@wf_vblank-ts-check-interruptible.html * igt at kms_flip@wf_vblank-ts-check-interruptible at c-edp1: - shard-lnl: [FAIL][199] ([Intel XE#886]) -> [PASS][200] +2 other tests pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-2/igt at kms_flip@wf_vblank-ts-check-interruptible at c-edp1.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-4/igt at kms_flip@wf_vblank-ts-check-interruptible at c-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg2-set2: [SKIP][201] ([Intel XE#2136]) -> [PASS][202] +2 other tests pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-463/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][203] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][204] +1 other test pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][205] ([Intel XE#3012]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][207] ([Intel XE#718]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-lnl-1/igt at kms_pm_dc@dc5-dpms.html * igt at kms_sequence@get-busy: - shard-bmg: [SKIP][209] ([Intel XE#3007]) -> [PASS][210] +7 other tests pass [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_sequence@get-busy.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-4/igt at kms_sequence@get-busy.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-bmg: [SKIP][211] ([Intel XE#1435]) -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [ABORT][213] ([Intel XE#2625] / [Intel XE#4057]) -> [PASS][214] +1 other test pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-463/igt at kms_vblank@ts-continuation-suspend.html * igt at xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [FAIL][215] ([Intel XE#1600]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_evict@evict-beng-large-multi-vm-cm.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-463/igt at xe_evict@evict-beng-large-multi-vm-cm.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind: - shard-dg2-set2: [SKIP][217] ([Intel XE#1392]) -> [PASS][218] +3 other tests pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-434/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html * igt at xe_exec_sip@invalidinstr-disabled: - shard-dg2-set2: [SKIP][219] ([Intel XE#1130]) -> [PASS][220] +11 other tests pass [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_exec_sip@invalidinstr-disabled.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-433/igt at xe_exec_sip@invalidinstr-disabled.html * igt at xe_exec_threads@threads-bal-shared-vm-rebind: - shard-bmg: [SKIP][221] ([Intel XE#1130]) -> [PASS][222] +13 other tests pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_exec_threads@threads-bal-shared-vm-rebind.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-3/igt at xe_exec_threads@threads-bal-shared-vm-rebind.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [ABORT][223] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][224] +1 other test pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-434/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_pm@s3-basic-exec: - shard-dg2-set2: [ABORT][225] ([Intel XE#1358]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_pm@s3-basic-exec.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-433/igt at xe_pm@s3-basic-exec.html #### Warnings #### * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-bmg: [SKIP][227] ([Intel XE#2327]) -> [SKIP][228] ([Intel XE#2136] / [Intel XE#2231]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_big_fb@linear-16bpp-rotate-270.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][229] ([Intel XE#1124]) -> [SKIP][230] ([Intel XE#2136] / [Intel XE#2231]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_big_fb@y-tiled-64bpp-rotate-180.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_big_fb@y-tiled-64bpp-rotate-180.html - shard-bmg: [SKIP][231] ([Intel XE#1124]) -> [SKIP][232] ([Intel XE#2136] / [Intel XE#2231]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_big_fb@y-tiled-64bpp-rotate-180.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_big_fb@y-tiled-64bpp-rotate-180.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: [SKIP][233] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][234] ([Intel XE#1124]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html - shard-dg2-set2: [SKIP][235] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][236] ([Intel XE#1124]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-433/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][237] ([Intel XE#2887]) -> [SKIP][238] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html - shard-dg2-set2: [SKIP][239] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][240] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-bmg: [SKIP][241] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][242] ([Intel XE#2136] / [Intel XE#2231]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: [SKIP][243] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][244] ([Intel XE#3432]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html - shard-dg2-set2: [SKIP][245] ([Intel XE#2136]) -> [SKIP][246] ([Intel XE#455] / [Intel XE#787]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4: - shard-dg2-set2: [DMESG-WARN][247] ([Intel XE#1727] / [Intel XE#3113]) -> [INCOMPLETE][248] ([Intel XE#3124]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-464/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html * igt at kms_chamelium_frames@hdmi-crc-planes-random: - shard-bmg: [SKIP][249] ([Intel XE#2252]) -> [SKIP][250] ([Intel XE#3007]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_chamelium_frames@hdmi-crc-planes-random.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_chamelium_frames@hdmi-crc-planes-random.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: [SKIP][251] ([Intel XE#3007]) -> [SKIP][252] ([Intel XE#2252]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-storm.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-storm.html - shard-dg2-set2: [SKIP][253] ([Intel XE#2423] / [i915#2575]) -> [SKIP][254] ([Intel XE#373]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_chamelium_hpd@dp-hpd-storm.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-434/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: [SKIP][255] ([Intel XE#323]) -> [SKIP][256] ([i915#2575]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-bmg: [SKIP][257] ([Intel XE#2286]) -> [SKIP][258] ([Intel XE#3007]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_fbcon_fbt@fbc: - shard-bmg: [SKIP][259] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][260] ([Intel XE#1695]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_fbcon_fbt@fbc.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-6/igt at kms_fbcon_fbt@fbc.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][261] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][262] ([Intel XE#2293] / [Intel XE#2380]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][263] ([Intel XE#2311]) -> [SKIP][264] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][265] ([Intel XE#2312]) -> [SKIP][266] ([Intel XE#2311]) +7 other tests skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][267] ([Intel XE#2311]) -> [SKIP][268] ([Intel XE#2312]) +3 other tests skip [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: [SKIP][269] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][270] ([Intel XE#651]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html - shard-bmg: [SKIP][271] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][272] ([Intel XE#2311]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][273] ([Intel XE#2333]) -> [SKIP][274] ([Intel XE#2136] / [Intel XE#2231]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][275] ([Intel XE#2312]) -> [FAIL][276] ([Intel XE#2333]) +4 other tests fail [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][277] ([Intel XE#2333]) -> [SKIP][278] ([Intel XE#2312]) +4 other tests skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][279] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][280] ([Intel XE#2333]) +1 other test fail [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move: - shard-dg2-set2: [SKIP][281] ([Intel XE#651]) -> [SKIP][282] ([Intel XE#2136] / [Intel XE#2231]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][283] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][284] ([Intel XE#2312]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][285] ([Intel XE#2313]) -> [SKIP][286] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html - shard-dg2-set2: [SKIP][287] ([Intel XE#653]) -> [SKIP][288] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][289] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][290] ([Intel XE#2313]) +3 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@psr-2p-rte: - shard-bmg: [SKIP][291] ([Intel XE#2313]) -> [SKIP][292] ([Intel XE#2312]) +5 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-rte.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-rte.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][293] ([Intel XE#2312]) -> [SKIP][294] ([Intel XE#2313]) +7 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-dg2-set2: [SKIP][295] ([Intel XE#2136]) -> [SKIP][296] ([Intel XE#653]) +4 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][297] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][298] ([Intel XE#3544]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at kms_hdr@brightness-with-hdr.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][299] ([Intel XE#346]) -> [SKIP][300] ([Intel XE#2136] / [Intel XE#2231]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_joiner@invalid-modeset-big-joiner.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-bmg: [SKIP][301] ([Intel XE#3007]) -> [SKIP][302] ([Intel XE#2763]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][303] ([Intel XE#2136]) -> [SKIP][304] ([Intel XE#3309]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_pm_dc@dc5-retention-flops.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-435/igt at kms_pm_dc@dc5-retention-flops.html - shard-bmg: [SKIP][305] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][306] ([Intel XE#3309]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_pm_dc@dc5-retention-flops.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-1/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_psr@fbc-pr-primary-render: - shard-bmg: [SKIP][307] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][308] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_psr@fbc-pr-primary-render.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-2/igt at kms_psr@fbc-pr-primary-render.html - shard-dg2-set2: [SKIP][309] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][310] ([Intel XE#2850] / [Intel XE#929]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_psr@fbc-pr-primary-render.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-434/igt at kms_psr@fbc-pr-primary-render.html * igt at kms_psr@fbc-psr-suspend: - shard-bmg: [SKIP][311] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][312] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_psr@fbc-psr-suspend.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_psr@fbc-psr-suspend.html * igt at kms_psr@psr2-cursor-render: - shard-dg2-set2: [SKIP][313] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][314] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_psr@psr2-cursor-render.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_psr@psr2-cursor-render.html * igt at kms_psr@psr2-primary-page-flip: - shard-dg2-set2: [SKIP][315] ([Intel XE#2136]) -> [SKIP][316] ([Intel XE#2850] / [Intel XE#929]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_psr@psr2-primary-page-flip.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-436/igt at kms_psr@psr2-primary-page-flip.html * igt at kms_rotation_crc@bad-tiling: - shard-bmg: [SKIP][317] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][318] ([Intel XE#3007]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_rotation_crc@bad-tiling.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-rotation-270: - shard-dg2-set2: [SKIP][319] ([Intel XE#2423] / [i915#2575]) -> [SKIP][320] ([i915#2575]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_rotation_crc@primary-rotation-270.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][321] ([Intel XE#756]) -> [SKIP][322] ([Intel XE#3007]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_writeback@writeback-invalid-parameters.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at kms_writeback@writeback-invalid-parameters.html - shard-dg2-set2: [SKIP][323] ([Intel XE#756]) -> [SKIP][324] ([i915#2575]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_writeback@writeback-invalid-parameters.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at kms_writeback@writeback-invalid-parameters.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: [SKIP][325] ([Intel XE#1130]) -> [SKIP][326] ([Intel XE#2905]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_eudebug@basic-vm-access.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-6/igt at xe_eudebug@basic-vm-access.html - shard-dg2-set2: [SKIP][327] ([Intel XE#1130]) -> [SKIP][328] ([Intel XE#2905]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_eudebug@basic-vm-access.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-436/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-bmg: [SKIP][329] ([Intel XE#2905]) -> [SKIP][330] ([Intel XE#1130]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at xe_eudebug@basic-vm-access-parameters.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [TIMEOUT][331] ([Intel XE#1473]) -> [INCOMPLETE][332] ([Intel XE#1473]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at xe_evict@evict-beng-mixed-many-threads-small.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-6/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][333] ([Intel XE#1000]) -> [TIMEOUT][334] ([Intel XE#1473]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at xe_evict@evict-beng-threads-large.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-8/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-threads-large: - shard-bmg: [TIMEOUT][335] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][336] ([Intel XE#1000]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_evict@evict-mixed-threads-large.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-1/igt at xe_evict@evict-mixed-threads-large.html * igt at xe_evict@evict-threads-large: - shard-bmg: [INCOMPLETE][337] ([Intel XE#1473]) -> [FAIL][338] ([Intel XE#1000]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at xe_evict@evict-threads-large.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-8/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-once-null-defer-bind: - shard-bmg: [SKIP][339] ([Intel XE#1130]) -> [SKIP][340] ([Intel XE#2322]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_exec_basic@multigpu-once-null-defer-bind.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-8/igt at xe_exec_basic@multigpu-once-null-defer-bind.html * igt at xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch: - shard-dg2-set2: [SKIP][341] ([Intel XE#1130]) -> [SKIP][342] ([Intel XE#288]) +2 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-434/igt at xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch.html * igt at xe_exec_fault_mode@once-bindexecqueue-rebind: - shard-dg2-set2: [SKIP][343] ([Intel XE#288]) -> [SKIP][344] ([Intel XE#1130]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at xe_exec_fault_mode@once-bindexecqueue-rebind.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at xe_exec_fault_mode@once-bindexecqueue-rebind.html * igt at xe_query@multigpu-query-config: - shard-bmg: [SKIP][345] ([Intel XE#944]) -> [SKIP][346] ([Intel XE#1130]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_query@multigpu-query-config.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-bmg-7/igt at xe_query@multigpu-query-config.html - shard-dg2-set2: [SKIP][347] ([Intel XE#944]) -> [SKIP][348] ([Intel XE#1130]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_query@multigpu-query-config.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/shard-dg2-432/igt at xe_query@multigpu-query-config.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [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#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#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [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#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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [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#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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [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#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [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#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [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#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#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [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#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#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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [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#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820 [Intel XE#3847]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3847 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4057]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4057 [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#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#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#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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8190 -> IGTPW_12438 * Linux: xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db -> xe-2490-ac1e97c603501be90e530b0ce0eac45728869c85 IGTPW_12438: 2bc38cb53d6d70b56a7fbf1afeac4cae3e052604 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8190: db6e252e00bc44f90b678d547e93b3f02c02c6de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db: 1c464719f6d86a08c91e6ed5d64db83b166788db xe-2490-ac1e97c603501be90e530b0ce0eac45728869c85: ac1e97c603501be90e530b0ce0eac45728869c85 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12438/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kunal1.joshi at intel.com Wed Jan 15 15:15:07 2025 From: kunal1.joshi at intel.com (Kunal Joshi) Date: Wed, 15 Jan 2025 20:45:07 +0530 Subject: [PATCH] tests/chamelium/kms_chamelium_color: force connector reprobe after plugging ports Message-ID: <20250115151507.2023293-1-kunal1.joshi@intel.com> Force reprobe connector status after plugging to assure we always have DRM_MODE_CONNECTED status for the connector before proceding with the test. Fixes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2371 Signed-off-by: Kunal Joshi --- tests/chamelium/kms_chamelium_color.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/chamelium/kms_chamelium_color.c b/tests/chamelium/kms_chamelium_color.c index 5550cec22..7c88c022c 100644 --- a/tests/chamelium/kms_chamelium_color.c +++ b/tests/chamelium/kms_chamelium_color.c @@ -749,8 +749,13 @@ igt_main * discovered ports, just incase they are not plugged * we currently skip in test_setup */ - for( i = 0; i < data.port_count; i++) + for (i = 0; i < data.port_count; i++) { chamelium_plug(data.chamelium, data.ports[i]); + igt_assert_f(chamelium_reprobe_connector(&data.display, + data.chamelium, + data.ports[i]) == DRM_MODE_CONNECTED, + "Output not connected\n"); + } kmstest_set_vt_graphics_mode(); } -- 2.25.1 From kamil.konieczny at linux.intel.com Wed Jan 15 15:01:48 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Wed, 15 Jan 2025 16:01:48 +0100 Subject: [PATCH] tests/intel/gem_exec_balancer: Decrease required load in `full` test In-Reply-To: References: <20241217162302.u52qy7ji5zlfahm5@kamilkon-desk.igk.intel.com> Message-ID: <20250115150148.xuntqr2bbaznz2tv@kamilkon-desk.igk.intel.com> Hi, On 2024-12-17 at 19:08:16 +0100, Andi Shyti wrote: > Hi, > > this patch is wrongly formatted: > > - where is the versioning? (git format patch -v ). I think > this is v4. > - where is the changelog? (please after the '---' section). > > Please don't overlook at them next time. > > On Tue, Dec 17, 2024 at 05:23:02PM +0100, Kamil Konieczny wrote: > > Hi Sebastian, > > On 2024-12-17 at 15:06:41 +0000, Sebastian Brzezinka wrote: > > > Adjust the minimal load in the `full` test. It's a minor tolerance > > > issue expected 90% got 86.6%. > > > > > > Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13003 > > > > Remove empty line, with this > > Can you fix it before merging to avoid another resend? > > In any case: > > Reviewed-by: Andi Shyti > > Thanks, > Andi > Applied, thanks! Regards, Kamil > > Reviewed-by: Kamil Konieczny > > > > > > > > Signed-off-by: Sebastian Brzezinka > > > --- > > > tests/intel/gem_exec_balancer.c | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > diff --git a/tests/intel/gem_exec_balancer.c b/tests/intel/gem_exec_balancer.c > > > index c3f0c938b..46ea19a2a 100644 > > > --- a/tests/intel/gem_exec_balancer.c > > > +++ b/tests/intel/gem_exec_balancer.c > > > @@ -1815,7 +1815,7 @@ static void full(int i915, unsigned int flags) > > > > > > free(ci); > > > > > > - igt_assert_f(load > 0.90, > > > + igt_assert_f(load > 0.85, > > > "minimum load for %d x class:%d was found to be only %.1f%% busy\n", > > > count, class, load*100); > > > gem_quiescent_gpu(i915); > > > -- > > > 2.34.1 > > > From juhapekka.heikkila at gmail.com Wed Jan 15 15:03:14 2025 From: juhapekka.heikkila at gmail.com (=?UTF-8?Q?Juha=2DPekka_Heikkil=C3=A4?=) Date: Wed, 15 Jan 2025 17:03:14 +0200 Subject: =?UTF-8?Q?Re=3A_=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Initial_PTL_support_?= =?UTF-8?Q?=28rev6=29?= In-Reply-To: <20250115114147.myzcubzcp5inqlvh@kamilkon-desk.igk.intel.com> References: <20241218213654.2734573-1-clinton.a.taylor@intel.com> <173663061097.2602953.10099674755140442503@b555e5b46a47> <20250115114147.myzcubzcp5inqlvh@kamilkon-desk.igk.intel.com> Message-ID: I went through those newly reported kms regressions for Xe but I don't see them relating to these changes. On the patches there's added ptl chipset info and pat index handling which don't cause noise. Then those test changes are limited to named tests and there is just showing the usual noise from some of the tests. For kms stuff things look ok to my eye. /Juha-Pekka On Wed, Jan 15, 2025 at 1:42?PM Kamil Konieczny wrote: > > Hi igt-dev, > On 2025-01-11 at 21:23:30 -0000, Patchwork wrote: > > could anyone from KMS team confirm that below kms regressions > are not related? Thanks! > > Adding J-P and Jani to Cc. > Cc: Juha-pekka Heikkila > Cc: Jani Saarinen > > As for xe_mmap - imho this SKIP is not related to this series. > Tejas could you confirm? Thanks! > > Cc: Tejas Upadhyay > > Regards, > Kamil > > > == Series Details == > > > > Series: Initial PTL support (rev6) > > URL : https://patchwork.freedesktop.org/series/141325/ > > State : failure > > > > == Summary == > > > > CI Bug Log - changes from XEIGT_8183_full -> XEIGTPW_12418_full > > ==================================================== > > > > Summary > > ------- > > > > **FAILURE** > > > > Serious unknown changes coming with XEIGTPW_12418_full absolutely need to be > > verified manually. > > > > If you think the reported changes have nothing to do with the changes > > introduced in XEIGTPW_12418_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_12418_full: > > > > ### IGT changes ### > > > > #### Possible regressions #### > > > > * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-6: > > - shard-dg2-set2: [PASS][1] -> [FAIL][2] > > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-6.html > > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-436/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-6.html > > > > * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: > > - shard-dg2-set2: [PASS][3] -> [ABORT][4] > > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html > > [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html > > > > * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-2: > > - shard-dg2-set2: NOTRUN -> [ABORT][5] +1 other test abort > > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-2.html > > > > * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a2-dp2: > > - shard-dg2-set2: NOTRUN -> [FAIL][6] +3 other tests fail > > [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a2-dp2.html > > > > * igt at kms_plane_lowres@tiling-4 at pipe-d-hdmi-a-3: > > - shard-bmg: [PASS][7] -> [INCOMPLETE][8] +3 other tests incomplete > > [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_plane_lowres@tiling-4 at pipe-d-hdmi-a-3.html > > [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-8/igt at kms_plane_lowres@tiling-4 at pipe-d-hdmi-a-3.html > > > > * igt at kms_psr@psr2-suspend at edp-1: > > - shard-lnl: [PASS][9] -> [FAIL][10] +1 other test fail > > [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-2/igt at kms_psr@psr2-suspend at edp-1.html > > [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-2/igt at kms_psr@psr2-suspend at edp-1.html > > > > * igt at xe_mmap@pci-membarrier: > > - shard-dg2-set2: NOTRUN -> [SKIP][11] > > [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at xe_mmap@pci-membarrier.html > > > > > > Known issues > > ------------ > > > > Here are the changes found in XEIGTPW_12418_full that come from known issues: > > > > ### IGT changes ### > > > > #### Issues hit #### > > ...cut... > > > [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 > > [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 > > > > > > Build changes > > ------------- > > > > * IGT: IGT_8183 -> IGTPW_12418 > > > > IGTPW_12418: 23052ace3ac04fd0203b573736255ba4919c63d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > xe-2461-14e0c4a8247c9514dc57b2231602fb6d9455802b: 14e0c4a8247c9514dc57b2231602fb6d9455802b > > > > == Logs == > > > > For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/index.html From matthew.auld at intel.com Wed Jan 15 15:11:32 2025 From: matthew.auld at intel.com (Matthew Auld) Date: Wed, 15 Jan 2025 15:11:32 +0000 Subject: =?UTF-8?Q?Re=3A_=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Initial_PTL?= =?UTF-8?Q?_support_=28rev6=29?= In-Reply-To: <20250115114147.myzcubzcp5inqlvh@kamilkon-desk.igk.intel.com> References: <20241218213654.2734573-1-clinton.a.taylor@intel.com> <173663061097.2602953.10099674755140442503@b555e5b46a47> <20250115114147.myzcubzcp5inqlvh@kamilkon-desk.igk.intel.com> Message-ID: On 15/01/2025 11:41, Kamil Konieczny wrote: > Hi igt-dev, > On 2025-01-11 at 21:23:30 -0000, Patchwork wrote: > > could anyone from KMS team confirm that below kms regressions > are not related? Thanks! > > Adding J-P and Jani to Cc. > Cc: Juha-pekka Heikkila > Cc: Jani Saarinen > > As for xe_mmap - imho this SKIP is not related to this series. > Tejas could you confirm? Thanks! This is currently expected until KMD side lands. Once it lands it should only skip on igpu. So not related to this series. > > Cc: Tejas Upadhyay > > Regards, > Kamil > >> == Series Details == >> >> Series: Initial PTL support (rev6) >> URL : https://patchwork.freedesktop.org/series/141325/ >> State : failure >> >> == Summary == >> >> CI Bug Log - changes from XEIGT_8183_full -> XEIGTPW_12418_full >> ==================================================== >> >> Summary >> ------- >> >> **FAILURE** >> >> Serious unknown changes coming with XEIGTPW_12418_full absolutely need to be >> verified manually. >> >> If you think the reported changes have nothing to do with the changes >> introduced in XEIGTPW_12418_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_12418_full: >> >> ### IGT changes ### >> >> #### Possible regressions #### >> >> * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-6: >> - shard-dg2-set2: [PASS][1] -> [FAIL][2] >> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-6.html >> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-436/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-6.html >> >> * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: >> - shard-dg2-set2: [PASS][3] -> [ABORT][4] >> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html >> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html >> >> * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-2: >> - shard-dg2-set2: NOTRUN -> [ABORT][5] +1 other test abort >> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-2.html >> >> * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a2-dp2: >> - shard-dg2-set2: NOTRUN -> [FAIL][6] +3 other tests fail >> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-432/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a2-dp2.html >> >> * igt at kms_plane_lowres@tiling-4 at pipe-d-hdmi-a-3: >> - shard-bmg: [PASS][7] -> [INCOMPLETE][8] +3 other tests incomplete >> [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-bmg-4/igt at kms_plane_lowres@tiling-4 at pipe-d-hdmi-a-3.html >> [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-bmg-8/igt at kms_plane_lowres@tiling-4 at pipe-d-hdmi-a-3.html >> >> * igt at kms_psr@psr2-suspend at edp-1: >> - shard-lnl: [PASS][9] -> [FAIL][10] +1 other test fail >> [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8183/shard-lnl-2/igt at kms_psr@psr2-suspend at edp-1.html >> [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-lnl-2/igt at kms_psr@psr2-suspend at edp-1.html >> >> * igt at xe_mmap@pci-membarrier: >> - shard-dg2-set2: NOTRUN -> [SKIP][11] >> [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/shard-dg2-433/igt at xe_mmap@pci-membarrier.html >> >> >> Known issues >> ------------ >> >> Here are the changes found in XEIGTPW_12418_full that come from known issues: >> >> ### IGT changes ### >> >> #### Issues hit #### > > ...cut... > >> [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 >> [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 >> >> >> Build changes >> ------------- >> >> * IGT: IGT_8183 -> IGTPW_12418 >> >> IGTPW_12418: 23052ace3ac04fd0203b573736255ba4919c63d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git >> IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git >> xe-2461-14e0c4a8247c9514dc57b2231602fb6d9455802b: 14e0c4a8247c9514dc57b2231602fb6d9455802b >> >> == Logs == >> >> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12418/index.html From kamil.konieczny at linux.intel.com Wed Jan 15 15:16:04 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Wed, 15 Jan 2025 16:16:04 +0100 Subject: =?utf-8?B?4pyXIGk5MTUuQ0kuQkFU?= =?utf-8?Q?=3A?= failure for Initial PTL support (rev6) In-Reply-To: <173643279483.1645445.6728014542556156152@b555e5b46a47> References: <20241218213654.2734573-1-clinton.a.taylor@intel.com> <173643279483.1645445.6728014542556156152@b555e5b46a47> Message-ID: <20250115151604.uddp3le3gtmfzoic@kamilkon-desk.igk.intel.com> Hi igt-dev, On 2025-01-09 at 14:26:34 -0000, Patchwork wrote: below regressions are unrelated, please re-report and respin i915 tests. Regards, Kamil > == Series Details == > > Series: Initial PTL support (rev6) > URL : https://patchwork.freedesktop.org/series/141325/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_8183 -> IGTPW_12418 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12418 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12418, 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_12418/index.html > > Participating hosts (38 -> 37) > ------------------------------ > > Missing (1): fi-snb-2520m > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12418: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at core_hotunplug@unbind-rebind: > - fi-cfl-guc: [PASS][1] -> [ABORT][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/fi-cfl-guc/igt at core_hotunplug@unbind-rebind.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/fi-cfl-guc/igt at core_hotunplug@unbind-rebind.html > > * igt at i915_selftest@live at gt_heartbeat: > - bat-arlh-2: [PASS][3] -> [INCOMPLETE][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-arlh-2/igt at i915_selftest@live at gt_heartbeat.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-arlh-2/igt at i915_selftest@live at gt_heartbeat.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_12418 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt at i915_selftest@live: > - bat-arlh-2: [PASS][5] -> [INCOMPLETE][6] ([i915#13050]) > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-arlh-2/igt at i915_selftest@live.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-arlh-2/igt at i915_selftest@live.html > > * igt at i915_selftest@live at workarounds: > - 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_8183/bat-arls-5/igt at i915_selftest@live at workarounds.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-arls-5/igt at i915_selftest@live at workarounds.html > > * igt at runner@aborted: > - fi-pnv-d510: NOTRUN -> [FAIL][9] ([i915#13350]) > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/fi-pnv-d510/igt at runner@aborted.html > > > #### Possible fixes #### > > * igt at i915_selftest@live at workarounds: > - {bat-mtlp-9}: [DMESG-FAIL][10] ([i915#13393]) -> [PASS][11] +1 other test pass > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-mtlp-9/igt at i915_selftest@live at workarounds.html > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-mtlp-9/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#13050]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13050 > [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_8183 -> IGTPW_12418 > > CI-20190529: 20190529 > CI_DRM_15929: 14e0c4a8247c9514dc57b2231602fb6d9455802b @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_12418: 23052ace3ac04fd0203b573736255ba4919c63d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/index.html From patchwork at emeril.freedesktop.org Wed Jan 15 15:28:08 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 15:28:08 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel-ci=3A_Fix_a_?= =?utf-8?q?syntax_err_in_xe=2Eblocklist=2Etxt?= In-Reply-To: <20250114173523.3267049-1-oak.zeng@intel.com> References: <20250114173523.3267049-1-oak.zeng@intel.com> Message-ID: <173695488863.3988582.6235434483664173814@b555e5b46a47> == Series Details == Series: tests/intel-ci: Fix a syntax err in xe.blocklist.txt URL : https://patchwork.freedesktop.org/series/143518/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15955_full -> IGTPW_12437_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12437_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12437_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_12437/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12437_full: ### IGT changes ### #### Possible regressions #### * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-2/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][2] -> [ABORT][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-rkl-2/igt at i915_module_load@reload-with-fault-injection.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-2/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_selftest@live at execlists: - shard-glk: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk1/igt at i915_selftest@live at execlists.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk2/igt at i915_selftest@live at execlists.html * igt at kms_flip@plain-flip-ts-check-interruptible at a-hdmi-a1: - shard-tglu-1: NOTRUN -> [FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_flip@plain-flip-ts-check-interruptible at a-hdmi-a1.html Known issues ------------ Here are the changes found in IGTPW_12437_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-13/igt at api_intel_bb@blit-reloc-keep-cache.html * igt at api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-8/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at debugfs_test@basic-hwmon: - shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#9318]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at debugfs_test@basic-hwmon.html * igt at device_reset@unbind-cold-reset-rebind: - shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +23 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-11/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at drm_fdinfo@virtual-busy-all: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +7 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/igt at drm_fdinfo@virtual-busy-all.html * igt at gem_caching@writes: - shard-rkl: [PASS][13] -> [DMESG-WARN][14] ([i915#12917] / [i915#12964]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-rkl-3/igt at gem_caching@writes.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-1/igt at gem_caching@writes.html * igt at gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-13/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#13008]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-4/igt at gem_ccs@large-ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][17] ([i915#13008]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-14/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-5/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][19] -> [INCOMPLETE][20] ([i915#12392] / [i915#7297]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-dg2-5/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-5/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html * igt at gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8562]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-4/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at gem_ctx_persistence@heartbeat-stop.html - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-3/igt at gem_ctx_persistence@heartbeat-stop.html - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-10/igt at gem_ctx_persistence@heartbeat-stop.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +7 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-snb1/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-5/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at gem_ctx_sseu@invalid-args.html * igt at gem_eio@hibernate: - shard-tglu: NOTRUN -> [ABORT][28] ([i915#10030] / [i915#7975] / [i915#8213]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-10/igt at gem_eio@hibernate.html - shard-dg2: NOTRUN -> [ABORT][29] ([i915#10030] / [i915#7975] / [i915#8213]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-3/igt at gem_eio@hibernate.html * igt at gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4771]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-14/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-1/igt at gem_exec_balancer@bonded-false-hang.html * igt at gem_exec_balancer@full-late-pulse: - shard-dg2: NOTRUN -> [FAIL][32] ([i915#13364]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-2/igt at gem_exec_balancer@full-late-pulse.html - shard-dg1: [PASS][33] -> [FAIL][34] ([i915#13364]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-dg1-14/igt at gem_exec_balancer@full-late-pulse.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-18/igt at gem_exec_balancer@full-late-pulse.html * igt at gem_exec_balancer@full-pulse: - shard-mtlp: [PASS][35] -> [FAIL][36] ([i915#13364]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-mtlp-1/igt at gem_exec_balancer@full-pulse.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-7/igt at gem_exec_balancer@full-pulse.html * igt at gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#4525]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-6/igt at gem_exec_balancer@parallel-keep-in-fence.html * igt at gem_exec_balancer@parallel-ordering: - shard-tglu-1: NOTRUN -> [SKIP][38] ([i915#4525]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at gem_exec_balancer@parallel-ordering.html * igt at gem_exec_balancer@sliced: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4812]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-6/igt at gem_exec_balancer@sliced.html * igt at gem_exec_big@single: - shard-tglu: [PASS][40] -> [ABORT][41] ([i915#11713]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-tglu-5/igt at gem_exec_big@single.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-6/igt at gem_exec_big@single.html * igt at gem_exec_capture@capture-invisible: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#6334]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture-recoverable: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#6344]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-10/igt at gem_exec_capture@capture-recoverable.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][44] ([i915#11965]) +2 other tests fail [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4812]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/igt at gem_exec_fence@submit.html * igt at gem_exec_flush@basic-batch-kernel-default-uc: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-11/igt at gem_exec_flush@basic-batch-kernel-default-uc.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-14/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +6 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at gem_exec_reloc@basic-gtt.html - shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-5/igt at gem_exec_reloc@basic-gtt.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +14 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-13/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_schedule@preempt-queue-contexts: - shard-rkl: [PASS][51] -> [DMESG-WARN][52] ([i915#12964]) +30 other tests dmesg-warn [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-rkl-4/igt at gem_exec_schedule@preempt-queue-contexts.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-2/igt at gem_exec_schedule@preempt-queue-contexts.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-6/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-8/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: [PASS][55] -> [ABORT][56] ([i915#7975] / [i915#8213]) +1 other test abort [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-dg2-11/igt at gem_exec_suspend@basic-s4-devices.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-1/igt at gem_exec_suspend@basic-s4-devices.html - shard-rkl: NOTRUN -> [ABORT][57] ([i915#7975] / [i915#8213]) +1 other test abort [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-5/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fence_thrash@bo-copy: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4860]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-7/igt at gem_fence_thrash@bo-copy.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4860]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-5/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#2190]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-7/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4613]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-5/igt at gem_lmem_swapping@basic.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#12193]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4565]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/igt at gem_lmem_swapping@heavy-verify-multi-ccs at lmem0.html * igt at gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4613]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-5/igt at gem_lmem_swapping@heavy-verify-random.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-glk: NOTRUN -> [SKIP][66] ([i915#4613]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk8/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: [PASS][67] -> [TIMEOUT][68] ([i915#5493]) +1 other test timeout [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-dg2-11/igt at gem_lmem_swapping@smem-oom at lmem0.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-2/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#4613]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-9/igt at gem_lmem_swapping@verify.html * igt at gem_madvise@dontneed-before-exec: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3282]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-10/igt at gem_madvise@dontneed-before-exec.html * igt at gem_mmap_wc@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4083]) +5 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-4/igt at gem_mmap_wc@pf-nonblock.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4083]) +5 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-18/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4083]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-3/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#3282]) +6 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-18/igt at gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-2/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][76] ([i915#2658]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-snb1/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pwrite_snooped: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3282]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-3/igt at gem_pwrite_snooped.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#13398]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4270]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-3/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: NOTRUN -> [TIMEOUT][80] ([i915#12917] / [i915#12964]) +2 other tests timeout [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-2/igt at gem_pxp@reject-modify-context-protection-off-1.html * igt at gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt at gem_render_copy@linear-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#5190] / [i915#8428]) +5 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-11/igt at gem_render_copy@linear-to-vebox-yf-tiled.html * igt at gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#8428]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-8/igt at gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#8411]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/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][85] ([i915#4079]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_set_tiling_vs_gtt: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4079]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at gem_set_tiling_vs_gtt.html * igt at gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3282]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-4/igt at gem_set_tiling_vs_pwrite.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#3297]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#3323]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-2/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-11/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3282] / [i915#3297]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#4880]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-2/igt at gem_userptr_blits@map-fixed-invalidate.html - shard-dg1: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4880]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-18/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@readonly-pwrite-unsync: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#3281] / [i915#3297]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-4/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@unsync-overlap: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#3297]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-7/igt at gem_userptr_blits@unsync-overlap.html * igt at gem_workarounds@suspend-resume: - shard-glk: [PASS][97] -> [INCOMPLETE][98] ([i915#13356]) +1 other test incomplete [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk8/igt at gem_workarounds@suspend-resume.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk8/igt at gem_workarounds@suspend-resume.html * igt at gen9_exec_parse@allowed-single: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#2856]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-11/igt at gen9_exec_parse@allowed-single.html * igt at gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-6/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#2527]) +6 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#2527]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-2/igt at gen9_exec_parse@bb-start-out.html - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#2527] / [i915#2856]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at gen9_exec_parse@bb-start-out.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4881]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-2/igt at i915_fb_tiling.html * igt at i915_module_load@load: - shard-glk: ([PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127]) -> ([PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [DMESG-WARN][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151]) ([i915#118]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk1/igt at i915_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk2/igt at i915_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk9/igt at i915_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk9/igt at i915_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk2/igt at i915_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk8/igt at i915_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk8/igt at i915_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk8/igt at i915_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk2/igt at i915_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk8/igt at i915_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk7/igt at i915_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk3/igt at i915_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk7/igt at i915_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk3/igt at i915_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk7/igt at i915_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk6/igt at i915_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk3/igt at i915_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk6/igt at i915_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk6/igt at i915_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk4/igt at i915_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk5/igt at i915_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk5/igt at i915_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk5/igt at i915_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk5/igt at i915_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk9/igt at i915_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk8/igt at i915_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk9/igt at i915_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk5/igt at i915_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk8/igt at i915_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk9/igt at i915_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk5/igt at i915_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk4/igt at i915_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk4/igt at i915_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk8/igt at i915_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk1/igt at i915_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk1/igt at i915_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk1/igt at i915_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk7/igt at i915_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk7/igt at i915_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk2/igt at i915_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk2/igt at i915_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk3/igt at i915_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk7/igt at i915_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk6/igt at i915_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk2/igt at i915_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk3/igt at i915_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk2/igt at i915_module_load@load.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [ABORT][152] ([i915#9820]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-8/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#8399]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-9/igt at i915_pm_freq_api@freq-basic-api.html * igt at i915_pm_rpm@gem-evict-pwrite: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#4077]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-7/igt at i915_pm_rpm@gem-evict-pwrite.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#11681] / [i915#6621]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-14/igt at i915_pm_rps@basic-api.html * igt at i915_power@sanity: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#7984]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-7/igt at i915_power@sanity.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#6188]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-1/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_selftest@live: - shard-glk: [PASS][158] -> [INCOMPLETE][159] ([i915#1982]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk1/igt at i915_selftest@live.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk2/igt at i915_selftest@live.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][160] ([i915#4817]) +1 other test incomplete [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk5/igt at i915_suspend@forcewake.html * igt at intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#7707]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#4212]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-4/igt at kms_addfb_basic@addfb25-x-tiled-legacy.html * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#4212]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-14/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#4215] / [i915#5190]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-11/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][165] ([i915#12761]) +1 other test incomplete [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk1/igt at kms_async_flips@async-flip-suspend-resume.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][166] ([i915#8709]) +7 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/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@async-flip-with-page-flip-events at pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#8709]) +7 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/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@async-flip-with-page-flip-events at pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#8709]) +11 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-3-4-mc-ccs.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#9531]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@modeset-transition: - shard-glk: [PASS][170] -> [FAIL][171] ([i915#12238]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk7/igt at kms_atomic_transition@modeset-transition.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk8/igt at kms_atomic_transition@modeset-transition.html * igt at kms_atomic_transition@modeset-transition at 2x-outputs: - shard-glk: [PASS][172] -> [FAIL][173] ([i915#11859]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk7/igt at kms_atomic_transition@modeset-transition at 2x-outputs.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk8/igt at kms_atomic_transition@modeset-transition at 2x-outputs.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#1769] / [i915#3555]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-4/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#5286]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-2/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#5286]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_big_fb@4-tiled-8bpp-rotate-180.html * igt at kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#5286]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-4/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#4538] / [i915#5286]) +7 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/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-180-hflip: - shard-mtlp: [PASS][179] -> [FAIL][180] ([i915#5138]) +1 other test fail [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-mtlp-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-2/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#3638]) +5 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/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-dg2: NOTRUN -> [SKIP][182] ([i915#4538] / [i915#5190]) +14 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-5/igt at kms_big_fb@y-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#3638]) +3 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-1/igt at kms_big_fb@y-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#5190]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-mtlp: NOTRUN -> [SKIP][185] +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-8/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#4538]) +3 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-13/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#6187]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-1/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_ccs@bad-aux-stride-yf-tiled-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#6095]) +9 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-8/igt at kms_ccs@bad-aux-stride-yf-tiled-ccs at pipe-c-edp-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs at pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#6095]) +163 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-13/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs at pipe-b-hdmi-a-3.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#6095]) +34 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-c-hdmi-a-1.html * igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#10307] / [i915#6095]) +99 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-1/igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#6095]) +84 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/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-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#12805]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-18/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#6095]) +8 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-3.html - shard-dg1: NOTRUN -> [SKIP][195] ([i915#4423] / [i915#6095]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#12313]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#12313]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-10/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-cc at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#6095]) +49 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-8/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@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#12313]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-10/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#12313]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-1/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-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/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-glk: NOTRUN -> [SKIP][202] +358 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk2/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3742]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_cdclk@mode-transition-all-outputs.html - shard-dg2: NOTRUN -> [SKIP][204] ([i915#11616] / [i915#7213]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-8/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][205] +47 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-13/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][206] +8 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-8/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#11151] / [i915#7828]) +10 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#11151] / [i915#7828]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-1/igt at kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#11151] / [i915#7828]) +3 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_chamelium_hpd@vga-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#11151] / [i915#7828]) +7 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/igt at kms_chamelium_hpd@vga-hpd-fast.html * igt at kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#11151] / [i915#7828]) +3 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-6/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html - shard-tglu: NOTRUN -> [SKIP][212] ([i915#11151] / [i915#7828]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-7/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt at kms_color@ctm-negative: - shard-dg1: [PASS][213] -> [DMESG-WARN][214] ([i915#4423]) +1 other test dmesg-warn [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-dg1-18/igt at kms_color@ctm-negative.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-13/igt at kms_color@ctm-negative.html * igt at kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-6/igt at kms_content_protection@atomic.html - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#6944] / [i915#9424]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-2/igt at kms_content_protection@atomic.html * igt at kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#7118] / [i915#9424]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-11/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-type-0: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#3116] / [i915#3299]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#9424]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-1/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][220] ([i915#7173]) +2 other tests timeout [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-10/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3555]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-4/igt at kms_cursor_crc@cursor-offscreen-32x10.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#3555]) +9 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-18/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#3555]) +4 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-1/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#13049]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#13049]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-2/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#13049]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-3/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#13049]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-6/igt at kms_cursor_crc@cursor-random-512x512.html - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#13049]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-2/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#3555]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/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][230] ([i915#13049]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-18/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_edge_walk@64x64-top-edge: - shard-rkl: NOTRUN -> [DMESG-WARN][231] ([i915#12917] / [i915#12964]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-2/igt at kms_cursor_edge_walk@64x64-top-edge.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#13046] / [i915#5354]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-11/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#9809]) +2 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-4/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][234] -> [FAIL][235] ([i915#2346]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk2/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk3/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: NOTRUN -> [FAIL][236] ([i915#2346]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-snb2/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#4103] / [i915#4213]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-13/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-tglu: NOTRUN -> [SKIP][238] ([i915#4103]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-9/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#4103]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#9723]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-6/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][241] ([i915#9723]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#1769] / [i915#3555] / [i915#3804]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-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-1: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#3804]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-7/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1.html - shard-tglu: NOTRUN -> [SKIP][244] ([i915#3804]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-5/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-tglu-1: NOTRUN -> [SKIP][245] ([i915#12402]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#8812]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#8812]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#3840]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-7/igt at kms_dsc@dsc-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#3840]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-2/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#3840]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-2/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@psr: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#3469]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_fbcon_fbt@psr.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#9934]) +6 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-flip-vs-suspend: - shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#3637]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_flip@2x-flip-vs-suspend.html * igt at kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#9934]) +6 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-5/igt at kms_flip@2x-modeset-vs-vblank-race.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#3637]) +4 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-7/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-rkl: NOTRUN -> [SKIP][256] ([i915#9934]) +4 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-5/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: NOTRUN -> [FAIL][257] ([i915#11989]) +1 other test fail [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-snb7/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#3637]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-5/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@basic-flip-vs-wf_vblank: - shard-tglu: [PASS][259] -> [FAIL][260] ([i915#11989]) +1 other test fail [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-tglu-10/igt at kms_flip@basic-flip-vs-wf_vblank.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-2/igt at kms_flip@basic-flip-vs-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-rkl: NOTRUN -> [DMESG-WARN][261] ([i915#12964]) +5 other tests dmesg-warn [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-4/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-suspend: - shard-rkl: [PASS][262] -> [DMESG-FAIL][263] ([i915#12964]) +1 other test dmesg-fail [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-rkl-5/igt at kms_flip@flip-vs-suspend.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-2/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][264] ([i915#12745] / [i915#4839]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk9/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][265] ([i915#12745]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk9/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-FAIL][266] ([i915#12964]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-2/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check: - shard-rkl: [PASS][267] -> [FAIL][268] ([i915#11989]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-rkl-3/igt at kms_flip@plain-flip-ts-check.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-7/igt at kms_flip@plain-flip-ts-check.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-snb: [PASS][269] -> [FAIL][270] ([i915#11989]) +4 other tests fail [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-snb4/igt at kms_flip@plain-flip-ts-check-interruptible.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-snb5/igt at kms_flip@plain-flip-ts-check-interruptible.html - shard-mtlp: [PASS][271] -> [FAIL][272] ([i915#11989]) +1 other test fail [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-mtlp-7/igt at kms_flip@plain-flip-ts-check-interruptible.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-7/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip@plain-flip-ts-check-interruptible at b-hdmi-a1: - shard-tglu-1: NOTRUN -> [FAIL][273] ([i915#11989]) +3 other tests fail [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_flip@plain-flip-ts-check-interruptible at b-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check at a-hdmi-a1: - shard-rkl: NOTRUN -> [FAIL][274] ([i915#11989]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-7/igt at kms_flip@plain-flip-ts-check at a-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#2672] / [i915#3555]) +5 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-4/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#2672]) +5 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-2/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-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#2672]) +5 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-1/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#2587] / [i915#2672] / [i915#3555]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][281] ([i915#2587] / [i915#2672] / [i915#3555]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/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][282] ([i915#2587] / [i915#2672]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/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-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#2672] / [i915#3555]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-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-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#2587] / [i915#2672]) +3 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/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-yftile-to-32bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#2672] / [i915#3555]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/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-tglu: NOTRUN -> [SKIP][286] ([i915#2587] / [i915#2672]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-8/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-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#2672] / [i915#3555]) +5 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-2/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [FAIL][288] ([i915#6880]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][289] +52 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-3/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#5354]) +32 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-snb: [PASS][291] -> [SKIP][292] +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-snb4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-snb1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#1825]) +25 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2: [PASS][294] -> [FAIL][295] ([i915#6880]) +2 other tests fail [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][296] ([i915#10056] / [i915#13353]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk9/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#3458]) +15 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/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-rkl: NOTRUN -> [SKIP][298] +12 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#1825]) +4 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#8708]) +22 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#3023]) +15 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-5/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#9766]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][303] ([i915#9766]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-8/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][304] ([i915#3458]) +16 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][305] +416 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-snb2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#8708]) +22 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#8708]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][308] +36 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#3555] / [i915#8228]) +3 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-13/igt at kms_hdr@bpc-switch-dpms.html - shard-tglu: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#8228]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-7/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@bpc-switch-suspend: - shard-dg2: [PASS][311] -> [SKIP][312] ([i915#3555] / [i915#8228]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-dg2-10/igt at kms_hdr@bpc-switch-suspend.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-4/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@invalid-hdr: - shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#3555] / [i915#8228]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#3555] / [i915#8228]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][315] ([i915#3555] / [i915#8228]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-5/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-dpms: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#3555] / [i915#8228]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-7/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#10656]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-10/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][318] ([i915#12394]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-13/igt at kms_joiner@basic-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][319] ([i915#12394]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-3/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#10656]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-13/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#12388]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-1/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#12339]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-4/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_legacy_colorkey@basic: - shard-dg1: NOTRUN -> [DMESG-WARN][323] ([i915#4423]) +1 other test dmesg-warn [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at kms_legacy_colorkey@basic.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#4816]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-1/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][325] ([i915#6301]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-3/igt at kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][326] ([i915#6301]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-13/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][327] ([i915#12756] / [i915#13409] / [i915#13476]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk3/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][328] ([i915#13409] / [i915#13476]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk3/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][329] ([i915#10647] / [i915#12169]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk1/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][330] ([i915#10647]) +1 other test fail [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk1/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#8806]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#6953]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-2/igt at kms_plane_scaling@intel-max-src-size.html - shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#6953]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg1: NOTRUN -> [SKIP][334] ([i915#12247]) +27 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-14/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#12247]) +18 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/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-downscale-factor-0-25-with-pixel-format at pipe-d: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#12247]) +11 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-11/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#12247] / [i915#9423]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#12247]) +4 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/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][339] ([i915#12247] / [i915#6953]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-7/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][340] ([i915#12247] / [i915#6953] / [i915#9423]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-4/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][341] ([i915#12247] / [i915#6953]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-18/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#12247] / [i915#6953]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-3/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-b: - shard-mtlp: NOTRUN -> [SKIP][343] ([i915#12247]) +8 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-3/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#12247] / [i915#6953]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-5/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-a: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#12247]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-5/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-a.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][346] ([i915#12247] / [i915#3555]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-18/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#5354]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-7/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][348] ([i915#9685]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-11/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#3828]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-10/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#5978]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-3/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][351] -> [SKIP][352] ([i915#4281]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-tglu-2/igt at kms_pm_dc@dc9-dpms.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-9/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#9519]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-1/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: NOTRUN -> [SKIP][354] ([i915#9519]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][355] -> [SKIP][356] ([i915#9519]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-rkl-5/igt at kms_pm_rpm@dpms-non-lpsp.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-7/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#9519]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-1/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][358] ([i915#12916]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-4/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@pm-caching: - shard-dg1: NOTRUN -> [SKIP][359] ([i915#4077]) +9 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/igt at kms_pm_rpm@pm-caching.html * igt at kms_pm_rpm@pm-tiling: - shard-dg2: NOTRUN -> [SKIP][360] ([i915#4077]) +8 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-10/igt at kms_pm_rpm@pm-tiling.html * igt at kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#6524]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-4/igt at kms_prime@basic-crc-hybrid.html - shard-dg1: NOTRUN -> [SKIP][362] ([i915#6524]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-13/igt at kms_prime@basic-crc-hybrid.html * igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][363] ([i915#11520]) +6 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-3/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-snb: NOTRUN -> [SKIP][364] ([i915#11520]) +9 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-snb5/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-tglu-1: NOTRUN -> [SKIP][365] ([i915#11520]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][366] ([i915#11520]) +12 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/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 at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][367] ([i915#9808]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-4/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][368] ([i915#11520]) +2 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-2/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-mtlp: NOTRUN -> [SKIP][369] ([i915#12316]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-3/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][370] ([i915#11520]) +7 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk8/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][371] ([i915#11520]) +8 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#9683]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at kms_psr2_su@page_flip-p010.html - shard-dg1: NOTRUN -> [SKIP][373] ([i915#9683]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at kms_psr2_su@page_flip-p010.html - shard-tglu: NOTRUN -> [SKIP][374] ([i915#9683]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-2/igt at kms_psr2_su@page_flip-p010.html - shard-mtlp: NOTRUN -> [SKIP][375] ([i915#4348]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-6/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-cursor-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][376] ([i915#9732]) +8 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_psr@fbc-pr-cursor-mmap-cpu.html * igt at kms_psr@fbc-psr-cursor-mmap-gtt at edp-1: - shard-mtlp: NOTRUN -> [SKIP][377] ([i915#9688]) +2 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-6/igt at kms_psr@fbc-psr-cursor-mmap-gtt at edp-1.html * igt at kms_psr@fbc-psr-primary-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][378] ([i915#1072] / [i915#9732]) +15 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-1/igt at kms_psr@fbc-psr-primary-mmap-gtt.html * igt at kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][379] ([i915#1072] / [i915#9732]) +23 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt at kms_psr@pr-basic: - shard-tglu: NOTRUN -> [SKIP][380] ([i915#9732]) +10 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-4/igt at kms_psr@pr-basic.html * igt at kms_psr@psr-sprite-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][381] ([i915#1072] / [i915#4423] / [i915#9732]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-13/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][382] ([i915#1072] / [i915#9732]) +20 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-5/igt at kms_psr@psr2-primary-mmap-gtt.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][383] ([i915#9685]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-7/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][384] ([i915#12755]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][385] ([i915#5289]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/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][386] ([i915#5289]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-1/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][387] ([i915#12755] / [i915#5190]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-11/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu: NOTRUN -> [SKIP][388] ([i915#5289]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-mtlp: NOTRUN -> [SKIP][389] ([i915#12755]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][390] ([i915#3555]) +3 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-9/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][391] ([i915#13179]) +1 other test abort [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-snb2/igt at kms_selftest@drm_framebuffer.html - shard-tglu: NOTRUN -> [ABORT][392] ([i915#13179]) +1 other test abort [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-9/igt at kms_selftest@drm_framebuffer.html - shard-glk: NOTRUN -> [ABORT][393] ([i915#13179]) +1 other test abort [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk5/igt at kms_selftest@drm_framebuffer.html * igt at kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][394] ([IGT#160] / [i915#6493]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-18/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][395] ([i915#10959]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk7/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][396] ([i915#8623]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-6/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][397] ([i915#12276]) +3 other tests incomplete [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk1/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-tglu-1: NOTRUN -> [SKIP][398] ([i915#9906]) +1 other test skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_vrr@seamless-rr-switch-drrs.html - shard-dg2: NOTRUN -> [SKIP][399] ([i915#9906]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-8/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][400] ([i915#9906]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-1/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-dg1: NOTRUN -> [SKIP][401] ([i915#9906]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][402] ([i915#2437] / [i915#9412]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-11/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][403] ([i915#2437]) +1 other test skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-10/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][404] ([i915#2437]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-13/igt at kms_writeback@writeback-invalid-parameters.html - shard-tglu: NOTRUN -> [SKIP][405] ([i915#2437]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-7/igt at kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][406] ([i915#2437]) +1 other test skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk1/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@mi-rpc: - shard-dg1: NOTRUN -> [SKIP][407] ([i915#2434]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/igt at perf@mi-rpc.html * igt at perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][408] ([i915#9100]) +1 other test fail [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at perf@non-zero-reason.html * igt at perf_pmu@most-busy-idle-check-all at rcs0: - shard-rkl: [PASS][409] -> [FAIL][410] ([i915#4349]) +1 other test fail [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-rkl-4/igt at perf_pmu@most-busy-idle-check-all at rcs0.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-1/igt at perf_pmu@most-busy-idle-check-all at rcs0.html * igt at prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][411] ([i915#3708]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-10/igt at prime_vgem@basic-fence-flip.html * igt at prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][412] ([i915#3708] / [i915#4077]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-4/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][413] ([i915#3291] / [i915#3708]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][414] ([i915#3291] / [i915#3708]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-5/igt at prime_vgem@basic-fence-read.html - shard-dg1: NOTRUN -> [SKIP][415] ([i915#3708]) +2 other tests skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-12/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][416] ([i915#3708]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-6/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][417] ([i915#9917]) +1 other test skip [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-7/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][418] ([i915#9917]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/igt at sriov_basic@enable-vfs-bind-unbind-each.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2: NOTRUN -> [SKIP][419] ([i915#9917]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-1/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt at gem_eio@kms: - shard-tglu: [DMESG-WARN][420] ([i915#13363]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-tglu-8/igt at gem_eio@kms.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-7/igt at gem_eio@kms.html * igt at gem_exec_suspend@basic-s3: - shard-rkl: [DMESG-FAIL][422] ([i915#12964]) -> [PASS][423] +1 other test pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-rkl-7/igt at gem_exec_suspend@basic-s3.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-5/igt at gem_exec_suspend@basic-s3.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [TIMEOUT][424] ([i915#5493]) -> [PASS][425] +1 other test pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-dg1-18/igt at gem_lmem_swapping@smem-oom at lmem0.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-18/igt at gem_lmem_swapping@smem-oom at lmem0.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_15955/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: [FAIL][428] ([i915#12739] / [i915#3591]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html * igt at i915_pm_rpm@gem-pread: - shard-dg2: [SKIP][430] ([i915#13328]) -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-dg2-11/igt at i915_pm_rpm@gem-pread.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-10/igt at i915_pm_rpm@gem-pread.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [DMESG-FAIL][432] ([i915#13393]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-mtlp-6/igt at i915_selftest@live at workarounds.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-mtlp-5/igt at i915_selftest@live at workarounds.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: [INCOMPLETE][434] ([i915#4817]) -> [PASS][435] [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk6/igt at i915_suspend@fence-restore-tiled2untiled.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk7/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-rkl: [DMESG-WARN][436] ([i915#12964]) -> [PASS][437] +33 other tests pass [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-rkl-2/igt at kms_cursor_crc@cursor-offscreen-256x85.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-5/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2: [SKIP][438] ([i915#3555]) -> [PASS][439] [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-dg2-4/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-10/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-vga1-hdmi-a1: - shard-snb: [INCOMPLETE][440] ([i915#12314] / [i915#12745] / [i915#4839]) -> [PASS][441] +1 other test pass [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-snb2/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-vga1-hdmi-a1.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-snb5/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-vga1-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [FAIL][442] ([i915#11989]) -> [PASS][443] +3 other tests pass [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-tglu-4/igt at kms_flip@plain-flip-fb-recreate-interruptible.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-2/igt at kms_flip@plain-flip-fb-recreate-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a3: - shard-dg2: [FAIL][444] ([i915#11989]) -> [PASS][445] +4 other tests pass [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-dg2-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a3.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-7/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a3.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [FAIL][446] ([i915#6880]) -> [PASS][447] [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-dg2-2/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Wed Jan 15 15:39:17 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 15:39:17 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Add_tests_for_per-engine-c?= =?utf-8?q?lass_activity?= In-Reply-To: <20250115073040.1852977-1-riana.tauro@intel.com> References: <20250115073040.1852977-1-riana.tauro@intel.com> Message-ID: <173695555783.3992211.5574013076600155129@b555e5b46a47> == Series Details == Series: Add tests for per-engine-class activity URL : https://patchwork.freedesktop.org/series/143544/ State : failure == Summary == CI Bug Log - changes from XEIGT_8190_full -> XEIGTPW_12439_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12439_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12439_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_12439_full: ### IGT changes ### #### Possible regressions #### * {igt at xe_pmu@per-engine-class-activity at engine-drm_xe_engine_class_copy0} (NEW): - shard-dg2-set2: NOTRUN -> [FAIL][1] +9 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at xe_pmu@per-engine-class-activity at engine-drm_xe_engine_class_copy0.html * {igt at xe_pmu@per-engine-class-activity at engine-drm_xe_engine_class_render0} (NEW): - shard-bmg: NOTRUN -> [FAIL][2] +9 other tests fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-8/igt at xe_pmu@per-engine-class-activity at engine-drm_xe_engine_class_render0.html * {igt at xe_pmu@per-engine-class-activity at engine-drm_xe_engine_class_video_enhance0} (NEW): - shard-lnl: NOTRUN -> [FAIL][3] +7 other tests fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-4/igt at xe_pmu@per-engine-class-activity at engine-drm_xe_engine_class_video_enhance0.html New tests --------- New tests have been introduced between XEIGT_8190_full and XEIGTPW_12439_full: ### New IGT tests (10) ### * igt at xe_pmu@frequency: - Statuses : 3 fail(s) - Exec time: [0.01, 0.04] s * igt at xe_pmu@gt-c6: - Statuses : 3 fail(s) - Exec time: [0.01, 0.02] s * igt at xe_pmu@per-engine-class-activity: - Statuses : 3 fail(s) - Exec time: [0.02, 0.24] s * igt at xe_pmu@per-engine-class-activity at engine-drm_xe_engine_class_compute0: - Statuses : 3 fail(s) - Exec time: [0.00, 0.03] s * igt at xe_pmu@per-engine-class-activity at engine-drm_xe_engine_class_copy0: - Statuses : 3 fail(s) - Exec time: [0.00, 0.04] s * igt at xe_pmu@per-engine-class-activity at engine-drm_xe_engine_class_render0: - Statuses : 3 fail(s) - Exec time: [0.00, 0.04] s * igt at xe_pmu@per-engine-class-activity at engine-drm_xe_engine_class_video_decode0: - Statuses : 3 fail(s) - Exec time: [0.00, 0.03] s * igt at xe_pmu@per-engine-class-activity at engine-drm_xe_engine_class_video_decode1: - Statuses : 2 fail(s) - Exec time: [0.00, 0.03] s * igt at xe_pmu@per-engine-class-activity at engine-drm_xe_engine_class_video_enhance0: - Statuses : 3 fail(s) - Exec time: [0.00, 0.03] s * igt at xe_pmu@per-engine-class-activity at engine-drm_xe_engine_class_video_enhance1: - Statuses : 2 fail(s) - Exec time: [0.00, 0.03] s Known issues ------------ Here are the changes found in XEIGTPW_12439_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotreplug-lateclose: - shard-lnl: NOTRUN -> [ABORT][4] ([Intel XE#3914]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-8/igt at core_hotunplug@hotreplug-lateclose.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1466]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-7/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * 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][6] ([Intel XE#2550]) +23 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#873]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-464/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#3768]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic@plane-invalid-params-fence: - shard-dg2-set2: [PASS][9] -> [SKIP][10] ([Intel XE#2423] / [i915#2575]) +11 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_atomic@plane-invalid-params-fence.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_atomic@plane-invalid-params-fence.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#316]) +5 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-6/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-bmg: [PASS][13] -> [SKIP][14] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/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-180: - shard-dg2-set2: [PASS][15] -> [SKIP][16] ([Intel XE#2136] / [Intel XE#2351]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#610]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/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-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +4 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-8/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: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +15 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1477]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-4/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: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-1/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2191]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-2/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#367]) +10 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-464/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2314] / [Intel XE#2894]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#2191]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#367]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-1/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#455] / [Intel XE#787]) +48 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-435/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-b-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#787]) +223 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-b-dp-2.html * igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +5 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-3/igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#3432]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-5/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-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#3442]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-dp-2.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2907]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-464/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-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2669]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-6/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_cdclk@mode-transition at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#314]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at kms_cdclk@mode-transition at pipe-a-dp-2.html * igt at kms_chamelium_color@ctm-limited-range: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#306]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-8/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#306]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-435/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2252]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-8/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +18 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_chamelium_hpd@vga-hpd.html - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#373]) +6 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-1/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#3278]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-7/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@legacy: - shard-dg2-set2: NOTRUN -> [FAIL][43] ([Intel XE#1178]) +1 other test fail [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-463/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-1: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2341]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-8/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#1178]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-8/igt at kms_content_protection@srm at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-offscreen-64x21: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1424]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-3/igt at kms_cursor_crc@cursor-offscreen-64x21.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#308]) +6 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-436/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2321]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-4/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-bmg: [PASS][49] -> [INCOMPLETE][50] ([Intel XE#3226]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-2/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#2291]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][53] -> [DMESG-WARN][54] ([Intel XE#877]) +1 other test dmesg-warn [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-4/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([i915#3804]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-463/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6.html * igt at kms_dp_aux_dev: - shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#3009]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_dp_aux_dev.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-6/igt at kms_dp_aux_dev.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#701]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@psr1: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1135]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1421]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-5/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a2-dp2: - shard-dg2-set2: NOTRUN -> [FAIL][62] ([Intel XE#301]) +9 other tests fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a2-dp2.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3: - shard-bmg: [PASS][63] -> [FAIL][64] ([Intel XE#3820]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#2316]) +7 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-5/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-6/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4: - shard-dg2-set2: [PASS][67] -> [FAIL][68] ([Intel XE#301]) +2 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html * igt at kms_flip@flip-vs-expired-vblank at a-dp2: - shard-bmg: NOTRUN -> [FAIL][69] ([Intel XE#2882]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html * igt at kms_flip@flip-vs-suspend at c-edp1: - shard-lnl: [PASS][70] -> [FAIL][71] ([Intel XE#3879]) +1 other test fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-3/igt at kms_flip@flip-vs-suspend at c-edp1.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-7/igt at kms_flip@flip-vs-suspend at c-edp1.html * igt at kms_flip@plain-flip-fb-recreate at c-edp1: - shard-lnl: [PASS][72] -> [FAIL][73] ([Intel XE#3149] / [Intel XE#886]) +2 other tests fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-5/igt at kms_flip@plain-flip-fb-recreate at c-edp1.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-6/igt at kms_flip@plain-flip-fb-recreate at c-edp1.html * igt at kms_flip@wf_vblank-ts-check at a-edp1: - shard-lnl: [PASS][74] -> [FAIL][75] ([Intel XE#886]) +4 other tests fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-4/igt at kms_flip@wf_vblank-ts-check at a-edp1.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-2/igt at kms_flip@wf_vblank-ts-check at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2293]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-2/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1401]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1401] / [Intel XE#1745]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([i915#5274]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2311]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#651]) +55 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-dg2-set2: [PASS][82] -> [SKIP][83] ([Intel XE#2136]) +5 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [FAIL][84] ([Intel XE#2333]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#651]) +7 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-8/igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2312]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#656]) +24 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2313]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#653]) +45 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html * igt at kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1503]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-5/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2925]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#346]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_plane_scaling@intel-max-src-size: - shard-bmg: [PASS][94] -> [SKIP][95] ([Intel XE#2685] / [Intel XE#3307]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_plane_scaling@intel-max-src-size.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-2/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@invalid-num-scalers: - shard-bmg: [PASS][96] -> [SKIP][97] ([Intel XE#3007]) +13 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at kms_plane_scaling@invalid-num-scalers.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_plane_scaling@invalid-num-scalers.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2763]) +4 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2763]) +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/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-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-463/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75 at pipe-a: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2763]) +11 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-2/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75 at pipe-a.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#870]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-464/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#908]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1439] / [Intel XE#3141]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-1/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#2893]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-1/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#1489]) +16 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2136]) +4 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1122]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2850] / [Intel XE#929]) +21 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-463/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-basic: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2136] / [Intel XE#2231]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_psr@pr-basic.html * igt at kms_psr@pr-sprite-plane-move: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1406]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-6/igt at kms_psr@pr-sprite-plane-move.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#3414]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1127]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#3414] / [Intel XE#3904]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-7/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_scaling_modes@scaling-mode-none: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#2413] / [Intel XE#374]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-3/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#374]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-3/igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1.html * igt at kms_setmode@basic: - shard-bmg: [PASS][117] -> [FAIL][118] ([Intel XE#2883]) +4 other tests fail [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_setmode@basic.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-1/igt at kms_setmode@basic.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1500]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@cmrr: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2168]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-436/igt at kms_vrr@cmrr.html * igt at kms_vrr@flip-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#455]) +30 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1499]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-4/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#756]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1091] / [Intel XE#2849]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-436/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute@ccs-mode-basic: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1447]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-5/igt at xe_compute@ccs-mode-basic.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#1123]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-463/igt at xe_copy_basic@mem-copy-linear-0x369.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1126]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2905]) +17 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-436/igt at xe_eudebug@basic-close.html - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#2905]) +5 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-4/igt at xe_eudebug@basic-close.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#3889]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#3889]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-3/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: NOTRUN -> [INCOMPLETE][134] ([Intel XE#1473]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-2/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_evict@evict-beng-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#688]) +5 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-6/igt at xe_evict@evict-beng-threads-large-multi-vm.html * igt at xe_evict@evict-threads-small-multi-vm: - shard-dg2-set2: [PASS][136] -> [SKIP][137] ([Intel XE#1130]) +16 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at xe_evict@evict-threads-small-multi-vm.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at xe_evict@evict-threads-small-multi-vm.html * igt at xe_exec_basic@many-basic-defer-mmap: - shard-bmg: [PASS][138] -> [SKIP][139] ([Intel XE#1130]) +29 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at xe_exec_basic@many-basic-defer-mmap.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at xe_exec_basic@many-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#1392]) +6 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-6/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate-race: - shard-dg2-set2: [PASS][141] -> [SKIP][142] ([Intel XE#1392]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#1392]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#288]) +40 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-464/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: NOTRUN -> [SKIP][145] ([Intel XE#2360]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_exec_threads@threads-hang-fd-userptr-rebind: - shard-dg2-set2: [PASS][146] -> [DMESG-WARN][147] ([Intel XE#3876]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at xe_exec_threads@threads-hang-fd-userptr-rebind.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-463/igt at xe_exec_threads@threads-hang-fd-userptr-rebind.html * igt at xe_gt_freq@freq_suspend: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#584]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-5/igt at xe_gt_freq@freq_suspend.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#2229]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html * igt at xe_mmap@pci-membarrier-bad-object: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#4045]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at xe_mmap@pci-membarrier-bad-object.html * igt at xe_oa@oa-tlb-invalidate: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#2248]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-3/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2541] / [Intel XE#3573]) +14 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-435/igt at xe_oa@whitelisted-registers-userspace-config.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_12439/shard-lnl-7/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#979]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-436/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@write: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#1061]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-4/igt at xe_peer2peer@write.html * igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][156] ([Intel XE#1173]) +1 other test fail [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#2284] / [Intel XE#366]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-436/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#2284]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-3/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-exec-after: - shard-dg2-set2: NOTRUN -> [ABORT][159] ([Intel XE#1358]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at xe_pm@s2idle-exec-after.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#579]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at xe_pm@vram-d3cold-threshold.html - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#579]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-6/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_pm_residency@gt-c6-freeze: - shard-dg2-set2: [PASS][162] -> [ABORT][163] ([Intel XE#2625]) +1 other test abort [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at xe_pm_residency@gt-c6-freeze.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at xe_pm_residency@gt-c6-freeze.html * igt at xe_query@multigpu-query-engines: - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#944]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-7/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-oa-units: - shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#944]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at xe_query@multigpu-query-oa-units.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_12439/shard-lnl-5/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@large-userptr-misaligned-binds-33554432: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#1130]) +9 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at xe_vm@large-userptr-misaligned-binds-33554432.html * igt at xe_wedged@basic-wedged: - shard-bmg: [PASS][168] -> [ABORT][169] ([Intel XE#3858]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at xe_wedged@basic-wedged.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-6/igt at xe_wedged@basic-wedged.html * igt at xe_wedged@wedged-mode-toggle: - shard-dg2-set2: NOTRUN -> [ABORT][170] ([Intel XE#3075] / [Intel XE#3084]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at xe_wedged@wedged-mode-toggle.html #### Possible fixes #### * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [FAIL][171] ([Intel XE#911]) -> [PASS][172] +3 other tests pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-2/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_atomic_transition@modeset-transition: - shard-bmg: [INCOMPLETE][173] ([Intel XE#2613]) -> [PASS][174] +1 other test pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_atomic_transition@modeset-transition.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-5/igt at kms_atomic_transition@modeset-transition.html * igt at kms_big_fb@4-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][175] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][176] +1 other test pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_big_fb@4-tiled-32bpp-rotate-0.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-5/igt at kms_big_fb@4-tiled-32bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][177] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-4/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][179] ([Intel XE#3862]) -> [PASS][180] +1 other test pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-bmg: [FAIL][181] -> [PASS][182] +2 other tests pass [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs at pipe-a-dp-2: - shard-bmg: [FAIL][183] ([Intel XE#3847]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs at pipe-a-dp-2.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs at pipe-a-dp-2.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][185] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-463/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-b-dp-4: - shard-dg2-set2: [DMESG-WARN][187] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][189] ([Intel XE#3124]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: [INCOMPLETE][191] ([Intel XE#3226]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-463/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [SKIP][193] ([Intel XE#2291]) -> [PASS][194] +1 other test pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-8/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [FAIL][195] ([Intel XE#1475]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-7/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-1/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][197] ([Intel XE#3070]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_dp_linktrain_fallback@dp-fallback.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_fbcon_fbt@fbc: - shard-dg2-set2: [SKIP][199] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][200] +2 other tests pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_fbcon_fbt@fbc.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at kms_fbcon_fbt@fbc.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-dg2-set2: [ABORT][201] -> [PASS][202] +1 other test pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at kms_fbcon_fbt@fbc-suspend.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@display: - shard-dg2-set2: [SKIP][203] ([Intel XE#2423] / [i915#2575]) -> [PASS][204] +7 other tests pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_feature_discovery@display.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_feature_discovery@display.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][205] ([Intel XE#3820]) -> [PASS][206] +1 other test pass [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/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 at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][207] ([Intel XE#2882]) -> [PASS][208] +3 other tests pass [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][209] ([Intel XE#2316]) -> [PASS][210] +1 other test pass [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][211] ([Intel XE#2882] / [Intel XE#3820]) -> [PASS][212] +1 other test pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: - shard-dg2-set2: [FAIL][213] ([Intel XE#301]) -> [PASS][214] +2 other tests pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html * igt at kms_flip@wf_vblank-ts-check-interruptible at c-edp1: - shard-lnl: [FAIL][215] ([Intel XE#886]) -> [PASS][216] +1 other test pass [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-2/igt at kms_flip@wf_vblank-ts-check-interruptible at c-edp1.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-5/igt at kms_flip@wf_vblank-ts-check-interruptible at c-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg2-set2: [SKIP][217] ([Intel XE#2136]) -> [PASS][218] +2 other tests pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-463/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_force_connector_basic@force-connector-state: - shard-bmg: [SKIP][219] ([Intel XE#3007]) -> [PASS][220] +5 other tests pass [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_force_connector_basic@force-connector-state.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-3/igt at kms_force_connector_basic@force-connector-state.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][221] ([Intel XE#3012]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-5/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3: - shard-bmg: [DMESG-WARN][223] ([Intel XE#877]) -> [PASS][224] +1 other test pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-1/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][225] ([Intel XE#718]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-8/igt at kms_pm_dc@dc5-dpms.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-bmg: [SKIP][227] ([Intel XE#1435]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-1/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][229] ([Intel XE#899]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-1/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-2/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [ABORT][231] ([Intel XE#2625] / [Intel XE#4057]) -> [PASS][232] +1 other test pass [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-464/igt at kms_vblank@ts-continuation-suspend.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][233] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at xe_evict@evict-beng-mixed-many-threads-small.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-464/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind: - shard-dg2-set2: [SKIP][235] ([Intel XE#1392]) -> [PASS][236] +1 other test pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html * igt at xe_exec_sip@invalidinstr-disabled: - shard-dg2-set2: [SKIP][237] ([Intel XE#1130]) -> [PASS][238] +11 other tests pass [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_exec_sip@invalidinstr-disabled.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at xe_exec_sip@invalidinstr-disabled.html * igt at xe_exec_threads@threads-bal-shared-vm-rebind: - shard-bmg: [SKIP][239] ([Intel XE#1130]) -> [PASS][240] +13 other tests pass [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_exec_threads@threads-bal-shared-vm-rebind.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-5/igt at xe_exec_threads@threads-bal-shared-vm-rebind.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-dg2-set2: [FAIL][241] ([Intel XE#1999]) -> [PASS][242] +2 other tests pass [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [ABORT][243] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_pm@s3-basic-exec: - shard-dg2-set2: [ABORT][245] ([Intel XE#1358]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_pm@s3-basic-exec.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-463/igt at xe_pm@s3-basic-exec.html #### Warnings #### * igt at kms_big_fb@y-tiled-16bpp-rotate-180: - shard-bmg: [SKIP][247] ([Intel XE#1124]) -> [SKIP][248] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_big_fb@y-tiled-16bpp-rotate-180.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_big_fb@y-tiled-16bpp-rotate-180.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: [SKIP][249] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][250] ([Intel XE#1124]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-1/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html - shard-dg2-set2: [SKIP][251] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][252] ([Intel XE#1124]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-436/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg2-set2: [SKIP][253] ([Intel XE#1124]) -> [SKIP][254] ([Intel XE#2136]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-bmg: [SKIP][255] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][256] ([Intel XE#3007]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html - shard-dg2-set2: [SKIP][257] ([Intel XE#2191]) -> [SKIP][258] ([Intel XE#2423] / [i915#2575]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][259] ([Intel XE#367]) -> [SKIP][260] ([Intel XE#3007]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html - shard-dg2-set2: [SKIP][261] ([Intel XE#367]) -> [SKIP][262] ([Intel XE#2423] / [i915#2575]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-bmg: [SKIP][263] ([Intel XE#3432]) -> [SKIP][264] ([Intel XE#2136] / [Intel XE#2231]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: [SKIP][265] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][266] ([Intel XE#3432]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html - shard-dg2-set2: [SKIP][267] ([Intel XE#2136]) -> [SKIP][268] ([Intel XE#455] / [Intel XE#787]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][269] ([Intel XE#2887]) -> [SKIP][270] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html - shard-dg2-set2: [SKIP][271] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][272] ([Intel XE#2136]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html * igt at kms_chamelium_frames@hdmi-crc-fast: - shard-bmg: [SKIP][273] ([Intel XE#2252]) -> [SKIP][274] ([Intel XE#3007]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_chamelium_frames@hdmi-crc-fast.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_chamelium_frames@hdmi-crc-fast.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: [SKIP][275] ([Intel XE#3007]) -> [SKIP][276] ([Intel XE#2252]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-storm.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-1/igt at kms_chamelium_hpd@dp-hpd-storm.html - shard-dg2-set2: [SKIP][277] ([Intel XE#2423] / [i915#2575]) -> [SKIP][278] ([Intel XE#373]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_chamelium_hpd@dp-hpd-storm.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-434/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_content_protection@srm: - shard-bmg: [SKIP][279] ([Intel XE#2341]) -> [FAIL][280] ([Intel XE#1178]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_content_protection@srm.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-8/igt at kms_content_protection@srm.html * igt at kms_fbcon_fbt@fbc: - shard-bmg: [SKIP][281] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][282] ([Intel XE#1695]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_fbcon_fbt@fbc.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-1/igt at kms_fbcon_fbt@fbc.html * igt at kms_flip@2x-blocking-absolute-wf_vblank: - shard-bmg: [SKIP][283] ([Intel XE#2316]) -> [SKIP][284] ([Intel XE#3007]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_flip@2x-blocking-absolute-wf_vblank.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_flip@2x-blocking-absolute-wf_vblank.html * igt at kms_flip@wf_vblank-ts-check-interruptible: - shard-lnl: [FAIL][285] ([Intel XE#3149] / [Intel XE#886]) -> [FAIL][286] ([Intel XE#886]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-2/igt at kms_flip@wf_vblank-ts-check-interruptible.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-lnl-5/igt at kms_flip@wf_vblank-ts-check-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][287] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][288] ([Intel XE#2293] / [Intel XE#2380]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-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: - shard-dg2-set2: [SKIP][289] ([Intel XE#455]) -> [SKIP][290] ([Intel XE#2136] / [Intel XE#2351]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html - shard-bmg: [SKIP][291] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][292] ([Intel XE#2136] / [Intel XE#2231]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][293] ([Intel XE#651]) -> [SKIP][294] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][295] ([Intel XE#2311]) -> [SKIP][296] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][297] ([Intel XE#2311]) -> [SKIP][298] ([Intel XE#2312]) +7 other tests skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: [SKIP][299] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][300] ([Intel XE#651]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html - shard-bmg: [SKIP][301] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][302] ([Intel XE#2311]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][303] ([Intel XE#2333]) -> [SKIP][304] ([Intel XE#2312]) +2 other tests skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][305] ([Intel XE#2312]) -> [FAIL][306] ([Intel XE#2333]) +3 other tests fail [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][307] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][308] ([Intel XE#2333]) +1 other test fail [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][309] ([Intel XE#2333]) -> [SKIP][310] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][311] ([Intel XE#651]) -> [SKIP][312] ([Intel XE#2136]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][313] ([Intel XE#2312]) -> [SKIP][314] ([Intel XE#2311]) +6 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][315] ([Intel XE#2136]) -> [SKIP][316] ([Intel XE#651]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][317] ([Intel XE#2312]) -> [SKIP][318] ([Intel XE#2136] / [Intel XE#2231]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-bmg: [SKIP][319] ([Intel XE#2313]) -> [SKIP][320] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][321] ([Intel XE#653]) -> [SKIP][322] ([Intel XE#2136]) +3 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][323] ([Intel XE#2313]) -> [SKIP][324] ([Intel XE#2312]) +11 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][325] ([Intel XE#653]) -> [SKIP][326] ([Intel XE#2136] / [Intel XE#2351]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][327] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][328] ([Intel XE#2313]) +4 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][329] ([Intel XE#2312]) -> [SKIP][330] ([Intel XE#2313]) +6 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-dg2-set2: [SKIP][331] ([Intel XE#2136]) -> [SKIP][332] ([Intel XE#653]) +3 other tests skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][333] ([Intel XE#361]) -> [SKIP][334] ([Intel XE#455]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][335] ([Intel XE#2136]) -> [SKIP][336] ([Intel XE#3309]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_pm_dc@dc5-retention-flops.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-436/igt at kms_pm_dc@dc5-retention-flops.html - shard-bmg: [SKIP][337] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][338] ([Intel XE#3309]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_pm_dc@dc5-retention-flops.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-6/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-bmg: [SKIP][339] ([Intel XE#2392]) -> [SKIP][340] ([Intel XE#2136] / [Intel XE#2231]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-5/igt at kms_pm_dc@dc6-psr.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_pm_dc@dc6-psr.html - shard-dg2-set2: [SKIP][341] ([Intel XE#1129]) -> [SKIP][342] ([Intel XE#2136] / [Intel XE#2351]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_pm_dc@dc6-psr.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_pm_dc@dc6-psr.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-bmg: [SKIP][343] ([Intel XE#1489]) -> [SKIP][344] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][345] ([Intel XE#1489]) -> [SKIP][346] ([Intel XE#2136]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr@fbc-pr-primary-render: - shard-bmg: [SKIP][347] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][348] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_psr@fbc-pr-primary-render.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-6/igt at kms_psr@fbc-pr-primary-render.html - shard-dg2-set2: [SKIP][349] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][350] ([Intel XE#2850] / [Intel XE#929]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_psr@fbc-pr-primary-render.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-464/igt at kms_psr@fbc-pr-primary-render.html * igt at kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: [SKIP][351] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][352] ([Intel XE#2136]) +2 other tests skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html * igt at kms_psr@psr2-primary-page-flip: - shard-dg2-set2: [SKIP][353] ([Intel XE#2136]) -> [SKIP][354] ([Intel XE#2850] / [Intel XE#929]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_psr@psr2-primary-page-flip.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-436/igt at kms_psr@psr2-primary-page-flip.html * igt at kms_psr@psr2-sprite-render: - shard-bmg: [SKIP][355] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][356] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_psr@psr2-sprite-render.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_psr@psr2-sprite-render.html * igt at kms_rotation_crc@primary-rotation-270: - shard-dg2-set2: [SKIP][357] ([Intel XE#2423] / [i915#2575]) -> [SKIP][358] ([Intel XE#3414]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_rotation_crc@primary-rotation-270.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-435/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-bmg: [SKIP][359] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][360] ([Intel XE#3007]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html - shard-dg2-set2: [SKIP][361] ([Intel XE#3414]) -> [SKIP][362] ([Intel XE#2423] / [i915#2575]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt at kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: [SKIP][363] ([Intel XE#1435]) -> [SKIP][364] ([Intel XE#3007]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_setmode@invalid-clone-exclusive-crtc.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_setmode@invalid-clone-exclusive-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][365] ([Intel XE#2426]) -> [SKIP][366] ([Intel XE#3007]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_tiled_display@basic-test-pattern.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [FAIL][367] ([Intel XE#1729]) -> [SKIP][368] ([Intel XE#2423] / [i915#2575]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@flipline: - shard-bmg: [SKIP][369] ([Intel XE#1499]) -> [SKIP][370] ([Intel XE#3007]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_vrr@flipline.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at kms_vrr@flipline.html * igt at xe_eudebug@basic-read-event: - shard-bmg: [SKIP][371] ([Intel XE#2905]) -> [SKIP][372] ([Intel XE#1130]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_eudebug@basic-read-event.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at xe_eudebug@basic-read-event.html - shard-dg2-set2: [SKIP][373] ([Intel XE#2905]) -> [SKIP][374] ([Intel XE#1130]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_eudebug@basic-read-event.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at xe_eudebug@basic-read-event.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: [SKIP][375] ([Intel XE#1130]) -> [SKIP][376] ([Intel XE#2905]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_eudebug@basic-vm-access.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-8/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: - shard-dg2-set2: [SKIP][377] ([Intel XE#1130]) -> [SKIP][378] ([Intel XE#2905]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-432/igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][379] ([Intel XE#1473]) -> [INCOMPLETE][380] ([Intel XE#1473]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at xe_evict@evict-beng-mixed-threads-large.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-2/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-mixed-many-threads-small: - shard-bmg: [TIMEOUT][381] ([Intel XE#1473] / [Intel XE#2472]) -> [INCOMPLETE][382] ([Intel XE#1473]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at xe_evict@evict-mixed-many-threads-small.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-6/igt at xe_evict@evict-mixed-many-threads-small.html * igt at xe_evict@evict-threads-large: - shard-bmg: [INCOMPLETE][383] ([Intel XE#1473]) -> [FAIL][384] ([Intel XE#1000]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at xe_evict@evict-threads-large.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-3/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][385] ([Intel XE#2322]) -> [SKIP][386] ([Intel XE#1130]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-null-defer-bind: - shard-bmg: [SKIP][387] ([Intel XE#1130]) -> [SKIP][388] ([Intel XE#2322]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_exec_basic@multigpu-once-null-defer-bind.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-bmg-2/igt at xe_exec_basic@multigpu-once-null-defer-bind.html * igt at xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch: - shard-dg2-set2: [SKIP][389] ([Intel XE#1130]) -> [SKIP][390] ([Intel XE#288]) +2 other tests skip [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch.html * igt at xe_exec_fault_mode@many-rebind-imm: - shard-dg2-set2: [SKIP][391] ([Intel XE#288]) -> [SKIP][392] ([Intel XE#1130]) +3 other tests skip [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at xe_exec_fault_mode@many-rebind-imm.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at xe_exec_fault_mode@many-rebind-imm.html * igt at xe_oa@buffer-fill: - shard-dg2-set2: [SKIP][393] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][394] ([Intel XE#1130]) +1 other test skip [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at xe_oa@buffer-fill.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/shard-dg2-433/igt at xe_oa@buffer-fill.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [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#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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [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#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [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#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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [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#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [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#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#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [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#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [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#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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820 [Intel XE#3847]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3847 [Intel XE#3858]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3858 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4057]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4057 [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#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#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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8190 -> IGTPW_12439 * Linux: xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db -> xe-2490-ac1e97c603501be90e530b0ce0eac45728869c85 IGTPW_12439: 12439 IGT_8190: db6e252e00bc44f90b678d547e93b3f02c02c6de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db: 1c464719f6d86a08c91e6ed5d64db83b166788db xe-2490-ac1e97c603501be90e530b0ce0eac45728869c85: ac1e97c603501be90e530b0ce0eac45728869c85 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12439/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From lukasz.laguna at intel.com Wed Jan 15 15:55:55 2025 From: lukasz.laguna at intel.com (Laguna, Lukasz) Date: Wed, 15 Jan 2025 16:55:55 +0100 Subject: [PATCH v2 i-g-t 2/7] lib/xe/xe_sriov_debugfs: Add validation for provisioned ranges In-Reply-To: <20250114150848.332708-3-marcin.bernatowicz@linux.intel.com> References: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> <20250114150848.332708-3-marcin.bernatowicz@linux.intel.com> Message-ID: <90a12c2a-0ee5-4270-aac0-afdae2530f4e@intel.com> On 1/14/2025 16:08, Marcin Bernatowicz wrote: > Introduce `xe_sriov_pf_debugfs_read_check_ranges`, adding a validation > step on top of `xe_sriov_pf_debugfs_read_provisioned_ranges`. > > Enforce checks for: > - Ranges when no VFs are expected. > - Duplicate, missing, or out-of-range VF IDs. > > The function ensures the returned ranges are sorted by VF ID. > > Signed-off-by: Marcin Bernatowicz > Cc: Adam Miszczak > Cc: Jakub Kolakowski > Cc: Lukasz Laguna > Cc: Micha? Wajdeczko > Cc: Micha? Winiarski > Cc: Narasimha C V > Cc: Piotr Pi?rkowski > Cc: Satyanarayana K V P > Cc: Tomasz Lis > --- > lib/xe/xe_sriov_debugfs.c | 116 ++++++++++++++++++++++++++++++++++++++ > lib/xe/xe_sriov_debugfs.h | 4 ++ > 2 files changed, 120 insertions(+) > > diff --git a/lib/xe/xe_sriov_debugfs.c b/lib/xe/xe_sriov_debugfs.c > index 92a477764..abb1bf7d5 100644 > --- a/lib/xe/xe_sriov_debugfs.c > +++ b/lib/xe/xe_sriov_debugfs.c > @@ -206,6 +206,122 @@ cleanup: > return ret; > } > > +static int compare_ranges_by_vf_id(const void *a, const void *b) > +{ > + const struct xe_sriov_provisioned_range *range_a = a; > + const struct xe_sriov_provisioned_range *range_b = b; > + > + return (range_a->vf_id - range_b->vf_id); > +} > + > +#define MAX_DEBUG_ENTRIES 70U > + > +static int validate_vf_ids(enum xe_sriov_shared_res res, > + struct xe_sriov_provisioned_range *ranges, > + unsigned int nr_ranges, unsigned int expected_num_vfs) > +{ > + unsigned int current_vf_id = 0; > + > + /* If no VFs are expected, ensure no ranges are provided */ > + if (expected_num_vfs == 0) { > + if (nr_ranges > 0) { > + unsigned int limit = min(nr_ranges, MAX_DEBUG_ENTRIES); > + > + igt_debug("%s: Unexpected %u ranges when expected num_vfs == 0\n", > + xe_sriov_debugfs_provisioned_attr_name(res), > + nr_ranges); > + for (unsigned int i = 0; i < limit; i++) { > + igt_debug((res == XE_SRIOV_SHARED_RES_GGTT) ? > + "%s:VF%u: %lx-%lx\n" : > + "%s:VF%u: %lu-%lu\n", > + xe_sriov_shared_res_to_string(res), > + ranges[i].vf_id, ranges[i].start, ranges[i].end); > + } > + igt_debug_on_f(nr_ranges > MAX_DEBUG_ENTRIES, > + "%s: Output truncated to first %u ranges out of %u\n", > + xe_sriov_debugfs_provisioned_attr_name(res), > + MAX_DEBUG_ENTRIES, nr_ranges); > + > + return -ERANGE; > + } > + return 0; /* Valid case: no VFs, no ranges */ > + } > + > + if (igt_debug_on_f(nr_ranges == 0, > + "%s: No VF ranges\n", > + xe_sriov_debugfs_provisioned_attr_name(res))) > + return -ENOENT; > + > + igt_assert(ranges); > + qsort(ranges, nr_ranges, sizeof(ranges[0]), compare_ranges_by_vf_id); > + > + for (unsigned int i = 0; i < nr_ranges; i++) { > + unsigned int vf_id = ranges[i].vf_id; > + > + if (igt_debug_on_f(vf_id == current_vf_id, > + "%s: Duplicate VF%u entry found\n", > + xe_sriov_debugfs_provisioned_attr_name(res), vf_id)) > + return -EEXIST; > + > + if (igt_debug_on_f(vf_id < 1 || vf_id > expected_num_vfs, > + "%s: Out of range VF%u\n", > + xe_sriov_debugfs_provisioned_attr_name(res), vf_id)) > + return -ERANGE; > + > + if (igt_debug_on_f(vf_id > current_vf_id + 1, > + "%s: Missing VF%u\n", > + xe_sriov_debugfs_provisioned_attr_name(res), > + current_vf_id + 1)) > + return -ESRCH; > + > + current_vf_id = vf_id; > + } > + > + if (igt_debug_on_f(current_vf_id != expected_num_vfs, > + "%s: Missing VF%u\n", > + xe_sriov_debugfs_provisioned_attr_name(res), expected_num_vfs)) > + return -ESRCH; > + > + return 0; > +} > + > +/** > + * xe_sriov_pf_debugfs_read_check_ranges: > + * @pf_fd: PF device file descriptor > + * @res: resource > + * @gt_id: GT number > + * @ranges: pointer to array of provisioned ranges > + * @expected_num_vfs: expected number of provisioned VFs > + * > + * Reads and validates provisioned ranges of shared resources. > + * If successfully validated, returns num_vfs allocated ranges > + * sorted by VF id. > + * The caller should free the allocated space. > + * > + * Return: 0 if successful in reading valid ranges, otherwise negative error code. > + */ > +int xe_sriov_pf_debugfs_read_check_ranges(int pf_fd, enum xe_sriov_shared_res res, > + unsigned int gt_id, > + struct xe_sriov_provisioned_range **ranges, > + unsigned int expected_num_vfs) > +{ > + unsigned int nr_ranges; > + int ret; > + > + ret = xe_sriov_pf_debugfs_read_provisioned_ranges(pf_fd, res, gt_id, > + ranges, &nr_ranges); > + if (ret) > + return ret; > + > + ret = validate_vf_ids(res, *ranges, nr_ranges, expected_num_vfs); > + if (ret) { > + free(*ranges); > + *ranges = NULL; > + } > + > + return ret; > +} > + > static int xe_sriov_pf_debugfs_path_open(int pf, unsigned int vf_num, > unsigned int gt_num) > { > diff --git a/lib/xe/xe_sriov_debugfs.h b/lib/xe/xe_sriov_debugfs.h > index 2db965f9b..cd5f932be 100644 > --- a/lib/xe/xe_sriov_debugfs.h > +++ b/lib/xe/xe_sriov_debugfs.h > @@ -16,6 +16,10 @@ int xe_sriov_pf_debugfs_read_provisioned_ranges(int pf_fd, enum xe_sriov_shared_ > unsigned int gt_id, > struct xe_sriov_provisioned_range **ranges, > unsigned int *nr_ranges); > +int xe_sriov_pf_debugfs_read_check_ranges(int pf_fd, enum xe_sriov_shared_res res, > + unsigned int gt_id, > + struct xe_sriov_provisioned_range **ranges, > + unsigned int expected_num_vfs); > int __xe_sriov_pf_debugfs_get_u32(int pf, unsigned int vf_num, > unsigned int gt_num, const char *attr, > uint32_t *value); LGTM, Reviewed-by: Lukasz Laguna -------------- next part -------------- An HTML attachment was scrubbed... URL: From lukasz.laguna at intel.com Wed Jan 15 15:57:58 2025 From: lukasz.laguna at intel.com (Laguna, Lukasz) Date: Wed, 15 Jan 2025 16:57:58 +0100 Subject: [PATCH v2 i-g-t 6/7] tests/xe_sriov_auto_provisioning: Add tests for SR-IOV auto-provisioning In-Reply-To: <20250114150848.332708-7-marcin.bernatowicz@linux.intel.com> References: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> <20250114150848.332708-7-marcin.bernatowicz@linux.intel.com> Message-ID: On 1/14/2025 16:08, Marcin Bernatowicz wrote: > Added subtests validating below scenarios: > - auto-provisioned resources are allocated by PF driver in fairly manner, > - auto-provisioned resources are released once VFs are disabled, > - verify that ranges of auto-provisioned resources are exclusive. > > The tests rely on ggtt_provisioned, lmem_provisioned, > contexts_provisioned and doorbells_provisioned debugfs attributes. > > v2: > - Simplify range validation by using > xe_sriov_pf_debugfs_read_check_ranges (Lukasz) > - Rename subtests for clarity (Lukasz) > > Signed-off-by: Marcin Bernatowicz > Cc: Adam Miszczak > Cc: Jakub Kolakowski > Cc: Lukasz Laguna > Cc: Micha? Wajdeczko > Cc: Micha? Winiarski > Cc: Narasimha C V > Cc: Piotr Pi?rkowski > Cc: Satyanarayana K V P > Cc: Tomasz Lis > --- > tests/intel/xe_sriov_auto_provisioning.c | 290 +++++++++++++++++++++++ > tests/meson.build | 1 + > 2 files changed, 291 insertions(+) > create mode 100644 tests/intel/xe_sriov_auto_provisioning.c > > diff --git a/tests/intel/xe_sriov_auto_provisioning.c b/tests/intel/xe_sriov_auto_provisioning.c > new file mode 100644 > index 000000000..1d2aa8624 > --- /dev/null > +++ b/tests/intel/xe_sriov_auto_provisioning.c > @@ -0,0 +1,290 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright(c) 2023 Intel Corporation. All rights reserved. > + */ > + > +#include > + > +#include "drmtest.h" > +#include "igt_core.h" > +#include "igt_sriov_device.h" > +#include "igt_sysfs.h" > +#include "xe/xe_sriov_debugfs.h" > +#include "xe/xe_sriov_provisioning.h" > +#include "xe/xe_query.h" > + > +/** > + * TEST: xe_sriov_auto_provisioning > + * Category: Core > + * Mega feature: SR-IOV > + * Sub-category: provisioning > + * Functionality: auto-provisioning > + * Run type: FULL > + * Description: Examine behavior of SR-IOV auto-provisioning > + * > + * SUBTEST: fair-allocation > + * Description: > + * Verify that auto-provisioned resources are allocated by PF driver in fairly manner > + * > + * SUBTEST: resources-released-on-vfs-disabling > + * Description: > + * Verify that auto-provisioned resources are released once VFs are disabled > + * > + * SUBTEST: exclusive-ranges > + * Description: > + * Verify that ranges of auto-provisioned resources are exclusive > + */ > + > +IGT_TEST_DESCRIPTION("Xe tests for SR-IOV auto-provisioning"); > + > +/* Expects ranges sorted by VF IDs */ > +static int ranges_fair_allocation(enum xe_sriov_shared_res res, > + struct xe_sriov_provisioned_range *ranges, > + unsigned int nr_ranges) > +{ > + uint64_t expected_allocation = ranges[0].end - ranges[0].start + 1; > + > + for (unsigned int i = 1; i < nr_ranges; i++) { > + uint64_t current_allocation = ranges[i].end - ranges[i].start + 1; > + > + if (igt_debug_on_f(current_allocation != expected_allocation, > + "%s: Allocation mismatch, expected=%lu VF%u=%lu\n", > + xe_sriov_debugfs_provisioned_attr_name(res), > + expected_allocation, ranges[i].vf_id, > + current_allocation)) { > + return -1; > + } > + } > + > + return 0; > +} > + > +static int check_fair_allocation(int pf_fd, unsigned int num_vfs, unsigned int gt_id, > + enum xe_sriov_shared_res res) > +{ > + struct xe_sriov_provisioned_range *ranges; > + int ret; > + > + ret = xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res, gt_id, &ranges, num_vfs); > + if (igt_debug_on_f(ret, "%s: Failed ranges check on GT%u (%d)\n", > + xe_sriov_debugfs_provisioned_attr_name(res), gt_id, ret)) > + return ret; > + > + ret = ranges_fair_allocation(res, ranges, num_vfs); > + if (ret) { > + free(ranges); > + return ret; > + } > + > + free(ranges); > + > + return 0; > +} > + > +static void fair_allocation(int pf_fd, unsigned int num_vfs) > +{ > + enum xe_sriov_shared_res res; > + unsigned int gt; > + int fails = 0; > + > + igt_sriov_disable_driver_autoprobe(pf_fd); > + igt_sriov_enable_vfs(pf_fd, num_vfs); > + > + xe_for_each_gt(pf_fd, gt) { > + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) { > + if (igt_debug_on_f(check_fair_allocation(pf_fd, num_vfs, gt, res), > + "%s fair allocation failed on gt%u\n", > + xe_sriov_shared_res_to_string(res), gt)) > + fails++; > + } > + } > + > + igt_sriov_disable_vfs(pf_fd); > + > + igt_fail_on_f(fails, "fair allocation failed\n"); > +} > + > +static void resources_released_on_vfs_disabling(int pf_fd, unsigned int num_vfs) > +{ > + struct xe_sriov_provisioned_range *ranges; > + enum xe_sriov_shared_res res; > + unsigned int gt; > + int fails = 0; > + > + igt_sriov_disable_driver_autoprobe(pf_fd); > + igt_sriov_enable_vfs(pf_fd, num_vfs); > + > + xe_for_each_gt(pf_fd, gt) { > + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) { > + if (igt_warn_on_f(xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res, > + gt, > + &ranges, > + num_vfs), > + "%s: Failed ranges check on gt%u\n", > + xe_sriov_debugfs_provisioned_attr_name(res), gt)) > + continue; > + > + free(ranges); > + } > + } > + > + igt_sriov_disable_vfs(pf_fd); > + > + xe_for_each_gt(pf_fd, gt) { > + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) { > + if (igt_debug_on_f(xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res, > + gt, > + &ranges, > + 0), > + "%s: Failed ranges check on gt%u\n", > + xe_sriov_debugfs_provisioned_attr_name(res), gt)) > + fails++; > + } > + } > + > + igt_fail_on_f(fails, "shared resource release check failed\n"); > +} > + > +static int compare_ranges_by_start(const void *a, const void *b) > +{ > + const struct xe_sriov_provisioned_range *range_a = a; > + const struct xe_sriov_provisioned_range *range_b = b; > + > + if (range_a->start < range_b->start) > + return -1; > + if (range_a->start > range_b->start) > + return 1; > + return 0; > +} > + > +static int check_no_overlap(int pf_fd, unsigned int num_vfs, unsigned int gt_id, > + enum xe_sriov_shared_res res) > +{ > + struct xe_sriov_provisioned_range *ranges; > + int ret; > + > + ret = xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res, gt_id, &ranges, num_vfs); > + if (ret) > + return ret; > + > + igt_assert(ranges); > + qsort(ranges, num_vfs, sizeof(ranges[0]), compare_ranges_by_start); > + > + for (unsigned int i = 0; i < num_vfs - 1; i++) > + if (ranges[i].end >= ranges[i + 1].start) { > + igt_debug((res == XE_SRIOV_SHARED_RES_GGTT) ? > + "Overlapping ranges: VF%u [%lx-%lx] and VF%u [%lx-%lx]\n" : > + "Overlapping ranges: VF%u [%lu-%lu] and VF%u [%lu-%lu]\n", > + ranges[i].vf_id, ranges[i].start, ranges[i].end, > + ranges[i + 1].vf_id, ranges[i + 1].start, ranges[i + 1].end); > + free(ranges); > + return -1; > + } > + > + free(ranges); > + > + return 0; > +} > + > +static void exclusive_ranges(int pf_fd, unsigned int num_vfs) > +{ > + enum xe_sriov_shared_res res; > + unsigned int gt; > + int fails = 0; > + > + igt_sriov_disable_driver_autoprobe(pf_fd); > + igt_sriov_enable_vfs(pf_fd, num_vfs); > + > + xe_for_each_gt(pf_fd, gt) { > + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) { > + if (res == XE_SRIOV_SHARED_RES_LMEM) > + /* > + * lmem_provisioned is not applicable for this test, > + * as it does not expose ranges > + */ > + continue; > + > + if (igt_debug_on_f(check_no_overlap(pf_fd, num_vfs, gt, res), > + "%s overlap check failed on gt%u\n", > + xe_sriov_shared_res_to_string(res), gt)) > + fails++; > + } > + } > + > + igt_sriov_disable_vfs(pf_fd); > + > + igt_fail_on_f(fails, "exclusive ranges check failed\n"); > +} > + > +igt_main > +{ > + enum xe_sriov_shared_res res; > + unsigned int gt; > + bool autoprobe; > + int pf_fd; > + > + igt_fixture { > + struct xe_sriov_provisioned_range *ranges; > + int ret; > + > + pf_fd = drm_open_driver(DRIVER_XE); > + igt_require(igt_sriov_is_pf(pf_fd)); > + igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0); > + > + xe_for_each_gt(pf_fd, gt) { > + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) { > + ret = xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res, gt, > + &ranges, 0); > + igt_skip_on_f(ret, "%s: Failed ranges check on gt%u (%d)\n", > + xe_sriov_debugfs_provisioned_attr_name(res), > + gt, ret); > + } > + } > + autoprobe = igt_sriov_is_driver_autoprobe_enabled(pf_fd); > + } > + > + igt_describe("Verify that auto-provisioned resources are allocated by PF driver in fairly manner"); > + igt_subtest_with_dynamic("fair-allocation") { > + for_random_sriov_num_vfs(pf_fd, num_vfs) { > + igt_dynamic_f("numvfs-random") { > + igt_debug("numvfs=%u\n", num_vfs); > + fair_allocation(pf_fd, num_vfs); > + } > + } > + } > + > + igt_describe("Verify that auto-provisioned resources are released once VFs are disabled"); > + igt_subtest_with_dynamic("resources-released-on-vfs-disabling") { > + for_random_sriov_num_vfs(pf_fd, num_vfs) { > + igt_dynamic_f("numvfs-random") { > + igt_debug("numvfs=%u\n", num_vfs); > + resources_released_on_vfs_disabling(pf_fd, num_vfs); > + } > + } > + } > + > + igt_describe("Verify that ranges of auto-provisioned resources are exclusive"); > + igt_subtest_with_dynamic_f("exclusive-ranges") { > + unsigned int total_vfs = igt_sriov_get_total_vfs(pf_fd); > + > + igt_skip_on(total_vfs < 2); > + > + for_random_sriov_vf_in_range(pf_fd, 2, total_vfs, num_vfs) { > + igt_dynamic_f("numvfs-random") { > + igt_debug("numvfs=%u\n", num_vfs); > + exclusive_ranges(pf_fd, num_vfs); > + } > + } > + } > + > + igt_fixture { > + igt_sriov_disable_vfs(pf_fd); > + /* abort to avoid execution of next tests with enabled VFs */ > + igt_abort_on_f(igt_sriov_get_enabled_vfs(pf_fd) > 0, "Failed to disable VF(s)"); > + autoprobe ? igt_sriov_enable_driver_autoprobe(pf_fd) : > + igt_sriov_disable_driver_autoprobe(pf_fd); > + igt_abort_on_f(autoprobe != igt_sriov_is_driver_autoprobe_enabled(pf_fd), > + "Failed to restore sriov_drivers_autoprobe value\n"); > + drm_close_driver(pf_fd); > + } > +} > diff --git a/tests/meson.build b/tests/meson.build > index 2724c7a9a..01076f401 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -315,6 +315,7 @@ intel_xe_progs = [ > 'xe_vm', > 'xe_waitfence', > 'xe_spin_batch', > + 'xe_sriov_auto_provisioning', > 'xe_sriov_flr', > 'xe_sysfs_defaults', > 'xe_sysfs_preempt_timeout', LGTM, Reviewed-by: Lukasz Laguna -------------- next part -------------- An HTML attachment was scrubbed... URL: From lukasz.laguna at intel.com Wed Jan 15 16:06:51 2025 From: lukasz.laguna at intel.com (Laguna, Lukasz) Date: Wed, 15 Jan 2025 17:06:51 +0100 Subject: [PATCH v2 i-g-t 7/7] tests/xe_sriov_auto_provisioning: Add 'extended' command line option In-Reply-To: <20250114150848.332708-8-marcin.bernatowicz@linux.intel.com> References: <20250114150848.332708-1-marcin.bernatowicz@linux.intel.com> <20250114150848.332708-8-marcin.bernatowicz@linux.intel.com> Message-ID: On 1/14/2025 16:08, Marcin Bernatowicz wrote: > By default, a dynamic subtest is executed with a random num_vfs to limit > execution time. Add an 'extended' command line option to enable > iteration over all possible num_vfs. > > Signed-off-by: Marcin Bernatowicz > Cc: Adam Miszczak > Cc: Jakub Kolakowski > Cc: Lukasz Laguna > Cc: Micha? Wajdeczko > Cc: Micha? Winiarski > Cc: Narasimha C V > Cc: Piotr Pi?rkowski > Cc: Satyanarayana K V P > Cc: Tomasz Lis > --- > tests/intel/xe_sriov_auto_provisioning.c | 40 +++++++++++++++++++++++- > 1 file changed, 39 insertions(+), 1 deletion(-) > > diff --git a/tests/intel/xe_sriov_auto_provisioning.c b/tests/intel/xe_sriov_auto_provisioning.c > index 1d2aa8624..e13eb3644 100644 > --- a/tests/intel/xe_sriov_auto_provisioning.c > +++ b/tests/intel/xe_sriov_auto_provisioning.c > @@ -216,7 +216,30 @@ static void exclusive_ranges(int pf_fd, unsigned int num_vfs) > igt_fail_on_f(fails, "exclusive ranges check failed\n"); > } > > -igt_main > +static bool extended_scope; > + > +static int opts_handler(int opt, int opt_index, void *data) > +{ > + switch (opt) { > + case 'e': > + extended_scope = true; > + break; > + default: > + return IGT_OPT_HANDLER_ERROR; > + } > + > + return IGT_OPT_HANDLER_SUCCESS; > +} > + > +static const struct option long_opts[] = { > + { .name = "extended", .has_arg = false, .val = 'e', }, > + {} > +}; > + > +static const char help_str[] = > + " --extended\tRun the extended test scope\n"; nit: "?? -e, --extended\t ..." > + > +igt_main_args("", long_opts, help_str, opts_handler, NULL) > { > enum xe_sriov_shared_res res; > unsigned int gt; > @@ -245,6 +268,11 @@ igt_main > > igt_describe("Verify that auto-provisioned resources are allocated by PF driver in fairly manner"); > igt_subtest_with_dynamic("fair-allocation") { > + if (extended_scope) > + for_each_sriov_num_vfs(pf_fd, num_vfs) > + igt_dynamic_f("numvfs-%d", num_vfs) > + fair_allocation(pf_fd, num_vfs); > + > for_random_sriov_num_vfs(pf_fd, num_vfs) { > igt_dynamic_f("numvfs-random") { > igt_debug("numvfs=%u\n", num_vfs); > @@ -255,6 +283,11 @@ igt_main > > igt_describe("Verify that auto-provisioned resources are released once VFs are disabled"); > igt_subtest_with_dynamic("resources-released-on-vfs-disabling") { > + if (extended_scope) > + for_each_sriov_num_vfs(pf_fd, num_vfs) > + igt_dynamic_f("numvfs-%d", num_vfs) > + resources_released_on_vfs_disabling(pf_fd, num_vfs); > + > for_random_sriov_num_vfs(pf_fd, num_vfs) { > igt_dynamic_f("numvfs-random") { > igt_debug("numvfs=%u\n", num_vfs); > @@ -269,6 +302,11 @@ igt_main > > igt_skip_on(total_vfs < 2); > > + if (extended_scope) > + for_each_sriov_num_vfs(pf_fd, num_vfs) > + igt_dynamic_f("numvfs-%d", num_vfs) > + exclusive_ranges(pf_fd, num_vfs); > + > for_random_sriov_vf_in_range(pf_fd, 2, total_vfs, num_vfs) { > igt_dynamic_f("numvfs-random") { > igt_debug("numvfs=%u\n", num_vfs); One small nit, but looks good overall: Reviewed-by: Lukasz Laguna -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Wed Jan 15 17:39:32 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 17:39:32 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_add_test_to_validate_uhbr/?= =?utf-8?q?non-uhbr_over_sst/mst_=28rev2=29?= In-Reply-To: <20250115073243.2002014-1-kunal1.joshi@intel.com> References: <20250115073243.2002014-1-kunal1.joshi@intel.com> Message-ID: <173696277240.4026096.2858242906878847313@b555e5b46a47> == Series Details == Series: add test to validate uhbr/non-uhbr over sst/mst (rev2) URL : https://patchwork.freedesktop.org/series/143039/ State : failure == Summary == CI Bug Log - changes from XEIGT_8190_full -> XEIGTPW_12440_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12440_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12440_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_12440_full: ### IGT changes ### #### Possible regressions #### * igt at kms_feature_discovery@non-uhbr-mst (NEW): - shard-bmg: NOTRUN -> [SKIP][1] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_feature_discovery@non-uhbr-mst.html - shard-dg2-set2: NOTRUN -> [SKIP][2] +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_feature_discovery@non-uhbr-mst.html * igt at kms_feature_discovery@uhbr-mst (NEW): - shard-lnl: NOTRUN -> [SKIP][3] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-5/igt at kms_feature_discovery@uhbr-mst.html * igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3: - shard-bmg: [PASS][4] -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html * igt at kms_flip@plain-flip-ts-check at a-hdmi-a2: - shard-dg2-set2: NOTRUN -> [FAIL][6] +2 other tests fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-432/igt at kms_flip@plain-flip-ts-check at a-hdmi-a2.html * igt at xe_pm_residency@cpg-basic: - shard-dg2-set2: [PASS][7] -> [INCOMPLETE][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at xe_pm_residency@cpg-basic.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-435/igt at xe_pm_residency@cpg-basic.html #### Warnings #### * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-a: - shard-bmg: [SKIP][9] ([Intel XE#2763]) -> [INCOMPLETE][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-a.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-a.html New tests --------- New tests have been introduced between XEIGT_8190_full and XEIGTPW_12440_full: ### New IGT tests (5) ### * igt at kms_feature_discovery@non-uhbr-mst: - Statuses : 2 skip(s) - Exec time: [0.09, 0.11] s * igt at kms_feature_discovery@non-uhbr-sst: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0, 0.30] s * igt at kms_feature_discovery@uhbr-mst: - Statuses : 3 skip(s) - Exec time: [0.0, 0.11] s * igt at kms_feature_discovery@uhbr-sst: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_rotation_crc: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in XEIGTPW_12440_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1885]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at core_hotunplug@hotreplug-lateclose.html - shard-lnl: NOTRUN -> [ABORT][12] ([Intel XE#3914]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-5/igt at core_hotunplug@hotreplug-lateclose.html - shard-bmg: [PASS][13] -> [SKIP][14] ([Intel XE#1885]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at core_hotunplug@hotreplug-lateclose.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at core_hotunplug@hotreplug-lateclose.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#873]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-433/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#3768]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316]) +4 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-436/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1407]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-5/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-bmg: [PASS][19] -> [SKIP][20] ([Intel XE#2136] / [Intel XE#2231]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-5/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html - shard-dg2-set2: [PASS][21] -> [SKIP][22] ([Intel XE#2136]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#610]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-433/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +11 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-436/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1477]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-5/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-6/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#1124]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-1/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2191]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-6/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2191]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-463/igt at kms_bw@connected-linear-tiling-4-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_12440/shard-lnl-7/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#367]) +7 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_bw@linear-tiling-3-displays-2160x1440p.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-4/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-b-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#787]) +188 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-432/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-b-dp-2.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#3432]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-5/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-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#3442]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-a-dp-2.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#2907]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-433/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-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#455] / [Intel XE#787]) +38 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][40] ([Intel XE#1727] / [Intel XE#3124]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-435/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: NOTRUN -> [INCOMPLETE][41] ([Intel XE#3124]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-435/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-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][42] ([Intel XE#1727] / [Intel XE#3113]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-435/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-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#2136]) +7 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html * igt at kms_chamelium_color@ctm-limited-range: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#306]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-2/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#306]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-436/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2252]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#373]) +16 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-432/igt at kms_chamelium_hpd@vga-hpd.html - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#373]) +4 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-1/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_content_protection@lic-type-1: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2341]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-4/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][50] ([Intel XE#1178]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-434/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_content_protection@type1: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#3278]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-4/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-64x21: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1424]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-4/igt at kms_cursor_crc@cursor-offscreen-64x21.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#308]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-433/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#2321]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-7/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#2291]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#309]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-5/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [PASS][58] -> [DMESG-WARN][59] ([Intel XE#877]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#3007]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([i915#3804]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-6.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#701]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-435/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@psr1: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1135]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-463/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1421]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-4/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][65] -> [FAIL][66] ([Intel XE#301]) +6 other tests fail [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-463/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 ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][67] ([Intel XE#301]) +4 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-plain-flip-interruptible: - shard-bmg: [PASS][68] -> [SKIP][69] ([Intel XE#2316]) +5 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-5/igt at kms_flip@2x-plain-flip-interruptible.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at kms_flip@2x-plain-flip-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-lnl: [PASS][70] -> [INCOMPLETE][71] ([Intel XE#2049]) +1 other test incomplete [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-1/igt at kms_flip@flip-vs-suspend-interruptible.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-7/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend at d-dp2: - shard-bmg: [PASS][72] -> [INCOMPLETE][73] ([Intel XE#2597]) +1 other test incomplete [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-5/igt at kms_flip@flip-vs-suspend at d-dp2.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-4/igt at kms_flip@flip-vs-suspend at d-dp2.html * igt at kms_flip@plain-flip-ts-check: - shard-dg2-set2: NOTRUN -> [FAIL][74] ([Intel XE#886]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-432/igt at kms_flip@plain-flip-ts-check.html * igt at kms_flip@plain-flip-ts-check at a-edp1: - shard-lnl: [PASS][75] -> [FAIL][76] ([Intel XE#886]) +3 other tests fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-7/igt at kms_flip@plain-flip-ts-check at a-edp1.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-4/igt at kms_flip@plain-flip-ts-check at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2293]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1401]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([i915#5274]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-463/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#651]) +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-2/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2311]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-rte: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#656]) +17 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-5/igt at kms_frontbuffer_tracking@drrs-2p-rte.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#651]) +41 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2136] / [Intel XE#2231]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html - shard-dg2-set2: [PASS][86] -> [SKIP][87] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2313]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#1158]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-436/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#653]) +37 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1503]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-8/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2925]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-435/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-2-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][94] ([Intel XE#616]) +2 other tests fail [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-432/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-2-size-256.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][95] -> [SKIP][96] ([Intel XE#2571]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][97] -> [FAIL][98] ([Intel XE#361]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-433/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#2763]) +7 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-8/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2-set2: [PASS][100] -> [SKIP][101] ([Intel XE#2423] / [i915#2575]) +13 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.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]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/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-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-433/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2763]) +8 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#870]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-434/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#908]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-463/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1439] / [Intel XE#3141]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-5/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-bmg: [PASS][108] -> [SKIP][109] ([Intel XE#2446]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_pm_rpm@modeset-non-lpsp-stress.html - shard-dg2-set2: [PASS][110] -> [SKIP][111] ([Intel XE#2446]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#2893]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-8/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1489]) +12 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#1122]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2850] / [Intel XE#929]) +16 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-basic: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2234] / [Intel XE#2850]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-2/igt at kms_psr@pr-basic.html * igt at kms_psr@pr-sprite-plane-move: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1406]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-7/igt at kms_psr@pr-sprite-plane-move.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#3414]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-435/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1127]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_sequence@get-idle: - shard-bmg: [PASS][120] -> [SKIP][121] ([Intel XE#3007]) +14 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at kms_sequence@get-idle.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_sequence@get-idle.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#1500]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@cmrr: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2168]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_vrr@cmrr.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][124] -> [FAIL][125] ([Intel XE#2159]) +1 other test fail [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-4/igt at kms_vrr@cmrr at pipe-a-edp-1.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-1/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flip-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#455]) +28 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-434/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1499]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-2/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-fb-id: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#756]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-4/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#756]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-463/igt at kms_writeback@writeback-pixel-formats.html * igt at xe_compute@ccs-mode-basic: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1447]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-1/igt at xe_compute@ccs-mode-basic.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#1280] / [Intel XE#455]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#1123]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-435/igt at xe_copy_basic@mem-copy-linear-0x369.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#1126]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-434/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#2905]) +14 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at xe_eudebug@basic-close.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#3889]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-433/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#3889]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-3/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#2905]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-5/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: NOTRUN -> [TIMEOUT][138] ([Intel XE#1473]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-8/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_evict@evict-beng-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#688]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-6/igt at xe_evict@evict-beng-threads-large-multi-vm.html * igt at xe_evict@evict-beng-threads-small: - shard-dg2-set2: [PASS][140] -> [SKIP][141] ([Intel XE#1130]) +27 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at xe_evict@evict-beng-threads-small.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at xe_evict@evict-beng-threads-small.html * igt at xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#1130]) +9 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1392]) +5 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-6/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1392]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-432/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-once-null: - shard-dg2-set2: [PASS][145] -> [SKIP][146] ([Intel XE#1392]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at xe_exec_basic@multigpu-once-null.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-432/igt at xe_exec_basic@multigpu-once-null.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm: - shard-bmg: [PASS][147] -> [SKIP][148] ([Intel XE#1130]) +37 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#288]) +33 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_gt_freq@freq_suspend: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#584]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-8/igt at xe_gt_freq@freq_suspend.html * igt at xe_live_ktest@xe_migrate: - shard-bmg: [PASS][151] -> [SKIP][152] ([Intel XE#1192]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at xe_live_ktest@xe_migrate.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at xe_live_ktest@xe_migrate.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#2229]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-463/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#378]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-8/igt at xe_module_load@force-load.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#2541] / [Intel XE#3573]) +11 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-435/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#979]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-433/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][157] ([Intel XE#1173]) +1 other test fail [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#2284]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-1/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-basic-exec: - shard-dg2-set2: NOTRUN -> [ABORT][159] ([Intel XE#1358]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-432/igt at xe_pm@s2idle-basic-exec.html * igt at xe_pm@s4-exec-after: - shard-lnl: [PASS][160] -> [ABORT][161] ([Intel XE#1358] / [Intel XE#1607]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-4/igt at xe_pm@s4-exec-after.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-2/igt at xe_pm@s4-exec-after.html * igt at xe_pm@s4-mocs: - shard-dg2-set2: [PASS][162] -> [ABORT][163] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at xe_pm@s4-mocs.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-432/igt at xe_pm@s4-mocs.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#579]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-436/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#944]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-1/igt at xe_query@multigpu-query-topology-l3-bank-mask.html * igt at xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#944]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-463/igt at xe_query@multigpu-query-uc-fw-version-guc.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#3342]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-7/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_wedged@wedged-mode-toggle: - shard-dg2-set2: NOTRUN -> [ABORT][168] ([Intel XE#3075] / [Intel XE#3084]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-435/igt at xe_wedged@wedged-mode-toggle.html #### Possible fixes #### * igt at kms_addfb_basic@addfb25-modifier-no-flag: - shard-dg2-set2: [SKIP][169] ([Intel XE#2423] / [i915#2575]) -> [PASS][170] +8 other tests pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_addfb_basic@addfb25-modifier-no-flag.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-435/igt at kms_addfb_basic@addfb25-modifier-no-flag.html * igt at kms_big_fb@4-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][171] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][172] +1 other test pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_big_fb@4-tiled-32bpp-rotate-0.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-1/igt at kms_big_fb@4-tiled-32bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][173] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-8/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][175] ([Intel XE#3862]) -> [PASS][176] +1 other test pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-436/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-bmg: [FAIL][177] -> [PASS][178] +1 other test pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-8/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs at pipe-a-dp-2: - shard-bmg: [FAIL][179] ([Intel XE#3847]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs at pipe-a-dp-2.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-8/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs at pipe-a-dp-2.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][181] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-434/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-b-dp-4: - shard-dg2-set2: [DMESG-WARN][183] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][185] ([Intel XE#3124]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [SKIP][187] ([Intel XE#2291]) -> [PASS][188] +2 other tests pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-2/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [FAIL][189] ([Intel XE#1475]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-7/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][191] ([Intel XE#3070]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_dp_linktrain_fallback@dp-fallback.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-4/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_fbcon_fbt@fbc: - shard-dg2-set2: [SKIP][193] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][194] +2 other tests pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_fbcon_fbt@fbc.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-463/igt at kms_fbcon_fbt@fbc.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-dg2-set2: [ABORT][195] -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at kms_fbcon_fbt@fbc-suspend.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-436/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_flip@2x-blocking-absolute-wf_vblank: - shard-bmg: [SKIP][197] ([Intel XE#2316]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_flip@2x-blocking-absolute-wf_vblank.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-4/igt at kms_flip@2x-blocking-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][199] ([Intel XE#2882]) -> [PASS][200] +1 other test pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][201] ([Intel XE#2882] / [Intel XE#3820]) -> [PASS][202] +1 other test pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2: - shard-bmg: [FAIL][203] ([Intel XE#3820]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-2/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: [FAIL][205] ([Intel XE#301]) -> [PASS][206] +4 other tests pass [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6.html * igt at kms_flip@wf_vblank-ts-check-interruptible at c-edp1: - shard-lnl: [FAIL][207] ([Intel XE#886]) -> [PASS][208] +1 other test pass [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-2/igt at kms_flip@wf_vblank-ts-check-interruptible at c-edp1.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-6/igt at kms_flip@wf_vblank-ts-check-interruptible at c-edp1.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][209] ([Intel XE#2136]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3: - shard-bmg: [DMESG-WARN][211] ([Intel XE#877]) -> [PASS][212] +1 other test pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-3.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4: - shard-dg2-set2: [FAIL][213] ([Intel XE#361]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-433/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html * igt at kms_sequence@get-busy: - shard-bmg: [SKIP][215] ([Intel XE#3007]) -> [PASS][216] +5 other tests pass [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_sequence@get-busy.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at kms_sequence@get-busy.html * igt at kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [ABORT][217] ([Intel XE#2625] / [Intel XE#4057]) -> [PASS][218] +1 other test pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-433/igt at kms_vblank@ts-continuation-suspend.html * igt at xe_exec_threads@threads-bal-shared-vm-rebind: - shard-bmg: [SKIP][219] ([Intel XE#1130]) -> [PASS][220] +13 other tests pass [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_exec_threads@threads-bal-shared-vm-rebind.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at xe_exec_threads@threads-bal-shared-vm-rebind.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [ABORT][221] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][222] +1 other test pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-436/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_pm@s3-basic-exec: - shard-dg2-set2: [ABORT][223] ([Intel XE#1358]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_pm@s3-basic-exec.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-434/igt at xe_pm@s3-basic-exec.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][225] ([Intel XE#958]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-2/igt at xe_pm_residency@toggle-gt-c6.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-1/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_vm@large-split-misaligned-binds-2147483648: - shard-dg2-set2: [SKIP][227] ([Intel XE#1130]) -> [PASS][228] +8 other tests pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_vm@large-split-misaligned-binds-2147483648.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-434/igt at xe_vm@large-split-misaligned-binds-2147483648.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][229] ([Intel XE#2233]) -> [SKIP][230] ([Intel XE#3007]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-dg2-set2: [SKIP][231] ([Intel XE#623]) -> [SKIP][232] ([Intel XE#2423] / [i915#2575]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_atomic_transition@modeset-transition: - shard-bmg: [INCOMPLETE][233] ([Intel XE#2613]) -> [SKIP][234] ([Intel XE#3007]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_atomic_transition@modeset-transition.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_atomic_transition@modeset-transition.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-bmg: [SKIP][235] ([Intel XE#2327]) -> [SKIP][236] ([Intel XE#2136] / [Intel XE#2231]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_big_fb@linear-64bpp-rotate-90.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_big_fb@linear-64bpp-rotate-90.html - shard-dg2-set2: [SKIP][237] ([Intel XE#316]) -> [SKIP][238] ([Intel XE#2136]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_big_fb@linear-64bpp-rotate-90.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: [SKIP][239] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][240] ([Intel XE#1124]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-1/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html - shard-dg2-set2: [SKIP][241] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][242] ([Intel XE#1124]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-434/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][243] ([Intel XE#1124]) -> [SKIP][244] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html - shard-dg2-set2: [SKIP][245] ([Intel XE#1124]) -> [SKIP][246] ([Intel XE#2136] / [Intel XE#2351]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg2-set2: [SKIP][247] ([Intel XE#1124]) -> [SKIP][248] ([Intel XE#2136]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-bmg: [SKIP][249] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][250] ([Intel XE#3007]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt at kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][251] ([Intel XE#367]) -> [SKIP][252] ([Intel XE#3007]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html - shard-dg2-set2: [SKIP][253] ([Intel XE#367]) -> [SKIP][254] ([Intel XE#2423] / [i915#2575]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html * igt at kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-bmg: [SKIP][255] ([Intel XE#2887]) -> [SKIP][256] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at kms_ccs@crc-primary-basic-y-tiled-ccs.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][257] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][258] ([Intel XE#2136]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html * igt at kms_chamelium_edid@hdmi-mode-timings: - shard-dg2-set2: [SKIP][259] ([Intel XE#373]) -> [SKIP][260] ([Intel XE#2423] / [i915#2575]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_chamelium_edid@hdmi-mode-timings.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_chamelium_edid@hdmi-mode-timings.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: [SKIP][261] ([Intel XE#3007]) -> [SKIP][262] ([Intel XE#2252]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-storm.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-1/igt at kms_chamelium_hpd@dp-hpd-storm.html - shard-dg2-set2: [SKIP][263] ([Intel XE#2423] / [i915#2575]) -> [SKIP][264] ([Intel XE#373]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_chamelium_hpd@dp-hpd-storm.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-463/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_chamelium_hpd@vga-hpd-after-hibernate: - shard-bmg: [SKIP][265] ([Intel XE#2252]) -> [SKIP][266] ([Intel XE#3007]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_chamelium_hpd@vga-hpd-after-hibernate.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_chamelium_hpd@vga-hpd-after-hibernate.html * igt at kms_content_protection@lic-type-0: - shard-bmg: [FAIL][267] ([Intel XE#1178]) -> [SKIP][268] ([Intel XE#2341]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_content_protection@lic-type-0.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@uevent: - shard-bmg: [FAIL][269] ([Intel XE#1188]) -> [SKIP][270] ([Intel XE#2341]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_content_protection@uevent.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-max-size: - shard-bmg: [SKIP][271] ([Intel XE#2320]) -> [SKIP][272] ([Intel XE#3007]) +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-max-size.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-max-size.html * igt at kms_fbcon_fbt@fbc: - shard-bmg: [SKIP][273] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][274] ([Intel XE#1695]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_fbcon_fbt@fbc.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at kms_fbcon_fbt@fbc.html * igt at kms_fbcon_fbt@psr: - shard-bmg: [SKIP][275] ([Intel XE#776]) -> [SKIP][276] ([Intel XE#2136] / [Intel XE#2231]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_fbcon_fbt@psr.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_fbcon_fbt@psr.html - shard-dg2-set2: [SKIP][277] ([Intel XE#776]) -> [SKIP][278] ([Intel XE#2136]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_fbcon_fbt@psr.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@psr2: - shard-bmg: [SKIP][279] ([Intel XE#2374]) -> [SKIP][280] ([Intel XE#3007]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at kms_feature_discovery@psr2.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_feature_discovery@psr2.html * igt at kms_flip@wf_vblank-ts-check-interruptible: - shard-lnl: [FAIL][281] ([Intel XE#3149] / [Intel XE#886]) -> [FAIL][282] ([Intel XE#886]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-lnl-2/igt at kms_flip@wf_vblank-ts-check-interruptible.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-lnl-6/igt at kms_flip@wf_vblank-ts-check-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][283] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][284] ([Intel XE#2293] / [Intel XE#2380]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: [SKIP][285] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][286] ([Intel XE#2136] / [Intel XE#2231]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][287] ([Intel XE#455]) -> [SKIP][288] ([Intel XE#2136] / [Intel XE#2351]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][289] ([Intel XE#651]) -> [SKIP][290] ([Intel XE#2136] / [Intel XE#2351]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][291] ([Intel XE#651]) -> [SKIP][292] ([Intel XE#2136]) +2 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][293] ([Intel XE#2311]) -> [SKIP][294] ([Intel XE#2312]) +14 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][295] ([Intel XE#2312]) -> [SKIP][296] ([Intel XE#2311]) +7 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: [SKIP][297] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][298] ([Intel XE#651]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html - shard-bmg: [SKIP][299] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][300] ([Intel XE#2311]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][301] ([Intel XE#2333]) -> [SKIP][302] ([Intel XE#2312]) +8 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][303] ([Intel XE#2312]) -> [FAIL][304] ([Intel XE#2333]) +3 other tests fail [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][305] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][306] ([Intel XE#2333]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][307] ([Intel XE#2333]) -> [SKIP][308] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][309] ([Intel XE#2311]) -> [SKIP][310] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][311] ([Intel XE#2136]) -> [SKIP][312] ([Intel XE#651]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][313] ([Intel XE#658]) -> [SKIP][314] ([Intel XE#2136] / [Intel XE#2351]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html - shard-bmg: [SKIP][315] ([Intel XE#2352]) -> [SKIP][316] ([Intel XE#2136] / [Intel XE#2231]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: - shard-dg2-set2: [SKIP][317] ([Intel XE#653]) -> [SKIP][318] ([Intel XE#2136]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][319] ([Intel XE#2313]) -> [SKIP][320] ([Intel XE#2312]) +14 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-dg2-set2: [SKIP][321] ([Intel XE#2136]) -> [SKIP][322] ([Intel XE#653]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move: - shard-bmg: [SKIP][323] ([Intel XE#2313]) -> [SKIP][324] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][325] ([Intel XE#653]) -> [SKIP][326] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][327] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][328] ([Intel XE#2313]) +2 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][329] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][330] ([Intel XE#2312]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][331] ([Intel XE#2312]) -> [SKIP][332] ([Intel XE#2313]) +6 other tests skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][333] ([Intel XE#2312]) -> [SKIP][334] ([Intel XE#2136] / [Intel XE#2231]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][335] ([Intel XE#346]) -> [SKIP][336] ([Intel XE#2136] / [Intel XE#2231]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-6/igt at kms_joiner@invalid-modeset-big-joiner.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-bmg: [SKIP][337] ([Intel XE#2763]) -> [INCOMPLETE][338] ([Intel XE#2566]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-8/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-bmg: [SKIP][339] ([Intel XE#3007]) -> [SKIP][340] ([Intel XE#2763]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][341] ([Intel XE#2136]) -> [SKIP][342] ([Intel XE#3309]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_pm_dc@dc5-retention-flops.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-432/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][343] ([Intel XE#1489]) -> [SKIP][344] ([Intel XE#2136]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html - shard-bmg: [SKIP][345] ([Intel XE#1489]) -> [SKIP][346] ([Intel XE#2136] / [Intel XE#2231]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-bmg: [SKIP][347] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][348] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_psr@fbc-pr-cursor-plane-onoff.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at kms_psr@fbc-pr-cursor-plane-onoff.html - shard-dg2-set2: [SKIP][349] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][350] ([Intel XE#2136]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_psr@fbc-pr-cursor-plane-onoff.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@psr2-primary-blt: - shard-dg2-set2: [SKIP][351] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][352] ([Intel XE#2136] / [Intel XE#2351]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at kms_psr@psr2-primary-blt.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at kms_psr@psr2-primary-blt.html * igt at kms_psr@psr2-primary-page-flip: - shard-dg2-set2: [SKIP][353] ([Intel XE#2136]) -> [SKIP][354] ([Intel XE#2850] / [Intel XE#929]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_psr@psr2-primary-page-flip.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-433/igt at kms_psr@psr2-primary-page-flip.html * igt at kms_rotation_crc@primary-rotation-270: - shard-bmg: [SKIP][355] ([Intel XE#3007]) -> [SKIP][356] ([Intel XE#3414] / [Intel XE#3904]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at kms_rotation_crc@primary-rotation-270.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-2/igt at kms_rotation_crc@primary-rotation-270.html - shard-dg2-set2: [SKIP][357] ([Intel XE#2423] / [i915#2575]) -> [SKIP][358] ([Intel XE#3414]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at kms_rotation_crc@primary-rotation-270.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-433/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][359] ([Intel XE#2426]) -> [FAIL][360] ([Intel XE#1729]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at kms_tiled_display@basic-test-pattern.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: [SKIP][361] ([Intel XE#1130]) -> [SKIP][362] ([Intel XE#2905]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_eudebug@basic-vm-access.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-8/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug_online@single-step-one: - shard-bmg: [SKIP][363] ([Intel XE#2905]) -> [SKIP][364] ([Intel XE#1130]) +2 other tests skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at xe_eudebug_online@single-step-one.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at xe_eudebug_online@single-step-one.html - shard-dg2-set2: [SKIP][365] ([Intel XE#2905]) -> [SKIP][366] ([Intel XE#1130]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_eudebug_online@single-step-one.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at xe_eudebug_online@single-step-one.html * igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: - shard-dg2-set2: [SKIP][367] ([Intel XE#1130]) -> [SKIP][368] ([Intel XE#2905]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-433/igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html * igt at xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][369] ([Intel XE#1000]) -> [TIMEOUT][370] ([Intel XE#1473]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at xe_evict@evict-beng-threads-large.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-4/igt at xe_evict@evict-beng-threads-large.html * igt at xe_evict@evict-mixed-many-threads-large: - shard-bmg: [TIMEOUT][371] ([Intel XE#1473]) -> [INCOMPLETE][372] ([Intel XE#1473]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-5/igt at xe_evict@evict-mixed-many-threads-large.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-6/igt at xe_evict@evict-mixed-many-threads-large.html * igt at xe_exec_basic@multigpu-once-null-defer-bind: - shard-bmg: [SKIP][373] ([Intel XE#1130]) -> [SKIP][374] ([Intel XE#2322]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_exec_basic@multigpu-once-null-defer-bind.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at xe_exec_basic@multigpu-once-null-defer-bind.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][375] ([Intel XE#2322]) -> [SKIP][376] ([Intel XE#1130]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-2/igt at xe_exec_basic@multigpu-once-null-rebind.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch: - shard-dg2-set2: [SKIP][377] ([Intel XE#1130]) -> [SKIP][378] ([Intel XE#288]) +2 other tests skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-434/igt at xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm: - shard-dg2-set2: [SKIP][379] ([Intel XE#288]) -> [SKIP][380] ([Intel XE#1130]) +2 other tests skip [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-433/igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html * igt at xe_mmap@pci-membarrier-bad-object: - shard-bmg: [SKIP][381] ([Intel XE#4045]) -> [SKIP][382] ([Intel XE#1130]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-4/igt at xe_mmap@pci-membarrier-bad-object.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at xe_mmap@pci-membarrier-bad-object.html * igt at xe_oa@non-privileged-access-vaddr: - shard-dg2-set2: [SKIP][383] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][384] ([Intel XE#1130]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-434/igt at xe_oa@non-privileged-access-vaddr.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at xe_oa@non-privileged-access-vaddr.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-bmg: [SKIP][385] ([Intel XE#2284]) -> [SKIP][386] ([Intel XE#1130]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-3/igt at xe_pm@s4-d3cold-basic-exec.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at xe_pm@s4-d3cold-basic-exec.html - shard-dg2-set2: [SKIP][387] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][388] ([Intel XE#1130]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-432/igt at xe_pm@s4-d3cold-basic-exec.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-bmg: [SKIP][389] ([Intel XE#944]) -> [SKIP][390] ([Intel XE#1130]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-bmg-8/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-bmg-5/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html - shard-dg2-set2: [SKIP][391] ([Intel XE#944]) -> [SKIP][392] ([Intel XE#1130]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8190/shard-dg2-464/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/shard-dg2-464/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [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#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [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#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#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [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#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [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#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#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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [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#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [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#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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820 [Intel XE#3847]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3847 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4057]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4057 [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#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#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#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8190 -> IGTPW_12440 * Linux: xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db -> xe-2491-1add93ce0468986a45532aa0a83e7c5976110d7b IGTPW_12440: 12440 IGT_8190: db6e252e00bc44f90b678d547e93b3f02c02c6de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2483-1c464719f6d86a08c91e6ed5d64db83b166788db: 1c464719f6d86a08c91e6ed5d64db83b166788db xe-2491-1add93ce0468986a45532aa0a83e7c5976110d7b: 1add93ce0468986a45532aa0a83e7c5976110d7b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12440/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Wed Jan 15 17:42:09 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Wed, 15 Jan 2025 18:42:09 +0100 Subject: =?utf-8?B?4pyXIGk5MTUuQ0kuRnVsbDogZmFpbHVy?= =?utf-8?Q?e?= for tests/intel-ci: Fix a syntax err in xe.blocklist.txt In-Reply-To: <173695488863.3988582.6235434483664173814@b555e5b46a47> References: <20250114173523.3267049-1-oak.zeng@intel.com> <173695488863.3988582.6235434483664173814@b555e5b46a47> Message-ID: <20250115174209.tncafjjea6w5ajc6@kamilkon-desk.igk.intel.com> Hi igt-dev, On 2025-01-15 at 15:28:08 -0000, Patchwork wrote: below are unrelated to xe blocklist change. Regards, Kamil > == Series Details == > > Series: tests/intel-ci: Fix a syntax err in xe.blocklist.txt > URL : https://patchwork.freedesktop.org/series/143518/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_15955_full -> IGTPW_12437_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12437_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12437_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_12437/index.html > > Participating hosts (12 -> 12) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12437_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at gem_pxp@hw-rejects-pxp-buffer: > - shard-rkl: NOTRUN -> [FAIL][1] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-2/igt at gem_pxp@hw-rejects-pxp-buffer.html > > * igt at i915_module_load@reload-with-fault-injection: > - shard-rkl: [PASS][2] -> [ABORT][3] > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-rkl-2/igt at i915_module_load@reload-with-fault-injection.html > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-rkl-2/igt at i915_module_load@reload-with-fault-injection.html > > * igt at i915_selftest@live at execlists: > - shard-glk: [PASS][4] -> [INCOMPLETE][5] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15955/shard-glk1/igt at i915_selftest@live at execlists.html > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-glk2/igt at i915_selftest@live at execlists.html > > * igt at kms_flip@plain-flip-ts-check-interruptible at a-hdmi-a1: > - shard-tglu-1: NOTRUN -> [FAIL][6] > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/shard-tglu-1/igt at kms_flip@plain-flip-ts-check-interruptible at a-hdmi-a1.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_12437_full that come from known issues: > ...cut... > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12437/index.html From patchwork at emeril.freedesktop.org Wed Jan 15 18:59:50 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 18:59:50 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EFull=3A_success_for_tests/kms=5Fplane=5Fscal?= =?utf-8?q?ing=3A_get_mode_only_after_setting_the_output_pipe?= In-Reply-To: <20250110123403.1818011-1-luciano.coelho@intel.com> References: <20250110123403.1818011-1-luciano.coelho@intel.com> Message-ID: <173696759065.4059606.12310222084677024146@b555e5b46a47> == Series Details == Series: tests/kms_plane_scaling: get mode only after setting the output pipe URL : https://patchwork.freedesktop.org/series/143388/ State : success == Summary == CI Bug Log - changes from CI_DRM_15942_full -> IGTPW_12425_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/index.html Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_12425_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][1] ([i915#8411]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8411]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-5/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#9318]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-3/igt at debugfs_test@basic-hwmon.html - shard-rkl: NOTRUN -> [SKIP][5] ([i915#9318]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-4/igt at debugfs_test@basic-hwmon.html - shard-tglu: NOTRUN -> [SKIP][6] ([i915#9318]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at debugfs_test@basic-hwmon.html * igt at debugfs_test@read_all_entries: - shard-mtlp: [PASS][7] -> [ABORT][8] ([i915#13343]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-7/igt at debugfs_test@read_all_entries.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at debugfs_test@read_all_entries.html * igt at device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at device_reset@cold-reset-bound.html * igt at device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [ABORT][10] ([i915#11814] / [i915#11815] / [i915#9413]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at device_reset@unbind-reset-rebind.html * igt at drm_fdinfo@busy-check-all at bcs0: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +5 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at drm_fdinfo@busy-check-all at bcs0.html * igt at drm_fdinfo@busy-check-all at ccs0: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) +6 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-2/igt at drm_fdinfo@busy-check-all at ccs0.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +23 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at gem_basic@multigpu-create-close.html * igt at gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at gem_caching@reads.html * igt at gem_ccs@block-multicopy-inplace: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-7/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at gem_ccs@ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#6335]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8562]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at gem_create@create-ext-set-pat.html - shard-rkl: NOTRUN -> [SKIP][23] ([i915#8562]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][24] ([i915#8562]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-9/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +7 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb5/igt at gem_ctx_persistence@engines-mixed-process.html * igt at gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#5882]) +7 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at gem_ctx_persistence@saturated-hostile-nopreempt.html * igt at gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at gem_ctx_sseu@invalid-args.html * igt at gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][28] ([i915#10030] / [i915#7975] / [i915#8213]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-3/igt at gem_eio@hibernate.html * igt at gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at gem_exec_balancer@bonded-false-hang.html * igt at gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#4812]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at gem_exec_balancer@bonded-semaphore.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4036]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-3/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#8555]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#4525]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at gem_exec_balancer@parallel-balancer.html - shard-tglu: NOTRUN -> [SKIP][35] ([i915#4525]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-6/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-keep-in-fence: - shard-tglu-1: NOTRUN -> [SKIP][36] ([i915#4525]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at gem_exec_balancer@parallel-keep-in-fence.html * igt at gem_exec_capture@capture-invisible: - shard-tglu: NOTRUN -> [SKIP][37] ([i915#6334]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-4/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at gem_exec_flush@basic-uc-pro-default.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at gem_exec_flush@basic-uc-rw-default.html * igt at gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +9 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at gem_exec_reloc@basic-gtt.html * igt at gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +5 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at gem_exec_reloc@basic-scanout.html * igt at gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at gem_exec_reloc@basic-wc-read-active.html * igt at gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at gem_exec_schedule@preempt-queue.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4860]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4860]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-5/igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt at gem_lmem_swapping@basic: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at gem_lmem_swapping@basic.html * igt at gem_lmem_swapping@heavy-verify-random: - shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#4613]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at gem_lmem_swapping@heavy-verify-random.html * igt at gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][49] ([i915#4613]) +7 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk7/igt at gem_lmem_swapping@random-engines.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][50] ([i915#5493]) +1 other test timeout [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_madvise@dontneed-before-pwrite: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3282]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at gem_madvise@dontneed-before-pwrite.html * igt at gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#8289]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-3/igt at gem_media_fill@media-fill.html * igt at gem_mmap_gtt@cpuset-basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4077]) +10 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at gem_mmap_gtt@cpuset-basic-small-copy.html * igt at gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4077]) +16 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at gem_mmap_gtt@fault-concurrent-x.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][56] -> [ABORT][57] ([i915#10729]) +1 other test abort [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-2/igt at gem_mmap_offset@clear-via-pagefault.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-3/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-5/igt at gem_mmap_wc@bad-size.html * igt at gem_mmap_wc@invalid-flags: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at gem_mmap_wc@invalid-flags.html * igt at gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +8 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-5/igt at gem_pread@snoop.html - shard-rkl: NOTRUN -> [SKIP][61] ([i915#3282]) +5 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at gem_pread@snoop.html * igt at gem_pwrite@basic-exhaustion: - shard-tglu-1: NOTRUN -> [WARN][62] ([i915#2658]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@create-regular-buffer: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at gem_pxp@create-regular-buffer.html * igt at gem_pxp@create-regular-context-1: - shard-rkl: NOTRUN -> [TIMEOUT][64] ([i915#12917] / [i915#12964]) +1 other test timeout [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at gem_pxp@create-regular-context-1.html * igt at gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4270]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-11/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#13398]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-2/igt at gem_pxp@hw-rejects-pxp-buffer.html - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#13398]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-4/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_readwrite@read-write: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3282]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-6/igt at gem_readwrite@read-write.html * igt at gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#8428]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#5190] / [i915#8428]) +6 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4079]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4079]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][73] ([i915#8411]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4885]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4079]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at gem_tiled_pread_pwrite.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][76] ([i915#13449]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb7/igt at gem_tiled_swapping@non-threaded.html * igt at gem_tiled_wb: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4077]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-4/igt at gem_tiled_wb.html * igt at gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4879]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at gem_unfence_active_buffers.html - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4879]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-6/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@coherency-sync: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at gem_userptr_blits@coherency-sync.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#3323]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#3282] / [i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][86] ([i915#3297]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3297]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_workarounds@suspend-resume-fd: - shard-rkl: NOTRUN -> [DMESG-FAIL][88] ([i915#12964]) +1 other test dmesg-fail [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-4/igt at gem_workarounds@suspend-resume-fd.html * igt at gen9_exec_parse@basic-rejected-ctx-param: - shard-snb: NOTRUN -> [SKIP][89] +373 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb5/igt at gen9_exec_parse@basic-rejected-ctx-param.html * igt at gen9_exec_parse@batch-invalid-length: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at gen9_exec_parse@batch-invalid-length.html * igt at gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at gen9_exec_parse@batch-zero-length.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#2527]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at gen9_exec_parse@bb-start-cmd.html - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#2856]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-1/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at gen9_exec_parse@shadow-peek.html - shard-rkl: NOTRUN -> [SKIP][95] ([i915#2527]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at gen9_exec_parse@shadow-peek.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [DMESG-WARN][96] ([i915#13475]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#7091]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#8399]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at i915_pm_freq_api@freq-basic-api.html * igt at i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#8399]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at i915_pm_freq_api@freq-suspend.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_12425/shard-rkl-7/igt at i915_pm_freq_mult@media-freq at gt0.html - shard-dg1: NOTRUN -> [SKIP][101] ([i915#6590]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0: - shard-dg1: [PASS][102] -> [FAIL][103] ([i915#3591]) +1 other test fail [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-14/igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: [PASS][104] -> [FAIL][105] ([i915#12739] / [i915#3591]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-14/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html * igt at i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#11681]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at i915_pm_rps@thresholds-park.html * igt at i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#4387]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at i915_pm_sseu@full-enable.html * igt at i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#6245]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at i915_query@hwconfig_table.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#5723]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-4/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][110] ([i915#9311]) +1 other test dmesg-warn [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk3/igt at i915_selftest@mock.html * igt at i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][111] -> [INCOMPLETE][112] ([i915#12964] / [i915#4817]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-2/igt at i915_suspend@basic-s3-without-i915.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@debugfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][113] ([i915#4817]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk2/igt at i915_suspend@debugfs-reader.html * igt at i915_suspend@fence-restore-untiled: - shard-rkl: [PASS][114] -> [DMESG-FAIL][115] ([i915#12964]) +2 other tests dmesg-fail [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-1/igt at i915_suspend@fence-restore-untiled.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at i915_suspend@fence-restore-untiled.html * igt at i915_suspend@sysfs-reader: - shard-glk: [PASS][116] -> [INCOMPLETE][117] ([i915#13502]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk2/igt at i915_suspend@sysfs-reader.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk1/igt at i915_suspend@sysfs-reader.html * igt at kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4212]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_addfb_basic@clobberred-modifier.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#12454] / [i915#12712]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/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-hdmi-a-3-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#8709]) +7 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/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-atomic at pipe-b-hdmi-a-3-4-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#8709]) +23 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-3-4-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][122] ([i915#8709]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/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_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#3555]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-6/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][124] ([i915#9531]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][125] ([i915#9531]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][126] ([i915#9531]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#1769] / [i915#3555]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#1769] / [i915#3555]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][129] ([i915#1769] / [i915#3555]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-16bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#5286]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_big_fb@4-tiled-16bpp-rotate-180.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#5286]) +8 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-4/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5286]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at kms_big_fb@4-tiled-64bpp-rotate-270.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_12425/shard-dg1-17/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#5286]) +7 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][135] +15 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][136] ([i915#3638]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#3638]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6187]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-1/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][139] ([i915#4538] / [i915#5190]) +15 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/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-180: - shard-rkl: NOTRUN -> [SKIP][140] +16 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#6095]) +49 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#12313]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#12313]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/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][145] ([i915#6095]) +161 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/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-y-tiled-ccs at pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#6095]) +143 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#6095]) +79 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/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-basic-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#12313]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#6095]) +86 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/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: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#6095]) +13 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][151] ([i915#12796]) +1 other test incomplete [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#12313]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-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_12425/shard-mtlp-5/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-c-edp-1.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/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-rkl: NOTRUN -> [SKIP][155] ([i915#3742]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#11616] / [i915#7213]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-1.html * igt at kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#3742]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_cdclk@plane-scaling.html - shard-tglu: NOTRUN -> [SKIP][158] ([i915#3742]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#4087]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at kms_cdclk@plane-scaling at pipe-c-edp-1.html * igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#4087]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +4 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +5 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_chamelium_frames@dp-crc-single.html * igt at kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +11 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-3/igt at kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt at kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-4/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +7 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +8 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-6/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#9979]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#7118] / [i915#9424]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#9424]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#3116] / [i915#3299]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#3116]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-7/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#6944] / [i915#9424]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-2/igt at kms_content_protection@lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][174] ([i915#9424]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#6944] / [i915#7116] / [i915#7118]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent at pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][177] ([i915#1339] / [i915#7173]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_content_protection@uevent at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#8814]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-4/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#3555]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at kms_cursor_crc@cursor-offscreen-32x32.html - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#8814]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-5/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#13049]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-9/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#3555]) +5 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#13049]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555]) +7 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_cursor_crc@cursor-sliding-32x10.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#13049]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#4103] / [i915#4213]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#4103]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-snb: [PASS][188] -> [SKIP][189] +2 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-snb2/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb2/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#13046] / [i915#5354]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#4103]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][192] ([i915#4103]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_cursor_legacy@torture-move at pipe-b: - shard-rkl: [PASS][193] -> [DMESG-WARN][194] ([i915#12964]) +16 other tests dmesg-warn [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-4/igt at kms_cursor_legacy@torture-move at pipe-b.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_cursor_legacy@torture-move at pipe-b.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#9723]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][196] ([i915#12170]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb2/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][197] ([i915#11968]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb2/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#12402]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#8812]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#8812]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-5/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#3840]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at kms_dsc@dsc-with-formats.html * igt at kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3469]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#2065] / [i915#4854]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-4/igt at kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][204] ([i915#4854]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-11/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#1839]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#1839]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#9337]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#9934]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3637]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-1/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#9934]) +6 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][211] ([i915#12745] / [i915#4839]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk6/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: NOTRUN -> [INCOMPLETE][212] ([i915#4839]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk6/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#3637]) +5 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt at kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#3637]) +9 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at kms_flip@2x-nonexisting-fb-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#9934]) +4 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1: - shard-tglu: [PASS][216] -> [FAIL][217] ([i915#11989]) +1 other test fail [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-tglu-7/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1.html * igt at kms_flip@wf_vblank-ts-check-interruptible at b-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][218] ([i915#11989]) +2 other tests fail [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-6/igt at kms_flip@wf_vblank-ts-check-interruptible at b-hdmi-a1.html * igt at kms_flip@wf_vblank-ts-check at a-edp1: - shard-mtlp: [PASS][219] -> [FAIL][220] ([i915#11989]) +4 other tests fail [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-3/igt at kms_flip@wf_vblank-ts-check at a-edp1.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at kms_flip@wf_vblank-ts-check at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html - shard-rkl: NOTRUN -> [SKIP][222] ([i915#2672] / [i915#3555]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#2672] / [i915#3555]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#2672]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling at pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#2587] / [i915#2672]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/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 at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#2587] / [i915#2672]) +2 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/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-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#2672]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-11/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-tglu: NOTRUN -> [SKIP][229] ([i915#2587] / [i915#2672] / [i915#3555]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/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: NOTRUN -> [SKIP][230] ([i915#2587] / [i915#2672]) +4 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/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-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-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_12425/shard-tglu-9/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#5274]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][235] ([i915#6880]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-dg2: [PASS][236] -> [FAIL][237] ([i915#6880]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#3458]) +24 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#3458] / [i915#4423]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#8708]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#8708]) +17 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-11/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][242] +62 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][243] +20 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][244] +88 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#1825]) +38 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#10433] / [i915#3458]) +2 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#3458]) +6 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#3023]) +24 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][249] +367 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#1825]) +7 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#5354]) +32 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-3/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#8708]) +14 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8228]) +2 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8228]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-5/igt at kms_hdr@static-toggle-dpms.html - shard-dg1: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at kms_hdr@static-toggle-dpms.html * igt at kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-2/igt at kms_hdr@static-toggle-suspend.html * igt at kms_histogram@algo-color: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#13389]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_histogram@algo-color.html - shard-rkl: NOTRUN -> [SKIP][258] ([i915#13389]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_histogram@algo-color.html - shard-tglu: NOTRUN -> [SKIP][259] ([i915#13389]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at kms_histogram@algo-color.html * igt at kms_histogram@global-color: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#13388]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at kms_histogram@global-color.html - shard-dg2: NOTRUN -> [SKIP][261] ([i915#13388]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#10656]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#12394]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#12339]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#10656]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#12388]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#10656]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#6301]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][269] ([i915#6301]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#6301]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-6/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-mtlp: NOTRUN -> [SKIP][271] +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-1/igt at kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][272] ([i915#12756] / [i915#13409] / [i915#13476]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk1/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][273] ([i915#13409] / [i915#13476]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk1/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][274] ([i915#13026]) +1 other test incomplete [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk9/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#8821]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-5/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#12247]) +19 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#12247] / [i915#9423]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-a: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#12247]) +5 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#12247]) +3 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d.html - shard-dg1: NOTRUN -> [SKIP][280] ([i915#12247]) +4 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/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-5-upscale-20x20 at pipe-d: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#12247]) +4 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-4/igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20 at pipe-d.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#12247] / [i915#6953]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/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-tglu-1: NOTRUN -> [SKIP][283] ([i915#12247]) +3 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#9812]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#5354]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at kms_pm_backlight@fade.html * igt at kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][286] ([i915#9812]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at kms_pm_backlight@fade-with-suspend.html - shard-rkl: NOTRUN -> [SKIP][287] ([i915#5354]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#3828]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu-1: NOTRUN -> [FAIL][289] ([i915#9295]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#9340]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-5/igt at kms_pm_lpsp@kms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][291] ([i915#3828]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_pm_lpsp@kms-lpsp.html - shard-tglu: NOTRUN -> [SKIP][292] ([i915#3828]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#9519]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][294] -> [SKIP][295] ([i915#9519]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-2/igt at kms_pm_rpm@modeset-lpsp.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#9519]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#9519]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][298] ([i915#10553]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk8/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#6524]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-4/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#11520]) +10 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#12316]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-5/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#11520]) +8 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#11520]) +9 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#11520]) +4 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][305] ([i915#11520]) +5 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][306] ([i915#11520]) +8 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb5/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][307] ([i915#11520]) +16 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk3/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#9683]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#9683]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_psr2_su@page_flip-p010.html - shard-tglu: NOTRUN -> [SKIP][310] ([i915#9683]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-2/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#9683]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@pr-no-drrs: - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#9688]) +2 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-8/igt at kms_psr@pr-no-drrs.html * igt at kms_psr@pr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#1072] / [i915#9732]) +19 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-4/igt at kms_psr@pr-sprite-mmap-gtt.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#1072] / [i915#9732]) +26 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr2-cursor-render: - shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#9732]) +12 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_psr@psr2-cursor-render.html * igt at kms_psr@psr2-primary-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#1072] / [i915#9732]) +11 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at kms_psr@psr2-primary-mmap-cpu.html * igt at kms_psr@psr2-primary-render: - shard-tglu: NOTRUN -> [SKIP][317] ([i915#9732]) +21 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-7/igt at kms_psr@psr2-primary-render.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][318] ([i915#9685]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][319] ([i915#9685]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-7/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][320] ([i915#9685]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-3/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#9685]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#5190]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#12755] / [i915#5190]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/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-180: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#5289]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][325] ([i915#5289]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/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][326] ([i915#12755]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/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][327] ([i915#3555]) +5 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-9/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_scaling_modes@scaling-mode-none: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#3555]) +4 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][329] ([i915#13179]) +1 other test abort [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb7/igt at kms_selftest@drm_framebuffer.html * igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][330] ([i915#13179]) +1 other test abort [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-4/igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free.html * igt at kms_vblank@query-busy: - shard-dg1: [PASS][331] -> [DMESG-WARN][332] ([i915#4423]) +2 other tests dmesg-warn [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-14/igt at kms_vblank@query-busy.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at kms_vblank@query-busy.html * igt at kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][333] ([i915#9906]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][334] ([i915#3555] / [i915#9906]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#9906]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#9906]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-11/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-dg1: NOTRUN -> [SKIP][337] ([i915#9906]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#2437]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#2437]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-7/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#2437] / [i915#9412]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#2437] / [i915#9412]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-glk: NOTRUN -> [SKIP][342] ([i915#2437]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk7/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#2437]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#2437] / [i915#9412]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-10/igt at kms_writeback@writeback-pixel-formats.html * igt at perf_pmu@busy-accuracy-98 at rcs0: - shard-tglu: NOTRUN -> [FAIL][345] ([i915#4349]) +1 other test fail [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-3/igt at perf_pmu@busy-accuracy-98 at rcs0.html * igt at perf_pmu@busy-double-start at vecs0: - shard-mtlp: [PASS][346] -> [FAIL][347] ([i915#4349]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-1/igt at perf_pmu@busy-double-start at vecs0.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-5/igt at perf_pmu@busy-double-start at vecs0.html * igt at perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#8850]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@frequency at gt0: - shard-dg2: [PASS][349] -> [FAIL][350] ([i915#12549] / [i915#6806]) +1 other test fail [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-1/igt at perf_pmu@frequency at gt0.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-8/igt at perf_pmu@frequency at gt0.html - shard-dg1: [PASS][351] -> [FAIL][352] ([i915#12549] / [i915#6806]) +1 other test fail [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-14/igt at perf_pmu@frequency at gt0.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][353] ([i915#8516]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-4/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#8516]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-5/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#8516]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-1/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][356] ([i915#9351]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at prime_mmap@test_aperture_limit.html * igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][357] ([i915#9351]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem.html * igt at prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][358] ([i915#3291] / [i915#3708]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at prime_vgem@basic-read.html * igt at prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#3708] / [i915#4077]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][360] ([i915#3708] / [i915#4077]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-12/igt at prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][361] ([i915#3708] / [i915#4077]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-5/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#3708]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-1/igt at prime_vgem@fence-read-hang.html * igt at prime_vgem@fence-write-hang: - shard-dg1: NOTRUN -> [SKIP][363] ([i915#3708]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#9917]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-5/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1: - shard-tglu: NOTRUN -> [FAIL][365] ([i915#12910]) +28 other tests fail [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-6/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-1.html * igt at syncobj_timeline@etime-single-wait-for-submit-available-unsubmitted: - shard-dg1: NOTRUN -> [DMESG-WARN][366] ([i915#4423]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-14/igt at syncobj_timeline@etime-single-wait-for-submit-available-unsubmitted.html * igt at vgem_basic@unload: - shard-rkl: NOTRUN -> [DMESG-WARN][367] ([i915#12964]) +10 other tests dmesg-warn [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at vgem_basic@unload.html #### Possible fixes #### * igt at gem_eio@in-flight-suspend: - shard-rkl: [DMESG-WARN][368] ([i915#12964]) -> [PASS][369] +37 other tests pass [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-7/igt at gem_eio@in-flight-suspend.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at gem_eio@in-flight-suspend.html * igt at gem_exec_suspend@basic-s0: - shard-dg2: [INCOMPLETE][370] ([i915#11441] / [i915#13304]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-7/igt at gem_exec_suspend@basic-s0.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at gem_exec_suspend@basic-s0.html * igt at gem_exec_suspend@basic-s0 at lmem0: - shard-dg2: [INCOMPLETE][372] ([i915#11441]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-7/igt at gem_exec_suspend@basic-s0 at lmem0.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-1/igt at gem_exec_suspend@basic-s0 at lmem0.html * igt at gen9_exec_parse@allowed-single: - shard-glk: [ABORT][374] ([i915#5566]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk1/igt at gen9_exec_parse@allowed-single.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk4/igt at gen9_exec_parse@allowed-single.html * igt at i915_pm_rpm@debugfs-forcewake-user: - shard-dg1: [DMESG-WARN][376] ([i915#4423]) -> [PASS][377] +1 other test pass [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-18/igt at i915_pm_rpm@debugfs-forcewake-user.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at i915_pm_rpm@debugfs-forcewake-user.html * igt at i915_pm_rpm@debugfs-read: - shard-rkl: [SKIP][378] -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-5/igt at i915_pm_rpm@debugfs-read.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-7/igt at i915_pm_rpm@debugfs-read.html * igt at i915_pm_rpm@system-suspend: - shard-glk: [INCOMPLETE][380] ([i915#12797]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk3/igt at i915_pm_rpm@system-suspend.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk9/igt at i915_pm_rpm@system-suspend.html * igt at kms_color@deep-color: - shard-dg2: [SKIP][382] ([i915#3555]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-11/igt at kms_color@deep-color.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_color@deep-color.html * igt at kms_cursor_crc@cursor-offscreen-256x256 at pipe-c-hdmi-a-1: - shard-glk: [DMESG-FAIL][384] ([i915#118]) -> [PASS][385] +1 other test pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk8/igt at kms_cursor_crc@cursor-offscreen-256x256 at pipe-c-hdmi-a-1.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk4/igt at kms_cursor_crc@cursor-offscreen-256x256 at pipe-c-hdmi-a-1.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [FAIL][386] ([i915#2346]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [SKIP][388] ([i915#12402]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-3/igt at kms_dp_linktrain_fallback@dp-fallback.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-snb: [FAIL][390] ([i915#11989]) -> [PASS][391] +1 other test pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-snb2/igt at kms_flip@2x-plain-flip-ts-check.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-snb2/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@flip-vs-suspend: - shard-rkl: [DMESG-FAIL][392] ([i915#12964]) -> [PASS][393] +2 other tests pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-1/igt at kms_flip@flip-vs-suspend.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@plain-flip-fb-recreate at a-edp1: - shard-mtlp: [FAIL][394] ([i915#11989]) -> [PASS][395] +7 other tests pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-6/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-4/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html * igt at kms_hdr@static-toggle-suspend: - shard-dg2: [SKIP][396] ([i915#3555] / [i915#8228]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-3/igt at kms_hdr@static-toggle-suspend.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg2: [SKIP][398] ([i915#12388]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-5/igt at kms_joiner@basic-force-big-joiner.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_plane_scaling@intel-max-src-size: - shard-tglu: [FAIL][400] ([i915#8292]) -> [PASS][401] +1 other test pass [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-tglu-2/igt at kms_plane_scaling@intel-max-src-size.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-8/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-rkl: [SKIP][402] ([i915#12916]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-2/igt at kms_pm_rpm@basic-pci-d3-state.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-2/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at perf_pmu@busy-idle-check-all: - shard-dg1: [FAIL][404] ([i915#4349]) -> [PASS][405] +1 other test pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-18/igt at perf_pmu@busy-idle-check-all.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-13/igt at perf_pmu@busy-idle-check-all.html * igt at perf_pmu@busy-idle-check-all at vcs0: - shard-mtlp: [FAIL][406] ([i915#4349]) -> [PASS][407] +1 other test pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-mtlp-2/igt at perf_pmu@busy-idle-check-all at vcs0.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-mtlp-4/igt at perf_pmu@busy-idle-check-all at vcs0.html * igt at perf_pmu@most-busy-check-all: - shard-rkl: [FAIL][408] ([i915#4349]) -> [PASS][409] +1 other test pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-4/igt at perf_pmu@most-busy-check-all.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-3/igt at perf_pmu@most-busy-check-all.html #### Warnings #### * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [TIMEOUT][410] ([i915#5493]) -> [DMESG-WARN][411] ([i915#5493]) +1 other test dmesg-warn [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-12/igt at gem_lmem_swapping@smem-oom at lmem0.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_pxp@display-protected-crc: - shard-rkl: [SKIP][412] ([i915#4270]) -> [TIMEOUT][413] ([i915#12917] / [i915#12964]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-rkl-3/igt at gem_pxp@display-protected-crc.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-rkl-4/igt at gem_pxp@display-protected-crc.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: [DMESG-WARN][414] ([i915#13475]) -> [ABORT][415] ([i915#13493] / [i915#9820]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-17/igt at i915_module_load@reload-with-fault-injection.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-18/igt at i915_module_load@reload-with-fault-injection.html - shard-tglu: [ABORT][416] ([i915#12817] / [i915#9820]) -> [ABORT][417] ([i915#10887] / [i915#12817] / [i915#9820]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-tglu-8/igt at i915_module_load@reload-with-fault-injection.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-tglu-9/igt at i915_module_load@reload-with-fault-injection.html - shard-glk: [ABORT][418] -> [ABORT][419] ([i915#9820]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk8/igt at i915_module_load@reload-with-fault-injection.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk2/igt at i915_module_load@reload-with-fault-injection.html * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg1: [SKIP][420] ([i915#4212]) -> [SKIP][421] ([i915#4212] / [i915#4423]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-12/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg1: [SKIP][422] ([i915#11151] / [i915#7828]) -> [SKIP][423] ([i915#11151] / [i915#4423] / [i915#7828]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-12/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt at kms_content_protection@mei-interface: - shard-dg1: [SKIP][424] ([i915#9433]) -> [SKIP][425] ([i915#9424]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-13/igt at kms_content_protection@mei-interface.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-dg2: [SKIP][426] ([i915#7118] / [i915#9424]) -> [FAIL][427] ([i915#1339] / [i915#7173]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg2-7/igt at kms_content_protection@uevent.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg2-10/igt at kms_content_protection@uevent.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][428] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][429] ([i915#12745] / [i915#1982] / [i915#4839]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk5/igt at kms_flip@2x-flip-vs-suspend-interruptible.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk6/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2: - shard-glk: [INCOMPLETE][430] ([i915#4839]) -> [INCOMPLETE][431] ([i915#1982] / [i915#4839]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk5/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-glk6/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: [SKIP][432] ([i915#9934]) -> [SKIP][433] ([i915#4423] / [i915#9934]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-dg1-14/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/shard-dg1-17/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][434] ([i915#12745] / [i915#1982] / [i915#4839]) -> [INCOMPLETE][435] ([i915#12745] / [i915#4839]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15942/shard-glk6/igt at kms_flip@flip-vs-suspen == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12425/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Wed Jan 15 19:41:17 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 19:41:17 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EFull=3A_success_for_lib/igt=5Fkmemleak=3A_li?= =?utf-8?q?brary_to_interact_with_kmemleak_=28rev2=29?= In-Reply-To: <20250109181027.90402-1-peter.senna@linux.intel.com> References: <20250109181027.90402-1-peter.senna@linux.intel.com> Message-ID: <173697007767.4080507.14201716179502634528@b555e5b46a47> == Series Details == Series: lib/igt_kmemleak: library to interact with kmemleak (rev2) URL : https://patchwork.freedesktop.org/series/142673/ State : success == Summary == CI Bug Log - changes from CI_DRM_15934_full -> IGTPW_12421_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_12421_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12421_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_12421/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12421_full: ### IGT changes ### #### Warnings #### * igt at gem_exec_big@single: - shard-tglu: [ABORT][1] ([i915#11713]) -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-tglu-10/igt at gem_exec_big@single.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-10/igt at gem_exec_big@single.html Known issues ------------ Here are the changes found in IGTPW_12421_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#6230]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at api_intel_bb@crc32.html * igt at api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411]) +4 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at api_intel_bb@object-reloc-keep-cache.html * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at api_intel_bb@object-reloc-purge-cache.html - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at api_intel_bb@object-reloc-purge-cache.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at device_reset@unbind-cold-reset-rebind.html - shard-tglu-1: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-12/igt at device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-3/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-hang at rcs0: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +6 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-1/igt at drm_fdinfo@busy-hang at rcs0.html * igt at drm_fdinfo@most-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +13 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-12/igt at drm_fdinfo@most-busy-check-all.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +40 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-13/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-6/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#13008]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at gem_ccs@large-ctrl-surf-copy.html - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#13008]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#9323]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][19] ([i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-6/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][20] ([i915#12392] / [i915#7297]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-5/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-lmem0-lmem0.html * igt at gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#7697]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][22] ([i915#6335]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-6/igt at gem_create@create-ext-cpu-access-sanity-check.html - shard-rkl: NOTRUN -> [SKIP][23] ([i915#6335]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-7/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8562]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][25] ([i915#12353]) +1 other test incomplete [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk2/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-2/igt at gem_ctx_persistence@heartbeat-close.html * igt at gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#8555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at gem_ctx_persistence@heartbeat-stop.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][29] ([i915#1099]) +7 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-snb5/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@reset-stress: - shard-dg1: NOTRUN -> [FAIL][31] ([i915#12543] / [i915#5784]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at gem_eio@reset-stress.html * igt at gem_eio@unwedge-stress: - shard-dg1: NOTRUN -> [FAIL][32] ([i915#12714] / [i915#5784]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/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_12421/shard-dg2-7/igt at gem_exec_balancer@bonded-pair.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@full: - shard-mtlp: [PASS][35] -> [FAIL][36] ([i915#13364]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-6/igt at gem_exec_balancer@full.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-8/igt at gem_exec_balancer@full.html * igt at gem_exec_balancer@full-late: - shard-dg1: [PASS][37] -> [FAIL][38] ([i915#13364]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg1-14/igt at gem_exec_balancer@full-late.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-13/igt at gem_exec_balancer@full-late.html * igt at gem_exec_balancer@parallel-balancer: - shard-tglu: NOTRUN -> [SKIP][39] ([i915#4525]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-2/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][40] ([i915#4525]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#4525]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-5/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_capture@capture-invisible: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#6334]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at gem_exec_capture@capture-invisible.html - shard-dg1: NOTRUN -> [SKIP][43] ([i915#6334]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#6344]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at gem_exec_capture@capture-recoverable.html - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#6344]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at gem_exec_capture@capture-recoverable.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4812]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-12/igt at gem_exec_fence@submit.html - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-8/igt at gem_exec_fence@submit.html - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4812]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at gem_exec_fence@submit.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-12/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#5107]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-4/igt at gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][52] ([i915#5107]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-gtt-read: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#3281]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at gem_exec_reloc@basic-gtt-read.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3281]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3281]) +21 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at gem_exec_reloc@basic-write-read-active.html * igt at gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at gem_exec_schedule@preempt-queue.html * igt at gem_exec_schedule@reorder-wide: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-2/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#7276]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at gem_exec_schedule@semaphore-power.html * igt at gem_exec_suspend@basic-s3-devices at smem: - shard-mtlp: [PASS][59] -> [ABORT][60] ([i915#13193]) +1 other test abort [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-5/igt at gem_exec_suspend@basic-s3-devices at smem.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-4/igt at gem_exec_suspend@basic-s3-devices at smem.html * igt at gem_exec_whisper@basic-contexts-priority: - shard-mtlp: [PASS][61] -> [INCOMPLETE][62] ([i915#12774]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-1/igt at gem_exec_whisper@basic-contexts-priority.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-6/igt at gem_exec_whisper@basic-contexts-priority.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4860]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at gem_fence_thrash@bo-write-verify-y.html * igt at gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][64] ([i915#2190]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk4/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][65] ([i915#4613]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-8/igt at gem_lmem_swapping@heavy-random.html - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4613]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-1/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#4613]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@massive: - shard-tglu-1: NOTRUN -> [SKIP][68] ([i915#4613]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at gem_lmem_swapping@massive.html * igt at gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][69] ([i915#4613]) +6 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk3/igt at gem_lmem_swapping@random-engines.html * igt at gem_mmap@basic-small-bo: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4083]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-8/igt at gem_mmap@basic-small-bo.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4077]) +17 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/igt at gem_mmap_gtt@basic-small-bo.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_15934/shard-rkl-5/igt at gem_mmap_gtt@medium-copy-odd.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-7/igt at gem_mmap_gtt@medium-copy-odd.html * igt at gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4083]) +5 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at gem_mmap_wc@invalid-flags.html * igt at gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4083]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at gem_mmap_wc@read.html * igt at gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3282]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at gem_partial_pwrite_pread@reads-snoop.html * igt at gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][77] ([i915#2658]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3282]) +8 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at gem_pread@snoop.html - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3282]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-3/igt at gem_pread@snoop.html * igt at gem_pxp@create-valid-protected-context: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#4270]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-5/igt at gem_pxp@create-valid-protected-context.html * igt at gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4270]) +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][82] ([i915#12917] / [i915#12964]) +3 other tests timeout [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#13398]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at gem_pxp@hw-rejects-pxp-context.html - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#13398]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-5/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4270]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at gem_pxp@reject-modify-context-protection-on.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#5190] / [i915#8428]) +10 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#8428]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-5/igt at gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt at gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4079]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at gem_render_tiled_blits@basic.html * igt at gem_tiled_partial_pwrite_pread@writes: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3282]) +5 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at gem_tiled_partial_pwrite_pread@writes.html - shard-dg1: NOTRUN -> [SKIP][90] ([i915#4077]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at gem_tiled_partial_pwrite_pread@writes.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][91] ([i915#13263] / [i915#13449]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk4/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-6/igt at gem_userptr_blits@access-control.html - shard-dg1: NOTRUN -> [SKIP][93] ([i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at gem_userptr_blits@access-control.html - shard-tglu: NOTRUN -> [SKIP][94] ([i915#3297]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-9/igt at gem_userptr_blits@access-control.html * igt at gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#3297]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-7/igt at gem_userptr_blits@coherency-unsync.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297]) +4 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3282] / [i915#3297]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#3297] / [i915#4880]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#4958]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#3297]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][101] +21 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#2856]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at gen9_exec_parse@basic-rejected-ctx-param.html * igt at gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#2527]) +5 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-oversize: - shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#2527] / [i915#2856]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#2527]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-13/igt at gen9_exec_parse@bb-start-cmd.html - shard-tglu: NOTRUN -> [SKIP][106] ([i915#2527] / [i915#2856]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-2/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#2856]) +5 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/igt at gen9_exec_parse@unaligned-access.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [ABORT][108] ([i915#9820]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#8399]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at i915_pm_freq_api@freq-basic-api.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#6590]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [WARN][111] ([i915#2681]) +4 other tests warn [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-9/igt at i915_pm_rc6_residency@rc6-idle.html * igt at i915_pm_rpm@gem-mmap-type: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#13328]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at i915_pm_rpm@gem-mmap-type.html * igt at i915_pm_rpm@system-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][113] ([i915#12797]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk3/igt at i915_pm_rpm@system-suspend.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#11681] / [i915#6621]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at i915_pm_rps@min-max-config-idle.html - shard-dg1: NOTRUN -> [SKIP][115] ([i915#11681] / [i915#6621]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at i915_pm_rps@min-max-config-idle.html - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#11681] / [i915#6621]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-3/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#11681]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at i915_pm_rps@thresholds.html * igt at i915_power@sanity: - shard-mtlp: [PASS][118] -> [SKIP][119] ([i915#7984]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-7/igt at i915_power@sanity.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at i915_power@sanity.html * igt at i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#6245]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][121] ([i915#6245]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-6/igt at i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][122] ([i915#6245]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at i915_query@hwconfig_table.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][123] ([i915#4817]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk7/igt at i915_suspend@forcewake.html * igt at intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][124] ([i915#7707]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4212]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4212]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_addfb_basic@tile-pitch-mismatch.html - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#4212]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-2/igt at kms_addfb_basic@tile-pitch-mismatch.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][128] ([i915#8709]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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-c-hdmi-a-1-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_12421/shard-dg2-4/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@async-flip-with-page-flip-events at pipe-d-hdmi-a-1-y-rc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#8709]) +7 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#9531]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#1769] / [i915#3555]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/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][133] ([i915#5286]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_big_fb@4-tiled-8bpp-rotate-180.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538] / [i915#5286]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#5286]) +5 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at kms_big_fb@4-tiled-addfb.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_12421/shard-dg1-17/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#5286]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-3/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt at kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#3638]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#3638]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_big_fb@y-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#5190]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][141] +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#4538] / [i915#5190]) +16 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#4538]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-13/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#6187]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][145] +25 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#6095]) +44 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-aux-stride-y-tiled-ccs at pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#6095]) +44 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-3/igt at kms_ccs@bad-aux-stride-y-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#12313]) +6 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][149] ([i915#12313]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][150] ([i915#12313]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-7/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#10307] / [i915#6095]) +163 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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@ccs-on-another-bo-y-tiled-gen12-rc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#6095]) +14 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][153] +536 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2.html * igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs at pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#6095]) +169 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs at pipe-a-hdmi-a-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#6095]) +86 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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-mtl-mc-ccs at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#6095]) +21 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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-1: - shard-glk: NOTRUN -> [INCOMPLETE][157] ([i915#12796]) +1 other test incomplete [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk1/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#4423] / [i915#6095]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-4.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#3742]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_edid@hdmi-edid-read: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +4 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_chamelium_edid@hdmi-edid-read.html - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at kms_chamelium_edid@hdmi-edid-read.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +16 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +6 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-10/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +12 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#3299]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-12/igt at kms_content_protection@dp-mst-type-1.html - shard-tglu: NOTRUN -> [SKIP][169] ([i915#3116] / [i915#3299]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-3/igt at kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3299]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at kms_content_protection@dp-mst-type-1.html - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3299]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#9424]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#7116]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#7118] / [i915#7162] / [i915#9424]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#6944] / [i915#9424]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-1/igt at kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][176] ([i915#7118] / [i915#9424]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][177] ([i915#7116] / [i915#9424]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-13/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-256x256: - shard-rkl: NOTRUN -> [DMESG-WARN][178] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-5/igt at kms_cursor_crc@cursor-offscreen-256x256.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#13049]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#13049]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#13049]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-6/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#9809]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-8/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#13046] / [i915#5354]) +7 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-snb: [PASS][184] -> [SKIP][185] +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-snb7/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-snb2/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#4103]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [DMESG-WARN][187] ([i915#12964]) +15 other tests dmesg-warn [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_cursor_legacy@basic-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#9067]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-4/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#4103] / [i915#4213]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#9723]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555]) +8 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#8588]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2: [PASS][193] -> [SKIP][194] ([i915#3555]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg2-10/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-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][195] ([i915#3804]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2.html * igt at kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#1257]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_dp_aux_dev.html - shard-rkl: NOTRUN -> [SKIP][197] ([i915#1257]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-6/igt at kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][198] ([i915#1257]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-13/igt at kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][199] ([i915#1257]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-2/igt at kms_dp_aux_dev.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#8812]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#8812]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3840] / [i915#9688]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3840]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#3840]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][205] ([i915#3840]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-8/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#3840]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-8/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3840]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#3469]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-6/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#3955]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#4854]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#1839]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#1839]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#658]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-4/igt at kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][214] ([i915#658]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#658]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_feature_discovery@psr2.html * igt at kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#4881]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-absolute-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#3637]) +4 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_flip@2x-absolute-wf_vblank.html * igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1: - shard-snb: [PASS][218] -> [FAIL][219] ([i915#11989]) +1 other test fail [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-snb5/igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-snb7/igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#9934]) +11 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#8381]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][222] ([i915#12745] / [i915#1982] / [i915#4839]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk5/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: NOTRUN -> [INCOMPLETE][223] ([i915#1982] / [i915#4839]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk5/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3637]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-3/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#3637]) +7 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-4/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#9934]) +9 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#9934]) +5 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [FAIL][228] ([i915#11989]) +2 other tests fail [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-5/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html - shard-mtlp: [PASS][229] -> [FAIL][230] ([i915#11989]) +1 other test fail [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-3/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-4/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-glk: [PASS][231] -> [DMESG-WARN][232] ([i915#118] / [i915#12314]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-glk5/igt at kms_flip@flip-vs-blocking-wf-vblank.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk8/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1: - shard-glk: [PASS][233] -> [DMESG-WARN][234] ([i915#118]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-glk5/igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk8/igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1.html * igt at kms_flip@flip-vs-suspend at d-hdmi-a4: - shard-dg1: [PASS][235] -> [DMESG-WARN][236] ([i915#4423]) +1 other test dmesg-warn [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg1-18/igt at kms_flip@flip-vs-suspend at d-hdmi-a4.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_flip@flip-vs-suspend at d-hdmi-a4.html * igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1: - shard-tglu: [PASS][237] -> [FAIL][238] ([i915#11989]) +6 other tests fail [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-tglu-8/igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-8/igt at kms_flip@plain-flip-fb-recreate at c-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check: - shard-rkl: [PASS][239] -> [FAIL][240] ([i915#11989]) +1 other test fail [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-5/igt at kms_flip@plain-flip-ts-check.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at kms_flip@plain-flip-ts-check.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#2587] / [i915#2672]) +4 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-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-downscaling: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555]) +5 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#2587] / [i915#2672] / [i915#3555]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-tglu: NOTRUN -> [SKIP][244] ([i915#2587] / [i915#2672] / [i915#3555]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-dg2: NOTRUN -> [SKIP][246] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#8813]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#2587] / [i915#2672]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#2672]) +7 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-12/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-rkl: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555]) +6 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#3555]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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-rkl: NOTRUN -> [SKIP][254] ([i915#2672]) +6 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling at pipe-a-valid-mode.html - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-rkl: [PASS][256] -> [DMESG-WARN][257] ([i915#12964]) +34 other tests dmesg-warn [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-6/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-dg2: [PASS][258] -> [FAIL][259] ([i915#6880]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#5354]) +56 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#1825]) +6 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][262] ([i915#10056] / [i915#13353]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk2/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][263] +66 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#10433] / [i915#3458]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#3023]) +33 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#8708]) +24 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][267] +22 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#8708]) +9 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#5439]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][270] ([i915#5439]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-10/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#1825]) +36 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#3458]) +33 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#3458]) +15 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt at kms_hdmi_inject@inject-audio: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#13030]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_hdmi_inject@inject-audio.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#12713]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8228]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-swap: - shard-dg2: [PASS][277] -> [SKIP][278] ([i915#3555] / [i915#8228]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg2-10/igt at kms_hdr@static-swap.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at kms_hdr@static-toggle.html - shard-dg1: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8228]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8228]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-6/igt at kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-8/igt at kms_hdr@static-toggle.html * igt at kms_histogram@algo-basic: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#13389]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at kms_histogram@algo-basic.html * igt at kms_histogram@global-basic: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#13388]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_histogram@global-basic.html - shard-dg1: NOTRUN -> [SKIP][286] ([i915#13388]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_histogram@global-basic.html * igt at kms_histogram@global-color: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#13388]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#12388]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#12339]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#10656]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-5/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][291] ([i915#10656]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#10656]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-5/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][293] ([i915#10656]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#12388]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#12394]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][296] ([i915#12394]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-9/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#6301]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][298] ([i915#6301]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-tglu-1: NOTRUN -> [SKIP][299] +53 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][300] ([i915#12756] / [i915#13409] / [i915#13476]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk9/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][301] ([i915#12756]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk9/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][302] ([i915#10647] / [i915#12177]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk6/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][303] ([i915#10647]) +1 other test fail [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk6/igt at kms_plane_alpha_blend@alpha-transparent-fb at pipe-a-hdmi-a-1.html * igt at kms_plane_lowres@tiling-4: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at kms_plane_lowres@tiling-4.html * igt at kms_plane_lowres@tiling-4 at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#11614] / [i915#3582]) +3 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at kms_plane_lowres@tiling-4 at pipe-b-edp-1.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#3555] / [i915#8821]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#3555]) +7 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-6/igt at kms_plane_multiple@tiling-yf.html - shard-dg1: NOTRUN -> [SKIP][308] ([i915#3555]) +6 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-13/igt at kms_plane_multiple@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#3555] / [i915#8806]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-1/igt at kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#8806]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-tglu: NOTRUN -> [FAIL][311] ([i915#8292]) +1 other test fail [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-4/igt at kms_plane_scaling@intel-max-src-size.html - shard-dg2: NOTRUN -> [SKIP][312] ([i915#6953] / [i915#9423]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#12247]) +8 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#12247] / [i915#9423]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-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-modifiers: - shard-mtlp: NOTRUN -> [SKIP][315] ([i915#12247]) +4 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-8/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#12247] / [i915#6953]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/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][317] ([i915#12247]) +9 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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-dg2: NOTRUN -> [SKIP][318] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][319] ([i915#12247] / [i915#6953]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][320] ([i915#12247] / [i915#6953]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-10/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][321] ([i915#12247]) +4 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-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-25-upscale-factor-0-25 at pipe-d: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#12247]) +8 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-10/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 at pipe-c: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#12247]) +11 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#12343]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#5354]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][326] ([i915#9812]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-7/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#9685]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#13441]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-6/igt at kms_pm_dc@dc5-dpms-negative.html * igt at kms_pm_dc@dc5-retention-flops: - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#3828]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-2/igt at kms_pm_dc@dc5-retention-flops.html - shard-dg2: NOTRUN -> [SKIP][330] ([i915#3828]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][331] ([i915#3828]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-12/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#9685]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#9340]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-5/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#8430]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#9519]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][336] -> [SKIP][337] ([i915#9519]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-5/igt at kms_pm_rpm@dpms-non-lpsp.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][338] ([i915#9519]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-7/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][339] ([i915#9519]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-4/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#9519]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][341] ([i915#10553]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk8/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#6524] / [i915#6805]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_prime@basic-crc-vgem.html * igt at kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][343] ([i915#6524]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][344] ([i915#11520]) +14 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-snb5/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][345] ([i915#12316]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-4/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-tglu-1: NOTRUN -> [SKIP][346] ([i915#11520]) +4 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][347] ([i915#11520]) +6 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-10/igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#11520]) +11 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-5/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][349] ([i915#11520]) +19 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk3/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][350] ([i915#11520]) +5 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#11520]) +17 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#9683]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#9683]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-sprite-render: - shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#9732]) +11 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_psr@fbc-pr-sprite-render.html * igt at kms_psr@pr-cursor-blt: - shard-mtlp: NOTRUN -> [SKIP][355] ([i915#9688]) +8 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-8/igt at kms_psr@pr-cursor-blt.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#1072] / [i915#9732]) +36 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr-primary-render: - shard-tglu: NOTRUN -> [SKIP][357] ([i915#9732]) +13 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-9/igt at kms_psr@psr-primary-render.html * igt at kms_psr@psr2-sprite-blt: - shard-dg1: NOTRUN -> [SKIP][358] ([i915#1072] / [i915#9732]) +19 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at kms_psr@psr2-sprite-blt.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#1072] / [i915#9732]) +28 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at kms_psr@psr2-suspend.html * igt at kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][360] ([i915#4235]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at kms_rotation_crc@exhaust-fences.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][361] ([i915#5289]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][362] ([i915#5289]) +1 other test skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][363] ([i915#12755]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-5/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#5289]) +2 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#12755]) +2 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/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][366] ([i915#3555]) +7 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-3/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_scaling_modes@scaling-mode-none: - shard-tglu-1: NOTRUN -> [SKIP][367] ([i915#3555]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_universal_plane@cursor-fb-leak at pipe-d-edp-1: - shard-mtlp: [PASS][368] -> [FAIL][369] ([i915#9196]) +1 other test fail [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-8/igt at kms_universal_plane@cursor-fb-leak at pipe-d-edp-1.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-3/igt at kms_universal_plane@cursor-fb-leak at pipe-d-edp-1.html * igt at kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: [PASS][370] -> [DMESG-FAIL][371] ([i915#12964]) +1 other test dmesg-fail [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-7/igt at kms_vblank@ts-continuation-dpms-suspend.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-2/igt at kms_vblank@ts-continuation-dpms-suspend.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][372] ([i915#12276]) +1 other test incomplete [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk6/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][373] ([i915#11920]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#3555] / [i915#9906]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-1/igt at kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][375] ([i915#3555] / [i915#9906]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-14/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][376] ([i915#9906]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-3/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-tglu-1: NOTRUN -> [SKIP][377] ([i915#9906]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][378] ([i915#9906]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-7/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][379] ([i915#2437]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_writeback@writeback-check-output.html - shard-rkl: NOTRUN -> [SKIP][380] ([i915#2437]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-6/igt at kms_writeback@writeback-check-output.html - shard-tglu: NOTRUN -> [SKIP][381] ([i915#2437]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-2/igt at kms_writeback@writeback-check-output.html - shard-mtlp: NOTRUN -> [SKIP][382] ([i915#2437]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-1/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][383] ([i915#2437] / [i915#9412]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-8/igt at kms_writeback@writeback-check-output-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][384] ([i915#2437] / [i915#9412]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-8/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][385] ([i915#2437] / [i915#9412]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-7/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-tglu-1: NOTRUN -> [SKIP][386] ([i915#2437]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at kms_writeback@writeback-invalid-parameters.html - shard-dg1: NOTRUN -> [SKIP][387] ([i915#2437]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][388] ([i915#2437]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk9/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][389] ([i915#2436]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-7/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#2434]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at perf@mi-rpc.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][391] +491 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-snb2/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@frequency at gt0: - shard-dg2: NOTRUN -> [FAIL][392] ([i915#12549] / [i915#6806]) +1 other test fail [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-11/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][393] ([i915#8516]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][394] ([i915#13356]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk8/igt at perf_pmu@rc6-suspend.html * igt at perf_pmu@render-node-busy-idle: - shard-mtlp: [PASS][395] -> [FAIL][396] ([i915#4349]) +1 other test fail [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-2/igt at perf_pmu@render-node-busy-idle.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-6/igt at perf_pmu@render-node-busy-idle.html * igt at prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][397] ([i915#3708] / [i915#4077]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-10/igt at prime_vgem@basic-gtt.html - shard-dg1: NOTRUN -> [SKIP][398] ([i915#3708] / [i915#4077]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][399] ([i915#3708]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-17/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][400] ([i915#3708]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-3/igt at prime_vgem@fence-write-hang.html - shard-dg2: NOTRUN -> [SKIP][401] ([i915#3708]) +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-3/igt at prime_vgem@fence-write-hang.html - shard-rkl: NOTRUN -> [SKIP][402] ([i915#3708]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][403] ([i915#9917]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][404] ([i915#12910]) +19 other tests fail [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-1/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][405] ([i915#9917]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-4/igt at sriov_basic@enable-vfs-autoprobe-on.html * igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-random: - shard-tglu: NOTRUN -> [FAIL][406] ([i915#12910]) +8 other tests fail [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-3/igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-random.html #### Possible fixes #### * igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][407] ([i915#7297]) -> [PASS][408] [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg2-4/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-smem-lmem0.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg2-5/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-smem-lmem0.html * igt at gem_exec_suspend@basic-s0 at smem: - shard-dg2: [INCOMPLETE][409] ([i915#11441] / [i915#13304]) -> [PASS][410] +1 other test pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg2-1/igt at gem_exec_suspend@basic-s0 at smem.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/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: [ABORT][411] ([i915#7975] / [i915#8213]) -> [PASS][412] +1 other test pass [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-dg1-18/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: [INCOMPLETE][413] ([i915#12797]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-glk1/igt at i915_pm_rpm@system-suspend-execbuf.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk7/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [DMESG-FAIL][415] ([i915#13393]) -> [PASS][416] +1 other test pass [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-3/igt at i915_selftest@live at workarounds.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-3/igt at i915_selftest@live at workarounds.html * igt at i915_suspend@fence-restore-untiled: - shard-glk: [INCOMPLETE][417] ([i915#4817]) -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-glk6/igt at i915_suspend@fence-restore-untiled.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk8/igt at i915_suspend@fence-restore-untiled.html * igt at kms_cursor_legacy@cursora-vs-flipa-atomic-transitions: - shard-rkl: [DMESG-WARN][419] ([i915#12964]) -> [PASS][420] +29 other tests pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-7/igt at kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-4/igt at kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: [FAIL][421] ([i915#2346]) -> [PASS][422] [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1: - shard-snb: [FAIL][423] ([i915#11989]) -> [PASS][424] +1 other test pass [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-snb2/igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-snb5/igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [DMESG-WARN][425] ([i915#12917] / [i915#12964]) -> [PASS][426] +1 other test pass [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-1/igt at kms_flip@absolute-wf_vblank-interruptible.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at kms_flip@absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-rkl: [DMESG-FAIL][427] ([i915#12964]) -> [PASS][428] +1 other test pass [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-rkl-3/igt at kms_flip@flip-vs-suspend.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-rkl-1/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1: - shard-tglu: [FAIL][429] ([i915#11989]) -> [PASS][430] +1 other test pass [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-tglu-9/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-7/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html * igt at kms_getfb@getfb2-accept-ccs: - shard-dg1: [DMESG-WARN][431] ([i915#4423]) -> [PASS][432] +5 other tests pass [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-dg1-12/igt at kms_getfb@getfb2-accept-ccs.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Wed Jan 15 20:50:23 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Wed, 15 Jan 2025 20:50:23 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_lib/amdgpu=3A_Handle_-EN?= =?utf-8?q?ODATA_in_amdgpu=5Fwait=5Fmemory?= In-Reply-To: <20250115070359.3698486-1-jesse.zhang@amd.com> References: <20250115070359.3698486-1-jesse.zhang@amd.com> Message-ID: <173697422362.4112286.5072505441790652860@b555e5b46a47> == Series Details == Series: lib/amdgpu: Handle -ENODATA in amdgpu_wait_memory URL : https://patchwork.freedesktop.org/series/143543/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15958_full -> IGTPW_12438_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12438_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12438_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_12438/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12438_full: ### IGT changes ### #### Possible regressions #### * igt at gem_exec_nop@basic-parallel: - shard-snb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-snb1/igt at gem_exec_nop@basic-parallel.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-snb5/igt at gem_exec_nop@basic-parallel.html * igt at kms_vblank@ts-continuation-dpms-rpm at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-3/igt at kms_vblank@ts-continuation-dpms-rpm at pipe-a-hdmi-a-2.html #### Warnings #### * igt at perf_pmu@module-unload: - shard-snb: [ABORT][4] ([i915#11703]) -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-snb4/igt at perf_pmu@module-unload.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-snb2/igt at perf_pmu@module-unload.html New tests --------- New tests have been introduced between CI_DRM_15958_full and IGTPW_12438_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_12438_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-4/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at api_intel_bb@object-reloc-purge-cache.html * igt at drm_fdinfo@busy-idle at bcs0: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +24 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-8/igt at drm_fdinfo@busy-idle at bcs0.html * igt at drm_fdinfo@busy at vcs1: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +6 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at drm_fdinfo@busy at vcs1.html * igt at gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-6/igt at gem_basic@multigpu-create-close.html - shard-dg2: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-1/igt at gem_basic@multigpu-create-close.html * igt at gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#3936]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-3/igt at gem_busy@semaphore.html - shard-dg1: NOTRUN -> [SKIP][13] ([i915#3936]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-18/igt at gem_busy@semaphore.html * igt at gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-2/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-18/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#13008]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at gem_ccs@large-ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][17] ([i915#13008]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-6/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@create-ext-cpu-access-big: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#8555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at gem_ctx_persistence@heartbeat-many.html * igt at gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-6/igt at gem_ctx_persistence@heartbeat-stop.html * igt at gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][22] ([i915#1099]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-snb5/igt at gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt at gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-8/igt at gem_ctx_sseu@invalid-args.html - shard-dg1: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at gem_ctx_sseu@invalid-args.html * igt at gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4812]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-2/igt at gem_exec_balancer@bonded-false-hang.html * igt at gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#8555]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-1/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel-keep-in-fence: - shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#4525]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at gem_exec_balancer@parallel-keep-in-fence.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu: NOTRUN -> [SKIP][28] ([i915#4525]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-4/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_balancer@sliced: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4812]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-4/igt at gem_exec_balancer@sliced.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][30] ([i915#11965]) +2 other tests fail [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#4812]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at gem_exec_fence@submit.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-5/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-14/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_reloc@basic-gtt: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-6/igt at gem_exec_reloc@basic-gtt.html * igt at gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3281]) +10 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at gem_exec_reloc@basic-wc-read-active.html * igt at gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +15 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-5/igt at gem_exec_reloc@basic-write-read-active.html * igt at gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-5/igt at gem_exec_schedule@preempt-queue-contexts.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-5/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_suspend@basic-s0: - shard-dg2: [PASS][39] -> [INCOMPLETE][40] ([i915#11441] / [i915#13304]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg2-8/igt at gem_exec_suspend@basic-s0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-5/igt at gem_exec_suspend@basic-s0.html * igt at gem_exec_suspend@basic-s0 at lmem0: - shard-dg2: [PASS][41] -> [INCOMPLETE][42] ([i915#11441]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg2-8/igt at gem_exec_suspend@basic-s0 at lmem0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-5/igt at gem_exec_suspend@basic-s0 at lmem0.html * igt at gem_exec_suspend@basic-s4-devices: - shard-rkl: NOTRUN -> [ABORT][43] ([i915#7975] / [i915#8213]) +1 other test abort [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-4/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fence_thrash@bo-copy: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4860]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-1/igt at gem_fence_thrash@bo-copy.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4860]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at gem_fence_thrash@bo-write-verify-y.html * igt at gem_fenced_exec_thrash@no-spare-fences: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-3/igt at gem_fenced_exec_thrash@no-spare-fences.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613] / [i915#7582]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-7/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-6/igt at gem_lmem_swapping@basic.html * igt at gem_lmem_swapping@parallel-multi: - shard-glk: NOTRUN -> [SKIP][49] ([i915#4613]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk8/igt at gem_lmem_swapping@parallel-multi.html * igt at gem_lmem_swapping@verify: - shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#4613]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at gem_lmem_swapping@verify.html * igt at gem_lmem_swapping@verify-ccs: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-6/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random: - shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-4/igt at gem_lmem_swapping@verify-random.html * igt at gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#284]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-8/igt at gem_media_vme.html * igt at gem_mmap_gtt@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4077]) +7 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-18/igt at gem_mmap_gtt@fault-concurrent.html * igt at gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4077]) +14 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-2/igt at gem_mmap_gtt@fault-concurrent-x.html * igt at gem_mmap_wc@copy: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4083]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-14/igt at gem_mmap_wc@copy.html * igt at gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4083]) +5 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-1/igt at gem_mmap_wc@fault-concurrent.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4083]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-5/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-2/igt at gem_pread@snoop.html * igt at gem_pread@uncached: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-1/igt at gem_pread@uncached.html * igt at gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#3282]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-14/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pwrite_snooped: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3282]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-5/igt at gem_pwrite_snooped.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][63] ([i915#12917] / [i915#12964]) +2 other tests timeout [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-1/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4270]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-5/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8428]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-1/igt at gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html * igt at gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#5190] / [i915#8428]) +8 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-2/igt at gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4079]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-8/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#8411]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-2/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4885]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-4/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4079]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at gem_tiled_pread_pwrite.html * igt at gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4879]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@access-control: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at gem_userptr_blits@access-control.html * igt at gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at gem_userptr_blits@invalid-mmap-offset-unsync.html * igt at gem_userptr_blits@readonly-pwrite-unsync: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-2/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-4/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_workarounds@suspend-resume-fd: - shard-rkl: [PASS][77] -> [DMESG-FAIL][78] ([i915#12964]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-rkl-2/igt at gem_workarounds@suspend-resume-fd.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-7/igt at gem_workarounds@suspend-resume-fd.html * igt at gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#2527]) +5 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#2856]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-7/igt at gen9_exec_parse@bb-start-far.html - shard-tglu-1: NOTRUN -> [SKIP][81] ([i915#2527] / [i915#2856]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at gen9_exec_parse@bb-start-far.html * igt at gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#2527]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-2/igt at gen9_exec_parse@bb-start-out.html * igt at gen9_exec_parse@secure-batches: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#2527] / [i915#2856]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-9/igt at gen9_exec_parse@secure-batches.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][84] -> [ABORT][85] ([i915#9820]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-rkl-6/igt at i915_module_load@reload-with-fault-injection.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-2/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#8399]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-6/igt at i915_pm_freq_api@freq-reset-multiple.html * igt at i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#8399]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-6/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#6590]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-dg1: NOTRUN -> [FAIL][89] ([i915#3591]) +1 other test fail [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rpm@gem-evict-pwrite: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4077]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-4/igt at i915_pm_rpm@gem-evict-pwrite.html * igt at i915_pm_rpm@gem-execbuf-stress: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#13328]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-5/igt at i915_pm_rpm@gem-execbuf-stress.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][92] ([i915#12797]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk8/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#11681] / [i915#6621]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/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][94] ([i915#11681] / [i915#6621]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-4/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#11681]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-7/igt at i915_pm_rps@thresholds-idle-park.html - shard-dg1: NOTRUN -> [SKIP][96] ([i915#11681]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_power@sanity: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#7984]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-1/igt at i915_power@sanity.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [PASS][98] -> [DMESG-FAIL][99] ([i915#13393]) +1 other test dmesg-fail [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-mtlp-8/igt at i915_selftest@live at workarounds.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-6/igt at i915_selftest@live at workarounds.html * igt at i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][100] ([i915#7443]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-10/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][101] ([i915#4817]) +1 other test incomplete [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk7/igt at i915_suspend@forcewake.html * igt at intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#7707]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-5/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4215] / [i915#5190]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-5/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4212]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-4/igt at kms_addfb_basic@clobberred-modifier.html * igt at kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4212]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-18/igt at kms_addfb_basic@tile-pitch-mismatch.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][106] ([i915#12761]) +1 other test incomplete [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk9/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][107] ([i915#8709]) +7 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/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 at pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#8709]) +7 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-6/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-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#8709]) +11 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-1/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-3-4-mc-ccs.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][110] ([i915#1769]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk1/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-dg2: NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#1769] / [i915#3555]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#5286]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#5286]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-6/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-async-flip: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5286]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-18/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-rkl: NOTRUN -> [SKIP][116] ([i915#5286]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-4/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][117] ([i915#3638]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html * igt at kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#3638]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-7/igt at kms_big_fb@x-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5190]) +12 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-8/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-mtlp: NOTRUN -> [SKIP][120] +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-7/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][121] +9 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-4/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_ccs@bad-aux-stride-yf-tiled-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6095]) +9 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-7/igt at kms_ccs@bad-aux-stride-yf-tiled-ccs at pipe-c-edp-1.html * igt at kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#10307] / [i915#10434] / [i915#6095]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-4/igt at kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#6095]) +90 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/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@ccs-on-another-bo-y-tiled-ccs at pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#10307] / [i915#6095]) +146 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-4/igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#6095]) +74 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-6/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-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#12313]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-1/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#12313]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#12313]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-5/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#12805]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-4/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs at pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#6095]) +7 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-8/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs at pipe-c-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#12313]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-8/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#6095]) +19 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#12313]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-18/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][136] +277 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk5/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#6095]) +146 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_cdclk@mode-transition: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#11616] / [i915#7213]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-11/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition at pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#7213]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-11/igt at kms_cdclk@mode-transition at pipe-b-hdmi-a-2.html * igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#4087]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-8/igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1.html * igt at kms_chamelium_audio@hdmi-audio: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#11151] / [i915#7828]) +10 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-2/igt at kms_chamelium_audio@hdmi-audio.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) +8 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-14/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][143] +20 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-4/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +9 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-2/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_chamelium_hpd@vga-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-7/igt at kms_chamelium_hpd@vga-hpd-after-suspend.html * igt at kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +5 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-7/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt at kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-2/igt at kms_content_protection@atomic.html - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6944] / [i915#9424]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-3/igt at kms_content_protection@atomic.html * igt at kms_content_protection@atomic-dpms: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#9424]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-2/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#3299]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#3116]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-3/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3299]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-8/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@lic-type-0: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#9424]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#9424]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-11/igt at kms_content_protection@lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][157] ([i915#6944] / [i915#9424]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-2/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#7118]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-7/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#7118] / [i915#9424]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-5/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#7118] / [i915#9424]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-3/igt at kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][161] ([i915#7116] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-18/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#3555]) +9 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#13049]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-2/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3555]) +5 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-7/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#13049]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#13049]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#13049]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-5/igt at kms_cursor_crc@cursor-random-512x512.html - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#13049]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-4/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#3555]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#13049]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-2/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3555]) +10 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-3/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#4103] / [i915#4213]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-2/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#4103] / [i915#4213]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#13046] / [i915#5354]) +10 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-2/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#9809]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-mtlp: [PASS][176] -> [FAIL][177] ([i915#2346]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-mtlp-4/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-2/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#9067]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-5/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#9723]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-14/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#9723]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-3/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: [PASS][181] -> [SKIP][182] ([i915#3555]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg2-10/igt at kms_dither@fb-8bpc-vs-panel-8bpc.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-1/igt at kms_dither@fb-8bpc-vs-panel-8bpc.html * igt at kms_dp_aux_dev: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#1257]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#12402]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-2/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_dsc@dsc-basic: - shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_dsc@dsc-basic.html - shard-dg1: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#3840] / [i915#9688]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-5/igt at kms_dsc@dsc-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-8/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-1/igt at kms_dsc@dsc-with-formats.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][191] ([i915#9878]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk4/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#3469]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-3/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#3469]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#4854]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-5/igt at kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][195] ([i915#4854]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#1839]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-18/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#9337]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-8/igt at kms_feature_discovery@dp-mst.html - shard-rkl: NOTRUN -> [SKIP][198] ([i915#9337]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-4/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#658]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#658]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at kms_feature_discovery@psr2.html * igt at kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#4881]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-3/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-blocking-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#9934]) +7 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-4/igt at kms_flip@2x-blocking-wf_vblank.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#3637]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-4/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-dpms: - shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#3637]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#9934]) +4 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-5/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#9934]) +7 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3637]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-1/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@blocking-wf_vblank: - shard-mtlp: [PASS][208] -> [FAIL][209] ([i915#11989]) +3 other tests fail [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-mtlp-4/igt at kms_flip@blocking-wf_vblank.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-6/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1: - shard-tglu: [PASS][210] -> [FAIL][211] ([i915#11989]) +2 other tests fail [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-tglu-3/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-5/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][212] ([i915#12745] / [i915#4839]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk9/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][213] ([i915#12745]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk9/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate-interruptible: - shard-rkl: [PASS][214] -> [FAIL][215] ([i915#11989]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-rkl-4/igt at kms_flip@plain-flip-fb-recreate-interruptible.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-3/igt at kms_flip@plain-flip-fb-recreate-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][216] ([i915#11989]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a2.html * igt at kms_flip@wf_vblank-ts-check-interruptible: - shard-dg1: [PASS][217] -> [FAIL][218] ([i915#11989]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg1-14/igt at kms_flip@wf_vblank-ts-check-interruptible.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at kms_flip@wf_vblank-ts-check-interruptible.html * igt at kms_flip@wf_vblank-ts-check-interruptible at b-vga1: - shard-snb: [PASS][219] -> [FAIL][220] ([i915#11989]) +4 other tests fail [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-snb2/igt at kms_flip@wf_vblank-ts-check-interruptible at b-vga1.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-snb5/igt at kms_flip@wf_vblank-ts-check-interruptible at b-vga1.html * igt at kms_flip@wf_vblank-ts-check-interruptible at c-hdmi-a3: - shard-dg1: NOTRUN -> [FAIL][221] ([i915#11989]) +2 other tests fail [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at kms_flip@wf_vblank-ts-check-interruptible at c-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#2672]) +4 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-3/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-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#2672] / [i915#3555]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#2672] / [i915#3555]) +4 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#2672]) +3 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][226] ([i915#2587] / [i915#2672]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/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][227] ([i915#2672] / [i915#3555]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-4/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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#8813]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#2587] / [i915#2672] / [i915#3555]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/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-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#2587] / [i915#2672]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555] / [i915#5190]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-tglu: NOTRUN -> [SKIP][233] ([i915#2587] / [i915#2672] / [i915#3555]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-9/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: NOTRUN -> [SKIP][234] ([i915#2587] / [i915#2672]) +4 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-9/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-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_12438/shard-dg1-17/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-4tiledg2rcccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555]) +4 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [DMESG-WARN][238] ([i915#12964]) +12 other tests dmesg-warn [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-2/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][239] +39 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][240] +43 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html - shard-snb: [PASS][241] -> [SKIP][242] +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-snb4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][243] ([i915#10056] / [i915#13353]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk3/igt at kms_frontbuffer_tracking@fbc-suspend.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_12438/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][245] ([i915#5439]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbc-tiling-linear: - shard-rkl: [PASS][246] -> [DMESG-WARN][247] ([i915#12964]) +53 other tests dmesg-warn [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-rkl-5/igt at kms_frontbuffer_tracking@fbc-tiling-linear.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-2/igt at kms_frontbuffer_tracking@fbc-tiling-linear.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#3458]) +26 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-10/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][249] ([i915#5354]) +37 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-snb: NOTRUN -> [SKIP][250] +394 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-snb4/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#8708]) +22 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#1825]) +4 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#9766]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][254] ([i915#9766]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-3/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#3023]) +23 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-5/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#10433] / [i915#3458]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#1825]) +22 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#8708]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-8/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][259] +68 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-3/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#3458]) +20 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-18/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#8708]) +26 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#12713]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-5/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8228]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-7/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8228]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-2/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-toggle: - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-1/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-suspend: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-big-joiner: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#10656]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-7/igt at kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][269] ([i915#10656]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-1/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#12394]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#12339]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-18/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#10656]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-14/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#12394]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-10/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#6301]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-14/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#6301]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-10/igt at kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][276] ([i915#6301]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-7/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][277] ([i915#12756] / [i915#13409] / [i915#13476]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk1/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][278] ([i915#13409] / [i915#13476]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk1/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8821]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-5/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#8806]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-1/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#6953]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#12247]) +4 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-4/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#12247]) +19 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-5/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#12247] / [i915#9423]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-3/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-d: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#12247]) +15 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#12247]) +4 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/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][287] ([i915#12247]) +7 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/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: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#12247] / [i915#6953] / [i915#9423]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-5/igt at kms_plane_scaling@planes-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][289] ([i915#12247] / [i915#6953]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#12247] / [i915#6953]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-2/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b: - shard-dg1: NOTRUN -> [SKIP][291] ([i915#12247]) +11 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_backlight@basic-brightness: - shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#9812]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_pm_backlight@basic-brightness.html - shard-dg1: NOTRUN -> [SKIP][293] ([i915#5354]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#9685]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-3/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-retention-flops: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#3828]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-8/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#9685]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-18/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: [PASS][297] -> [SKIP][298] ([i915#9340]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg2-4/igt at kms_pm_lpsp@kms-lpsp.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-11/igt at kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][299] ([i915#9340]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-14/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#8430]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-4/igt at kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][301] ([i915#8430]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-1/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#9519]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-3/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][303] -> [SKIP][304] ([i915#9519]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-rkl-3/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-7/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]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-3/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [PASS][306] -> [SKIP][307] ([i915#9519]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg2-4/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-1/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html - shard-dg1: NOTRUN -> [SKIP][308] ([i915#9519]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_prime@basic-crc-hybrid: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#6524]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-modeset-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#6524]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#11520]) +8 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-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-snb: NOTRUN -> [SKIP][312] ([i915#11520]) +11 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-snb1/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#11520]) +2 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html - shard-dg1: NOTRUN -> [SKIP][314] ([i915#11520]) +6 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#11520]) +6 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-7/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-mtlp: NOTRUN -> [SKIP][316] ([i915#12316]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-2/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][317] ([i915#11520]) +8 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk9/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][318] ([i915#11520]) +10 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-11/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#9683]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-7/igt at kms_psr2_su@page_flip-nv12.html - shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#9683]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-p010: - shard-tglu: NOTRUN -> [SKIP][321] ([i915#9683]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-2/igt at kms_psr2_su@page_flip-p010.html - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#4348]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-1/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][323] ([i915#9683]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr-cursor-mmap-gtt at edp-1: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#9688]) +2 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-2/igt at kms_psr@fbc-psr-cursor-mmap-gtt at edp-1.html * igt at kms_psr@fbc-psr-cursor-plane-move: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#1072] / [i915#9732]) +14 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-2/igt at kms_psr@fbc-psr-cursor-plane-move.html * igt at kms_psr@fbc-psr2-primary-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][326] ([i915#9732]) +17 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-8/igt at kms_psr@fbc-psr2-primary-mmap-gtt.html * igt at kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#9732]) +10 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt at kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#1072] / [i915#9732]) +23 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-7/igt at kms_psr@psr2-cursor-blt.html * igt at kms_psr@psr2-primary-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][329] ([i915#1072] / [i915#9732]) +24 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at kms_psr@psr2-primary-mmap-cpu.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#9685]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-4/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#12755]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-7/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][332] ([i915#4884]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at kms_rotation_crc@exhaust-fences.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][333] ([i915#5289]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-13/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][334] ([i915#5289]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-9/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#5190]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-8/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#5289]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#12755] / [i915#5190]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-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-tglu-1: NOTRUN -> [SKIP][338] ([i915#5289]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-mtlp: NOTRUN -> [SKIP][339] ([i915#12755]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][340] ([i915#3555]) +3 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-9/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][341] ([i915#13179]) +1 other test abort [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-5/igt at kms_selftest@drm_framebuffer.html - shard-snb: NOTRUN -> [ABORT][342] ([i915#13179]) +1 other test abort [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-snb7/igt at kms_selftest@drm_framebuffer.html - shard-tglu: NOTRUN -> [ABORT][343] ([i915#13179]) +1 other test abort [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-3/igt at kms_selftest@drm_framebuffer.html - shard-glk: NOTRUN -> [ABORT][344] ([i915#13179]) +1 other test abort [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk5/igt at kms_selftest@drm_framebuffer.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][345] ([i915#8623]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-18/igt at kms_tiled_display@basic-test-pattern.html - shard-glk: NOTRUN -> [FAIL][346] ([i915#10959]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk6/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#8623]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-4/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@query-forked-busy-hang at pipe-a-edp-1: - shard-mtlp: [PASS][348] -> [INCOMPLETE][349] ([i915#12276]) +1 other test incomplete [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-mtlp-6/igt at kms_vblank@query-forked-busy-hang at pipe-a-edp-1.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-6/igt at kms_vblank@query-forked-busy-hang at pipe-a-edp-1.html * igt at kms_vblank@ts-continuation-dpms-rpm: - shard-rkl: NOTRUN -> [DMESG-WARN][350] ([i915#12917] / [i915#12964]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-3/igt at kms_vblank@ts-continuation-dpms-rpm.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][351] ([i915#12276]) +3 other tests incomplete [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk2/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#9906]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-4/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@max-min: - shard-tglu: NOTRUN -> [SKIP][353] ([i915#9906]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-4/igt at kms_vrr@max-min.html - shard-rkl: NOTRUN -> [SKIP][354] ([i915#9906]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-2/igt at kms_vrr@max-min.html * igt at kms_vrr@negative-basic: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#3555] / [i915#9906]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#2437]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-2/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][357] ([i915#2437]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk4/igt at kms_writeback@writeback-pixel-formats.html - shard-dg1: NOTRUN -> [SKIP][358] ([i915#2437] / [i915#9412]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-14/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][359] ([i915#2433]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at perf@unprivileged-single-ctx-counters.html * igt at perf_pmu@cpu-hotplug: - shard-tglu: NOTRUN -> [SKIP][360] ([i915#8850]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-4/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][361] ([i915#8516]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-14/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#3708] / [i915#4077]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-7/igt at prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][363] ([i915#3708] / [i915#4077]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#3708]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-11/igt at prime_vgem@fence-flip-hang.html - shard-rkl: NOTRUN -> [SKIP][365] ([i915#3708]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-7/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-write-hang: - shard-dg1: NOTRUN -> [SKIP][366] ([i915#3708]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-18/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#9917]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-8/igt at sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][368] ([i915#9917]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-7/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-5: - shard-tglu-1: NOTRUN -> [FAIL][369] ([i915#12910]) +9 other tests fail [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-1/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-5.html * igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-random: - shard-tglu: NOTRUN -> [FAIL][370] ([i915#12910]) +8 other tests fail [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-3/igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-random.html #### Possible fixes #### * igt at gem_eio@kms: - shard-dg1: [FAIL][371] ([i915#5784]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg1-17/igt at gem_eio@kms.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at gem_eio@kms.html * igt at i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [FAIL][373] ([i915#12942]) -> [PASS][374] +1 other test pass [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-rkl-3/igt at i915_pm_rc6_residency@rc6-accuracy.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-4/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1: - shard-tglu: [FAIL][375] ([i915#11808]) -> [PASS][376] +1 other test pass [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-tglu-3/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-8/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@short-flip-after-cursor-atomic-transitions: - shard-glk: [FAIL][377] ([i915#2346]) -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-glk8/igt at kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-glk5/igt at kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html * igt at kms_flip@plain-flip-fb-recreate-interruptible: - shard-dg2: [FAIL][379] ([i915#11989]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg2-3/igt at kms_flip@plain-flip-fb-recreate-interruptible.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-4/igt at kms_flip@plain-flip-fb-recreate-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at c-hdmi-a1: - shard-tglu: [FAIL][381] ([i915#11989]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-tglu-2/igt at kms_flip@plain-flip-fb-recreate-interruptible at c-hdmi-a1.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-4/igt at kms_flip@plain-flip-fb-recreate-interruptible at c-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at d-edp1: - shard-mtlp: [FAIL][383] ([i915#11989]) -> [PASS][384] +2 other tests pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-mtlp-2/igt at kms_flip@plain-flip-fb-recreate-interruptible at d-edp1.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-2/igt at kms_flip@plain-flip-fb-recreate-interruptible at d-edp1.html * igt at kms_flip@plain-flip-ts-check: - shard-dg1: [FAIL][385] ([i915#11989]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg1-12/igt at kms_flip@plain-flip-ts-check.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-18/igt at kms_flip@plain-flip-ts-check.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-snb: [SKIP][387] -> [PASS][388] +2 other tests pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][389] ([i915#4281]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-tglu-9/igt at kms_pm_dc@dc9-dpms.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-4/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][391] ([i915#9519]) -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-rkl-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-5/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg1: [DMESG-WARN][393] ([i915#4423]) -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg1-18/igt at kms_pm_rpm@system-suspend-modeset.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-14/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_psr@psr2-sprite-render at edp-1: - shard-mtlp: [FAIL][395] -> [PASS][396] +1 other test pass [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-mtlp-5/igt at kms_psr@psr2-sprite-render at edp-1.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-5/igt at kms_psr@psr2-sprite-render at edp-1.html * igt at kms_rotation_crc@primary-rotation-90: - shard-rkl: [DMESG-WARN][397] ([i915#12964]) -> [PASS][398] +53 other tests pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-rkl-1/igt at kms_rotation_crc@primary-rotation-90.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-5/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_setmode@basic: - shard-tglu: [FAIL][399] ([i915#5465]) -> [PASS][400] +2 other tests pass [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-tglu-5/igt at kms_setmode@basic.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-tglu-6/igt at kms_setmode@basic.html * igt at kms_setmode@basic at pipe-b-hdmi-a-1: - shard-rkl: [FAIL][401] ([i915#5465]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-rkl-2/igt at kms_setmode@basic at pipe-b-hdmi-a-1.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-2/igt at kms_setmode@basic at pipe-b-hdmi-a-1.html * igt at perf_pmu@render-node-busy: - shard-dg2: [FAIL][403] ([i915#4349]) -> [PASS][404] +2 other tests pass [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg2-10/igt at perf_pmu@render-node-busy.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-1/igt at perf_pmu@render-node-busy.html - shard-dg1: [FAIL][405] ([i915#4349]) -> [PASS][406] +1 other test pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg1-14/igt at perf_pmu@render-node-busy.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at perf_pmu@render-node-busy.html * igt at perf_pmu@render-node-busy at vecs0: - shard-mtlp: [FAIL][407] ([i915#4349]) -> [PASS][408] +2 other tests pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-mtlp-3/igt at perf_pmu@render-node-busy at vecs0.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-mtlp-1/igt at perf_pmu@render-node-busy at vecs0.html #### Warnings #### * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: [TIMEOUT][409] ([i915#5493]) -> [DMESG-WARN][410] ([i915#5493]) +1 other test dmesg-warn [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg1-18/igt at gem_lmem_swapping@smem-oom at lmem0.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-18/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: [SKIP][411] ([i915#4270]) -> [TIMEOUT][412] ([i915#12964]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-rkl-4/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-rkl-5/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: [DMESG-WARN][413] ([i915#13475]) -> [ABORT][414] ([i915#13493] / [i915#9820]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg1-17/igt at i915_module_load@reload-with-fault-injection.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-12/igt at i915_module_load@reload-with-fault-injection.html - shard-dg2: [DMESG-WARN][415] ([i915#13447] / [i915#13475]) -> [ABORT][416] ([i915#9820]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg2-5/igt at i915_module_load@reload-with-fault-injection.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-7/igt at i915_module_load@reload-with-fault-injection.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-dg1: [SKIP][417] ([i915#11151] / [i915#4423] / [i915#7828]) -> [SKIP][418] ([i915#11151] / [i915#7828]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg1-18/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-17/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_content_protection@atomic-dpms: - shard-dg2: [TIMEOUT][419] ([i915#7173]) -> [SKIP][420] ([i915#7118] / [i915#9424]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg2-10/igt at kms_content_protection@atomic-dpms.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-7/igt at kms_content_protection@atomic-dpms.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][421] ([i915#3458]) -> [SKIP][422] ([i915#10433] / [i915#3458]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg2-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: [SKIP][423] ([i915#10433] / [i915#3458]) -> [SKIP][424] ([i915#3458]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-suspend.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg2-8/igt at kms_frontbuffer_tracking@fbcpsr-suspend.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-blt: - shard-dg1: [SKIP][425] ([i915#3458] / [i915#4423]) -> [SKIP][426] ([i915#3458]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15958/shard-dg1-18/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][427] ([i915#4816]) == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12438/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From vprosyak at amd.com Wed Jan 15 21:05:45 2025 From: vprosyak at amd.com (vitaly prosyak) Date: Wed, 15 Jan 2025 16:05:45 -0500 Subject: [PATCH i-g-t] lib/amdgpu: Handle -ENODATA in amdgpu_wait_memory In-Reply-To: <20250115070359.3698486-1-jesse.zhang@amd.com> References: <20250115070359.3698486-1-jesse.zhang@amd.com> Message-ID: <6fc65270-87a9-4b5c-9d60-a80cf61a663c@amd.com> The change looks good to me? Reviewed-by: Vitaly.Prosyak , On 2025-01-15 02:03, Jesse.zhang at amd.com wrote: > The amdgpu_wait_memory function currently asserts if the return value > is non-zero and not -ECANCELED. However, -ENODATA is also a valid > error code that can be returned during GPU job timeout recovery, > particularly for queue resets. This patch updates the function to > also accept -ENODATA as a non-fatal error condition. > > This change aligns with recent updates in the AMDGPU kernel driver > where -ENODATA is used to indicate queue-specific resets during > timeout recovery, while -ECANCELED or -ETIME is used for full GPU > resets. For more details, see the kernel discussion: > https://lists.freedesktop.org/archives/amd-gfx/2025-January/118795.html > > Cc: Vitaly Prosyak > Cc: Christian Koenig > Cc: Alexander Deucher > > Signed-off-by: Jesse Zhang > --- > lib/amdgpu/amd_deadlock_helpers.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c > index 8ac6abf8f..f274a6365 100644 > --- a/lib/amdgpu/amd_deadlock_helpers.c > +++ b/lib/amdgpu/amd_deadlock_helpers.c > @@ -142,7 +142,7 @@ amdgpu_wait_memory(amdgpu_device_handle device_handle, unsigned int ip_type, uin > job_count++; > } while (r == 0 && job_count < MAX_JOB_COUNT); > > - if (r != 0 && r != -ECANCELED) > + if (r != 0 && r != -ECANCELED && r != -ENODATA) > igt_assert(0); > > > @@ -156,7 +156,7 @@ amdgpu_wait_memory(amdgpu_device_handle device_handle, unsigned int ip_type, uin > > r = amdgpu_cs_query_fence_status(&fence_status, AMDGPU_TIMEOUT_INFINITE, 0, > &expired); > - if (r != 0 && r != -ECANCELED) > + if (r != 0 && r != -ECANCELED && r != -ENODATA) > igt_assert(0); > > /* send signal to modify the memory we wait for */ From daniele.ceraolospurio at intel.com Wed Jan 15 23:26:45 2025 From: daniele.ceraolospurio at intel.com (Daniele Ceraolo Spurio) Date: Wed, 15 Jan 2025 15:26:45 -0800 Subject: [PATCH i-g-t 1/7] drm-uapi/xe: Sync PXP uapi updates In-Reply-To: References: <20241212001829.2082490-1-daniele.ceraolospurio@intel.com> <20241212001829.2082490-2-daniele.ceraolospurio@intel.com> Message-ID: On 1/14/25 18:25, Teres Alexis, Alan Previn wrote: > Since this has already received RB on the kernel side, I provide my RB here on condition that if anything changes on > kernel side in coming days, we update this (ofc need to update anyway for reference kernel merge point). > > Reviewed-by: Alan Previn > > As a side question (not blocking) i notice the UAPI documentation for DRM_XE_VM_BIND_FLAG_CHECK_PXP doesn't mention if > the bind will still stick after a successful prior bind if a pxp teardown (key update) were to occur in future. (which i > am guessing it would? - i.e. once bind, it is forever bound?). Yes. The only impact is that any new binds will be rejected, no impact on existing ones. Daniele > > > On Wed, 2024-12-11 at 16:18 -0800, Daniele Ceraolo Spurio wrote: >> Based on the kernel series still in review: >> https://patchwork.freedesktop.org/series/136052/ >> >> DO NOT MERGE: will respin with the final version once the kernel side is >> merged >> >> Signed-off-by: Daniele Ceraolo Spurio >> --- >> ?include/drm-uapi/xe_drm.h | 94 ++++++++++++++++++++++++++++++++++++++- >> ?1 file changed, 93 insertions(+), 1 deletion(-) >> >> diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h >> index 56163eb91..5b288af1f 100644 >> --- a/include/drm-uapi/xe_drm.h >> +++ b/include/drm-uapi/xe_drm.h >> @@ -629,6 +629,39 @@ struct drm_xe_query_uc_fw_version { >> ????????__u64 reserved; >> ?}; >> >> +/** >> + * struct drm_xe_query_pxp_status - query if PXP is ready >> + * >> + * If PXP is enabled and no fatal error as occurred, the status will be set to >> + * one of the following values: >> + * 0: PXP init still in progress >> + * 1: PXP init complete >> + * >> + * If PXP is not enabled or something has gone wrong, the query will be failed >> + * with one of the following error codes: >> + * -ENODEV: PXP not supported or disabled; >> + * -EIO: fatal error occurred during init, so PXP will never be enabled; >> + * -EINVAL: incorrect value provided as part of the query; >> + * -EFAULT: error copying the memory between kernel and userspace. >> + * >> + * The status can only be 0 in the first few seconds after driver load. If >> + * everything works as expected, the status will transition to init complete in >> + * less than 1 second, while in case of errors the driver might take longer to >> + * start returning an error code, but it should still take less than 10 seconds. >> + * >> + * The supported session type bitmask is based on the values in >> + * enum drm_xe_pxp_session_type. TYPE_NONE is always supported and therefore >> + * is not reported in the bitmask. >> + * >> + */ >> +struct drm_xe_query_pxp_status { >> +???????/** @status: current PXP status */ >> +???????__u32 status; >> + >> +???????/** @supported_session_types: bitmask of supported PXP session types */ >> +???????__u32 supported_session_types; >> +}; >> + >> ?/** >> ? * struct drm_xe_device_query - Input of &DRM_IOCTL_XE_DEVICE_QUERY - main >> ? * structure to query device information >> @@ -648,6 +681,7 @@ struct drm_xe_query_uc_fw_version { >> ? *??? attributes. >> ? *? - %DRM_XE_DEVICE_QUERY_GT_TOPOLOGY >> ? *? - %DRM_XE_DEVICE_QUERY_ENGINE_CYCLES >> + *? - %DRM_XE_DEVICE_QUERY_PXP_STATUS >> ? * >> ? * If size is set to 0, the driver fills it with the required size for >> ? * the requested type of data to query. If size is equal to the required >> @@ -700,6 +734,7 @@ struct drm_xe_device_query { >> ?#define DRM_XE_DEVICE_QUERY_ENGINE_CYCLES??????6 >> ?#define DRM_XE_DEVICE_QUERY_UC_FW_VERSION??????7 >> ?#define DRM_XE_DEVICE_QUERY_OA_UNITS???????????8 >> +#define DRM_XE_DEVICE_QUERY_PXP_STATUS?????????9 >> ????????/** @query: The type of data to query */ >> ????????__u32 query; >> >> @@ -743,8 +778,23 @@ struct drm_xe_device_query { >> ? *? - %DRM_XE_GEM_CPU_CACHING_WC - Allocate the pages as write-combined. This >> ? *??? is uncached. Scanout surfaces should likely use this. All objects >> ? *??? that can be placed in VRAM must use this. >> + * >> + * This ioctl supports setting the following properties via the >> + * %DRM_XE_GEM_CREATE_EXTENSION_SET_PROPERTY extension, which uses the >> + * generic @drm_xe_ext_set_property struct: >> + * >> + *? - %DRM_XE_GEM_CREATE_SET_PROPERTY_PXP_TYPE - set the type of PXP session >> + *??? this object will be used with. Valid values are listed in enum >> + *??? drm_xe_pxp_session_type. %DRM_XE_PXP_TYPE_NONE is the default behavior, so >> + *??? there is no need to explicitly set that. Objects used with session of type >> + *??? %DRM_XE_PXP_TYPE_HWDRM will be marked as invalid if a PXP invalidation >> + *??? event occurs after their creation. Attempting to flip an invalid object >> + *??? will cause a black frame to be displayed instead. Submissions with invalid >> + *??? objects mapped in the VM will be rejected. >> ? */ >> ?struct drm_xe_gem_create { >> +#define DRM_XE_GEM_CREATE_EXTENSION_SET_PROPERTY???????0 >> +#define?? DRM_XE_GEM_CREATE_SET_PROPERTY_PXP_TYPE??????0 >> ????????/** @extensions: Pointer to the first extension struct, if any */ >> ????????__u64 extensions; >> >> @@ -906,6 +956,9 @@ struct drm_xe_vm_destroy { >> ? *??? will only be valid for DRM_XE_VM_BIND_OP_MAP operations, the BO >> ? *??? handle MBZ, and the BO offset MBZ. This flag is intended to >> ? *??? implement VK sparse bindings. >> + *? - %DRM_XE_VM_BIND_FLAG_CHECK_PXP - If the object is encrypted via PXP, >> + *??? reject the binding if the encryption key is no longer valid. This >> + *??? flag has no effect on BOs that are not marked as using PXP. >> ? */ >> ?struct drm_xe_vm_bind_op { >> ????????/** @extensions: Pointer to the first extension struct, if any */ >> @@ -996,6 +1049,7 @@ struct drm_xe_vm_bind_op { >> ?#define DRM_XE_VM_BIND_FLAG_IMMEDIATE??(1 << 1) >> ?#define DRM_XE_VM_BIND_FLAG_NULL???????(1 << 2) >> ?#define DRM_XE_VM_BIND_FLAG_DUMPABLE???(1 << 3) >> +#define DRM_XE_VM_BIND_FLAG_CHECK_PXP??(1 << 4) >> ????????/** @flags: Bind flags */ >> ????????__u32 flags; >> >> @@ -1087,6 +1141,24 @@ struct drm_xe_vm_bind { >> ?/** >> ? * struct drm_xe_exec_queue_create - Input of &DRM_IOCTL_XE_EXEC_QUEUE_CREATE >> ? * >> + * This ioctl supports setting the following properties via the >> + * %DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY extension, which uses the >> + * generic @drm_xe_ext_set_property struct: >> + * >> + *? - %DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY - set the queue priority. >> + *??? CAP_SYS_NICE is required to set a value above normal. >> + *? - %DRM_XE_EXEC_QUEUE_SET_PROPERTY_TIMESLICE - set the queue timeslice >> + *??? duration. >> + *? - %DRM_XE_EXEC_QUEUE_SET_PROPERTY_PXP_TYPE - set the type of PXP session >> + *??? this queue will be used with. Valid values are listed in enum >> + *??? drm_xe_pxp_session_type. %DRM_XE_PXP_TYPE_NONE is the default behavior, so >> + *??? there is no need to explicitly set that. When a queue of type >> + *??? %DRM_XE_PXP_TYPE_HWDRM is created, the PXP default HWDRM session >> + *??? (%XE_PXP_HWDRM_DEFAULT_SESSION) will be started, if isn't already running. >> + *??? Given that going into a power-saving state kills PXP HWDRM sessions, >> + *??? runtime PM will be blocked while queues of this type are alive. >> + *??? All PXP queues will be killed if a PXP invalidation event occurs. >> + * >> ? * The example below shows how to use @drm_xe_exec_queue_create to create >> ? * a simple exec_queue (no parallel submission) of class >> ? * &DRM_XE_ENGINE_CLASS_RENDER. >> @@ -1110,7 +1182,7 @@ struct drm_xe_exec_queue_create { >> ?#define DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY???????????????0 >> ?#define?? DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY??????????????0 >> ?#define?? DRM_XE_EXEC_QUEUE_SET_PROPERTY_TIMESLICE?????????????1 >> - >> +#define?? DRM_XE_EXEC_QUEUE_SET_PROPERTY_PXP_TYPE??????????????2 >> ????????/** @extensions: Pointer to the first extension struct, if any */ >> ????????__u64 extensions; >> >> @@ -1713,6 +1785,26 @@ struct drm_xe_oa_stream_info { >> ????????__u64 reserved[3]; >> ?}; >> >> +/** >> + * enum drm_xe_pxp_session_type - Supported PXP session types. >> + * >> + * We currently only support HWDRM sessions, which are used for protected >> + * content that ends up being displayed, but the HW supports multiple types, so >> + * we might extend support in the future. >> + */ >> +enum drm_xe_pxp_session_type { >> +???????/** @DRM_XE_PXP_TYPE_NONE: PXP not used */ >> +???????DRM_XE_PXP_TYPE_NONE = 0, >> +???????/** >> +??????? * @DRM_XE_PXP_TYPE_HWDRM: HWDRM sessions are used for content that ends >> +??????? * up on the display. >> +??????? */ >> +???????DRM_XE_PXP_TYPE_HWDRM = 1, >> +}; >> + >> +/* ID of the protected content session managed by Xe when PXP is active */ >> +#define DRM_XE_PXP_HWDRM_DEFAULT_SESSION 0xf >> + >> ?#if defined(__cplusplus) >> ?} >> ?#endif From daniele.ceraolospurio at intel.com Thu Jan 16 00:19:31 2025 From: daniele.ceraolospurio at intel.com (Daniele Ceraolo Spurio) Date: Wed, 15 Jan 2025 16:19:31 -0800 Subject: [PATCH i-g-t v2 0/9] Xe: Add tests for PXP Message-ID: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> The PXP kernel patches are currently in review here: https://patchwork.freedesktop.org/series/136052/ Given that PXP introduces new interfaces and behaviors, we need to update existing IGTs and add new ones to cover all the new scenarios. Minor changes have been done to common functions to propagate the PXP info and error returns. Cc: John Harrison Cc: Alan Previn Daniele Ceraolo Spurio (9): drm-uapi/xe: Sync PXP uapi updates tests/intel/xe_vm: Update invalid flag subtest tests/intel/xe_query: Add test for PXP status query tests/intel/xe_create: Stop treating the extension field as MBZ tests/intel/xe_exec_queue_property: Update first invalid property value tests/intel/xe_pxp: Add PXP object and queue creation tests tests/intel/xe_pxp: Test PXP submissions tests/intel/xe_pxp: Termination tests tests/intel/xe_pxp: Test encrypted FBs include/drm-uapi/xe_drm.h | 94 ++- lib/intel_batchbuffer.c | 25 +- lib/intel_batchbuffer.h | 1 + lib/xe/xe_ioctl.c | 26 +- lib/xe/xe_ioctl.h | 4 +- tests/intel/xe_create.c | 5 - tests/intel/xe_exec_queue_property.c | 2 +- tests/intel/xe_mmap.c | 1 + tests/intel/xe_pxp.c | 1172 ++++++++++++++++++++++++++ tests/intel/xe_query.c | 61 ++ tests/intel/xe_vm.c | 25 +- tests/meson.build | 1 + 12 files changed, 1392 insertions(+), 25 deletions(-) create mode 100644 tests/intel/xe_pxp.c -- 2.43.0 From daniele.ceraolospurio at intel.com Thu Jan 16 00:19:32 2025 From: daniele.ceraolospurio at intel.com (Daniele Ceraolo Spurio) Date: Wed, 15 Jan 2025 16:19:32 -0800 Subject: [PATCH i-g-t v2 1/9] drm-uapi/xe: Sync PXP uapi updates In-Reply-To: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> Message-ID: <20250116001951.4159243-2-daniele.ceraolospurio@intel.com> Based on the kernel series still in review: https://patchwork.freedesktop.org/series/136052/ DO NOT MERGE: will respin with the final version once the kernel side is merged Signed-off-by: Daniele Ceraolo Spurio --- include/drm-uapi/xe_drm.h | 94 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 93 insertions(+), 1 deletion(-) diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h index 08e263b3b..7121ab2a5 100644 --- a/include/drm-uapi/xe_drm.h +++ b/include/drm-uapi/xe_drm.h @@ -629,6 +629,39 @@ struct drm_xe_query_uc_fw_version { __u64 reserved; }; +/** + * struct drm_xe_query_pxp_status - query if PXP is ready + * + * If PXP is enabled and no fatal error has occurred, the status will be set to + * one of the following values: + * 0: PXP init still in progress + * 1: PXP init complete + * + * If PXP is not enabled or something has gone wrong, the query will be failed + * with one of the following error codes: + * -ENODEV: PXP not supported or disabled; + * -EIO: fatal error occurred during init, so PXP will never be enabled; + * -EINVAL: incorrect value provided as part of the query; + * -EFAULT: error copying the memory between kernel and userspace. + * + * The status can only be 0 in the first few seconds after driver load. If + * everything works as expected, the status will transition to init complete in + * less than 1 second, while in case of errors the driver might take longer to + * start returning an error code, but it should still take less than 10 seconds. + * + * The supported session type bitmask is based on the values in + * enum drm_xe_pxp_session_type. TYPE_NONE is always supported and therefore + * is not reported in the bitmask. + * + */ +struct drm_xe_query_pxp_status { + /** @status: current PXP status */ + __u32 status; + + /** @supported_session_types: bitmask of supported PXP session types */ + __u32 supported_session_types; +}; + /** * struct drm_xe_device_query - Input of &DRM_IOCTL_XE_DEVICE_QUERY - main * structure to query device information @@ -648,6 +681,7 @@ struct drm_xe_query_uc_fw_version { * attributes. * - %DRM_XE_DEVICE_QUERY_GT_TOPOLOGY * - %DRM_XE_DEVICE_QUERY_ENGINE_CYCLES + * - %DRM_XE_DEVICE_QUERY_PXP_STATUS * * If size is set to 0, the driver fills it with the required size for * the requested type of data to query. If size is equal to the required @@ -700,6 +734,7 @@ struct drm_xe_device_query { #define DRM_XE_DEVICE_QUERY_ENGINE_CYCLES 6 #define DRM_XE_DEVICE_QUERY_UC_FW_VERSION 7 #define DRM_XE_DEVICE_QUERY_OA_UNITS 8 +#define DRM_XE_DEVICE_QUERY_PXP_STATUS 9 /** @query: The type of data to query */ __u32 query; @@ -743,8 +778,23 @@ struct drm_xe_device_query { * - %DRM_XE_GEM_CPU_CACHING_WC - Allocate the pages as write-combined. This * is uncached. Scanout surfaces should likely use this. All objects * that can be placed in VRAM must use this. + * + * This ioctl supports setting the following properties via the + * %DRM_XE_GEM_CREATE_EXTENSION_SET_PROPERTY extension, which uses the + * generic @drm_xe_ext_set_property struct: + * + * - %DRM_XE_GEM_CREATE_SET_PROPERTY_PXP_TYPE - set the type of PXP session + * this object will be used with. Valid values are listed in enum + * drm_xe_pxp_session_type. %DRM_XE_PXP_TYPE_NONE is the default behavior, so + * there is no need to explicitly set that. Objects used with session of type + * %DRM_XE_PXP_TYPE_HWDRM will be marked as invalid if a PXP invalidation + * event occurs after their creation. Attempting to flip an invalid object + * will cause a black frame to be displayed instead. Submissions with invalid + * objects mapped in the VM will be rejected. */ struct drm_xe_gem_create { +#define DRM_XE_GEM_CREATE_EXTENSION_SET_PROPERTY 0 +#define DRM_XE_GEM_CREATE_SET_PROPERTY_PXP_TYPE 0 /** @extensions: Pointer to the first extension struct, if any */ __u64 extensions; @@ -906,6 +956,9 @@ struct drm_xe_vm_destroy { * will only be valid for DRM_XE_VM_BIND_OP_MAP operations, the BO * handle MBZ, and the BO offset MBZ. This flag is intended to * implement VK sparse bindings. + * - %DRM_XE_VM_BIND_FLAG_CHECK_PXP - If the object is encrypted via PXP, + * reject the binding if the encryption key is no longer valid. This + * flag has no effect on BOs that are not marked as using PXP. */ struct drm_xe_vm_bind_op { /** @extensions: Pointer to the first extension struct, if any */ @@ -996,6 +1049,7 @@ struct drm_xe_vm_bind_op { #define DRM_XE_VM_BIND_FLAG_IMMEDIATE (1 << 1) #define DRM_XE_VM_BIND_FLAG_NULL (1 << 2) #define DRM_XE_VM_BIND_FLAG_DUMPABLE (1 << 3) +#define DRM_XE_VM_BIND_FLAG_CHECK_PXP (1 << 4) /** @flags: Bind flags */ __u32 flags; @@ -1087,6 +1141,24 @@ struct drm_xe_vm_bind { /** * struct drm_xe_exec_queue_create - Input of &DRM_IOCTL_XE_EXEC_QUEUE_CREATE * + * This ioctl supports setting the following properties via the + * %DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY extension, which uses the + * generic @drm_xe_ext_set_property struct: + * + * - %DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY - set the queue priority. + * CAP_SYS_NICE is required to set a value above normal. + * - %DRM_XE_EXEC_QUEUE_SET_PROPERTY_TIMESLICE - set the queue timeslice + * duration in microseconds. + * - %DRM_XE_EXEC_QUEUE_SET_PROPERTY_PXP_TYPE - set the type of PXP session + * this queue will be used with. Valid values are listed in enum + * drm_xe_pxp_session_type. %DRM_XE_PXP_TYPE_NONE is the default behavior, so + * there is no need to explicitly set that. When a queue of type + * %DRM_XE_PXP_TYPE_HWDRM is created, the PXP default HWDRM session + * (%XE_PXP_HWDRM_DEFAULT_SESSION) will be started, if isn't already running. + * Given that going into a power-saving state kills PXP HWDRM sessions, + * runtime PM will be blocked while queues of this type are alive. + * All PXP queues will be killed if a PXP invalidation event occurs. + * * The example below shows how to use @drm_xe_exec_queue_create to create * a simple exec_queue (no parallel submission) of class * &DRM_XE_ENGINE_CLASS_RENDER. @@ -1110,7 +1182,7 @@ struct drm_xe_exec_queue_create { #define DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY 0 #define DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY 0 #define DRM_XE_EXEC_QUEUE_SET_PROPERTY_TIMESLICE 1 - +#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_PXP_TYPE 2 /** @extensions: Pointer to the first extension struct, if any */ __u64 extensions; @@ -1729,6 +1801,26 @@ struct drm_xe_oa_stream_info { __u64 reserved[3]; }; +/** + * enum drm_xe_pxp_session_type - Supported PXP session types. + * + * We currently only support HWDRM sessions, which are used for protected + * content that ends up being displayed, but the HW supports multiple types, so + * we might extend support in the future. + */ +enum drm_xe_pxp_session_type { + /** @DRM_XE_PXP_TYPE_NONE: PXP not used */ + DRM_XE_PXP_TYPE_NONE = 0, + /** + * @DRM_XE_PXP_TYPE_HWDRM: HWDRM sessions are used for content that ends + * up on the display. + */ + DRM_XE_PXP_TYPE_HWDRM = 1, +}; + +/* ID of the protected content session managed by Xe when PXP is active */ +#define DRM_XE_PXP_HWDRM_DEFAULT_SESSION 0xf + #if defined(__cplusplus) } #endif -- 2.43.0 From daniele.ceraolospurio at intel.com Thu Jan 16 00:19:34 2025 From: daniele.ceraolospurio at intel.com (Daniele Ceraolo Spurio) Date: Wed, 15 Jan 2025 16:19:34 -0800 Subject: [PATCH i-g-t v2 3/9] tests/intel/xe_query: Add test for PXP status query In-Reply-To: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> Message-ID: <20250116001951.4159243-4-daniele.ceraolospurio@intel.com> Add a new test to exercise the PXP status query. Signed-off-by: Daniele Ceraolo Spurio Reviewed-by: Alan Previn --- tests/intel/xe_query.c | 61 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/tests/intel/xe_query.c b/tests/intel/xe_query.c index 1566680e7..0a2ff8d7f 100644 --- a/tests/intel/xe_query.c +++ b/tests/intel/xe_query.c @@ -1077,6 +1077,66 @@ static void test_query_oa_units(int fd) } } +/** + * SUBTEST: query-pxp-status + * Description: Display PXP supported types and current status + * + * SUBTEST: multigpu-query-pxp-status + * Description: Display fields for PXP unit query for all Xe devices + * Sub-category: MultiGPU + */ +static void test_query_pxp_status(int fd) +{ + struct drm_xe_query_pxp_status *qpxp; + struct drm_xe_device_query query = { + .extensions = 0, + .query = DRM_XE_DEVICE_QUERY_PXP_STATUS, + .size = 0, + .data = 0, + }; + int ret; + + /* + * if we run this test on an older kernel that doesn't have the PXP + * query, the ioctl will return -EINVAL. + */ + errno = 0; + ret = igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query); + igt_require(errno != EINVAL); + igt_assert_eq(ret, 0); + + /* make sure the returned size is big enough */ + igt_assert(query.size >= sizeof(*qpxp)); + + qpxp = malloc(query.size); + igt_assert(qpxp); + + memset(qpxp, 0, query.size); + + query.data = to_user_pointer(qpxp); + ret = igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query); + if (ret == -ENODEV) { + igt_info("PXP not supported\n"); + return; + } + + igt_assert_eq(ret, 0); + igt_assert_neq(qpxp->supported_session_types, 0); + + switch (qpxp->status) { + case 0: + igt_info("PXP initialization still in progress\n"); + break; + case 1: + igt_info("PXP initialization complete\n"); + break; + default: + igt_assert_f(0, "unexpected PXP status %u\n", qpxp->status); + } + + igt_info("PXP supported types mask 0x%x\n", qpxp->supported_session_types); +} + igt_main { const struct { @@ -1094,6 +1154,7 @@ igt_main { "query-uc-fw-version-guc", test_query_uc_fw_version_guc }, { "query-uc-fw-version-huc", test_query_uc_fw_version_huc }, { "query-oa-units", test_query_oa_units }, + { "query-pxp-status", test_query_pxp_status }, { "query-invalid-cs-cycles", test_engine_cycles_invalid }, { "query-invalid-query", test_query_invalid_query }, { "query-invalid-size", test_query_invalid_size }, -- 2.43.0 From daniele.ceraolospurio at intel.com Thu Jan 16 00:19:33 2025 From: daniele.ceraolospurio at intel.com (Daniele Ceraolo Spurio) Date: Wed, 15 Jan 2025 16:19:33 -0800 Subject: [PATCH i-g-t v2 2/9] tests/intel/xe_vm: Update invalid flag subtest In-Reply-To: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> Message-ID: <20250116001951.4159243-3-daniele.ceraolospurio@intel.com> PXP introduced a new valid flag, so we need to add it to the test and shift the first invalid bit left by one. v2: only test the new flag if the kernel supports it. Signed-off-by: Daniele Ceraolo Spurio --- tests/intel/xe_vm.c | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c index 6ee3f4634..40e92d805 100644 --- a/tests/intel/xe_vm.c +++ b/tests/intel/xe_vm.c @@ -2173,6 +2173,22 @@ test_mmap_style_bind(int fd, struct drm_xe_engine_class_instance *eci, xe_vm_destroy(fd, vm); } +static bool pxp_interface_supported(int fd) +{ + struct drm_xe_device_query query = { + .extensions = 0, + .query = DRM_XE_DEVICE_QUERY_PXP_STATUS, + .size = 0, + .data = 0, + }; + int ret = 0; + + if (igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query)) + ret = -errno; + + return ret != -EINVAL; +} + /** * SUBTEST: bind-flag-invalid * Description: @@ -2221,6 +2237,13 @@ static void bind_flag_invalid(int fd) igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL)); syncobj_reset(fd, &sync[0].handle, 1); + if (pxp_interface_supported(fd)) { + bind.bind.flags = DRM_XE_VM_BIND_FLAG_CHECK_PXP; + igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind); + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL)); + syncobj_reset(fd, &sync[0].handle, 1); + } + bind.bind.flags = DRM_XE_VM_BIND_FLAG_NULL; bind.bind.obj = 0; igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind); @@ -2234,7 +2257,7 @@ static void bind_flag_invalid(int fd) syncobj_reset(fd, &sync[0].handle, 1); /* Using invalid flags should not work */ - bind.bind.flags = 1 << 4; + bind.bind.flags = 1 << 5; igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind); do_ioctl_err(fd, DRM_IOCTL_XE_VM_BIND, &bind, EINVAL); -- 2.43.0 From daniele.ceraolospurio at intel.com Thu Jan 16 00:19:35 2025 From: daniele.ceraolospurio at intel.com (Daniele Ceraolo Spurio) Date: Wed, 15 Jan 2025 16:19:35 -0800 Subject: [PATCH i-g-t v2 4/9] tests/intel/xe_create: Stop treating the extension field as MBZ In-Reply-To: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> Message-ID: <20250116001951.4159243-5-daniele.ceraolospurio@intel.com> A new extension for the xe_create ioctl was added to support PXP, so the field is no longer expected to always be zero. Signed-off-by: Daniele Ceraolo Spurio --- tests/intel/xe_create.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c index 07e11036d..0907a8a8a 100644 --- a/tests/intel/xe_create.c +++ b/tests/intel/xe_create.c @@ -127,11 +127,6 @@ static void create_invalid_mbz(int fd) gem_close(fd, create.handle); create.handle = 0; - /* No supported extensions yet */ - create.extensions = -1; - igt_assert_eq(__ioctl_create(fd, &create), -EINVAL); - create.extensions = 0; - /* Make sure KMD rejects non-zero padding/reserved fields */ for (i = 0; i < ARRAY_SIZE(create.pad); i++) { create.pad[i] = -1; -- 2.43.0 From daniele.ceraolospurio at intel.com Thu Jan 16 00:19:36 2025 From: daniele.ceraolospurio at intel.com (Daniele Ceraolo Spurio) Date: Wed, 15 Jan 2025 16:19:36 -0800 Subject: [PATCH i-g-t v2 5/9] tests/intel/xe_exec_queue_property: Update first invalid property value In-Reply-To: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> Message-ID: <20250116001951.4159243-6-daniele.ceraolospurio@intel.com> A new property was added with ID 2, so the invalid property testing should start from ID 3. No new tests are added to test the new property as that will be covered by the PXP tests. Signed-off-by: Daniele Ceraolo Spurio --- tests/intel/xe_exec_queue_property.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/intel/xe_exec_queue_property.c b/tests/intel/xe_exec_queue_property.c index 25a7e7abb..885d5bcc9 100644 --- a/tests/intel/xe_exec_queue_property.c +++ b/tests/intel/xe_exec_queue_property.c @@ -183,7 +183,7 @@ static void invalid_property(int xe) /* This will fail as soon as a new property is introduced. It is * expected and the test will have to be updated. */ - for (int i = 2; i < 16; i++ ) { + for (int i = 3; i < 16; i++ ) { ext.property = i; igt_assert_eq(__xe_exec_queue_create(xe, vm, 1, 1, &instance, to_user_pointer(&ext), &exec_queue_id), -EINVAL); -- 2.43.0 From daniele.ceraolospurio at intel.com Thu Jan 16 00:19:40 2025 From: daniele.ceraolospurio at intel.com (Daniele Ceraolo Spurio) Date: Wed, 15 Jan 2025 16:19:40 -0800 Subject: [PATCH i-g-t v2 9/9] tests/intel/xe_pxp: Test encrypted FBs In-Reply-To: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> Message-ID: <20250116001951.4159243-10-daniele.ceraolospurio@intel.com> PXP allows a user to send an encrypted BO to the display HW without having to decode it. The driver needs however to tell the HW that the BO is encrypted, otherwise it won't be displayed correctly. Furthermore, if PXP is terminated before the FB is displayed, we expect to see a black screen instead of what's in the BO. We can test both these flows by by displaying the expected image from a non-encrypted FB and and making sure that the CRC match when we display the encrypted FB. v2: move igt_require calls inside the subtest Signed-off-by: Daniele Ceraolo Spurio --- tests/intel/xe_pxp.c | 269 +++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 262 insertions(+), 7 deletions(-) diff --git a/tests/intel/xe_pxp.c b/tests/intel/xe_pxp.c index 86d649b2d..72d4d9c5b 100644 --- a/tests/intel/xe_pxp.c +++ b/tests/intel/xe_pxp.c @@ -25,8 +25,8 @@ IGT_TEST_DESCRIPTION("Test PXP that manages protected content through arbitrated * Test category: functionality test */ -static int __pxp_bo_create(int fd, uint32_t vm, uint64_t size, - uint32_t session_type, uint32_t *handle) +static int __pxp_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t placement, + uint32_t session_type, uint32_t flags, uint32_t *handle) { struct drm_xe_ext_set_property ext = { .base.next_extension = 0, @@ -36,7 +36,7 @@ static int __pxp_bo_create(int fd, uint32_t vm, uint64_t size, }; int ret = 0; - if (__xe_bo_create(fd, vm, size, system_memory(fd), 0, &ext, handle)) { + if (__xe_bo_create(fd, vm, size, placement, flags, &ext, handle)) { ret = -errno; errno = 0; } @@ -48,7 +48,19 @@ static uint32_t pxp_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t type) { uint32_t handle; - igt_assert_eq(__pxp_bo_create(fd, vm, size, type, &handle), 0); + igt_assert_eq(__pxp_bo_create(fd, vm, size, system_memory(fd), type, 0, &handle), 0); + + return handle; +} + +static uint32_t pxp_bo_create_display(int fd, uint32_t vm, uint64_t size, uint32_t type) +{ + uint32_t handle; + + igt_assert_eq(__pxp_bo_create(fd, vm, size, vram_if_possible(fd, 0), type, + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM | + DRM_XE_GEM_CREATE_FLAG_SCANOUT, + &handle), 0); return handle; } @@ -164,18 +176,18 @@ static void test_pxp_bo_alloc(int fd, bool pxp_supported) int ret; /* BO creation with DRM_XE_PXP_TYPE_NONE must always succeed */ - ret = __pxp_bo_create(fd, 0, 4096, DRM_XE_PXP_TYPE_NONE, &bo); + ret = __pxp_bo_create(fd, 0, 4096, system_memory(fd), DRM_XE_PXP_TYPE_NONE, 0, &bo); igt_assert_eq(ret, 0); gem_close(fd, bo); /* BO creation with DRM_XE_PXP_TYPE_HWDRM must only succeed if PXP is supported */ - ret = __pxp_bo_create(fd, 0, 4096, DRM_XE_PXP_TYPE_HWDRM, &bo); + ret = __pxp_bo_create(fd, 0, 4096, system_memory(fd), DRM_XE_PXP_TYPE_HWDRM, 0, &bo); igt_assert_eq(ret, pxp_supported ? 0 : -ENODEV); if (!ret) gem_close(fd, bo); /* BO creation with an invalid type must always fail */ - ret = __pxp_bo_create(fd, 0, 4096, 0xFF, &bo); + ret = __pxp_bo_create(fd, 0, 4096, system_memory(fd), 0xFF, 0, &bo); igt_assert_eq(ret, -EINVAL); } @@ -814,6 +826,226 @@ static void test_pxp_optout(int fd) __test_pxp_stale_bo_bind(fd, PXP_TERMINATION_IRQ, false); } +static void setup_fb(int fd, igt_fb_t *pxp_fb, int width, int height, uint32_t size) +{ + /* create an FB using a PXP BO */ + igt_init_fb(pxp_fb, fd, width, height, + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_NONE, + IGT_COLOR_YCBCR_BT709, IGT_COLOR_YCBCR_LIMITED_RANGE); + + igt_calc_fb_size(pxp_fb); + + pxp_fb->gem_handle = pxp_bo_create_display(fd, 0, size, DRM_XE_PXP_TYPE_HWDRM); + + do_or_die(__kms_addfb(pxp_fb->fd, pxp_fb->gem_handle, + pxp_fb->width, pxp_fb->height, + pxp_fb->drm_format, pxp_fb->modifier, + pxp_fb->strides, pxp_fb->offsets, pxp_fb->num_planes, DRM_MODE_FB_MODIFIERS, + &pxp_fb->fb_id)); +} + +static void setup_protected_fb_from_ref(int fd, igt_fb_t *ref_fb, igt_fb_t *pxp_fb, + uint32_t q, uint32_t vm) +{ + struct intel_buf *srcbuf, *dstbuf; + struct buf_ops *bops; + struct intel_bb *ibb; + igt_render_copyfunc_t render_copy; + + render_copy = igt_get_render_copyfunc(intel_get_drm_devid(fd)); + igt_assert(render_copy); + + bops = buf_ops_create(fd); + igt_assert(bops); + + /* create an FB using a PXP BO */ + setup_fb(fd, pxp_fb, ref_fb->width, ref_fb->height, ref_fb->size); + + /* copy the contents of ref_fb into the pxp BO */ + srcbuf = igt_fb_create_intel_buf(fd, bops, ref_fb, "ref_fb"); + dstbuf = igt_fb_create_intel_buf(fd, bops, pxp_fb, "pxp_fb"); + intel_buf_set_pxp(dstbuf, true); + + ibb = intel_bb_create_with_context(fd, q, vm, NULL, 4096); + igt_assert(ibb); + intel_bb_set_pxp(ibb, true, DISPLAY_APPTYPE, DRM_XE_PXP_HWDRM_DEFAULT_SESSION); + + render_copy(ibb, srcbuf, 0, 0, pxp_fb->width, pxp_fb->height, dstbuf, 0, 0); + intel_bb_sync(ibb); + + /* make sure the contents of the BOs don't match */ + igt_assert_neq(bocmp(fd, pxp_fb->gem_handle, ref_fb->gem_handle, pxp_fb->size), 0); + + intel_bb_destroy(ibb); + intel_buf_destroy(srcbuf); + intel_buf_destroy(dstbuf); + buf_ops_destroy(bops); +} + +static void compare_crcs(int fd, igt_display_t *display, igt_fb_t *ref_fb, igt_fb_t *pxp_fb) +{ + igt_output_t *output; + drmModeModeInfo *mode; + igt_plane_t *plane; + igt_pipe_t *pipe; + igt_pipe_crc_t *pipe_crc; + igt_crc_t ref_crc, new_crc; + + for_each_connected_output(display, output) { + mode = igt_output_get_mode(output); + pipe = &display->pipes[output->pending_pipe]; + pipe_crc = igt_pipe_crc_new(fd, pipe->pipe, + IGT_PIPE_CRC_SOURCE_AUTO); + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); + igt_require(igt_pipe_connector_valid(pipe->pipe, output)); + igt_output_set_pipe(output, pipe->pipe); + + igt_plane_set_fb(plane, ref_fb); + igt_fb_set_size(ref_fb, plane, mode->hdisplay, mode->vdisplay); + igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay); + + igt_display_commit2(display, COMMIT_ATOMIC); + igt_pipe_crc_collect_crc(pipe_crc, &ref_crc); + + igt_plane_set_fb(plane, pxp_fb); + igt_fb_set_size(pxp_fb, plane, mode->hdisplay, mode->vdisplay); + igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay); + + igt_display_commit2(display, COMMIT_ATOMIC); + igt_pipe_crc_collect_crc(pipe_crc, &new_crc); + igt_assert_crc_equal(&ref_crc, &new_crc); + + /* + * Testing with one pipe-output combination is sufficient. + * So break the loop. + */ + break; + } +} + +/** + * SUBTEST: display-pxp-fb + * Description: Test that an encrypted fb is displayed correctly by comparing + * its CRCs with the ones generated by a non-encrypted FB + * containing the same image + */ + +static void test_display_pxp_fb(int fd, igt_display_t *display) +{ + igt_output_t *output; + drmModeModeInfo *mode; + igt_fb_t ref_fb, pxp_fb; + igt_plane_t *plane; + igt_pipe_t *pipe; + int width = 0, height = 0, i = 0; + uint32_t q; + uint32_t vm; + + vm = xe_vm_create(fd, 0, 0); + q = create_pxp_rcs_queue(fd, vm); /* start the PXP session */ + + for_each_connected_output(display, output) { + mode = igt_output_get_mode(output); + + width = max_t(int, width, mode->hdisplay); + height = max_t(int, height, mode->vdisplay); + } + + igt_create_color_fb(fd, width, height, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, + 0, 1, 0, &ref_fb); + + /* Do a modeset on all outputs */ + for_each_connected_output(display, output) { + mode = igt_output_get_mode(output); + pipe = &display->pipes[i]; + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); + igt_require(igt_pipe_connector_valid(i, output)); + igt_output_set_pipe(output, i); + + igt_plane_set_fb(plane, &ref_fb); + igt_fb_set_size(&ref_fb, plane, mode->hdisplay, mode->vdisplay); + igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay); + + igt_display_commit2(display, COMMIT_ATOMIC); + i++; + } + + /* Create an encrypted FB with the same contents as ref_fb */ + setup_protected_fb_from_ref(fd, &ref_fb, &pxp_fb, q, vm); + + /* Flip both FBs and make sure the CRCs match */ + compare_crcs(fd, display, &ref_fb, &pxp_fb); + + igt_remove_fb(fd, &ref_fb); + igt_remove_fb(fd, &pxp_fb); + xe_exec_queue_destroy(fd, q); + xe_vm_destroy(fd, vm); +} + +/** + * SUBTEST: display-black-pxp-fb + * Description: Test that an invalid encrypted fb is correctly converted to a + * black screen by comparing its CRCs with the ones generated by a + * non-encrypted FB filled with black + */ + +static void test_display_black_pxp_fb(int fd, igt_display_t *display) +{ + igt_output_t *output; + drmModeModeInfo *mode; + igt_fb_t ref_fb, pxp_fb; + igt_plane_t *plane; + igt_pipe_t *pipe; + int width = 0, height = 0, i = 0; + uint32_t q; + uint32_t vm; + + vm = xe_vm_create(fd, 0, 0); + q = create_pxp_rcs_queue(fd, vm); /* start the PXP session */ + + for_each_connected_output(display, output) { + mode = igt_output_get_mode(output); + + width = max_t(int, width, mode->hdisplay); + height = max_t(int, height, mode->vdisplay); + } + + /* create a black fb */ + igt_create_color_fb(fd, width, height, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, + 0, 0, 0, &ref_fb); + + /* Do a modeset on all outputs */ + for_each_connected_output(display, output) { + mode = igt_output_get_mode(output); + pipe = &display->pipes[i]; + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); + igt_require(igt_pipe_connector_valid(i, output)); + igt_output_set_pipe(output, i); + + igt_plane_set_fb(plane, &ref_fb); + igt_fb_set_size(&ref_fb, plane, mode->hdisplay, mode->vdisplay); + igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay); + + igt_display_commit2(display, COMMIT_ATOMIC); + i++; + } + + /* Create an fb filled with a non-black color */ + setup_fb(fd, &pxp_fb, ref_fb.width, ref_fb.height, ref_fb.size); + fill_bo_content(fd, pxp_fb.gem_handle, pxp_fb.size, TSTSURF_INITCOLOR1); + + /* invalidate the BO */ + trigger_termination(fd, PXP_TERMINATION_IRQ); + + /* Flip both FBs and make sure the CRCs match */ + compare_crcs(fd, display, &ref_fb, &pxp_fb); + + igt_remove_fb(fd, &ref_fb); + igt_remove_fb(fd, &pxp_fb); + xe_exec_queue_destroy(fd, q); + xe_vm_destroy(fd, vm); +} + static void require_pxp(bool pxp_supported) { igt_require_f(pxp_supported, "PXP not supported\n"); @@ -826,6 +1058,12 @@ static void require_pxp_render(bool pxp_supported, uint32_t devid) "No rendercopy found for devid=%x\n", devid); } +static void require_display(int xe_fd, igt_display_t *display) +{ + igt_require_pipe_crc(xe_fd); + igt_display_require(display, xe_fd); +} + static void termination_tests(int fd, bool pxp_supported, uint32_t devid, enum termination_type type, const char *tag) { @@ -911,6 +1149,23 @@ igt_main } } + igt_subtest_group { + igt_display_t display; + + igt_describe("Test the flip of PXP objects to display"); + igt_subtest("display-pxp-fb") { + require_display(xe_fd, &display); + require_pxp_render(pxp_supported, devid); + test_display_pxp_fb(xe_fd, &display); + } + + igt_subtest("display-black-pxp-fb") { + require_display(xe_fd, &display); + require_pxp_render(pxp_supported, devid); + test_display_black_pxp_fb(xe_fd, &display); + } + } + igt_fixture { close(xe_fd); } -- 2.43.0 From daniele.ceraolospurio at intel.com Thu Jan 16 00:19:37 2025 From: daniele.ceraolospurio at intel.com (Daniele Ceraolo Spurio) Date: Wed, 15 Jan 2025 16:19:37 -0800 Subject: [PATCH i-g-t v2 6/9] tests/intel/xe_pxp: Add PXP object and queue creation tests In-Reply-To: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> Message-ID: <20250116001951.4159243-7-daniele.ceraolospurio@intel.com> PXP support introduces new SET_PROPERTY extensions to both BOs and exec_queues to mark them as being used for PXP workloads, so we need to test both correct and incorrect usage of those new interfaces. Since this is the first usage of extensions for BO creation, the common BO code has been update to support the extra parameter. v2: fix memory lead, remove unneeded igt_require (Alan) Signed-off-by: Daniele Ceraolo Spurio Cc: Alan Previn --- lib/xe/xe_ioctl.c | 14 +-- lib/xe/xe_ioctl.h | 2 +- tests/intel/xe_mmap.c | 1 + tests/intel/xe_pxp.c | 201 ++++++++++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 5 files changed, 213 insertions(+), 6 deletions(-) create mode 100644 tests/intel/xe_pxp.c diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c index 6d8388918..01ab7c758 100644 --- a/lib/xe/xe_ioctl.c +++ b/lib/xe/xe_ioctl.c @@ -264,7 +264,8 @@ static bool vram_selected(int fd, uint32_t selected_regions) } static uint32_t ___xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t placement, - uint32_t flags, uint16_t cpu_caching, uint32_t *handle) + uint32_t flags, uint16_t cpu_caching, void *ext, + uint32_t *handle) { struct drm_xe_gem_create create = { .vm_id = vm, @@ -275,6 +276,9 @@ static uint32_t ___xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t pla }; int err; + if (ext) + create.extensions = to_user_pointer(ext); + /* * In case vram_if_possible returned system_memory, * visible VRAM cannot be requested through flags @@ -292,11 +296,11 @@ static uint32_t ___xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t pla } uint32_t __xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t placement, - uint32_t flags, uint32_t *handle) + uint32_t flags, void *ext, uint32_t *handle) { uint16_t cpu_caching = __xe_default_cpu_caching(fd, placement, flags); - return ___xe_bo_create(fd, vm, size, placement, flags, cpu_caching, handle); + return ___xe_bo_create(fd, vm, size, placement, flags, cpu_caching, ext, handle); } uint32_t xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t placement, @@ -304,7 +308,7 @@ uint32_t xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t placement, { uint32_t handle; - igt_assert_eq(__xe_bo_create(fd, vm, size, placement, flags, &handle), 0); + igt_assert_eq(__xe_bo_create(fd, vm, size, placement, flags, NULL, &handle), 0); return handle; } @@ -312,7 +316,7 @@ uint32_t xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t placement, uint32_t __xe_bo_create_caching(int fd, uint32_t vm, uint64_t size, uint32_t placement, uint32_t flags, uint16_t cpu_caching, uint32_t *handle) { - return ___xe_bo_create(fd, vm, size, placement, flags, cpu_caching, handle); + return ___xe_bo_create(fd, vm, size, placement, flags, cpu_caching, NULL, handle); } uint32_t xe_bo_create_caching(int fd, uint32_t vm, uint64_t size, uint32_t placement, diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h index 18cc2b72b..c8a2d81c5 100644 --- a/lib/xe/xe_ioctl.h +++ b/lib/xe/xe_ioctl.h @@ -67,7 +67,7 @@ void xe_vm_unbind_all_async(int fd, uint32_t vm, uint32_t exec_queue, uint32_t num_syncs); void xe_vm_destroy(int fd, uint32_t vm); uint32_t __xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t placement, - uint32_t flags, uint32_t *handle); + uint32_t flags, void *ext, uint32_t *handle); uint32_t xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t placement, uint32_t flags); uint32_t __xe_bo_create_caching(int fd, uint32_t vm, uint64_t size, uint32_t placement, diff --git a/tests/intel/xe_mmap.c b/tests/intel/xe_mmap.c index 72dc16fc7..5fd641075 100644 --- a/tests/intel/xe_mmap.c +++ b/tests/intel/xe_mmap.c @@ -298,6 +298,7 @@ static void test_small_bar(int fd) igt_assert_neq(__xe_bo_create(fd, 0, visible_size + page_size, vram_memory(fd, 0), DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM, + NULL, &bo), 0); diff --git a/tests/intel/xe_pxp.c b/tests/intel/xe_pxp.c new file mode 100644 index 000000000..234fa8782 --- /dev/null +++ b/tests/intel/xe_pxp.c @@ -0,0 +1,201 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright ? 2024 Intel Corporation + */ + +#include "igt.h" +#include "xe_drm.h" +#include "xe/xe_ioctl.h" +#include "xe/xe_query.h" + +IGT_TEST_DESCRIPTION("Test PXP that manages protected content through arbitrated HW-PXP-session"); +/* Note: PXP = "Protected Xe Path" */ + +/** + * TEST: Test PXP functionality + * Category: Content protection + * Mega feature: PXP + * Sub-category: PXP tests + * Functionality: Execution of protected content + * Test category: functionality test + */ + +static int __pxp_bo_create(int fd, uint32_t vm, uint64_t size, + uint32_t session_type, uint32_t *handle) +{ + struct drm_xe_ext_set_property ext = { + .base.next_extension = 0, + .base.name = DRM_XE_GEM_CREATE_EXTENSION_SET_PROPERTY, + .property = DRM_XE_GEM_CREATE_SET_PROPERTY_PXP_TYPE, + .value = session_type, + }; + int ret = 0; + + if (__xe_bo_create(fd, vm, size, system_memory(fd), 0, &ext, handle)) { + ret = -errno; + errno = 0; + } + + return ret; +} + +static int __create_pxp_rcs_queue(int fd, uint32_t vm, + uint32_t session_type, + uint32_t *q) +{ + struct drm_xe_engine_class_instance inst = { + .engine_class = DRM_XE_ENGINE_CLASS_RENDER, + }; + struct drm_xe_ext_set_property ext = { 0 }; + uint64_t ext_ptr = to_user_pointer(&ext); + + ext.base.next_extension = 0, + ext.base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, + ext.property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PXP_TYPE, + ext.value = session_type; + + return __xe_exec_queue_create(fd, vm, 1, 1, &inst, ext_ptr, q); +} + +static int query_pxp_status(int fd) +{ + struct drm_xe_query_pxp_status *pxp_query; + struct drm_xe_device_query query = { + .extensions = 0, + .query = DRM_XE_DEVICE_QUERY_PXP_STATUS, + .size = 0, + .data = 0, + }; + int ret; + + if (igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query)) + return -errno; + + pxp_query = malloc(query.size); + igt_assert(pxp_query); + memset(pxp_query, 0, query.size); + + query.data = to_user_pointer(pxp_query); + + if (igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query)) + ret = -errno; + else + ret = pxp_query->status; + + free(pxp_query); + + return ret; +} + +static bool is_pxp_hw_supported(int fd) +{ + int pxp_status; + int i = 0; + + /* PXP init completes after driver init, so we might have to wait for it */ + while (i++ < 50) { + pxp_status = query_pxp_status(fd); + + /* -EINVAL means the PXP interface is not available */ + igt_require(pxp_status != -EINVAL); + + /* -ENODEV means PXP not supported or disabled */ + if (pxp_status == -ENODEV) + return false; + + /* status 1 means pxp is ready */ + if (pxp_status == 1) + return true; + + /* + * 0 means init still in progress, any other remaining state + * is an error + */ + igt_assert_eq(pxp_status, 0); + + usleep(50*1000); + } + + igt_assert_f(0, "PXP failed to initialize within the timeout\n"); + return false; +} + +/** + * SUBTEST: pxp-bo-alloc + * Description: Verify PXP bo allocation works as expected + */ +static void test_pxp_bo_alloc(int fd, bool pxp_supported) +{ + uint32_t bo; + int ret; + + /* BO creation with DRM_XE_PXP_TYPE_NONE must always succeed */ + ret = __pxp_bo_create(fd, 0, 4096, DRM_XE_PXP_TYPE_NONE, &bo); + igt_assert_eq(ret, 0); + gem_close(fd, bo); + + /* BO creation with DRM_XE_PXP_TYPE_HWDRM must only succeed if PXP is supported */ + ret = __pxp_bo_create(fd, 0, 4096, DRM_XE_PXP_TYPE_HWDRM, &bo); + igt_assert_eq(ret, pxp_supported ? 0 : -ENODEV); + if (!ret) + gem_close(fd, bo); + + /* BO creation with an invalid type must always fail */ + ret = __pxp_bo_create(fd, 0, 4096, 0xFF, &bo); + igt_assert_eq(ret, -EINVAL); +} + +/** + * SUBTEST: pxp-queue-alloc + * Description: Verify PXP exec queue creation works as expected + */ +static void test_pxp_queue_creation(int fd, bool pxp_supported) +{ + uint32_t q; + uint32_t vm; + int ret; + + vm = xe_vm_create(fd, 0, 0); + + /* queue creation with DRM_XE_PXP_TYPE_NONE must always succeed */ + ret = __create_pxp_rcs_queue(fd, vm, DRM_XE_PXP_TYPE_NONE, &q); + igt_assert_eq(ret, 0); + xe_exec_queue_destroy(fd, q); + + /* queue creation with DRM_XE_PXP_TYPE_HWDRM must only succeed if PXP is supported */ + ret = __create_pxp_rcs_queue(fd, vm, DRM_XE_PXP_TYPE_HWDRM, &q); + igt_assert_eq(ret, pxp_supported ? 0 : -ENODEV); + if (!ret) + xe_exec_queue_destroy(fd, q); + + /* queue creation with an invalid type must always fail */ + ret = __create_pxp_rcs_queue(fd, vm, 0xFF, &q); + igt_assert_eq(ret, -EINVAL); + + xe_vm_destroy(fd, vm); +} + +igt_main +{ + int xe_fd = -1; + bool pxp_supported = true; + + igt_fixture { + xe_fd = drm_open_driver(DRIVER_XE); + igt_require(xe_has_engine_class(xe_fd, DRM_XE_ENGINE_CLASS_RENDER)); + pxp_supported = is_pxp_hw_supported(xe_fd); + } + + igt_subtest_group { + igt_describe("Verify PXP allocations work as expected"); + igt_subtest("pxp-bo-alloc") + test_pxp_bo_alloc(xe_fd, pxp_supported); + + igt_subtest("pxp-queue-alloc") + test_pxp_queue_creation(xe_fd, pxp_supported); + } + + igt_fixture { + close(xe_fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index a6750d523..09adf0394 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -311,6 +311,7 @@ intel_xe_progs = [ 'xe_pm', 'xe_pm_residency', 'xe_prime_self_import', + 'xe_pxp', 'xe_query', 'xe_render_copy', 'xe_vm', -- 2.43.0 From daniele.ceraolospurio at intel.com Thu Jan 16 00:19:38 2025 From: daniele.ceraolospurio at intel.com (Daniele Ceraolo Spurio) Date: Wed, 15 Jan 2025 16:19:38 -0800 Subject: [PATCH i-g-t v2 7/9] tests/intel/xe_pxp: Test PXP submissions In-Reply-To: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> Message-ID: <20250116001951.4159243-8-daniele.ceraolospurio@intel.com> The render supports PXP usage via rendercopy. We can use this to test that a user is able to correctly encrypt their data. In particular, we cover these 2 scenarios: 1) copy from clear to encrypted - we expect the dest buffer to not match the src one due to the encryption. 2) copy from encrypted to encrypted = we expect the 2 BOs to match since they hold the same data encrypted with the same key. Note that the clear to clear copy is already covered by the xe_render_copy test. Since the render_copy uses the intel_batchbuffer helpers, those helpers have been updated to support vm bind of protected objects. v2: move igt_require calls inside the subtest Signed-off-by: Daniele Ceraolo Spurio --- lib/intel_batchbuffer.c | 17 ++- tests/intel/xe_pxp.c | 275 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 288 insertions(+), 4 deletions(-) diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index 72bbbf8c6..489e78782 100644 --- a/lib/intel_batchbuffer.c +++ b/lib/intel_batchbuffer.c @@ -1333,7 +1333,9 @@ void intel_bb_destroy(struct intel_bb *ibb) } #define XE_OBJ_SIZE(rsvd1) ((rsvd1) & ~(SZ_4K-1)) -#define XE_OBJ_PAT_IDX(rsvd1) ((rsvd1) & (SZ_4K-1)) +#define XE_OBJ_PAT_IDX(rsvd1) ((rsvd1) & (0xFF)) +#define XE_OBJ_PXP_BIT (0x100) +#define XE_OBJ_PXP(rsvd1) ((rsvd1) & (XE_OBJ_PXP_BIT)) static struct drm_xe_vm_bind_op *xe_alloc_bind_ops(struct intel_bb *ibb, uint32_t op, uint32_t flags, @@ -1355,6 +1357,9 @@ static struct drm_xe_vm_bind_op *xe_alloc_bind_ops(struct intel_bb *ibb, ops->op = op; ops->flags = flags; + + if (XE_OBJ_PXP(objects[i]->rsvd1)) + ops->flags |= DRM_XE_VM_BIND_FLAG_CHECK_PXP; ops->obj_offset = 0; ops->addr = objects[i]->offset; ops->range = XE_OBJ_SIZE(objects[i]->rsvd1); @@ -1745,7 +1750,7 @@ static void __remove_from_objects(struct intel_bb *ibb, static struct drm_i915_gem_exec_object2 * __intel_bb_add_object(struct intel_bb *ibb, uint32_t handle, uint64_t size, uint64_t offset, uint64_t alignment, uint8_t pat_index, - bool write) + bool protected, bool write) { struct drm_i915_gem_exec_object2 *object; @@ -1822,6 +1827,7 @@ __intel_bb_add_object(struct intel_bb *ibb, uint32_t handle, uint64_t size, object->alignment = alignment; object->rsvd1 = size; igt_assert(!XE_OBJ_PAT_IDX(object->rsvd1)); + igt_assert(!XE_OBJ_PXP(object->rsvd1)); if (pat_index == DEFAULT_PAT_INDEX) pat_index = intel_get_pat_idx_wb(ibb->fd); @@ -1833,6 +1839,9 @@ __intel_bb_add_object(struct intel_bb *ibb, uint32_t handle, uint64_t size, * information on xe... */ object->rsvd1 |= pat_index; + + if (protected) + object->rsvd1 |= XE_OBJ_PXP_BIT; } return object; @@ -1845,7 +1854,7 @@ intel_bb_add_object(struct intel_bb *ibb, uint32_t handle, uint64_t size, struct drm_i915_gem_exec_object2 *obj = NULL; obj = __intel_bb_add_object(ibb, handle, size, offset, - alignment, DEFAULT_PAT_INDEX, write); + alignment, DEFAULT_PAT_INDEX, false, write); igt_assert(obj); return obj; @@ -1909,7 +1918,7 @@ __intel_bb_add_intel_buf(struct intel_bb *ibb, struct intel_buf *buf, obj = __intel_bb_add_object(ibb, buf->handle, intel_buf_bo_size(buf), buf->addr.offset, alignment, buf->pat_index, - write); + buf->is_protected, write); igt_assert(obj); buf->addr.offset = obj->offset; diff --git a/tests/intel/xe_pxp.c b/tests/intel/xe_pxp.c index 234fa8782..57b82a3d6 100644 --- a/tests/intel/xe_pxp.c +++ b/tests/intel/xe_pxp.c @@ -4,6 +4,10 @@ */ #include "igt.h" +#include "intel_batchbuffer.h" +#include "intel_bufops.h" +#include "intel_mocs.h" +#include "intel_pat.h" #include "xe_drm.h" #include "xe/xe_ioctl.h" #include "xe/xe_query.h" @@ -39,6 +43,15 @@ static int __pxp_bo_create(int fd, uint32_t vm, uint64_t size, return ret; } +static uint32_t pxp_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t type) +{ + uint32_t handle; + + igt_assert_eq(__pxp_bo_create(fd, vm, size, type, &handle), 0); + + return handle; +} + static int __create_pxp_rcs_queue(int fd, uint32_t vm, uint32_t session_type, uint32_t *q) @@ -57,6 +70,17 @@ static int __create_pxp_rcs_queue(int fd, uint32_t vm, return __xe_exec_queue_create(fd, vm, 1, 1, &inst, ext_ptr, q); } +static uint32_t create_pxp_rcs_queue(int fd, uint32_t vm) +{ + uint32_t q; + int err; + + err = __create_pxp_rcs_queue(fd, vm, DRM_XE_PXP_TYPE_HWDRM, &q); + igt_assert_eq(err, 0); + + return q; +} + static int query_pxp_status(int fd) { struct drm_xe_query_pxp_status *pxp_query; @@ -175,13 +199,252 @@ static void test_pxp_queue_creation(int fd, bool pxp_supported) xe_vm_destroy(fd, vm); } +static void fill_bo_content(int fd, uint32_t bo, uint32_t size, uint8_t initcolor) +{ + uint32_t *ptr; + + ptr = xe_bo_mmap_ext(fd, bo, size, PROT_READ|PROT_WRITE); + + /* read and count all dword matches till size */ + memset(ptr, initcolor, size); + + igt_assert(munmap(ptr, size) == 0); +} + +static void __check_bo_color(int fd, uint32_t bo, uint32_t size, uint32_t color, bool readible) +{ + uint64_t comp; + uint64_t *ptr; + int i, num_matches = 0; + + comp = color; + comp = comp | (comp << 32); + + ptr = xe_bo_mmap_ext(fd, bo, size, PROT_READ); + + igt_assert_eq(size % sizeof(uint64_t), 0); + + for (i = 0; i < (size / sizeof(uint64_t)); i++) + if (ptr[i] == comp) + ++num_matches; + + if (readible) + igt_assert_eq(num_matches, (size / sizeof(uint64_t))); + else + igt_assert_eq(num_matches, 0); +} + +static void check_bo_color(int fd, uint32_t bo, uint32_t size, uint8_t color, bool readible) +{ + uint32_t comp; + + /* + * We memset the buffer using a u8 color value. However, this is too + * small to ensure the encrypted data does not accidentally match it, + * so we scale it up to a bigger size. + */ + comp = color; + comp = comp | (comp << 8) | (comp << 16) | (comp << 24); + + return __check_bo_color(fd, bo, size, comp, readible); +} + +static uint32_t __bo_create_and_fill(int fd, uint32_t vm, bool protected, + uint32_t size, uint8_t init_color) +{ + uint32_t bo; + + if (protected) + bo = pxp_bo_create(fd, vm, size, DRM_XE_PXP_TYPE_HWDRM); + else + bo = xe_bo_create(fd, vm, size, system_memory(fd), 0); + + fill_bo_content(fd, bo, size, init_color); + + return bo; +} + +static uint32_t pxp_bo_create_and_fill(int fd, uint32_t vm, uint32_t size, + uint8_t init_color) +{ + return __bo_create_and_fill(fd, vm, true, size, init_color); +} + +static uint32_t regular_bo_create_and_fill(int fd, uint32_t vm, uint32_t size, + uint8_t init_color) +{ + return __bo_create_and_fill(fd, vm, false, size, init_color); +} + +static struct intel_buf *buf_create(int fd, struct buf_ops *bops, uint32_t handle, + int width, int height, int bpp, uint64_t size) +{ + igt_assert(handle); + igt_assert(size); + return intel_buf_create_full(bops, handle, width, height, bpp, 0, + I915_TILING_NONE, 0, size, 0, + system_memory(fd), + DEFAULT_PAT_INDEX, DEFAULT_MOCS_INDEX); +} + +/* Rendering tests surface attributes */ +#define TSTSURF_WIDTH 64 +#define TSTSURF_HEIGHT 64 +#define TSTSURF_BYTESPP 4 +#define TSTSURF_STRIDE (TSTSURF_WIDTH * TSTSURF_BYTESPP) +#define TSTSURF_SIZE (TSTSURF_STRIDE * TSTSURF_HEIGHT) +#define TSTSURF_INITCOLOR1 0xAA +#define TSTSURF_FILLCOLOR1 0x55 +#define TSTSURF_INITCOLOR2 0x33 + +static void pxp_rendercopy(int fd, uint32_t q, uint32_t vm, uint32_t copy_size, + uint32_t srcbo, bool src_pxp, uint32_t dstbo, bool dst_pxp) +{ + igt_render_copyfunc_t render_copy; + struct intel_buf *srcbuf, *dstbuf; + struct buf_ops *bops; + struct intel_bb *ibb; + + /* + * we use the defined width and height below, which only works if the BO + * size is TSTSURF_SIZE + */ + igt_assert_eq(copy_size, TSTSURF_SIZE); + + render_copy = igt_get_render_copyfunc(intel_get_drm_devid(fd)); + igt_assert(render_copy); + + bops = buf_ops_create(fd); + igt_assert(bops); + + ibb = intel_bb_create_with_context(fd, q, vm, NULL, 4096); + igt_assert(ibb); + intel_bb_set_pxp(ibb, true, DISPLAY_APPTYPE, DRM_XE_PXP_HWDRM_DEFAULT_SESSION); + + dstbuf = buf_create(fd, bops, dstbo, TSTSURF_WIDTH, TSTSURF_HEIGHT, + TSTSURF_BYTESPP * 8, TSTSURF_SIZE); + intel_buf_set_pxp(dstbuf, dst_pxp); + + srcbuf = buf_create(fd, bops, srcbo, TSTSURF_WIDTH, TSTSURF_HEIGHT, + TSTSURF_BYTESPP * 8, TSTSURF_SIZE); + intel_buf_set_pxp(srcbuf, src_pxp); + + render_copy(ibb, srcbuf, 0, 0, TSTSURF_WIDTH, TSTSURF_HEIGHT, dstbuf, 0, 0); + intel_bb_sync(ibb); + + intel_buf_destroy(srcbuf); + intel_buf_destroy(dstbuf); + intel_bb_destroy(ibb); + buf_ops_destroy(bops); +} + +/** + * SUBTEST: regular-src-to-pxp-dest-rendercopy + * Description: copy from a regular BO to a PXP one and verify the encryption + */ +static void test_render_regular_src_to_pxp_dest(int fd) +{ + uint32_t vm, srcbo, dstbo; + uint32_t q; + + vm = xe_vm_create(fd, 0, 0); + + /* + * Perform a protected render operation but only label the dest as + * protected. After rendering, the content should be encrypted. + */ + q = create_pxp_rcs_queue(fd, vm); + + srcbo = regular_bo_create_and_fill(fd, vm, TSTSURF_SIZE, TSTSURF_FILLCOLOR1); + dstbo = pxp_bo_create_and_fill(fd, vm, TSTSURF_SIZE, TSTSURF_INITCOLOR1); + + pxp_rendercopy(fd, q, vm, TSTSURF_SIZE, srcbo, false, dstbo, true); + + check_bo_color(fd, dstbo, TSTSURF_SIZE, TSTSURF_FILLCOLOR1, false); + + gem_close(fd, srcbo); + gem_close(fd, dstbo); + xe_exec_queue_destroy(fd, q); + xe_vm_destroy(fd, vm); +} + +static int bocmp(int fd, uint32_t bo1, uint32_t bo2, uint32_t size) +{ + uint32_t *ptr1, *ptr2; + int ret; + + ptr1 = xe_bo_mmap_ext(fd, bo1, size, PROT_READ); + ptr2 = xe_bo_mmap_ext(fd, bo2, size, PROT_READ); + + ret = memcmp(ptr1, ptr2, size); + + igt_assert_eq(munmap(ptr1, size), 0); + igt_assert_eq(munmap(ptr2, size), 0); + + return ret; +} + +/** + * SUBTEST: pxp-src-to-pxp-dest-rendercopy + * Description: copy between 2 PXP BOs and verify the encryption + */ + +static void test_render_pxp_protsrc_to_protdest(int fd) +{ + uint32_t vm, srcbo, dstbo, dstbo2; + uint32_t q; + + vm = xe_vm_create(fd, 0, 0); + + q = create_pxp_rcs_queue(fd, vm); + + /* + * Copy from a regular src to a PXP dst to get a buffer with a + * valid encryption. + */ + srcbo = regular_bo_create_and_fill(fd, vm, TSTSURF_SIZE, TSTSURF_FILLCOLOR1); + dstbo = pxp_bo_create_and_fill(fd, vm, TSTSURF_SIZE, TSTSURF_INITCOLOR1); + + pxp_rendercopy(fd, q, vm, TSTSURF_SIZE, srcbo, false, dstbo, true); + + check_bo_color(fd, dstbo, TSTSURF_SIZE, TSTSURF_FILLCOLOR1, false); + + /* + * Reuse prior dst as the new-src and create dst2 as the new-dest. + * After the rendering, we should find no difference in content since + * both new-src and new-dest are labelled as encrypted. HW should read + * and decrypt new-src, perform the copy and re-encrypt with the same + * key when going into new-dest + */ + dstbo2 = pxp_bo_create_and_fill(fd, vm, TSTSURF_SIZE, TSTSURF_INITCOLOR2); + + pxp_rendercopy(fd, q, vm, TSTSURF_SIZE, dstbo, true, dstbo2, true); + + igt_assert_eq(bocmp(fd, dstbo, dstbo2, TSTSURF_SIZE), 0); + + gem_close(fd, srcbo); + gem_close(fd, dstbo); + gem_close(fd, dstbo2); + xe_exec_queue_destroy(fd, q); + xe_vm_destroy(fd, vm); +} + +static void require_pxp_render(bool pxp_supported, uint32_t devid) +{ + igt_require_f(pxp_supported, "PXP not supported\n"); + igt_require_f(igt_get_render_copyfunc(devid), + "No rendercopy found for devid=%x\n", devid); +} + igt_main { int xe_fd = -1; bool pxp_supported = true; + uint32_t devid = 0; igt_fixture { xe_fd = drm_open_driver(DRIVER_XE); + devid = intel_get_drm_devid(xe_fd); igt_require(xe_has_engine_class(xe_fd, DRM_XE_ENGINE_CLASS_RENDER)); pxp_supported = is_pxp_hw_supported(xe_fd); } @@ -195,6 +458,18 @@ igt_main test_pxp_queue_creation(xe_fd, pxp_supported); } + igt_subtest_group { + igt_describe("Verify protected render operations:"); + igt_subtest("regular-src-to-pxp-dest-rendercopy") { + require_pxp_render(pxp_supported, devid); + test_render_regular_src_to_pxp_dest(xe_fd); + } + igt_subtest("pxp-src-to-pxp-dest-rendercopy") { + require_pxp_render(pxp_supported, devid); + test_render_pxp_protsrc_to_protdest(xe_fd); + } + } + igt_fixture { close(xe_fd); } -- 2.43.0 From daniele.ceraolospurio at intel.com Thu Jan 16 00:19:39 2025 From: daniele.ceraolospurio at intel.com (Daniele Ceraolo Spurio) Date: Wed, 15 Jan 2025 16:19:39 -0800 Subject: [PATCH i-g-t v2 8/9] tests/intel/xe_pxp: Termination tests In-Reply-To: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> Message-ID: <20250116001951.4159243-9-daniele.ceraolospurio@intel.com> There are several events that can cause the PXP key to be invalidated and trigger a PXP termination (suspend, PXP termination irq). After a termination, we expect the key to be different and the raw encrypted data to change for the same source data. Additionally, all PXP objects are invalidated during a termination and can no longer be used in submission or kept mapped to VMs; we therefore need to test both the execution and bind ioctls to make sure they work as expected after a termination. v2: move igt_require calls inside the subtest Signed-off-by: Daniele Ceraolo Spurio --- lib/intel_batchbuffer.c | 8 +- lib/intel_batchbuffer.h | 1 + lib/xe/xe_ioctl.c | 12 +- lib/xe/xe_ioctl.h | 2 + tests/intel/xe_pxp.c | 453 +++++++++++++++++++++++++++++++++++++++- 5 files changed, 463 insertions(+), 13 deletions(-) diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index 489e78782..a15859786 100644 --- a/lib/intel_batchbuffer.c +++ b/lib/intel_batchbuffer.c @@ -2416,9 +2416,9 @@ static void update_offsets(struct intel_bb *ibb, #define LINELEN 76 -static int -__xe_bb_exec(struct intel_bb *ibb, uint64_t flags, bool sync) +int __xe_bb_exec(struct intel_bb *ibb, uint64_t flags, bool sync) { + int ret = 0; uint32_t engine = flags & (I915_EXEC_BSD_MASK | I915_EXEC_RING_MASK); uint32_t engine_id; struct drm_xe_sync syncs[2] = { @@ -2495,12 +2495,12 @@ __xe_bb_exec(struct intel_bb *ibb, uint64_t flags, bool sync) ibb->engine_syncobj = syncobj_create(ibb->fd, 0); syncs[1].handle = ibb->engine_syncobj; - xe_exec_sync(ibb->fd, engine_id, ibb->batch_offset, syncs, 2); + ret = xe_exec_sync_failable(ibb->fd, engine_id, ibb->batch_offset, syncs, 2); if (sync) intel_bb_sync(ibb); - return 0; + return ret; } static int diff --git a/lib/intel_batchbuffer.h b/lib/intel_batchbuffer.h index 178aaa9d8..6a7e8df4a 100644 --- a/lib/intel_batchbuffer.h +++ b/lib/intel_batchbuffer.h @@ -508,6 +508,7 @@ void intel_bb_dump_cache(struct intel_bb *ibb); void intel_bb_exec(struct intel_bb *ibb, uint32_t end_offset, uint64_t flags, bool sync); +int __xe_bb_exec(struct intel_bb *ibb, uint64_t flags, bool sync); uint64_t intel_bb_get_object_offset(struct intel_bb *ibb, uint32_t handle); bool intel_bb_object_offset_to_buf(struct intel_bb *ibb, struct intel_buf *buf); diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c index 01ab7c758..cd7314eda 100644 --- a/lib/xe/xe_ioctl.c +++ b/lib/xe/xe_ioctl.c @@ -462,8 +462,8 @@ void xe_exec(int fd, struct drm_xe_exec *exec) igt_assert_eq(__xe_exec(fd, exec), 0); } -void xe_exec_sync(int fd, uint32_t exec_queue, uint64_t addr, - struct drm_xe_sync *sync, uint32_t num_syncs) +int xe_exec_sync_failable(int fd, uint32_t exec_queue, uint64_t addr, + struct drm_xe_sync *sync, uint32_t num_syncs) { struct drm_xe_exec exec = { .exec_queue_id = exec_queue, @@ -473,7 +473,13 @@ void xe_exec_sync(int fd, uint32_t exec_queue, uint64_t addr, .num_batch_buffer = 1, }; - igt_assert_eq(__xe_exec(fd, &exec), 0); + return __xe_exec(fd, &exec); +} + +void xe_exec_sync(int fd, uint32_t exec_queue, uint64_t addr, + struct drm_xe_sync *sync, uint32_t num_syncs) +{ + igt_assert_eq(xe_exec_sync_failable(fd, exec_queue, addr, sync, num_syncs), 0); } void xe_exec_wait(int fd, uint32_t exec_queue, uint64_t addr) diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h index c8a2d81c5..9bdf73b2b 100644 --- a/lib/xe/xe_ioctl.h +++ b/lib/xe/xe_ioctl.h @@ -91,6 +91,8 @@ int __xe_exec(int fd, struct drm_xe_exec *exec); void xe_exec(int fd, struct drm_xe_exec *exec); void xe_exec_sync(int fd, uint32_t exec_queue, uint64_t addr, struct drm_xe_sync *sync, uint32_t num_syncs); +int xe_exec_sync_failable(int fd, uint32_t exec_queue, uint64_t addr, + struct drm_xe_sync *sync, uint32_t num_syncs); void xe_exec_wait(int fd, uint32_t exec_queue, uint64_t addr); int __xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, uint32_t exec_queue, int64_t *timeout); diff --git a/tests/intel/xe_pxp.c b/tests/intel/xe_pxp.c index 57b82a3d6..86d649b2d 100644 --- a/tests/intel/xe_pxp.c +++ b/tests/intel/xe_pxp.c @@ -4,6 +4,7 @@ */ #include "igt.h" +#include "igt_syncobj.h" #include "intel_batchbuffer.h" #include "intel_bufops.h" #include "intel_mocs.h" @@ -81,6 +82,15 @@ static uint32_t create_pxp_rcs_queue(int fd, uint32_t vm) return q; } +static uint32_t create_regular_rcs_queue(int fd, uint32_t vm) +{ + struct drm_xe_engine_class_instance inst = { + .engine_class = DRM_XE_ENGINE_CLASS_RENDER, + }; + + return xe_exec_queue_create(fd, vm, &inst, 0); +} + static int query_pxp_status(int fd) { struct drm_xe_query_pxp_status *pxp_query; @@ -338,15 +348,25 @@ static void pxp_rendercopy(int fd, uint32_t q, uint32_t vm, uint32_t copy_size, buf_ops_destroy(bops); } -/** - * SUBTEST: regular-src-to-pxp-dest-rendercopy - * Description: copy from a regular BO to a PXP one and verify the encryption - */ -static void test_render_regular_src_to_pxp_dest(int fd) +static void copy_bo_cpu(int fd, uint32_t bo, uint32_t *dst, uint32_t size) +{ + uint32_t *src_ptr; + + src_ptr = xe_bo_mmap_ext(fd, bo, size, PROT_READ); + + memcpy(dst, src_ptr, size); + + igt_assert_eq(munmap(src_ptr, size), 0); +} + +static void __test_render_regular_src_to_pxp_dest(int fd, uint32_t *outpixels, int outsize) { uint32_t vm, srcbo, dstbo; uint32_t q; + if (outpixels) + igt_assert_lte(TSTSURF_SIZE, outsize); + vm = xe_vm_create(fd, 0, 0); /* @@ -362,12 +382,24 @@ static void test_render_regular_src_to_pxp_dest(int fd) check_bo_color(fd, dstbo, TSTSURF_SIZE, TSTSURF_FILLCOLOR1, false); + if (outpixels) + copy_bo_cpu(fd, dstbo, outpixels, TSTSURF_SIZE); + gem_close(fd, srcbo); gem_close(fd, dstbo); xe_exec_queue_destroy(fd, q); xe_vm_destroy(fd, vm); } +/** + * SUBTEST: regular-src-to-pxp-dest-rendercopy + * Description: copy from a regular BO to a PXP one and verify the encryption + */ +static void test_render_regular_src_to_pxp_dest(int fd) +{ + __test_render_regular_src_to_pxp_dest(fd, NULL, 0); +} + static int bocmp(int fd, uint32_t bo1, uint32_t bo2, uint32_t size) { uint32_t *ptr1, *ptr2; @@ -429,13 +461,400 @@ static void test_render_pxp_protsrc_to_protdest(int fd) xe_vm_destroy(fd, vm); } -static void require_pxp_render(bool pxp_supported, uint32_t devid) +#define PS_OP_TAG_LOW 0x1234fed0 +#define PS_OP_TAG_HI 0x5678cbaf +static void emit_pipectrl(struct intel_bb *ibb, struct intel_buf *fenceb) +{ + uint32_t pipe_ctl_flags = 0; + + intel_bb_out(ibb, GFX_OP_PIPE_CONTROL(2)); + intel_bb_out(ibb, pipe_ctl_flags); + + pipe_ctl_flags = (PIPE_CONTROL_FLUSH_ENABLE | + PIPE_CONTROL_CS_STALL | + PIPE_CONTROL_QW_WRITE); + intel_bb_out(ibb, GFX_OP_PIPE_CONTROL(6)); + intel_bb_out(ibb, pipe_ctl_flags); + + intel_bb_emit_reloc(ibb, fenceb->handle, 0, I915_GEM_DOMAIN_COMMAND, 0, + fenceb->addr.offset); + intel_bb_out(ibb, PS_OP_TAG_LOW); + intel_bb_out(ibb, PS_OP_TAG_HI); + intel_bb_out(ibb, MI_NOOP); + intel_bb_out(ibb, MI_NOOP); +} + +static void assert_pipectl_storedw_done(int fd, uint32_t bo) +{ + uint32_t *ptr; + + ptr = xe_bo_mmap_ext(fd, bo, 4096, PROT_READ|PROT_WRITE); + igt_assert_eq(ptr[0], PS_OP_TAG_LOW); + igt_assert_eq(ptr[1], PS_OP_TAG_HI); + + igt_assert(munmap(ptr, 4096) == 0); +} + +static int submit_flush_store_dw(int fd, uint32_t q, bool q_is_pxp, uint32_t vm, + uint32_t dst, bool dst_is_pxp) +{ + struct intel_buf *dstbuf; + struct buf_ops *bops; + struct intel_bb *ibb; + int ret = 0; + + bops = buf_ops_create(fd); + igt_assert(bops); + + ibb = intel_bb_create_with_context(fd, q, vm, NULL, 4096); + igt_assert(ibb); + intel_bb_set_pxp(ibb, q_is_pxp, DISPLAY_APPTYPE, DRM_XE_PXP_HWDRM_DEFAULT_SESSION); + + dstbuf = buf_create(fd, bops, dst, 256, 4, 32, 4096); + intel_buf_set_pxp(dstbuf, dst_is_pxp); + + intel_bb_ptr_set(ibb, 0); + intel_bb_add_intel_buf(ibb, dstbuf, true); + emit_pipectrl(ibb, dstbuf); + intel_bb_emit_bbe(ibb); + ret = __xe_bb_exec(ibb, 0, false); + if (ret == 0) + ret = intel_bb_sync(ibb); + if (ret == 0) + assert_pipectl_storedw_done(fd, dst); + + intel_buf_destroy(dstbuf); + intel_bb_destroy(ibb); + buf_ops_destroy(bops); + + return ret; +} + +static void trigger_pxp_debugfs_forced_teardown(int xe_fd) +{ + char str[32]; + int ret; + int fd; + + fd = igt_debugfs_dir(xe_fd); + igt_assert(fd >= 0); + ret = igt_debugfs_simple_read(fd, "pxp/terminate", str, 32); + igt_assert_f(ret >= 0, "Can't open pxp termination debugfs\n"); + + /* give the kernel time to handle the termination */ + sleep(1); +} + +enum termination_type { + PXP_TERMINATION_IRQ, + PXP_TERMINATION_RPM, + PXP_TERMINATION_SUSPEND +}; + +static void trigger_termination(int fd, enum termination_type type) +{ + switch (type) { + case PXP_TERMINATION_IRQ: + trigger_pxp_debugfs_forced_teardown(fd); + break; + case PXP_TERMINATION_RPM: + igt_require(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED)); + break; + case PXP_TERMINATION_SUSPEND: + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, SUSPEND_TEST_DEVICES); + break; + } +} + +/** + * SUBTEST: pxp-termination-key-update-post-termination-irq + * Description: Verify key is changed after a termination irq + */ + +/** + * SUBTEST: pxp-termination-key-update-post-suspend + * Description: Verify key is changed after a suspend/resume cycle + */ + +/** + * SUBTEST: pxp-termination-key-update-post-rpm + * Description: Verify key is changed after a runtime suspend/resume cycle + */ + +static void test_pxp_teardown_keychange(int fd, enum termination_type type) +{ + uint32_t* encrypted_data_before; + uint32_t* encrypted_data_after; + int matched_after_keychange = 0, loop = 0; + + encrypted_data_before = malloc(TSTSURF_SIZE); + encrypted_data_after = malloc(TSTSURF_SIZE); + igt_assert(encrypted_data_before && encrypted_data_after); + + __test_render_regular_src_to_pxp_dest(fd, encrypted_data_before, TSTSURF_SIZE); + + trigger_termination(fd, type); + + __test_render_regular_src_to_pxp_dest(fd, encrypted_data_after, TSTSURF_SIZE); + + while (loop < (TSTSURF_SIZE/TSTSURF_BYTESPP)) { + if (encrypted_data_before[loop] == encrypted_data_after[loop]) + ++matched_after_keychange; + ++loop; + } + igt_assert_eq(matched_after_keychange, 0); + + free(encrypted_data_before); + free(encrypted_data_after); +} + +/** + * SUBTEST: pxp-stale-bo-bind-post-termination-irq + * Description: verify that VM bind on a stale BO (due to a termination irq) is rejected. + */ + +/** + * SUBTEST: pxp-stale-bo-bind-post-suspend + * Description: verify that VM bind on a stale BO (due to a suspend/resume cycle) + * is rejected. + */ + +/** + * SUBTEST: pxp-stale-bo-bind-post-rpm + * Description: verify that VM bind on a stale BO (due to a runtime suspend/resume + * cycle) is rejected. + */ + +static void __test_pxp_stale_bo_bind(int fd, enum termination_type type, bool pxp) +{ + uint32_t vm, q; + uint32_t dstbo; + uint32_t flags = pxp ? DRM_XE_VM_BIND_FLAG_CHECK_PXP : 0; + int ret; + + vm = xe_vm_create(fd, 0, 0); + q = create_pxp_rcs_queue(fd, vm); + + dstbo = pxp_bo_create(fd, vm, 4096, DRM_XE_PXP_TYPE_HWDRM); + + igt_assert_eq(submit_flush_store_dw(fd, q, true, vm, dstbo, true), 0); + + /* + * RPM cleanup is automatic as soon as we release the reference, so we + * neet to make sure not to release it before other types of termination + * have occurred. + */ + if (type == PXP_TERMINATION_RPM) { + xe_exec_queue_destroy(fd, q); + trigger_termination(fd, type); + } else { + trigger_termination(fd, type); + xe_exec_queue_destroy(fd, q); + } + + /* trying to map a stale BO is an illegal op */ + ret = __xe_vm_bind(fd, vm, 0, dstbo, 0, 0, 4096, DRM_XE_VM_BIND_OP_MAP, + flags, NULL, 0, 0, DEFAULT_PAT_INDEX, 0); + igt_assert_eq(ret, pxp ? -ENOEXEC : 0); + + gem_close(fd, dstbo); + xe_vm_destroy(fd, vm); +} + +static void test_pxp_stale_bo_bind(int fd, enum termination_type type) +{ + __test_pxp_stale_bo_bind(fd, type, true); +} + +static void pxp_vm_bind_sync(int fd, uint32_t vm, uint32_t bo, uint64_t addr, + uint64_t size, uint32_t op) +{ + struct drm_xe_sync sync = { + .type = DRM_XE_SYNC_TYPE_SYNCOBJ, + .flags = DRM_XE_SYNC_FLAG_SIGNAL, + .handle = syncobj_create(fd, 0), + }; + + __xe_vm_bind_assert(fd, vm, 0, bo, 0, addr, size, op, + DRM_XE_VM_BIND_FLAG_CHECK_PXP, &sync, 1, 0, 0); + + igt_assert(syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL)); + syncobj_destroy(fd, sync.handle); +} + +static uint32_t create_and_bind_simple_pxp_batch(int fd, uint32_t vm, + uint32_t size, uint64_t addr) +{ + uint32_t bo; + uint32_t *map; + bo = pxp_bo_create(fd, vm, 4096, DRM_XE_PXP_TYPE_HWDRM); + pxp_vm_bind_sync(fd, vm, bo, addr, size, DRM_XE_VM_BIND_OP_MAP); + + map = xe_bo_map(fd, bo, 4096); + *map = MI_BATCH_BUFFER_END; + munmap(map, 4096); + + return bo; +} + +/** + * SUBTEST: pxp-stale-bo-exec-post-termination-irq + * Description: verify that a submission using VM with a mapped stale BO (due to + * a termination irq) is rejected. + */ + +/** + * SUBTEST: pxp-stale-bo-exec-post-suspend + * Description: verify that a submission using VM with a mapped stale BO (due to + * a suspend/resume cycle) is rejected. + */ + +/** + * SUBTEST: pxp-stale-bo-exec-post-rpm + * Description: verify that a submission using VM with a mapped stale BO (due to + * a runtime suspend/resume cycle) is rejected. + */ + +static void __test_pxp_stale_bo_exec(int fd, enum termination_type type, bool pxp) +{ + uint32_t vm, q; + uint32_t bo; + int expected; + + vm = xe_vm_create(fd, 0, 0); + + q = create_pxp_rcs_queue(fd, vm); /* start a PXP session */ + bo = create_and_bind_simple_pxp_batch(fd, vm, 4096, 0); + + /* + * RPM cleanup is automatic as soon as we release the reference, so we + * neet to make sure not to release it before other types of termination + * have occurred. + */ + if (type == PXP_TERMINATION_RPM) { + xe_exec_queue_destroy(fd, q); + trigger_termination(fd, type); + } else { + trigger_termination(fd, type); + xe_exec_queue_destroy(fd, q); + } + + /* create a clean queue using the VM with the invalid object mapped in */ + if (pxp) { + q = create_pxp_rcs_queue(fd, vm); + expected = -ENOEXEC; + } else { + q = create_regular_rcs_queue(fd, vm); + expected = 0; + } + + igt_assert_eq(xe_exec_sync_failable(fd, q, 0, NULL, 0), expected); + + /* now make sure we can unmap the stale BO and have a clean exec after */ + if (pxp) { + pxp_vm_bind_sync(fd, vm, 0, 0, 4096, DRM_XE_VM_BIND_OP_UNMAP); + gem_close(fd, bo); + + bo = create_and_bind_simple_pxp_batch(fd, vm, 4096, 0); + igt_assert_eq(xe_exec_sync_failable(fd, q, 0, NULL, 0), 0); + } + + xe_exec_queue_destroy(fd, q); + gem_close(fd, bo); + xe_vm_destroy(fd, vm); +} + +static void test_pxp_stale_bo_exec(int fd, enum termination_type type) +{ + __test_pxp_stale_bo_exec(fd, type, true); +} + +/** + * SUBTEST: pxp-stale-queue-post-termination-irq + * Description: verify that submissions on a stale queue (due to a termination + * irq) are cancelled + */ + +/** + * SUBTEST: pxp-stale-queue-post-suspend + * Description: verify that submissions on a stale queue (due to a suspend/resume + * cycle) are cancelled + */ + +static void test_pxp_stale_queue_execution(int fd, enum termination_type type) +{ + uint32_t vm, q; + uint32_t dstbo; + + vm = xe_vm_create(fd, 0, 0); + q = create_pxp_rcs_queue(fd, vm); + + dstbo = regular_bo_create_and_fill(fd, vm, 4096, 0); + + igt_assert_eq(submit_flush_store_dw(fd, q, true, vm, dstbo, false), 0); + + trigger_termination(fd, type); + + /* when we execute an invalid queue we expect the job to be canceled */ + igt_assert_eq(submit_flush_store_dw(fd, q, true, vm, dstbo, false), -ECANCELED); + + gem_close(fd, dstbo); + xe_exec_queue_destroy(fd, q); + xe_vm_destroy(fd, vm); +} + +/** + * SUBTEST: pxp-optout + * Description: verify that submssions with stale objects/queues are not blocked + * if the user does not opt-in to the PXP checks. + */ +static void test_pxp_optout(int fd) +{ + __test_pxp_stale_bo_exec(fd, PXP_TERMINATION_IRQ, false); + __test_pxp_stale_bo_bind(fd, PXP_TERMINATION_IRQ, false); +} + +static void require_pxp(bool pxp_supported) { igt_require_f(pxp_supported, "PXP not supported\n"); +} + +static void require_pxp_render(bool pxp_supported, uint32_t devid) +{ + require_pxp(pxp_supported); igt_require_f(igt_get_render_copyfunc(devid), "No rendercopy found for devid=%x\n", devid); } +static void termination_tests(int fd, bool pxp_supported, uint32_t devid, + enum termination_type type, const char *tag) +{ + if (type == PXP_TERMINATION_RPM) + igt_setup_runtime_pm(fd); + + igt_subtest_f("pxp-termination-key-update-post-%s", tag) { + require_pxp_render(pxp_supported, devid); + test_pxp_teardown_keychange(fd, type); + } + igt_subtest_f("pxp-stale-bo-bind-post-%s", tag) { + require_pxp(pxp_supported); + test_pxp_stale_bo_bind(fd, type); + } + igt_subtest_f("pxp-stale-bo-exec-post-%s", tag) { + require_pxp(pxp_supported); + test_pxp_stale_bo_exec(fd, type); + } + + /* An active PXP queue holds an RPM ref, so we can't test RPM with it */ + if (type != PXP_TERMINATION_RPM) + igt_subtest_f("pxp-stale-queue-post-%s", tag) { + require_pxp(pxp_supported); + test_pxp_stale_queue_execution(fd, type); + } + else + igt_restore_runtime_pm(); +} + igt_main { int xe_fd = -1; @@ -470,6 +889,28 @@ igt_main } } + igt_subtest_group { + const struct mode { + enum termination_type type; + const char *tag; + } modes[] = { + { PXP_TERMINATION_IRQ, "termination-irq" }, + { PXP_TERMINATION_SUSPEND, "suspend" }, + { PXP_TERMINATION_RPM, "rpm" }, + { 0, NULL } + }; + + igt_describe("Verify teardown management"); + + for (const struct mode *m = modes; m->tag; m++) + termination_tests(xe_fd, pxp_supported, devid, m->type, m->tag); + + igt_subtest("pxp-optout") { + require_pxp(pxp_supported); + test_pxp_optout(xe_fd); + } + } + igt_fixture { close(xe_fd); } -- 2.43.0 From patchwork at emeril.freedesktop.org Thu Jan 16 02:48:14 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 02:48:14 -0000 Subject: =?utf-8?q?=E2=9C=97_GitLab=2EPipeline=3A_warning_for_tests/amdgpu/amd=5Fabm?= =?utf-8?q?=3A_Fix_test_failed_on_self-refresh_panel?= In-Reply-To: <20250115095904.1965-1-chiahsuan.chung@amd.com> References: <20250115095904.1965-1-chiahsuan.chung@amd.com> Message-ID: <173699569442.66917.6810879463519005689@b555e5b46a47> == Series Details == Series: tests/amdgpu/amd_abm: Fix test failed on self-refresh panel URL : https://patchwork.freedesktop.org/series/143552/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1346521 for the overview. build:tests-debian-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69427695): Getting source from Git repository $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Initialized empty Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Created fresh repository. Checking out 3abf2713 as detached HEAD (ref is intel/IGTPW_12441)... Skipping Git submodules setup section_end:1736995265:get_sources section_start:1736995265:step_script Executing "step_script" stage of the job script Using docker image sha256:ca01fc804bb92e5df42a202dd7e0470610c6711c66a808525defcb8bbb774078 for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian:commit-3abf2713641d73eb3203d233b917c7533ec61f2e with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian at sha256:b9fe73c6ff5d68f5692fd18b9076735679c8bfa7ed393e752dd4927a2cdf9874 ... section_end:1736995269:step_script section_start:1736995269:cleanup_file_variables Cleaning up project directory and file based variables section_end:1736995272:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:ca01fc804bb92e5df42a202dd7e0470610c6711c66a808525defcb8bbb774078: image not known (docker.go:650:0s) == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1346521 From patchwork at emeril.freedesktop.org Thu Jan 16 03:45:10 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 03:45:10 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/amdgpu/amd=5Fabm=3A_F?= =?utf-8?q?ix_test_failed_on_self-refresh_panel?= In-Reply-To: <20250115095904.1965-1-chiahsuan.chung@amd.com> References: <20250115095904.1965-1-chiahsuan.chung@amd.com> Message-ID: <173699911089.82602.13411088222041269373@b555e5b46a47> == Series Details == Series: tests/amdgpu/amd_abm: Fix test failed on self-refresh panel URL : https://patchwork.freedesktop.org/series/143552/ State : success == Summary == CI Bug Log - changes from XEIGT_8193_BAT -> XEIGTPW_12441_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12441_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [DMESG-WARN][3] -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/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_8193 -> IGTPW_12441 IGTPW_12441: 12441 IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 16 03:49:14 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 03:49:14 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/amdgpu/amd=5Fabm=3A?= =?utf-8?q?_Fix_test_failed_on_self-refresh_panel?= In-Reply-To: <20250115095904.1965-1-chiahsuan.chung@amd.com> References: <20250115095904.1965-1-chiahsuan.chung@amd.com> Message-ID: <173699935493.70384.18221824039353095738@b555e5b46a47> == Series Details == Series: tests/amdgpu/amd_abm: Fix test failed on self-refresh panel URL : https://patchwork.freedesktop.org/series/143552/ State : success == Summary == CI Bug Log - changes from IGT_8193 -> IGTPW_12441 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/index.html Participating hosts (42 -> 41) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12441 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at dmabuf@all-tests: - bat-apl-1: [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-apl-1/igt at dmabuf@all-tests.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/bat-apl-1/igt at dmabuf@all-tests.html * igt at dmabuf@all-tests at dma_fence_chain: - fi-bsw-nick: [PASS][3] -> [INCOMPLETE][4] ([i915#12904]) +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/fi-bsw-nick/igt at dmabuf@all-tests at dma_fence_chain.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/fi-bsw-nick/igt at dmabuf@all-tests at dma_fence_chain.html * igt at i915_selftest@live: - bat-mtlp-8: NOTRUN -> [DMESG-FAIL][5] ([i915#13393]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/bat-mtlp-8/igt at i915_selftest@live.html - bat-adlp-6: [PASS][6] -> [ABORT][7] ([i915#13399]) +1 other test abort [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-adlp-6/igt at i915_selftest@live.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/bat-adlp-6/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-adlp-9: [PASS][8] -> [INCOMPLETE][9] ([i915#9413]) +1 other test incomplete [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-adlp-9/igt at i915_selftest@live at workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/bat-adlp-9/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_pm_rpm@module-reload: - bat-mtlp-8: [INCOMPLETE][10] ([i915#13495]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-8/igt at i915_pm_rpm@module-reload.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/bat-mtlp-8/igt at i915_pm_rpm@module-reload.html * igt at i915_selftest@live at workarounds: - bat-mtlp-6: [DMESG-FAIL][12] ([i915#13393]) -> [PASS][13] +1 other test pass [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13399 [i915#13495]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13495 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8193 -> IGTPW_12441 CI-20190529: 20190529 CI_DRM_15964: 4cea1f90028925afcf1a0f8a0ef301f90349688c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12441: 12441 IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 16 04:10:35 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 04:10:35 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EBAT=3A_failure_for_tests/chamelium/kms=5Fchame?= =?utf-8?q?lium=5Fcolor=3A_force_connector_reprobe_after_plugging_ports?= In-Reply-To: <20250115151507.2023293-1-kunal1.joshi@intel.com> References: <20250115151507.2023293-1-kunal1.joshi@intel.com> Message-ID: <173700063584.70384.7949575185311592215@b555e5b46a47> == Series Details == Series: tests/chamelium/kms_chamelium_color: force connector reprobe after plugging ports URL : https://patchwork.freedesktop.org/series/143560/ State : failure == Summary == CI Bug Log - changes from XEIGT_8193_BAT -> XEIGTPW_12442_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12442_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12442_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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12442_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_8193/bat-adlp-vf/igt at xe_exec_balancer@twice-virtual-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/bat-adlp-vf/igt at xe_exec_balancer@twice-virtual-rebind.html Known issues ------------ Here are the changes found in XEIGTPW_12442_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt at xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [DMESG-WARN][3] -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html Build changes ------------- * IGT: IGT_8193 -> IGTPW_12442 IGTPW_12442: 12442 IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 16 04:14:27 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 04:14:27 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/chamelium/kms=5Fcha?= =?utf-8?q?melium=5Fcolor=3A_force_connector_reprobe_after_plugging_ports?= In-Reply-To: <20250115151507.2023293-1-kunal1.joshi@intel.com> References: <20250115151507.2023293-1-kunal1.joshi@intel.com> Message-ID: <173700086710.82602.608862535514460187@b555e5b46a47> == Series Details == Series: tests/chamelium/kms_chamelium_color: force connector reprobe after plugging ports URL : https://patchwork.freedesktop.org/series/143560/ State : success == Summary == CI Bug Log - changes from IGT_8193 -> IGTPW_12442 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/index.html Participating hosts (42 -> 41) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12442 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_module_load@load: - bat-adlp-6: [PASS][1] -> [DMESG-WARN][2] ([i915#12253]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-adlp-6/igt at i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/bat-adlp-6/igt at i915_module_load@load.html * igt at i915_selftest@live: - bat-mtlp-8: NOTRUN -> [DMESG-FAIL][3] ([i915#13393]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/bat-mtlp-8/igt at i915_selftest@live.html - bat-twl-1: NOTRUN -> [ABORT][4] ([i915#12919] / [i915#13503]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/bat-twl-1/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_pm: - bat-twl-1: NOTRUN -> [ABORT][5] ([i915#12919]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/bat-twl-1/igt at i915_selftest@live at gt_pm.html #### Possible fixes #### * igt at i915_pm_rpm@module-reload: - bat-mtlp-8: [INCOMPLETE][6] ([i915#13495]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-8/igt at i915_pm_rpm@module-reload.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/bat-mtlp-8/igt at i915_pm_rpm@module-reload.html [i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253 [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13495]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13495 [i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8193 -> IGTPW_12442 CI-20190529: 20190529 CI_DRM_15964: 4cea1f90028925afcf1a0f8a0ef301f90349688c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12442: 12442 IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 16 04:32:09 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 04:32:09 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EBAT=3A_failure_for_tests/intel/xe=5Fpm=5Fresid?= =?utf-8?q?ency=3A_Skip_on_igt=5Fpower=5Fopen_failure_=28rev6=29?= In-Reply-To: <20250110212237.4052-1-jonathan.cavitt@intel.com> References: <20250110212237.4052-1-jonathan.cavitt@intel.com> Message-ID: <173700192974.82602.8940520573838938571@b555e5b46a47> == Series Details == Series: tests/intel/xe_pm_residency: Skip on igt_power_open failure (rev6) URL : https://patchwork.freedesktop.org/series/139352/ State : failure == Summary == CI Bug Log - changes from XEIGT_8193_BAT -> XEIGTPW_12443_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12443_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12443_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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12443_BAT: ### IGT changes ### #### Possible regressions #### * igt at xe_pat@pat-index-xelp at render: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] +2 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html Known issues ------------ Here are the changes found in XEIGTPW_12443_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt at xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [DMESG-WARN][3] -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html Build changes ------------- * IGT: IGT_8193 -> IGTPW_12443 IGTPW_12443: 04c5fd7cf2157d2ace31eae2ea3ee2420bddd284 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 16 04:33:37 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 04:33:37 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_tests/intel/xe=5Fpm=5Fres?= =?utf-8?q?idency=3A_Skip_on_igt=5Fpower=5Fopen_failure_=28rev6=29?= In-Reply-To: <20250110212237.4052-1-jonathan.cavitt@intel.com> References: <20250110212237.4052-1-jonathan.cavitt@intel.com> Message-ID: <173700201732.82602.12995527106484136263@b555e5b46a47> == Series Details == Series: tests/intel/xe_pm_residency: Skip on igt_power_open failure (rev6) URL : https://patchwork.freedesktop.org/series/139352/ State : failure == Summary == CI Bug Log - changes from IGT_8193 -> IGTPW_12443 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12443 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12443, 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_12443/index.html Participating hosts (42 -> 41) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12443: ### IGT changes ### #### Possible regressions #### * igt at i915_pm_rpm@module-reload: - bat-rpls-4: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-rpls-4/igt at i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12443/bat-rpls-4/igt at i915_pm_rpm@module-reload.html Known issues ------------ Here are the changes found in IGTPW_12443 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at dmabuf@all-tests: - bat-apl-1: [PASS][3] -> [INCOMPLETE][4] ([i915#12904]) +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-apl-1/igt at dmabuf@all-tests.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12443/bat-apl-1/igt at dmabuf@all-tests.html * igt at i915_selftest@live: - bat-mtlp-8: NOTRUN -> [DMESG-FAIL][5] ([i915#13393]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12443/bat-mtlp-8/igt at i915_selftest@live.html * igt at runner@aborted: - fi-pnv-d510: NOTRUN -> [FAIL][6] ([i915#13350]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12443/fi-pnv-d510/igt at runner@aborted.html #### Possible fixes #### * igt at i915_module_load@load: - {bat-mtlp-9}: [DMESG-WARN][7] ([i915#13494]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-9/igt at i915_module_load@load.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12443/bat-mtlp-9/igt at i915_module_load@load.html * igt at i915_pm_rpm@module-reload: - bat-mtlp-8: [INCOMPLETE][9] ([i915#13495]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-8/igt at i915_pm_rpm@module-reload.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12443/bat-mtlp-8/igt at i915_pm_rpm@module-reload.html * igt at i915_selftest@live at workarounds: - bat-arlh-3: [DMESG-FAIL][11] ([i915#13393]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-arlh-3/igt at i915_selftest@live at workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12443/bat-arlh-3/igt at i915_selftest@live at workarounds.html - bat-mtlp-6: [DMESG-FAIL][13] ([i915#13393]) -> [PASS][14] +1 other test pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12443/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#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#13495]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13495 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8193 -> IGTPW_12443 CI-20190529: 20190529 CI_DRM_15964: 4cea1f90028925afcf1a0f8a0ef301f90349688c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12443: 04c5fd7cf2157d2ace31eae2ea3ee2420bddd284 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12443/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From jupallyx.ravali at intel.com Thu Jan 16 04:49:11 2025 From: jupallyx.ravali at intel.com (Ravali, JupallyX) Date: Thu, 16 Jan 2025 04:49:11 +0000 Subject: =?utf-8?B?UkU6IOKclyBYZS5DSS5GdWxsOiBmYWlsdXJlIGZvciB0ZXN0cy9rbXNfcGxh?= =?utf-8?B?bmVfc2NhbGluZzogZ2V0IG1vZGUgb25seSBhZnRlciBzZXR0aW5nIHRoZSBv?= =?utf-8?Q?utput_pipe?= In-Reply-To: References: <20250110123403.1818011-1-luciano.coelho@intel.com> <173674717890.3139263.9477051405974825494@b555e5b46a47> Message-ID: Hi, https://patchwork.freedesktop.org/series/143388/ - Re-reported. Xe.CI.Full - Addressed failures, Xe cannot be re-reported. i915.CI.Full - Re-reported. Thanks, Ravali. From: I915-ci-infra On Behalf Of Luca Coelho Sent: 13 January 2025 17:47 To: I915-ci-infra at lists.freedesktop.org Cc: igt-dev at lists.freedesktop.org; Coelho, Luciano Subject: Re: ? Xe.CI.Full: failure for tests/kms_plane_scaling: get mode only after setting the output pipe Hi, None of these new failures are related to this patch. The first one is a bad file descriptor in the fbc-suspend test, then a few failures related to EDID mismatches and finally the last one is about a network failure, with nothing noticeable in the logs. Please re-report. -- Cheers, Luca. On Mon, 2025-01-13 at 05:46 +0000, Patchwork wrote: Patch Details Series: tests/kms_plane_scaling: get mode only after setting the output pipe URL: https://patchwork.freedesktop.org/series/143388/ State: failure Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12425/index.html CI Bug Log - changes from XEIGT_8186_full -> XEIGTPW_12425_full Summary FAILURE Serious unknown changes coming with XEIGTPW_12425_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12425_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_12425_full: IGT changes Possible regressions * igt at kms_fbcon_fbt@fbc-suspend: * shard-lnl: PASS -> FAIL * igt at kms_pm_rpm@i2c: * shard-bmg: PASS -> FAIL +1 other test fail * shard-dg2-set2: PASS -> FAIL * igt at kms_vblank@query-forked-busy-hang: * shard-bmg: PASS -> INCOMPLETE +1 other test incomplete * igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2: * shard-dg2-set2: NOTRUN -> ABORT +1 other test abort Known issues Here are the changes found in XEIGTPW_12425_full that come from known issues: IGT changes Issues hit * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#623) * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: * shard-lnl: PASS -> FAIL (Intel XE#911) +3 other tests fail * 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_async_flips@invalid-async-flip: * shard-lnl: NOTRUN -> SKIP (Intel XE#873) * igt at kms_atomic@plane-primary-overlay-mutable-zpos: * shard-lnl: NOTRUN -> SKIP (Intel XE#3279) * igt at kms_big_fb@4-tiled-32bpp-rotate-270: * shard-lnl: NOTRUN -> SKIP (Intel XE#1407) +3 other tests skip * igt at kms_big_fb@x-tiled-8bpp-rotate-270: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#316) +4 other tests skip * igt at kms_big_fb@y-tiled-32bpp-rotate-90: * shard-bmg: NOTRUN -> SKIP (Intel XE#1124) * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1124) +11 other tests skip * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: * shard-lnl: NOTRUN -> SKIP (Intel XE#1124) +2 other tests skip * igt at kms_big_fb@yf-tiled-addfb: * shard-lnl: NOTRUN -> SKIP (Intel XE#1467) +1 other test skip * igt at kms_big_fb@yf-tiled-addfb-size-overflow: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#610) * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#367) +6 other tests skip * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: * shard-lnl: NOTRUN -> SKIP (Intel XE#1512) * igt at kms_bw@linear-tiling-2-displays-2160x1440p: * shard-lnl: NOTRUN -> SKIP (Intel XE#367) * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: * shard-bmg: NOTRUN -> SKIP (Intel XE#2887) * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2907) +2 other tests skip * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: * shard-lnl: NOTRUN -> SKIP (Intel XE#2887) +8 other tests skip * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-b-edp-1: * shard-lnl: PASS -> INCOMPLETE (Intel XE#3862) +1 other test incomplete * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#787) +174 other tests skip * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455 / Intel XE#787) +40 other tests skip * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: * shard-dg2-set2: NOTRUN -> INCOMPLETE (Intel XE#1727 / Intel XE#3124) +1 other test incomplete * igt at kms_cdclk@plane-scaling: * shard-lnl: NOTRUN -> SKIP (Intel XE#1152) +3 other tests skip * igt at kms_chamelium_color@ctm-negative: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#306) +1 other test skip * igt at kms_chamelium_hpd@dp-hpd-fast: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#373) +11 other tests skip * igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode: * shard-lnl: NOTRUN -> SKIP (Intel XE#373) +1 other test skip * igt at kms_content_protection@dp-mst-lic-type-0: * shard-lnl: NOTRUN -> SKIP (Intel XE#307) +1 other test skip * igt at kms_content_protection@legacy: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1178) +1 other test fail * igt at kms_content_protection@lic-type-0 at pipe-a-dp-2: * shard-bmg: NOTRUN -> FAIL (Intel XE#1178) * igt at kms_content_protection@uevent: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1188) +1 other test fail * igt at kms_cursor_crc@cursor-offscreen-32x32: * shard-lnl: NOTRUN -> SKIP (Intel XE#1424) +2 other tests skip * igt at kms_cursor_crc@cursor-onscreen-512x170: * shard-lnl: NOTRUN -> SKIP (Intel XE#2321) +2 other tests skip * igt at kms_cursor_crc@cursor-onscreen-512x512: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#308) +1 other test skip * igt at kms_cursor_crc@cursor-random-max-size: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455) +16 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-busy-flip-before-cursor-varying-size: * shard-lnl: NOTRUN -> SKIP (Intel XE#323) * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: * shard-lnl: NOTRUN -> SKIP (Intel XE#309) +1 other test skip * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: * shard-bmg: PASS -> SKIP (Intel XE#2291) +1 other test skip * igt at kms_cursor_legacy@torture-move at all-pipes: * shard-dg2-set2: PASS -> DMESG-WARN (Intel XE#3184) +1 other test dmesg-warn * igt at kms_display_modes@extended-mode-basic: * shard-lnl: NOTRUN -> SKIP (Intel XE#3383) * igt at kms_feature_discovery@chamelium: * shard-lnl: NOTRUN -> SKIP (Intel XE#701) * igt at kms_feature_discovery@display-4x: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1138) * igt at kms_feature_discovery@dp-mst: * shard-lnl: NOTRUN -> SKIP (Intel XE#1137) * igt at kms_flip@2x-blocking-wf_vblank at ac-dp2-hdmi-a3: * shard-bmg: PASS -> FAIL (Intel XE#2882) +5 other tests fail * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a6-dp4: * shard-dg2-set2: PASS -> FAIL (Intel XE#301) +2 other tests fail * igt at kms_flip@2x-flip-vs-modeset-vs-hang: * shard-bmg: PASS -> SKIP (Intel XE#2316) +4 other tests skip * igt at kms_flip@2x-flip-vs-rmfb-interruptible: * shard-lnl: NOTRUN -> SKIP (Intel XE#1421) * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1: * shard-lnl: PASS -> FAIL (Intel XE#886) +2 other tests fail * igt at kms_flip@flip-vs-expired-vblank at a-dp4: * shard-dg2-set2: PASS -> FAIL (Intel XE#3321) * igt at kms_flip@flip-vs-expired-vblank at b-dp4: * shard-dg2-set2: PASS -> FAIL (Intel XE#301 / Intel XE#3321) * igt at kms_flip@flip-vs-suspend: * shard-bmg: NOTRUN -> INCOMPLETE (Intel XE#2597) * igt at kms_flip@flip-vs-suspend at d-hdmi-a3: * shard-bmg: NOTRUN -> INCOMPLETE (Intel XE#2597 / Intel XE#2635) * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: * shard-lnl: NOTRUN -> SKIP (Intel XE#1397 / Intel XE#1745) * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode: * shard-lnl: NOTRUN -> SKIP (Intel XE#1397) * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: * shard-lnl: NOTRUN -> SKIP (Intel XE#1401 / Intel XE#1745) * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode: * shard-lnl: NOTRUN -> SKIP (Intel XE#1401) * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#651) +35 other tests skip * igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte: * shard-lnl: NOTRUN -> SKIP (Intel XE#656) +21 other tests skip * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: * shard-lnl: NOTRUN -> SKIP (Intel XE#651) +6 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: * shard-bmg: NOTRUN -> SKIP (Intel XE#2313) +1 other test skip * igt at kms_frontbuffer_tracking@pipe-fbc-rte at pipe-b-dp-2: * shard-bmg: NOTRUN -> FAIL (Intel XE#2333) * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#653) +34 other tests skip * shard-bmg: NOTRUN -> SKIP (Intel XE#2312) * igt at kms_histogram@algo-basic: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#3897) +1 other test skip * igt at kms_joiner@basic-force-big-joiner: * shard-bmg: PASS -> SKIP (Intel XE#3012) * igt at kms_joiner@basic-ultra-joiner: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2927) * igt at kms_joiner@invalid-modeset-force-ultra-joiner: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2925) * igt at kms_plane_cursor@viewport: * shard-dg2-set2: PASS -> FAIL (Intel XE#616) * igt at kms_plane_cursor@viewport at pipe-a-hdmi-a-2-size-64: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#616) * igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: * shard-lnl: NOTRUN -> SKIP (Intel XE#599) +3 other tests skip * igt at kms_plane_multiple@tiling-yf: * shard-lnl: NOTRUN -> SKIP (Intel XE#2493) * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2763) +11 other tests skip * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2763 / Intel XE#455) +7 other tests skip * igt at kms_plane_scaling@planes-downscale-factor-0-5: * shard-lnl: NOTRUN -> SKIP (Intel XE#2763) +3 other tests skip * igt at kms_pm_backlight@bad-brightness: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#870) * igt at kms_pm_dc@dc5-psr: * shard-lnl: PASS -> FAIL (Intel XE#718) * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: * shard-lnl: NOTRUN -> SKIP (Intel XE#1439 / Intel XE#836) * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: * shard-lnl: NOTRUN -> SKIP (Intel XE#2893) * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1489) +10 other tests skip * igt at kms_psr2_su@page_flip-xrgb8888: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1122) * igt at kms_psr@fbc-pr-cursor-blt: * shard-bmg: NOTRUN -> SKIP (Intel XE#2234 / Intel XE#2850) +2 other tests skip * igt at kms_psr@fbc-pr-no-drrs: * shard-lnl: NOTRUN -> SKIP (Intel XE#1406) +2 other tests skip * igt at kms_psr@fbc-psr2-cursor-plane-onoff: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2850 / Intel XE#929) +18 other tests skip * igt at kms_rotation_crc@bad-tiling: * shard-lnl: NOTRUN -> SKIP (Intel XE#3414 / Intel XE#3904) * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1127) * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#3414) +3 other tests skip * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: * shard-lnl: NOTRUN -> SKIP (Intel XE#1127) * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: * shard-bmg: NOTRUN -> SKIP (Intel XE#3414 / Intel XE#3904) * igt at kms_setmode@clone-exclusive-crtc: * shard-bmg: NOTRUN -> SKIP (Intel XE#1435) * igt at kms_setmode@invalid-clone-single-crtc: * shard-lnl: NOTRUN -> SKIP (Intel XE#1435) * igt at kms_vblank@ts-continuation-suspend: * shard-dg2-set2: PASS -> ABORT (Intel XE#2625) +1 other test abort * igt at kms_vrr@lobf: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2168) * igt at kms_vrr@seamless-rr-switch-virtual at pipe-a-edp-1: * shard-lnl: PASS -> FAIL (Intel XE#2142) +1 other test fail * igt at kms_writeback@writeback-fb-id: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#756) +1 other test skip * igt at sriov_basic@enable-vfs-autoprobe-off: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1091 / Intel XE#2849) * 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_copy_basic@mem-set-linear-0xfffe: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1126) * igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: * shard-lnl: NOTRUN -> SKIP (Intel XE#2905) +2 other tests skip * igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram: * shard-bmg: NOTRUN -> SKIP (Intel XE#2905) +2 other tests skip * igt at xe_evict@evict-beng-large-multi-vm-cm: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1600) * igt at xe_evict@evict-beng-mixed-many-threads-small: * shard-dg2-set2: PASS -> TIMEOUT (Intel XE#1473 / Intel XE#402) * igt at xe_evict@evict-beng-threads-small: * shard-lnl: NOTRUN -> SKIP (Intel XE#688) +5 other tests skip * igt at xe_evict@evict-mixed-many-threads-small: * shard-dg2-set2: NOTRUN -> TIMEOUT (Intel XE#1473) * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate: * shard-bmg: NOTRUN -> SKIP (Intel XE#2322) * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1392) * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: * shard-dg2-set2: PASS -> SKIP (Intel XE#1392) +3 other tests skip * igt at xe_exec_basic@multigpu-once-userptr-invalidate: * shard-lnl: NOTRUN -> SKIP (Intel XE#1392) +4 other tests skip * igt at xe_exec_fault_mode@once-bindexecqueue-imm: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#288) +20 other tests skip * igt at xe_exec_mix_modes@exec-simple-batch-store-lr: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2360) +1 other test skip * igt at xe_exec_sip_eudebug@breakpoint-writesip: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2905) +13 other tests skip * igt at xe_live_ktest@xe_dma_buf: * shard-bmg: PASS -> SKIP (Intel XE#1192) * igt at xe_live_ktest@xe_eudebug: * shard-lnl: NOTRUN -> SKIP (Intel XE#1192 / Intel XE#3026) * igt at xe_media_fill@media-fill: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#560) * igt at xe_mmap@small-bar: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#512) * igt at xe_oa@oa-regs-whitelisted: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2541 / Intel XE#3573) +8 other tests skip * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1173) +1 other test fail * igt at xe_pm@d3cold-mocs: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2284) * igt at xe_pm@s2idle-multiple-execs: * shard-dg2-set2: PASS -> ABORT (Intel XE#1358) * igt at xe_pm@s3-d3cold-basic-exec: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2284 / Intel XE#366) +1 other test skip * igt at xe_pm@s3-multiple-execs: * shard-dg2-set2: PASS -> ABORT (Intel XE#1358 / Intel XE#1794) * igt at xe_pm@s3-vm-bind-prefetch: * shard-lnl: NOTRUN -> SKIP (Intel XE#584) * igt at xe_pm@s4-vm-bind-unbind-all: * shard-lnl: PASS -> ABORT (Intel XE#1358 / Intel XE#1607 / Intel XE#1794) +1 other test abort * igt at xe_query@multigpu-query-invalid-cs-cycles: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#944) +5 other tests skip * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: * shard-lnl: NOTRUN -> SKIP (Intel XE#944) Possible fixes * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: * shard-dg2-set2: INCOMPLETE (Intel XE#1727 / Intel XE#3124) -> PASS * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-6: * shard-dg2-set2: INCOMPLETE (Intel XE#1727 / Intel XE#3113 / Intel XE#3124) -> PASS * igt at kms_cursor_crc@cursor-suspend: * shard-dg2-set2: ABORT -> PASS +1 other test pass * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: * shard-bmg: SKIP (Intel XE#2291) -> PASS +3 other tests pass * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: * shard-bmg: DMESG-WARN (Intel XE#877) -> PASS +1 other test pass * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: * shard-dg2-set2: FAIL (Intel XE#3321) -> PASS * igt at kms_flip@2x-flip-vs-panning-vs-hang: * shard-bmg: SKIP (Intel XE#2316) -> PASS +3 other tests pass * igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4: * shard-dg2-set2: INCOMPLETE -> PASS +1 other test pass * igt at kms_flip@blocking-wf_vblank: * shard-lnl: FAIL (Intel XE#3149 / Intel XE#886) -> PASS * igt at kms_flip@blocking-wf_vblank at c-edp1: * shard-lnl: FAIL (Intel XE#886) -> PASS +2 other tests pass * igt at kms_flip@flip-vs-expired-vblank-interruptible: * shard-bmg: FAIL (Intel XE#2882 / Intel XE#3288) -> PASS * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a3: * shard-bmg: FAIL (Intel XE#3288 / Intel XE#3321) -> PASS * igt at kms_flip@flip-vs-expired-vblank at b-edp1: * shard-lnl: FAIL (Intel XE#301) -> PASS +1 other test pass * igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3: * shard-bmg: FAIL (Intel XE#3321) -> PASS * igt at kms_flip@flip-vs-expired-vblank at d-dp4: * shard-dg2-set2: FAIL (Intel XE#301 / Intel XE#3321) -> PASS * igt at kms_frontbuffer_tracking@fbc-suspend: * shard-dg2-set2: ABORT (Intel XE#2625) -> PASS * igt at kms_hdr@invalid-hdr: * shard-dg2-set2: SKIP (Intel XE#455) -> PASS * igt at kms_plane_scaling@intel-max-src-size: * shard-dg2-set2: FAIL (Intel XE#361) -> PASS +1 other test pass * igt at kms_pm_dc@dc5-dpms: * shard-lnl: FAIL (Intel XE#718) -> PASS * igt at kms_setmode@basic at pipe-a-hdmi-a-6: * shard-dg2-set2: FAIL (Intel XE#2883) -> PASS +4 other tests pass * igt at kms_vrr@negative-basic: * shard-bmg: SKIP (Intel XE#1499) -> PASS * igt at xe_exec_basic@many-bindexecqueue-rebind: * shard-bmg: SKIP (Intel XE#1130) -> PASS * shard-dg2-set2: SKIP (Intel XE#1130) -> PASS * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: * shard-dg2-set2: SKIP (Intel XE#1392) -> PASS +4 other tests pass * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: * shard-dg2-set2: FAIL (Intel XE#1999) -> PASS +2 other tests pass * igt at xe_module_load@reload: * shard-dg2-set2: FAIL (Intel XE#3546) -> PASS * shard-bmg: FAIL (Intel XE#3546) -> PASS * igt at xe_pm@s3-basic: * shard-dg2-set2: ABORT (Intel XE#1358 / Intel XE#1794) -> PASS * igt at xe_pm_residency@toggle-gt-c6: * shard-lnl: FAIL (Intel XE#958) -> PASS Warnings * igt at kms_big_fb@y-tiled-32bpp-rotate-180: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#1124) * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#1124) * igt at kms_content_protection@lic-type-0: * shard-bmg: SKIP (Intel XE#2341) -> FAIL (Intel XE#1178) * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: * shard-bmg: FAIL (Intel XE#2882 / Intel XE#3288) -> SKIP (Intel XE#2316) * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: * shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#2312) +14 other tests skip * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2311) +16 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: * shard-bmg: SKIP (Intel XE#2312) -> FAIL (Intel XE#2333) +1 other test fail * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: * shard-bmg: INCOMPLETE (Intel XE#2050) -> FAIL (Intel XE#2333) * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: * shard-bmg: FAIL (Intel XE#2333) -> SKIP (Intel XE#2312) +8 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: * shard-bmg: SKIP (Intel XE#2313) -> SKIP (Intel XE#2312) +9 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2313) +11 other tests skip * igt at kms_tiled_display@basic-test-pattern: * shard-dg2-set2: SKIP (Intel XE#362) -> FAIL (Intel XE#1729) * igt at xe_evict@evict-beng-threads-large: * shard-bmg: FAIL (Intel XE#1000) -> INCOMPLETE (Intel XE#1473) * igt at xe_evict@evict-mixed-many-threads-small: * shard-bmg: TIMEOUT (Intel XE#1473) -> TIMEOUT (Intel XE#1473 / Intel XE#2472) * igt at xe_live_ktest@xe_eudebug: * shard-bmg: SKIP (Intel XE#2833) -> SKIP (Intel XE#1192) Build changes * IGT: IGT_8186 -> IGTPW_12425 * Linux: xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917 -> xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde IGTPW_12425: 3ecd83f130ed2cb4419226fad481364f8a39a5be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8186: 2c6b2f0ed4075aa1ac3d341d612e41343cff4e4d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2471-0ca002b6f088ddd9bdde5630662526a50b7ef917: 0ca002b6f088ddd9bdde5630662526a50b7ef917 xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde: 00f4619246294b1de4bac42742cfef95c1f37fde -------------- next part -------------- An HTML attachment was scrubbed... URL: From jupallyx.ravali at intel.com Thu Jan 16 04:51:21 2025 From: jupallyx.ravali at intel.com (Ravali, JupallyX) Date: Thu, 16 Jan 2025 04:51:21 +0000 Subject: =?utf-8?B?UkU6IOKclyBpOTE1LkNJLkZ1bGw6IGZhaWx1cmUgZm9yIGxpYi9pZ3Rfa21l?= =?utf-8?Q?mleak:_library_to_interact_with_kmemleak_(rev2)?= In-Reply-To: <480075f3-8914-47b4-afd7-4b73658996d4@linux.intel.com> References: <20250109181027.90402-1-peter.senna@linux.intel.com> <173677284723.3237056.1486075895877836651@b555e5b46a47> <480075f3-8914-47b4-afd7-4b73658996d4@linux.intel.com> Message-ID: Hi, https://patchwork.freedesktop.org/series/142673/ - Re-reported. Xe.CI.Full - Addressed failures, Xe cannot be re-reported. i915.CI.Full - Re-reported. Thanks, Ravali -----Original Message----- From: I915-ci-infra On Behalf Of Peter Senna Tschudin Sent: 14 January 2025 13:46 To: igt-dev at lists.freedesktop.org; I915-ci-infra at lists.freedesktop.org Subject: Re: ? i915.CI.Full: failure for lib/igt_kmemleak: library to interact with kmemleak (rev2) Dear I915, On 13.01.2025 13:54, Patchwork wrote: > == Series Details == > > Series: lib/igt_kmemleak: library to interact with kmemleak (rev2) > URL : https://patchwork.freedesktop.org/series/142673/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_15934_full -> IGTPW_12421_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12421_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12421_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_12421/index.html > > Participating hosts (12 -> 11) > ------------------------------ > > Missing (1): shard-glk-0 > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12421_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at gem_exec_suspend@basic-s3-devices at smem: > - shard-mtlp: [PASS][1] -> [ABORT][2] +1 other test abort > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-5/igt at gem_exec_suspend@basic-s3-devices at smem.html > [2]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-4/igt@ > gem_exec_suspend at basic-s3-devices@smem.html > > * igt at gem_exec_whisper@basic-contexts-priority: > - shard-mtlp: [PASS][3] -> [INCOMPLETE][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-mtlp-1/igt at gem_exec_whisper@basic-contexts-priority.html > [4]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-mtlp-6/igt@ > gem_exec_whisper at basic-contexts-priority.html > > * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: > - shard-glk: NOTRUN -> [INCOMPLETE][5] > [5]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-glk1/igt at km > s_ccs at crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html > > > #### Warnings #### > > * igt at gem_exec_big@single: > - shard-tglu: [ABORT][6] ([i915#11713]) -> [ABORT][7] > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15934/shard-tglu-10/igt at gem_exec_big@single.html > [7]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12421/shard-tglu-10/igt > @gem_exec_big at single.html These possible regressions and warnings are unrelated to my change. Please fix and re-run. Thank you! [...] From karthik.b.s at intel.com Thu Jan 16 04:51:52 2025 From: karthik.b.s at intel.com (Karthik B S) Date: Thu, 16 Jan 2025 10:21:52 +0530 Subject: [PATCH i-g-t v8 1/2] tests/intel/kms_joiner: switch modeset between uj and bj In-Reply-To: <20250110042752.32846-2-santhosh.reddy.guddati@intel.com> References: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> <20250110042752.32846-2-santhosh.reddy.guddati@intel.com> Message-ID: <9187f0d6-c0f5-431e-accd-c0e3b50e7cc7@intel.com> On 1/10/2025 9:57 AM, Santhosh Reddy Guddati wrote: > 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 Reviewed-by: Karthik B S > --- > 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"); From patchwork at emeril.freedesktop.org Thu Jan 16 04:55:45 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 04:55:45 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Xe=3A_Add_tests_for_PXP_=28?= =?utf-8?q?rev2=29?= In-Reply-To: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> Message-ID: <173700334537.123427.3213862115990371219@b555e5b46a47> == Series Details == Series: Xe: Add tests for PXP (rev2) URL : https://patchwork.freedesktop.org/series/142450/ State : success == Summary == CI Bug Log - changes from XEIGT_8193_BAT -> XEIGTPW_12444_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12444_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html #### Possible fixes #### * igt at xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [DMESG-WARN][3] -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/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_8193 -> IGTPW_12444 IGTPW_12444: ea23248acfb2a3826eb32a4052d139b6cc5361cc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 16 04:56:48 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 04:56:48 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Xe=3A_Add_tests_for_PXP_?= =?utf-8?q?=28rev2=29?= In-Reply-To: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> Message-ID: <173700340869.123427.9427348125358919313@b555e5b46a47> == Series Details == Series: Xe: Add tests for PXP (rev2) URL : https://patchwork.freedesktop.org/series/142450/ State : success == Summary == CI Bug Log - changes from IGT_8193 -> IGTPW_12444 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/index.html Participating hosts (42 -> 41) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12444: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt at i915_module_load@load: - {bat-mtlp-9}: [DMESG-WARN][1] ([i915#13494]) -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-9/igt at i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/bat-mtlp-9/igt at i915_module_load@load.html Known issues ------------ Here are the changes found in IGTPW_12444 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at dmabuf@all-tests: - bat-apl-1: [PASS][3] -> [INCOMPLETE][4] ([i915#12904]) +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-apl-1/igt at dmabuf@all-tests.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/bat-apl-1/igt at dmabuf@all-tests.html #### Possible fixes #### * igt at i915_pm_rpm@module-reload: - bat-mtlp-8: [INCOMPLETE][5] ([i915#13495]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-8/igt at i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/bat-mtlp-8/igt at i915_pm_rpm@module-reload.html * igt at i915_selftest@live at workarounds: - 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_8193/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/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#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#13495]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13495 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8193 -> IGTPW_12444 CI-20190529: 20190529 CI_DRM_15964: 4cea1f90028925afcf1a0f8a0ef301f90349688c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12444: ea23248acfb2a3826eb32a4052d139b6cc5361cc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From karthik.b.s at intel.com Thu Jan 16 05:16:16 2025 From: karthik.b.s at intel.com (Karthik B S) Date: Thu, 16 Jan 2025 10:46:16 +0530 Subject: [PATCH i-g-t v8 2/2] lib/igt_kms.c: Enforce strict check for bigjoiner_possible In-Reply-To: <20250110042752.32846-3-santhosh.reddy.guddati@intel.com> References: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> <20250110042752.32846-3-santhosh.reddy.guddati@intel.com> Message-ID: <1afa1f3f-2ed6-48a9-a054-0a5baab8de82@intel.com> On 1/10/2025 9:57 AM, Santhosh Reddy Guddati wrote: > update bigjoiner_mode_found to check for ultrajoiner possibility. > This ensures that the mode is only set to bigjoiner if ultrajoiner > is not possible. Please rephrase the second sentence while merging. May be something like, "This ensures that the mode is truly supported by bigjoiner and doesn't require ultrajoiner. > > v8: rebase and check fot ultra joiner possibility. Also please remove the "check for ultra joiner possibility" as there is no changes from previous version. > > Signed-off-by: Santhosh Reddy Guddati With the above mentioned updates in commit message, Reviewed-by: Karthik B S > --- > lib/igt_kms.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 95e3059f7..1a0819ce2 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -6419,7 +6419,8 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector, > bool found = false; > > for (int i=0; i< connector->count_modes; i++) { > - if (igt_bigjoiner_possible(drm_fd, &connector->modes[i], max_dotclock)) { > + if (igt_bigjoiner_possible(drm_fd, &connector->modes[i], max_dotclock) && > + !igt_ultrajoiner_possible(&connector->modes[i], max_dotclock)) { > *mode = connector->modes[i]; > found = true; > break; From kunal1.joshi at intel.com Thu Jan 16 06:17:49 2025 From: kunal1.joshi at intel.com (Kunal Joshi) Date: Thu, 16 Jan 2025 11:47:49 +0530 Subject: [PATCH i-g-t] tests/kms_display_modes: fit modes in mst bw Message-ID: <20250116061749.2082287-1-kunal1.joshi@intel.com> Instead of checking only currrent modes, find combination of modes in mst topology that can be accomodated in current link bw. Fixes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2633 Signed-off-by: Kunal Joshi --- tests/kms_display_modes.c | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c index e41c60cc0..a582ba1a9 100644 --- a/tests/kms_display_modes.c +++ b/tests/kms_display_modes.c @@ -60,6 +60,22 @@ typedef struct { int n_pipes; } data_t; +static bool fit_modes_in_bw(data_t *data) +{ + bool found; + int ret; + + ret = igt_display_try_commit_atomic(&data->display, + DRM_MODE_ATOMIC_TEST_ONLY | + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); + if (ret != 0) { + found = igt_override_all_active_output_modes_to_fit_bw(&data->display); + igt_require_f(found, + "No valid mode combo found for modeset\n"); + } + return true; +} + /* Get higher mode supported by panel. */ static drmModeModeInfo *get_highres_mode(igt_output_t *output) { @@ -279,7 +295,6 @@ static void run_extendedmode_negative(data_t *data, int pipe1, int pipe2) struct igt_fb fbs[2]; igt_display_t *display = &data->display; igt_plane_t *plane[2]; - int ret; igt_display_reset(display); @@ -306,8 +321,7 @@ static void run_extendedmode_negative(data_t *data, int pipe1, int pipe2) igt_output_override_mode(data->mst_output[1], &data->mode_mst[1]); igt_require(intel_pipe_output_combo_valid(display)); - ret = igt_display_try_commit2(display, COMMIT_ATOMIC); - igt_assert(ret != 0 && errno == ENOSPC); + igt_assert_f(fit_modes_in_bw(data), "Unable to fit modes in bw\n"); } igt_main -- 2.25.1 From patchwork at emeril.freedesktop.org Thu Jan 16 06:55:00 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 06:55:00 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/amdgpu/amd=5Fabm=3A_?= =?utf-8?q?Fix_test_failed_on_self-refresh_panel?= In-Reply-To: <20250115095904.1965-1-chiahsuan.chung@amd.com> References: <20250115095904.1965-1-chiahsuan.chung@amd.com> Message-ID: <173701050018.168752.8720563747371910476@b555e5b46a47> == Series Details == Series: tests/amdgpu/amd_abm: Fix test failed on self-refresh panel URL : https://patchwork.freedesktop.org/series/143552/ State : failure == Summary == CI Bug Log - changes from XEIGT_8193_full -> XEIGTPW_12441_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12441_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12441_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_12441_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@2x-absolute-wf_vblank-interruptible: - shard-dg2-set2: [PASS][1] -> [SKIP][2] +6 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at kms_flip@2x-absolute-wf_vblank-interruptible.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at kms_flip@2x-absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp4: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html * igt at kms_plane_scaling@planes-scaler-unity-scaling: - shard-bmg: [PASS][5] -> [SKIP][6] +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_plane_scaling@planes-scaler-unity-scaling.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_plane_scaling@planes-scaler-unity-scaling.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2-set2: NOTRUN -> [SKIP][7] +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at xe_pm@d3hot-mmap-vram: - shard-dg2-set2: [PASS][8] -> [FAIL][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at xe_pm@d3hot-mmap-vram.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-433/igt at xe_pm@d3hot-mmap-vram.html #### Warnings #### * igt at kms_chamelium_hpd@dp-hpd-fast: - shard-dg2-set2: [SKIP][10] ([Intel XE#373]) -> [SKIP][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_chamelium_hpd@dp-hpd-fast.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at kms_chamelium_hpd@dp-hpd-fast.html - shard-bmg: [SKIP][12] ([Intel XE#2252]) -> [SKIP][13] [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_chamelium_hpd@dp-hpd-fast.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_chamelium_hpd@dp-hpd-fast.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: [SKIP][14] ([Intel XE#2320]) -> [SKIP][15] [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_cursor_crc@cursor-sliding-256x85.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_flip@2x-absolute-wf_vblank-interruptible: - shard-bmg: [SKIP][16] ([Intel XE#2316]) -> [SKIP][17] +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-absolute-wf_vblank-interruptible.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_flip@2x-absolute-wf_vblank-interruptible.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][18] ([Intel XE#455]) -> [SKIP][19] [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-bmg: [SKIP][20] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][21] [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [FAIL][22] ([Intel XE#2333]) -> [SKIP][23] +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][24] ([Intel XE#2311]) -> [SKIP][25] +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][26] ([Intel XE#651]) -> [SKIP][27] [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-bmg: [SKIP][28] ([Intel XE#2313]) -> [SKIP][29] +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: [SKIP][30] ([Intel XE#653]) -> [SKIP][31] +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][32] ([Intel XE#1439] / [Intel XE#836]) -> [SKIP][33] [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_psr@fbc-psr-suspend: - shard-bmg: [SKIP][34] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][35] [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_psr@fbc-psr-suspend.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_psr@fbc-psr-suspend.html - shard-dg2-set2: [SKIP][36] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][37] [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_psr@fbc-psr-suspend.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at kms_psr@fbc-psr-suspend.html Known issues ------------ Here are the changes found in XEIGTPW_12441_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_big_fb@4-tiled-64bpp-rotate-180: - shard-dg2-set2: [PASS][38] -> [SKIP][39] ([Intel XE#829]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_big_fb@4-tiled-64bpp-rotate-180.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at kms_big_fb@4-tiled-64bpp-rotate-180.html - shard-bmg: [PASS][40] -> [SKIP][41] ([Intel XE#829]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_big_fb@4-tiled-64bpp-rotate-180.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_big_fb@4-tiled-64bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1407]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@x-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2327]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-4/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html * igt at kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#316]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-464/igt at kms_big_fb@x-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-16bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1124]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-3/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1467]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-8/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#610]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-432/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: NOTRUN -> [SKIP][48] ([Intel XE#1124]) +6 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#619]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#829]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#367]) +6 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-464/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#2191]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#367]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-8/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][54] -> [SKIP][55] ([Intel XE#2136]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#2907]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-432/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2887]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-8/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-b-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#787]) +181 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-432/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-b-dp-2.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#2887]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-3/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-b-dp-2.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#455] / [Intel XE#787]) +43 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-433/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][62] -> [INCOMPLETE][63] ([Intel XE#1727] / [Intel XE#3124]) +1 other test incomplete [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-435/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-cc: - shard-dg2-set2: [PASS][64] -> [INCOMPLETE][65] ([Intel XE#2692]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/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 at pipe-b-dp-4: - shard-dg2-set2: [PASS][66] -> [INCOMPLETE][67] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) +1 other test incomplete [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#306]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-435/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#373]) +10 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-432/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#373]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-5/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2390]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-4/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#2321]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-7/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-64x64: - shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#3007]) +11 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_cursor_crc@cursor-rapid-movement-64x64.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-64x64.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2320]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-1/igt at kms_cursor_crc@cursor-sliding-max-size.html * igt at kms_cursor_legacy@cursora-vs-flipa-legacy: - shard-bmg: [PASS][76] -> [INCOMPLETE][77] ([Intel XE#3226]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipa-legacy.html * igt at kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [PASS][78] -> [SKIP][79] ([Intel XE#2291]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#309]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-6/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][81] -> [DMESG-WARN][82] ([Intel XE#877]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1508]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-7/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dsc@dsc-with-formats: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#455]) +15 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_dsc@dsc-with-formats.html * igt at kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2372]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-8/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#1138]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-432/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1135]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-464/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1421]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-5/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][89] -> [FAIL][90] ([Intel XE#301]) +8 other tests fail [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/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 cd-hdmi-a2-dp2: - shard-dg2-set2: NOTRUN -> [FAIL][91] ([Intel XE#301]) +5 other tests fail [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-432/igt at kms_flip@2x-flip-vs-expired-vblank at cd-hdmi-a2-dp2.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][92] -> [SKIP][93] ([Intel XE#2316]) +5 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-nonexisting-fb.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@absolute-wf_vblank: - shard-dg2-set2: [PASS][94] -> [SKIP][95] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_flip@absolute-wf_vblank.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_flip@absolute-wf_vblank.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [PASS][96] -> [INCOMPLETE][97] ([Intel XE#2597]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-435/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-default-mode: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1401]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-bmg: [PASS][100] -> [SKIP][101] ([Intel XE#2136] / [Intel XE#2231]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1397] / [Intel XE#1745]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1397]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([i915#5274]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2311]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#651]) +32 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [FAIL][107] ([Intel XE#2333]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#656]) +12 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#651]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-5/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2312]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2313]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#653]) +31 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#605]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-432/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@static-toggle-suspend: - shard-dg2-set2: [PASS][115] -> [ABORT][116] ([Intel XE#2625]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_hdr@static-toggle-suspend.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-432/igt at kms_hdr@static-toggle-suspend.html * igt at kms_hdr@static-toggle-suspend at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][117] ([Intel XE#4048]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-432/igt at kms_hdr@static-toggle-suspend at pipe-a-dp-2.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#346]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_joiner@basic-big-joiner.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2763]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-464/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-464/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d.html * igt at kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#870]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-433/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#870]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-1/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][123] -> [FAIL][124] ([Intel XE#718]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#2893]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-5/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2136]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#1489]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#1489]) +11 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1122]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-464/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-4/igt at kms_psr@psr-basic.html * igt at kms_psr@psr2-basic: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at kms_psr@psr2-basic.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#3414]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#1127]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_setmode@basic: - shard-lnl: [PASS][134] -> [FAIL][135] ([Intel XE#2883]) +1 other test fail [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-6/igt at kms_setmode@basic.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-6/igt at kms_setmode@basic.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][136] -> [SKIP][137] ([Intel XE#1435]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_setmode@invalid-clone-single-crtc.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1500]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-433/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@cursor-fb-leak: - shard-bmg: [PASS][139] -> [FAIL][140] ([Intel XE#899]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_universal_plane@cursor-fb-leak.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_universal_plane@cursor-fb-leak.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [PASS][141] -> [FAIL][142] ([Intel XE#899]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-6/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_universal_plane@cursor-fb-leak at pipe-c-hdmi-a-3: - shard-bmg: NOTRUN -> [FAIL][143] ([Intel XE#899]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_universal_plane@cursor-fb-leak at pipe-c-hdmi-a-3.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][144] -> [FAIL][145] ([Intel XE#2159]) +1 other test fail [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-3/igt at kms_vrr@cmrr at pipe-a-edp-1.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-5/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_vrr@flipline.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2168]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-check-output: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#756]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-4/igt at kms_writeback@writeback-check-output.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-435/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#2905]) +11 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#3889]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-464/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#3889]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-5/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2905]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#688]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-1/igt at xe_evict@evict-large-multi-vm.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-dg2-set2: [PASS][155] -> [SKIP][156] ([Intel XE#1392]) +7 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1392]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-2/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2322]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#288]) +28 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-435/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm: - shard-bmg: [PASS][160] -> [SKIP][161] ([Intel XE#1130]) +23 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#2905]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-5/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_exec_threads@threads-userptr-rebind: - shard-dg2-set2: [PASS][163] -> [SKIP][164] ([Intel XE#1130]) +14 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_exec_threads@threads-userptr-rebind.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at xe_exec_threads@threads-userptr-rebind.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2229]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-4/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [PASS][166] -> [SKIP][167] ([Intel XE#1192]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_live_ktest@xe_mocs.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at xe_live_ktest@xe_mocs.html * igt at xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#560]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at xe_media_fill@media-fill.html * igt at xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#4045]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-5/igt at xe_mmap@pci-membarrier-parallel.html * igt at xe_module_load@reload-no-display: - shard-bmg: [PASS][170] -> [FAIL][171] ([Intel XE#3546]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_module_load@reload-no-display.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at xe_module_load@reload-no-display.html - shard-dg2-set2: NOTRUN -> [FAIL][172] ([Intel XE#3546]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at xe_module_load@reload-no-display.html * igt at xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-432/igt at xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-464/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@s2idle-exec-after: - shard-dg2-set2: [PASS][175] -> [ABORT][176] ([Intel XE#1358]) +1 other test abort [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_pm@s2idle-exec-after.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-432/igt at xe_pm@s2idle-exec-after.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#2284] / [Intel XE#366]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-8/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-d3hot-basic-exec: - shard-lnl: [PASS][178] -> [ABORT][179] ([Intel XE#1358] / [Intel XE#1607]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at xe_pm@s4-d3hot-basic-exec.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-2/igt at xe_pm@s4-d3hot-basic-exec.html * igt at xe_pm_residency@cpg-basic: - shard-dg2-set2: NOTRUN -> [ABORT][180] ([Intel XE#4046]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-432/igt at xe_pm_residency@cpg-basic.html * igt at xe_pm_residency@cpg-gt-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][181] ([Intel XE#1130]) +5 other tests skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at xe_pm_residency@cpg-gt-toggle.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][182] -> [FAIL][183] ([Intel XE#958]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at xe_pm_residency@toggle-gt-c6.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-3/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-invalid-size: - shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#944]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-8/igt at xe_query@multigpu-query-invalid-size.html * igt at xe_query@multigpu-query-mem-usage: - shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#944]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#944]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-8/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][187] ([Intel XE#3342]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt at fbdev@pan: - shard-bmg: [SKIP][188] ([Intel XE#2134]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at fbdev@pan.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-8/igt at fbdev@pan.html * igt at kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][190] ([Intel XE#3007]) -> [PASS][191] +3 other tests pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_addfb_basic@bad-pitch-999.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-1/igt at kms_addfb_basic@bad-pitch-999.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][192] ([Intel XE#827]) -> [PASS][193] +1 other test pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-4/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][194] ([Intel XE#3862]) -> [PASS][195] +1 other test pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1: - shard-lnl: [FAIL][196] -> [PASS][197] +1 other test pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-3/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [SKIP][198] ([Intel XE#2291]) -> [PASS][199] +6 other tests pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-4/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [FAIL][200] ([Intel XE#1475]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-4/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-1/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][202] ([Intel XE#2882]) -> [PASS][203] +2 other tests pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-8/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3: - shard-bmg: [FAIL][204] ([Intel XE#3820]) -> [PASS][205] +4 other tests pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][206] ([Intel XE#2316]) -> [PASS][207] +6 other tests pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@dpms-vs-vblank-race: - shard-dg2-set2: [INCOMPLETE][208] ([Intel XE#2049]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-435/igt at kms_flip@dpms-vs-vblank-race.html * igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6: - shard-dg2-set2: [INCOMPLETE][210] -> [PASS][211] [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-435/igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][212] ([Intel XE#886]) -> [PASS][213] +1 other test pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_flip@flip-vs-absolute-wf_vblank.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-3/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a6: - shard-dg2-set2: [FAIL][214] -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a6.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a6.html * igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a6: - shard-dg2-set2: [FAIL][216] ([Intel XE#886]) -> [PASS][217] +1 other test pass [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a6.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-464/igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][218] ([Intel XE#2882] / [Intel XE#3820]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank at d-dp2: - shard-bmg: [FAIL][220] -> [PASS][221] +4 other tests pass [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at d-dp2.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank at d-dp2.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-bmg: [SKIP][222] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [SKIP][224] ([Intel XE#1503]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_hdr@invalid-hdr.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_hdr@invalid-hdr.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][226] ([Intel XE#2571]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-4/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at xe_exec_basic@multigpu-no-exec-userptr: - shard-dg2-set2: [SKIP][228] ([Intel XE#1392]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-userptr.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at xe_exec_basic@multigpu-no-exec-userptr.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [SKIP][230] ([Intel XE#1192]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_live_ktest@xe_bo.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-4/igt at xe_live_ktest@xe_bo.html * igt at xe_pm@s2idle-basic-exec: - shard-dg2-set2: [ABORT][232] ([Intel XE#1358]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_pm@s2idle-basic-exec.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-436/igt at xe_pm@s2idle-basic-exec.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][234] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-lnl-1/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_vm@mixed-userptr-misaligned-binds-1611661312: - shard-bmg: [SKIP][236] ([Intel XE#1130]) -> [PASS][237] +9 other tests pass [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_vm@mixed-userptr-misaligned-binds-1611661312.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-7/igt at xe_vm@mixed-userptr-misaligned-binds-1611661312.html #### Warnings #### * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2-set2: [SKIP][238] ([Intel XE#455]) -> [SKIP][239] ([Intel XE#2423] / [i915#2575]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-bmg: [SKIP][240] ([Intel XE#2370]) -> [SKIP][241] ([Intel XE#3007]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-16bpp-rotate-90: - shard-bmg: [SKIP][242] ([Intel XE#2327]) -> [SKIP][243] ([Intel XE#2136] / [Intel XE#2231]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_big_fb@4-tiled-16bpp-rotate-90.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_big_fb@4-tiled-16bpp-rotate-90.html - shard-dg2-set2: [SKIP][244] ([Intel XE#316]) -> [SKIP][245] ([Intel XE#2136] / [Intel XE#2351]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_big_fb@4-tiled-16bpp-rotate-90.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_big_fb@4-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][246] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][247] ([Intel XE#1124]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: [SKIP][248] ([Intel XE#1124]) -> [SKIP][249] ([Intel XE#2136]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_big_fb@yf-tiled-16bpp-rotate-0.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [SKIP][250] ([Intel XE#1124]) -> [SKIP][251] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/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-async-flip: - shard-bmg: [SKIP][252] ([Intel XE#1124]) -> [SKIP][253] ([Intel XE#829]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-dg2-set2: [SKIP][254] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][255] ([Intel XE#2136]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_ccs@bad-aux-stride-yf-tiled-ccs.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][256] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][257] ([Intel XE#2887]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-1/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs: - shard-bmg: [SKIP][258] ([Intel XE#2887]) -> [SKIP][259] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs: - shard-bmg: [SKIP][260] ([Intel XE#2887]) -> [SKIP][261] ([Intel XE#3282]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html - shard-dg2-set2: [SKIP][262] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][263] ([Intel XE#829]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][264] ([Intel XE#3007]) -> [SKIP][265] ([Intel XE#2325]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_color@ctm-green-to-red.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-bmg: [SKIP][266] ([Intel XE#2252]) -> [SKIP][267] ([Intel XE#3007]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_chamelium_edid@dp-edid-stress-resolution-4k.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt at kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-bmg: [SKIP][268] ([Intel XE#3007]) -> [SKIP][269] ([Intel XE#2252]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-1/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt at kms_content_protection@lic-type-0: - shard-bmg: [FAIL][270] ([Intel XE#1178]) -> [SKIP][271] ([Intel XE#2341]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_content_protection@lic-type-0.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_content_protection@lic-type-0.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: [SKIP][272] ([Intel XE#2320]) -> [SKIP][273] ([Intel XE#3007]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-32x32.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][274] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][275] ([Intel XE#2311]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][276] ([Intel XE#2312]) -> [SKIP][277] ([Intel XE#2311]) +15 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move: - shard-dg2-set2: [SKIP][278] ([Intel XE#651]) -> [SKIP][279] ([Intel XE#2136]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][280] ([Intel XE#2311]) -> [SKIP][281] ([Intel XE#2312]) +8 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-slowdraw: - shard-dg2-set2: [SKIP][282] ([Intel XE#651]) -> [SKIP][283] ([Intel XE#783]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at kms_frontbuffer_tracking@drrs-slowdraw.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-slowdraw.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: - shard-bmg: [FAIL][284] ([Intel XE#2333]) -> [SKIP][285] ([Intel XE#2136] / [Intel XE#2231]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [FAIL][286] ([Intel XE#2333]) -> [SKIP][287] ([Intel XE#2312]) +3 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][288] ([Intel XE#2312]) -> [FAIL][289] ([Intel XE#2333]) +9 other tests fail [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][290] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][291] ([Intel XE#2333]) +1 other test fail [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: [DMESG-FAIL][292] ([Intel XE#877]) -> [FAIL][293] ([Intel XE#2333]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][294] ([Intel XE#2311]) -> [SKIP][295] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][296] ([Intel XE#2312]) -> [SKIP][297] ([Intel XE#2313]) +14 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][298] ([Intel XE#653]) -> [SKIP][299] ([Intel XE#2136]) +2 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][300] ([Intel XE#653]) -> [SKIP][301] ([Intel XE#2136] / [Intel XE#2351]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][302] ([Intel XE#2313]) -> [SKIP][303] ([Intel XE#2312]) +12 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][304] ([Intel XE#2313]) -> [SKIP][305] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: [SKIP][306] ([Intel XE#908]) -> [SKIP][307] ([Intel XE#2136] / [Intel XE#2351]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_pm_dc@dc6-dpms.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_pm_dc@dc6-dpms.html - shard-bmg: [FAIL][308] ([Intel XE#1430]) -> [SKIP][309] ([Intel XE#2136] / [Intel XE#2231]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_pm_dc@dc6-dpms.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_pm_dc@dc6-dpms.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][310] ([Intel XE#1489]) -> [SKIP][311] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html - shard-dg2-set2: [SKIP][312] ([Intel XE#1489]) -> [SKIP][313] ([Intel XE#2136]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-psr-cursor-plane-onoff: - shard-dg2-set2: [SKIP][314] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][315] ([Intel XE#2136]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_psr@fbc-psr-cursor-plane-onoff.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_psr@fbc-psr-cursor-plane-onoff.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-bmg: [SKIP][316] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][317] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_psr@fbc-psr2-cursor-blt.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_psr@fbc-psr2-cursor-blt.html - shard-dg2-set2: [SKIP][318] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][319] ([Intel XE#2136] / [Intel XE#2351]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_psr@fbc-psr2-cursor-blt.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][320] ([Intel XE#362]) -> [FAIL][321] ([Intel XE#1729]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-464/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@flipline: - shard-bmg: [SKIP][322] ([Intel XE#1499]) -> [SKIP][323] ([Intel XE#3007]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_vrr@flipline.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-6/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][324] ([Intel XE#3007]) -> [SKIP][325] ([Intel XE#1499]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-virtual.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-bmg-4/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm: - shard-dg2-set2: [SKIP][326] ([Intel XE#288]) -> [SKIP][327] ([Intel XE#1130]) +2 other tests skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][328] ([Intel XE#255]) -> [SKIP][329] ([Intel XE#1130]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at xe_huc_copy@huc_copy.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at xe_huc_copy@huc_copy.html * igt at xe_oa@syncs-userptr-wait-cfg: - shard-dg2-set2: [SKIP][330] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][331] ([Intel XE#1130]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_oa@syncs-userptr-wait-cfg.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/shard-dg2-463/igt at xe_oa@syncs-userptr-wait-cfg.html [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#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [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#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#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [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#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#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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [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#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#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [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#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [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#3282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3282 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [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#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#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4046]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4046 [Intel XE#4048]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4048 [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#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [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#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#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783 [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#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [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 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [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_8193 -> IGTPW_12441 IGTPW_12441: 12441 IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12441/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From sunil.khatri at amd.com Thu Jan 16 06:52:03 2025 From: sunil.khatri at amd.com (Sunil Khatri) Date: Thu, 16 Jan 2025 12:22:03 +0530 Subject: [PATCH 0/8] The series add support for UMQ submission Message-ID: <20250116065211.1882469-1-sunil.khatri@amd.com> Here we are enabling UMQ submission framework along with 3 new test cases which validated gfx and compute with UMQ Submission Sunil Khatri (8): drm-uapi/amdgpu: sync with drm-next drm-uapi/amdgpu: sync with drm-next lib/amdgpu: Add user mode queue support in ring context lib/amdgpu: Add support of amd user queues lib/amdgpu: add func amdgpu_bo_alloc_and_map_sync tests/amdgpu: Add user queue support for gfx and compute tests/amdgpu: Add UMQ submission tests for gfx and compute tests/amdgpu: Add amdgpu_sync_dependency_test with UMQ include/drm-uapi/amdgpu_drm.h | 240 ++++++++++++++++ lib/amdgpu/amd_PM4.h | 3 + lib/amdgpu/amd_command_submission.c | 313 ++++++++++++++------- lib/amdgpu/amd_command_submission.h | 8 +- lib/amdgpu/amd_compute.c | 100 ++++--- lib/amdgpu/amd_compute.h | 2 +- lib/amdgpu/amd_ip_blocks.h | 36 +++ lib/amdgpu/amd_memory.c | 19 ++ lib/amdgpu/amd_memory.h | 8 + lib/amdgpu/amd_user_queue.c | 418 ++++++++++++++++++++++++++++ lib/amdgpu/amd_user_queue.h | 48 ++++ lib/meson.build | 3 +- tests/amdgpu/amd_basic.c | 168 ++++++++--- tests/amdgpu/amd_security.c | 4 +- 14 files changed, 1187 insertions(+), 183 deletions(-) create mode 100644 lib/amdgpu/amd_user_queue.c create mode 100644 lib/amdgpu/amd_user_queue.h -- 2.34.1 From sunil.khatri at amd.com Thu Jan 16 06:52:10 2025 From: sunil.khatri at amd.com (Sunil Khatri) Date: Thu, 16 Jan 2025 12:22:10 +0530 Subject: [PATCH 7/8] tests/amdgpu: Add UMQ submission tests for gfx and compute In-Reply-To: <20250116065211.1882469-1-sunil.khatri@amd.com> References: <20250116065211.1882469-1-sunil.khatri@amd.com> Message-ID: <20250116065211.1882469-8-sunil.khatri@amd.com> We already have the gfx and compute ip user mode submission support added in the IGT and hence with this patch we are adding a new test case for gfx and compute using UMQ submission. Signed-off-by: Sunil Khatri Reviewed-by: Vitaly Prosyak vitaly.prosyak at amd.com> --- tests/amdgpu/amd_basic.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c index b05633b8e..2b339c74b 100644 --- a/tests/amdgpu/amd_basic.c +++ b/tests/amdgpu/amd_basic.c @@ -747,6 +747,22 @@ igt_main } } + igt_describe("Check-GFX-CS-for-every-available-ring-works-for-write-const-fill-and-copy-operation-using-more-than-one-IB-and-shared-IB"); + igt_subtest_with_dynamic("cs-gfx-with-IP-GFX-UMQ") { + if (arr_cap[AMD_IP_GFX]) { + igt_dynamic_f("cs-gfx-with-umq") + amdgpu_command_submission_gfx(device, info.hw_ip_version_major < 11, true); + } + } + + igt_describe("Check-COMPUTE-CS-for-every-available-ring-works-for-write-const-fill-copy-and-nop-operation"); + igt_subtest_with_dynamic("cs-compute-with-IP-COMPUTE-UMQ") { + if (arr_cap[AMD_IP_COMPUTE]) { + igt_dynamic_f("cs-compute-with-umq") + amdgpu_command_submission_compute(device, true); + } + } + igt_fixture { amdgpu_device_deinitialize(device); drm_close_driver(fd); -- 2.34.1 From sunil.khatri at amd.com Thu Jan 16 06:52:08 2025 From: sunil.khatri at amd.com (Sunil Khatri) Date: Thu, 16 Jan 2025 12:22:08 +0530 Subject: [PATCH 5/8] lib/amdgpu: add func amdgpu_bo_alloc_and_map_sync In-Reply-To: <20250116065211.1882469-1-sunil.khatri@amd.com> References: <20250116065211.1882469-1-sunil.khatri@amd.com> Message-ID: <20250116065211.1882469-6-sunil.khatri@amd.com> Add amdgpu_bo_alloc_and_map_sync func which is synchronised version of amdgpu_bo_alloc_and_map. It wait till the timeline is signaled and page tables are updated for the bo. Signed-off-by: Sunil Khatri Reviewed-by: Vitaly Prosyak vitaly.prosyak at amd.com> --- lib/amdgpu/amd_memory.c | 19 +++++++++++++++++++ lib/amdgpu/amd_memory.h | 8 ++++++++ 2 files changed, 27 insertions(+) diff --git a/lib/amdgpu/amd_memory.c b/lib/amdgpu/amd_memory.c index 92ddc9fe2..d1ff57085 100644 --- a/lib/amdgpu/amd_memory.c +++ b/lib/amdgpu/amd_memory.c @@ -25,6 +25,8 @@ #include "amd_memory.h" #include "amd_PM4.h" +#include "amd_user_queue.h" + /** * * @param device_handle @@ -193,6 +195,23 @@ error_va_alloc: return r; } +int +amdgpu_bo_alloc_and_map_sync(amdgpu_device_handle dev, unsigned int size, + unsigned int alignment, unsigned int heap, uint64_t flags, + uint64_t mapping_flags, amdgpu_bo_handle *bo, void **cpu, + uint64_t *mc_address, amdgpu_va_handle *va_handle, + uint32_t timeline_syncobj_handle, uint64_t point, bool sync) +{ + if (sync) + return amdgpu_bo_alloc_and_map_uq(dev, size, alignment, heap, flags, + mapping_flags, bo, cpu, + mc_address, va_handle, + timeline_syncobj_handle, point); + else + return amdgpu_bo_alloc_and_map(dev, size, alignment, heap, flags, + bo, cpu, mc_address, va_handle); +} + int amdgpu_bo_alloc_and_map_raw(amdgpu_device_handle dev, unsigned size, unsigned alignment, unsigned heap, uint64_t alloc_flags, diff --git a/lib/amdgpu/amd_memory.h b/lib/amdgpu/amd_memory.h index a06f88923..9b0e3f392 100644 --- a/lib/amdgpu/amd_memory.h +++ b/lib/amdgpu/amd_memory.h @@ -55,6 +55,14 @@ amdgpu_bo_alloc_and_map(amdgpu_device_handle dev, unsigned size, amdgpu_bo_handle *bo, void **cpu, uint64_t *mc_address, amdgpu_va_handle *va_handle); +int +amdgpu_bo_alloc_and_map_sync(amdgpu_device_handle dev, unsigned int size, + unsigned int alignment, unsigned int heap, uint64_t flags, + uint64_t mapping_flags, amdgpu_bo_handle *bo, void **cpu, + uint64_t *mc_address, amdgpu_va_handle *va_handle, + uint32_t timeline_syncobj_handle, uint64_t point, + bool sync); + int amdgpu_bo_alloc_and_map_raw(amdgpu_device_handle dev, unsigned size, unsigned alignment, unsigned heap, uint64_t alloc_flags, -- 2.34.1 From sunil.khatri at amd.com Thu Jan 16 06:52:06 2025 From: sunil.khatri at amd.com (Sunil Khatri) Date: Thu, 16 Jan 2025 12:22:06 +0530 Subject: [PATCH 3/8] lib/amdgpu: Add user mode queue support in ring context In-Reply-To: <20250116065211.1882469-1-sunil.khatri@amd.com> References: <20250116065211.1882469-1-sunil.khatri@amd.com> Message-ID: <20250116065211.1882469-4-sunil.khatri@amd.com> Add the meta data to support the user mode command submission in the ring_context. User mode command submission methods needs these resources to be initialized and to create/destroy queues. Also once we have the queue created the queue id is used to submit the work load to the h/w. Signed-off-by: Sunil Khatri Reviewed-by: Vitaly Prosyak vitaly.prosyak at amd.com> --- lib/amdgpu/amd_ip_blocks.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/lib/amdgpu/amd_ip_blocks.h b/lib/amdgpu/amd_ip_blocks.h index dc4d87151..9d110d402 100644 --- a/lib/amdgpu/amd_ip_blocks.h +++ b/lib/amdgpu/amd_ip_blocks.h @@ -86,6 +86,14 @@ struct dynamic_test{ bool support_sdma; }; +struct amdgpu_userq_bo { + amdgpu_bo_handle handle; + amdgpu_va_handle va_handle; + uint64_t mc_addr; + uint64_t size; + void *ptr; +}; + #define for_each_test(t, T) for(typeof(*T) *t = T; t->name; t++) /* set during execution */ @@ -141,6 +149,29 @@ struct amdgpu_ring_context { struct amdgpu_cs_ib_info ib_info; /* amdgpu_bo_list_create */ struct amdgpu_cs_request ibs_request; /* amdgpu_cs_query_fence_status */ struct amdgpu_cs_err_codes err_codes; + + /* User queue resources */ + struct amdgpu_userq_bo queue; + struct amdgpu_userq_bo shadow; + struct amdgpu_userq_bo doorbell; + struct amdgpu_userq_bo rptr; + struct amdgpu_userq_bo wptr; + struct amdgpu_userq_bo csa; + struct amdgpu_userq_bo eop; + + uint32_t *queue_cpu; + uint64_t *wptr_cpu; + uint64_t *doorbell_cpu; + + uint32_t db_handle; + uint32_t queue_id; + uint32_t npkt; + + uint32_t timeline_syncobj_handle; + uint64_t point; + bool user_queue; + + struct drm_amdgpu_info_device dev_info; }; -- 2.34.1 From sunil.khatri at amd.com Thu Jan 16 06:52:05 2025 From: sunil.khatri at amd.com (Sunil Khatri) Date: Thu, 16 Jan 2025 12:22:05 +0530 Subject: [PATCH 2/8] drm-uapi/amdgpu: sync with drm-next In-Reply-To: <20250116065211.1882469-1-sunil.khatri@amd.com> References: <20250116065211.1882469-1-sunil.khatri@amd.com> Message-ID: <20250116065211.1882469-3-sunil.khatri@amd.com> Sync with drm-next commit ("866fc4f7e772c4a397f9459754ed1b1872b3a3c6") Added support of UAPI for user queue secure semaphore. The semaphore is used to synchronize between the caller and the gpu hw and user wait for the semaphore. Signed-off-by: Sunil Khatri Reviewed-by: Vitaly Prosyak vitaly.prosyak at amd.com> --- include/drm-uapi/amdgpu_drm.h | 117 ++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) diff --git a/include/drm-uapi/amdgpu_drm.h b/include/drm-uapi/amdgpu_drm.h index d780e1f2a..fed39c9b4 100644 --- a/include/drm-uapi/amdgpu_drm.h +++ b/include/drm-uapi/amdgpu_drm.h @@ -55,6 +55,8 @@ extern "C" { #define DRM_AMDGPU_FENCE_TO_HANDLE 0x14 #define DRM_AMDGPU_SCHED 0x15 #define DRM_AMDGPU_USERQ 0x16 +#define DRM_AMDGPU_USERQ_SIGNAL 0x17 +#define DRM_AMDGPU_USERQ_WAIT 0x18 #define DRM_IOCTL_AMDGPU_GEM_CREATE DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_CREATE, union drm_amdgpu_gem_create) #define DRM_IOCTL_AMDGPU_GEM_MMAP DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_MMAP, union drm_amdgpu_gem_mmap) @@ -73,6 +75,8 @@ extern "C" { #define DRM_IOCTL_AMDGPU_FENCE_TO_HANDLE DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_FENCE_TO_HANDLE, union drm_amdgpu_fence_to_handle) #define DRM_IOCTL_AMDGPU_SCHED DRM_IOW(DRM_COMMAND_BASE + DRM_AMDGPU_SCHED, union drm_amdgpu_sched) #define DRM_IOCTL_AMDGPU_USERQ DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_USERQ, union drm_amdgpu_userq) +#define DRM_IOCTL_AMDGPU_USERQ_SIGNAL DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_USERQ_SIGNAL, struct drm_amdgpu_userq_signal) +#define DRM_IOCTL_AMDGPU_USERQ_WAIT DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_USERQ_WAIT, struct drm_amdgpu_userq_wait) /** * DOC: memory domains @@ -442,6 +446,119 @@ struct drm_amdgpu_userq_mqd_compute_gfx11 { __u64 eop_va; }; +/* userq signal/wait ioctl */ +struct drm_amdgpu_userq_signal { + /** + * @queue_id: Queue handle used by the userq fence creation function + * to retrieve the WPTR. + */ + __u32 queue_id; + __u32 pad; + /** + * @syncobj_handles: The list of syncobj handles submitted by the user queue + * job to be signaled. + */ + __u64 syncobj_handles; + /** + * @num_syncobj_handles: A count that represents the number of syncobj handles in + * @syncobj_handles. + */ + __u64 num_syncobj_handles; + /** + * @bo_read_handles: The list of BO handles that the submitted user queue job + * is using for read only. This will update BO fences in the kernel. + */ + __u64 bo_read_handles; + /** + * @bo_write_handles: The list of BO handles that the submitted user queue job + * is using for write only. This will update BO fences in the kernel. + */ + __u64 bo_write_handles; + /** + * @num_bo_read_handles: A count that represents the number of read BO handles in + * @bo_read_handles. + */ + __u32 num_bo_read_handles; + /** + * @num_bo_write_handles: A count that represents the number of write BO handles in + * @bo_write_handles. + */ + __u32 num_bo_write_handles; +}; + +struct drm_amdgpu_userq_fence_info { + /** + * @va: A gpu address allocated for each queue which stores the + * read pointer (RPTR) value. + */ + __u64 va; + /** + * @value: A 64 bit value represents the write pointer (WPTR) of the + * queue commands which compared with the RPTR value to signal the + * fences. + */ + __u64 value; +}; + +struct drm_amdgpu_userq_wait { + /** + * @syncobj_handles: The list of syncobj handles submitted by the user queue + * job to get the va/value pairs. + */ + __u64 syncobj_handles; + /** + * @syncobj_timeline_handles: The list of timeline syncobj handles submitted by + * the user queue job to get the va/value pairs at given @syncobj_timeline_points. + */ + __u64 syncobj_timeline_handles; + /** + * @syncobj_timeline_points: The list of timeline syncobj points submitted by the + * user queue job for the corresponding @syncobj_timeline_handles. + */ + __u64 syncobj_timeline_points; + /** + * @bo_read_handles: The list of read BO handles submitted by the user queue + * job to get the va/value pairs. + */ + __u64 bo_read_handles; + /** + * @bo_write_handles: The list of write BO handles submitted by the user queue + * job to get the va/value pairs. + */ + __u64 bo_write_handles; + /** + * @num_syncobj_timeline_handles: A count that represents the number of timeline + * syncobj handles in @syncobj_timeline_handles. + */ + __u16 num_syncobj_timeline_handles; + /** + * @num_fences: This field can be used both as input and output. As input it defines + * the maximum number of fences that can be returned and as output it will specify + * how many fences were actually returned from the ioctl. + */ + __u16 num_fences; + /** + * @num_syncobj_handles: A count that represents the number of syncobj handles in + * @syncobj_handles. + */ + __u32 num_syncobj_handles; + /** + * @num_bo_read_handles: A count that represents the number of read BO handles in + * @bo_read_handles. + */ + __u32 num_bo_read_handles; + /** + * @num_bo_write_handles: A count that represents the number of write BO handles in + * @bo_write_handles. + */ + __u32 num_bo_write_handles; + /** + * @out_fences: The field is a return value from the ioctl containing the list of + * address/value pairs to wait for. + */ + __u64 out_fences; +}; + /* vm ioctl */ #define AMDGPU_VM_OP_RESERVE_VMID 1 #define AMDGPU_VM_OP_UNRESERVE_VMID 2 -- 2.34.1 From sunil.khatri at amd.com Thu Jan 16 06:52:11 2025 From: sunil.khatri at amd.com (Sunil Khatri) Date: Thu, 16 Jan 2025 12:22:11 +0530 Subject: [PATCH 8/8] tests/amdgpu: Add amdgpu_sync_dependency_test with UMQ In-Reply-To: <20250116065211.1882469-1-sunil.khatri@amd.com> References: <20250116065211.1882469-1-sunil.khatri@amd.com> Message-ID: <20250116065211.1882469-9-sunil.khatri@amd.com> Add UMQ support in amdgpu_sync_dependency_test and also add a new test case which will run this test for UMQ submission. Signed-off-by: Sunil Khatri Reviewed-by: Vitaly Prosyak vitaly.prosyak at amd.com> --- tests/amdgpu/amd_basic.c | 94 ++++++++++++++++++++++++++++++---------- 1 file changed, 71 insertions(+), 23 deletions(-) diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c index 2b339c74b..bb715e06e 100644 --- a/tests/amdgpu/amd_basic.c +++ b/tests/amdgpu/amd_basic.c @@ -475,7 +475,7 @@ amdgpu_bo_eviction_test(amdgpu_device_handle device_handle) } static void -amdgpu_sync_dependency_test(amdgpu_device_handle device_handle) +amdgpu_sync_dependency_test(amdgpu_device_handle device_handle, bool user_queue) { const unsigned const_size = 8192; const unsigned const_alignment = 4096; @@ -498,25 +498,44 @@ amdgpu_sync_dependency_test(amdgpu_device_handle device_handle) uint32_t size_bytes, code_offset, data_offset; const uint32_t *shader; + struct amdgpu_ring_context *ring_context; struct amdgpu_cmd_base *base = get_cmd_base(); const struct amdgpu_ip_block_version *ip_block = get_ip_block(device_handle, AMD_IP_GFX); - r = amdgpu_cs_ctx_create(device_handle, &context_handle[0]); - igt_assert_eq(r, 0); - r = amdgpu_cs_ctx_create(device_handle, &context_handle[1]); - igt_assert_eq(r, 0); + ring_context = calloc(1, sizeof(*ring_context)); + igt_assert(ring_context); - r = amdgpu_bo_alloc_and_map(device_handle, const_size, const_alignment, - AMDGPU_GEM_DOMAIN_GTT, 0, - &ib_result_handle, &ib_result_cpu, - &ib_result_mc_address, &va_handle); + if (user_queue) { + amdgpu_user_queue_create(device_handle, ring_context, ip_block->type); + } else { + r = amdgpu_cs_ctx_create(device_handle, &context_handle[0]); + igt_assert_eq(r, 0); + + r = amdgpu_cs_ctx_create(device_handle, &context_handle[1]); + igt_assert_eq(r, 0); + } + + r = amdgpu_bo_alloc_and_map_sync(device_handle, const_size, + const_alignment, AMDGPU_GEM_DOMAIN_GTT, 0, + AMDGPU_VM_MTYPE_UC, + &ib_result_handle, &ib_result_cpu, + &ib_result_mc_address, &va_handle, + ring_context->timeline_syncobj_handle, + ++ring_context->point, user_queue); igt_assert_eq(r, 0); - r = amdgpu_get_bo_list(device_handle, ib_result_handle, NULL, + if (user_queue) { + r = amdgpu_timeline_syncobj_wait(device_handle, + ring_context->timeline_syncobj_handle, + ring_context->point); + igt_assert_eq(r, 0); + } else { + r = amdgpu_get_bo_list(device_handle, ib_result_handle, NULL, &bo_list); - igt_assert_eq(r, 0); + igt_assert_eq(r, 0); + } shader = get_shader_bin(&size_bytes, &code_offset, &data_offset); @@ -585,7 +604,14 @@ amdgpu_sync_dependency_test(amdgpu_device_handle device_handle) ibs_request.resources = bo_list; ibs_request.fence_info.handle = NULL; - r = amdgpu_cs_submit(context_handle[1], 0, &ibs_request, 1); + if (user_queue) { + ring_context->pm4_dw = ib_info.size; + amdgpu_user_queue_submit(device_handle, ring_context, ip_block->type, + ib_result_mc_address); + } else { + r = amdgpu_cs_submit(context_handle[1], 0, &ibs_request, 1); + } + igt_assert_eq(r, 0); seq_no = ibs_request.seq_no; @@ -618,8 +644,14 @@ amdgpu_sync_dependency_test(amdgpu_device_handle device_handle) ibs_request.dependencies[0].ring = 0; ibs_request.dependencies[0].fence = seq_no; - r = amdgpu_cs_submit(context_handle[0], 0, &ibs_request, 1); - igt_assert_eq(r, 0); + if (user_queue) { + ring_context->pm4_dw = ib_info.size; + amdgpu_user_queue_submit(device_handle, ring_context, ip_block->type, + ib_info.ib_mc_address); + } else { + r = amdgpu_cs_submit(context_handle[0], 0, &ibs_request, 1); + igt_assert_eq(r, 0); + } memset(&fence_status, 0, sizeof(struct amdgpu_cs_fence)); fence_status.context = context_handle[0]; @@ -628,21 +660,29 @@ amdgpu_sync_dependency_test(amdgpu_device_handle device_handle) fence_status.ring = 0; fence_status.fence = ibs_request.seq_no; - r = amdgpu_cs_query_fence_status(&fence_status, + if (!user_queue) { + r = amdgpu_cs_query_fence_status(&fence_status, AMDGPU_TIMEOUT_INFINITE, 0, &expired); - igt_assert_eq(r, 0); + igt_assert_eq(r, 0); + } /* Expect the second command to wait for shader to complete */ igt_assert_eq(base->buf[data_offset], 99); - r = amdgpu_bo_list_destroy(bo_list); - igt_assert_eq(r, 0); + if (!user_queue) { + r = amdgpu_bo_list_destroy(bo_list); + igt_assert_eq(r, 0); + } - amdgpu_bo_unmap_and_free(ib_result_handle, va_handle, - ib_result_mc_address, const_alignment); + amdgpu_bo_unmap_and_free(ib_result_handle, va_handle, + ib_result_mc_address, const_alignment); - amdgpu_cs_ctx_free(context_handle[0]); - amdgpu_cs_ctx_free(context_handle[1]); + if (user_queue) { + amdgpu_user_queue_destroy(device_handle, ring_context, ip_block->type); + } else { + amdgpu_cs_ctx_free(context_handle[0]); + amdgpu_cs_ctx_free(context_handle[1]); + } free(ibs_request.dependencies); free_cmd_base(base); @@ -743,7 +783,7 @@ igt_main igt_subtest_with_dynamic("sync-dependency-test-with-IP-GFX") { if (arr_cap[AMD_IP_GFX]) { igt_dynamic_f("sync-dependency-test") - amdgpu_sync_dependency_test(device); + amdgpu_sync_dependency_test(device, false); } } @@ -763,6 +803,14 @@ igt_main } } + igt_describe("Check-sync-dependency-using-GFX-ring"); + igt_subtest_with_dynamic("sync-dependency-test-with-IP-GFX-UMQ") { + if (arr_cap[AMD_IP_GFX]) { + igt_dynamic_f("sync-dependency-test-with-umq") + amdgpu_sync_dependency_test(device, true); + } + } + igt_fixture { amdgpu_device_deinitialize(device); drm_close_driver(fd); -- 2.34.1 From sunil.khatri at amd.com Thu Jan 16 06:52:04 2025 From: sunil.khatri at amd.com (Sunil Khatri) Date: Thu, 16 Jan 2025 12:22:04 +0530 Subject: [PATCH 1/8] drm-uapi/amdgpu: sync with drm-next In-Reply-To: <20250116065211.1882469-1-sunil.khatri@amd.com> References: <20250116065211.1882469-1-sunil.khatri@amd.com> Message-ID: <20250116065211.1882469-2-sunil.khatri@amd.com> Sync with drm-next commit ("e0400bf7d91ed477b827a674e5d64406c78ffd48") This patch introduces new UAPI/IOCTL for usermode graphics queue. IGT test cases fill this structure and request the graphics driver to add a graphics work queue for it. The output of this UAPI is a queue id. This UAPI maps the queue into GPU, so the graphics app can start submitting work to the queue as soon as the call returns. Signed-off-by: Sunil Khatri Reviewed-by: Vitaly Prosyak vitaly.prosyak at amd.com> --- include/drm-uapi/amdgpu_drm.h | 123 ++++++++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) diff --git a/include/drm-uapi/amdgpu_drm.h b/include/drm-uapi/amdgpu_drm.h index efe5de6ce..d780e1f2a 100644 --- a/include/drm-uapi/amdgpu_drm.h +++ b/include/drm-uapi/amdgpu_drm.h @@ -54,6 +54,7 @@ extern "C" { #define DRM_AMDGPU_VM 0x13 #define DRM_AMDGPU_FENCE_TO_HANDLE 0x14 #define DRM_AMDGPU_SCHED 0x15 +#define DRM_AMDGPU_USERQ 0x16 #define DRM_IOCTL_AMDGPU_GEM_CREATE DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_CREATE, union drm_amdgpu_gem_create) #define DRM_IOCTL_AMDGPU_GEM_MMAP DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_MMAP, union drm_amdgpu_gem_mmap) @@ -71,6 +72,7 @@ extern "C" { #define DRM_IOCTL_AMDGPU_VM DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_VM, union drm_amdgpu_vm) #define DRM_IOCTL_AMDGPU_FENCE_TO_HANDLE DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_FENCE_TO_HANDLE, union drm_amdgpu_fence_to_handle) #define DRM_IOCTL_AMDGPU_SCHED DRM_IOW(DRM_COMMAND_BASE + DRM_AMDGPU_SCHED, union drm_amdgpu_sched) +#define DRM_IOCTL_AMDGPU_USERQ DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_USERQ, union drm_amdgpu_userq) /** * DOC: memory domains @@ -319,6 +321,127 @@ union drm_amdgpu_ctx { union drm_amdgpu_ctx_out out; }; +/* user queue IOCTL operations */ +#define AMDGPU_USERQ_OP_CREATE 1 +#define AMDGPU_USERQ_OP_FREE 2 + +/* + * This structure is a container to pass input configuration + * info for all supported userqueue related operations. + * For operation AMDGPU_USERQ_OP_CREATE: user is expected + * to set all fields, excep the parameter 'queue_id'. + * For operation AMDGPU_USERQ_OP_FREE: the only input parameter expected + * to be set is 'queue_id', eveything else is ignored. + */ +struct drm_amdgpu_userq_in { + /** AMDGPU_USERQ_OP_* */ + __u32 op; + /** Queue id passed for operation USERQ_OP_FREE */ + __u32 queue_id; + /** the target GPU engine to execute workload (AMDGPU_HW_IP_*) */ + __u32 ip_type; + /** + * @doorbell_handle: the handle of doorbell GEM object + * associated with this userqueue client. + */ + __u32 doorbell_handle; + /** + * @doorbell_offset: 32-bit offset of the doorbell in the doorbell bo. + * Kernel will generate absolute doorbell offset using doorbell_handle + * and doorbell_offset in the doorbell bo. + */ + __u32 doorbell_offset; + __u32 _pad; + /** + * @queue_va: Virtual address of the GPU memory which holds the queue + * object. The queue holds the workload packets. + */ + __u64 queue_va; + /** + * @queue_size: Size of the queue in bytes, this needs to be 256-byte + * aligned. + */ + __u64 queue_size; + /** + * @rptr_va : Virtual address of the GPU memory which holds the ring RPTR. + * This object must be at least 8 byte in size and aligned to 8-byte offset. + */ + __u64 rptr_va; + /** + * @wptr_va : Virtual address of the GPU memory which holds the ring WPTR. + * This object must be at least 8 byte in size and aligned to 8-byte offset. + * + * Queue, RPTR and WPTR can come from the same object, as long as the size + * and alignment related requirements are met. + */ + __u64 wptr_va; + /** + * @mqd: MQD (memory queue descriptor) is a set of parameters which allow + * the GPU to uniquely define and identify a usermode queue. + * + * MQD data can be of different size for different GPU IP/engine and + * their respective versions/revisions, so this points to a __u64 * + * which holds IP specific MQD of this usermode queue. + */ + __u64 mqd; + /** + * @size: size of MQD data in bytes, it must match the MQD structure + * size of the respective engine/revision defined in UAPI for ex, for + * gfx11 workloads, size = sizeof(drm_amdgpu_userq_mqd_gfx11). + */ + __u64 mqd_size; +}; + +/* The structure to carry output of userqueue ops */ +struct drm_amdgpu_userq_out { + /** + * For operation AMDGPU_USERQ_OP_CREATE: This field contains a unique + * queue ID to represent the newly created userqueue in the system, otherwise + * it should be ignored. + */ + __u32 queue_id; + __u32 _pad; +}; + +union drm_amdgpu_userq { + struct drm_amdgpu_userq_in in; + struct drm_amdgpu_userq_out out; +}; + +/* GFX V11 IP specific MQD parameters */ +struct drm_amdgpu_userq_mqd_gfx11 { + /** + * @shadow_va: Virtual address of the GPU memory to hold the shadow buffer. + * Use AMDGPU_INFO_IOCTL to find the exact size of the object. + */ + __u64 shadow_va; + /** + * @csa_va: Virtual address of the GPU memory to hold the CSA buffer. + * Use AMDGPU_INFO_IOCTL to find the exact size of the object. + */ + __u64 csa_va; +}; + +/* GFX V11 SDMA IP specific MQD parameters */ +struct drm_amdgpu_userq_mqd_sdma_gfx11 { + /** + * @csa_va: Virtual address of the GPU memory to hold the CSA buffer. + * This must be a from a separate GPU object, and use AMDGPU_INFO IOCTL + * to get the size. + */ + __u64 csa_va; +}; + +/* GFX V11 Compute IP specific MQD parameters */ +struct drm_amdgpu_userq_mqd_compute_gfx11 { + /** + * @eop_va: Virtual address of the GPU memory to hold the EOP buffer. + * This must be a from a separate GPU object, and use AMDGPU_INFO IOCTL + * to get the size. + */ + __u64 eop_va; +}; + /* vm ioctl */ #define AMDGPU_VM_OP_RESERVE_VMID 1 #define AMDGPU_VM_OP_UNRESERVE_VMID 2 -- 2.34.1 From sunil.khatri at amd.com Thu Jan 16 06:52:07 2025 From: sunil.khatri at amd.com (Sunil Khatri) Date: Thu, 16 Jan 2025 12:22:07 +0530 Subject: [PATCH 4/8] lib/amdgpu: Add support of amd user queues In-Reply-To: <20250116065211.1882469-1-sunil.khatri@amd.com> References: <20250116065211.1882469-1-sunil.khatri@amd.com> Message-ID: <20250116065211.1882469-5-sunil.khatri@amd.com> This is the first patch set to add support of UMQ(User mode queues) submission in IGT. UMQ allows users to directly create a user queue and submit workload to the GPU h/w to directly instead of sending the workload to kernel and then to GPU h/w. This will be used by test cases which will be testing the UMQ queues for gfx/compute and sdma to start with. Signed-off-by: Sunil Khatri Reviewed-by: Vitaly Prosyak vitaly.prosyak at amd.com> --- lib/amdgpu/amd_PM4.h | 3 + lib/amdgpu/amd_ip_blocks.h | 5 + lib/amdgpu/amd_user_queue.c | 418 ++++++++++++++++++++++++++++++++++++ lib/amdgpu/amd_user_queue.h | 48 +++++ lib/meson.build | 3 +- 5 files changed, 476 insertions(+), 1 deletion(-) create mode 100644 lib/amdgpu/amd_user_queue.c create mode 100644 lib/amdgpu/amd_user_queue.h diff --git a/lib/amdgpu/amd_PM4.h b/lib/amdgpu/amd_PM4.h index 5bc3cb783..8f59b4223 100644 --- a/lib/amdgpu/amd_PM4.h +++ b/lib/amdgpu/amd_PM4.h @@ -192,6 +192,9 @@ * 1 - pfp */ +#define PACKET3_INDIRECT_BUFFER 0x3F +#define PACKET3_PROTECTED_FENCE_SIGNAL 0xd0 + #define PACKET3_WRITE_DATA 0x37 #define WRITE_DATA_DST_SEL(x) ((x) << 8) /* 0 - register diff --git a/lib/amdgpu/amd_ip_blocks.h b/lib/amdgpu/amd_ip_blocks.h index 9d110d402..9b22206cb 100644 --- a/lib/amdgpu/amd_ip_blocks.h +++ b/lib/amdgpu/amd_ip_blocks.h @@ -27,6 +27,11 @@ #define AMDGPU_RESET_TYPE_PER_QUEUE (1 << 2) /* per queue */ #define AMDGPU_RESET_TYPE_PER_PIPE (1 << 3) /* per pipe */ +/* User queue */ +#define S_3F3_INHERIT_VMID_MQD_GFX(x) (((unsigned int)(x)&0x1) << 22)/* userqueue only */ +#define S_3F3_VALID_COMPUTE(x) (((unsigned int)(x)&0x1) << 23)/* userqueue only */ +#define S_3F3_INHERIT_VMID_MQD_COMPUTE(x) (((unsigned int)(x)&0x1) << 30)/* userqueue only */ + enum amd_ip_block_type { AMD_IP_GFX = 0, AMD_IP_COMPUTE, diff --git a/lib/amdgpu/amd_user_queue.c b/lib/amdgpu/amd_user_queue.c new file mode 100644 index 000000000..9412a37e8 --- /dev/null +++ b/lib/amdgpu/amd_user_queue.c @@ -0,0 +1,418 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright 2025 Advanced Micro Devices, Inc. + */ + +#include "amd_user_queue.h" +#include "amd_memory.h" +#include "amd_PM4.h" +#include "ioctl_wrappers.h" + +void amdgpu_alloc_doorbell(amdgpu_device_handle device_handle, struct amdgpu_userq_bo *doorbell_bo, + unsigned int size, unsigned int domain) +{ + struct amdgpu_bo_alloc_request req = {0}; + amdgpu_bo_handle buf_handle; + int r; + + req.alloc_size = ALIGN(size, PAGE_SIZE); + req.preferred_heap = domain; + r = amdgpu_bo_alloc(device_handle, &req, &buf_handle); + igt_assert_eq(r, 0); + + doorbell_bo->handle = buf_handle; + doorbell_bo->size = req.alloc_size; + + r = amdgpu_bo_cpu_map(doorbell_bo->handle, + (void **)&doorbell_bo->ptr); + igt_assert_eq(r, 0); +} + +int +amdgpu_bo_alloc_and_map_uq(amdgpu_device_handle device_handle, unsigned int size, + unsigned int alignment, unsigned int heap, uint64_t alloc_flags, + uint64_t mapping_flags, amdgpu_bo_handle *bo, void **cpu, + uint64_t *mc_address, amdgpu_va_handle *va_handle, + uint32_t timeline_syncobj_handle, uint64_t point) +{ + struct amdgpu_bo_alloc_request request = {}; + amdgpu_bo_handle buf_handle; + uint64_t vmc_addr; + int r; + + request.alloc_size = size; + request.phys_alignment = alignment; + request.preferred_heap = heap; + request.flags = alloc_flags; + + r = amdgpu_bo_alloc(device_handle, &request, &buf_handle); + if (r) + return r; + + r = amdgpu_va_range_alloc(device_handle, + amdgpu_gpu_va_range_general, + size, alignment, 0, &vmc_addr, + va_handle, 0); + if (r) + goto error_va_alloc; + + r = amdgpu_bo_va_op_raw2(device_handle, buf_handle, 0, + ALIGN(size, getpagesize()), vmc_addr, + AMDGPU_VM_PAGE_READABLE | + AMDGPU_VM_PAGE_WRITEABLE | + AMDGPU_VM_PAGE_EXECUTABLE | + mapping_flags, + AMDGPU_VA_OP_MAP, + timeline_syncobj_handle, + point, 0, 0); + if (r) + goto error_va_map; + + if (cpu) { + r = amdgpu_bo_cpu_map(buf_handle, cpu); + if (r) + goto error_cpu_map; + } + + *bo = buf_handle; + *mc_address = vmc_addr; + + return 0; + +error_cpu_map: + amdgpu_bo_va_op(buf_handle, 0, size, vmc_addr, 0, AMDGPU_VA_OP_UNMAP); +error_va_map: + amdgpu_va_range_free(*va_handle); +error_va_alloc: + amdgpu_bo_free(buf_handle); + return r; +} + +void amdgpu_bo_unmap_and_free_uq(amdgpu_device_handle device_handle, amdgpu_bo_handle bo, + amdgpu_va_handle va_handle, uint64_t mc_addr, uint64_t size, + uint32_t timeline_syncobj_handle, uint64_t point, + uint64_t syncobj_handles_array, uint32_t num_syncobj_handles) +{ + amdgpu_bo_cpu_unmap(bo); + amdgpu_bo_va_op_raw2(device_handle, bo, 0, size, mc_addr, 0, AMDGPU_VA_OP_UNMAP, + timeline_syncobj_handle, point, + syncobj_handles_array, num_syncobj_handles); + amdgpu_va_range_free(va_handle); + amdgpu_bo_free(bo); +} + +int amdgpu_timeline_syncobj_wait(amdgpu_device_handle device_handle, + uint32_t timeline_syncobj_handle, uint64_t point) +{ + uint32_t flags = DRM_SYNCOBJ_QUERY_FLAGS_LAST_SUBMITTED; + int r; + + r = amdgpu_cs_syncobj_query2(device_handle, &timeline_syncobj_handle, + &point, 1, flags); + if (r) + return r; + + r = amdgpu_cs_syncobj_timeline_wait(device_handle, &timeline_syncobj_handle, + &point, 1, INT64_MAX, + DRM_SYNCOBJ_WAIT_FLAGS_WAIT_ALL | + DRM_SYNCOBJ_WAIT_FLAGS_WAIT_FOR_SUBMIT, + NULL); + if (r) + igt_warn("Timeline timed out\n"); + return r; +} + +void amdgpu_user_queue_submit(amdgpu_device_handle device, struct amdgpu_ring_context *ring_context, + unsigned int ip_type, uint64_t mc_address) +{ + int r; + uint32_t *npkt = &ring_context->npkt; + uint32_t *queue_cpu = ring_context->queue_cpu; + uint32_t control = ring_context->pm4_dw; + uint32_t syncarray[1]; + + struct drm_amdgpu_userq_signal signal_data; + + /* Prepare the Indirect IB to submit the IB to user queue */ + queue_cpu[(*npkt)++] = PACKET3(PACKET3_INDIRECT_BUFFER, 2); + queue_cpu[(*npkt)++] = lower_32_bits(mc_address); + queue_cpu[(*npkt)++] = upper_32_bits(mc_address); + + if (ip_type == AMD_IP_GFX) + queue_cpu[(*npkt)++] = control | S_3F3_INHERIT_VMID_MQD_GFX(1); + else + queue_cpu[(*npkt)++] = control | S_3F3_VALID_COMPUTE(1) + | S_3F3_INHERIT_VMID_MQD_COMPUTE(1); + + queue_cpu[(*npkt)++] = PACKET3(PACKET3_PROTECTED_FENCE_SIGNAL, 0); + /* empty dword is needed for fence signal pm4 */ + ++*npkt; + + *ring_context->wptr_cpu = *npkt; + ring_context->doorbell_cpu[DOORBELL_INDEX] = *npkt; + + /* Add a fence packet for signal */ + syncarray[0] = ring_context->timeline_syncobj_handle; + signal_data.queue_id = ring_context->queue_id; + signal_data.syncobj_handles = (uintptr_t)syncarray; + signal_data.num_syncobj_handles = 1; + signal_data.bo_read_handles = 0; + signal_data.bo_write_handles = 0; + signal_data.num_bo_read_handles = 0; + signal_data.num_bo_write_handles = 0; + + r = amdgpu_userq_signal(device, &signal_data); + igt_assert_eq(r, 0); + + r = amdgpu_cs_syncobj_wait(device, &ring_context->timeline_syncobj_handle, 1, INT64_MAX, + DRM_SYNCOBJ_WAIT_FLAGS_WAIT_ALL, NULL); + igt_assert_eq(r, 0); +} + +void amdgpu_user_queue_destroy(amdgpu_device_handle device_handle, struct amdgpu_ring_context *ctxt, + unsigned int type) +{ + int r; + + if (type > AMD_IP_DMA) { + igt_info("Invalid IP not supported for UMQ Submission\n"); + return; + } + + /* Free the Usermode Queue */ + r = amdgpu_free_userqueue(device_handle, ctxt->queue_id); + igt_assert_eq(r, 0); + + switch (type) { + case AMD_IP_GFX: + amdgpu_bo_unmap_and_free_uq(device_handle, ctxt->csa.handle, + ctxt->csa.va_handle, + ctxt->csa.mc_addr, ctxt->dev_info.csa_size, + ctxt->timeline_syncobj_handle, ++ctxt->point, + 0, 0); + + amdgpu_bo_unmap_and_free_uq(device_handle, ctxt->shadow.handle, + ctxt->shadow.va_handle, + ctxt->shadow.mc_addr, ctxt->dev_info.shadow_size, + ctxt->timeline_syncobj_handle, ++ctxt->point, + 0, 0); + + r = amdgpu_timeline_syncobj_wait(device_handle, ctxt->timeline_syncobj_handle, + ctxt->point); + igt_assert_eq(r, 0); + break; + + case AMD_IP_COMPUTE: + amdgpu_bo_unmap_and_free_uq(device_handle, ctxt->eop.handle, + ctxt->eop.va_handle, + ctxt->eop.mc_addr, 256, + ctxt->timeline_syncobj_handle, ++ctxt->point, + 0, 0); + + r = amdgpu_timeline_syncobj_wait(device_handle, ctxt->timeline_syncobj_handle, + ctxt->point); + igt_assert_eq(r, 0); + break; + + case AMD_IP_DMA: + amdgpu_bo_unmap_and_free_uq(device_handle, ctxt->csa.handle, + ctxt->csa.va_handle, + ctxt->csa.mc_addr, ctxt->dev_info.csa_size, + ctxt->timeline_syncobj_handle, ++ctxt->point, + 0, 0); + + r = amdgpu_timeline_syncobj_wait(device_handle, ctxt->timeline_syncobj_handle, + ctxt->point); + igt_assert_eq(r, 0); + break; + + default: + igt_info("IP invalid for cleanup\n"); + } + + r = amdgpu_cs_destroy_syncobj(device_handle, ctxt->timeline_syncobj_handle); + igt_assert_eq(r, 0); + + /* Clean up doorbell*/ + r = amdgpu_bo_cpu_unmap(ctxt->doorbell.handle); + igt_assert_eq(r, 0); + + r = amdgpu_bo_free(ctxt->doorbell.handle); + igt_assert_eq(r, 0); + + /* Clean up rptr wptr queue */ + amdgpu_bo_unmap_and_free(ctxt->rptr.handle, ctxt->rptr.va_handle, + ctxt->rptr.mc_addr, 8); + + amdgpu_bo_unmap_and_free(ctxt->wptr.handle, ctxt->wptr.va_handle, + ctxt->wptr.mc_addr, 8); + + amdgpu_bo_unmap_and_free(ctxt->queue.handle, ctxt->queue.va_handle, + ctxt->queue.mc_addr, USERMODE_QUEUE_SIZE); +} + +void amdgpu_user_queue_create(amdgpu_device_handle device_handle, struct amdgpu_ring_context *ctxt, + unsigned int type) +{ + int r; + uint64_t gtt_flags = 0; + struct drm_amdgpu_userq_mqd_gfx11 gfx_mqd; + struct drm_amdgpu_userq_mqd_sdma_gfx11 sdma_mqd; + struct drm_amdgpu_userq_mqd_compute_gfx11 compute_mqd; + void *mqd; + + if (type > AMD_IP_DMA) { + igt_info("Invalid IP not supported for UMQ Submission\n"); + return; + } + + r = amdgpu_query_info(device_handle, AMDGPU_INFO_DEV_INFO, + sizeof(ctxt->dev_info), &ctxt->dev_info); + igt_assert_eq(r, 0); + + r = amdgpu_cs_create_syncobj2(device_handle, 0, &ctxt->timeline_syncobj_handle); + igt_assert_eq(r, 0); + + r = amdgpu_bo_alloc_and_map_uq(device_handle, USERMODE_QUEUE_SIZE, + ALIGNMENT, + AMDGPU_GEM_DOMAIN_GTT, + gtt_flags, + AMDGPU_VM_MTYPE_UC, + &ctxt->queue.handle, &ctxt->queue.ptr, + &ctxt->queue.mc_addr, &ctxt->queue.va_handle, + ctxt->timeline_syncobj_handle, ++ctxt->point); + igt_assert_eq(r, 0); + + r = amdgpu_bo_alloc_and_map_uq(device_handle, 8, + ALIGNMENT, + AMDGPU_GEM_DOMAIN_GTT, + gtt_flags, + AMDGPU_VM_MTYPE_UC, + &ctxt->wptr.handle, &ctxt->wptr.ptr, + &ctxt->wptr.mc_addr, &ctxt->wptr.va_handle, + ctxt->timeline_syncobj_handle, ++ctxt->point); + igt_assert_eq(r, 0); + + r = amdgpu_bo_alloc_and_map_uq(device_handle, 8, + ALIGNMENT, + AMDGPU_GEM_DOMAIN_GTT, + gtt_flags, + AMDGPU_VM_MTYPE_UC, + &ctxt->rptr.handle, &ctxt->rptr.ptr, + &ctxt->rptr.mc_addr, &ctxt->rptr.va_handle, + ctxt->timeline_syncobj_handle, ++ctxt->point); + igt_assert_eq(r, 0); + + switch (type) { + case AMD_IP_GFX: + r = amdgpu_bo_alloc_and_map_uq(device_handle, ctxt->dev_info.shadow_size, + ctxt->dev_info.shadow_alignment, + AMDGPU_GEM_DOMAIN_GTT, + gtt_flags, + AMDGPU_VM_MTYPE_UC, + &ctxt->shadow.handle, NULL, + &ctxt->shadow.mc_addr, &ctxt->shadow.va_handle, + ctxt->timeline_syncobj_handle, ++ctxt->point); + igt_assert_eq(r, 0); + + r = amdgpu_bo_alloc_and_map_uq(device_handle, ctxt->dev_info.csa_size, + ctxt->dev_info.csa_alignment, + AMDGPU_GEM_DOMAIN_GTT, + gtt_flags, + AMDGPU_VM_MTYPE_UC, + &ctxt->csa.handle, NULL, + &ctxt->csa.mc_addr, &ctxt->csa.va_handle, + ctxt->timeline_syncobj_handle, ++ctxt->point); + igt_assert_eq(r, 0); + + gfx_mqd.shadow_va = ctxt->shadow.mc_addr; + gfx_mqd.csa_va = ctxt->csa.mc_addr; + mqd = &gfx_mqd; + break; + + case AMD_IP_COMPUTE: + r = amdgpu_bo_alloc_and_map_uq(device_handle, 256, + ALIGNMENT, + AMDGPU_GEM_DOMAIN_GTT, + gtt_flags, + AMDGPU_VM_MTYPE_UC, + &ctxt->eop.handle, NULL, + &ctxt->eop.mc_addr, &ctxt->eop.va_handle, + ctxt->timeline_syncobj_handle, ++ctxt->point); + igt_assert_eq(r, 0); + compute_mqd.eop_va = ctxt->eop.mc_addr; + mqd = &compute_mqd; + break; + + case AMD_IP_DMA: + r = amdgpu_bo_alloc_and_map_uq(device_handle, ctxt->dev_info.csa_size, + ctxt->dev_info.csa_alignment, + AMDGPU_GEM_DOMAIN_GTT, + gtt_flags, + AMDGPU_VM_MTYPE_UC, + &ctxt->csa.handle, NULL, + &ctxt->csa.mc_addr, &ctxt->csa.va_handle, + ctxt->timeline_syncobj_handle, ++ctxt->point); + igt_assert_eq(r, 0); + sdma_mqd.csa_va = ctxt->csa.mc_addr; + mqd = &sdma_mqd; + break; + + default: + igt_info("Unsupported IP for UMQ submission\n"); + return; + + } + + r = amdgpu_timeline_syncobj_wait(device_handle, ctxt->timeline_syncobj_handle, + ctxt->point); + igt_assert_eq(r, 0); + + amdgpu_alloc_doorbell(device_handle, &ctxt->doorbell, PAGE_SIZE, + AMDGPU_GEM_DOMAIN_DOORBELL); + + ctxt->doorbell_cpu = (uint64_t *)ctxt->doorbell.ptr; + + ctxt->wptr_cpu = (uint64_t *)ctxt->wptr.ptr; + + ctxt->queue_cpu = (uint32_t *)ctxt->queue.ptr; + memset(ctxt->queue_cpu, 0, USERMODE_QUEUE_SIZE); + + /* get db bo handle */ + amdgpu_bo_export(ctxt->doorbell.handle, amdgpu_bo_handle_type_kms, &ctxt->db_handle); + + /* Create the Usermode Queue */ + switch (type) { + case AMD_IP_GFX: + r = amdgpu_create_userqueue(device_handle, AMDGPU_HW_IP_GFX, + ctxt->db_handle, DOORBELL_INDEX, + ctxt->queue.mc_addr, USERMODE_QUEUE_SIZE, + ctxt->wptr.mc_addr, ctxt->rptr.mc_addr, + mqd, &ctxt->queue_id); + igt_assert_eq(r, 0); + break; + + case AMD_IP_COMPUTE: + r = amdgpu_create_userqueue(device_handle, AMDGPU_HW_IP_COMPUTE, + ctxt->db_handle, DOORBELL_INDEX, + ctxt->queue.mc_addr, USERMODE_QUEUE_SIZE, + ctxt->wptr.mc_addr, ctxt->rptr.mc_addr, + mqd, &ctxt->queue_id); + igt_assert_eq(r, 0); + break; + + case AMD_IP_DMA: + r = amdgpu_create_userqueue(device_handle, AMDGPU_HW_IP_DMA, + ctxt->db_handle, DOORBELL_INDEX, + ctxt->queue.mc_addr, USERMODE_QUEUE_SIZE, + ctxt->wptr.mc_addr, ctxt->rptr.mc_addr, + mqd, &ctxt->queue_id); + igt_assert_eq(r, 0); + break; + + default: + igt_info("Unsupported IP, failed to create user queue\n"); + return; + + } +} diff --git a/lib/amdgpu/amd_user_queue.h b/lib/amdgpu/amd_user_queue.h new file mode 100644 index 000000000..355f16f19 --- /dev/null +++ b/lib/amdgpu/amd_user_queue.h @@ -0,0 +1,48 @@ +/* SPDX-License-Identifier: MIT + * Copyright 2025 Advanced Micro Devices, Inc. + */ + +#ifndef _AMD_USER_QUEUE_ +#define _AMD_USER_QUEUE_ + +#include +#include +#include +#include "amd_ip_blocks.h" + + +#ifndef PAGE_SIZE +#define PAGE_SIZE 4096 +#endif + +#define USERMODE_QUEUE_SIZE (PAGE_SIZE * 256) //In bytes +#define ALIGNMENT 4096 +#define DOORBELL_INDEX 4 + +void amdgpu_alloc_doorbell(amdgpu_device_handle device_handle, struct amdgpu_userq_bo *doorbell_bo, + unsigned int size, unsigned int domain); + +int amdgpu_bo_alloc_and_map_uq(amdgpu_device_handle device_handle, unsigned int size, + unsigned int alignment, unsigned int heap, uint64_t alloc_flags, + uint64_t mapping_flags, amdgpu_bo_handle *bo, void **cpu, + uint64_t *mc_address, amdgpu_va_handle *va_handle, + uint32_t timeline_syncobj_handle, uint64_t point); + +void amdgpu_bo_unmap_and_free_uq(amdgpu_device_handle device_handle, amdgpu_bo_handle bo, + amdgpu_va_handle va_handle, uint64_t mc_addr, uint64_t size, + uint32_t timeline_syncobj_handle, uint64_t point, + uint64_t syncobj_handles_array, uint32_t num_syncobj_handles); + +int amdgpu_timeline_syncobj_wait(amdgpu_device_handle device_handle, + uint32_t timeline_syncobj_handle, uint64_t point); + +void amdgpu_user_queue_create(amdgpu_device_handle device_handle, struct amdgpu_ring_context *ctxt, + unsigned int ip_type); + +void amdgpu_user_queue_destroy(amdgpu_device_handle device_handle, struct amdgpu_ring_context *ctxt, + unsigned int ip_type); + +void amdgpu_user_queue_submit(amdgpu_device_handle device, struct amdgpu_ring_context *ring_context, + unsigned int ip_type, uint64_t mc_address); + +#endif diff --git a/lib/meson.build b/lib/meson.build index 1704ed1e1..80482967b 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -164,7 +164,8 @@ if libdrm_amdgpu.found() 'amdgpu/amd_shared_process.c', 'amdgpu/xalloc.h', 'amdgpu/amd_cp_dma.c', - 'amdgpu/amd_mmd_shared.c' + 'amdgpu/amd_mmd_shared.c', + 'amdgpu/amd_user_queue.c' ] if libdrm_amdgpu.version().version_compare('> 2.4.99') lib_sources +=[ 'amdgpu/amd_dispatch.c',] -- 2.34.1 From sunil.khatri at amd.com Thu Jan 16 06:52:09 2025 From: sunil.khatri at amd.com (Sunil Khatri) Date: Thu, 16 Jan 2025 12:22:09 +0530 Subject: [PATCH 6/8] tests/amdgpu: Add user queue support for gfx and compute In-Reply-To: <20250116065211.1882469-1-sunil.khatri@amd.com> References: <20250116065211.1882469-1-sunil.khatri@amd.com> Message-ID: <20250116065211.1882469-7-sunil.khatri@amd.com> Add support of user queue command submission for a. amdgpu_command_submission_gfx b. amdgpu_command_submission_compute Also add support of user queues in all the helper functions used by the above functions. Also since helper functions are same for sdma too so update the function call to accommodate the changes. Signed-off-by: Sunil Khatri Reviewed-by: Vitaly Prosyak vitaly.prosyak at amd.com> --- lib/amdgpu/amd_command_submission.c | 313 +++++++++++++++++++--------- lib/amdgpu/amd_command_submission.h | 8 +- lib/amdgpu/amd_compute.c | 100 ++++++--- lib/amdgpu/amd_compute.h | 2 +- tests/amdgpu/amd_basic.c | 58 ++++-- tests/amdgpu/amd_security.c | 4 +- 6 files changed, 326 insertions(+), 159 deletions(-) diff --git a/lib/amdgpu/amd_command_submission.c b/lib/amdgpu/amd_command_submission.c index cd7240058..7550fa8bc 100644 --- a/lib/amdgpu/amd_command_submission.c +++ b/lib/amdgpu/amd_command_submission.c @@ -5,10 +5,14 @@ * Copyright 2023 Advanced Micro Devices, Inc. */ +#include #include "lib/amdgpu/amd_memory.h" #include "lib/amdgpu/amd_sdma.h" #include "lib/amdgpu/amd_PM4.h" #include "lib/amdgpu/amd_command_submission.h" +#include "lib/amdgpu/amd_user_queue.h" +#include "ioctl_wrappers.h" + /* * @@ -28,82 +32,100 @@ int amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_type uint64_t ib_result_mc_address; struct amdgpu_cs_fence fence_status = {0}; amdgpu_va_handle va_handle; + bool user_queue = ring_context->user_queue; amdgpu_bo_handle *all_res = alloca(sizeof(ring_context->resources[0]) * (ring_context->res_cnt + 1)); if (expect_failure) { /* allocate IB */ - r = amdgpu_bo_alloc_and_map(device, ring_context->write_length, 4096, - AMDGPU_GEM_DOMAIN_GTT, 0, - &ib_result_handle, &ib_result_cpu, - &ib_result_mc_address, &va_handle); + r = amdgpu_bo_alloc_and_map_sync(device, ring_context->write_length, 4096, + AMDGPU_GEM_DOMAIN_GTT, 0, AMDGPU_VM_MTYPE_UC, + &ib_result_handle, &ib_result_cpu, + &ib_result_mc_address, &va_handle, + ring_context->timeline_syncobj_handle, + ++ring_context->point, user_queue); } else { /* prepare CS */ igt_assert(ring_context->pm4_dw <= 1024); /* allocate IB */ - r = amdgpu_bo_alloc_and_map(device, 4096, 4096, - AMDGPU_GEM_DOMAIN_GTT, 0, - &ib_result_handle, &ib_result_cpu, - &ib_result_mc_address, &va_handle); - - + r = amdgpu_bo_alloc_and_map_sync(device, 4096, 4096, + AMDGPU_GEM_DOMAIN_GTT, 0, AMDGPU_VM_MTYPE_UC, + &ib_result_handle, &ib_result_cpu, + &ib_result_mc_address, &va_handle, + ring_context->timeline_syncobj_handle, + ++ring_context->point, user_queue); } igt_assert_eq(r, 0); + if (user_queue) { + r = amdgpu_timeline_syncobj_wait(device, ring_context->timeline_syncobj_handle, + ring_context->point); + igt_assert_eq(r, 0); + } + /* copy PM4 packet to ring from caller */ ring_ptr = ib_result_cpu; memcpy(ring_ptr, ring_context->pm4, ring_context->pm4_dw * sizeof(*ring_context->pm4)); - ring_context->ib_info.ib_mc_address = ib_result_mc_address; - ring_context->ib_info.size = ring_context->pm4_dw; - if (ring_context->secure) - ring_context->ib_info.flags |= AMDGPU_IB_FLAGS_SECURE; - - ring_context->ibs_request.ip_type = ip_type; - ring_context->ibs_request.ring = ring_context->ring_id; - ring_context->ibs_request.number_of_ibs = 1; - ring_context->ibs_request.ibs = &ring_context->ib_info; - ring_context->ibs_request.fence_info.handle = NULL; - - memcpy(all_res, ring_context->resources, sizeof(ring_context->resources[0]) * ring_context->res_cnt); - all_res[ring_context->res_cnt] = ib_result_handle; - - r = amdgpu_bo_list_create(device, ring_context->res_cnt+1, all_res, - NULL, &ring_context->ibs_request.resources); - igt_assert_eq(r, 0); - - /* submit CS */ - r = amdgpu_cs_submit(ring_context->context_handle, 0, &ring_context->ibs_request, 1); - ring_context->err_codes.err_code_cs_submit = r; - if (expect_failure) - igt_info("amdgpu_cs_submit %d PID %d\n", r, getpid()); + if (user_queue) + amdgpu_user_queue_submit(device, ring_context, ip_type, ib_result_mc_address); else { - if (r != -ECANCELED && r != -ENODATA && r != -EHWPOISON) /* we allow ECANCELED, ENODATA or -EHWPOISON for good jobs temporally */ - igt_assert_eq(r, 0); - } - - - r = amdgpu_bo_list_destroy(ring_context->ibs_request.resources); - igt_assert_eq(r, 0); + ring_context->ib_info.ib_mc_address = ib_result_mc_address; + ring_context->ib_info.size = ring_context->pm4_dw; + if (ring_context->secure) + ring_context->ib_info.flags |= AMDGPU_IB_FLAGS_SECURE; + + ring_context->ibs_request.ip_type = ip_type; + ring_context->ibs_request.ring = ring_context->ring_id; + ring_context->ibs_request.number_of_ibs = 1; + ring_context->ibs_request.ibs = &ring_context->ib_info; + ring_context->ibs_request.fence_info.handle = NULL; + + memcpy(all_res, ring_context->resources, + sizeof(ring_context->resources[0]) * ring_context->res_cnt); + + all_res[ring_context->res_cnt] = ib_result_handle; + + r = amdgpu_bo_list_create(device, ring_context->res_cnt + 1, all_res, + NULL, &ring_context->ibs_request.resources); + igt_assert_eq(r, 0); + + /* submit CS */ + r = amdgpu_cs_submit(ring_context->context_handle, 0, + &ring_context->ibs_request, 1); + + ring_context->err_codes.err_code_cs_submit = r; + if (expect_failure) + igt_info("amdgpu_cs_submit %d PID %d\n", r, getpid()); + else { + /* we allow ECANCELED, ENODATA or -EHWPOISON for good jobs temporally */ + if (r != -ECANCELED && r != -ENODATA && r != -EHWPOISON) + igt_assert_eq(r, 0); + } - fence_status.ip_type = ip_type; - fence_status.ip_instance = 0; - fence_status.ring = ring_context->ibs_request.ring; - fence_status.context = ring_context->context_handle; - fence_status.fence = ring_context->ibs_request.seq_no; - - /* wait for IB accomplished */ - r = amdgpu_cs_query_fence_status(&fence_status, - AMDGPU_TIMEOUT_INFINITE, - 0, &expired); - ring_context->err_codes.err_code_wait_for_fence = r; - if (expect_failure) { - igt_info("EXPECT FAILURE amdgpu_cs_query_fence_status %d expired %d PID %d\n", r, expired, getpid()); - } else { - if (r != -ECANCELED && r != -ENODATA) /* we allow ECANCELED or ENODATA for good jobs temporally */ - igt_assert_eq(r, 0); + r = amdgpu_bo_list_destroy(ring_context->ibs_request.resources); + igt_assert_eq(r, 0); + + fence_status.ip_type = ip_type; + fence_status.ip_instance = 0; + fence_status.ring = ring_context->ibs_request.ring; + fence_status.context = ring_context->context_handle; + fence_status.fence = ring_context->ibs_request.seq_no; + + /* wait for IB accomplished */ + r = amdgpu_cs_query_fence_status(&fence_status, + AMDGPU_TIMEOUT_INFINITE, + 0, &expired); + ring_context->err_codes.err_code_wait_for_fence = r; + if (expect_failure) { + igt_info("EXPECT FAILURE amdgpu_cs_query_fence_status%d" + "expired %d PID %d\n", r, expired, getpid()); + } else { + /* we allow ECANCELED or ENODATA for good jobs temporally */ + if (r != -ECANCELED && r != -ENODATA) + igt_assert_eq(r, 0); + } } - amdgpu_bo_unmap_and_free(ib_result_handle, va_handle, ib_result_mc_address, 4096); return r; @@ -111,10 +133,9 @@ int amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_type void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device, const struct amdgpu_ip_block_version *ip_block, - bool secure) + bool secure, bool user_queue) { - const int sdma_write_length = 128; const int pm4_dw = 256; @@ -131,6 +152,7 @@ void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device, ring_context->secure = secure; ring_context->pm4_size = pm4_dw; ring_context->res_cnt = 1; + ring_context->user_queue = user_queue; igt_assert(ring_context->pm4); r = amdgpu_query_hw_ip_info(device, ip_block->type, 0, &ring_context->hw_ip_info); @@ -139,30 +161,51 @@ void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device, for (i = 0; secure && (i < 2); i++) gtt_flags[i] |= AMDGPU_GEM_CREATE_ENCRYPTED; - r = amdgpu_cs_ctx_create(device, &ring_context->context_handle); + if (user_queue) { + amdgpu_user_queue_create(device, ring_context, ip_block->type); + } else { + r = amdgpu_cs_ctx_create(device, &ring_context->context_handle); + igt_assert_eq(r, 0); + } + - igt_assert_eq(r, 0); +/* Dont need but check with vitaly if for KMS also we need ring id or not */ for (ring_id = 0; (1 << ring_id) & ring_context->hw_ip_info.available_rings; ring_id++) { loop = 0; ring_context->ring_id = ring_id; while (loop < 2) { /* allocate UC bo for sDMA use */ - r = amdgpu_bo_alloc_and_map(device, - ring_context->write_length * sizeof(uint32_t), - 4096, AMDGPU_GEM_DOMAIN_GTT, - gtt_flags[loop], &ring_context->bo, - (void **)&ring_context->bo_cpu, - &ring_context->bo_mc, - &ring_context->va_handle); + r = amdgpu_bo_alloc_and_map_sync(device, + ring_context->write_length * + sizeof(uint32_t), + 4096, AMDGPU_GEM_DOMAIN_GTT, + gtt_flags[loop], + AMDGPU_VM_MTYPE_UC, + &ring_context->bo, + (void **)&ring_context->bo_cpu, + &ring_context->bo_mc, + &ring_context->va_handle, + ring_context->timeline_syncobj_handle, + ++ring_context->point, user_queue); + igt_assert_eq(r, 0); + if (user_queue) { + r = amdgpu_timeline_syncobj_wait(device, + ring_context->timeline_syncobj_handle, + ring_context->point); + igt_assert_eq(r, 0); + } + /* clear bo */ - memset((void *)ring_context->bo_cpu, 0, ring_context->write_length * sizeof(uint32_t)); + memset((void *)ring_context->bo_cpu, 0, + ring_context->write_length * sizeof(uint32_t)); ring_context->resources[0] = ring_context->bo; - ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw); + ip_block->funcs->write_linear(ip_block->funcs, ring_context, + &ring_context->pm4_dw); ring_context->ring_id = ring_id; @@ -200,9 +243,14 @@ void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device, } /* clean resources */ free(ring_context->pm4); - /* end of test */ - r = amdgpu_cs_ctx_free(ring_context->context_handle); - igt_assert_eq(r, 0); + + if (user_queue) { + amdgpu_user_queue_destroy(device, ring_context, ip_block->type); + } else { + r = amdgpu_cs_ctx_free(ring_context->context_handle); + igt_assert_eq(r, 0); + } + free(ring_context); } @@ -211,9 +259,11 @@ void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device, * * @param device * @param ip_type + * @param user_queue */ void amdgpu_command_submission_const_fill_helper(amdgpu_device_handle device, - const struct amdgpu_ip_block_version *ip_block) + const struct amdgpu_ip_block_version *ip_block, + bool user_queue) { const int sdma_write_length = 1024 * 1024; const int pm4_dw = 256; @@ -229,25 +279,43 @@ void amdgpu_command_submission_const_fill_helper(amdgpu_device_handle device, ring_context->secure = false; ring_context->pm4_size = pm4_dw; ring_context->res_cnt = 1; + ring_context->user_queue = user_queue; igt_assert(ring_context->pm4); r = amdgpu_query_hw_ip_info(device, ip_block->type, 0, &ring_context->hw_ip_info); igt_assert_eq(r, 0); - r = amdgpu_cs_ctx_create(device, &ring_context->context_handle); - igt_assert_eq(r, 0); + if (user_queue) { + amdgpu_user_queue_create(device, ring_context, ip_block->type); + } else { + r = amdgpu_cs_ctx_create(device, &ring_context->context_handle); + igt_assert_eq(r, 0); + } + for (ring_id = 0; (1 << ring_id) & ring_context->hw_ip_info.available_rings; ring_id++) { /* prepare resource */ loop = 0; ring_context->ring_id = ring_id; while (loop < 2) { /* allocate UC bo for sDMA use */ - r = amdgpu_bo_alloc_and_map(device, - ring_context->write_length, 4096, - AMDGPU_GEM_DOMAIN_GTT, - gtt_flags[loop], &ring_context->bo, (void **)&ring_context->bo_cpu, - &ring_context->bo_mc, &ring_context->va_handle); + r = amdgpu_bo_alloc_and_map_sync(device, ring_context->write_length, + 4096, AMDGPU_GEM_DOMAIN_GTT, + gtt_flags[loop], + AMDGPU_VM_MTYPE_UC, + &ring_context->bo, + (void **)&ring_context->bo_cpu, + &ring_context->bo_mc, + &ring_context->va_handle, + ring_context->timeline_syncobj_handle, + ++ring_context->point, user_queue); igt_assert_eq(r, 0); + if (user_queue) { + r = amdgpu_timeline_syncobj_wait(device, + ring_context->timeline_syncobj_handle, + ring_context->point); + igt_assert_eq(r, 0); + } + /* clear bo */ memset((void *)ring_context->bo_cpu, 0, ring_context->write_length); @@ -270,9 +338,13 @@ void amdgpu_command_submission_const_fill_helper(amdgpu_device_handle device, /* clean resources */ free(ring_context->pm4); - /* end of test */ - r = amdgpu_cs_ctx_free(ring_context->context_handle); - igt_assert_eq(r, 0); + if (user_queue) { + amdgpu_user_queue_destroy(device, ring_context, ip_block->type); + } else { + r = amdgpu_cs_ctx_free(ring_context->context_handle); + igt_assert_eq(r, 0); + } + free(ring_context); } @@ -280,9 +352,11 @@ void amdgpu_command_submission_const_fill_helper(amdgpu_device_handle device, * * @param device * @param ip_type + * @param user_queue */ void amdgpu_command_submission_copy_linear_helper(amdgpu_device_handle device, - const struct amdgpu_ip_block_version *ip_block) + const struct amdgpu_ip_block_version *ip_block, + bool user_queue) { const int sdma_write_length = 1024; const int pm4_dw = 256; @@ -299,13 +373,18 @@ void amdgpu_command_submission_copy_linear_helper(amdgpu_device_handle device, ring_context->secure = false; ring_context->pm4_size = pm4_dw; ring_context->res_cnt = 2; + ring_context->user_queue = user_queue; igt_assert(ring_context->pm4); r = amdgpu_query_hw_ip_info(device, ip_block->type, 0, &ring_context->hw_ip_info); igt_assert_eq(r, 0); - r = amdgpu_cs_ctx_create(device, &ring_context->context_handle); - igt_assert_eq(r, 0); + if (user_queue) { + amdgpu_user_queue_create(device, ring_context, ip_block->type); + } else { + r = amdgpu_cs_ctx_create(device, &ring_context->context_handle); + igt_assert_eq(r, 0); + } for (ring_id = 0; (1 << ring_id) & ring_context->hw_ip_info.available_rings; ring_id++) { loop1 = loop2 = 0; @@ -313,27 +392,50 @@ void amdgpu_command_submission_copy_linear_helper(amdgpu_device_handle device, /* run 9 circle to test all mapping combination */ while (loop1 < 2) { while (loop2 < 2) { - /* allocate UC bo1for sDMA use */ - r = amdgpu_bo_alloc_and_map(device, - ring_context->write_length, 4096, - AMDGPU_GEM_DOMAIN_GTT, - gtt_flags[loop1], &ring_context->bo, - (void **)&ring_context->bo_cpu, &ring_context->bo_mc, - &ring_context->va_handle); + /* allocate UC bo1for sDMA use */ + r = amdgpu_bo_alloc_and_map_sync(device, ring_context->write_length, + 4096, AMDGPU_GEM_DOMAIN_GTT, + gtt_flags[loop1], + AMDGPU_VM_MTYPE_UC, + &ring_context->bo, + (void **)&ring_context->bo_cpu, + &ring_context->bo_mc, + &ring_context->va_handle, + ring_context->timeline_syncobj_handle, + ++ring_context->point, user_queue); igt_assert_eq(r, 0); + if (user_queue) { + r = amdgpu_timeline_syncobj_wait(device, + ring_context->timeline_syncobj_handle, + ring_context->point); + igt_assert_eq(r, 0); + } + /* set bo_cpu */ memset((void *)ring_context->bo_cpu, ip_block->funcs->pattern, ring_context->write_length); /* allocate UC bo2 for sDMA use */ - r = amdgpu_bo_alloc_and_map(device, - ring_context->write_length, 4096, - AMDGPU_GEM_DOMAIN_GTT, - gtt_flags[loop2], &ring_context->bo2, - (void **)&ring_context->bo2_cpu, &ring_context->bo_mc2, - &ring_context->va_handle2); + r = amdgpu_bo_alloc_and_map_sync(device, + ring_context->write_length, + 4096, AMDGPU_GEM_DOMAIN_GTT, + gtt_flags[loop2], + AMDGPU_VM_MTYPE_UC, + &ring_context->bo2, + (void **)&ring_context->bo2_cpu, + &ring_context->bo_mc2, + &ring_context->va_handle2, + ring_context->timeline_syncobj_handle, + ++ring_context->point, user_queue); igt_assert_eq(r, 0); + if (user_queue) { + r = amdgpu_timeline_syncobj_wait(device, + ring_context->timeline_syncobj_handle, + ring_context->point); + igt_assert_eq(r, 0); + } + /* clear bo2_cpu */ memset((void *)ring_context->bo2_cpu, 0, ring_context->write_length); @@ -357,11 +459,16 @@ void amdgpu_command_submission_copy_linear_helper(amdgpu_device_handle device, loop1++; } } + /* clean resources */ free(ring_context->pm4); - /* end of test */ - r = amdgpu_cs_ctx_free(ring_context->context_handle); - igt_assert_eq(r, 0); + if (user_queue) { + amdgpu_user_queue_destroy(device, ring_context, ip_block->type); + } else { + r = amdgpu_cs_ctx_free(ring_context->context_handle); + igt_assert_eq(r, 0); + } + free(ring_context); } diff --git a/lib/amdgpu/amd_command_submission.h b/lib/amdgpu/amd_command_submission.h index e3139a402..d0139b364 100644 --- a/lib/amdgpu/amd_command_submission.h +++ b/lib/amdgpu/amd_command_submission.h @@ -34,11 +34,13 @@ int amdgpu_test_exec_cs_helper(amdgpu_device_handle device, void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device, const struct amdgpu_ip_block_version *ip_block, - bool secure); + bool secure, bool user_queue); void amdgpu_command_submission_const_fill_helper(amdgpu_device_handle device, - const struct amdgpu_ip_block_version *ip_block); + const struct amdgpu_ip_block_version *ip_block, + bool user_queue); void amdgpu_command_submission_copy_linear_helper(amdgpu_device_handle device, - const struct amdgpu_ip_block_version *ip_block); + const struct amdgpu_ip_block_version *ip_block, + bool user_queue); #endif diff --git a/lib/amdgpu/amd_compute.c b/lib/amdgpu/amd_compute.c index 6e61f1820..5d7040d80 100644 --- a/lib/amdgpu/amd_compute.c +++ b/lib/amdgpu/amd_compute.c @@ -25,12 +25,14 @@ #include "amd_PM4.h" #include "amd_memory.h" #include "amd_compute.h" +#include "amd_user_queue.h" /** * * @param device + * @param user_queue */ -void amdgpu_command_submission_compute_nop(amdgpu_device_handle device) +void amdgpu_command_submission_compute_nop(amdgpu_device_handle device, bool user_queue) { amdgpu_context_handle context_handle; amdgpu_bo_handle ib_result_handle; @@ -46,19 +48,38 @@ void amdgpu_command_submission_compute_nop(amdgpu_device_handle device) amdgpu_bo_list_handle bo_list; amdgpu_va_handle va_handle; + struct amdgpu_ring_context *ring_context; + + ring_context = calloc(1, sizeof(*ring_context)); + igt_assert(ring_context); + r = amdgpu_query_hw_ip_info(device, AMDGPU_HW_IP_COMPUTE, 0, &info); igt_assert_eq(r, 0); - r = amdgpu_cs_ctx_create(device, &context_handle); - igt_assert_eq(r, 0); + if (user_queue) { + amdgpu_user_queue_create(device, ring_context, AMD_IP_COMPUTE); + } else { + r = amdgpu_cs_ctx_create(device, &context_handle); + igt_assert_eq(r, 0); + } for (instance = 0; info.available_rings & (1 << instance); instance++) { - r = amdgpu_bo_alloc_and_map(device, 4096, 4096, - AMDGPU_GEM_DOMAIN_GTT, 0, - &ib_result_handle, &ib_result_cpu, - &ib_result_mc_address, &va_handle); + r = amdgpu_bo_alloc_and_map_sync(device, 4096, 4096, + AMDGPU_GEM_DOMAIN_GTT, 0, + AMDGPU_VM_MTYPE_UC, + &ib_result_handle, (void **)&ib_result_cpu, + &ib_result_mc_address, &va_handle, + ring_context->timeline_syncobj_handle, + ++ring_context->point, user_queue); igt_assert_eq(r, 0); + if (user_queue) { + r = amdgpu_timeline_syncobj_wait(device, + ring_context->timeline_syncobj_handle, + ring_context->point); + igt_assert_eq(r, 0); + } + r = amdgpu_get_bo_list(device, ib_result_handle, NULL, &bo_list); igt_assert_eq(r, 0); @@ -66,42 +87,53 @@ void amdgpu_command_submission_compute_nop(amdgpu_device_handle device) ptr = ib_result_cpu; memset(ptr, 0, 16); ptr[0] = PACKET3(PACKET3_NOP, 14); + ring_context->pm4_dw = 16; - memset(&ib_info, 0, sizeof(struct amdgpu_cs_ib_info)); - ib_info.ib_mc_address = ib_result_mc_address; - ib_info.size = 16; - - memset(&ibs_request, 0, sizeof(struct amdgpu_cs_request)); - ibs_request.ip_type = AMDGPU_HW_IP_COMPUTE; - ibs_request.ring = instance; - ibs_request.number_of_ibs = 1; - ibs_request.ibs = &ib_info; - ibs_request.resources = bo_list; - ibs_request.fence_info.handle = NULL; + if (user_queue) { + amdgpu_user_queue_submit(device, ring_context, AMD_IP_COMPUTE, + ib_result_mc_address); + } else { + memset(&ib_info, 0, sizeof(struct amdgpu_cs_ib_info)); + ib_info.ib_mc_address = ib_result_mc_address; + ib_info.size = 16; - memset(&fence_status, 0, sizeof(struct amdgpu_cs_fence)); - r = amdgpu_cs_submit(context_handle, 0,&ibs_request, 1); - igt_assert_eq(r, 0); + memset(&ibs_request, 0, sizeof(struct amdgpu_cs_request)); + ibs_request.ip_type = AMDGPU_HW_IP_COMPUTE; + ibs_request.ring = instance; + ibs_request.number_of_ibs = 1; + ibs_request.ibs = &ib_info; + ibs_request.resources = bo_list; + ibs_request.fence_info.handle = NULL; - fence_status.context = context_handle; - fence_status.ip_type = AMDGPU_HW_IP_COMPUTE; - fence_status.ip_instance = 0; - fence_status.ring = instance; - fence_status.fence = ibs_request.seq_no; + memset(&fence_status, 0, sizeof(struct amdgpu_cs_fence)); + r = amdgpu_cs_submit(context_handle, 0, &ibs_request, 1); + igt_assert_eq(r, 0); - r = amdgpu_cs_query_fence_status(&fence_status, - AMDGPU_TIMEOUT_INFINITE, - 0, &expired); - igt_assert_eq(r, 0); + fence_status.context = context_handle; + fence_status.ip_type = AMDGPU_HW_IP_COMPUTE; + fence_status.ip_instance = 0; + fence_status.ring = instance; + fence_status.fence = ibs_request.seq_no; - r = amdgpu_bo_list_destroy(bo_list); - igt_assert_eq(r, 0); + r = amdgpu_cs_query_fence_status(&fence_status, + AMDGPU_TIMEOUT_INFINITE, + 0, &expired); + igt_assert_eq(r, 0); + r = amdgpu_bo_list_destroy(bo_list); + igt_assert_eq(r, 0); + } amdgpu_bo_unmap_and_free(ib_result_handle, va_handle, ib_result_mc_address, 4096); } - r = amdgpu_cs_ctx_free(context_handle); - igt_assert_eq(r, 0); + if (user_queue) { + amdgpu_user_queue_destroy(device, ring_context, AMD_IP_COMPUTE); + } else { + r = amdgpu_cs_ctx_free(context_handle); + igt_assert_eq(r, 0); + } + + free(ring_context); } diff --git a/lib/amdgpu/amd_compute.h b/lib/amdgpu/amd_compute.h index f27be5f17..41ed225b8 100644 --- a/lib/amdgpu/amd_compute.h +++ b/lib/amdgpu/amd_compute.h @@ -26,6 +26,6 @@ #define AMD_COMPUTE_H -void amdgpu_command_submission_compute_nop(amdgpu_device_handle device); +void amdgpu_command_submission_compute_nop(amdgpu_device_handle device, bool user_queue); #endif diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c index 8819b9cd4..b05633b8e 100644 --- a/tests/amdgpu/amd_basic.c +++ b/tests/amdgpu/amd_basic.c @@ -13,6 +13,7 @@ #include "lib/amdgpu/amd_gfx.h" #include "lib/amdgpu/amd_shaders.h" #include "lib/amdgpu/amd_dispatch.h" +#include "lib/amdgpu/amd_user_queue.h" #define BUFFER_SIZE (8 * 1024) @@ -67,14 +68,25 @@ static void amdgpu_memory_alloc(amdgpu_device_handle device) * AMDGPU_HW_IP_GFX * @param device */ -static void amdgpu_command_submission_gfx(amdgpu_device_handle device, bool ce_avails) +static void amdgpu_command_submission_gfx(amdgpu_device_handle device, + bool ce_avails, + bool user_queue) { + /* write data using the CP */ - amdgpu_command_submission_write_linear_helper(device, get_ip_block(device, AMDGPU_HW_IP_GFX), false); + amdgpu_command_submission_write_linear_helper(device, + get_ip_block(device, AMDGPU_HW_IP_GFX), + false, user_queue); + /* const fill using the CP */ - amdgpu_command_submission_const_fill_helper(device, get_ip_block(device, AMDGPU_HW_IP_GFX)); + amdgpu_command_submission_const_fill_helper(device, + get_ip_block(device, AMDGPU_HW_IP_GFX), + user_queue); + /* copy data using the CP */ - amdgpu_command_submission_copy_linear_helper(device, get_ip_block(device, AMDGPU_HW_IP_GFX)); + amdgpu_command_submission_copy_linear_helper(device, + get_ip_block(device, AMDGPU_HW_IP_GFX), + user_queue); if (ce_avails) { /* separate IB buffers for multi-IB submission */ amdgpu_command_submission_gfx_separate_ibs(device); @@ -89,27 +101,41 @@ static void amdgpu_command_submission_gfx(amdgpu_device_handle device, bool ce_a * AMDGPU_HW_IP_COMPUTE * @param device */ -static void amdgpu_command_submission_compute(amdgpu_device_handle device) +static void amdgpu_command_submission_compute(amdgpu_device_handle device, bool user_queue) { /* write data using the CP */ - amdgpu_command_submission_write_linear_helper(device, get_ip_block(device, AMDGPU_HW_IP_COMPUTE), false); + amdgpu_command_submission_write_linear_helper(device, + get_ip_block(device, AMDGPU_HW_IP_COMPUTE), + false, user_queue); /* const fill using the CP */ - amdgpu_command_submission_const_fill_helper(device, get_ip_block(device, AMDGPU_HW_IP_COMPUTE)); + amdgpu_command_submission_const_fill_helper(device, + get_ip_block(device, AMDGPU_HW_IP_COMPUTE), + user_queue); /* copy data using the CP */ - amdgpu_command_submission_copy_linear_helper(device, get_ip_block(device, AMDGPU_HW_IP_COMPUTE)); + amdgpu_command_submission_copy_linear_helper(device, + get_ip_block(device, AMDGPU_HW_IP_COMPUTE), + user_queue); /* nop test */ - amdgpu_command_submission_compute_nop(device); + amdgpu_command_submission_compute_nop(device, user_queue); } /** * AMDGPU_HW_IP_DMA * @param device */ -static void amdgpu_command_submission_sdma(amdgpu_device_handle device) +static void amdgpu_command_submission_sdma(amdgpu_device_handle device, bool user_queue) { - amdgpu_command_submission_write_linear_helper(device, get_ip_block(device, AMDGPU_HW_IP_DMA), false); - amdgpu_command_submission_const_fill_helper(device, get_ip_block(device, AMDGPU_HW_IP_DMA)); - amdgpu_command_submission_copy_linear_helper(device, get_ip_block(device, AMDGPU_HW_IP_DMA)); + amdgpu_command_submission_write_linear_helper(device, + get_ip_block(device, AMDGPU_HW_IP_DMA), + false, user_queue); + + amdgpu_command_submission_const_fill_helper(device, + get_ip_block(device, AMDGPU_HW_IP_DMA), + user_queue); + + amdgpu_command_submission_copy_linear_helper(device, + get_ip_block(device, AMDGPU_HW_IP_DMA), + user_queue); } /** @@ -667,7 +693,7 @@ igt_main igt_subtest_with_dynamic("cs-gfx-with-IP-GFX") { if (arr_cap[AMD_IP_GFX]) { igt_dynamic_f("cs-gfx") - amdgpu_command_submission_gfx(device, info.hw_ip_version_major < 11); + amdgpu_command_submission_gfx(device, info.hw_ip_version_major < 11, false); } } @@ -675,7 +701,7 @@ igt_main igt_subtest_with_dynamic("cs-compute-with-IP-COMPUTE") { if (arr_cap[AMD_IP_COMPUTE]) { igt_dynamic_f("cs-compute") - amdgpu_command_submission_compute(device); + amdgpu_command_submission_compute(device, false); } } @@ -693,7 +719,7 @@ igt_main igt_subtest_with_dynamic("cs-sdma-with-IP-DMA") { if (arr_cap[AMD_IP_DMA]) { igt_dynamic_f("cs-sdma") - amdgpu_command_submission_sdma(device); + amdgpu_command_submission_sdma(device, false); } } diff --git a/tests/amdgpu/amd_security.c b/tests/amdgpu/amd_security.c index 024cadc05..19baaaea0 100644 --- a/tests/amdgpu/amd_security.c +++ b/tests/amdgpu/amd_security.c @@ -341,12 +341,12 @@ igt_main igt_describe("amdgpu sdma command submission write linear helper"); igt_subtest("sdma-write-linear-helper-secure") amdgpu_command_submission_write_linear_helper(device, - get_ip_block(device, AMDGPU_HW_IP_DMA), is_secure); + get_ip_block(device, AMDGPU_HW_IP_DMA), is_secure, false); igt_describe("amdgpu gfx command submission write linear helper"); igt_subtest("gfx-write-linear-helper-secure") amdgpu_command_submission_write_linear_helper(device, - get_ip_block(device, AMDGPU_HW_IP_GFX), is_secure); + get_ip_block(device, AMDGPU_HW_IP_GFX), is_secure, false); /* dynamic test based on sdma_info.available rings */ igt_describe("amdgpu secure bounce"); -- 2.34.1 From patchwork at emeril.freedesktop.org Thu Jan 16 07:28:38 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 07:28:38 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EBAT=3A_failure_for_tests/kms=5Fdisplay=5Fmodes?= =?utf-8?q?=3A_fit_modes_in_mst_bw?= In-Reply-To: <20250116061749.2082287-1-kunal1.joshi@intel.com> References: <20250116061749.2082287-1-kunal1.joshi@intel.com> Message-ID: <173701251825.189358.10782175195257546212@b555e5b46a47> == Series Details == Series: tests/kms_display_modes: fit modes in mst bw URL : https://patchwork.freedesktop.org/series/143585/ State : failure == Summary == CI Bug Log - changes from XEIGT_8193_BAT -> XEIGTPW_12445_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12445_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12445_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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12445_BAT: ### IGT changes ### #### Possible regressions #### * igt at xe_exec_basic@twice-userptr-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_exec_basic@twice-userptr-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/bat-adlp-vf/igt at xe_exec_basic@twice-userptr-rebind.html Known issues ------------ Here are the changes found in XEIGTPW_12445_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt at xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3970]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 Build changes ------------- * IGT: IGT_8193 -> IGTPW_12445 IGTPW_12445: 12445 IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 16 07:29:57 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 07:29:57 -0000 Subject: =?utf-8?q?=E2=9C=97_GitLab=2EPipeline=3A_warning_for_The_series_add_support_?= =?utf-8?q?for_UMQ_submission?= In-Reply-To: <20250116065211.1882469-1-sunil.khatri@amd.com> References: <20250116065211.1882469-1-sunil.khatri@amd.com> Message-ID: <173701259703.189358.12734611678622990358@b555e5b46a47> == Series Details == Series: The series add support for UMQ submission URL : https://patchwork.freedesktop.org/series/143586/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1346611 for the overview. build:tests-debian-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69437776): ../lib/amdgpu/amd_user_queue.c: In function ?amdgpu_user_queue_destroy?: ../lib/amdgpu/amd_user_queue.c:183:6: error: implicit declaration of function ?amdgpu_free_userqueue?; did you mean ?amdgpu_open_devices?? [-Werror=implicit-function-declaration] r = amdgpu_free_userqueue(device_handle, ctxt->queue_id); ^~~~~~~~~~~~~~~~~~~~~ amdgpu_open_devices ../lib/amdgpu/amd_user_queue.c:183:6: warning: nested extern declaration of ?amdgpu_free_userqueue? [-Wnested-externs] ../lib/amdgpu/amd_user_queue.c: In function ?amdgpu_user_queue_create?: ../lib/amdgpu/amd_user_queue.c:387:7: error: implicit declaration of function ?amdgpu_create_userqueue?; did you mean ?amdgpu_cs_create_semaphore?? [-Werror=implicit-function-declaration] r = amdgpu_create_userqueue(device_handle, AMDGPU_HW_IP_GFX, ^~~~~~~~~~~~~~~~~~~~~~~ amdgpu_cs_create_semaphore ../lib/amdgpu/amd_user_queue.c:387:7: warning: nested extern declaration of ?amdgpu_create_userqueue? [-Wnested-externs] cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1737012393:step_script section_start:1737012393:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737012394:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-debian-meson-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69437779): Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out b1b83419 as detached HEAD (ref is intel/IGTPW_12446)... Removing build/ Removing lib/i915/perf-configs/__pycache__/ Removing lib/xe/oa-configs/__pycache__/ Removing scripts/__pycache__/ Skipping Git submodules setup section_end:1737012396:get_sources section_start:1737012396:step_script Executing "step_script" stage of the job script Using docker image sha256:7360075a71dacfc66f0b49b3271b9a459904dbe51c5760efac48fe52da27946c for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-arm64:commit-b1b83419cb66f61b2cb566c4521b0568d442947f with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-arm64 at sha256:df8438cd0e218646c3bdc2eb6abccb43c4e884bfd40a1a4dd0365f1f8031d21f ... section_end:1737012399:step_script section_start:1737012399:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737012401:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:7360075a71dacfc66f0b49b3271b9a459904dbe51c5760efac48fe52da27946c: image not known (docker.go:650:0s) build:tests-debian-meson-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69437778): ../lib/amdgpu/amd_user_queue.c: In function ?amdgpu_user_queue_destroy?: ../lib/amdgpu/amd_user_queue.c:183:6: error: implicit declaration of function ?amdgpu_free_userqueue?; did you mean ?amdgpu_open_devices?? [-Werror=implicit-function-declaration] r = amdgpu_free_userqueue(device_handle, ctxt->queue_id); ^~~~~~~~~~~~~~~~~~~~~ amdgpu_open_devices ../lib/amdgpu/amd_user_queue.c:183:6: warning: nested extern declaration of ?amdgpu_free_userqueue? [-Wnested-externs] ../lib/amdgpu/amd_user_queue.c: In function ?amdgpu_user_queue_create?: ../lib/amdgpu/amd_user_queue.c:387:7: error: implicit declaration of function ?amdgpu_create_userqueue?; did you mean ?amdgpu_cs_create_semaphore?? [-Werror=implicit-function-declaration] r = amdgpu_create_userqueue(device_handle, AMDGPU_HW_IP_GFX, ^~~~~~~~~~~~~~~~~~~~~~~ amdgpu_cs_create_semaphore ../lib/amdgpu/amd_user_queue.c:387:7: warning: nested extern declaration of ?amdgpu_create_userqueue? [-Wnested-externs] cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1737012411:step_script section_start:1737012411:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737012412:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-debian-meson-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69437780): section_start:1737012390:get_sources Getting source from Git repository $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out b1b83419 as detached HEAD (ref is intel/IGTPW_12446)... Skipping Git submodules setup section_end:1737012393:get_sources section_start:1737012393:step_script Executing "step_script" stage of the job script Using docker image sha256:cc55efdc667be826910d414a562c76ce1130a9c15255a0dd115431bc42f83448 for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-mips:commit-b1b83419cb66f61b2cb566c4521b0568d442947f with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-mips at sha256:c829c44880da4782b7a72626c259ac6904b4bd5f08601e66b3be889ca1c0cf79 ... section_end:1737012399:step_script section_start:1737012399:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737012401:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:cc55efdc667be826910d414a562c76ce1130a9c15255a0dd115431bc42f83448: image not known (docker.go:650:0s) build:tests-fedora has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69437771): | amdgpu_query_info ../lib/amdgpu/amd_user_queue.c:164:6: warning: nested extern declaration of ?amdgpu_userq_signal? [-Wnested-externs] ../lib/amdgpu/amd_user_queue.c: In function ?amdgpu_user_queue_destroy?: ../lib/amdgpu/amd_user_queue.c:183:6: error: implicit declaration of function ?amdgpu_free_userqueue? [-Werror=implicit-function-declaration] 183 | r = amdgpu_free_userqueue(device_handle, ctxt->queue_id); | ^~~~~~~~~~~~~~~~~~~~~ ../lib/amdgpu/amd_user_queue.c:183:6: warning: nested extern declaration of ?amdgpu_free_userqueue? [-Wnested-externs] ../lib/amdgpu/amd_user_queue.c: In function ?amdgpu_user_queue_create?: ../lib/amdgpu/amd_user_queue.c:387:7: error: implicit declaration of function ?amdgpu_create_userqueue? [-Werror=implicit-function-declaration] 387 | r = amdgpu_create_userqueue(device_handle, AMDGPU_HW_IP_GFX, | ^~~~~~~~~~~~~~~~~~~~~~~ ../lib/amdgpu/amd_user_queue.c:387:7: warning: nested extern declaration of ?amdgpu_create_userqueue? [-Wnested-externs] cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1737012392:step_script section_start:1737012392:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737012393:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-fedora-clang has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69437775): Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out b1b83419 as detached HEAD (ref is intel/IGTPW_12446)... Removing build/ Removing lib/i915/perf-configs/__pycache__/ Removing lib/xe/oa-configs/__pycache__/ Removing scripts/__pycache__/ Skipping Git submodules setup section_end:1737012393:get_sources section_start:1737012393: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-b1b83419cb66f61b2cb566c4521b0568d442947f with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora at sha256:17d64607d998df2bf29a56b88922d3a598e6f1daa3b51ece2a892c2f293daf83 ... section_end:1737012399:step_script section_start:1737012399:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737012401: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) build:tests-fedora-no-libunwind has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69437772): section_start:1737012388:get_sources Getting source from Git repository $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out b1b83419 as detached HEAD (ref is intel/IGTPW_12446)... Skipping Git submodules setup section_end:1737012393:get_sources section_start:1737012393: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-b1b83419cb66f61b2cb566c4521b0568d442947f with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora at sha256:17d64607d998df2bf29a56b88922d3a598e6f1daa3b51ece2a892c2f293daf83 ... section_end:1737012399:step_script section_start:1737012399:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737012401: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) build:tests-fedora-oldest-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69437773): | amdgpu_query_info ../lib/amdgpu/amd_user_queue.c:164:6: warning: nested extern declaration of ?amdgpu_userq_signal? [-Wnested-externs] ../lib/amdgpu/amd_user_queue.c: In function ?amdgpu_user_queue_destroy?: ../lib/amdgpu/amd_user_queue.c:183:6: error: implicit declaration of function ?amdgpu_free_userqueue? [-Werror=implicit-function-declaration] 183 | r = amdgpu_free_userqueue(device_handle, ctxt->queue_id); | ^~~~~~~~~~~~~~~~~~~~~ ../lib/amdgpu/amd_user_queue.c:183:6: warning: nested extern declaration of ?amdgpu_free_userqueue? [-Wnested-externs] ../lib/amdgpu/amd_user_queue.c: In function ?amdgpu_user_queue_create?: ../lib/amdgpu/amd_user_queue.c:387:7: error: implicit declaration of function ?amdgpu_create_userqueue? [-Werror=implicit-function-declaration] 387 | r = amdgpu_create_userqueue(device_handle, AMDGPU_HW_IP_GFX, | ^~~~~~~~~~~~~~~~~~~~~~~ ../lib/amdgpu/amd_user_queue.c:387:7: warning: nested extern declaration of ?amdgpu_create_userqueue? [-Wnested-externs] cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1737012391:step_script section_start:1737012391:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737012391:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1346611 From patchwork at emeril.freedesktop.org Thu Jan 16 07:30:56 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 07:30:56 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_tests/kms=5Fdisplay=5Fmod?= =?utf-8?q?es=3A_fit_modes_in_mst_bw?= In-Reply-To: <20250116061749.2082287-1-kunal1.joshi@intel.com> References: <20250116061749.2082287-1-kunal1.joshi@intel.com> Message-ID: <173701265611.179607.14001651305193012855@b555e5b46a47> == Series Details == Series: tests/kms_display_modes: fit modes in mst bw URL : https://patchwork.freedesktop.org/series/143585/ State : failure == Summary == CI Bug Log - changes from IGT_8193 -> IGTPW_12445 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12445 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12445, 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_12445/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): fi-glk-j4005 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12445: ### IGT changes ### #### Possible regressions #### * igt at i915_selftest@live: - bat-adls-6: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-adls-6/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12445/bat-adls-6/igt at i915_selftest@live.html Known issues ------------ Here are the changes found in IGTPW_12445 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-twl-1: NOTRUN -> [ABORT][3] ([i915#12919] / [i915#13503]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12445/bat-twl-1/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_pm: - bat-twl-1: NOTRUN -> [ABORT][4] ([i915#12919]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12445/bat-twl-1/igt at i915_selftest@live at gt_pm.html #### Possible fixes #### * igt at i915_pm_rpm@module-reload: - bat-mtlp-8: [INCOMPLETE][5] ([i915#13495]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-8/igt at i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12445/bat-mtlp-8/igt at i915_pm_rpm@module-reload.html * igt at i915_selftest@live at workarounds: - bat-arlh-3: [DMESG-FAIL][7] ([i915#13393]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-arlh-3/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12445/bat-arlh-3/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_8193/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12445/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#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13495]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13495 [i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8193 -> IGTPW_12445 CI-20190529: 20190529 CI_DRM_15964: 4cea1f90028925afcf1a0f8a0ef301f90349688c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12445: 12445 IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12445/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 16 07:42:28 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 07:42:28 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/chamelium/kms=5Fcham?= =?utf-8?q?elium=5Fcolor=3A_force_connector_reprobe_after_plugging_ports?= In-Reply-To: <20250115151507.2023293-1-kunal1.joshi@intel.com> References: <20250115151507.2023293-1-kunal1.joshi@intel.com> Message-ID: <173701334832.179607.520990600011271943@b555e5b46a47> == Series Details == Series: tests/chamelium/kms_chamelium_color: force connector reprobe after plugging ports URL : https://patchwork.freedesktop.org/series/143560/ State : failure == Summary == CI Bug Log - changes from XEIGT_8193_full -> XEIGTPW_12442_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12442_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12442_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_12442_full: ### IGT changes ### #### Possible regressions #### * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-2.html * igt at kms_color@ctm-0-75: - shard-bmg: [PASS][4] -> [INCOMPLETE][5] +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_color@ctm-0-75.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-4/igt at kms_color@ctm-0-75.html #### Warnings #### * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-d: - shard-bmg: [SKIP][6] ([Intel XE#2763]) -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-d.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-4/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-d.html Known issues ------------ Here are the changes found in XEIGTPW_12442_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotreplug: - shard-bmg: [PASS][8] -> [SKIP][9] ([Intel XE#1885]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at core_hotunplug@hotreplug.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at core_hotunplug@hotreplug.html - shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#1885]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at core_hotunplug@hotreplug.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at core_hotunplug@hotreplug.html * igt at kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#873]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-5/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_async_flips@test-cursor.html * igt at kms_big_fb@4-tiled-64bpp-rotate-0: - shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_big_fb@4-tiled-64bpp-rotate-0.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_big_fb@4-tiled-64bpp-rotate-0.html - shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#2136]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_big_fb@4-tiled-64bpp-rotate-0.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_big_fb@4-tiled-64bpp-rotate-0.html * igt at kms_big_fb@x-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2327]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-8/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html * igt at kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#316]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_big_fb@x-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1467]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-2/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#610]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-434/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +5 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-1/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2136]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#619]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +6 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-435/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2314] / [Intel XE#2894]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#367]) +6 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-436/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2191]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-435/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#367]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2907]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-436/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-7/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@bad-rotation-90-yf-tiled-ccs at pipe-c-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#787]) +188 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-432/igt at kms_ccs@bad-rotation-90-yf-tiled-ccs at pipe-c-dp-2.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-3/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-8/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-b-dp-2.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#455] / [Intel XE#787]) +44 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-434/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][37] -> [SKIP][38] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#306]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-464/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +8 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#373]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-5/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#1178]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-432/igt at kms_content_protection@atomic-dpms at pipe-a-dp-2.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2390]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-7/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@lic-type-0: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#3278]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-3/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][45] ([Intel XE#1188]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-432/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#2321]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-4/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2320]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_cursor_crc@cursor-sliding-max-size.html * igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#2291]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][50] -> [DMESG-WARN][51] ([Intel XE#877]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#309]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-5/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-dg2-set2: [PASS][53] -> [SKIP][54] ([Intel XE#2423] / [i915#2575]) +15 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1508]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-5/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2372]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#701]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#2373]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_feature_discovery@display-2x.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1138]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#1135]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-464/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1421]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-1/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][63] -> [FAIL][64] ([Intel XE#301]) +19 other tests fail [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-plain-flip: - shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#2316]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-plain-flip.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][67] ([Intel XE#301]) +3 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1401]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1397] / [Intel XE#1745]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-1/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1397]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-1/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([i915#5274]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-464/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2311]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#651]) +34 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [FAIL][75] ([Intel XE#2333]) +1 other test fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#656]) +10 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#651]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-3/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#2136] / [Intel XE#2351]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2313]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#653]) +33 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#605]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-435/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@static-toggle-suspend: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1503]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-5/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#346]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-bmg: [PASS][84] -> [SKIP][85] ([Intel XE#3012]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_joiner@basic-force-big-joiner.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_plane_cursor@overlay: - shard-dg2-set2: [PASS][86] -> [FAIL][87] ([Intel XE#616]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at kms_plane_cursor@overlay.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-464/igt at kms_plane_cursor@overlay.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][88] ([Intel XE#616]) +4 other tests fail [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-435/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#2763]) +5 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-434/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-a.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-434/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d.html * igt at kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#870]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-464/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [PASS][92] -> [FAIL][93] ([Intel XE#718]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-5/igt at kms_pm_dc@dc5-psr.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#1129]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at kms_pm_dc@dc6-psr.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#1489]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-7/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#1489]) +11 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#2893]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-4/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1122]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-4/igt at kms_psr@psr-basic.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#2850] / [Intel XE#929]) +17 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-434/igt at kms_psr@psr-dpms.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#3414]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#1127]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_sequence@get-busy: - shard-bmg: [PASS][103] -> [SKIP][104] ([Intel XE#3007]) +18 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_sequence@get-busy.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_sequence@get-busy.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][105] -> [SKIP][106] ([Intel XE#1435]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_setmode@invalid-clone-single-crtc.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1500]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [PASS][108] -> [FAIL][109] ([Intel XE#899]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][110] -> [FAIL][111] ([Intel XE#2159]) +1 other test fail [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-3/igt at kms_vrr@cmrr at pipe-a-edp-1.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-8/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#455]) +14 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at kms_vrr@flipline.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2168]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-436/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-check-output: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#756]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-2/igt at kms_writeback@writeback-check-output.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-436/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#1126]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2905]) +12 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#3889]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-434/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#3889]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-8/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2905]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#688]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-3/igt at xe_evict@evict-large-multi-vm.html * igt at xe_exec_balancer@many-cm-parallel-basic: - shard-bmg: [PASS][122] -> [SKIP][123] ([Intel XE#1130]) +26 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_exec_balancer@many-cm-parallel-basic.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at xe_exec_balancer@many-cm-parallel-basic.html * igt at xe_exec_balancer@no-exec-parallel-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#1130]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at xe_exec_balancer@no-exec-parallel-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2322]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html * igt at xe_exec_basic@multigpu-once-null: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1392]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-5/igt at xe_exec_basic@multigpu-once-null.html * igt at xe_exec_basic@multigpu-once-userptr-invalidate-race: - shard-dg2-set2: [PASS][127] -> [SKIP][128] ([Intel XE#1392]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_exec_basic@multigpu-once-userptr-invalidate-race.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-432/igt at xe_exec_basic@multigpu-once-userptr-invalidate-race.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#288]) +29 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-435/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#2905]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-7/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2229]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-4/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#560]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-432/igt at xe_media_fill@media-fill.html * igt at xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#4045]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-8/igt at xe_mmap@pci-membarrier-parallel.html * igt at xe_module_load@many-reload: - shard-bmg: [PASS][134] -> [FAIL][135] ([Intel XE#3546]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_module_load@many-reload.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-7/igt at xe_module_load@many-reload.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at xe_oa@disabled-read-error.html * igt at xe_oa@syncs-syncobj-wait-cfg: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#1130]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at xe_oa@syncs-syncobj-wait-cfg.html * igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][138] ([Intel XE#1173]) +1 other test fail [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-436/igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@s2idle-basic: - shard-dg2-set2: [PASS][140] -> [ABORT][141] ([Intel XE#1358] / [Intel XE#1794]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_pm@s2idle-basic.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-432/igt at xe_pm@s2idle-basic.html * igt at xe_pm@s3-exec-after: - shard-dg2-set2: [PASS][142] -> [ABORT][143] ([Intel XE#1358]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_pm@s3-exec-after.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-432/igt at xe_pm@s3-exec-after.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#2284] / [Intel XE#366]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-8/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][145] -> [FAIL][146] ([Intel XE#958]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at xe_pm_residency@toggle-gt-c6.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-4/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-invalid-size: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#944]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-2/igt at xe_query@multigpu-query-invalid-size.html * igt at xe_query@multigpu-query-mem-usage: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#944]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#944]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#3342]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-435/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@large-userptr-binds-1073741824: - shard-dg2-set2: [PASS][151] -> [SKIP][152] ([Intel XE#1130]) +20 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at xe_vm@large-userptr-binds-1073741824.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at xe_vm@large-userptr-binds-1073741824.html #### Possible fixes #### * igt at fbdev@pan: - shard-bmg: [SKIP][153] ([Intel XE#2134]) -> [PASS][154] [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at fbdev@pan.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-4/igt at fbdev@pan.html * igt at kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][155] ([Intel XE#3007]) -> [PASS][156] +3 other tests pass [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_addfb_basic@bad-pitch-999.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-7/igt at kms_addfb_basic@bad-pitch-999.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [FAIL][157] ([Intel XE#911]) -> [PASS][158] +3 other tests pass [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][159] ([Intel XE#3862]) -> [PASS][160] +1 other test pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1: - shard-lnl: [FAIL][161] ([Intel XE#4075]) -> [PASS][162] +1 other test pass [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-3/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][163] ([Intel XE#2291]) -> [PASS][164] +5 other tests pass [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [FAIL][165] ([Intel XE#1475]) -> [PASS][166] [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-4/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-4/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][167] ([Intel XE#2425]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-7/igt at kms_display_modes@extended-mode-basic.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][169] ([Intel XE#2882]) -> [PASS][170] +2 other tests pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-8/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank at ac-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][171] ([Intel XE#301]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank at ac-hdmi-a6-dp4.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank at ac-hdmi-a6-dp4.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][173] ([Intel XE#2316]) -> [PASS][174] +8 other tests pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@dpms-vs-vblank-race: - shard-dg2-set2: [INCOMPLETE][175] ([Intel XE#2049]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_flip@dpms-vs-vblank-race.html * igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6: - shard-dg2-set2: [INCOMPLETE][177] -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][179] ([Intel XE#886]) -> [PASS][180] +1 other test pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_flip@flip-vs-absolute-wf_vblank.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-4/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a6: - shard-dg2-set2: [FAIL][181] ([Intel XE#4072]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a6.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-436/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a6.html * igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a6: - shard-dg2-set2: [FAIL][183] ([Intel XE#886]) -> [PASS][184] +1 other test pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a6.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-436/igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3: - shard-bmg: [FAIL][185] ([Intel XE#3820]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-bmg: [SKIP][187] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][189] ([Intel XE#455]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_hdr@invalid-hdr.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_hdr@invalid-hdr.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [FAIL][191] -> [PASS][192] +1 other test pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_pm_rpm@basic-pci-d3-state.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at xe_exec_basic@multigpu-no-exec-userptr: - shard-dg2-set2: [SKIP][193] ([Intel XE#1392]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-userptr.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at xe_exec_basic@multigpu-no-exec-userptr.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [SKIP][195] ([Intel XE#1192]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_live_ktest@xe_bo.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-4/igt at xe_live_ktest@xe_bo.html * igt at xe_module_load@load: - shard-dg2-set2: ([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]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-432/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-432/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-432/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-434/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-435/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-435/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-464/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-464/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-435/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-434/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-434/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-464/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-432/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-436/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-436/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-436/igt at xe_module_load@load.html * igt at xe_pm@s2idle-basic-exec: - shard-dg2-set2: [ABORT][244] ([Intel XE#1358]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_pm@s2idle-basic-exec.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-435/igt at xe_pm@s2idle-basic-exec.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][246] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][247] +1 other test pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-lnl-1/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm@s4-vm-bind-userptr: - shard-dg2-set2: [ABORT][248] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_pm@s4-vm-bind-userptr.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-433/igt at xe_pm@s4-vm-bind-userptr.html * igt at xe_vm@bind-once: - shard-bmg: [SKIP][250] ([Intel XE#1130]) -> [PASS][251] +10 other tests pass [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_vm@bind-once.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-2/igt at xe_vm@bind-once.html #### Warnings #### * igt at kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][252] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][253] ([Intel XE#1124]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-4/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-32bpp-rotate-90: - shard-dg2-set2: [SKIP][254] ([Intel XE#1124]) -> [SKIP][255] ([Intel XE#2136] / [Intel XE#2351]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_big_fb@y-tiled-32bpp-rotate-90.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_big_fb@y-tiled-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [SKIP][256] ([Intel XE#1124]) -> [SKIP][257] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: [SKIP][258] ([Intel XE#1124]) -> [SKIP][259] ([Intel XE#2136]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][260] ([Intel XE#367]) -> [SKIP][261] ([Intel XE#2423] / [i915#2575]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at kms_bw@linear-tiling-4-displays-2560x1440p.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_bw@linear-tiling-4-displays-2560x1440p.html - shard-bmg: [SKIP][262] ([Intel XE#367]) -> [SKIP][263] ([Intel XE#3007]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_bw@linear-tiling-4-displays-2560x1440p.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_bw@linear-tiling-4-displays-2560x1440p.html * igt at kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-bmg: [SKIP][264] ([Intel XE#2887]) -> [SKIP][265] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html - shard-dg2-set2: [SKIP][266] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][267] ([Intel XE#2136]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][268] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][269] ([Intel XE#2887]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-4/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][270] ([Intel XE#3007]) -> [SKIP][271] ([Intel XE#2325]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_color@ctm-green-to-red.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-2/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_edid@dp-edid-resolution-list: - shard-bmg: [SKIP][272] ([Intel XE#2252]) -> [SKIP][273] ([Intel XE#3007]) +2 other tests skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_edid@dp-edid-resolution-list.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_chamelium_edid@dp-edid-resolution-list.html - shard-dg2-set2: [SKIP][274] ([Intel XE#373]) -> [SKIP][275] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_chamelium_edid@dp-edid-resolution-list.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_chamelium_edid@dp-edid-resolution-list.html * igt at kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-bmg: [SKIP][276] ([Intel XE#3007]) -> [SKIP][277] ([Intel XE#2252]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-4/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt at kms_content_protection@atomic: - shard-bmg: [FAIL][278] ([Intel XE#1178]) -> [SKIP][279] ([Intel XE#2341]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_content_protection@atomic.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_content_protection@atomic.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-bmg: [SKIP][280] ([Intel XE#2320]) -> [SKIP][281] ([Intel XE#3007]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_crc@cursor-random-32x10.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][282] ([Intel XE#877]) -> [SKIP][283] ([Intel XE#2291]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: [SKIP][284] ([Intel XE#2244]) -> [SKIP][285] ([Intel XE#2136] / [Intel XE#2231]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_dsc@dsc-with-output-formats.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_dsc@dsc-with-output-formats.html - shard-dg2-set2: [SKIP][286] ([Intel XE#455]) -> [SKIP][287] ([Intel XE#2136]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_dsc@dsc-with-output-formats.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][288] ([Intel XE#2882]) -> [SKIP][289] ([Intel XE#2316]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][290] ([Intel XE#2882] / [Intel XE#3820]) -> [SKIP][291] ([Intel XE#2316]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][292] ([Intel XE#2882] / [Intel XE#3820]) -> [FAIL][293] ([Intel XE#3820]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][294] ([Intel XE#651]) -> [SKIP][295] ([Intel XE#2136] / [Intel XE#2351]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][296] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][297] ([Intel XE#2311]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][298] ([Intel XE#2311]) -> [SKIP][299] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][300] ([Intel XE#2312]) -> [SKIP][301] ([Intel XE#2311]) +14 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: [SKIP][302] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][303] ([Intel XE#2333]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [FAIL][304] ([Intel XE#2333]) -> [SKIP][305] ([Intel XE#2136] / [Intel XE#2231]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][306] ([Intel XE#2333]) -> [SKIP][307] ([Intel XE#2312]) +10 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][308] ([Intel XE#2312]) -> [FAIL][309] ([Intel XE#2333]) +7 other tests fail [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][310] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][311] ([Intel XE#2312]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: [DMESG-FAIL][312] ([Intel XE#877]) -> [FAIL][313] ([Intel XE#2333]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: [SKIP][314] ([Intel XE#651]) -> [SKIP][315] ([Intel XE#2136]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][316] ([Intel XE#2311]) -> [SKIP][317] ([Intel XE#2312]) +15 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][318] ([Intel XE#658]) -> [SKIP][319] ([Intel XE#2136] / [Intel XE#2351]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html - shard-bmg: [SKIP][320] ([Intel XE#2352]) -> [SKIP][321] ([Intel XE#2136] / [Intel XE#2231]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][322] ([Intel XE#2313]) -> [SKIP][323] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][324] ([Intel XE#2312]) -> [SKIP][325] ([Intel XE#2313]) +13 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][326] ([Intel XE#2313]) -> [SKIP][327] ([Intel XE#2312]) +16 other tests skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][328] ([Intel XE#653]) -> [SKIP][329] ([Intel XE#2136]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][330] ([Intel XE#653]) -> [SKIP][331] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-bmg: [SKIP][332] ([Intel XE#2763]) -> [INCOMPLETE][333] ([Intel XE#2566]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-4/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][334] ([Intel XE#1489]) -> [SKIP][335] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][336] ([Intel XE#1489]) -> [SKIP][337] ([Intel XE#2136]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr@fbc-psr2-primary-blt: - shard-bmg: [SKIP][338] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][339] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_psr@fbc-psr2-primary-blt.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at kms_psr@fbc-psr2-primary-blt.html * igt at kms_psr@pr-sprite-blt: - shard-dg2-set2: [SKIP][340] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][341] ([Intel XE#2136]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at kms_psr@pr-sprite-blt.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at kms_psr@pr-sprite-blt.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][342] ([Intel XE#362]) -> [FAIL][343] ([Intel XE#1729]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-464/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][344] ([Intel XE#3007]) -> [SKIP][345] ([Intel XE#1499]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-virtual.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][346] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][347] ([Intel XE#3007]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at sriov_basic@enable-vfs-autoprobe-off.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at sriov_basic@enable-vfs-autoprobe-off.html - shard-dg2-set2: [SKIP][348] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][349] ([Intel XE#2423] / [i915#2575]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at sriov_basic@enable-vfs-autoprobe-off.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_eudebug@basic-vm-access: - shard-bmg: [SKIP][350] ([Intel XE#2905]) -> [SKIP][351] ([Intel XE#1130]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_eudebug@basic-vm-access.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at xe_eudebug@basic-vm-access.html * igt at xe_eudebug@multigpu-basic-client-many: - shard-dg2-set2: [SKIP][352] ([Intel XE#2905]) -> [SKIP][353] ([Intel XE#1130]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_eudebug@multigpu-basic-client-many.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at xe_eudebug@multigpu-basic-client-many.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-bmg: [SKIP][354] ([Intel XE#2322]) -> [SKIP][355] ([Intel XE#1130]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt at xe_exec_fault_mode@once-rebind-prefetch: - shard-dg2-set2: [SKIP][356] ([Intel XE#288]) -> [SKIP][357] ([Intel XE#1130]) +4 other tests skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at xe_exec_fault_mode@once-rebind-prefetch.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at xe_exec_fault_mode@once-rebind-prefetch.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][358] ([Intel XE#2833]) -> [SKIP][359] ([Intel XE#1192]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_live_ktest@xe_eudebug.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html * igt at xe_oa@syncs-syncobj-wait-cfg: - shard-dg2-set2: [SKIP][360] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][361] ([Intel XE#1130]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_oa@syncs-syncobj-wait-cfg.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at xe_oa@syncs-syncobj-wait-cfg.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][362] ([Intel XE#944]) -> [SKIP][363] ([Intel XE#1130]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_query@multigpu-query-invalid-cs-cycles.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-bmg-6/igt at xe_query@multigpu-query-invalid-cs-cycles.html - shard-dg2-set2: [SKIP][364] ([Intel XE#944]) -> [SKIP][365] ([Intel XE#1130]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_query@multigpu-query-invalid-cs-cycles.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/shard-dg2-463/igt at xe_query@multigpu-query-invalid-cs-cycles.html [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#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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [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#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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#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#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [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#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [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#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#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4072]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4072 [Intel XE#4075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4075 [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#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [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#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#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8193 -> IGTPW_12442 IGTPW_12442: 12442 IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12442/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 16 08:33:52 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 08:33:52 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_The_series_add_support_for_?= =?utf-8?q?UMQ_submission?= In-Reply-To: <20250116065211.1882469-1-sunil.khatri@amd.com> References: <20250116065211.1882469-1-sunil.khatri@amd.com> Message-ID: <173701643214.202820.7510593116076130042@b555e5b46a47> == Series Details == Series: The series add support for UMQ submission URL : https://patchwork.freedesktop.org/series/143586/ State : success == Summary == CI Bug Log - changes from XEIGT_8193_BAT -> XEIGTPW_12446_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12446_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_intel_bb@intel-bb-blit-x: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3970]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-x.html #### Warnings #### * igt at xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3970]) -> [DMESG-FAIL][4] ([Intel XE#3868]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868 [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 Build changes ------------- * IGT: IGT_8193 -> IGTPW_12446 IGTPW_12446: 12446 IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 16 08:41:28 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 08:41:28 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_The_series_add_support_fo?= =?utf-8?q?r_UMQ_submission?= In-Reply-To: <20250116065211.1882469-1-sunil.khatri@amd.com> References: <20250116065211.1882469-1-sunil.khatri@amd.com> Message-ID: <173701688852.202820.16171651683050928055@b555e5b46a47> == Series Details == Series: The series add support for UMQ submission URL : https://patchwork.freedesktop.org/series/143586/ State : success == Summary == CI Bug Log - changes from IGT_8193 -> IGTPW_12446 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12446: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt at i915_module_load@load: - {bat-mtlp-9}: [DMESG-WARN][1] ([i915#13494]) -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-9/igt at i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/bat-mtlp-9/igt at i915_module_load@load.html Known issues ------------ Here are the changes found in IGTPW_12446 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at dmabuf@all-tests at dma_fence_chain: - fi-bsw-nick: [PASS][3] -> [INCOMPLETE][4] ([i915#12904]) +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/fi-bsw-nick/igt at dmabuf@all-tests at dma_fence_chain.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/fi-bsw-nick/igt at dmabuf@all-tests at dma_fence_chain.html * igt at runner@aborted: - fi-pnv-d510: NOTRUN -> [FAIL][5] ([i915#13350]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/fi-pnv-d510/igt at runner@aborted.html #### Possible fixes #### * igt at i915_pm_rpm@module-reload: - bat-mtlp-8: [INCOMPLETE][6] ([i915#13495]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-8/igt at i915_pm_rpm@module-reload.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/bat-mtlp-8/igt at i915_pm_rpm@module-reload.html * igt at i915_selftest@live at workarounds: - 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_8193/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/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#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#13495]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13495 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8193 -> IGTPW_12446 CI-20190529: 20190529 CI_DRM_15964: 4cea1f90028925afcf1a0f8a0ef301f90349688c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12446: 12446 IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 16 08:52:47 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 08:52:47 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fpm=5Fresi?= =?utf-8?q?dency=3A_Skip_on_igt=5Fpower=5Fopen_failure_=28rev6=29?= In-Reply-To: <20250110212237.4052-1-jonathan.cavitt@intel.com> References: <20250110212237.4052-1-jonathan.cavitt@intel.com> Message-ID: <173701756780.202820.14978393074699290892@b555e5b46a47> == Series Details == Series: tests/intel/xe_pm_residency: Skip on igt_power_open failure (rev6) URL : https://patchwork.freedesktop.org/series/139352/ State : failure == Summary == CI Bug Log - changes from XEIGT_8193_full -> XEIGTPW_12443_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12443_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12443_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_12443_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3: - shard-bmg: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp4: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-464/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html * igt at kms_sequence@get-busy: - shard-bmg: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_sequence@get-busy.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-4/igt at kms_sequence@get-busy.html #### Warnings #### * igt at kms_flip@flip-vs-expired-vblank: - shard-bmg: [FAIL][7] ([Intel XE#2882]) -> [FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank.html Known issues ------------ Here are the changes found in XEIGTPW_12443_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_auth@basic-auth: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#3007]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at core_auth@basic-auth.html * igt at core_hotunplug@hotrebind: - shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#1885]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at core_hotunplug@hotrebind.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at core_hotunplug@hotrebind.html - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1885]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at core_hotunplug@hotrebind.html * igt at kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#873]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-5/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-6/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@linear-8bpp-rotate-180: - shard-bmg: [PASS][15] -> [SKIP][16] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_big_fb@linear-8bpp-rotate-180.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_big_fb@linear-8bpp-rotate-180.html - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#2136]) +4 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_big_fb@linear-8bpp-rotate-180.html * igt at kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#316]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-432/igt at kms_big_fb@x-tiled-8bpp-rotate-90.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#2136] / [Intel XE#2351]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1467]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-4/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#610]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/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: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +5 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-436/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +5 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-3/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#619]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#367]) +7 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-464/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html - shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#2314] / [Intel XE#2894]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2191]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-464/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#367]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-8/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2907]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-8/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs at pipe-c-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#787]) +223 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs at pipe-c-hdmi-a-2.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#455] / [Intel XE#787]) +50 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-436/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#2136] / [Intel XE#2351]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2887]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-4/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][37] -> [INCOMPLETE][38] ([Intel XE#1727] / [Intel XE#4010]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-433/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][39] -> [INCOMPLETE][40] ([Intel XE#1727] / [Intel XE#3113]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-hdmi-a-6.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-hdmi-a-6.html * igt at kms_cdclk@mode-transition at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#314]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-432/igt at kms_cdclk@mode-transition at pipe-a-dp-2.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#306]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-433/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#373]) +9 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-432/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#373]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-8/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][45] ([Intel XE#1178]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-432/igt at kms_content_protection@atomic-dpms at pipe-a-dp-2.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2390]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-2/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@lic-type-0: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#3278]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-6/igt at kms_content_protection@lic-type-0.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2320]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_cursor_crc@cursor-sliding-max-size.html * igt at kms_cursor_crc@cursor-suspend: - shard-lnl: [PASS][49] -> [INCOMPLETE][50] ([Intel XE#1616]) +1 other test incomplete [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at kms_cursor_crc@cursor-suspend.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-7/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#2291]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#309]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-5/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][54] -> [DMESG-WARN][55] ([Intel XE#877]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#3070]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_dp_linktrain_fallback@dp-fallback.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2372]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-1/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#701]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-464/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1135]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-435/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1421]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-2/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-blocking-wf_vblank: - shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#2316]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_flip@2x-blocking-wf_vblank.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_flip@2x-blocking-wf_vblank.html * igt at kms_flip@2x-flip-vs-dpms: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2316]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-dp2-hdmi-a3: - shard-bmg: [PASS][65] -> [FAIL][66] ([Intel XE#3820]) +1 other test fail [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-dp2-hdmi-a3.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: - shard-dg2-set2: [PASS][67] -> [FAIL][68] ([Intel XE#301]) +8 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][69] ([Intel XE#301]) +7 other tests fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [PASS][70] -> [INCOMPLETE][71] ([Intel XE#2597]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-464/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1401] / [Intel XE#1745]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1401]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1397] / [Intel XE#1745]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-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_12443/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2311]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#651]) +33 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [FAIL][78] ([Intel XE#2333]) +1 other test fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#656]) +8 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-dg2-set2: [PASS][80] -> [SKIP][81] ([Intel XE#2136]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#651]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-3/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2312]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-lnl: [PASS][84] -> [INCOMPLETE][85] ([Intel XE#2050]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-8/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#653]) +30 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2313]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_hdr@static-toggle-suspend: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1503]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-6/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#346]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_joiner@basic-big-joiner.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][90] ([Intel XE#616]) +3 other tests fail [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_cursor@viewport: - shard-dg2-set2: [PASS][91] -> [FAIL][92] ([Intel XE#616]) +1 other test fail [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_plane_cursor@viewport.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-436/igt at kms_plane_cursor@viewport.html * igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2763]) +5 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-a.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-433/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#870]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-434/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#870]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1129]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@cursor-dpms: - shard-dg2-set2: [PASS][99] -> [SKIP][100] ([Intel XE#2446]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at kms_pm_rpm@cursor-dpms.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_pm_rpm@cursor-dpms.html - shard-bmg: [PASS][101] -> [SKIP][102] ([Intel XE#2446]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_pm_rpm@cursor-dpms.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_pm_rpm@cursor-dpms.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#1489]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-7/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#1489]) +8 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#2893]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-3/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#1122]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-432/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-2/igt at kms_psr@psr-basic.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-436/igt at kms_psr@psr-dpms.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#3414]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-464/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#1127]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [PASS][111] -> [SKIP][112] ([Intel XE#2423] / [i915#2575]) +14 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at kms_rotation_crc@sprite-rotation-180.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_rotation_crc@sprite-rotation-180.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1500]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [PASS][114] -> [FAIL][115] ([Intel XE#899]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vblank@ts-continuation-suspend: - shard-bmg: [PASS][116] -> [SKIP][117] ([Intel XE#3007]) +15 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_vblank@ts-continuation-suspend.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][118] -> [FAIL][119] ([Intel XE#2159]) +1 other test fail [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-3/igt at kms_vrr@cmrr at pipe-a-edp-1.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-1/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#455]) +10 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-433/igt at kms_vrr@flipline.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2168]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-436/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-check-output: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#756]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-4/igt at kms_writeback@writeback-check-output.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-435/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#1126]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-464/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2905]) +13 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-435/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#3889]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-434/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2905]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-1/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#688]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-5/igt at xe_evict@evict-large-multi-vm.html * igt at xe_exec_atomic@basic-dec-all: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#1130]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at xe_exec_atomic@basic-dec-all.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1130]) +8 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2322]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-4/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html * igt at xe_exec_basic@multigpu-once-basic: - shard-dg2-set2: [PASS][132] -> [SKIP][133] ([Intel XE#1392]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_exec_basic@multigpu-once-basic.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-432/igt at xe_exec_basic@multigpu-once-basic.html * igt at xe_exec_basic@multigpu-once-null: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1392]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-3/igt at xe_exec_basic@multigpu-once-null.html * igt at xe_exec_basic@once-rebind: - shard-dg2-set2: [PASS][135] -> [SKIP][136] ([Intel XE#1130]) +24 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_exec_basic@once-rebind.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at xe_exec_basic@once-rebind.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#288]) +26 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-433/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_exec_sip_eudebug@breakpoint-writesip-twice: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#2905]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-1/igt at xe_exec_sip_eudebug@breakpoint-writesip-twice.html * igt at xe_exec_threads@threads-hang-fd-userptr-rebind: - shard-dg2-set2: [PASS][139] -> [DMESG-WARN][140] ([Intel XE#3876]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_exec_threads@threads-hang-fd-userptr-rebind.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-433/igt at xe_exec_threads@threads-hang-fd-userptr-rebind.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2229]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-4/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [PASS][142] -> [SKIP][143] ([Intel XE#1192]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_live_ktest@xe_mocs.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at xe_live_ktest@xe_mocs.html * igt at xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#560]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-434/igt at xe_media_fill@media-fill.html * igt at xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#4045]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-6/igt at xe_mmap@pci-membarrier-parallel.html * igt at xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-464/igt at xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][147] ([Intel XE#1173]) +1 other test fail [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-436/igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@s3-exec-after: - shard-dg2-set2: [PASS][149] -> [ABORT][150] ([Intel XE#1358]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_pm@s3-exec-after.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-432/igt at xe_pm@s3-exec-after.html * igt at xe_pm@s3-mocs: - shard-dg2-set2: [PASS][151] -> [ABORT][152] ([Intel XE#1358] / [Intel XE#1794]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at xe_pm@s3-mocs.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-432/igt at xe_pm@s3-mocs.html * igt at xe_pm@s3-vm-bind-userptr: - shard-dg2-set2: NOTRUN -> [ABORT][153] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-432/igt at xe_pm@s3-vm-bind-userptr.html * igt at xe_query@multigpu-query-invalid-size: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#944]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-1/igt at xe_query@multigpu-query-invalid-size.html * igt at xe_query@multigpu-query-mem-usage: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#944]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-436/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#944]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-1/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#3342]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-433/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@munmap-style-unbind-either-side-full: - shard-bmg: [PASS][158] -> [SKIP][159] ([Intel XE#1130]) +31 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_vm@munmap-style-unbind-either-side-full.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at xe_vm@munmap-style-unbind-either-side-full.html #### Possible fixes #### * igt at fbdev@pan: - shard-bmg: [SKIP][160] ([Intel XE#2134]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at fbdev@pan.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at fbdev@pan.html * igt at kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][162] ([Intel XE#3007]) -> [PASS][163] +3 other tests pass [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_addfb_basic@bad-pitch-999.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_addfb_basic@bad-pitch-999.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][164] ([Intel XE#827]) -> [PASS][165] +1 other test pass [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1: - shard-lnl: [FAIL][166] ([Intel XE#4075]) -> [PASS][167] +1 other test pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-3/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][168] ([Intel XE#2291]) -> [PASS][169] +6 other tests pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [FAIL][170] ([Intel XE#1475]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-4/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-1/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][172] ([Intel XE#2882]) -> [PASS][173] +1 other test pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-2/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][174] ([Intel XE#3820]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-7/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 at ac-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][176] ([Intel XE#301]) -> [PASS][177] +1 other test pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank at ac-hdmi-a6-dp4.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank at ac-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: [SKIP][178] ([Intel XE#2316]) -> [PASS][179] +4 other tests pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-vs-hang.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-8/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@dpms-vs-vblank-race: - shard-dg2-set2: [INCOMPLETE][180] ([Intel XE#2049]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_flip@dpms-vs-vblank-race.html * igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6: - shard-dg2-set2: [INCOMPLETE][182] -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-bmg: [SKIP][184] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [SKIP][186] ([Intel XE#1503]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_hdr@invalid-hdr.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-4/igt at kms_hdr@invalid-hdr.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [FAIL][188] -> [PASS][189] +1 other test pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_pm_rpm@basic-pci-d3-state.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-7/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at xe_exec_basic@multigpu-no-exec-null: - shard-dg2-set2: [SKIP][190] ([Intel XE#1392]) -> [PASS][191] +1 other test pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-434/igt at xe_exec_basic@multigpu-no-exec-null.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [SKIP][192] ([Intel XE#1192]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_live_ktest@xe_bo.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-4/igt at xe_live_ktest@xe_bo.html * igt at xe_pm@s2idle-basic-exec: - shard-dg2-set2: [ABORT][194] ([Intel XE#1358]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_pm@s2idle-basic-exec.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-464/igt at xe_pm@s2idle-basic-exec.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][196] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-lnl-8/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_vm@mixed-userptr-misaligned-binds-1611661312: - shard-bmg: [SKIP][198] ([Intel XE#1130]) -> [PASS][199] +7 other tests pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_vm@mixed-userptr-misaligned-binds-1611661312.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-7/igt at xe_vm@mixed-userptr-misaligned-binds-1611661312.html #### Warnings #### * igt at kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][200] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][201] ([Intel XE#1124]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-7/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][202] ([Intel XE#607]) -> [SKIP][203] ([Intel XE#2136] / [Intel XE#2231]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: [SKIP][204] ([Intel XE#607]) -> [SKIP][205] ([Intel XE#2136] / [Intel XE#2351]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2-set2: [SKIP][206] ([Intel XE#1124]) -> [SKIP][207] ([Intel XE#2136]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html - shard-bmg: [SKIP][208] ([Intel XE#1124]) -> [SKIP][209] ([Intel XE#2136] / [Intel XE#2231]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-dg2-set2: [SKIP][210] ([Intel XE#367]) -> [SKIP][211] ([Intel XE#2423] / [i915#2575]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][212] ([Intel XE#2887]) -> [SKIP][213] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][214] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][215] ([Intel XE#2136] / [Intel XE#2351]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][216] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][217] ([Intel XE#2887]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-1/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs: - shard-dg2-set2: [SKIP][218] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][219] ([Intel XE#2136]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][220] ([Intel XE#3007]) -> [SKIP][221] ([Intel XE#2325]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_color@ctm-green-to-red.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][222] ([Intel XE#2252]) -> [SKIP][223] ([Intel XE#3007]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_chamelium_hpd@common-hpd-after-suspend.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_chamelium_hpd@common-hpd-after-suspend.html - shard-dg2-set2: [SKIP][224] ([Intel XE#373]) -> [SKIP][225] ([Intel XE#2423] / [i915#2575]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at kms_chamelium_hpd@common-hpd-after-suspend.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-bmg: [SKIP][226] ([Intel XE#3007]) -> [SKIP][227] ([Intel XE#2252]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt at kms_content_protection@lic-type-0: - shard-bmg: [FAIL][228] ([Intel XE#1178]) -> [SKIP][229] ([Intel XE#2341]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_content_protection@lic-type-0.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_content_protection@lic-type-0.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: [SKIP][230] ([Intel XE#455]) -> [SKIP][231] ([Intel XE#2423] / [i915#2575]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_cursor_crc@cursor-random-max-size.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - 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_8193/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][234] ([Intel XE#2425]) -> [SKIP][235] ([Intel XE#3007]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dsc@dsc-with-bpc: - shard-dg2-set2: [SKIP][236] ([Intel XE#455]) -> [SKIP][237] ([Intel XE#2136]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_dsc@dsc-with-bpc.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_dsc@dsc-with-bpc.html - shard-bmg: [SKIP][238] ([Intel XE#2244]) -> [SKIP][239] ([Intel XE#2136] / [Intel XE#2231]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_dsc@dsc-with-bpc.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_dsc@dsc-with-bpc.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][240] ([Intel XE#2882]) -> [SKIP][241] ([Intel XE#2316]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][242] ([Intel XE#2882] / [Intel XE#3820]) -> [FAIL][243] ([Intel XE#3820]) +1 other test fail [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][244] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][245] ([Intel XE#2136] / [Intel XE#2231]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][246] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][247] ([Intel XE#2311]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][248] ([Intel XE#2312]) -> [SKIP][249] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html - shard-dg2-set2: [SKIP][250] ([Intel XE#651]) -> [SKIP][251] ([Intel XE#2136]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][252] ([Intel XE#2311]) -> [SKIP][253] ([Intel XE#2312]) +11 other tests skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [FAIL][254] ([Intel XE#2333]) -> [SKIP][255] ([Intel XE#2312]) +5 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [FAIL][256] ([Intel XE#2333]) -> [SKIP][257] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][258] ([Intel XE#2312]) -> [FAIL][259] ([Intel XE#2333]) +7 other tests fail [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][260] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][261] ([Intel XE#2333]) +1 other test fail [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: [DMESG-FAIL][262] ([Intel XE#877]) -> [SKIP][263] ([Intel XE#2136] / [Intel XE#2231]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][264] ([Intel XE#2311]) -> [SKIP][265] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][266] ([Intel XE#2312]) -> [SKIP][267] ([Intel XE#2311]) +12 other tests skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][268] ([Intel XE#653]) -> [SKIP][269] ([Intel XE#2136]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][270] ([Intel XE#2313]) -> [SKIP][271] ([Intel XE#2312]) +10 other tests skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][272] ([Intel XE#2312]) -> [SKIP][273] ([Intel XE#2313]) +14 other tests skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][274] ([Intel XE#2313]) -> [SKIP][275] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][276] ([Intel XE#2763]) -> [SKIP][277] ([Intel XE#3007]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-bmg: [SKIP][278] ([Intel XE#1489]) -> [SKIP][279] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html - shard-dg2-set2: [SKIP][280] ([Intel XE#1489]) -> [SKIP][281] ([Intel XE#2136]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr@pr-cursor-blt: - shard-bmg: [SKIP][282] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][283] ([Intel XE#2136] / [Intel XE#2231]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_psr@pr-cursor-blt.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_psr@pr-cursor-blt.html * igt at kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: [SKIP][284] ([Intel XE#1435]) -> [SKIP][285] ([Intel XE#3007]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_setmode@invalid-clone-exclusive-crtc.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_setmode@invalid-clone-exclusive-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][286] ([Intel XE#362]) -> [FAIL][287] ([Intel XE#1729]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-432/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][288] ([Intel XE#3007]) -> [SKIP][289] ([Intel XE#1499]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-virtual.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: [SKIP][290] ([Intel XE#756]) -> [SKIP][291] ([Intel XE#3007]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_writeback@writeback-check-output-xrgb2101010.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg2-set2: [SKIP][292] ([Intel XE#756]) -> [SKIP][293] ([Intel XE#2423] / [i915#2575]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at kms_writeback@writeback-check-output-xrgb2101010.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at xe_eudebug_online@single-step-one: - shard-bmg: [SKIP][294] ([Intel XE#2905]) -> [SKIP][295] ([Intel XE#1130]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_eudebug_online@single-step-one.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at xe_eudebug_online@single-step-one.html - shard-dg2-set2: [SKIP][296] ([Intel XE#2905]) -> [SKIP][297] ([Intel XE#1130]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_eudebug_online@single-step-one.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at xe_eudebug_online@single-step-one.html * igt at xe_exec_basic@multigpu-no-exec-basic: - shard-bmg: [SKIP][298] ([Intel XE#2322]) -> [SKIP][299] ([Intel XE#1130]) +2 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at xe_exec_basic@multigpu-no-exec-basic.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at xe_exec_basic@multigpu-no-exec-basic.html * igt at xe_exec_fault_mode@many-execqueues-userptr-imm: - shard-dg2-set2: [SKIP][300] ([Intel XE#288]) -> [SKIP][301] ([Intel XE#1130]) +2 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_exec_fault_mode@many-execqueues-userptr-imm.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at xe_exec_fault_mode@many-execqueues-userptr-imm.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][302] ([Intel XE#2833]) -> [SKIP][303] ([Intel XE#1192]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_live_ktest@xe_eudebug.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-2/igt at xe_live_ktest@xe_eudebug.html * igt at xe_oa@syncs-userptr-wait-cfg: - shard-dg2-set2: [SKIP][304] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][305] ([Intel XE#1130]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_oa@syncs-userptr-wait-cfg.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at xe_oa@syncs-userptr-wait-cfg.html * igt at xe_peer2peer@read: - shard-bmg: [SKIP][306] ([Intel XE#2427]) -> [SKIP][307] ([Intel XE#2557]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_peer2peer@read.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at xe_peer2peer@read.html - shard-dg2-set2: [FAIL][308] ([Intel XE#1173]) -> [SKIP][309] ([Intel XE#1061]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at xe_peer2peer@read.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at xe_peer2peer@read.html * igt at xe_query@multigpu-query-hwconfig: - shard-bmg: [SKIP][310] ([Intel XE#944]) -> [SKIP][311] ([Intel XE#1130]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_query@multigpu-query-hwconfig.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at xe_query@multigpu-query-hwconfig.html - shard-dg2-set2: [SKIP][312] ([Intel XE#944]) -> [SKIP][313] ([Intel XE#1130]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_query@multigpu-query-hwconfig.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-463/igt at xe_query@multigpu-query-hwconfig.html [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#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [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#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [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#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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [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#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#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [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#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#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820 [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#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4075 [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#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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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_8193 -> IGTPW_12443 IGTPW_12443: 04c5fd7cf2157d2ace31eae2ea3ee2420bddd284 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From swati2.sharma at intel.com Thu Jan 16 08:53:19 2025 From: swati2.sharma at intel.com (Sharma, Swati2) Date: Thu, 16 Jan 2025 14:23:19 +0530 Subject: [PATCH i-g-t] tests/kms_plane_scaling: get mode only after setting the output pipe In-Reply-To: <20250110123403.1818011-1-luciano.coelho@intel.com> References: <20250110123403.1818011-1-luciano.coelho@intel.com> Message-ID: Hi Luca, Patch LGTM. Reviewed-by: Swati Sharma Please add "Closes" tag with valid gitlab issue# in commit. On 10-01-2025 06:04 pm, Luca Coelho wrote: > We find the mode before adding the dynamic intel-max-source-size > subtests because we don't want to add substests that don't have a > valid mode. However, during the test itself, the mode info instance > is not valid anymore, because it is deallocated when setting the > output pipe. > > To solve this, we need to get the mode info _after_ setting the output > pipe. Avoid passing the mode to intel_max_source_size_test(), pass > the entire invalid_paramtests struct and let the function find the > correct mode info again. > > Signed-off-by: Luca Coelho > --- > tests/kms_plane_scaling.c | 29 ++++++++++++++++++----------- > 1 file changed, 18 insertions(+), 11 deletions(-) > > diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c > index 43f578d5553b..4e74f0e107df 100644 > --- a/tests/kms_plane_scaling.c > +++ b/tests/kms_plane_scaling.c > @@ -1271,15 +1271,26 @@ static drmModeModeInfo *find_mode(data_t *data, igt_output_t *output, const stru > * max_dst_h = 8192 > */ > static void intel_max_source_size_test(data_t *d, enum pipe pipe, igt_output_t *output, > - drmModeModeInfo *mode, const uint32_t planesize[]) > + const struct invalid_paramtests *param) > { > igt_fb_t fb; > igt_plane_t *plane; > int rval; > + drmModeModeInfo *mode = NULL; > > cleanup_crtc(d); > > igt_output_set_pipe(output, pipe); > + > + /* > + * Need to get the mode again, because it may have changed > + * after setting the pipe. > + */ > + mode = find_mode(d, output, param); > + igt_assert(mode); > + if (!mode) > + return; > + > igt_output_override_mode(output, mode); > plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > > @@ -1290,7 +1301,7 @@ static void intel_max_source_size_test(data_t *d, enum pipe pipe, igt_output_t * > > igt_plane_set_position(plane, 0, 0); > igt_plane_set_fb(plane, &fb); > - igt_plane_set_size(plane, planesize[0], planesize[1]); > + igt_plane_set_size(plane, param->planesize[0], param->planesize[1]); > > rval = igt_display_try_commit2(&d->display, COMMIT_ATOMIC); > > @@ -1563,27 +1574,23 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > igt_require_intel(data.drm_fd); > for_each_pipe(&data.display, pipe) { > for_each_valid_output_on_pipe(&data.display, pipe, output) { > - drmModeModeInfo *mode = NULL; > - > if (get_num_scalers(&data.display, pipe) < 1) > continue; > /* > * Need to find mode with lowest vrefresh else > * we can exceed cdclk limits. > */ > - mode = find_mode(&data, output, &intel_paramtests[index]); > - if (mode) { > + if (find_mode(&data, output, &intel_paramtests[index])) > igt_dynamic_f("pipe-%s-%s", > - kmstest_pipe_name(pipe), igt_output_name(output)) > - intel_max_source_size_test(&data, pipe, output, mode, > - intel_paramtests[index].planesize); > - } else { > + kmstest_pipe_name(pipe), igt_output_name(output)) > + intel_max_source_size_test(&data, pipe, output, > + &intel_paramtests[index]); > + else > igt_info("Unable to find the lowest " \ > "refresh rate mode on output " \ > "%s pipe %s\n", > igt_output_name(output), > kmstest_pipe_name(pipe)); > - } > continue; > } > break; From dev at lankhorst.se Wed Jan 15 11:55:11 2025 From: dev at lankhorst.se (Maarten Lankhorst) Date: Wed, 15 Jan 2025 12:55:11 +0100 Subject: [PATCH i-g-t] tests/xe: Add xe_cg_dmem test Message-ID: <20250115115512.84520-1-dev@lankhorst.se> This adds test to ensure the basic functionality of dmem works as expected on discrete platforms. Signed-off-by: Maarten Lankhorst --- tests/intel/xe_cg_dmem.c | 379 +++++++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 380 insertions(+) create mode 100644 tests/intel/xe_cg_dmem.c diff --git a/tests/intel/xe_cg_dmem.c b/tests/intel/xe_cg_dmem.c new file mode 100644 index 000000000..2924fd973 --- /dev/null +++ b/tests/intel/xe_cg_dmem.c @@ -0,0 +1,379 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright ? 2023 Intel Corporation + */ + +/** + * TEST: Check cgroup VRAM allocation limits + * Category: Software building block + * Sub-category: cgroup + * Test category: functionality test + * Run type: BAT + * Description: Test that the dmem cgroup works as intended. + * Mega feature: General Core features + * Functionality: cgroup +*/ + +#include +#include +#include +#include + +#include "igt.h" +#include "igt_device.h" +#include "igt_sysfs.h" + +#include "xe_drm.h" +#include "xe/xe_ioctl.h" +#include "xe/xe_query.h" + +static int cgfd = -1, igtcg = -1, cg1 = -1, cg1_1 = -1, cg1_2 = -1, cg2 = -1; +static char cgid[64]; + +/* + * cgroups: + * / cg1_1 + * /sys/fs/cgroup (cgfd) / igtcg / cg1 /- cg1_2 + * / cg2 + */ + +static void set_cgrp(int cg) +{ + igt_sysfs_set_u32(cg, "cgroup.procs", getpid()); +} + +static inline void set_cg_val(int cg, const char *resource, int64_t val) +{ + if (val >= 0) + igt_assert(igt_sysfs_printf(cg, resource, "%s %"PRIu64, cgid, val)); + else + igt_assert(igt_sysfs_printf(cg, resource, "%s max", cgid)); +} + +static void set_cgrp_min(int cg, int64_t min) +{ + set_cg_val(cg, "dmem.min", min); +} + +static void set_cgrp_low(int cg, int64_t low) +{ + set_cg_val(cg, "dmem.low", low); +} + +static void set_cgrp_max(int cg, int64_t max) +{ + set_cg_val(cg, "dmem.max", max); +} + +static int64_t get_cg_val(int cg, const char *resource) +{ + char *devstr, *valstr, *str; + int64_t val; + + str = igt_sysfs_get(cg, resource); + igt_assert(str); + devstr = strstr(str, cgid); + igt_assert(devstr); + + /* Only care about the line describing this region, terminate if needed */ + devstr = strtok(devstr, "\n"); + + valstr = strstr(devstr, " ") + 1; + if (!strcmp(valstr, "max")) + val = INT64_MAX; + else + val = strtoll(valstr, NULL, 10); + + free(str); + return val; +} + +static int64_t get_cgrp_min(int cg) +{ + return get_cg_val(cg, "dmem.min"); +} + +static int64_t get_cgrp_low(int cg) +{ + return get_cg_val(cg, "dmem.low"); +} + +static int64_t get_cgrp_max(int cg) +{ + return get_cg_val(cg, "dmem.max"); +} + +static int64_t get_cgrp_current(int cg) +{ + return get_cg_val(cg, "dmem.current"); +} + +static void assert_all_cgs_empty(void) +{ + igt_assert(!get_cgrp_current(igtcg)); +} + +static void reset_cgs(void) +{ + int i, fds[] = { igtcg, cg1, cg1_1, cg1_2, cg2 }; + set_cgrp(cgfd); + + for (i = 0; i < ARRAY_SIZE(fds); i++) { + int cg = fds[i]; + + set_cgrp_min(cg, 0); + set_cgrp_low(cg, 0); + set_cgrp_max(cg, -1); + } +} + +static void cleanup_cg(int sig) +{ + /* Move self to root so we can rmdir */ + set_cgrp(cgfd); + + unlinkat(cg1, "cg1_1", AT_REMOVEDIR); + unlinkat(cg1, "cg1_2", AT_REMOVEDIR); + unlinkat(igtcg, "cg1", AT_REMOVEDIR); + unlinkat(igtcg, "cg2", AT_REMOVEDIR); + unlinkat(cgfd, "igtcg", AT_REMOVEDIR); + + /* leak fd's at exit, nobody cares */ +} + +static int mkcgrp(int fd, const char *name) +{ + int err; + + /* Check and enable controller */ + igt_require(igt_sysfs_set(fd, "cgroup.subtree_control", "+dmem")); + + err = mkdirat(fd, name, 0755); + if (!err || (err == -1 && errno == EEXIST)) + err = openat(fd, name, O_RDONLY); + igt_assert(err >= 0); + return err; +} + +static void create_cgroups(void) +{ + char *controllers; + cgfd = open("/sys/fs/cgroup", O_RDONLY); + igt_require(cgfd >= 0); + + controllers = igt_sysfs_get(cgfd, "cgroup.controllers"); + igt_require(controllers && strstr(controllers, "dmem")); + free(controllers); + + igt_install_exit_handler(cleanup_cg); + + /* Populate cg's */ + igtcg = mkcgrp(cgfd, "igtcg"); + cg1 = mkcgrp(igtcg, "cg1"); + cg1_1 = mkcgrp(cg1, "cg1_1"); + cg1_2 = mkcgrp(cg1, "cg1_2"); + cg2 = mkcgrp(igtcg, "cg2"); +} + +static int bo_create_at(struct xe_device *xe, int cg, uint64_t bo_size) +{ + struct drm_xe_gem_create create = { + .placement = vram_if_possible(xe->fd, 0), + .cpu_caching = __xe_default_cpu_caching(xe->fd, create.placement, 0), + .size = bo_size, + }; + + set_cgrp(cg); + + if (igt_ioctl(xe->fd, DRM_IOCTL_XE_GEM_CREATE, &create) < 0) { + igt_debug("Creating bo with size %"PRIu64" returned -1/%m\n", bo_size); + return -errno; + } + + igt_debug("Creating bo with size %"PRIu64" and handle %u\n", bo_size, create.handle); + return create.handle; +} + +/** + * SUBTEST: functional + * Description: Test if written values can be read back, + * to rule out copy/paste errors. + */ +static void test_functional(void) +{ + set_cgrp_min(igtcg, 12345); + set_cgrp_low(igtcg, 54321); + set_cgrp_max(igtcg, 67890); + + igt_assert_eq_u64(get_cgrp_min(igtcg), 12345); + igt_assert_eq_u64(get_cgrp_low(igtcg), 54321); + igt_assert_eq_u64(get_cgrp_max(igtcg), 67890); + + set_cgrp_min(igtcg, -1); + set_cgrp_low(igtcg, -1); + set_cgrp_max(igtcg, -1); + + igt_assert_eq_u64(get_cgrp_min(igtcg), INT64_MAX); + igt_assert_eq_u64(get_cgrp_low(igtcg), INT64_MAX); + igt_assert_eq_u64(get_cgrp_max(igtcg), INT64_MAX); + + set_cgrp_min(igtcg, 0); + set_cgrp_low(igtcg, 0); + set_cgrp_max(igtcg, 0); + igt_assert_eq_u64(get_cgrp_low(igtcg), 0); + igt_assert_eq_u64(get_cgrp_max(igtcg), 0); + igt_assert_eq_u64(get_cgrp_min(igtcg), 0); +} + +/** + * SUBTEST: test-simple-max + * Description: Test that cgroup max limits are respected between + * various nestings of cgroups, and correct cgroups are evicted. + */ +static void test_simple_max(struct xe_device *xe) +{ + uint64_t bo_size = xe->default_alignment; + int bo1, bo1_1, bo1_2; + + /* Test if we set cgroup limits, that they are respected */ + assert_all_cgs_empty(); + + reset_cgs(); + + set_cgrp_max(igtcg, 0); + igt_assert(get_cgrp_max(igtcg) == 0); + set_cgrp_max(cg1, 2 * bo_size); + set_cgrp_max(cg1_1, 2 * bo_size); + set_cgrp_max(cg1_2, bo_size); + set_cgrp_max(cg2, -1); + igt_assert(get_cgrp_max(cg2) == INT64_MAX); + + /* First check if top cg limit (of igtcg) is not ignored */ + igt_assert_eq(-ENOMEM, bo_create_at(xe, cg1_1, bo_size)); + + assert_all_cgs_empty(); + set_cgrp_max(igtcg, 4 * bo_size); + + /* Same cg limit? */ + bo1_1 = bo_create_at(xe, cg1_1, 2 * bo_size); + igt_assert(bo1_1 > 0); + + set_cgrp_max(cg1, 3 * bo_size); + bo1_2 = bo_create_at(xe, cg1_2, bo_size); + igt_assert(bo1_2 > 0); + + /* Create a too big bo and check if 1_2 is evicted */ + igt_assert_eq(-ENOMEM, bo_create_at(xe, cg1_2, 4 * bo_size)); + igt_assert_eq_u64(0, get_cgrp_current(cg1_2)); + + gem_close(xe->fd, bo1_2); + bo1_2 = bo_create_at(xe, cg1_2, bo_size); + igt_assert(bo1_2 > 0); + + set_cgrp_max(cg1, 4 * bo_size); + bo1 = bo_create_at(xe, cg1_1, bo_size); + igt_assert(bo1 > 0); + + gem_close(xe->fd, bo1_2); + gem_close(xe->fd, bo1_1); + gem_close(xe->fd, bo1); +} + +static void create_cg1_min(struct xe_device *xe, int *bo1_1, int *bo1_2) +{ + uint64_t bo_size = xe->default_alignment; + + if (*bo1_1 > 0) + gem_close(xe->fd, *bo1_1); + + if (*bo1_2 > 0) + gem_close(xe->fd, *bo1_2); + + *bo1_1 = bo_create_at(xe, cg1_1, bo_size); + igt_assert(*bo1_1 > 0); + + *bo1_2 = bo_create_at(xe, cg1_2, bo_size); + igt_assert(*bo1_2 > 0); +} + +/** + * SUBTEST: test-simple-min + * Description: Test that cgroup min limits are respected between + * various nestings of cgroups, and correct cgroups are evicted. + */ +static void test_simple_min(struct xe_device *xe) +{ + uint64_t bo_size = xe->default_alignment; + int bo1_1 = -1, bo1_2 = -1, bo2; + + assert_all_cgs_empty(); + reset_cgs(); + + /* set static max of 2 bo's for testing, allow protection as well on cg1 */ + set_cgrp_max(igtcg, 2 * bo_size); + set_cgrp_min(igtcg, 2 * bo_size); + set_cgrp_min(cg1, 2 * bo_size); + set_cgrp_min(cg1_1, bo_size); + set_cgrp_min(cg1_2, bo_size); + + create_cg1_min(xe, &bo1_1, &bo1_2); + + igt_assert_eq_u64(get_cgrp_current(cg1), 2 * bo_size); + + bo2 = bo_create_at(xe, cg2, bo_size); + igt_assert_eq_u64(get_cgrp_current(cg1), 2 * bo_size); + igt_assert_eq(bo2, -ENOMEM); + + /* Unprotect one */ + set_cgrp_min(cg1, bo_size); + set_cgrp_min(cg1_2, 0); + + bo2 = bo_create_at(xe, cg2, bo_size); + /* Verify cg1_2 is evicted, cg1_1 not */ + igt_assert_eq_u64(get_cgrp_current(cg1_2), 0); + igt_assert_eq_u64(get_cgrp_current(cg1), bo_size); + igt_assert_eq_u64(get_cgrp_current(igtcg), 2 * bo_size); + igt_assert(bo2 > 0); + + gem_close(xe->fd, bo2); + gem_close(xe->fd, bo1_1); + gem_close(xe->fd, bo1_2); +} + +igt_main +{ + struct xe_device *xe; + int fd; + + igt_fixture { + char *data; + char busid[32]; + + fd = drm_open_driver(DRIVER_XE); + xe = xe_device_get(fd); + + /* XXX: Easier way to determine busid? */ + igt_device_get_pci_slot_name(fd, busid); + + /* For now, require VRAM as shared memory lacks support */ + igt_require(xe->has_vram); + sprintf(cgid, "drm/%s/vram0", busid); + + create_cgroups(); + + data = igt_sysfs_get(cgfd, "dmem.capacity"); + igt_debug("Contents: %s\n", data); + /* Ensure our driver is found" */ + igt_require_f(strstr(data, busid), "Is driver xe/%s supported by dmem controller?\n", busid); + free(data); + } + + igt_subtest("functional") + test_functional(); + + igt_subtest("test-simple-max") + test_simple_max(xe); + + igt_subtest("test-simple-min") + test_simple_min(xe); +} diff --git a/tests/meson.build b/tests/meson.build index a6750d523..f2a0dea88 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -273,6 +273,7 @@ intel_kms_progs = [ intel_xe_progs = [ 'xe_wedged', 'xe_ccs', + 'xe_cg_dmem', 'xe_create', 'xe_compute', 'xe_compute_preempt', -- 2.43.0 From kamil.konieczny at linux.intel.com Thu Jan 16 09:13:49 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Thu, 16 Jan 2025 10:13:49 +0100 Subject: =?utf-8?Q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests=2Fint?= =?utf-8?Q?el=2Fxe=5Fpm=5Fresidency?= =?utf-8?Q?=3A?= Skip on igt_power_open failure (rev6) In-Reply-To: <173701756780.202820.14978393074699290892@b555e5b46a47> References: <20250110212237.4052-1-jonathan.cavitt@intel.com> <173701756780.202820.14978393074699290892@b555e5b46a47> Message-ID: <20250116091349.6ounyoplgxsfgtno@kamilkon-desk.igk.intel.com> Hi igt-dev, On 2025-01-16 at 08:52:47 -0000, Patchwork wrote: below failures are unrelated, Regards, Kamil > == Series Details == > > Series: tests/intel/xe_pm_residency: Skip on igt_power_open failure (rev6) > URL : https://patchwork.freedesktop.org/series/139352/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8193_full -> XEIGTPW_12443_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_12443_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_12443_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_12443_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3: > - shard-bmg: [PASS][1] -> [FAIL][2] > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3.html > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3.html > > * igt at kms_flip@flip-vs-suspend-interruptible at d-dp4: > - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html > [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-dg2-464/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html > > * igt at kms_sequence@get-busy: > - shard-bmg: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_sequence@get-busy.html > [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-4/igt at kms_sequence@get-busy.html > > > #### Warnings #### > > * igt at kms_flip@flip-vs-expired-vblank: > - shard-bmg: [FAIL][7] ([Intel XE#2882]) -> [FAIL][8] > [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank.html > [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank.html > > > Known issues > ------------ > > Here are the changes found in XEIGTPW_12443_full that come from known issues: > ...cut... > [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_8193 -> IGTPW_12443 > > IGTPW_12443: 04c5fd7cf2157d2ace31eae2ea3ee2420bddd284 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12443/index.html From patchwork at emeril.freedesktop.org Thu Jan 16 09:38:08 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 09:38:08 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Xe=3A_Add_tests_for_PXP_?= =?utf-8?q?=28rev2=29?= In-Reply-To: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> Message-ID: <173702028862.226957.15853587055174444423@b555e5b46a47> == Series Details == Series: Xe: Add tests for PXP (rev2) URL : https://patchwork.freedesktop.org/series/142450/ State : failure == Summary == CI Bug Log - changes from XEIGT_8193_full -> XEIGTPW_12444_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12444_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12444_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_12444_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@dpms-vs-vblank-race-interruptible at a-dp2: - shard-bmg: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_flip@dpms-vs-vblank-race-interruptible at a-dp2.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-4/igt at kms_flip@dpms-vs-vblank-race-interruptible at a-dp2.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-lnl: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-8/igt at kms_flip@flip-vs-suspend-interruptible.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-7/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-blt: - shard-dg2-set2: [PASS][5] -> [DMESG-WARN][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-dg2-set2: [PASS][7] -> [ABORT][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_pipe_crc_basic@suspend-read-crc.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-432/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-d-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [ABORT][9] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-432/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-d-hdmi-a-2.html * igt at kms_rotation_crc@multiplane-rotation-cropping-top: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][10] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_rotation_crc@multiplane-rotation-cropping-top.html * igt at xe_exec_balancer@many-parallel-userptr-rebind: - shard-bmg: [PASS][11] -> [INCOMPLETE][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_exec_balancer@many-parallel-userptr-rebind.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-4/igt at xe_exec_balancer@many-parallel-userptr-rebind.html * igt at xe_pxp@pxp-stale-bo-bind-post-suspend (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][13] +14 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-435/igt at xe_pxp@pxp-stale-bo-bind-post-suspend.html * igt at xe_pxp@pxp-termination-key-update-post-suspend (NEW): - shard-bmg: NOTRUN -> [SKIP][14] +18 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at xe_pxp@pxp-termination-key-update-post-suspend.html * igt at xe_query@multigpu-query-pxp-status (NEW): - shard-lnl: NOTRUN -> [SKIP][15] +14 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-4/igt at xe_query@multigpu-query-pxp-status.html New tests --------- New tests have been introduced between XEIGT_8193_full and XEIGTPW_12444_full: ### New IGT tests (20) ### * igt at xe_pxp@display-black-pxp-fb: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_pxp@display-pxp-fb: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at xe_pxp@pxp-bo-alloc: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at xe_pxp@pxp-optout: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at xe_pxp@pxp-queue-alloc: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_pxp@pxp-src-to-pxp-dest-rendercopy: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_pxp@pxp-stale-bo-bind-post-rpm: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at xe_pxp@pxp-stale-bo-bind-post-suspend: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_pxp@pxp-stale-bo-bind-post-termination-irq: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at xe_pxp@pxp-stale-bo-exec-post-rpm: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_pxp@pxp-stale-bo-exec-post-suspend: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_pxp@pxp-stale-bo-exec-post-termination-irq: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_pxp@pxp-stale-queue-post-suspend: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at xe_pxp@pxp-stale-queue-post-termination-irq: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_pxp@pxp-termination-key-update-post-rpm: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt at xe_pxp@pxp-termination-key-update-post-suspend: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_pxp@pxp-termination-key-update-post-termination-irq: - Statuses : - Exec time: [None] s * igt at xe_pxp@regular-src-to-pxp-dest-rendercopy: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_query@multigpu-query-pxp-status: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_query@query-pxp-status: - Statuses : 3 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12444_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at fbdev@write: - shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#2134]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at fbdev@write.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at fbdev@write.html - shard-bmg: [PASS][18] -> [SKIP][19] ([Intel XE#2134]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at fbdev@write.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at fbdev@write.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-dp-4: - shard-dg2-set2: [PASS][20] -> [FAIL][21] ([Intel XE#827]) +1 other test fail [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-dp-4.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-435/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-dp-4.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-dp-2-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2550] / [Intel XE#3767]) +23 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-432/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-dp-2-4-rc-ccs-cc.html * igt at kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#873]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-5/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-8bpp-rotate-180: - shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_big_fb@4-tiled-8bpp-rotate-180.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_big_fb@4-tiled-8bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1407]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-3/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: [PASS][27] -> [SKIP][28] ([Intel XE#2136]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@x-tiled-32bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_big_fb@x-tiled-32bpp-rotate-0.html * igt at kms_big_fb@x-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2327]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html * igt at kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#316]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-435/igt at kms_big_fb@x-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-16bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +4 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-5/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1467]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-3/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#610]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-463/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: NOTRUN -> [SKIP][35] ([Intel XE#1124]) +6 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-463/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#619]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-433/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#367]) +5 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-433/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#2191]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-435/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#367]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-7/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#2907]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-463/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2887]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc at pipe-c-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#787]) +174 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-432/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc at pipe-c-dp-2.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#455] / [Intel XE#787]) +41 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-433/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#2887]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-5/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][47] -> [INCOMPLETE][48] ([Intel XE#2692]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/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-cc: - shard-dg2-set2: [PASS][49] -> [INCOMPLETE][50] ([Intel XE#1727] / [Intel XE#3124]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-463/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][51] -> [INCOMPLETE][52] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-463/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-4-tiled-dg2-rc-ccs at pipe-c-dp-4: - shard-dg2-set2: [PASS][53] -> [INCOMPLETE][54] ([Intel XE#2705]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-dp-4.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-dp-4.html * igt at kms_cdclk@mode-transition at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#314]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-432/igt at kms_cdclk@mode-transition at pipe-a-dp-2.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#306]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-463/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#373]) +7 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#373]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-4/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2390]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-7/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@legacy at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][60] ([Intel XE#1178]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-432/igt at kms_content_protection@legacy at pipe-a-dp-2.html * igt at kms_content_protection@lic-type-0: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#3278]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-6/igt at kms_content_protection@lic-type-0.html * igt at kms_cursor_crc@cursor-offscreen-128x128: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_cursor_crc@cursor-offscreen-128x128.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#2321]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-4/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2320]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_cursor_crc@cursor-sliding-max-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#2291]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][67] -> [DMESG-WARN][68] ([Intel XE#877]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#309]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-1/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1508]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-5/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dp_aux_dev: - shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#3009]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_dp_aux_dev.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#3070]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_dp_linktrain_fallback@dp-fallback.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2372]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#701]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-463/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1138]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-436/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#1135]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-463/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1421]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-8/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][80] -> [FAIL][81] ([Intel XE#301]) +3 other tests fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [PASS][82] -> [SKIP][83] ([Intel XE#2316]) +7 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@dpms-vs-vblank-race-interruptible: - shard-bmg: [PASS][84] -> [FAIL][85] ([Intel XE#3098]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_flip@dpms-vs-vblank-race-interruptible.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-4/igt at kms_flip@dpms-vs-vblank-race-interruptible.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][86] ([Intel XE#301]) +1 other test fail [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-modeset-vs-hang: - shard-dg2-set2: [PASS][87] -> [SKIP][88] ([Intel XE#2423] / [i915#2575]) +10 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_flip@flip-vs-modeset-vs-hang.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_flip@flip-vs-modeset-vs-hang.html * igt at kms_flip@wf_vblank-ts-check: - shard-bmg: [PASS][89] -> [FAIL][90] ([Intel XE#2882]) +4 other tests fail [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@wf_vblank-ts-check.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-7/igt at kms_flip@wf_vblank-ts-check.html - shard-lnl: [PASS][91] -> [FAIL][92] ([Intel XE#3149] / [Intel XE#886]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at kms_flip@wf_vblank-ts-check.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-4/igt at kms_flip@wf_vblank-ts-check.html * igt at kms_flip@wf_vblank-ts-check at a-edp1: - shard-lnl: [PASS][93] -> [FAIL][94] ([Intel XE#886]) +6 other tests fail [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at kms_flip@wf_vblank-ts-check at a-edp1.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-4/igt at kms_flip@wf_vblank-ts-check at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2136]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1401]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-8/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1397] / [Intel XE#1745]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1397]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([i915#5274]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-435/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2311]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#651]) +32 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [FAIL][103] ([Intel XE#2333]) +1 other test fail [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#656]) +11 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-3/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#651]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2313]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2312]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#653]) +33 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#605]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-434/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@static-toggle-suspend: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1503]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-1/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#346]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-433/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][112] -> [SKIP][113] ([Intel XE#3012]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_joiner@invalid-modeset-force-big-joiner.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_plane_alpha_blend@alpha-transparent-fb: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#3007]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_plane_alpha_blend@alpha-transparent-fb.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][115] ([Intel XE#616]) +3 other tests fail [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-463/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2763]) +5 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-433/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-a.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-434/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d.html * igt at kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#870]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#870]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-7/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1129]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-434/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-bmg: [PASS][121] -> [SKIP][122] ([Intel XE#2446]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg2-set2: [PASS][123] -> [SKIP][124] ([Intel XE#2446]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_properties@crtc-properties-atomic: - shard-bmg: [PASS][125] -> [SKIP][126] ([Intel XE#3007]) +10 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_properties@crtc-properties-atomic.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_properties@crtc-properties-atomic.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2893]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-8/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#1489]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-4/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1489]) +8 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-433/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_psr@psr-basic.html * igt at kms_psr@psr2-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_psr@psr2-dpms.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#3414]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-436/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#1127]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][134] -> [SKIP][135] ([Intel XE#1435]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_setmode@invalid-clone-single-crtc.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#362]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [PASS][137] -> [FAIL][138] ([Intel XE#899]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-4/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.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_8193/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_12444/shard-lnl-6/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#455]) +16 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-435/igt at kms_vrr@flipline.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#2168]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-check-output: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#756]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-4/igt at kms_writeback@writeback-check-output.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1126]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-433/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#3889]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#3889]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-6/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug_online@interrupt-other-debuggable: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2905]) +11 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-436/igt at xe_eudebug_online@interrupt-other-debuggable.html * igt at xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2905]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#688]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-8/igt at xe_evict@evict-large-multi-vm.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue: - shard-dg2-set2: [PASS][150] -> [SKIP][151] ([Intel XE#1392]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#1392]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2322]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html * igt at xe_exec_basic@multigpu-once-null: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1392]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-4/igt at xe_exec_basic@multigpu-once-null.html * igt at xe_exec_basic@once-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#1130]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at xe_exec_basic@once-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#1130]) +4 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at xe_exec_fault_mode@twice-invalid-fault.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#288]) +24 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-432/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#2905]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-5/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate: - shard-dg2-set2: [PASS][159] -> [SKIP][160] ([Intel XE#1130]) +11 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate.html * igt at xe_exec_threads@threads-mixed-fd-userptr-invalidate-race: - shard-bmg: [PASS][161] -> [SKIP][162] ([Intel XE#1130]) +16 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_exec_threads@threads-mixed-fd-userptr-invalidate-race.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at xe_exec_threads@threads-mixed-fd-userptr-invalidate-race.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [PASS][163] -> [SKIP][164] ([Intel XE#1192]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_live_ktest@xe_mocs.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at xe_live_ktest@xe_mocs.html * igt at xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#560]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-432/igt at xe_media_fill@media-fill.html * igt at xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#4045]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-1/igt at xe_mmap@pci-membarrier-parallel.html * igt at xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-433/igt at xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt at xe_peer2peer@write: - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#1061]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-432/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-435/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3hot-mmap-vram: - shard-bmg: [PASS][170] -> [FAIL][171] ([Intel XE#3290]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at xe_pm@d3hot-mmap-vram.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at xe_pm@d3hot-mmap-vram.html * igt at xe_pm@s2idle-vm-bind-prefetch: - shard-dg2-set2: [PASS][172] -> [ABORT][173] ([Intel XE#1358]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at xe_pm@s2idle-vm-bind-prefetch.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-prefetch.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#2284] / [Intel XE#366]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-5/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-dg2-set2: [PASS][175] -> [ABORT][176] ([Intel XE#1358] / [Intel XE#1794]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_pm@s4-vm-bind-unbind-all.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-432/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][177] -> [FAIL][178] ([Intel XE#958]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at xe_pm_residency@toggle-gt-c6.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-3/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-invalid-size: - shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#944]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-7/igt at xe_query@multigpu-query-invalid-size.html * igt at xe_query@multigpu-query-mem-usage: - shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#944]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-436/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#944]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-7/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#3342]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-434/igt at xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt at fbdev@pan: - shard-bmg: [SKIP][183] ([Intel XE#2134]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at fbdev@pan.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-4/igt at fbdev@pan.html * igt at kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][185] ([Intel XE#3007]) -> [PASS][186] +3 other tests pass [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_addfb_basic@bad-pitch-999.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_addfb_basic@bad-pitch-999.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][187] ([Intel XE#827]) -> [PASS][188] +1 other test pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][189] ([Intel XE#3862]) -> [PASS][190] +1 other test pass [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-463/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1: - shard-lnl: [FAIL][191] ([Intel XE#4075]) -> [PASS][192] +1 other test pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-6/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][193] ([Intel XE#2291]) -> [PASS][194] +6 other tests pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [FAIL][195] ([Intel XE#1475]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-4/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][197] ([Intel XE#2425]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_display_modes@extended-mode-basic.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3: - shard-bmg: [FAIL][199] ([Intel XE#3820]) -> [PASS][200] +4 other tests pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: [SKIP][201] ([Intel XE#2316]) -> [PASS][202] +5 other tests pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-7/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@dpms-vs-vblank-race: - shard-dg2-set2: [INCOMPLETE][203] ([Intel XE#2049]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-434/igt at kms_flip@dpms-vs-vblank-race.html * igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6: - shard-dg2-set2: [INCOMPLETE][205] -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-434/igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][207] ([Intel XE#886]) -> [PASS][208] +1 other test pass [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_flip@flip-vs-absolute-wf_vblank.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-3/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a6: - shard-dg2-set2: [FAIL][209] ([Intel XE#4072]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a6.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-434/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a6.html * igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a6: - shard-dg2-set2: [FAIL][211] ([Intel XE#886]) -> [PASS][212] +1 other test pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a6.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-434/igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank: - shard-bmg: [FAIL][213] ([Intel XE#2882]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][215] ([Intel XE#2882] / [Intel XE#3820]) -> [PASS][216] +2 other tests pass [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank at d-dp2: - shard-bmg: [FAIL][217] -> [PASS][218] +3 other tests pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at d-dp2.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank at d-dp2.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-bmg: [SKIP][219] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [SKIP][221] ([Intel XE#1503]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_hdr@invalid-hdr.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-4/igt at kms_hdr@invalid-hdr.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][223] ([Intel XE#1430]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at kms_pm_dc@dc6-psr.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-3/igt at kms_pm_dc@dc6-psr.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][225] ([Intel XE#899]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-4/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at xe_exec_basic@multigpu-no-exec-null: - shard-dg2-set2: [SKIP][227] ([Intel XE#1392]) -> [PASS][228] +1 other test pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-434/igt at xe_exec_basic@multigpu-no-exec-null.html * igt at xe_pm@s2idle-basic-exec: - shard-dg2-set2: [ABORT][229] ([Intel XE#1358]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_pm@s2idle-basic-exec.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-436/igt at xe_pm@s2idle-basic-exec.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][231] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][232] +1 other test pass [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-lnl-3/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm@s4-vm-bind-userptr: - shard-dg2-set2: [ABORT][233] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_pm@s4-vm-bind-userptr.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at xe_pm@s4-vm-bind-userptr.html * igt at xe_vm@bind-once: - shard-bmg: [SKIP][235] ([Intel XE#1130]) -> [PASS][236] +9 other tests pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_vm@bind-once.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at xe_vm@bind-once.html #### Warnings #### * igt at kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][237] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][238] ([Intel XE#1124]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-4/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [SKIP][239] ([Intel XE#1124]) -> [SKIP][240] ([Intel XE#2136] / [Intel XE#2231]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][241] ([Intel XE#367]) -> [SKIP][242] ([Intel XE#2423] / [i915#2575]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html - shard-bmg: [SKIP][243] ([Intel XE#367]) -> [SKIP][244] ([Intel XE#3007]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][245] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][246] ([Intel XE#2887]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][247] ([Intel XE#3432]) -> [SKIP][248] ([Intel XE#2136] / [Intel XE#2231]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][249] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][250] ([Intel XE#2136]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][251] ([Intel XE#3007]) -> [SKIP][252] ([Intel XE#2325]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_color@ctm-green-to-red.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-4/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-bmg: [SKIP][253] ([Intel XE#3007]) -> [SKIP][254] ([Intel XE#2252]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: [SKIP][255] ([Intel XE#373]) -> [SKIP][256] ([Intel XE#2423] / [i915#2575]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_chamelium_hpd@hdmi-hpd.html - shard-bmg: [SKIP][257] ([Intel XE#2252]) -> [SKIP][258] ([Intel XE#3007]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_hpd@hdmi-hpd.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_content_protection@legacy: - shard-bmg: [FAIL][259] ([Intel XE#1178]) -> [SKIP][260] ([Intel XE#2341]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_content_protection@legacy.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_content_protection@legacy.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: [SKIP][261] ([Intel XE#308]) -> [SKIP][262] ([Intel XE#2423] / [i915#2575]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at kms_cursor_crc@cursor-sliding-512x170.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_cursor_crc@cursor-sliding-512x170.html - shard-bmg: [SKIP][263] ([Intel XE#2321]) -> [SKIP][264] ([Intel XE#3007]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x170.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][265] ([Intel XE#877]) -> [SKIP][266] ([Intel XE#2291]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][267] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][268] ([Intel XE#2311]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][269] ([Intel XE#2311]) -> [SKIP][270] ([Intel XE#2136] / [Intel XE#2231]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html - shard-dg2-set2: [SKIP][271] ([Intel XE#651]) -> [SKIP][272] ([Intel XE#2136]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][273] ([Intel XE#2312]) -> [SKIP][274] ([Intel XE#2311]) +14 other tests skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: [SKIP][275] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][276] ([Intel XE#2333]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][277] ([Intel XE#2312]) -> [FAIL][278] ([Intel XE#2333]) +6 other tests fail [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][279] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][280] ([Intel XE#2312]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen: - shard-bmg: [FAIL][281] ([Intel XE#2333]) -> [SKIP][282] ([Intel XE#2312]) +6 other tests skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: [DMESG-FAIL][283] ([Intel XE#877]) -> [FAIL][284] ([Intel XE#2333]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][285] ([Intel XE#2311]) -> [SKIP][286] ([Intel XE#2312]) +24 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][287] ([Intel XE#2312]) -> [SKIP][288] ([Intel XE#2136] / [Intel XE#2231]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][289] ([Intel XE#2313]) -> [SKIP][290] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][291] ([Intel XE#653]) -> [SKIP][292] ([Intel XE#2136]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][293] ([Intel XE#2313]) -> [SKIP][294] ([Intel XE#2312]) +15 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][295] ([Intel XE#2312]) -> [SKIP][296] ([Intel XE#2313]) +9 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: [SKIP][297] ([Intel XE#2934]) -> [SKIP][298] ([Intel XE#2136] / [Intel XE#2231]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_joiner@invalid-modeset-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_8193/shard-dg2-434/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][301] ([Intel XE#2571]) -> [SKIP][302] ([Intel XE#3007]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-bmg: [SKIP][303] ([Intel XE#2763]) -> [SKIP][304] ([Intel XE#3007]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-bmg: [SKIP][305] ([Intel XE#1489]) -> [SKIP][306] ([Intel XE#2136] / [Intel XE#2231]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html - shard-dg2-set2: [SKIP][307] ([Intel XE#1489]) -> [SKIP][308] ([Intel XE#2136]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr@fbc-psr-primary-page-flip: - shard-dg2-set2: [SKIP][309] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][310] ([Intel XE#2136]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_psr@fbc-psr-primary-page-flip.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_psr@fbc-psr-primary-page-flip.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-bmg: [SKIP][311] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][312] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_psr@fbc-psr2-cursor-blt.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_psr@fbc-psr2-cursor-blt.html - shard-dg2-set2: [SKIP][313] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][314] ([Intel XE#2136] / [Intel XE#2351]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_psr@fbc-psr2-cursor-blt.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][315] ([Intel XE#2414]) -> [SKIP][316] ([Intel XE#2136] / [Intel XE#2231]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-dg2-set2: [SKIP][317] ([Intel XE#2939]) -> [SKIP][318] ([Intel XE#2136]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: [SKIP][319] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][320] ([Intel XE#3007]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-dg2-set2: [SKIP][321] ([Intel XE#3414]) -> [SKIP][322] ([Intel XE#2423] / [i915#2575]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][323] ([Intel XE#362]) -> [FAIL][324] ([Intel XE#1729]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-433/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][325] ([Intel XE#3007]) -> [SKIP][326] ([Intel XE#1499]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-virtual.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-6/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at xe_exec_fault_mode@once-bindexecqueue-userptr-rebind-imm: - shard-dg2-set2: [SKIP][327] ([Intel XE#288]) -> [SKIP][328] ([Intel XE#1130]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_exec_fault_mode@once-bindexecqueue-userptr-rebind-imm.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at xe_exec_fault_mode@once-bindexecqueue-userptr-rebind-imm.html * igt at xe_exec_sip_eudebug@breakpoint-waitsip: - shard-dg2-set2: [SKIP][329] ([Intel XE#2905]) -> [SKIP][330] ([Intel XE#1130]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_exec_sip_eudebug@breakpoint-waitsip.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at xe_exec_sip_eudebug@breakpoint-waitsip.html - shard-bmg: [SKIP][331] ([Intel XE#2905]) -> [SKIP][332] ([Intel XE#1130]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_exec_sip_eudebug@breakpoint-waitsip.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at xe_exec_sip_eudebug@breakpoint-waitsip.html * igt at xe_mmap@pci-membarrier-parallel: - shard-bmg: [SKIP][333] ([Intel XE#4045]) -> [SKIP][334] ([Intel XE#1130]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_mmap@pci-membarrier-parallel.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at xe_mmap@pci-membarrier-parallel.html - shard-dg2-set2: [SKIP][335] ([Intel XE#4045]) -> [SKIP][336] ([Intel XE#1130]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at xe_mmap@pci-membarrier-parallel.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at xe_mmap@pci-membarrier-parallel.html * igt at xe_oa@syncs-ufence-wait-cfg: - shard-dg2-set2: [SKIP][337] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][338] ([Intel XE#1130]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at xe_oa@syncs-ufence-wait-cfg.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at xe_oa@syncs-ufence-wait-cfg.html * igt at xe_pm@d3cold-multiple-execs: - shard-bmg: [SKIP][339] ([Intel XE#2284]) -> [SKIP][340] ([Intel XE#1130]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_pm@d3cold-multiple-execs.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-bmg-8/igt at xe_pm@d3cold-multiple-execs.html - shard-dg2-set2: [SKIP][341] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][342] ([Intel XE#1130]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_pm@d3cold-multiple-execs.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/shard-dg2-464/igt at xe_pm@d3cold-multiple-execs.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#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#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [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#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [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#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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [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#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [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#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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [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#3290]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3290 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [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#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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4072]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4072 [Intel XE#4075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4075 [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#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [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_8193 -> IGTPW_12444 IGTPW_12444: ea23248acfb2a3826eb32a4052d139b6cc5361cc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12444/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Thu Jan 16 09:41:34 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Thu, 16 Jan 2025 10:41:34 +0100 Subject: [PATCH v4] tests/intel/xe_pm_residency: Skip on igt_power_open failure In-Reply-To: <20250110212237.4052-1-jonathan.cavitt@intel.com> References: <20250110212237.4052-1-jonathan.cavitt@intel.com> Message-ID: <20250116094134.w3eompshuiimjsrr@kamilkon-desk.igk.intel.com> Hi Jonathan, On 2025-01-10 at 21:22:37 +0000, Jonathan Cavitt wrote: > The xe_pm_residency at toggle-gt-c6 test fails when > gt_c6_power >= gt_c0_power. These values are reported by > igt_power_get_mW, which will always report 0 in the case that > igt_power_open fails to open either the hwmon_fd or rapl.fd. Since the > expected result will always be a failure in this case, skip the > assertion that gt_c6_power < gt_c0_power. Applied, thanks! Regards, Kamil > > v2: Do not skip the full test, and instead only ignore the part that is > guaranteed to fail. > > v3: Use || instead of && (Riana) > > v4: Reprovision > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/958 > Signed-off-by: Jonathan Cavitt > Reviewed-by: Kamil Konieczny > Reviewed-by: Riana Tauro > --- > tests/intel/xe_pm_residency.c | 10 +++++++--- > 1 file changed, 7 insertions(+), 3 deletions(-) > > diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c > index 06f4a0bc6b..f9e96d6087 100644 > --- a/tests/intel/xe_pm_residency.c > +++ b/tests/intel/xe_pm_residency.c > @@ -289,10 +289,14 @@ static void measure_power(struct igt_power *gpu, double *power) > static void toggle_gt_c6(int fd, int n) > { > double gt_c0_power, gt_c6_power; > - int gt; > + int gt, ret; > struct igt_power gpu; > > - igt_power_open(fd, &gpu, "gpu"); > + /* > + * igt_power_get_mW will always return 0 if igt_power_open fails, > + * so skip the power check in this case. > + */ > + ret = igt_power_open(fd, &gpu, "gpu"); > > do { > fw_handle = igt_debugfs_open(fd, "forcewake_all", O_RDONLY); > @@ -319,7 +323,7 @@ static void toggle_gt_c6(int fd, int n) > igt_info("GPU consumed %fmW in GT C6 and %fmW in GT C0\n", gt_c6_power, gt_c0_power); > > /* FIXME: Remove dgfx check after hwmon is added */ > - if (!xe_has_vram(fd)) > + if (!(xe_has_vram(fd) || ret)) > igt_assert_f(gt_c6_power < gt_c0_power, > "Power consumed in GT C6 should be lower than GT C0\n"); > } > -- > 2.43.0 > From kamil.konieczny at linux.intel.com Thu Jan 16 09:51:01 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Thu, 16 Jan 2025 10:51:01 +0100 Subject: [PATCH i-g-t v2 3/5] runner/settings: Add function to set IGT_RUNNER_DATA environment variable In-Reply-To: <20250107200614.963199-4-ramanaidu.naladala@intel.com> References: <20250107200614.963199-1-ramanaidu.naladala@intel.com> <20250107200614.963199-4-ramanaidu.naladala@intel.com> Message-ID: <20250116095101.vnp2j6k44qxxoosh@kamilkon-desk.igk.intel.com> Hi Naladala, On 2025-01-08 at 01:36:12 +0530, Naladala Ramanaidu wrote: > Introduced set_runner_datadir() to set the IGT_RUNNER_DATA environment enviroment could be also read by test itself so imho better name for it would be IGT_DATA_PATH Regards, Kamil > variable. This function uses absolute_path() to convert the relative > path "../share/igt-gpu-tools" to an absolute path. Update the > runner/runner code to call set_runner_datadir() and handle errors > appropriately. > > v2: Fix review comments. (Kamil) > > Signed-off-by: Naladala Ramanaidu > --- > runner/runner.c | 8 ++++++++ > runner/settings.c | 9 +++++++++ > runner/settings.h | 1 + > 3 files changed, 18 insertions(+) > > diff --git a/runner/runner.c b/runner/runner.c > index 4855ad641..950eb5662 100644 > --- a/runner/runner.c > +++ b/runner/runner.c > @@ -12,8 +12,13 @@ int main(int argc, char **argv) > struct job_list job_list; > struct execute_state state; > int exitcode = 0; > + int data_flag = 0; > > init_settings(&settings); > + data_flag = set_runner_datadir(); > + if (data_flag) > + fprintf(stderr, "Data dir path not set\n"); > + > init_job_list(&job_list); > > if (!parse_options(argc, argv, &settings)) { > @@ -49,6 +54,9 @@ int main(int argc, char **argv) > exitcode = 1; > } > > + if (!data_flag) > + unsetenv("IGT_RUNNER_DATA"); > + > printf("Done.\n"); > return exitcode; > } > diff --git a/runner/settings.c b/runner/settings.c > index bea0c3059..c8220be32 100644 > --- a/runner/settings.c > +++ b/runner/settings.c > @@ -589,6 +589,15 @@ char *absolute_path(const char *path) > return result; > } > > +int set_runner_datadir(void) > +{ > + const char *datapath = "../share/igt-gpu-tools"; > + char *abpath; > + > + abpath = absolute_path(datapath); > + return setenv("IGT_RUNNER_DATA", abpath, 1); > +} > + > static char *bin_path(char *fname) > { > char *path, *p; > diff --git a/runner/settings.h b/runner/settings.h > index 7e6cd11e2..5926817b6 100644 > --- a/runner/settings.h > +++ b/runner/settings.h > @@ -150,5 +150,6 @@ bool serialize_settings(struct settings *settings); > > bool read_settings_from_file(struct settings *settings, FILE* f); > bool read_settings_from_dir(struct settings *settings, int dirfd); > +int set_runner_datadir(void); > > #endif > -- > 2.43.0 > From patchwork at emeril.freedesktop.org Thu Jan 16 10:09:27 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 10:09:27 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Initial_PTL_support_=28re?= =?utf-8?q?v6=29?= In-Reply-To: <20241218213654.2734573-1-clinton.a.taylor@intel.com> References: <20241218213654.2734573-1-clinton.a.taylor@intel.com> Message-ID: <173702216730.218583.6280263282946818543@b555e5b46a47> == Series Details == Series: Initial PTL support (rev6) URL : https://patchwork.freedesktop.org/series/141325/ State : success == Summary == CI Bug Log - changes from IGT_8183 -> IGTPW_12418 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12418 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@unbind-rebind: - fi-cfl-guc: [PASS][1] -> [ABORT][2] ([i915#13508]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/fi-cfl-guc/igt at core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/fi-cfl-guc/igt at core_hotunplug@unbind-rebind.html * igt at i915_selftest@live: - bat-arlh-2: [PASS][3] -> [INCOMPLETE][4] ([i915#13050]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-arlh-2/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-arlh-2/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_heartbeat: - bat-arlh-2: [PASS][5] -> [INCOMPLETE][6] ([i915#12445]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-arlh-2/igt at i915_selftest@live at gt_heartbeat.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-arlh-2/igt at i915_selftest@live at gt_heartbeat.html * igt at i915_selftest@live at workarounds: - 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_8183/bat-arls-5/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-arls-5/igt at i915_selftest@live at workarounds.html * igt at runner@aborted: - fi-pnv-d510: NOTRUN -> [FAIL][9] ([i915#13350]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/fi-pnv-d510/igt at runner@aborted.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-mtlp-9}: [DMESG-FAIL][10] ([i915#13393]) -> [PASS][11] +1 other test pass [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-mtlp-9/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#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#13050]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13050 [i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13508]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13508 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8183 -> IGTPW_12418 CI-20190529: 20190529 CI_DRM_15929: 14e0c4a8247c9514dc57b2231602fb6d9455802b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12418: 23052ace3ac04fd0203b573736255ba4919c63d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeevan.b at intel.com Thu Jan 16 10:24:47 2025 From: jeevan.b at intel.com (B, Jeevan) Date: Thu, 16 Jan 2025 10:24:47 +0000 Subject: [PATCH 3/4] tests/kms_feature_discovery: Add tests for UHBR/non-UHBR over SST/MST In-Reply-To: <20250115073243.2002014-4-kunal1.joshi@intel.com> References: <20250115073243.2002014-1-kunal1.joshi@intel.com> <20250115073243.2002014-4-kunal1.joshi@intel.com> Message-ID: > -----Original Message----- > From: igt-dev On Behalf Of Kunal Joshi > Sent: Wednesday, January 15, 2025 1:03 PM > To: igt-dev at lists.freedesktop.org > Cc: Joshi, Kunal1 > Subject: [PATCH 3/4] tests/kms_feature_discovery: Add tests for UHBR/non- > UHBR over SST/MST > > This patch introduces subtests in kms_feature_discovery.c to validate both UHBR > and non-UHBR link rates over SST and MST configurations. It adds four new > subtests (uhbr-sst, uhbr-mst, non-uhbr-sst, non-uhbr-mst) that check if the link > rates match the expected UHBR or non-UHBR capability and whether the outputs > are MST or SST. The new test logic integrates with recently introduced helpers > (kms_joiner_helper and kms_mst_helper) for display setup and pipe assignment. > The meson build script is also updated to compile these helper sources for > kms_feature_discovery. > > v2: Add definition for UHBR_LINK_RATE > LGTM Reviewed-by: Jeevan B > Signed-off-by: Kunal Joshi > --- > tests/kms_feature_discovery.c | 177 ++++++++++++++++++++++++++++++++++ > tests/meson.build | 4 + > 2 files changed, 181 insertions(+) > > diff --git a/tests/kms_feature_discovery.c b/tests/kms_feature_discovery.c index > 5bca9ad76..48e655c6d 100644 > --- a/tests/kms_feature_discovery.c > +++ b/tests/kms_feature_discovery.c > @@ -42,6 +42,8 @@ > #include "igt_psr.h" > #include "igt_sysfs.h" > #include "igt_types.h" > +#include "intel/kms_joiner_helper.h" > +#include "intel/kms_mst_helper.h" > > /** > * SUBTEST: display > @@ -71,10 +73,164 @@ > * Test category: functionality test > * > * arg[1].values: 1, 2, 3, 4 > + * > + * SUBTEST: uhbr-sst > + * Description: Test we can drive UHBR rates over SST. > + * Functionality: feature_discovery, uhbr, sst > + * Test category: functionality test > + * > + * SUBTEST: uhbr-mst > + * Description: Test we can drive UHBR rates over MST. > + * Functionality: feature_discovery, uhbr, mst > + * Test category: functionality test > + * > + * SUBTEST: non-uhbr-sst > + * Description: Test we can drive non-UHBR rates over SST. > + * Functionality: feature_discovery, sst > + * Test category: functionality test > + * > + * SUBTEST: non-uhbr-mst > + * Description: Test we can drive non-UHBR rates over MST. > + * Functionality: feature_discovery, mst > + * Test category: functionality test > + */ > + > +/* > + * DP Spec defines 10, 13.5, and 20 Gbps as UHBR > + * So considering all below as NON-UHBR > */ > +#define UHBR_LINK_RATE 1000000 > > static igt_display_t display; > > +static void setup_planes_fbs(int fd, igt_output_t *outputs[], > + int output_count, drmModeModeInfo * mode[], > + struct igt_fb fbs[], struct igt_plane *primarys[]) { > + int i; > + > + for (i = 0; i < output_count; i++) { > + mode[i] = igt_output_get_mode(outputs[i]); > + igt_info("Mode %dx%d@%d on output %s\n", > + mode[i]->hdisplay, mode[i]->vdisplay, > + mode[i]->vrefresh, > + igt_output_name(outputs[i])); > + primarys[i] = igt_output_get_plane_type(outputs[i], > + DRM_PLANE_TYPE_PRIMARY); > + igt_create_color_fb(fd, mode[i]->hdisplay, > + mode[i]->vdisplay, > + DRM_FORMAT_XRGB8888, > + DRM_FORMAT_MOD_LINEAR, > + 0.0, 1.0, 0.0, > + &fbs[i]); > + igt_plane_set_fb(primarys[i], &fbs[i]); > + } > +} > + > +static bool fit_modes_in_bw(void) > +{ > + bool found; > + int ret; > + > + ret = igt_display_try_commit_atomic(&display, > + DRM_MODE_ATOMIC_TEST_ONLY | > + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > + if (ret != 0) { > + found = > igt_override_all_active_output_modes_to_fit_bw(&display); > + igt_require_f(found, > + "No valid mode combo found for modeset\n"); > + } > + return true; > +} > + > +static void do_modeset(int fd, igt_output_t *output, > + bool mst, bool uhbr) > +{ > + int output_count = 0, n_pipes = 0, i; > + uint32_t master_pipes_mask = 0, valid_pipes_mask = 0, > used_pipes_mask = 0; > + igt_output_t *outputs[IGT_MAX_PIPES]; > + drmModeModeInfo * modes[IGT_MAX_PIPES]; > + struct igt_fb fbs[IGT_MAX_PIPES]; > + struct igt_plane *primarys[IGT_MAX_PIPES]; > + > + for_each_pipe(&display, i) { > + n_pipes++; > + valid_pipes_mask = valid_pipes_mask | BIT(i); > + } > + > + if (mst) > + igt_assert_f(igt_find_all_mst_output_in_topology(fd, > + &display, > + output, > + outputs, > + &output_count), > + "Unable to find mst outputs\n"); > + else > + outputs[output_count++] = output; > + > + igt_assert_f(output_count > 0, "Require at least 1 output\n"); > + igt_set_all_master_pipes_for_platform(&display, &master_pipes_mask); > + igt_assert_f(igt_assign_pipes_for_outputs(fd, outputs, > + output_count, n_pipes, > + &used_pipes_mask, > + master_pipes_mask, > + valid_pipes_mask), > + "Unable to assign pipes for outputs\n"); > + igt_assert_f(fit_modes_in_bw(), "Unable to fit modes in bw\n"); > + setup_planes_fbs(fd, outputs, output_count, modes, fbs, primarys); > + igt_display_commit2(&display, COMMIT_ATOMIC); } > + > +static bool run_link_rate_test(int fd, igt_output_t *output, > + bool mst, bool uhbr) > +{ > + bool is_uhbr, is_output_mst; > + > + igt_display_reset(&display); > + igt_reset_link_params(fd, output); > + > + is_output_mst = igt_check_output_is_dp_mst(output); > + is_uhbr = igt_get_max_link_rate(fd, output) >= UHBR_LINK_RATE; > + > + if ((mst && !is_output_mst) || (!mst && is_output_mst)) { > + igt_info("Skipping %s as test expects %s output and output is > %s\n", output->name, > + mst ? "mst" : "sst", is_output_mst ? "mst" : > "sst"); > + return false; > + } > + > + if ((uhbr && !is_uhbr) || (!uhbr && is_uhbr)) { > + igt_info("Test expects %s but output %s is %s\n", > + uhbr ? "uhbr" : "non-uhbr", output->name, > + is_uhbr ? "uhbr" : "non-uhbr"); > + return false; > + } > + > + do_modeset(fd, output, mst, uhbr); > + > + if (uhbr) > + return igt_get_current_link_rate(fd, output) >= > UHBR_LINK_RATE; > + else > + return igt_get_current_link_rate(fd, output) < UHBR_LINK_RATE; > } > + > +static bool test_link_rate(int fd, bool mst, bool uhbr) { > + bool ran = false; > + igt_output_t *output; > + > + igt_skip_on_f(!is_intel_device(fd), > + "Test supported only on intel platforms\n"); > + > + for_each_connected_output(&display, output) { > + if (output->config.connector->connector_type == > DRM_MODE_CONNECTOR_DisplayPort) > + ran = ran | run_link_rate_test(fd, output, mst, uhbr); > + else > + igt_info("Skipping non DisplayPort output %s\n", output- > >name); > + } > + > + return ran; > +} > + > IGT_TEST_DESCRIPTION("A metatest that checks for \"features\" presence. " > "The subtests here should only skip or pass, " > "anything else means we have a serious problem."); @@ - > 177,5 +333,26 @@ igt_main { > } > igt_require_f(ret == 0, "No DP-MST configuration > found.\n"); > } > + > + igt_describe("Test we can drive UHBR rates over SST"); > + igt_subtest("uhbr-sst") > + igt_require_f(test_link_rate(fd, false, true), > + "Didn't find any SST output with uhbr > rates"); > + > + igt_describe("Test we can drive UHBR rates over MST"); > + igt_subtest("uhbr-mst") > + igt_require_f(test_link_rate(fd, true, true), > + "Didn't find any MST output with uhbr > rates"); > + > + igt_describe("Test we can drive non uhbr rates over SST"); > + igt_subtest("non-uhbr-sst") > + igt_require_f(test_link_rate(fd, false, false), > + "Didn't find any SST output with non- > uhbr rates"); > + > + igt_describe("Test we can drive non uhbr rates over MST"); > + igt_subtest("non-uhbr-mst") > + igt_require_f(test_link_rate(fd, true, false), > + "Didn't find any MST output with non- > uhbr rates"); > + > } > } > diff --git a/tests/meson.build b/tests/meson.build index 6418899ca..851ca8fa5 > 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -366,6 +366,10 @@ extra_sources = { > 'kms_chamelium_frames': [ join_paths ('chamelium', > 'kms_chamelium_helper.c') ], > 'kms_chamelium_hpd': [ join_paths ('chamelium', > 'kms_chamelium_helper.c') ], > 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ], > + 'kms_feature_discovery': [ > + join_paths ('intel', 'kms_joiner_helper.c'), > + join_paths ('intel', 'kms_mst_helper.c') > + ], > 'kms_joiner': [join_paths ('intel', 'kms_joiner_helper.c')], > 'kms_dp_linktrain_fallback': [join_paths ('intel', 'kms_mst_helper.c')], > 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ], > -- > 2.25.1 From swati2.sharma at intel.com Thu Jan 16 10:39:16 2025 From: swati2.sharma at intel.com (Sharma, Swati2) Date: Thu, 16 Jan 2025 16:09:16 +0530 Subject: [PATCH] tests/chamelium/kms_chamelium_color: force connector reprobe after plugging ports In-Reply-To: <20250115151507.2023293-1-kunal1.joshi@intel.com> References: <20250115151507.2023293-1-kunal1.joshi@intel.com> Message-ID: <0dfb0496-b46c-4bca-ab6a-3d11afbd1ac6@intel.com> Hi Kunal, On 15-01-2025 08:45 pm, Kunal Joshi wrote: > Force reprobe connector status after plugging to assure > we always have DRM_MODE_CONNECTED status for the connector > before proceding with the test. > > Fixes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2371 > Signed-off-by: Kunal Joshi > --- > tests/chamelium/kms_chamelium_color.c | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/tests/chamelium/kms_chamelium_color.c b/tests/chamelium/kms_chamelium_color.c > index 5550cec22..7c88c022c 100644 > --- a/tests/chamelium/kms_chamelium_color.c > +++ b/tests/chamelium/kms_chamelium_color.c > @@ -749,8 +749,13 @@ igt_main > * discovered ports, just incase they are not plugged > * we currently skip in test_setup > */ > - for( i = 0; i < data.port_count; i++) > + for (i = 0; i < data.port_count; i++) { > chamelium_plug(data.chamelium, data.ports[i]); > + igt_assert_f(chamelium_reprobe_connector(&data.display, > + data.chamelium, > + data.ports[i]) == DRM_MODE_CONNECTED, > + "Output not connected\n"); Please add output name in print message. With this fixed. Patch LGTM Reviewed-by: Swati Sharma > + } > > kmstest_set_vt_graphics_mode(); > } From patchwork at emeril.freedesktop.org Thu Jan 16 11:06:30 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 11:06:30 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/xe=3A_Add_xe=5Fcg?= =?utf-8?q?=5Fdmem_test?= In-Reply-To: <20250115115512.84520-1-dev@lankhorst.se> References: <20250115115512.84520-1-dev@lankhorst.se> Message-ID: <173702559074.231007.1904380355365184311@b555e5b46a47> == Series Details == Series: tests/xe: Add xe_cg_dmem test URL : https://patchwork.freedesktop.org/series/143593/ State : success == Summary == CI Bug Log - changes from IGT_8193 -> IGTPW_12447 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/index.html Participating hosts (42 -> 41) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12447 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at runner@aborted: - fi-pnv-d510: NOTRUN -> [FAIL][1] ([i915#13350]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/fi-pnv-d510/igt at runner@aborted.html #### Possible fixes #### * igt at i915_pm_rpm@module-reload: - bat-mtlp-8: [INCOMPLETE][2] ([i915#13495]) -> [PASS][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-8/igt at i915_pm_rpm@module-reload.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/bat-mtlp-8/igt at i915_pm_rpm@module-reload.html * igt at i915_selftest@live at workarounds: - bat-arlh-3: [DMESG-FAIL][4] ([i915#13393]) -> [PASS][5] +1 other test pass [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-arlh-3/igt at i915_selftest@live at workarounds.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/bat-arlh-3/igt at i915_selftest@live at workarounds.html - bat-mtlp-6: [DMESG-FAIL][6] ([i915#13393]) -> [PASS][7] +1 other test pass [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13495]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13495 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8193 -> IGTPW_12447 CI-20190529: 20190529 CI_DRM_15964: 4cea1f90028925afcf1a0f8a0ef301f90349688c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12447: 4593317dedb4854dc0f4d7beed6cf9c68f3adeb8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 16 11:10:00 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 11:10:00 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/kms=5Fdisplay=5Fmode?= =?utf-8?q?s=3A_fit_modes_in_mst_bw?= In-Reply-To: <20250116061749.2082287-1-kunal1.joshi@intel.com> References: <20250116061749.2082287-1-kunal1.joshi@intel.com> Message-ID: <173702580067.250551.12258240103639897201@b555e5b46a47> == Series Details == Series: tests/kms_display_modes: fit modes in mst bw URL : https://patchwork.freedesktop.org/series/143585/ State : failure == Summary == CI Bug Log - changes from XEIGT_8193_full -> XEIGTPW_12445_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12445_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12445_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_12445_full: ### IGT changes ### #### Possible regressions #### * igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-dp-4: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-dp-4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-2.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-lnl: [PASS][4] -> [INCOMPLETE][5] +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-8/igt at kms_flip@flip-vs-suspend-interruptible.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-7/igt at kms_flip@flip-vs-suspend-interruptible.html #### Warnings #### * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][6] ([Intel XE#3862]) -> [ABORT][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][8] ([Intel XE#2882] / [Intel XE#3820]) -> [FAIL][9] +1 other test fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html Known issues ------------ Here are the changes found in XEIGTPW_12445_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getversion@basic: - shard-dg2-set2: NOTRUN -> [FAIL][10] ([Intel XE#3440]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at core_getversion@basic.html * igt at core_hotunplug@unplug-rescan: - shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#1885]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at core_hotunplug@unplug-rescan.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at core_hotunplug@unplug-rescan.html * igt at core_setmaster@master-drop-set-root: - shard-bmg: [PASS][13] -> [FAIL][14] ([Intel XE#3249]) +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at core_setmaster@master-drop-set-root.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@unaligned-read: - shard-bmg: [PASS][15] -> [SKIP][16] ([Intel XE#2134]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at fbdev@unaligned-read.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at fbdev@unaligned-read.html - shard-dg2-set2: [PASS][17] -> [SKIP][18] ([Intel XE#2134]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at fbdev@unaligned-read.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at fbdev@unaligned-read.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-dp-2-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#2550] / [Intel XE#3767]) +23 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-dp-2-4-rc-ccs-cc.html * igt at kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#873]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-4/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1407]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-6/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@linear-8bpp-rotate-180: - shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2136]) +42 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_big_fb@linear-8bpp-rotate-180.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_big_fb@linear-8bpp-rotate-180.html * igt at kms_big_fb@x-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2327]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html * igt at kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#316]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-436/igt at kms_big_fb@x-tiled-8bpp-rotate-90.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [PASS][26] -> [SKIP][27] ([Intel XE#2136]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@y-tiled-16bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +4 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-3/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1467]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-3/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +6 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#619]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][32] -> [SKIP][33] ([Intel XE#2314] / [Intel XE#2894]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#367]) +7 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#2191]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-436/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#367]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#2907]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc at pipe-c-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#787]) +195 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc at pipe-c-dp-2.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2887]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-2/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#455] / [Intel XE#787]) +46 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2887]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][42] -> [INCOMPLETE][43] ([Intel XE#2705]) +1 other test incomplete [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-6.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-6.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#306]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#373]) +8 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-436/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#373]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_content_protection@lic-type-0: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#3278]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-4/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@srm at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][48] ([Intel XE#1178]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt at kms_content_protection@srm at pipe-a-dp-2.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][49] ([Intel XE#1188]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-offscreen-64x21: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_cursor_crc@cursor-offscreen-64x21.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2321]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#309]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-1/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#2291]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipb-legacy.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-dg2-set2: [PASS][55] -> [SKIP][56] ([Intel XE#2423] / [i915#2575]) +12 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1508]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-4/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2372]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-8/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#701]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1138]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#1135]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1421]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#2316]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-dp2-hdmi-a3: - shard-bmg: [PASS][65] -> [FAIL][66] ([Intel XE#3321]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-dp2-hdmi-a3.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/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 ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][67] -> [FAIL][68] ([Intel XE#301]) +2 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][69] -> [INCOMPLETE][70] ([Intel XE#2597]) +1 other test incomplete [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at kms_flip@2x-flip-vs-suspend-interruptible at bd-hdmi-a6-dp4.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-435/igt at kms_flip@2x-flip-vs-suspend-interruptible at bd-hdmi-a6-dp4.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#2423]) +197 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-nonexisting-fb.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@flip-vs-expired-vblank at b-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][73] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/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: NOTRUN -> [FAIL][74] ([Intel XE#301]) +2 other tests fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1401]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/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-downscaling: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1397] / [Intel XE#1745]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1397]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([i915#5274]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2311]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#651]) +38 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [FAIL][83] ([Intel XE#2333]) +1 other test fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#656]) +9 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2-set2: [PASS][85] -> [SKIP][86] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#651]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-3/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2313]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#2136]) +6 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#653]) +27 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#605]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@bpc-switch-suspend: - shard-dg2-set2: [PASS][92] -> [ABORT][93] ([Intel XE#2625]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_hdr@bpc-switch-suspend.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][94] ([Intel XE#4048]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt at kms_hdr@bpc-switch-suspend at pipe-a-dp-2.html * igt at kms_hdr@static-toggle-suspend: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1503]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-1/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#346]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-bmg: [PASS][97] -> [SKIP][98] ([Intel XE#3012]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_joiner@basic-force-big-joiner.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-2-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][99] ([Intel XE#616]) +3 other tests fail [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-2-size-256.html * igt at kms_plane_multiple@tiling-x: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2423]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_plane_multiple@tiling-x.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2763]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-a.html * igt at kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#870]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2136]) +8 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][105] -> [FAIL][106] ([Intel XE#718]) +1 other test fail [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1129]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@cursor: - shard-bmg: [PASS][108] -> [SKIP][109] ([Intel XE#2446]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_pm_rpm@cursor.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_pm_rpm@cursor.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2446]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2893]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-7/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#1489]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1489]) +9 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#1122]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@pr-primary-blt: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2234] / [Intel XE#2850]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-5/igt at kms_psr@pr-primary-blt.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt at kms_psr@psr-dpms.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#3414]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1127]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1500]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#455]) +16 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt at kms_vrr@flipline.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2168]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-check-output: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#756]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt at kms_writeback@writeback-check-output.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#1126]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2905]) +13 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#3889]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#3889]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-3/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2905]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-5/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-large-external: - shard-dg2-set2: [PASS][129] -> [SKIP][130] ([Intel XE#1130]) +20 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_evict@evict-large-external.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at xe_evict@evict-large-external.html * igt at xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#688]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt at xe_evict@evict-large-multi-vm.html * igt at xe_exec_atomic@basic-dec-all: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#1130]) +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at xe_exec_atomic@basic-dec-all.html * igt at xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [PASS][133] -> [SKIP][134] ([Intel XE#1130]) +426 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_exec_basic@many-bindexecqueue-rebind.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at xe_exec_basic@many-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [PASS][135] -> [SKIP][136] ([Intel XE#1392]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-null: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1392]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-1/igt at xe_exec_basic@multigpu-once-null.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#288]) +28 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#2905]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2229]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#4045]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-7/igt at xe_mmap@pci-membarrier-parallel.html * igt at xe_module_load@reload: - shard-dg2-set2: NOTRUN -> [FAIL][142] ([Intel XE#3546]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-435/igt at xe_module_load@reload.html * igt at xe_module_load@reload-no-display: - shard-bmg: [PASS][143] -> [FAIL][144] ([Intel XE#3546]) +2 other tests fail [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_module_load@reload-no-display.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at xe_module_load@reload-no-display.html * igt at xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt at xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@s2idle-mocs: - shard-dg2-set2: [PASS][147] -> [ABORT][148] ([Intel XE#1358] / [Intel XE#1794]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_pm@s2idle-mocs.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt at xe_pm@s2idle-mocs.html * igt at xe_pm@s2idle-vm-bind-prefetch: - shard-bmg: [PASS][149] -> [TIMEOUT][150] ([Intel XE#1358]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at xe_pm@s2idle-vm-bind-prefetch.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-5/igt at xe_pm@s2idle-vm-bind-prefetch.html * igt at xe_pm@s4-basic: - shard-lnl: [PASS][151] -> [ABORT][152] ([Intel XE#1358] / [Intel XE#1607]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at xe_pm@s4-basic.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-2/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]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-3/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm_residency@cpg-gt-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1130]) +14 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at xe_pm_residency@cpg-gt-toggle.html * igt at xe_query@multigpu-query-invalid-size: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#944]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-1/igt at xe_query@multigpu-query-invalid-size.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#944]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-8/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#3342]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-435/igt at xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt at fbdev@pan: - shard-bmg: [SKIP][158] ([Intel XE#2134]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at fbdev@pan.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-5/igt at fbdev@pan.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1: - shard-lnl: [FAIL][160] ([Intel XE#4075]) -> [PASS][161] +1 other test pass [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-2/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][162] ([Intel XE#2291]) -> [PASS][163] +2 other tests pass [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][164] ([Intel XE#2425]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-5/igt at kms_display_modes@extended-mode-basic.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][166] ([Intel XE#2882]) -> [PASS][167] +1 other test pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3: - shard-bmg: [FAIL][168] ([Intel XE#3820]) -> [PASS][169] +2 other tests pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/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-expired-vblank at ac-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][170] ([Intel XE#301]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank at ac-hdmi-a6-dp4.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt at kms_flip@2x-flip-vs-expired-vblank at ac-hdmi-a6-dp4.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: [SKIP][172] ([Intel XE#2316]) -> [PASS][173] +3 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@dpms-vs-vblank-race: - shard-dg2-set2: [INCOMPLETE][174] ([Intel XE#2049]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race.html * igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6: - shard-dg2-set2: [INCOMPLETE][176] -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][178] ([Intel XE#886]) -> [PASS][179] +1 other test pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_flip@flip-vs-absolute-wf_vblank.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][180] ([Intel XE#2882] / [Intel XE#3820]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-bmg: [SKIP][182] ([Intel XE#3007]) -> [PASS][183] +1 other test pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_plane_alpha_blend@constant-alpha-max.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-8/igt at kms_plane_alpha_blend@constant-alpha-max.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][184] ([Intel XE#2571]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-8/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [FAIL][186] -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_pm_rpm@basic-pci-d3-state.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][188] ([Intel XE#899]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at xe_exec_basic@multigpu-once-bindexecqueue: - shard-dg2-set2: [SKIP][190] ([Intel XE#1392]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_exec_basic@multigpu-once-bindexecqueue.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt at xe_exec_basic@multigpu-once-bindexecqueue.html * igt at xe_pm@s2idle-basic-exec: - shard-dg2-set2: [ABORT][192] ([Intel XE#1358]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_pm@s2idle-basic-exec.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt at xe_pm@s2idle-basic-exec.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][194] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][195] +1 other test pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-4/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm@s4-vm-bind-userptr: - shard-dg2-set2: [ABORT][196] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_pm@s4-vm-bind-userptr.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt at xe_pm@s4-vm-bind-userptr.html * igt at xe_vm@bind-once: - shard-bmg: [SKIP][198] ([Intel XE#1130]) -> [PASS][199] +6 other tests pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_vm@bind-once.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-4/igt at xe_vm@bind-once.html #### Warnings #### * igt at core_getversion@basic: - shard-bmg: [FAIL][200] -> [FAIL][201] ([Intel XE#3440]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at core_getversion@basic.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at core_getversion@basic.html * igt at kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][202] ([Intel XE#3007]) -> [SKIP][203] ([Intel XE#2423]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_addfb_basic@bad-pitch-999.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_addfb_basic@bad-pitch-999.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][204] ([Intel XE#827]) -> [SKIP][205] ([Intel XE#2423]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][206] ([Intel XE#873]) -> [SKIP][207] ([Intel XE#2423]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_async_flips@invalid-async-flip.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: [SKIP][208] ([Intel XE#2370]) -> [SKIP][209] ([Intel XE#2423]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][210] ([Intel XE#2327]) -> [SKIP][211] ([Intel XE#2136]) +7 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][212] ([Intel XE#316]) -> [SKIP][213] ([Intel XE#2136]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-16bpp-rotate-270: - shard-dg2-set2: [SKIP][214] ([Intel XE#1124]) -> [SKIP][215] ([Intel XE#2136] / [Intel XE#2351]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_big_fb@y-tiled-16bpp-rotate-270.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_big_fb@y-tiled-16bpp-rotate-270.html * igt at kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][216] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][217] ([Intel XE#1124]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][218] ([Intel XE#1124]) -> [SKIP][219] ([Intel XE#2136]) +27 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][220] ([Intel XE#610]) -> [SKIP][221] ([Intel XE#2136]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][222] ([Intel XE#1124]) -> [SKIP][223] ([Intel XE#2136]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_big_fb@yf-tiled-8bpp-rotate-90.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][224] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][225] ([Intel XE#2423]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: [SKIP][226] ([Intel XE#367]) -> [SKIP][227] ([Intel XE#2423]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][228] ([Intel XE#2887]) -> [SKIP][229] ([Intel XE#2136]) +34 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][230] ([Intel XE#3432]) -> [SKIP][231] ([Intel XE#2136]) +4 other tests skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][232] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][233] ([Intel XE#2136]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-dg2-set2: [SKIP][234] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][235] ([Intel XE#2136]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][236] ([Intel XE#2724]) -> [SKIP][237] ([Intel XE#2136]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cdclk@mode-transition-all-outputs.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][238] ([Intel XE#2325]) -> [SKIP][239] ([Intel XE#2423]) +3 other tests skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_chamelium_color@ctm-0-50.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][240] ([Intel XE#3007]) -> [SKIP][241] ([Intel XE#2325]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_color@ctm-green-to-red.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-5/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][242] ([Intel XE#2252]) -> [SKIP][243] ([Intel XE#2423]) +21 other tests skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_chamelium_hpd@common-hpd-after-suspend.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][244] ([Intel XE#2390]) -> [SKIP][245] ([Intel XE#2423]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_content_protection@dp-mst-type-0.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@srm: - shard-bmg: [FAIL][246] ([Intel XE#1178]) -> [SKIP][247] ([Intel XE#2423]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_content_protection@srm.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_content_protection@srm.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][248] ([Intel XE#2320]) -> [SKIP][249] ([Intel XE#2423]) +9 other tests skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_cursor_crc@cursor-offscreen-128x42.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2-set2: [SKIP][250] ([Intel XE#308]) -> [SKIP][251] ([Intel XE#2423] / [i915#2575]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][252] ([Intel XE#2321]) -> [SKIP][253] ([Intel XE#2423]) +5 other tests skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_crc@cursor-sliding-512x512.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [SKIP][254] ([Intel XE#2291]) -> [SKIP][255] ([Intel XE#2423]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][256] ([Intel XE#877]) -> [SKIP][257] ([Intel XE#2423]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-bmg: [SKIP][258] ([Intel XE#2286]) -> [SKIP][259] ([Intel XE#2423]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: [SKIP][260] ([Intel XE#1508]) -> [SKIP][261] ([Intel XE#2136]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][262] ([Intel XE#2244]) -> [SKIP][263] ([Intel XE#2136]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [FAIL][264] ([Intel XE#1695]) -> [SKIP][265] ([Intel XE#2136]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_fbcon_fbt@fbc-suspend.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][266] ([Intel XE#776]) -> [SKIP][267] ([Intel XE#2136]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_fbcon_fbt@psr-suspend.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-4x: - shard-bmg: [SKIP][268] ([Intel XE#1138]) -> [SKIP][269] ([Intel XE#2423]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_feature_discovery@display-4x.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr1: - shard-bmg: [SKIP][270] ([Intel XE#2374]) -> [SKIP][271] ([Intel XE#2423]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_feature_discovery@psr1.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][272] ([Intel XE#2882]) -> [SKIP][273] ([Intel XE#2316]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][274] ([Intel XE#3820]) -> [FAIL][275] ([Intel XE#3321]) +1 other test fail [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][276] ([Intel XE#2316]) -> [SKIP][277] ([Intel XE#2423]) +4 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@flip-vs-expired-vblank: - shard-bmg: [FAIL][278] ([Intel XE#2882]) -> [SKIP][279] ([Intel XE#2423]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][280] ([Intel XE#2380]) -> [SKIP][281] ([Intel XE#2136]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: [SKIP][282] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][283] ([Intel XE#2136]) +10 other tests skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/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][284] ([Intel XE#455]) -> [SKIP][285] ([Intel XE#2136]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: [SKIP][286] ([Intel XE#2311]) -> [SKIP][287] ([Intel XE#2136]) +68 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][288] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][289] ([Intel XE#2311]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][290] ([Intel XE#651]) -> [SKIP][291] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][292] ([Intel XE#651]) -> [SKIP][293] ([Intel XE#2136]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][294] ([Intel XE#2312]) -> [SKIP][295] ([Intel XE#2311]) +12 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][296] ([Intel XE#2311]) -> [SKIP][297] ([Intel XE#2312]) +5 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: [SKIP][298] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][299] ([Intel XE#2333]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [FAIL][300] ([Intel XE#2333]) -> [SKIP][301] ([Intel XE#2136]) +28 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][302] ([Intel XE#2312]) -> [FAIL][303] ([Intel XE#2333]) +6 other tests fail [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][304] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][305] ([Intel XE#2136]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][306] ([Intel XE#2333]) -> [SKIP][307] ([Intel XE#2312]) +2 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: [DMESG-FAIL][308] ([Intel XE#877]) -> [FAIL][309] ([Intel XE#2333]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][310] ([Intel XE#2312]) -> [SKIP][311] ([Intel XE#2136]) +11 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: - shard-dg2-set2: [SKIP][312] ([Intel XE#653]) -> [SKIP][313] ([Intel XE#2136] / [Intel XE#2351]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][314] ([Intel XE#2313]) -> [SKIP][315] ([Intel XE#2136]) +63 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html - shard-dg2-set2: [SKIP][316] ([Intel XE#653]) -> [SKIP][317] ([Intel XE#2136]) +2 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][318] ([Intel XE#2313]) -> [SKIP][319] ([Intel XE#2312]) +4 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][320] ([Intel XE#2312]) -> [SKIP][321] ([Intel XE#2313]) +9 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][322] ([Intel XE#2352]) -> [SKIP][323] ([Intel XE#2136]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][324] ([Intel XE#2350]) -> [SKIP][325] ([Intel XE#2136]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][326] ([Intel XE#2502]) -> [SKIP][327] ([Intel XE#2423]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_getfb@getfb-reject-ccs.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][328] ([Intel XE#2340]) -> [SKIP][329] ([Intel XE#2423]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_getfb@getfb2-accept-ccs.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][330] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][331] ([Intel XE#2423]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_hdr@brightness-with-hdr.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [SKIP][332] ([Intel XE#1503]) -> [SKIP][333] ([Intel XE#2423]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_hdr@invalid-hdr.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@basic-big-joiner: - shard-bmg: [SKIP][334] ([Intel XE#346]) -> [SKIP][335] ([Intel XE#2136]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_joiner@basic-big-joiner.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][336] ([Intel XE#2934]) -> [SKIP][337] ([Intel XE#2136]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_joiner@basic-force-ultra-joiner.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_joiner@basic-force-ultra-joiner.html - shard-dg2-set2: [SKIP][338] ([Intel XE#2925]) -> [SKIP][339] ([Intel XE#2136]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_joiner@basic-force-ultra-joiner.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: [SKIP][340] ([Intel XE#2927]) -> [SKIP][341] ([Intel XE#2136]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_joiner@invalid-modeset-ultra-joiner.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][342] ([Intel XE#2501]) -> [SKIP][343] ([Intel XE#2423]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-bmg: [SKIP][344] ([Intel XE#2486]) -> [SKIP][345] ([Intel XE#2423]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_panel_fitting@legacy.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_panel_fitting@legacy.html - shard-dg2-set2: [SKIP][346] ([Intel XE#455]) -> [SKIP][347] ([Intel XE#2423] / [i915#2575]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_panel_fitting@legacy.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_panel_fitting@legacy.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: [SKIP][348] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][349] ([Intel XE#2423] / [i915#2575]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][350] ([Intel XE#2763]) -> [SKIP][351] ([Intel XE#2423]) +6 other tests skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][352] ([Intel XE#2392]) -> [SKIP][353] ([Intel XE#2136]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_pm_dc@dc5-psr.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][354] ([Intel XE#3309]) -> [SKIP][355] ([Intel XE#2136]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_pm_dc@dc5-retention-flops.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: [SKIP][356] ([Intel XE#2499]) -> [SKIP][357] ([Intel XE#2136]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_pm_lpsp@kms-lpsp.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-bmg: [SKIP][358] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][359] ([Intel XE#2446]) +2 other tests skip [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_pm_rpm@modeset-lpsp.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][360] ([Intel XE#1489]) -> [SKIP][361] ([Intel XE#2136]) +20 other tests skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][362] ([Intel XE#1489]) -> [SKIP][363] ([Intel XE#2136]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][364] ([Intel XE#2387]) -> [SKIP][365] ([Intel XE#2136]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_psr2_su@frontbuffer-xrgb8888.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2-set2: [SKIP][366] ([Intel XE#1122]) -> [SKIP][367] ([Intel XE#2136]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_psr2_su@frontbuffer-xrgb8888.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@pr-primary-page-flip: - shard-dg2-set2: [SKIP][368] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][369] ([Intel XE#2136] / [Intel XE#2351]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_psr@pr-primary-page-flip.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at kms_psr@pr-primary-page-flip.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: [SKIP][370] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][371] ([Intel XE#2136]) +32 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_psr@pr-sprite-plane-onoff.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][372] ([Intel XE#2414]) -> [SKIP][373] ([Intel XE#2136]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-rotation-90: - shard-bmg: [SKIP][374] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][375] ([Intel XE#2423]) +3 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_rotation_crc@primary-rotation-90.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: [SKIP][376] ([Intel XE#2330]) -> [SKIP][377] ([Intel XE#2423]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: [SKIP][378] ([Intel XE#2413]) -> [SKIP][379] ([Intel XE#2423]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_scaling_modes@scaling-mode-full-aspect.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][380] ([Intel XE#362]) -> [FAIL][381] ([Intel XE#1729]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: [SKIP][382] ([Intel XE#2450]) -> [SKIP][383] ([Intel XE#2423]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_tv_load_detect@load-detect.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flip-suspend: - shard-bmg: [SKIP][384] ([Intel XE#1499]) -> [SKIP][385] ([Intel XE#2423]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_vrr@flip-suspend.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_vrr@flip-suspend.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: [SKIP][386] ([Intel XE#756]) -> [SKIP][387] ([Intel XE#2423]) +1 other test skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_writeback@writeback-pixel-formats.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][388] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][389] ([Intel XE#2423]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at sriov_basic@enable-vfs-autoprobe-off.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_eudebug@basic-exec-queues: - shard-dg2-set2: [SKIP][390] ([Intel XE#2905]) -> [SKIP][391] ([Intel XE#1130]) +1 other test skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at xe_eudebug@basic-exec-queues.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][392] ([Intel XE#3889]) -> [SKIP][393] ([Intel XE#1130]) +2 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][394] ([Intel XE#2905]) -> [SKIP][395] ([Intel XE#1130]) +21 other tests skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: [SKIP][396] ([Intel XE#2322]) -> [SKIP][397] ([Intel XE#1130]) +18 other tests skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt at xe_exec_fault_mode@many-rebind-imm: - shard-dg2-set2: [SKIP][398] ([Intel XE#288]) -> [SKIP][399] ([Intel XE#1130]) +4 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at xe_exec_fault_mode@many-rebind-imm.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at xe_exec_fault_mode@many-rebind-imm.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [SKIP][400] ([Intel XE#1192]) -> [SKIP][401] ([Intel XE#2229]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_live_ktest@xe_bo.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at xe_live_ktest@xe_bo.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][402] ([Intel XE#2459] / [Intel XE#2596]) -> [SKIP][403] ([Intel XE#1130]) [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_media_fill@media-fill.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at xe_media_fill@media-fill.html * igt at xe_mmap@pci-membarrier: - shard-bmg: [SKIP][404] ([Intel XE#4045]) -> [SKIP][405] ([Intel XE#1130]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_mmap@pci-membarrier.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at xe_mmap@pci-membarrier.html * igt at xe_oa@oa-exponents: - shard-dg2-set2: [SKIP][406] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][407] ([Intel XE#1130]) [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at xe_oa@oa-exponents.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt at xe_oa@oa-exponents.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][408] ([Intel XE#2248]) -> [SKIP][409] ([Intel XE#1130]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_oa@unprivileged-single-ctx-counters.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][410] ([Intel XE#1420]) -> [SKIP][411] ([Intel XE#1130]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_pat@pat-index-xehpc.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][412] ([Intel XE#2245]) -> [SKIP][413] ([Intel XE#1130]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_pat@pat-index-xelp.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at xe_pat@pat-index-xelp.html * igt at xe_pm@d3cold-multiple-execs: - shard-bmg: [SKIP][414] ([Intel XE#2284]) -> [SKIP][415] ([Intel XE#1130]) +2 other tests skip [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_pm@d3cold-multiple-execs.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt at xe_pm@d3cold-multiple-execs.html * igt at xe_query@multigpu-query-mem-usage: - shard-bmg: [SKIP][416] ([Intel XE#944]) -> [SKIP][417] ([Intel XE#1130]) +4 other tests skip [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_query@multigpu-query-mem-usage.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt at xe_query@multigpu-query-mem-usage.html [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#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#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#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [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#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#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#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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [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#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [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#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [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#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [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#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#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#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [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#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#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#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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4048]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4048 [Intel XE#4075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4075 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [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#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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8193 -> IGTPW_12445 IGTPW_12445: 12445 IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From swati2.sharma at intel.com Thu Jan 16 11:22:15 2025 From: swati2.sharma at intel.com (Sharma, Swati2) Date: Thu, 16 Jan 2025 16:52:15 +0530 Subject: [PATCH] tests/chamelium/kms_chamelium_color: force connector reprobe after plugging ports In-Reply-To: <0dfb0496-b46c-4bca-ab6a-3d11afbd1ac6@intel.com> References: <20250115151507.2023293-1-kunal1.joshi@intel.com> <0dfb0496-b46c-4bca-ab6a-3d11afbd1ac6@intel.com> Message-ID: Sorry missed one comment. On 16-01-2025 04:09 pm, Sharma, Swati2 wrote: > Hi Kunal, > > On 15-01-2025 08:45 pm, Kunal Joshi wrote: >> Force reprobe connector status after plugging to assure >> we always have DRM_MODE_CONNECTED status for the connector >> before proceding with the test. >> >> Fixes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2371 Use "Closes" tag. >> Signed-off-by: Kunal Joshi >> --- >> ? tests/chamelium/kms_chamelium_color.c | 7 ++++++- >> ? 1 file changed, 6 insertions(+), 1 deletion(-) >> >> diff --git a/tests/chamelium/kms_chamelium_color.c >> b/tests/chamelium/kms_chamelium_color.c >> index 5550cec22..7c88c022c 100644 >> --- a/tests/chamelium/kms_chamelium_color.c >> +++ b/tests/chamelium/kms_chamelium_color.c >> @@ -749,8 +749,13 @@ igt_main >> ?????????? * discovered ports, just incase they are not plugged >> ?????????? * we currently skip in test_setup >> ?????????? */ >> -??????? for( i = 0; i < data.port_count; i++) >> +??????? for (i = 0; i < data.port_count; i++) { >> ????????????? chamelium_plug(data.chamelium, data.ports[i]); >> + igt_assert_f(chamelium_reprobe_connector(&data.display, >> +???????????????????????????????? data.chamelium, >> +???????????????????????????????? data.ports[i]) == DRM_MODE_CONNECTED, >> +???????????????????????????????? "Output not connected\n"); > > Please add output name in print message. With this fixed. > > Patch LGTM > > Reviewed-by: Swati Sharma > >> +??????? } >> ? ????????? kmstest_set_vt_graphics_mode(); >> ????? } From patchwork at emeril.freedesktop.org Thu Jan 16 11:32:26 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 11:32:26 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/xe=3A_Add_xe=5Fcg=5Fd?= =?utf-8?q?mem_test?= In-Reply-To: <20250115115512.84520-1-dev@lankhorst.se> References: <20250115115512.84520-1-dev@lankhorst.se> Message-ID: <173702714695.259313.6439920160721412079@b555e5b46a47> == Series Details == Series: tests/xe: Add xe_cg_dmem test URL : https://patchwork.freedesktop.org/series/143593/ State : success == Summary == CI Bug Log - changes from XEIGT_8193_BAT -> XEIGTPW_12447_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12447_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_migrate_sanity_kunit: - bat-adlp-vf: NOTRUN -> [DMESG-FAIL][2] ([Intel XE#4078]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_migrate_sanity_kunit.html #### Possible fixes #### * igt at xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3970]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html * igt at xe_live_ktest@xe_dma_buf: - bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_live_ktest@xe_dma_buf.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/bat-adlp-vf/igt at xe_live_ktest@xe_dma_buf.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][9] ([Intel XE#1192]) -> [DMESG-FAIL][10] ([Intel XE#4078]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8193 -> IGTPW_12447 * Linux: xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c -> xe-2496-4840e56bcc47f3af6bbc58bcc83b094540e5efa0 IGTPW_12447: 4593317dedb4854dc0f4d7beed6cf9c68f3adeb8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c xe-2496-4840e56bcc47f3af6bbc58bcc83b094540e5efa0: 4840e56bcc47f3af6bbc58bcc83b094540e5efa0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From swati2.sharma at intel.com Thu Jan 16 11:33:46 2025 From: swati2.sharma at intel.com (Sharma, Swati2) Date: Thu, 16 Jan 2025 17:03:46 +0530 Subject: [PATCH i-g-t 0/2] Avoid Virtual connector or kms_cursor_legacy In-Reply-To: <20241209211620.3679545-1-juhapekka.heikkila@gmail.com> References: <20241209211620.3679545-1-juhapekka.heikkila@gmail.com> Message-ID: <8cdbac98-7976-4778-bbe4-8d7b8196bff7@intel.com> Hi JP, Do we need such change only in kms_cursor_legacy or other IGTs too where we need physical o/ps ? On 10-12-2024 02:46 am, Juha-Pekka Heikkila wrote: > this is to avoid issues like seen here with tinydrm: > https://intel-gfx-ci.01.org/tree/intel-xe/xe-2340-9d12021e081c72b18c31bda175fb9a43f1d005fc/bat-adlp-vm/igt at kms_cursor_legacy@basic-flip-after-cursor-atomic.html > > where it seems tinydrm is not able to create linear framebuffer > > /Juha-Pekka > > Juha-Pekka Heikkila (2): > lib/igt_kms: add igt_display_require_physical_output() > tests/kms_cursor_legacy: for basic-* tests require physical connector > > lib/igt_kms.c | 21 +++++++++++++++++++++ > lib/igt_kms.h | 1 + > tests/kms_cursor_legacy.c | 2 +- > 3 files changed, 23 insertions(+), 1 deletion(-) > From kamil.konieczny at linux.intel.com Thu Jan 16 11:51:50 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Thu, 16 Jan 2025 12:51:50 +0100 Subject: [PATCH 3/8] lib/amdgpu: Add user mode queue support in ring context In-Reply-To: <20250116065211.1882469-4-sunil.khatri@amd.com> References: <20250116065211.1882469-1-sunil.khatri@amd.com> <20250116065211.1882469-4-sunil.khatri@amd.com> Message-ID: <20250116115150.ma35lvddby7647it@kamilkon-desk.igk.intel.com> Hi Sunil, On 2025-01-16 at 12:22:06 +0530, Sunil Khatri wrote: > Add the meta data to support the user mode command > submission in the ring_context. > > User mode command submission methods needs these > resources to be initialized and to create/destroy queues. > > Also once we have the queue created the queue id is > used to submit the work load to the h/w. > > Signed-off-by: Sunil Khatri > Reviewed-by: Vitaly Prosyak vitaly.prosyak at amd.com> Why do you send it here with r-b already added? Was is sent in some previous series and got r-b on mailinglist? I do not see any info about this in cover letter. Before merging please address build failures: see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1346611 for the overview. build:tests-debian-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69437776): ../lib/amdgpu/amd_user_queue.c: In function ?amdgpu_user_queue_destroy?: ../lib/amdgpu/amd_user_queue.c:183:6: error: implicit declaration of function ?amdgpu_free_userqueue?; did you mean ?amdgpu_open_devices?? [-Werror=implicit-function-declaration] r = amdgpu_free_userqueue(device_handle, ctxt->queue_id); ^~~~~~~~~~~~~~~~~~~~~ amdgpu_open_devices ../lib/amdgpu/amd_user_queue.c:183:6: warning: nested extern declaration of ?amdgpu_free_userqueue? [-Wnested-externs] ../lib/amdgpu/amd_user_queue.c: In function ?amdgpu_user_queue_create?: ../lib/amdgpu/amd_user_queue.c:387:7: error: implicit declaration of function ?amdgpu_create_userqueue?; did you mean ?amdgpu_cs_create_semaphore?? [-Werror=implicit-function-declaration] r = amdgpu_create_userqueue(device_handle, AMDGPU_HW_IP_GFX, ^~~~~~~~~~~~~~~~~~~~~~~ amdgpu_cs_create_semaphore ../lib/amdgpu/amd_user_queue.c:387:7: warning: nested extern declaration of ?amdgpu_create_userqueue? [-Wnested-externs] cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1737012393:step_script section_start:1737012393:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737012394:cleanup_file_variables ERROR: Job failed: exit code 1 Regards, Kamil > --- > lib/amdgpu/amd_ip_blocks.h | 31 +++++++++++++++++++++++++++++++ > 1 file changed, 31 insertions(+) > > diff --git a/lib/amdgpu/amd_ip_blocks.h b/lib/amdgpu/amd_ip_blocks.h > index dc4d87151..9d110d402 100644 > --- a/lib/amdgpu/amd_ip_blocks.h > +++ b/lib/amdgpu/amd_ip_blocks.h > @@ -86,6 +86,14 @@ struct dynamic_test{ > bool support_sdma; > }; > > +struct amdgpu_userq_bo { > + amdgpu_bo_handle handle; > + amdgpu_va_handle va_handle; > + uint64_t mc_addr; > + uint64_t size; > + void *ptr; > +}; > + > #define for_each_test(t, T) for(typeof(*T) *t = T; t->name; t++) > > /* set during execution */ > @@ -141,6 +149,29 @@ struct amdgpu_ring_context { > struct amdgpu_cs_ib_info ib_info; /* amdgpu_bo_list_create */ > struct amdgpu_cs_request ibs_request; /* amdgpu_cs_query_fence_status */ > struct amdgpu_cs_err_codes err_codes; > + > + /* User queue resources */ > + struct amdgpu_userq_bo queue; > + struct amdgpu_userq_bo shadow; > + struct amdgpu_userq_bo doorbell; > + struct amdgpu_userq_bo rptr; > + struct amdgpu_userq_bo wptr; > + struct amdgpu_userq_bo csa; > + struct amdgpu_userq_bo eop; > + > + uint32_t *queue_cpu; > + uint64_t *wptr_cpu; > + uint64_t *doorbell_cpu; > + > + uint32_t db_handle; > + uint32_t queue_id; > + uint32_t npkt; > + > + uint32_t timeline_syncobj_handle; > + uint64_t point; > + bool user_queue; > + > + struct drm_amdgpu_info_device dev_info; > }; > > > -- > 2.34.1 > From patchwork at emeril.freedesktop.org Thu Jan 16 12:23:49 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 12:23:49 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_The_series_add_support_for?= =?utf-8?q?_UMQ_submission?= In-Reply-To: <20250116065211.1882469-1-sunil.khatri@amd.com> References: <20250116065211.1882469-1-sunil.khatri@amd.com> Message-ID: <173703022902.268104.13082950609282762030@b555e5b46a47> == Series Details == Series: The series add support for UMQ submission URL : https://patchwork.freedesktop.org/series/143586/ State : failure == Summary == CI Bug Log - changes from XEIGT_8193_full -> XEIGTPW_12446_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12446_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12446_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_12446_full: ### IGT changes ### #### Possible regressions #### * igt at kms_async_flips@async-flip-suspend-resume at pipe-d-dp-4: - shard-dg2-set2: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_async_flips@async-flip-suspend-resume at pipe-d-dp-4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-435/igt at kms_async_flips@async-flip-suspend-resume at pipe-d-dp-4.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][3] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-434/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at c-dp2: - shard-bmg: [PASS][4] -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible at c-dp2.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at c-dp2.html * igt at kms_flip@flip-vs-rmfb-interruptible at a-edp1: - shard-lnl: [PASS][6] -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-3/igt at kms_flip@flip-vs-rmfb-interruptible at a-edp1.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-4/igt at kms_flip@flip-vs-rmfb-interruptible at a-edp1.html * igt at kms_psr@psr2-primary-render: - shard-lnl: [PASS][8] -> [FAIL][9] +1 other test fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-4/igt at kms_psr@psr2-primary-render.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-2/igt at kms_psr@psr2-primary-render.html #### Warnings #### * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][10] ([Intel XE#2882]) -> [FAIL][11] +1 other test fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][12] ([Intel XE#2882] / [Intel XE#3820]) -> [FAIL][13] [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible.html Known issues ------------ Here are the changes found in XEIGTPW_12446_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@unplug-rescan: - shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#1885]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at core_hotunplug@unplug-rescan.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at core_hotunplug@unplug-rescan.html * igt at core_setmaster@master-drop-set-shared-fd: - shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#3453]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at core_setmaster@master-drop-set-shared-fd.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at core_setmaster@master-drop-set-shared-fd.html * igt at fbdev@eof: - shard-bmg: [PASS][18] -> [SKIP][19] ([Intel XE#2134]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at fbdev@eof.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at fbdev@eof.html * igt at kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#873]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-1/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1407]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-6/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2136]) +46 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-180: - 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_8193/shard-bmg-1/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html * igt at kms_big_fb@x-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2327]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-3/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html * igt at kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#316]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-435/igt at kms_big_fb@x-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1467]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-5/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#610]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-435/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +5 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-6/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#619]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-464/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +6 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#367]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-435/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2191]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-432/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#2907]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-433/igt at kms_ccs@bad-rotation-90-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][36] ([Intel XE#787]) +139 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/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-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-3/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: NOTRUN -> [INCOMPLETE][38] ([Intel XE#3862]) +1 other test incomplete [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#455] / [Intel XE#787]) +36 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-435/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2887]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-5/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#1727]) +1 other test incomplete [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#306]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-463/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#373]) +10 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-436/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#373]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-8/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_content_protection@lic-type-0: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#3278]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-6/igt at kms_content_protection@lic-type-0.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#2321]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-1/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#2291]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#309]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-8/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [PASS][51] -> [FAIL][52] ([Intel XE#1475]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-8/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-6/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@single-bo: - shard-dg2-set2: [PASS][53] -> [INCOMPLETE][54] ([Intel XE#3226]) +1 other test incomplete [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_cursor_legacy@single-bo.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-464/igt at kms_cursor_legacy@single-bo.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1508]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2423]) +7 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#701]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-433/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#2373]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_feature_discovery@display-2x.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1135]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-436/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1421]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-7/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][62] -> [FAIL][63] ([Intel XE#301] / [Intel XE#3321]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-464/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][64] -> [FAIL][65] ([Intel XE#301]) +9 other tests fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/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_12446/shard-dg2-464/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#2423]) +215 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-nonexisting-fb.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [PASS][68] -> [SKIP][69] ([Intel XE#2316]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible at ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][70] ([Intel XE#2882]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-4/igt at kms_flip@2x-wf_vblank-ts-check-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-rmfb-interruptible: - shard-lnl: [PASS][71] -> [INCOMPLETE][72] ([Intel XE#2049]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-3/igt at kms_flip@flip-vs-rmfb-interruptible.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-4/igt at kms_flip@flip-vs-rmfb-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [PASS][73] -> [INCOMPLETE][74] ([Intel XE#2597]) +1 other test incomplete [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-4/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [PASS][75] -> [FAIL][76] ([Intel XE#886]) +1 other test fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at kms_flip@plain-flip-ts-check-interruptible.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-3/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-default-mode: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1401]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-2/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1397] / [Intel XE#1745]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-2/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1397]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-2/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([i915#5274]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-463/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2311]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#651]) +35 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [FAIL][84] ([Intel XE#2333]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#656]) +12 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#651]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-5/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2313]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#653]) +33 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#605]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-463/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@static-toggle-suspend: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1503]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-2/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#346]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-434/igt at kms_joiner@basic-big-joiner.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-dg2-set2: [PASS][92] -> [ABORT][93] ([Intel XE#2625]) +1 other test abort [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_plane@plane-panning-bottom-right-suspend.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-432/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][94] ([Intel XE#616]) +3 other tests fail [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-436/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2763]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-433/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-433/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d.html * igt at kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#870]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-463/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#870]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-4/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][99] -> [FAIL][100] ([Intel XE#718]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-7/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#1129]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-464/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@cursor: - shard-bmg: [PASS][102] -> [SKIP][103] ([Intel XE#2446]) +8 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_pm_rpm@cursor.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_pm_rpm@cursor.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#2893]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-5/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#1489]) +7 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#1489]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-8/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1122]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-464/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-sprite-plane-move: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2234] / [Intel XE#2850]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-4/igt at kms_psr@fbc-pr-sprite-plane-move.html * igt at kms_psr@pr-primary-blt: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2136] / [Intel XE#2231]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_psr@pr-primary-blt.html * igt at kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2136]) +7 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_psr@psr-basic.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2850] / [Intel XE#929]) +12 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-433/igt at kms_psr@psr-dpms.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#3414]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-463/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [PASS][113] -> [FAIL][114] ([Intel XE#899]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-3/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vblank@wait-busy: - shard-bmg: [PASS][115] -> [SKIP][116] ([Intel XE#3007]) +13 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_vblank@wait-busy.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_vblank@wait-busy.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][117] -> [FAIL][118] ([Intel XE#2159]) +1 other test fail [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-3/igt at kms_vrr@cmrr at pipe-a-edp-1.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-1/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#455]) +16 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-435/igt at kms_vrr@flipline.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2168]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-433/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-check-output: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#756]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-8/igt at kms_writeback@writeback-check-output.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-433/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1126]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2905]) +11 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-435/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#3889]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-433/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#3889]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-4/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@discovery-race-vmbind: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2905]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-5/igt at xe_eudebug@discovery-race-vmbind.html * igt at xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#1130]) +11 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#688]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-6/igt at xe_evict@evict-large-multi-vm.html * igt at xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [PASS][130] -> [SKIP][131] ([Intel XE#1130]) +483 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_exec_basic@many-bindexecqueue-rebind.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at xe_exec_basic@many-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#1392]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind: - shard-dg2-set2: [PASS][133] -> [SKIP][134] ([Intel XE#1392]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-null: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#1392]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-8/igt at xe_exec_basic@multigpu-once-null.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#288]) +27 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-435/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#2905]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-4/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2229]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-4/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][139] -> [SKIP][140] ([Intel XE#1192]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at xe_live_ktest@xe_dma_buf.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-bmg: [PASS][141] -> [FAIL][142] ([Intel XE#1999]) +2 other tests fail [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#4045]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-7/igt at xe_mmap@pci-membarrier-parallel.html * igt at xe_module_load@reload-no-display: - shard-bmg: [PASS][144] -> [FAIL][145] ([Intel XE#3546]) +2 other tests fail [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_module_load@reload-no-display.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at xe_module_load@reload-no-display.html * igt at xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-464/igt at xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt at xe_peer2peer@write: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#1061]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-432/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-436/igt at xe_pm@d3cold-basic-exec.html * igt at xe_pm@s3-basic-exec: - shard-dg2-set2: [PASS][149] -> [ABORT][150] ([Intel XE#1358]) +1 other test abort [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at xe_pm@s3-basic-exec.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-432/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-basic: - shard-lnl: [PASS][151] -> [ABORT][152] ([Intel XE#1358] / [Intel XE#1607]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at xe_pm@s4-basic.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-2/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]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-4/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-dg2-set2: [PASS][154] -> [ABORT][155] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_pm@s4-vm-bind-unbind-all.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-432/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][156] -> [FAIL][157] ([Intel XE#958]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at xe_pm_residency@toggle-gt-c6.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-4/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-invalid-size: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#944]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-6/igt at xe_query@multigpu-query-invalid-size.html * igt at xe_query@multigpu-query-mem-usage: - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#944]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-436/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#3342]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-432/igt at xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt at fbdev@pan: - shard-bmg: [SKIP][161] ([Intel XE#2134]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at fbdev@pan.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-4/igt at fbdev@pan.html * igt at kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][163] ([Intel XE#3007]) -> [PASS][164] +1 other test pass [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_addfb_basic@bad-pitch-999.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-4/igt at kms_addfb_basic@bad-pitch-999.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [FAIL][165] ([Intel XE#911]) -> [PASS][166] +3 other tests pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-3/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1: - shard-lnl: [FAIL][167] ([Intel XE#4075]) -> [PASS][168] +1 other test pass [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-6/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html * igt at kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-bmg: [SKIP][169] ([Intel XE#2291]) -> [PASS][170] +2 other tests pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-legacy.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-5/igt at kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [FAIL][171] ([Intel XE#1475]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-4/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_flip@2x-absolute-wf_vblank-interruptible: - shard-bmg: [SKIP][173] ([Intel XE#2316]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-absolute-wf_vblank-interruptible.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-3/igt at kms_flip@2x-absolute-wf_vblank-interruptible.html * igt at kms_flip@dpms-vs-vblank-race: - shard-dg2-set2: [INCOMPLETE][175] ([Intel XE#2049]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-463/igt at kms_flip@dpms-vs-vblank-race.html * igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6: - shard-dg2-set2: [INCOMPLETE][177] -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-463/igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][179] ([Intel XE#886]) -> [PASS][180] +1 other test pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_flip@flip-vs-absolute-wf_vblank.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-7/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2-set2: [FAIL][181] ([Intel XE#886]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_flip@flip-vs-blocking-wf-vblank.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-432/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3: - shard-bmg: [FAIL][183] ([Intel XE#3820]) -> [PASS][184] +1 other test pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-bmg: [SKIP][185] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][187] ([Intel XE#2571]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-5/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1: - shard-lnl: [FAIL][189] ([Intel XE#899]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-3/igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1.html * igt at xe_exec_basic@multigpu-once-bindexecqueue: - shard-dg2-set2: [SKIP][191] ([Intel XE#1392]) -> [PASS][192] +2 other tests pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_exec_basic@multigpu-once-bindexecqueue.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-433/igt at xe_exec_basic@multigpu-once-bindexecqueue.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [SKIP][193] ([Intel XE#1192]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_live_ktest@xe_bo.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-4/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-dg2-set2: [FAIL][195] ([Intel XE#1999]) -> [PASS][196] +2 other tests pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-432/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_pm@s2idle-basic-exec: - shard-dg2-set2: [ABORT][197] ([Intel XE#1358]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_pm@s2idle-basic-exec.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-463/igt at xe_pm@s2idle-basic-exec.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][199] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][200] +1 other test pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-lnl-1/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_vm@bind-once: - shard-bmg: [SKIP][201] ([Intel XE#1130]) -> [PASS][202] +5 other tests pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_vm@bind-once.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-8/igt at xe_vm@bind-once.html #### Warnings #### * igt at core_getversion@basic: - shard-bmg: [FAIL][203] -> [FAIL][204] ([Intel XE#3440]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at core_getversion@basic.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at core_getversion@basic.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][205] ([Intel XE#827]) -> [SKIP][206] ([Intel XE#2423]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: [SKIP][207] ([Intel XE#2550]) -> [SKIP][208] ([Intel XE#2550] / [Intel XE#3767]) +23 other tests skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-464/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][209] ([Intel XE#873]) -> [SKIP][210] ([Intel XE#2423]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_async_flips@invalid-async-flip.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][211] ([Intel XE#2385]) -> [SKIP][212] ([Intel XE#2423]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][213] ([Intel XE#2327]) -> [SKIP][214] ([Intel XE#2136]) +9 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: [SKIP][215] ([Intel XE#2327]) -> [SKIP][216] ([Intel XE#2136] / [Intel XE#2231]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_big_fb@linear-32bpp-rotate-90.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][217] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][218] ([Intel XE#1124]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][219] ([Intel XE#1124]) -> [SKIP][220] ([Intel XE#2136]) +28 other tests skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-bmg: [SKIP][221] ([Intel XE#1124]) -> [SKIP][222] ([Intel XE#2136] / [Intel XE#2231]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_big_fb@yf-tiled-16bpp-rotate-0.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-bmg: [SKIP][223] ([Intel XE#2328]) -> [SKIP][224] ([Intel XE#2136]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][225] ([Intel XE#607]) -> [SKIP][226] ([Intel XE#2136]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-bmg: [SKIP][227] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][228] ([Intel XE#2423]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: [SKIP][229] ([Intel XE#367]) -> [SKIP][230] ([Intel XE#2423]) +5 other tests skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][231] ([Intel XE#2887]) -> [SKIP][232] ([Intel XE#2136]) +40 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][233] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][234] ([Intel XE#2136]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][235] ([Intel XE#2887]) -> [SKIP][236] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][237] ([Intel XE#3432]) -> [SKIP][238] ([Intel XE#2136]) +4 other tests skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][239] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][240] ([Intel XE#2136]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_cdclk@plane-scaling: - shard-bmg: [SKIP][241] ([Intel XE#2724]) -> [SKIP][242] ([Intel XE#2136]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_cdclk@plane-scaling.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][243] ([Intel XE#2325]) -> [SKIP][244] ([Intel XE#2423]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_chamelium_color@ctm-0-50.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][245] ([Intel XE#3007]) -> [SKIP][246] ([Intel XE#2325]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_color@ctm-green-to-red.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][247] ([Intel XE#2252]) -> [SKIP][248] ([Intel XE#2423]) +25 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-bmg: [SKIP][249] ([Intel XE#3007]) -> [SKIP][250] ([Intel XE#2423]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@dp-hpd-storm-disable: - shard-bmg: [SKIP][251] ([Intel XE#2252]) -> [SKIP][252] ([Intel XE#3007]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][253] ([Intel XE#2341]) -> [SKIP][254] ([Intel XE#2423]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_content_protection@mei-interface.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-bmg: [FAIL][255] ([Intel XE#1178]) -> [SKIP][256] ([Intel XE#2423]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_content_protection@srm.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-bmg: [FAIL][257] ([Intel XE#1188]) -> [SKIP][258] ([Intel XE#2423]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_content_protection@uevent.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: [SKIP][259] ([Intel XE#2320]) -> [SKIP][260] ([Intel XE#2423]) +10 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_crc@cursor-offscreen-256x85.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-bmg: [SKIP][261] ([Intel XE#2321]) -> [SKIP][262] ([Intel XE#2423]) +5 other tests skip [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_cursor_crc@cursor-random-512x170.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-bmg: [SKIP][263] ([Intel XE#2286]) -> [SKIP][264] ([Intel XE#2423]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-bmg: [SKIP][265] ([Intel XE#2291]) -> [SKIP][266] ([Intel XE#2423]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: [SKIP][267] ([Intel XE#1508]) -> [SKIP][268] ([Intel XE#2136]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][269] ([Intel XE#2425]) -> [SKIP][270] ([Intel XE#2423]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][271] ([Intel XE#2323]) -> [SKIP][272] ([Intel XE#2423]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_display_modes@mst-extended-mode-negative.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dsc@dsc-fractional-bpp: - shard-bmg: [SKIP][273] ([Intel XE#2244]) -> [SKIP][274] ([Intel XE#2136]) +2 other tests skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_dsc@dsc-fractional-bpp.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_fbcon_fbt@psr: - shard-bmg: [SKIP][275] ([Intel XE#776]) -> [SKIP][276] ([Intel XE#2136]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_fbcon_fbt@psr.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@display-3x: - shard-bmg: [SKIP][277] ([Intel XE#2373]) -> [SKIP][278] ([Intel XE#2423]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_feature_discovery@display-3x.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-bmg: [SKIP][279] ([Intel XE#1138]) -> [SKIP][280] ([Intel XE#2423]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_feature_discovery@display-4x.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_feature_discovery@display-4x.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-bmg: [FAIL][281] ([Intel XE#2882]) -> [SKIP][282] ([Intel XE#2423]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][283] ([Intel XE#2882] / [Intel XE#3820]) -> [SKIP][284] ([Intel XE#2423]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][285] ([Intel XE#2316]) -> [SKIP][286] ([Intel XE#2423]) +5 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-bmg: [SKIP][287] ([Intel XE#2316]) -> [FAIL][288] ([Intel XE#2882]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-4/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: [SKIP][289] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][290] ([Intel XE#2136]) +10 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-bmg: [SKIP][291] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][292] ([Intel XE#2136] / [Intel XE#2231]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: [SKIP][293] ([Intel XE#2311]) -> [SKIP][294] ([Intel XE#2136]) +75 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][295] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][296] ([Intel XE#2311]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][297] ([Intel XE#2312]) -> [SKIP][298] ([Intel XE#2136]) +14 other tests skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][299] ([Intel XE#2311]) -> [SKIP][300] ([Intel XE#2312]) +2 other tests skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][301] ([Intel XE#2312]) -> [SKIP][302] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][303] ([Intel XE#2312]) -> [SKIP][304] ([Intel XE#2311]) +4 other tests skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [FAIL][305] ([Intel XE#2333]) -> [SKIP][306] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff: - shard-bmg: [FAIL][307] ([Intel XE#2333]) -> [SKIP][308] ([Intel XE#2312]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][309] ([Intel XE#2312]) -> [FAIL][310] ([Intel XE#2333]) +5 other tests fail [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][311] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][312] ([Intel XE#2333]) +1 other test fail [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/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-draw-render: - shard-bmg: [FAIL][313] ([Intel XE#2333]) -> [SKIP][314] ([Intel XE#2136]) +33 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: [DMESG-FAIL][315] ([Intel XE#877]) -> [FAIL][316] ([Intel XE#2333]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][317] ([Intel XE#2311]) -> [SKIP][318] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][319] ([Intel XE#2312]) -> [SKIP][320] ([Intel XE#2313]) +6 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][321] ([Intel XE#2313]) -> [SKIP][322] ([Intel XE#2136]) +70 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][323] ([Intel XE#2313]) -> [SKIP][324] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][325] ([Intel XE#2313]) -> [SKIP][326] ([Intel XE#2312]) +2 other tests skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][327] ([Intel XE#2502]) -> [SKIP][328] ([Intel XE#2423]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_getfb@getfb-reject-ccs.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [SKIP][329] ([Intel XE#1503]) -> [SKIP][330] ([Intel XE#2423]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_hdr@invalid-hdr.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][331] ([Intel XE#2934]) -> [SKIP][332] ([Intel XE#2136]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_joiner@basic-force-ultra-joiner.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: [SKIP][333] ([Intel XE#2927]) -> [SKIP][334] ([Intel XE#2136]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_joiner@invalid-modeset-ultra-joiner.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][335] ([Intel XE#2501]) -> [SKIP][336] ([Intel XE#2423]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-bmg: [SKIP][337] ([Intel XE#2486]) -> [SKIP][338] ([Intel XE#3007]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_panel_fitting@atomic-fastset.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-bmg: [SKIP][339] ([Intel XE#2486]) -> [SKIP][340] ([Intel XE#2423]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_panel_fitting@legacy.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_panel_fitting@legacy.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][341] ([Intel XE#2393]) -> [SKIP][342] ([Intel XE#2423]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_plane_lowres@tiling-y.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_multiple@tiling-y: - shard-bmg: [SKIP][343] ([Intel XE#2493]) -> [SKIP][344] ([Intel XE#2423]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_plane_multiple@tiling-y.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][345] ([Intel XE#2763]) -> [SKIP][346] ([Intel XE#2423]) +7 other tests skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][347] ([Intel XE#2938]) -> [SKIP][348] ([Intel XE#2136] / [Intel XE#2231]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_pm_backlight@brightness-with-dpms.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][349] ([Intel XE#870]) -> [SKIP][350] ([Intel XE#2136]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_pm_backlight@fade-with-dpms.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@deep-pkgc: - shard-bmg: [SKIP][351] ([Intel XE#2505]) -> [SKIP][352] ([Intel XE#2136]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_pm_dc@deep-pkgc.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_pm_dc@deep-pkgc.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [FAIL][353] -> [SKIP][354] ([Intel XE#2446]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_pm_rpm@basic-pci-d3-state.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_pm_rpm@dpms-lpsp: - shard-bmg: [SKIP][355] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][356] ([Intel XE#2446]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_pm_rpm@dpms-lpsp.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][357] ([Intel XE#1489]) -> [SKIP][358] ([Intel XE#2136]) +17 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: [SKIP][359] ([Intel XE#1489]) -> [SKIP][360] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_su@page_flip-p010: - shard-bmg: [SKIP][361] ([Intel XE#2387]) -> [SKIP][362] ([Intel XE#2136]) +3 other tests skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_psr2_su@page_flip-p010.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-bmg: [SKIP][363] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][364] ([Intel XE#2136]) +36 other tests skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_psr@fbc-pr-cursor-plane-onoff.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@pr-sprite-render: - shard-bmg: [SKIP][365] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][366] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_psr@pr-sprite-render.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_psr@pr-sprite-render.html * igt at kms_psr@psr2-primary-render: - shard-bmg: [SKIP][367] ([Intel XE#2234]) -> [SKIP][368] ([Intel XE#2136]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_psr@psr2-primary-render.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_psr@psr2-primary-render.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][369] ([Intel XE#2414]) -> [SKIP][370] ([Intel XE#2136]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@bad-pixel-format: - shard-bmg: [SKIP][371] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][372] ([Intel XE#2423]) +5 other tests skip [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_rotation_crc@bad-pixel-format.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-bmg: [SKIP][373] ([Intel XE#2330]) -> [SKIP][374] ([Intel XE#2423]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-bmg: [SKIP][375] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][376] ([Intel XE#3007]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_rotation_crc@sprite-rotation-270.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][377] ([Intel XE#2413]) -> [SKIP][378] ([Intel XE#2423]) +2 other tests skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-center.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: [SKIP][379] ([Intel XE#1435]) -> [SKIP][380] ([Intel XE#2423]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_setmode@basic-clone-single-crtc.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][381] ([Intel XE#362]) -> [FAIL][382] ([Intel XE#1729]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][383] ([Intel XE#2426]) -> [SKIP][384] ([Intel XE#2423]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: [SKIP][385] ([Intel XE#2450]) -> [SKIP][386] ([Intel XE#2423]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_tv_load_detect@load-detect.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@cmrr: - shard-bmg: [SKIP][387] ([Intel XE#2168]) -> [SKIP][388] ([Intel XE#2423]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_vrr@cmrr.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_vrr@cmrr.html * igt at kms_vrr@flip-suspend: - shard-bmg: [SKIP][389] ([Intel XE#1499]) -> [SKIP][390] ([Intel XE#2423]) +2 other tests skip [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_vrr@flip-suspend.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][391] ([Intel XE#3007]) -> [SKIP][392] ([Intel XE#1499]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-virtual.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-4/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-fb-id: - shard-bmg: [SKIP][393] ([Intel XE#756]) -> [SKIP][394] ([Intel XE#3007]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_writeback@writeback-fb-id.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][395] ([Intel XE#756]) -> [SKIP][396] ([Intel XE#2423]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_writeback@writeback-invalid-parameters.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at kms_writeback@writeback-invalid-parameters.html * igt at xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][397] ([Intel XE#2504]) -> [SKIP][398] ([Intel XE#1130]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at xe_create@multigpu-create-massive-size.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at xe_create@multigpu-create-massive-size.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][399] ([Intel XE#2905]) -> [SKIP][400] ([Intel XE#1130]) +31 other tests skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: [SKIP][401] ([Intel XE#3889]) -> [SKIP][402] ([Intel XE#1130]) +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: [SKIP][403] ([Intel XE#2322]) -> [SKIP][404] ([Intel XE#1130]) +25 other tests skip [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][405] ([Intel XE#2459] / [Intel XE#2596]) -> [SKIP][406] ([Intel XE#1130]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_media_fill@media-fill.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at xe_media_fill@media-fill.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-bmg: [SKIP][407] ([Intel XE#4045]) -> [SKIP][408] ([Intel XE#1130]) [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_mmap@pci-membarrier-bad-pagesize.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_mmap@small-bar: - shard-bmg: [SKIP][409] ([Intel XE#586]) -> [SKIP][410] ([Intel XE#1130]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at xe_mmap@small-bar.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at xe_mmap@small-bar.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][411] ([Intel XE#2248]) -> [SKIP][412] ([Intel XE#1130]) +1 other test skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_oa@unprivileged-single-ctx-counters.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-1/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][413] ([Intel XE#2245]) -> [SKIP][414] ([Intel XE#1130]) [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_pat@pat-index-xelp.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at xe_pat@pat-index-xelp.html * igt at xe_pat@pat-index-xelpg: - shard-bmg: [SKIP][415] ([Intel XE#2236]) -> [SKIP][416] ([Intel XE#1130]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_pat@pat-index-xelpg.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-6/igt at xe_pat@pat-index-xelpg.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: [SKIP][417] ([Intel XE#2284]) -> [SKIP][418] ([Intel XE#1130]) +4 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at xe_pm@s2idle-d3cold-basic-exec.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][419] ([Intel XE#944]) -> [SKIP][420] ([Intel XE#1130]) +4 other tests skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_query@multigpu-query-invalid-cs-cycles.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-bmg: [SKIP][421] ([Intel XE#3342]) -> [SKIP][422] ([Intel XE#1130]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_sriov_flr@flr-vf1-clear.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/shard-bmg-7/igt at xe_sriov_flr@flr-vf1-clear.html [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#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#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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [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#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [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#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [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#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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [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#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4075 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [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#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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8193 -> IGTPW_12446 IGTPW_12446: 12446 IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12446/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Thu Jan 16 12:29:10 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Thu, 16 Jan 2025 13:29:10 +0100 Subject: [PATCH i-g-t v2 2/5] runner/settings: Constify absolute_path parameter In-Reply-To: <20250107200614.963199-3-ramanaidu.naladala@intel.com> References: <20250107200614.963199-1-ramanaidu.naladala@intel.com> <20250107200614.963199-3-ramanaidu.naladala@intel.com> Message-ID: <20250116122910.srzuvpaiziqvje6s@kamilkon-desk.igk.intel.com> Hi Naladala, On 2025-01-08 at 01:36:11 +0530, Naladala Ramanaidu wrote: > Modified absolute_path to use const char* for input, updating the > corresponding declaration. This ensures the input path remains > unmodified, enhancing code safety and clarity. > imho better: Make absolute_path a const char*, this ensures the input path remains unmodified, enhancing code safety and clarity. with that: Reviewed-by: Kamil Konieczny > v2: Update commit subject. (kmail) > > Signed-off-by: Naladala Ramanaidu > --- > runner/settings.c | 2 +- > runner/settings.h | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/runner/settings.c b/runner/settings.c > index 92fd42ea6..bea0c3059 100644 > --- a/runner/settings.c > +++ b/runner/settings.c > @@ -567,7 +567,7 @@ static char *_basename(const char *path) > return tmpname; > } > > -char *absolute_path(char *path) > +char *absolute_path(const char *path) > { > char *result = NULL; > char *base, *dir; > diff --git a/runner/settings.h b/runner/settings.h > index f69f09778..7e6cd11e2 100644 > --- a/runner/settings.h > +++ b/runner/settings.h > @@ -136,7 +136,7 @@ bool parse_options(int argc, char **argv, > bool validate_settings(struct settings *settings); > > /* TODO: Better place for this */ > -char *absolute_path(char *path); > +char *absolute_path(const char *path); > > /** > * serialize_settings: > -- > 2.43.0 > From kamil.konieczny at linux.intel.com Thu Jan 16 12:36:51 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Thu, 16 Jan 2025 13:36:51 +0100 Subject: [PATCH i-g-t v2 3/5] runner/settings: Add function to set IGT_RUNNER_DATA environment variable In-Reply-To: <20250107200614.963199-4-ramanaidu.naladala@intel.com> References: <20250107200614.963199-1-ramanaidu.naladala@intel.com> <20250107200614.963199-4-ramanaidu.naladala@intel.com> Message-ID: <20250116123651.3fuws24u5xxs6oij@kamilkon-desk.igk.intel.com> Hi Naladala, On 2025-01-08 at 01:36:12 +0530, Naladala Ramanaidu wrote: > Introduced set_runner_datadir() to set the IGT_RUNNER_DATA environment > variable. This function uses absolute_path() to convert the relative > path "../share/igt-gpu-tools" to an absolute path. > Update the > runner/runner code to call set_runner_datadir() and handle errors > appropriately. Please do not translate code into words, is it there in a patch itself. imho here the most important part is description why we need it and what problem you try to resolve. > > v2: Fix review comments. (Kamil) > > Signed-off-by: Naladala Ramanaidu > --- > runner/runner.c | 8 ++++++++ > runner/settings.c | 9 +++++++++ > runner/settings.h | 1 + > 3 files changed, 18 insertions(+) > > diff --git a/runner/runner.c b/runner/runner.c > index 4855ad641..950eb5662 100644 > --- a/runner/runner.c > +++ b/runner/runner.c > @@ -12,8 +12,13 @@ int main(int argc, char **argv) > struct job_list job_list; > struct execute_state state; > int exitcode = 0; > + int data_flag = 0; > > init_settings(&settings); > + data_flag = set_runner_datadir(); > + if (data_flag) > + fprintf(stderr, "Data dir path not set\n"); Why an error? You could check if './data' path is present but this imho should be done in init_settings(), not here. > + > init_job_list(&job_list); > > if (!parse_options(argc, argv, &settings)) { > @@ -49,6 +54,9 @@ int main(int argc, char **argv) > exitcode = 1; > } > > + if (!data_flag) > + unsetenv("IGT_RUNNER_DATA"); > + > printf("Done.\n"); > return exitcode; > } > diff --git a/runner/settings.c b/runner/settings.c > index bea0c3059..c8220be32 100644 > --- a/runner/settings.c > +++ b/runner/settings.c > @@ -589,6 +589,15 @@ char *absolute_path(const char *path) > return result; > } > > +int set_runner_datadir(void) The only user of this function is in runner.c so why do you need it here? > +{ > + const char *datapath = "../share/igt-gpu-tools"; > + char *abpath; > + > + abpath = absolute_path(datapath); > + return setenv("IGT_RUNNER_DATA", abpath, 1); Why are you setting this var here? It could be set by a user so why are you overwriting it in that case? imho you do not need this function but maybe I am missing something? Regards, Kamil > +} > + > static char *bin_path(char *fname) > { > char *path, *p; > diff --git a/runner/settings.h b/runner/settings.h > index 7e6cd11e2..5926817b6 100644 > --- a/runner/settings.h > +++ b/runner/settings.h > @@ -150,5 +150,6 @@ bool serialize_settings(struct settings *settings); > > bool read_settings_from_file(struct settings *settings, FILE* f); > bool read_settings_from_dir(struct settings *settings, int dirfd); > +int set_runner_datadir(void); > > #endif > -- > 2.43.0 > From jan.sokolowski at intel.com Thu Jan 16 12:55:22 2025 From: jan.sokolowski at intel.com (Jan Sokolowski) Date: Thu, 16 Jan 2025 12:55:22 +0000 Subject: [PATCH i-g-t v1 1/1] tests/xe_eudebug: refactor exec-queue-placements test Message-ID: <20250116125522.146533-1-jan.sokolowski@intel.com> In some cases, ccs_mode_all_engines can fail, which will cause test fixture to not execute properly and put the rest of the tests in an unstable state. Also, ccs_mode_all_engines changes the state of the card for other tests as well, thus it should clean after itself too, which until now it didn't do. Move the test to the end in the execution list and add a proper cleanup method, ccs_mode_restore; Signed-off-by: Jan Sokolowski --- tests/intel/xe_eudebug.c | 46 ++++++++++++++++++++++++++++++---------- 1 file changed, 35 insertions(+), 11 deletions(-) diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c index 91e9ae885..c93b55857 100644 --- a/tests/intel/xe_eudebug.c +++ b/tests/intel/xe_eudebug.c @@ -2805,6 +2805,25 @@ static void ccs_mode_all_engines(int num_gt) igt_require(num_gts_with_ccs_mode > 0); } +static void ccs_mode_restore(int num_gt) +{ + int fd, gt, gt_fd, ccs_mode, num_slices; + + for (gt = 0; gt < num_gt; gt++) { + fd = drm_open_driver(DRIVER_XE); + gt_fd = xe_sysfs_gt_open(fd, gt); + close(fd); + + if (igt_sysfs_scanf(gt_fd, "num_cslices", "%u", &num_slices) <= 0) + continue; + + igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", 1) > 0); + igt_assert(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", &ccs_mode) > 0); + igt_assert(ccs_mode == 1); + close(gt_fd); + } +} + igt_main { bool was_enabled; @@ -2919,17 +2938,6 @@ igt_main igt_subtest("discovery-empty-clients") test_empty_discovery(fd, DISCOVERY_DESTROY_RESOURCES, 16); - igt_subtest_group { - igt_fixture { - drm_close_driver(fd); - ccs_mode_all_engines(gt_count); - fd = drm_open_driver(DRIVER_XE); - } - - igt_subtest("exec-queue-placements") - test_basic_sessions(fd, EXEC_QUEUES_PLACEMENTS, 1, true); - } - igt_fixture { xe_eudebug_enable(fd, was_enabled); drm_close_driver(fd); @@ -2984,4 +2992,20 @@ igt_main free(multigpu_was_enabled); } } + + igt_subtest_group { + igt_fixture { + ccs_mode_all_engines(gt_count); + } + + igt_subtest("exec-queue-placements") { + fd = drm_open_driver(DRIVER_XE); + + test_basic_sessions(fd, EXEC_QUEUES_PLACEMENTS, 1, true); + + ccs_mode_restore(gt_count); + drm_close_driver(fd); + } + } + } -- 2.34.1 From jan.sokolowski at intel.com Thu Jan 16 12:57:38 2025 From: jan.sokolowski at intel.com (Jan Sokolowski) Date: Thu, 16 Jan 2025 12:57:38 +0000 Subject: [PATCH i-g-t v2 1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test Message-ID: <20250116125738.146610-1-jan.sokolowski@intel.com> In some cases, ccs_mode_all_engines can fail, which will cause test fixture to not execute properly and put the rest of the tests in an unstable state. Also, ccs_mode_all_engines changes the state of the card for other tests as well, thus it should clean after itself too, which until now it didn't do. Move the test to the end in the execution list and add a proper cleanup method, ccs_mode_restore; Signed-off-by: Jan Sokolowski --- v2: Forgot proper path in title --- tests/intel/xe_eudebug.c | 46 ++++++++++++++++++++++++++++++---------- 1 file changed, 35 insertions(+), 11 deletions(-) diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c index 91e9ae885..c93b55857 100644 --- a/tests/intel/xe_eudebug.c +++ b/tests/intel/xe_eudebug.c @@ -2805,6 +2805,25 @@ static void ccs_mode_all_engines(int num_gt) igt_require(num_gts_with_ccs_mode > 0); } +static void ccs_mode_restore(int num_gt) +{ + int fd, gt, gt_fd, ccs_mode, num_slices; + + for (gt = 0; gt < num_gt; gt++) { + fd = drm_open_driver(DRIVER_XE); + gt_fd = xe_sysfs_gt_open(fd, gt); + close(fd); + + if (igt_sysfs_scanf(gt_fd, "num_cslices", "%u", &num_slices) <= 0) + continue; + + igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", 1) > 0); + igt_assert(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", &ccs_mode) > 0); + igt_assert(ccs_mode == 1); + close(gt_fd); + } +} + igt_main { bool was_enabled; @@ -2919,17 +2938,6 @@ igt_main igt_subtest("discovery-empty-clients") test_empty_discovery(fd, DISCOVERY_DESTROY_RESOURCES, 16); - igt_subtest_group { - igt_fixture { - drm_close_driver(fd); - ccs_mode_all_engines(gt_count); - fd = drm_open_driver(DRIVER_XE); - } - - igt_subtest("exec-queue-placements") - test_basic_sessions(fd, EXEC_QUEUES_PLACEMENTS, 1, true); - } - igt_fixture { xe_eudebug_enable(fd, was_enabled); drm_close_driver(fd); @@ -2984,4 +2992,20 @@ igt_main free(multigpu_was_enabled); } } + + igt_subtest_group { + igt_fixture { + ccs_mode_all_engines(gt_count); + } + + igt_subtest("exec-queue-placements") { + fd = drm_open_driver(DRIVER_XE); + + test_basic_sessions(fd, EXEC_QUEUES_PLACEMENTS, 1, true); + + ccs_mode_restore(gt_count); + drm_close_driver(fd); + } + } + } -- 2.34.1 From swati2.sharma at intel.com Thu Jan 16 13:06:00 2025 From: swati2.sharma at intel.com (Sharma, Swati2) Date: Thu, 16 Jan 2025 18:36:00 +0530 Subject: [PATCH i-g-t 1/4] tests/intel/kms_joiner_helper: helper for joiner-related functions In-Reply-To: <20241231141518.765212-2-kunal1.joshi@intel.com> References: <20241231141518.765212-1-kunal1.joshi@intel.com> <20241231141518.765212-2-kunal1.joshi@intel.com> Message-ID: Hi Kunal, Please change subject to "Add helper.." (imperative). Also, this patch should have been split into 2. 1. for igt_set_all_master_pipes_for_platform() 2. add igt_assign_pipes_for_outputs() On 31-12-2024 07:45 pm, Kunal Joshi wrote: > This patch introduces a new kms_joiner_helper.c and kms_joiner_helper.h to > handle Big Joiner and Ultra Joiner logic in a centralized manner. It provides > utility functions to set and manage master pipes, as well as to assign > consecutive pipes for multi-pipe configurations. By moving these operations > into helper files, we improve code clarity and enable reuse across multiple > tests requiring joiner capabilities. > > The patch also updates kms_joiner.c to use igt_set_all_master_pipes_for_platform() > instead of the local set_all_master_pipes_for_platform() function. This > unifies the approach to pipe assignments for joiner scenarios. Finally, it > updates meson.build to include kms_joiner_helper.c. > > Signed-off-by: Kunal Joshi > --- > tests/intel/kms_joiner.c | 15 +-- > tests/intel/kms_joiner_helper.c | 179 ++++++++++++++++++++++++++++++++ > tests/intel/kms_joiner_helper.h | 15 +++ > tests/meson.build | 1 + > 4 files changed, 197 insertions(+), 13 deletions(-) > create mode 100644 tests/intel/kms_joiner_helper.c > create mode 100644 tests/intel/kms_joiner_helper.h > > diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c > index 418ff26a6..0151dd182 100644 > --- a/tests/intel/kms_joiner.c > +++ b/tests/intel/kms_joiner.c > @@ -37,6 +37,7 @@ > #include "igt.h" > #include "xe/xe_query.h" > #include "kms_dsc_helper.c" > +#include "kms_joiner_helper.h" > > /** > * SUBTEST: invalid-modeset-big-joiner > @@ -97,18 +98,6 @@ typedef struct { > > static int max_dotclock; > > -static void set_all_master_pipes_for_platform(data_t *data) > -{ > - enum pipe pipe; > - > - for (pipe = PIPE_A; pipe < IGT_MAX_PIPES - 1; pipe++) { > - if (data->display.pipes[pipe].enabled && data->display.pipes[pipe + 1].enabled) { > - data->master_pipes |= BIT(pipe); > - igt_info("Found master pipe %s\n", kmstest_pipe_name(pipe)); > - } > - } > -} > - > static void enable_force_joiner_on_all_non_big_joiner_outputs(data_t *data) > { > bool status; > @@ -430,7 +419,7 @@ igt_main > data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); > kmstest_set_vt_graphics_mode(); > igt_display_require(&data.display, data.drm_fd); > - set_all_master_pipes_for_platform(&data); > + igt_set_all_master_pipes_for_platform(&data.display, &data.master_pipes); > igt_require(data.display.is_atomic); > max_dotclock = igt_get_max_dotclock(data.drm_fd); > > diff --git a/tests/intel/kms_joiner_helper.c b/tests/intel/kms_joiner_helper.c > new file mode 100644 > index 000000000..af89be777 > --- /dev/null > +++ b/tests/intel/kms_joiner_helper.c > @@ -0,0 +1,179 @@ > +#include "kms_joiner_helper.h" > +#include "igt.h" > +#include "igt_kms.h" > +#include "intel_chipset.h" > + > +/* > + * Detect if the output needs 1, 2, or 4 pipes (non-joiner, big joiner, ultra). Only this is sufficient as comment > + * This re-uses your existing logic from: > + * bigjoiner_mode_found(), ultrajoiner_mode_found(), > + * is_intel_device(), igt_get_max_dotclock(), etc. > + */ All this is not required, its implicit. > +static int get_required_pipes(int drm_fd, igt_output_t *output) > +{ > + bool is_big = false, is_ultra = false; > + int max_dotclock; > + drmModeModeInfo mode; > + > + if (!is_intel_device(drm_fd)) > + return -1; > + > + max_dotclock = igt_get_max_dotclock(drm_fd); > + > + is_ultra = ultrajoiner_mode_found(drm_fd, > + output->config.connector, > + max_dotclock, > + &mode); > + is_big = bigjoiner_mode_found(drm_fd, > + output->config.connector, > + max_dotclock, > + &mode); Also, shouldn't we move all joiner related functions to this lib ? > + > + if (is_ultra) > + return 4; > + if (is_big) > + return 2; > + > + return 1; > +} > + > +/* > + * Internal helper to find a block of consecutive free pipes > + * in available_pipes_mask. If count > 1, the first pipe must also > + * be in master_pipes_mask. > + * > + * Returns the starting pipe index or -1 if not found. > + */ > +static int find_consecutive_pipes(int n_pipes, > + uint32_t available_pipes_mask, > + uint32_t master_pipes_mask, > + int count) > +{ > + int i = 0, pipe_idx = 0; > + bool can_use; > + > + for (int start = 0; start < n_pipes; start++) { > + if (((start + count) - 1) >= n_pipes) > + break; > + > + if ((count > 1) && (!(BIT(start) & master_pipes_mask))) > + continue; > + > + can_use = true; > + for (i = 0; i < count; i++) { > + pipe_idx = start + i; > + if (!(BIT(pipe_idx) & available_pipes_mask)) { > + can_use = false; > + break; > + } > + } > + if (can_use) > + return start; > + } > + return -1; > +} > + > +static enum pipe get_next_master_pipe(uint32_t pipe_mask) > +{ > + int i; > + > + if (!pipe_mask) > + return PIPE_NONE; > + > + i = ffs(pipe_mask) - 1; > + > + if (i < 0) > + return PIPE_NONE; > + > + return i; > +} > + > +/** > + * igt_set_all_master_pipes_for_platform: > + * @master_pipes: Pointer to the variable to store the master pipes bitmask. > + * @display: The display structure containing pipe information. > + * > + * This function sets the master pipes for the platform by checking if consecutive > + * pipes are enabled. If both pipe and the next pipe are enabled, the pipe is > + * considered a master pipe. > + */ > +void igt_set_all_master_pipes_for_platform(igt_display_t *display, uint32_t *master_pipes) > +{ > + enum pipe pipe; > + > + *master_pipes = 0; > + for (pipe = PIPE_A; pipe < IGT_MAX_PIPES - 1; pipe++) { > + if (display->pipes[pipe].enabled && display->pipes[pipe + 1].enabled) { > + *master_pipes |= BIT(pipe); > + igt_info("Found master pipe %s\n", kmstest_pipe_name(pipe)); > + } > + } > +} > + > +/* > + * @drm_fd: DRM file descriptor > + * @outputs: array of pointers to igt_output_t > + * @num_outputs: how many outputs in the array > + * @n_pipes: total number of pipes available > + * @used_pipes_mask: pointer to a bitmask (in/out) of already-used pipes > + * @master_pipes_mask: bitmask of valid "master" pipes > + * @valid_pipes_mask: bitmask of valid (non-fused) pipes > + * > + * Assign pipes to outputs based on the number of required pipes. > + * This function will assign 1, 2, or 4 consecutive pipes to each output. > + * It will also mark the used pipes in the bitmask. > + * > + * Returns: true if all outputs can be assigned successfully; false otherwise. > + */ > +bool igt_assign_pipes_for_outputs(int drm_fd, > + igt_output_t **outputs, > + int num_outputs, > + int n_pipes, > + uint32_t *used_pipes_mask, > + uint32_t master_pipes_mask, > + uint32_t valid_pipes_mask) > +{ > + int i = 0, idx = 0, needed = 0, start = 0; > + uint32_t available_pipes_mask = 0; > + enum pipe mp = PIPE_NONE; > + igt_output_t *out; > + > + for (idx = 0; idx < num_outputs; idx++) { > + out = outputs[idx]; > + needed = get_required_pipes(drm_fd, out); > + if (needed < 0) > + return false; > + > + available_pipes_mask = (~(*used_pipes_mask)) & valid_pipes_mask; > + start = find_consecutive_pipes(n_pipes, available_pipes_mask, > + master_pipes_mask, needed); > + > + if (start < 0) { > + igt_debug("Cannot allocate %d consecutive pipes for output %s\n", > + needed, out->name); > + return false; > + } > + > + igt_info("Assigning %d pipes [start=%s..%s] to output %s\n", > + needed, kmstest_pipe_name(start), > + kmstest_pipe_name(start + needed - 1), out->name); > + > + if (needed > 1) { > + mp = get_next_master_pipe(BIT(start)); > + > + if (mp == PIPE_NONE) { > + igt_debug("Failed to confirm master pipe for %s\n", > + out->name); > + return false; > + } > + igt_output_set_pipe(out, start); > + igt_debug("Using pipe %s as master.\n", > + kmstest_pipe_name(start)); > + } else > + igt_output_set_pipe(out, start); > + > + for (i = 0; i < needed; i++) > + *used_pipes_mask |= BIT(start + i); > + } > + return true; > +} > diff --git a/tests/intel/kms_joiner_helper.h b/tests/intel/kms_joiner_helper.h > new file mode 100644 > index 000000000..95e71a229 > --- /dev/null > +++ b/tests/intel/kms_joiner_helper.h > @@ -0,0 +1,15 @@ > +#ifndef KMS_JOINER_HELPER_H > +#define KMS_JOINER_HELPER_H > + > +#include "igt_kms.h" > + > +void igt_set_all_master_pipes_for_platform(igt_display_t *display, > + uint32_t *master_pipes); > +bool igt_assign_pipes_for_outputs(int drm_fd, > + igt_output_t **outputs, > + int num_outputs, > + int n_pipes, > + uint32_t *used_pipes_mask, > + uint32_t master_pipes_mask, > + uint32_t valid_pipes_mask); > +#endif > diff --git a/tests/meson.build b/tests/meson.build > index 89bba6454..4bc68d659 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -366,6 +366,7 @@ extra_sources = { > 'kms_chamelium_frames': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ], > 'kms_chamelium_hpd': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ], > 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ], > + 'kms_joiner': [join_paths ('intel', 'kms_joiner_helper.c')], > 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ], > } > From sai.teja.pottumuttu at intel.com Thu Jan 16 13:54:55 2025 From: sai.teja.pottumuttu at intel.com (Sai Teja Pottumuttu) Date: Thu, 16 Jan 2025 19:24:55 +0530 Subject: [PATCH i-g-t v2 0/1] Add test for configurable OA buffer size Message-ID: <20250116135456.4066677-1-sai.teja.pottumuttu@intel.com> The patch series extends an existing test non-zero-reason to use/test configurable OA buffer size capability. It adds dynamic tests under non-zero-reason test for 8,16,32MB OA buffer sizes. Sai Teja Pottumuttu (1): tests/intel/xe_oa: Extend non-zero-reason test tests/intel/xe_oa.c | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) -- 2.34.1 From sai.teja.pottumuttu at intel.com Thu Jan 16 13:54:56 2025 From: sai.teja.pottumuttu at intel.com (Sai Teja Pottumuttu) Date: Thu, 16 Jan 2025 19:24:56 +0530 Subject: [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Extend non-zero-reason test In-Reply-To: <20250116135456.4066677-1-sai.teja.pottumuttu@intel.com> References: <20250116135456.4066677-1-sai.teja.pottumuttu@intel.com> Message-ID: <20250116135456.4066677-2-sai.teja.pottumuttu@intel.com> Extend non-zero-reason test to use configurable OA buffer sizes and execute the test for three different sizes 8,16 and 32MB. Signed-off-by: Sai Teja Pottumuttu --- tests/intel/xe_oa.c | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c index 492a6b5d6..f28156a66 100644 --- a/tests/intel/xe_oa.c +++ b/tests/intel/xe_oa.c @@ -2504,7 +2504,7 @@ again_1: * Description: Test reason field is non-zero. Can also check OA buffer wraparound issues */ static void -test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) +test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe, size_t oa_buffer_size) { /* ~20 micro second period */ int oa_exponent = max_oa_exponent_for_period_lte(20000); @@ -2522,6 +2522,7 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(fmt), DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, oa_exponent, DRM_XE_OA_PROPERTY_OA_ENGINE_INSTANCE, hwe->engine_instance, + DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, oa_buffer_size, }; struct intel_xe_oa_open_prop param = { .num_properties = ARRAY_SIZE(properties) / 2, @@ -2541,6 +2542,9 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) load_helper_init(); load_helper_run(HIGH); + if (!oa_buffer_size) + param.num_properties = param.num_properties - 1; + stream_fd = __perf_open(drm_fd, ¶m, true /* prevent_pm */); set_fd_flags(stream_fd, O_CLOEXEC); @@ -4867,8 +4871,28 @@ igt_main test_buffer_fill(hwe); igt_subtest_with_dynamic("non-zero-reason") { - __for_one_hwe_in_oag(hwe) - test_non_zero_reason(hwe); + struct drm_xe_query_oa_units *qoa = xe_oa_units(drm_fd); + struct drm_xe_oa_unit *oau = (struct drm_xe_oa_unit *)&qoa->oa_units[0]; + + if (oau->capabilities & DRM_XE_OA_CAPS_OA_BUFFER_SIZE) { + hwe = oa_unit_engine(drm_fd, 0); + if (hwe) { + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class), + hwe->engine_instance, "8MB") + test_non_zero_reason(hwe, SZ_8M); + + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class), + hwe->engine_instance, "16MB") + test_non_zero_reason(hwe, SZ_16M); + + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class), + hwe->engine_instance, "32MB") + test_non_zero_reason(hwe, SZ_32M); + } + } else { + __for_one_hwe_in_oag(hwe) + test_non_zero_reason(hwe, 0); + } } igt_subtest("disabled-read-error") -- 2.34.1 From patchwork at emeril.freedesktop.org Thu Jan 16 15:11:48 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 15:11:48 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/xe=3A_Add_xe=5Fcg=5F?= =?utf-8?q?dmem_test?= In-Reply-To: <20250115115512.84520-1-dev@lankhorst.se> References: <20250115115512.84520-1-dev@lankhorst.se> Message-ID: <173704030844.304946.17049174548091758725@b555e5b46a47> == Series Details == Series: tests/xe: Add xe_cg_dmem test URL : https://patchwork.freedesktop.org/series/143593/ State : failure == Summary == CI Bug Log - changes from XEIGT_8193_full -> XEIGTPW_12447_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12447_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12447_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_12447_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3: - shard-bmg: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp4: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html * igt at kms_flip@flip-vs-suspend at d-dp4: - shard-dg2-set2: NOTRUN -> ([INCOMPLETE][5], [PASS][6]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_flip@flip-vs-suspend at d-dp4.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_flip@flip-vs-suspend at d-dp4.html * igt at kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset at b-edp1: - shard-lnl: [PASS][7] -> ([INCOMPLETE][8], [PASS][9]) +3 other tests ( 1 incomplete, 1 pass ) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset at b-edp1.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset at b-edp1.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset at b-edp1.html * igt at kms_flip_tiling@flip-change-tiling: - shard-bmg: [PASS][10] -> ([SKIP][11], [INCOMPLETE][12]) ([Intel XE#2136]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip_tiling@flip-change-tiling.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_flip_tiling@flip-change-tiling.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_flip_tiling@flip-change-tiling.html * {igt at xe_cg_dmem@functional} (NEW): - shard-bmg: NOTRUN -> ([SKIP][13], [SKIP][14]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at xe_cg_dmem@functional.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at xe_cg_dmem@functional.html - shard-lnl: NOTRUN -> ([SKIP][15], [SKIP][16]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at xe_cg_dmem@functional.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt at xe_cg_dmem@functional.html * {igt at xe_cg_dmem@test-simple-min} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][17] +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at xe_cg_dmem@test-simple-min.html - shard-lnl: NOTRUN -> [SKIP][18] +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at xe_cg_dmem@test-simple-min.html * igt at xe_exec_threads@threads-cm-shared-vm-rebind: - shard-bmg: NOTRUN -> ([FAIL][19], [SKIP][20]) ([Intel XE#1130]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at xe_exec_threads@threads-cm-shared-vm-rebind.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_exec_threads@threads-cm-shared-vm-rebind.html - shard-dg2-set2: NOTRUN -> [FAIL][21] [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_exec_threads@threads-cm-shared-vm-rebind.html #### Warnings #### * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][22] ([Intel XE#2882]) -> ([FAIL][23], [SKIP][24]) ([Intel XE#2423]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][25] ([Intel XE#2882]) -> [FAIL][26] [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html New tests --------- New tests have been introduced between XEIGT_8193_full and XEIGTPW_12447_full: ### New IGT tests (3) ### * igt at xe_cg_dmem@functional: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at xe_cg_dmem@test-simple-max: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_cg_dmem@test-simple-min: - Statuses : 3 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12447_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotrebind: - shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#1885]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at core_hotunplug@hotrebind.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at core_hotunplug@hotrebind.html * igt at core_hotunplug@hotrebind-lateclose: - shard-bmg: [PASS][29] -> ([SKIP][30], [SKIP][31]) ([Intel XE#1885]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at core_hotunplug@hotrebind-lateclose.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at core_hotunplug@hotrebind-lateclose.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at core_hotunplug@hotrebind-lateclose.html * igt at core_hotunplug@hotreplug: - shard-bmg: [PASS][32] -> ([PASS][33], [SKIP][34]) ([Intel XE#1885]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at core_hotunplug@hotreplug.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at core_hotunplug@hotreplug.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at core_hotunplug@hotreplug.html * igt at core_setmaster@master-drop-set-user: - shard-bmg: [PASS][35] -> ([FAIL][36], [PASS][37]) ([Intel XE#3249]) +2 other tests ( 1 fail, 1 pass ) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at core_setmaster@master-drop-set-user.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at core_setmaster@master-drop-set-user.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at core_setmaster@master-drop-set-user.html * igt at fbdev@eof: - shard-bmg: [PASS][38] -> ([SKIP][39], [PASS][40]) ([Intel XE#2134]) +2 other tests ( 1 pass, 1 skip ) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at fbdev@eof.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at fbdev@eof.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at fbdev@eof.html * igt at kms_addfb_basic@bad-pitch-63: - shard-bmg: NOTRUN -> ([PASS][41], [SKIP][42]) ([Intel XE#2423]) +1 other test ( 1 pass, 1 skip ) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_addfb_basic@bad-pitch-63.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_addfb_basic@bad-pitch-63.html * igt at kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#873]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> ([SKIP][44], [SKIP][45]) ([Intel XE#1407]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [PASS][46] -> ([PASS][47], [SKIP][48]) ([Intel XE#2136]) +28 other tests ( 1 pass, 1 skip ) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/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-bmg: [PASS][49] -> ([SKIP][50], [SKIP][51]) ([Intel XE#2136]) +8 other tests ( 2 skip ) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#2136]) +24 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_big_fb@linear-16bpp-rotate-180.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_big_fb@x-tiled-64bpp-rotate-180: - shard-dg2-set2: [PASS][54] -> [SKIP][55] ([Intel XE#2136]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_big_fb@x-tiled-64bpp-rotate-180.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_big_fb@x-tiled-64bpp-rotate-180.html * igt at kms_big_fb@x-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> ([SKIP][56], [SKIP][57]) ([Intel XE#2136] / [Intel XE#2327]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html * igt at kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#316]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_big_fb@x-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-16bpp-rotate-0: - shard-lnl: NOTRUN -> ([SKIP][59], [SKIP][60]) ([Intel XE#1124]) +1 other test ( 2 skip ) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> ([SKIP][61], [SKIP][62]) ([Intel XE#1467]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt at kms_big_fb@y-tiled-addfb.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#610]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/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: NOTRUN -> [SKIP][64] ([Intel XE#1124]) +7 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1124]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#619]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: NOTRUN -> ([SKIP][67], [SKIP][68]) ([Intel XE#1124]) +1 other test ( 2 skip ) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_bw@connected-linear-tiling-1-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#367]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_bw@connected-linear-tiling-1-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> ([SKIP][70], [SKIP][71]) ([Intel XE#367]) +1 other test ( 2 skip ) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#2191]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: NOTRUN -> ([SKIP][73], [SKIP][74]) ([Intel XE#2423] / [Intel XE#367]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#455] / [Intel XE#787]) +44 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/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: NOTRUN -> [SKIP][76] ([Intel XE#2907]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> ([SKIP][77], [SKIP][78]) ([Intel XE#2136] / [Intel XE#2887]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#2136]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-bmg: NOTRUN -> ([SKIP][80], [PASS][81]) ([Intel XE#2136]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#2887]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: NOTRUN -> ([SKIP][83], [SKIP][84]) ([Intel XE#2136]) +1 other test ( 2 skip ) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-a-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#787]) +195 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-a-hdmi-a-2.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> ([SKIP][86], [SKIP][87]) ([Intel XE#787]) +27 other tests ( 2 skip ) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs at pipe-b-dp-4.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs at pipe-b-dp-4.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-4/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-b-dp-2.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> ([SKIP][89], [SKIP][90]) ([Intel XE#455] / [Intel XE#787]) +7 other tests ( 2 skip ) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2887]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][92] -> ([PASS][93], [INCOMPLETE][94]) ([Intel XE#1727] / [Intel XE#3124]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/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-dp-4: - shard-dg2-set2: [PASS][95] -> ([PASS][96], [INCOMPLETE][97]) ([Intel XE#3124]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-dp-4.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-dp-4.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][98] -> ([PASS][99], [DMESG-WARN][100]) ([Intel XE#1727] / [Intel XE#3113]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg2-set2: NOTRUN -> ([SKIP][101], [SKIP][102]) ([Intel XE#306]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_chamelium_color@ctm-0-50.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#306]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#373]) +10 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#373]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-dg2-set2: NOTRUN -> ([SKIP][106], [SKIP][107]) ([Intel XE#373]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt at kms_content_protection@atomic at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][108] ([Intel XE#1178]) +1 other test fail [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at kms_content_protection@atomic at pipe-a-dp-2.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2390]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@lic-type-0: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#3278]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][111] ([Intel XE#1188]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-dg2-set2: NOTRUN -> ([SKIP][112], [SKIP][113]) ([Intel XE#455]) +3 other tests ( 2 skip ) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_cursor_crc@cursor-random-32x10.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> ([SKIP][114], [SKIP][115]) ([Intel XE#2321]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt at kms_cursor_crc@cursor-random-512x170.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-bmg: NOTRUN -> ([SKIP][116], [SKIP][117]) ([Intel XE#2320] / [Intel XE#2423]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_cursor_crc@cursor-sliding-max-size.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cursor_crc@cursor-sliding-max-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-lnl: NOTRUN -> ([SKIP][118], [SKIP][119]) ([Intel XE#309]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [PASS][120] -> ([SKIP][121], [PASS][122]) ([Intel XE#2291]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][123] -> [SKIP][124] ([Intel XE#2291]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#309]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: [PASS][126] -> ([SKIP][127], [SKIP][128]) ([Intel XE#2291] / [Intel XE#2423]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1508]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [PASS][130] -> ([SKIP][131], [SKIP][132]) ([Intel XE#1340] / [Intel XE#2423]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> ([SKIP][133], [SKIP][134]) ([Intel XE#2372]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_feature_discovery@chamelium.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: NOTRUN -> ([SKIP][135], [SKIP][136]) ([Intel XE#701]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_feature_discovery@chamelium.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1138]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> ([SKIP][138], [SKIP][139]) ([Intel XE#1135]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_feature_discovery@psr2.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-absolute-wf_vblank: - shard-bmg: [PASS][140] -> ([SKIP][141], [SKIP][142]) ([Intel XE#2316] / [Intel XE#2423]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@2x-absolute-wf_vblank.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_flip@2x-absolute-wf_vblank.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_flip@2x-absolute-wf_vblank.html * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1421]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-bmg: [PASS][144] -> ([SKIP][145], [PASS][146]) ([Intel XE#2316]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_flip@2x-dpms-vs-vblank-race-interruptible.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_flip@2x-dpms-vs-vblank-race-interruptible.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][147] -> ([PASS][148], [FAIL][149]) ([Intel XE#301]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [PASS][150] -> [FAIL][151] ([Intel XE#3321]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-suspend: - shard-dg2-set2: NOTRUN -> ([ABORT][152], [PASS][153]) ([Intel XE#2625]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at kms_flip@2x-flip-vs-suspend.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_flip@2x-flip-vs-suspend.html * igt at kms_flip@2x-flip-vs-suspend at cd-hdmi-a2-dp2: - shard-dg2-set2: NOTRUN -> [ABORT][154] ([Intel XE#2625]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at kms_flip@2x-flip-vs-suspend at cd-hdmi-a2-dp2.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][155] -> [SKIP][156] ([Intel XE#2423]) +107 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-nonexisting-fb.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@2x-plain-flip: - shard-bmg: [PASS][157] -> [SKIP][158] ([Intel XE#2316]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-plain-flip.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-lnl: NOTRUN -> ([SKIP][159], [SKIP][160]) ([Intel XE#1421]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-bmg: [PASS][161] -> ([SKIP][162], [FAIL][163]) ([Intel XE#2423] / [Intel XE#2882]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@flip-vs-blocking-wf-vblank.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_flip@flip-vs-blocking-wf-vblank.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at c-dp2: - shard-bmg: NOTRUN -> [FAIL][164] ([Intel XE#2882]) +1 other test fail [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_flip@flip-vs-blocking-wf-vblank at c-dp2.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4: - shard-dg2-set2: [PASS][165] -> [FAIL][166] ([Intel XE#301]) +8 other tests fail [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][167] ([Intel XE#301]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank at c-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][168] ([Intel XE#301] / [Intel XE#3321]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: NOTRUN -> ([PASS][169], [INCOMPLETE][170]) ([Intel XE#2597]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_flip@flip-vs-suspend.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [PASS][171] -> [INCOMPLETE][172] ([Intel XE#2597]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@nonexisting-fb: - shard-dg2-set2: [PASS][173] -> [SKIP][174] ([Intel XE#2423] / [i915#2575]) +9 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_flip@nonexisting-fb.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_flip@nonexisting-fb.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-lnl: NOTRUN -> ([SKIP][175], [SKIP][176]) ([Intel XE#1401] / [Intel XE#1745]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> ([SKIP][177], [SKIP][178]) ([Intel XE#1401]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][179] ([Intel XE#455]) +12 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/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-downscaling: - shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#1401] / [Intel XE#1745]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#1401]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-lnl: NOTRUN -> ([SKIP][182], [SKIP][183]) ([Intel XE#1397] / [Intel XE#1745]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> ([SKIP][184], [SKIP][185]) ([Intel XE#1397]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][186] ([i915#5274]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][187] ([Intel XE#651]) +30 other tests skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> ([SKIP][188], [SKIP][189]) ([Intel XE#651]) +8 other tests ( 2 skip ) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> ([FAIL][190], [FAIL][191]) ([Intel XE#2333]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#656]) +6 other tests skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> ([SKIP][193], [SKIP][194]) ([Intel XE#651]) +2 other tests ( 2 skip ) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> ([SKIP][195], [SKIP][196]) ([Intel XE#2136] / [Intel XE#2313]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-lnl: NOTRUN -> ([SKIP][197], [SKIP][198]) ([Intel XE#656]) +5 other tests ( 2 skip ) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][199] ([Intel XE#2312]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#653]) +31 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][201] ([Intel XE#2313]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: NOTRUN -> ([SKIP][202], [SKIP][203]) ([Intel XE#653]) +4 other tests ( 2 skip ) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-slowdraw.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_frontbuffer_tracking@psr-suspend: - shard-lnl: NOTRUN -> [INCOMPLETE][204] ([Intel XE#2050]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at kms_frontbuffer_tracking@psr-suspend.html * igt at kms_hdr@bpc-switch: - shard-bmg: NOTRUN -> [SKIP][205] ([Intel XE#2423]) +4 other tests skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@static-toggle-suspend: - shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#1503]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#346]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_joiner@basic-big-joiner.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][208] ([Intel XE#616]) +3 other tests fail [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-bmg: [PASS][209] -> ([SKIP][210], [PASS][211]) ([Intel XE#2423]) +141 other tests ( 1 pass, 1 skip ) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format at pipe-a: - shard-bmg: NOTRUN -> [DMESG-WARN][212] ([Intel XE#877]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format at pipe-a.html * igt at kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][213] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][214] ([Intel XE#2763]) +5 other tests skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-bmg: [PASS][215] -> ([SKIP][216], [SKIP][217]) ([Intel XE#2423]) +33 other tests ( 2 skip ) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][218] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d.html * igt at kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#870]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade: - shard-bmg: NOTRUN -> ([SKIP][220], [SKIP][221]) ([Intel XE#870]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_pm_backlight@fade.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][222] -> ([FAIL][223], [FAIL][224]) ([Intel XE#718]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: NOTRUN -> ([SKIP][225], [SKIP][226]) ([Intel XE#1129]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at kms_pm_dc@dc6-psr.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@basic-rte: - shard-bmg: [PASS][227] -> [SKIP][228] ([Intel XE#2446]) +4 other tests skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_pm_rpm@basic-rte.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_pm_rpm@basic-rte.html * igt at kms_pm_rpm@i2c: - shard-bmg: [PASS][229] -> ([PASS][230], [SKIP][231]) ([Intel XE#2446]) +2 other tests ( 1 pass, 1 skip ) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_pm_rpm@i2c.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_pm_rpm@i2c.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_pm_rpm@i2c.html * igt at kms_pm_rpm@legacy-planes-dpms: - shard-bmg: [PASS][232] -> ([SKIP][233], [SKIP][234]) ([Intel XE#2446]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_pm_rpm@legacy-planes-dpms.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_pm_rpm@legacy-planes-dpms.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_pm_rpm@legacy-planes-dpms.html * igt at kms_pm_rpm@universal-planes-dpms: - shard-dg2-set2: [PASS][235] -> [SKIP][236] ([Intel XE#2446]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at kms_pm_rpm@universal-planes-dpms.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_pm_rpm@universal-planes-dpms.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][237] ([Intel XE#2893]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/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-bmg: NOTRUN -> [SKIP][238] ([Intel XE#1489]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][239] ([Intel XE#1489]) +9 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> ([SKIP][240], [SKIP][241]) ([Intel XE#1489] / [Intel XE#2136]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> ([SKIP][242], [SKIP][243]) ([Intel XE#1489]) +2 other tests ( 2 skip ) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-lnl: NOTRUN -> ([SKIP][244], [SKIP][245]) ([Intel XE#2893]) +1 other test ( 2 skip ) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2-set2: NOTRUN -> [SKIP][246] ([Intel XE#1122]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-sprite-plane-move: - shard-bmg: NOTRUN -> [SKIP][247] ([Intel XE#2234] / [Intel XE#2850]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_psr@fbc-pr-sprite-plane-move.html * igt at kms_psr@pr-dpms: - shard-dg2-set2: NOTRUN -> ([SKIP][248], [SKIP][249]) ([Intel XE#2850] / [Intel XE#929]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_psr@pr-dpms.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_psr@pr-dpms.html * igt at kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][250] ([Intel XE#2136]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr@psr-basic.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][251] ([Intel XE#2850] / [Intel XE#929]) +17 other tests skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_psr@psr-dpms.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][252] ([Intel XE#3414]) +2 other tests skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][253] ([Intel XE#1127]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> ([SKIP][254], [SKIP][255]) ([Intel XE#1500] / [Intel XE#362]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [PASS][256] -> [FAIL][257] ([Intel XE#899]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][258] -> [FAIL][259] ([Intel XE#2159]) +1 other test fail [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-3/igt at kms_vrr@cmrr at pipe-a-edp-1.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][260] ([Intel XE#2168]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_vrr@lobf.html * {igt at xe_cg_dmem@test-simple-max} (NEW): - shard-bmg: NOTRUN -> ([SKIP][261], [SKIP][262]) ([Intel XE#1130]) +1 other test ( 2 skip ) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_cg_dmem@test-simple-max.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_cg_dmem@test-simple-max.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][263] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][264] ([Intel XE#1126]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][265] ([Intel XE#1130]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-lnl: NOTRUN -> ([SKIP][266], [SKIP][267]) ([Intel XE#3889]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@discovery-race-vmbind: - shard-bmg: NOTRUN -> [SKIP][268] ([Intel XE#2905]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at xe_eudebug@discovery-race-vmbind.html * igt at xe_eudebug_online@breakpoint-many-sessions-tiles: - shard-dg2-set2: NOTRUN -> ([SKIP][269], [SKIP][270]) ([Intel XE#2905]) +1 other test ( 2 skip ) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at xe_eudebug_online@breakpoint-many-sessions-tiles.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at xe_eudebug_online@breakpoint-many-sessions-tiles.html * igt at xe_eudebug_online@interrupt-other-debuggable: - shard-dg2-set2: NOTRUN -> [SKIP][271] ([Intel XE#2905]) +10 other tests skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_eudebug_online@interrupt-other-debuggable.html * igt at xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> ([SKIP][272], [SKIP][273]) ([Intel XE#1130] / [Intel XE#2905]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_eudebug_online@single-step.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> ([SKIP][274], [SKIP][275]) ([Intel XE#688]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at xe_evict@evict-large-multi-vm.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at xe_evict@evict-large-multi-vm.html * igt at xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][276] ([Intel XE#1130]) +3 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> ([SKIP][277], [SKIP][278]) ([Intel XE#1392]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][279] ([Intel XE#2322]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-dg2-set2: [PASS][280] -> ([SKIP][281], [PASS][282]) ([Intel XE#1392]) +3 other tests ( 1 pass, 1 skip ) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt at xe_exec_basic@multigpu-once-null: - shard-dg2-set2: [PASS][283] -> [SKIP][284] ([Intel XE#1392]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at xe_exec_basic@multigpu-once-null.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at xe_exec_basic@multigpu-once-null.html - shard-lnl: NOTRUN -> [SKIP][285] ([Intel XE#1392]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at xe_exec_basic@multigpu-once-null.html * igt at xe_exec_compute_mode@twice-bindexecqueue-rebind: - shard-bmg: [PASS][286] -> ([SKIP][287], [SKIP][288]) ([Intel XE#1130]) +85 other tests ( 2 skip ) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at xe_exec_compute_mode@twice-bindexecqueue-rebind.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_exec_compute_mode@twice-bindexecqueue-rebind.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_exec_compute_mode@twice-bindexecqueue-rebind.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> ([SKIP][289], [SKIP][290]) ([Intel XE#288]) +4 other tests ( 2 skip ) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][291] ([Intel XE#288]) +27 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_exec_reset@parallel-cat-error: - shard-dg2-set2: [PASS][292] -> [SKIP][293] ([Intel XE#1130]) +7 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at xe_exec_reset@parallel-cat-error.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at xe_exec_reset@parallel-cat-error.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-lnl: NOTRUN -> [SKIP][294] ([Intel XE#2905]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_exec_sip_eudebug@breakpoint-writesip-twice: - shard-lnl: NOTRUN -> ([SKIP][295], [SKIP][296]) ([Intel XE#2905]) +2 other tests ( 2 skip ) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at xe_exec_sip_eudebug@breakpoint-writesip-twice.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at xe_exec_sip_eudebug@breakpoint-writesip-twice.html * igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [PASS][297] -> ([PASS][298], [SKIP][299]) ([Intel XE#1130]) +323 other tests ( 1 pass, 1 skip ) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt at xe_gt_freq@freq_suspend: - shard-dg2-set2: [PASS][300] -> ([PASS][301], [ABORT][302]) ([Intel XE#2625]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at xe_gt_freq@freq_suspend.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_gt_freq@freq_suspend.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at xe_gt_freq@freq_suspend.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][303] ([Intel XE#2229]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][304] -> ([SKIP][305], [PASS][306]) ([Intel XE#1192]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at xe_live_ktest@xe_dma_buf.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at xe_live_ktest@xe_dma_buf.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-bmg: [PASS][307] -> ([PASS][308], [SKIP][309]) ([Intel XE#2229]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [PASS][310] -> ([FAIL][311], [SKIP][312]) ([Intel XE#1192] / [Intel XE#1999]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_live_ktest@xe_mocs.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_live_ktest@xe_mocs.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at xe_live_ktest@xe_mocs.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-bmg: [PASS][313] -> [FAIL][314] ([Intel XE#1999]) +1 other test fail [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][315] ([Intel XE#560]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at xe_media_fill@media-fill.html * igt at xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][316] ([Intel XE#4045]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at xe_mmap@pci-membarrier-parallel.html * igt at xe_module_load@many-reload: - shard-bmg: [PASS][317] -> ([FAIL][318], [PASS][319]) ([Intel XE#3546]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_module_load@many-reload.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_module_load@many-reload.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at xe_module_load@many-reload.html * igt at xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][320] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> ([FAIL][321], [FAIL][322]) ([Intel XE#1173]) +1 other test ( 2 fail ) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][323] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@s2idle-basic: - shard-dg2-set2: [PASS][324] -> [ABORT][325] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_pm@s2idle-basic.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at xe_pm@s2idle-basic.html * igt at xe_pm@s3-exec-after: - shard-dg2-set2: [PASS][326] -> ([PASS][327], [ABORT][328]) ([Intel XE#1358]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_pm@s3-exec-after.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at xe_pm@s3-exec-after.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at xe_pm@s3-exec-after.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> ([SKIP][329], [SKIP][330]) ([Intel XE#2284] / [Intel XE#366]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at xe_pm@s4-d3cold-basic-exec.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-vm-bind-userptr: - shard-lnl: [PASS][331] -> [ABORT][332] ([Intel XE#1358] / [Intel XE#1794]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at xe_pm@s4-vm-bind-userptr.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt at xe_pm@s4-vm-bind-userptr.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][333] -> ([PASS][334], [FAIL][335]) ([Intel XE#958]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at xe_pm_residency@toggle-gt-c6.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt at xe_pm_residency@toggle-gt-c6.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-invalid-size: - shard-lnl: NOTRUN -> [SKIP][336] ([Intel XE#944]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at xe_query@multigpu-query-invalid-size.html * igt at xe_query@multigpu-query-mem-usage: - shard-dg2-set2: NOTRUN -> [SKIP][337] ([Intel XE#944]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: NOTRUN -> ([SKIP][338], [SKIP][339]) ([Intel XE#1130] / [Intel XE#944]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at xe_query@multigpu-query-uc-fw-version-huc.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_query@query-gt-list: - shard-bmg: [PASS][340] -> [SKIP][341] ([Intel XE#1130]) +222 other tests skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_query@query-gt-list.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_query@query-gt-list.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][342] ([Intel XE#3342]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@munmap-style-unbind-end: - shard-bmg: NOTRUN -> ([SKIP][343], [PASS][344]) ([Intel XE#1130]) +4 other tests ( 1 pass, 1 skip ) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_vm@munmap-style-unbind-end.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at xe_vm@munmap-style-unbind-end.html #### Possible fixes #### * igt at core_getversion@basic: - shard-bmg: [FAIL][345] -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at core_getversion@basic.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-4/igt at core_getversion@basic.html * igt at fbdev@pan: - shard-bmg: [SKIP][347] ([Intel XE#2134]) -> ([PASS][348], [PASS][349]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at fbdev@pan.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at fbdev@pan.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at fbdev@pan.html * igt at kms_async_flips@alternate-sync-async-flip at pipe-a-dp-2: - shard-bmg: [FAIL][350] ([Intel XE#827]) -> [PASS][351] [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-dp-2.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-dp-2.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][352] ([Intel XE#3719]) -> [PASS][353] +3 other tests pass [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][354] ([Intel XE#3862]) -> ([PASS][355], [PASS][356]) +1 other test ( 2 pass ) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1: - shard-lnl: [FAIL][357] ([Intel XE#4075]) -> [PASS][358] +1 other test pass [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [SKIP][359] ([Intel XE#2291]) -> [PASS][360] +1 other test pass [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][361] ([Intel XE#2291]) -> ([PASS][362], [PASS][363]) +2 other tests ( 2 pass ) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [FAIL][364] ([Intel XE#1475]) -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-4/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_flip@2x-flip-vs-expired-vblank at ac-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][366] ([Intel XE#301]) -> ([PASS][367], [PASS][368]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank at ac-hdmi-a6-dp4.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank at ac-hdmi-a6-dp4.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank at ac-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-bmg: [SKIP][369] ([Intel XE#2316]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][371] ([Intel XE#2316]) -> ([PASS][372], [PASS][373]) +1 other test ( 2 pass ) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_flip@2x-plain-flip-fb-recreate.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@dpms-vs-vblank-race: - shard-dg2-set2: [INCOMPLETE][374] ([Intel XE#2049]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_flip@dpms-vs-vblank-race.html * igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6: - shard-dg2-set2: [INCOMPLETE][376] -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][378] ([Intel XE#886]) -> ([PASS][379], [PASS][380]) +1 other test ( 2 pass ) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_flip@flip-vs-absolute-wf_vblank.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt at kms_flip@flip-vs-absolute-wf_vblank.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a6: - shard-dg2-set2: [FAIL][381] ([Intel XE#4072]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a6.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a6.html * igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a6: - shard-dg2-set2: [FAIL][383] ([Intel XE#886]) -> [PASS][384] +1 other test pass [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a6.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][385] ([Intel XE#2882] / [Intel XE#3820]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3: - shard-bmg: [FAIL][387] ([Intel XE#3820]) -> [PASS][388] +1 other test pass [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][389] ([Intel XE#2571]) -> ([PASS][390], [PASS][391]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][392] ([Intel XE#899]) -> [PASS][393] +1 other test pass [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at xe_exec_basic@multigpu-once-bindexecqueue: - shard-dg2-set2: [SKIP][394] ([Intel XE#1392]) -> [PASS][395] +2 other tests pass [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_exec_basic@multigpu-once-bindexecqueue.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at xe_exec_basic@multigpu-once-bindexecqueue.html * igt at xe_pm@s2idle-basic-exec: - shard-dg2-set2: [ABORT][396] ([Intel XE#1358]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_pm@s2idle-basic-exec.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at xe_pm@s2idle-basic-exec.html * igt at xe_pm@s4-basic-exec: - shard-lnl: [ABORT][398] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> ([PASS][399], [PASS][400]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt at xe_pm@s4-basic-exec.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at xe_pm@s4-basic-exec.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt at xe_pm@s4-basic-exec.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][401] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_vm@bind-once: - shard-bmg: [SKIP][403] ([Intel XE#1130]) -> [PASS][404] +1 other test pass [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_vm@bind-once.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at xe_vm@bind-once.html * igt at xe_vm@mixed-userptr-misaligned-binds-1611661312: - shard-bmg: [SKIP][405] ([Intel XE#1130]) -> ([PASS][406], [PASS][407]) +1 other test ( 2 pass ) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_vm@mixed-userptr-misaligned-binds-1611661312.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at xe_vm@mixed-userptr-misaligned-binds-1611661312.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at xe_vm@mixed-userptr-misaligned-binds-1611661312.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][408] ([Intel XE#2233]) -> ([SKIP][409], [SKIP][410]) ([Intel XE#2233] / [Intel XE#2423]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][411] ([Intel XE#3007]) -> ([SKIP][412], [SKIP][413]) ([Intel XE#2423]) [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_addfb_basic@bad-pitch-999.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_addfb_basic@bad-pitch-999.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_addfb_basic@bad-pitch-999.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][414] ([Intel XE#827]) -> ([SKIP][415], [PASS][416]) ([Intel XE#2423]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_async_flips@alternate-sync-async-flip.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: [SKIP][417] ([Intel XE#2550]) -> ([SKIP][418], [SKIP][419]) ([Intel XE#2550] / [Intel XE#3767]) +23 other tests ( 2 skip ) [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-bmg: [SKIP][420] ([Intel XE#3768]) -> ([SKIP][421], [SKIP][422]) ([Intel XE#2423] / [Intel XE#3768]) [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_async_flips@invalid-async-flip-atomic.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_async_flips@invalid-async-flip-atomic.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: [SKIP][423] ([Intel XE#2370]) -> ([SKIP][424], [SKIP][425]) ([Intel XE#2423]) [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][426] ([Intel XE#2327]) -> ([SKIP][427], [SKIP][428]) ([Intel XE#2136] / [Intel XE#2327]) +4 other tests ( 2 skip ) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-bmg: [SKIP][429] ([Intel XE#2327]) -> ([SKIP][430], [SKIP][431]) ([Intel XE#2136]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][432] ([Intel XE#2327]) -> [SKIP][433] ([Intel XE#2136]) +2 other tests skip [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][434] ([Intel XE#2136] / [Intel XE#2231]) -> ([SKIP][435], [SKIP][436]) ([Intel XE#1124]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][437] ([Intel XE#607]) -> ([SKIP][438], [SKIP][439]) ([Intel XE#2136] / [Intel XE#607]) [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][440] ([Intel XE#610]) -> [SKIP][441] ([Intel XE#2136]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-bmg: [SKIP][442] ([Intel XE#1124]) -> [SKIP][443] ([Intel XE#2136]) +13 other tests skip [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][444] ([Intel XE#1124]) -> ([SKIP][445], [SKIP][446]) ([Intel XE#2136]) +3 other tests ( 2 skip ) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][447] ([Intel XE#1124]) -> ([SKIP][448], [SKIP][449]) ([Intel XE#1124] / [Intel XE#2136]) +19 other tests ( 2 skip ) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-bmg: [SKIP][450] ([Intel XE#2328]) -> ([SKIP][451], [SKIP][452]) ([Intel XE#2136]) +1 other test ( 2 skip ) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: [SKIP][453] ([Intel XE#610]) -> ([SKIP][454], [SKIP][455]) ([Intel XE#2136] / [Intel XE#610]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: [SKIP][456] ([Intel XE#2314] / [Intel XE#2894]) -> ([SKIP][457], [SKIP][458]) ([Intel XE#2314] / [Intel XE#2423] / [Intel XE#2894]) [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: [SKIP][459] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][460] ([Intel XE#2423]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][461] ([Intel XE#367]) -> [SKIP][462] ([Intel XE#2423]) +3 other tests skip [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: [SKIP][463] ([Intel XE#367]) -> ([SKIP][464], [SKIP][465]) ([Intel XE#2423] / [Intel XE#367]) +5 other tests ( 2 skip ) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-bmg: [SKIP][466] ([Intel XE#2887]) -> ([SKIP][467], [SKIP][468]) ([Intel XE#2136]) +7 other tests ( 2 skip ) [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][469] ([Intel XE#2136] / [Intel XE#2231]) -> ([SKIP][470], [SKIP][471]) ([Intel XE#2887]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][472] ([Intel XE#2887]) -> [SKIP][473] ([Intel XE#2136]) +18 other tests skip [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-bmg: [SKIP][474] ([Intel XE#2652] / [Intel XE#787]) -> ([SKIP][475], [SKIP][476]) ([Intel XE#2136]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][477] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][478] ([Intel XE#2136]) [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][479] ([Intel XE#3432]) -> [SKIP][480] ([Intel XE#2136]) +2 other tests skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-bmg: [SKIP][481] ([Intel XE#3432]) -> ([SKIP][482], [SKIP][483]) ([Intel XE#2136]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: [SKIP][484] ([Intel XE#3432]) -> ([SKIP][485], [SKIP][486]) ([Intel XE#2136] / [Intel XE#3432]) +2 other tests ( 2 skip ) [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][487] ([Intel XE#2887]) -> ([SKIP][488], [SKIP][489]) ([Intel XE#2136] / [Intel XE#2887]) +23 other tests ( 2 skip ) [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-bmg: [SKIP][490] ([Intel XE#2652] / [Intel XE#787]) -> ([SKIP][491], [SKIP][492]) ([Intel XE#2136] / [Intel XE#2652] / [Intel XE#787]) +1 other test ( 2 skip ) [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][493] ([Intel XE#2724]) -> ([SKIP][494], [SKIP][495]) ([Intel XE#2136]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_cdclk@mode-transition.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cdclk@mode-transition.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][496] ([Intel XE#2724]) -> ([SKIP][497], [SKIP][498]) ([Intel XE#2136] / [Intel XE#2724]) +1 other test ( 2 skip ) [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cdclk@mode-transition-all-outputs.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_cdclk@mode-transition-all-outputs.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][499] ([Intel XE#2325]) -> ([SKIP][500], [SKIP][501]) ([Intel XE#2325] / [Intel XE#2423]) +2 other tests ( 2 skip ) [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_chamelium_color@ctm-0-50.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_chamelium_color@ctm-0-50.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-bmg: [SKIP][502] ([Intel XE#2325]) -> [SKIP][503] ([Intel XE#2423]) +4 other tests skip [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_chamelium_color@ctm-blue-to-red.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][504] ([Intel XE#3007]) -> ([SKIP][505], [SKIP][506]) ([Intel XE#2325] / [Intel XE#2423]) [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_color@ctm-green-to-red.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_chamelium_color@ctm-green-to-red.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-max: - shard-dg2-set2: [SKIP][507] ([Intel XE#306]) -> [SKIP][508] ([Intel XE#2423] / [i915#2575]) [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_chamelium_color@ctm-max.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_chamelium_color@ctm-max.html * igt at kms_chamelium_edid@dp-edid-resolution-list: - shard-bmg: [SKIP][509] ([Intel XE#2252]) -> ([SKIP][510], [SKIP][511]) ([Intel XE#2252] / [Intel XE#2423]) +16 other tests ( 2 skip ) [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_edid@dp-edid-resolution-list.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_chamelium_edid@dp-edid-resolution-list.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_chamelium_edid@dp-edid-resolution-list.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2-set2: [SKIP][512] ([Intel XE#373]) -> [SKIP][513] ([Intel XE#2423] / [i915#2575]) [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_frames@hdmi-aspect-ratio: - shard-bmg: [SKIP][514] ([Intel XE#2252]) -> [SKIP][515] ([Intel XE#2423]) +10 other tests skip [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_chamelium_frames@hdmi-aspect-ratio.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_chamelium_frames@hdmi-aspect-ratio.html * igt at kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-bmg: [SKIP][516] ([Intel XE#3007]) -> ([SKIP][517], [SKIP][518]) ([Intel XE#2252] / [Intel XE#2423]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@dp-hpd-storm-disable: - shard-bmg: [SKIP][519] ([Intel XE#2252]) -> ([SKIP][520], [SKIP][521]) ([Intel XE#2423]) +3 other tests ( 2 skip ) [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html * igt at kms_content_protection@atomic: - shard-bmg: [FAIL][522] ([Intel XE#1178]) -> ([SKIP][523], [SKIP][524]) ([Intel XE#2341] / [Intel XE#2423]) [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_content_protection@atomic.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_content_protection@atomic.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_content_protection@atomic.html * igt at kms_content_protection@content-type-change: - shard-bmg: [SKIP][525] ([Intel XE#2341]) -> ([SKIP][526], [SKIP][527]) ([Intel XE#2423]) [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_content_protection@content-type-change.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_content_protection@content-type-change.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][528] ([Intel XE#2390]) -> ([SKIP][529], [SKIP][530]) ([Intel XE#2390] / [Intel XE#2423]) [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_content_protection@dp-mst-type-0.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_content_protection@dp-mst-type-0.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-bmg: [FAIL][531] ([Intel XE#1178]) -> [SKIP][532] ([Intel XE#2423]) [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_content_protection@legacy.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-bmg: [FAIL][533] ([Intel XE#1178]) -> ([FAIL][534], [SKIP][535]) ([Intel XE#1178] / [Intel XE#2423]) [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_content_protection@lic-type-0.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_content_protection@lic-type-0.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-bmg: [SKIP][536] ([Intel XE#2341]) -> [SKIP][537] ([Intel XE#2423]) [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_content_protection@lic-type-1.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][538] ([Intel XE#2341]) -> ([SKIP][539], [SKIP][540]) ([Intel XE#2341] / [Intel XE#2423]) [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_content_protection@mei-interface.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_content_protection@mei-interface.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-bmg: [FAIL][541] ([Intel XE#1188]) -> ([SKIP][542], [SKIP][543]) ([Intel XE#2423]) [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_content_protection@uevent.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_content_protection@uevent.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-onscreen-128x42: - shard-bmg: [SKIP][544] ([Intel XE#2320]) -> ([SKIP][545], [SKIP][546]) ([Intel XE#2423]) +2 other tests ( 2 skip ) [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_crc@cursor-onscreen-128x42.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cursor_crc@cursor-onscreen-128x42.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cursor_crc@cursor-onscreen-128x42.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][547] ([Intel XE#2320]) -> ([SKIP][548], [SKIP][549]) ([Intel XE#2320] / [Intel XE#2423]) +6 other tests ( 2 skip ) [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_crc@cursor-random-32x32.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_cursor_crc@cursor-random-32x32.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-bmg: [SKIP][550] ([Intel XE#2321]) -> ([SKIP][551], [SKIP][552]) ([Intel XE#2321] / [Intel XE#2423]) +1 other test ( 2 skip ) [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_cursor_crc@cursor-random-512x170.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cursor_crc@cursor-random-512x170.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-bmg: [SKIP][553] ([Intel XE#2321]) -> ([SKIP][554], [SKIP][555]) ([Intel XE#2423]) [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_cursor_crc@cursor-random-512x512.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cursor_crc@cursor-random-512x512.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: [SKIP][556] ([Intel XE#2320]) -> [SKIP][557] ([Intel XE#2423]) +7 other tests skip [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_cursor_crc@cursor-sliding-256x85.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][558] ([Intel XE#2321]) -> [SKIP][559] ([Intel XE#2423]) [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_crc@cursor-sliding-512x512.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-bmg: [SKIP][560] ([Intel XE#2291]) -> ([SKIP][561], [SKIP][562]) ([Intel XE#2423]) [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-bmg: [SKIP][563] ([Intel XE#2291]) -> [SKIP][564] ([Intel XE#2423]) +1 other test skip [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][565] ([Intel XE#877]) -> ([DMESG-WARN][566], [SKIP][567]) ([Intel XE#2423] / [Intel XE#877]) [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: [SKIP][568] ([Intel XE#2286]) -> [SKIP][569] ([Intel XE#2423]) [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [FAIL][570] ([Intel XE#2141]) -> ([FAIL][571], [SKIP][572]) ([Intel XE#2136] / [Intel XE#2141]) [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][573] ([Intel XE#1508]) -> [SKIP][574] ([Intel XE#2136]) [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][575] ([Intel XE#2425]) -> ([SKIP][576], [PASS][577]) ([Intel XE#2423]) [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_display_modes@extended-mode-basic.html [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][578] ([Intel XE#2323]) -> [SKIP][579] ([Intel XE#2423]) [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_display_modes@mst-extended-mode-negative.html [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_display_modes@mst-extended-mode-negative.html - shard-dg2-set2: [SKIP][580] ([Intel XE#307]) -> [SKIP][581] ([Intel XE#2423] / [i915#2575]) [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_display_modes@mst-extended-mode-negative.html [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][582] ([Intel XE#2244]) -> [SKIP][583] ([Intel XE#2136]) +1 other test skip [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: [SKIP][584] ([Intel XE#2244]) -> ([SKIP][585], [SKIP][586]) ([Intel XE#2136] / [Intel XE#2244]) +2 other tests ( 2 skip ) [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_dsc@dsc-with-output-formats.html [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_dsc@dsc-with-output-formats.html [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-bmg: [SKIP][587] ([Intel XE#2244]) -> ([SKIP][588], [SKIP][589]) ([Intel XE#2136]) [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][590] ([Intel XE#776]) -> ([SKIP][591], [SKIP][592]) ([Intel XE#2136] / [Intel XE#776]) +1 other test ( 2 skip ) [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_fbcon_fbt@psr-suspend.html [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_fbcon_fbt@psr-suspend.html [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][593] ([Intel XE#2375]) -> ([SKIP][594], [SKIP][595]) ([Intel XE#2375] / [Intel XE#2423]) [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_feature_discovery@dp-mst.html [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_feature_discovery@dp-mst.html [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr2: - shard-bmg: [SKIP][596] ([Intel XE#2374]) -> ([SKIP][597], [SKIP][598]) ([Intel XE#2374] / [Intel XE#2423]) [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_feature_discovery@psr2.html [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_feature_discovery@psr2.html [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-bmg: [FAIL][599] ([Intel XE#2882]) -> ([SKIP][600], [FAIL][601]) ([Intel XE#2423] / [Intel XE#2882]) [599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-dg2-set2: [FAIL][602] ([Intel XE#301]) -> ([FAIL][603], [PASS][604]) ([Intel XE#301]) [602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank.html [603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank.html [604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][605] ([Intel XE#2882] / [Intel XE#3820]) -> [SKIP][606] ([Intel XE#2316]) [605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: [SKIP][607] ([Intel XE#2316]) -> [SKIP][608] ([Intel XE#2423]) +2 other tests skip [607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-vs-hang.html [608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: [SKIP][609] ([Intel XE#2316]) -> ([PASS][610], [SKIP][611]) ([Intel XE#2423]) +1 other test ( 1 pass, 1 skip ) [609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-bmg: [SKIP][612] ([Intel XE#2316]) -> ([SKIP][613], [SKIP][614]) ([Intel XE#2423]) [612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-expired-vblank: - shard-bmg: [FAIL][615] ([Intel XE#2882]) -> [SKIP][616] ([Intel XE#2423]) [615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank.html [616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: [SKIP][617] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][618] ([Intel XE#2136]) +4 other tests skip [617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-bmg: [SKIP][619] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][620] ([Intel XE#2136]) [619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html [620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: [SKIP][621] ([Intel XE#2293] / [Intel XE#2380]) -> ([SKIP][622], [SKIP][623]) ([Intel XE#2136] / [Intel XE#2293] / [Intel XE#2380]) +10 other tests ( 2 skip ) [621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/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-upscaling: - shard-bmg: [SKIP][624] ([Intel XE#2293] / [Intel XE#2380]) -> ([SKIP][625], [SKIP][626]) ([Intel XE#2136]) +2 other tests ( 2 skip ) [624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/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: [SKIP][627] ([Intel XE#2311]) -> ([SKIP][628], [SKIP][629]) ([Intel XE#2136] / [Intel XE#2311]) +45 other tests ( 2 skip ) [627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][630] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][631] ([Intel XE#2311]) [630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html [631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][632] ([Intel XE#651]) -> [SKIP][633] ([Intel XE#2136]) +1 other test skip [632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html [633]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][634] ([Intel XE#2311]) -> [SKIP][635] ([Intel XE#2136]) +33 other tests skip [634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][636] ([Intel XE#651]) -> [SKIP][637] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][638] ([Intel XE#2311]) -> [SKIP][639] ([Intel XE#2312]) +6 other tests skip [638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html [639]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][640] ([Intel XE#2312]) -> ([SKIP][641], [SKIP][642]) ([Intel XE#2136] / [Intel XE#2311]) +6 other tests ( 2 skip ) [640]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [641]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [642]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][643] ([Intel XE#2312]) -> ([SKIP][644], [SKIP][645]) ([Intel XE#2136]) +5 other tests ( 2 skip ) [643]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [644]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [645]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: [SKIP][646] ([Intel XE#2136] / [Intel XE#2231]) -> ([SKIP][647], [SKIP][648]) ([Intel XE#2136]) [646]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html [647]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html [648]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [FAIL][649] ([Intel XE#2333]) -> [SKIP][650] ([Intel XE#2136]) +12 other tests skip [649]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [650]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][651] ([Intel XE#2333]) -> [SKIP][652] ([Intel XE#2312]) +4 other tests skip [651]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html [652]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][653] ([Intel XE#2333]) -> ([SKIP][654], [SKIP][655]) ([Intel XE#2136] / [Intel XE#2312]) +2 other tests ( 2 skip ) [653]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [654]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [655]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [FAIL][656] ([Intel XE#2333]) -> ([FAIL][657], [SKIP][658]) ([Intel XE#2312] / [Intel XE#2333]) [656]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [657]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [658]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][659] ([Intel XE#2312]) -> ([FAIL][660], [SKIP][661]) ([Intel XE#2136] / [Intel XE#2333]) +1 other test ( 1 fail, 1 skip ) [659]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [660]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [661]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][662] ([Intel XE#2312]) -> ([FAIL][663], [FAIL][664]) ([Intel XE#2333]) +2 other tests ( 2 fail ) [662]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [663]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [664]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][665] ([Intel XE#2136] / [Intel XE#2231]) -> ([SKIP][666], [FAIL][667]) ([Intel XE#2136] / [Intel XE#2333]) [665]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [666]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [667]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/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-bmg: [FAIL][668] ([Intel XE#2333]) -> ([SKIP][669], [SKIP][670]) ([Intel XE#2136]) +5 other tests ( 2 skip ) [668]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [669]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [670]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][671] ([Intel XE#2333]) -> ([FAIL][672], [SKIP][673]) ([Intel XE#2136] / [Intel XE#2333]) +23 other tests ( 1 fail, 1 skip ) [671]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [672]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [673]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: [DMESG-FAIL][674] ([Intel XE#877]) -> ([FAIL][675], [FAIL][676]) ([Intel XE#2333]) [674]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [675]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [676]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][677] ([Intel XE#2312]) -> ([SKIP][678], [SKIP][679]) ([Intel XE#2311] / [Intel XE#2312]) [677]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html [678]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html [679]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][680] ([Intel XE#2311]) -> ([SKIP][681], [SKIP][682]) ([Intel XE#2136] / [Intel XE#2312]) +2 other tests ( 2 skip ) [680]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html [681]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html [682]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move: - shard-bmg: [SKIP][683] ([Intel XE#2312]) -> ([SKIP][684], [SKIP][685]) ([Intel XE#2311]) +2 other tests ( 2 skip ) [683]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html [684]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html [685]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][686] ([Intel XE#2312]) -> [SKIP][687] ([Intel XE#2311]) [686]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html [687]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move: - shard-bmg: [SKIP][688] ([Intel XE#2311]) -> ([SKIP][689], [SKIP][690]) ([Intel XE#2311] / [Intel XE#2312]) +1 other test ( 2 skip ) [688]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html [689]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html [690]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-suspend: - shard-bmg: [SKIP][691] ([Intel XE#2311]) -> ([SKIP][692], [SKIP][693]) ([Intel XE#2136]) +10 other tests ( 2 skip ) [691]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-suspend.html [692]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-suspend.html [693]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-suspend.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: [SKIP][694] ([Intel XE#2352]) -> [SKIP][695] ([Intel XE#2136]) [694]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [695]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][696] ([Intel XE#2313]) -> ([SKIP][697], [SKIP][698]) ([Intel XE#2136]) +12 other tests ( 2 skip ) [696]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html [697]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html [698]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][699] ([Intel XE#2313]) -> ([SKIP][700], [SKIP][701]) ([Intel XE#2136] / [Intel XE#2313]) +45 other tests ( 2 skip ) [699]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html [700]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html [701]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][702] ([Intel XE#2313]) -> [SKIP][703] ([Intel XE#2312]) +4 other tests skip [702]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [703]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][704] ([Intel XE#2313]) -> ([SKIP][705], [SKIP][706]) ([Intel XE#2136] / [Intel XE#2312]) +3 other tests ( 2 skip ) [704]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html [705]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html [706]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][707] ([Intel XE#2312]) -> ([SKIP][708], [SKIP][709]) ([Intel XE#2136] / [Intel XE#2313]) +3 other tests ( 2 skip ) [707]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [708]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [709]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][710] ([Intel XE#2312]) -> [SKIP][711] ([Intel XE#2136]) +10 other tests skip [710]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html [711]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][712] ([Intel XE#2313]) -> ([SKIP][713], [SKIP][714]) ([Intel XE#2312] / [Intel XE#2313]) +2 other tests ( 2 skip ) [712]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [713]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [714]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][715] ([Intel XE#2312]) -> [SKIP][716] ([Intel XE#2313]) +1 other test skip [715]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [716]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][717] ([Intel XE#2352]) -> ([SKIP][718], [SKIP][719]) ([Intel XE#2136] / [Intel XE#2352]) [717]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [718]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [719]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][720] ([Intel XE#2350]) -> ([SKIP][721], [SKIP][722]) ([Intel XE#2136]) [720]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [721]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [722]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][723] ([Intel XE#2313]) -> [SKIP][724] ([Intel XE#2136]) +33 other tests skip [723]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [724]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html - shard-dg2-set2: [SKIP][725] ([Intel XE#653]) -> [SKIP][726] ([Intel XE#2136]) +2 other tests skip [725]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [726]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][727] ([Intel XE#2312]) -> ([SKIP][728], [SKIP][729]) ([Intel XE#2312] / [Intel XE#2313]) [727]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html [728]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html [729]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-rte: - shard-bmg: [SKIP][730] ([Intel XE#2312]) -> ([SKIP][731], [SKIP][732]) ([Intel XE#2313]) +2 other tests ( 2 skip ) [730]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-rte.html [731]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-rte.html [732]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-rte.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][733] ([Intel XE#2312]) -> ([SKIP][734], [SKIP][735]) ([Intel XE#2136] / [Intel XE#2312]) +1 other test ( 2 skip ) [733]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html [734]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html [735]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][736] ([Intel XE#2340]) -> ([SKIP][737], [SKIP][738]) ([Intel XE#2340] / [Intel XE#2423]) [736]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_getfb@getfb2-accept-ccs.html [737]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_getfb@getfb2-accept-ccs.html [738]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [SKIP][739] ([Intel XE#1503]) -> ([PASS][740], [SKIP][741]) ([Intel XE#2423]) [739]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_hdr@invalid-hdr.html [740]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_hdr@invalid-hdr.html [741]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@basic-big-joiner: - shard-bmg: [SKIP][742] ([Intel XE#346]) -> ([SKIP][743], [SKIP][744]) ([Intel XE#2136] / [Intel XE#346]) [742]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_joiner@basic-big-joiner.html [743]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_joiner@basic-big-joiner.html [744]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-bmg: [SKIP][745] ([Intel XE#2927]) -> ([SKIP][746], [SKIP][747]) ([Intel XE#2136] / [Intel XE#2927]) [745]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_joiner@basic-ultra-joiner.html [746]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_joiner@basic-ultra-joiner.html [747]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][748] ([Intel XE#2501]) -> ([SKIP][749], [SKIP][750]) ([Intel XE#2423] / [Intel XE#2501]) [748]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [749]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [750]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-bmg: [SKIP][751] ([Intel XE#2486]) -> ([SKIP][752], [SKIP][753]) ([Intel XE#2423] / [Intel XE#2486]) [751]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_panel_fitting@atomic-fastset.html [752]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_panel_fitting@atomic-fastset.html [753]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-bmg: [SKIP][754] ([Intel XE#3007]) -> [SKIP][755] ([Intel XE#2423]) +1 other test skip [754]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_plane_alpha_blend@constant-alpha-max.html [755]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_plane_alpha_blend@constant-alpha-max.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][756] ([Intel XE#2393]) -> [SKIP][757] ([Intel XE#2423]) [756]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_plane_lowres@tiling-y.html [757]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_lowres@tiling-yf: - shard-bmg: [SKIP][758] ([Intel XE#2393]) -> ([SKIP][759], [SKIP][760]) ([Intel XE#2423]) [758]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_plane_lowres@tiling-yf.html [759]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_plane_lowres@tiling-yf.html [760]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][761] ([Intel XE#2493]) -> ([SKIP][762], [SKIP][763]) ([Intel XE#2423] / [Intel XE#2493]) +1 other test ( 2 skip ) [761]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_plane_multiple@tiling-yf.html [762]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_plane_multiple@tiling-yf.html [763]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-bmg: [SKIP][764] ([Intel XE#3007]) -> [DMESG-WARN][765] ([Intel XE#877]) [764]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html [765]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-bmg: [SKIP][766] ([Intel XE#2763]) -> ([SKIP][767], [SKIP][768]) ([Intel XE#2423]) [766]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html [767]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html [768]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-bmg: [SKIP][769] ([Intel XE#2763]) -> [SKIP][770] ([Intel XE#2423]) +2 other tests skip [769]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [770]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][771] ([Intel XE#2763]) -> ([SKIP][772], [SKIP][773]) ([Intel XE#2423] / [Intel XE#2763]) +7 other tests ( 2 skip ) [771]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [772]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [773]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][774] ([Intel XE#2938]) -> ([SKIP][775], [SKIP][776]) ([Intel XE#2136]) [774]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_pm_backlight@brightness-with-dpms.html [775]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_pm_backlight@brightness-with-dpms.html [776]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][777] ([Intel XE#2392]) -> [SKIP][778] ([Intel XE#2136]) [777]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_pm_dc@dc5-psr.html [778]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][779] ([Intel XE#3309]) -> ([SKIP][780], [SKIP][781]) ([Intel XE#2136] / [Intel XE#3309]) [779]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_pm_dc@dc5-retention-flops.html [780]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_pm_dc@dc5-retention-flops.html [781]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-bmg: [SKIP][782] ([Intel XE#2392]) -> ([SKIP][783], [SKIP][784]) ([Intel XE#2136] / [Intel XE#2392]) [782]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_pm_dc@dc6-psr.html [783]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_pm_dc@dc6-psr.html [784]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [FAIL][785] -> ([SKIP][786], [SKIP][787]) ([Intel XE#2446]) [785]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_pm_rpm@basic-pci-d3-state.html [786]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_pm_rpm@basic-pci-d3-state.html [787]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][788] ([Intel XE#1439] / [Intel XE#836]) -> ([SKIP][789], [SKIP][790]) ([Intel XE#1439] / [Intel XE#2446] / [Intel XE#836]) [788]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [789]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [790]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-bmg: [SKIP][791] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> ([SKIP][792], [SKIP][793]) ([Intel XE#1439] / [Intel XE#2446] / [Intel XE#3141] / [Intel XE#836]) +1 other test ( 2 skip ) [791]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_pm_rpm@modeset-lpsp.html [792]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_pm_rpm@modeset-lpsp.html [793]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: [SKIP][794] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][795] ([Intel XE#2446]) [794]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [795]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][796] ([Intel XE#1489]) -> ([SKIP][797], [SKIP][798]) ([Intel XE#2136]) +4 other tests ( 2 skip ) [796]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [797]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [798]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][799] ([Intel XE#1489]) -> [SKIP][800] ([Intel XE#2136]) +10 other tests skip [799]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [800]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][801] ([Intel XE#1489]) -> ([SKIP][802], [SKIP][803]) ([Intel XE#1489] / [Intel XE#2136]) +15 other tests ( 2 skip ) [801]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [802]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [803]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/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-dg2-set2: [SKIP][804] ([Intel XE#1489]) -> [SKIP][805] ([Intel XE#2136]) [804]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html [805]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@page_flip-p010: - shard-bmg: [SKIP][806] ([Intel XE#2387]) -> ([SKIP][807], [SKIP][808]) ([Intel XE#2136] / [Intel XE#2387]) [806]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_psr2_su@page_flip-p010.html [807]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr2_su@page_flip-p010.html [808]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-bmg: [SKIP][809] ([Intel XE#2387]) -> ([SKIP][810], [SKIP][811]) ([Intel XE#2136]) [809]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_psr2_su@page_flip-xrgb8888.html [810]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr2_su@page_flip-xrgb8888.html [811]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-blt: - shard-bmg: [SKIP][812] ([Intel XE#2234] / [Intel XE#2850]) -> ([SKIP][813], [SKIP][814]) ([Intel XE#2136] / [Intel XE#2234] / [Intel XE#2850]) +26 other tests ( 2 skip ) [812]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_psr@fbc-pr-cursor-blt.html [813]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_psr@fbc-pr-cursor-blt.html [814]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_psr@fbc-pr-cursor-blt.html * igt at kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][815] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][816] ([Intel XE#2136] / [Intel XE#2351]) [815]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at kms_psr@fbc-psr-sprite-plane-onoff.html [816]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_psr@fbc-psr-sprite-plane-onoff.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: [SKIP][817] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][818] ([Intel XE#2136]) +15 other tests skip [817]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_psr@psr-primary-page-flip.html [818]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr2-suspend: - shard-bmg: [SKIP][819] ([Intel XE#2234] / [Intel XE#2850]) -> ([SKIP][820], [SKIP][821]) ([Intel XE#2136]) +6 other tests ( 2 skip ) [819]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_psr@psr2-suspend.html [820]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr@psr2-suspend.html [821]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][822] ([Intel XE#2414]) -> ([SKIP][823], [SKIP][824]) ([Intel XE#2136]) [822]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [823]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [824]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][825] ([Intel XE#2414]) -> ([SKIP][826], [SKIP][827]) ([Intel XE#2136] / [Intel XE#2414]) [825]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [826]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [827]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@bad-pixel-format: - shard-bmg: [SKIP][828] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][829] ([Intel XE#2423]) [828]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_rotation_crc@bad-pixel-format.html [829]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@primary-rotation-90: - shard-bmg: [SKIP][830] ([Intel XE#3414] / [Intel XE#3904]) -> ([SKIP][831], [SKIP][832]) ([Intel XE#2423] / [Intel XE#3414] / [Intel XE#3904]) +1 other test ( 2 skip ) [830]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_rotation_crc@primary-rotation-90.html [831]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_rotation_crc@primary-rotation-90.html [832]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-bmg: [SKIP][833] ([Intel XE#2330]) -> [SKIP][834] ([Intel XE#2423]) +1 other test skip [833]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html [834]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][835] ([Intel XE#2330]) -> ([SKIP][836], [SKIP][837]) ([Intel XE#2330] / [Intel XE#2423]) +1 other test ( 2 skip ) [835]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [836]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [837]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][838] ([Intel XE#1127]) -> [SKIP][839] ([Intel XE#2423] / [i915#2575]) [838]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [839]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][840] ([Intel XE#2413]) -> ([SKIP][841], [SKIP][842]) ([Intel XE#2413] / [Intel XE#2423]) +2 other tests ( 2 skip ) [840]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-center.html [841]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_scaling_modes@scaling-mode-center.html [842]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: [SKIP][843] ([Intel XE#2413]) -> [SKIP][844] ([Intel XE#2423]) [843]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_scaling_modes@scaling-mode-full-aspect.html [844]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: [SKIP][845] ([Intel XE#1435]) -> ([SKIP][846], [SKIP][847]) ([Intel XE#2423]) [845]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_setmode@basic-clone-single-crtc.html [846]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_setmode@basic-clone-single-crtc.html [847]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][848] ([Intel XE#2426]) -> ([SKIP][849], [SKIP][850]) ([Intel XE#2423] / [Intel XE#2426]) +1 other test ( 2 skip ) [848]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_tiled_display@basic-test-pattern.html [849]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_tiled_display@basic-test-pattern.html [850]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [SKIP][851] ([Intel XE#362]) -> ([FAIL][852], [SKIP][853]) ([Intel XE#1729] / [Intel XE#362]) [851]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html [852]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern.html [853]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: [SKIP][854] ([Intel XE#2450]) -> ([SKIP][855], [SKIP][856]) ([Intel XE#2423] / [Intel XE#2450]) [854]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_tv_load_detect@load-detect.html [855]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_tv_load_detect@load-detect.html [856]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flip-dpms: - shard-bmg: [SKIP][857] ([Intel XE#1499]) -> ([SKIP][858], [SKIP][859]) ([Intel XE#1499] / [Intel XE#2423]) +1 other test ( 2 skip ) [857]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_vrr@flip-dpms.html [858]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_vrr@flip-dpms.html [859]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@flip-suspend: - shard-bmg: [SKIP][860] ([Intel XE#1499]) -> [SKIP][861] ([Intel XE#2423]) +1 other test skip [860]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_vrr@flip-suspend.html [861]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@lobf: - shard-bmg: [SKIP][862] ([Intel XE#2168]) -> [SKIP][863] ([Intel XE#2423]) [862]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_vrr@lobf.html [863]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_vrr@lobf.html * igt at kms_vrr@max-min: - shard-bmg: [SKIP][864] ([Intel XE#1499]) -> ([SKIP][865], [SKIP][866]) ([Intel XE#2423]) [864]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_vrr@max-min.html [865]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_vrr@max-min.html [866]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_vrr@max-min.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][867] ([Intel XE#3007]) -> ([SKIP][868], [SKIP][869]) ([Intel XE#1499] / [Intel XE#2423]) [867]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-virtual.html [868]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-virtual.html [869]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: [SKIP][870] ([Intel XE#756]) -> ([SKIP][871], [SKIP][872]) ([Intel XE#2423] / [Intel XE#756]) [870]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_writeback@writeback-check-output-xrgb2101010.html [871]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_writeback@writeback-check-output-xrgb2101010.html [872]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-bmg: [SKIP][873] ([Intel XE#756]) -> ([SKIP][874], [SKIP][875]) ([Intel XE#2423]) [873]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_writeback@writeback-fb-id.html [874]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_writeback@writeback-fb-id.html [875]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: [SKIP][876] ([Intel XE#756]) -> [SKIP][877] ([Intel XE#2423]) [876]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_writeback@writeback-pixel-formats.html [877]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][878] ([Intel XE#1091] / [Intel XE#2849]) -> ([SKIP][879], [SKIP][880]) ([Intel XE#2423]) [878]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at sriov_basic@enable-vfs-autoprobe-off.html [879]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at sriov_basic@enable-vfs-autoprobe-off.html [880]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][881] ([Intel XE#3889]) -> [SKIP][882] ([Intel XE#1130]) [881]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [882]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][883] ([Intel XE#2905]) -> [SKIP][884] ([Intel XE#1130]) +15 other tests skip [883]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [884]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: [SKIP][885] ([Intel XE#3889]) -> ([SKIP][886], [SKIP][887]) ([Intel XE#1130] / [Intel XE#3889]) [885]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html [886]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html [887]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug_online@basic-breakpoint: - shard-dg2-set2: [SKIP][888] ([Intel XE#2905]) -> [SKIP][889] ([Intel XE#1130]) [888]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_eudebug_online@basic-breakpoint.html [889]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at xe_eudebug_online@basic-breakpoint.html * igt at xe_eudebug_online@set-breakpoint: - shard-bmg: [SKIP][890] ([Intel XE#2905]) -> ([SKIP][891], [SKIP][892]) ([Intel XE#1130]) +3 other tests ( 2 skip ) [890]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_eudebug_online@set-breakpoint.html [891]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_eudebug_online@set-breakpoint.html [892]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_eudebug_online@set-breakpoint.html * igt at xe_eudebug_online@stopped-thread: - shard-bmg: [SKIP][893] ([Intel XE#2905]) -> ([SKIP][894], [SKIP][895]) ([Intel XE#1130] / [Intel XE#2905]) +17 other tests ( 2 skip ) [893]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at xe_eudebug_online@stopped-thread.html [894]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_eudebug_online@stopped-thread.html [895]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at xe_eudebug_online@stopped-thread.html * igt at xe_exec_balancer@once-parallel-userptr-invalidate: - shard-bmg: [SKIP][896] ([Intel XE#1130]) -> ([SKIP][897], [PASS][898]) ([Intel XE#1130]) +4 other tests ( 1 pass, 1 skip ) [896]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_exec_balancer@once-parallel-userptr-invalidate.html [897]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_exec_balancer@once-parallel-userptr-invalidate.html [898]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at xe_exec_balancer@once-parallel-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][899] ([Intel XE#2322]) -> ([SKIP][900], [SKIP][901]) ([Intel XE#1130] / [Intel XE#2322]) +15 other tests ( 2 skip ) [899]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [900]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [901]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind: - shard-bmg: [SKIP][902] ([Intel XE#2322]) -> [SKIP][903] ([Intel XE#1130]) +8 other tests skip [902]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html [903]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][904] ([Intel XE#2322]) -> ([SKIP][905], [SKIP][906]) ([Intel XE#1130]) +3 other tests ( 2 skip ) [904]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at xe_exec_basic@multigpu-once-null-rebind.html [905]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_exec_basic@multigpu-once-null-rebind.html [906]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [SKIP][907] ([Intel XE#1192]) -> [SKIP][908] ([Intel XE#2229]) [907]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_live_ktest@xe_bo.html [908]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_live_ktest@xe_bo.html * igt at xe_mmap@pci-membarrier: - shard-bmg: [SKIP][909] ([Intel XE#4045]) -> ([SKIP][910], [SKIP][911]) ([Intel XE#1130] / [Intel XE#4045]) [909]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_mmap@pci-membarrier.html [910]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at xe_mmap@pci-membarrier.html [911]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_mmap@pci-membarrier.html * igt at xe_mmap@pci-membarrier-parallel: - shard-bmg: [SKIP][912] ([Intel XE#4045]) -> [SKIP][913] ([Intel XE#1130]) [912]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_mmap@pci-membarrier-parallel.html [913]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_mmap@pci-membarrier-parallel.html * igt at xe_mmap@small-bar: - shard-bmg: [SKIP][914] ([Intel XE#586]) -> ([SKIP][915], [SKIP][916]) ([Intel XE#1130] / [Intel XE#586]) [914]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at xe_mmap@small-bar.html [915]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at xe_mmap@small-bar.html [916]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_mmap@small-bar.html * igt at xe_oa@oa-tlb-invalidate: - shard-bmg: [SKIP][917] ([Intel XE#2248]) -> ([SKIP][918], [SKIP][919]) ([Intel XE#1130] / [Intel XE#2248]) [917]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_oa@oa-tlb-invalidate.html [918]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_oa@oa-tlb-invalidate.html [919]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_oa@syncs-syncobj-wait: - shard-dg2-set2: [SKIP][920] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][921] ([Intel XE#1130]) [920]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at xe_oa@syncs-syncobj-wait.html [921]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at xe_oa@syncs-syncobj-wait.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][922] ([Intel XE#2248]) -> [SKIP][923] ([Intel XE#1130]) [922]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_oa@unprivileged-single-ctx-counters.html [923]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][924] ([Intel XE#1420]) -> [SKIP][925] ([Intel XE#1130]) [924]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_pat@pat-index-xehpc.html [925]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][926] ([Intel XE#2245]) -> ([SKIP][927], [SKIP][928]) ([Intel XE#1130] / [Intel XE#2245]) [926]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_pat@pat-index-xelp.html [927]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at xe_pat@pat-index-xelp.html [928]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_pat@pat-index-xelp.html * igt at xe_pm@d3cold-mocs: - shard-bmg: [SKIP][929] ([Intel XE#2284]) -> ([SKIP][930], [SKIP][931]) ([Intel XE#1130]) [929]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_pm@d3cold-mocs.html [930]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_pm@d3cold-mocs.html [931]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-bmg: [SKIP][932] ([Intel XE#2284]) -> ([SKIP][933], [SKIP][934]) ([Intel XE#1130] / [Intel XE#2284]) +4 other tests ( 2 skip ) [932]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at xe_pm@s3-d3cold-basic-exec.html [933]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_pm@s3-d3cold-basic-exec.html [934]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_pm@vram-d3cold-threshold: - shard-bmg: [SKIP][935] ([Intel XE#579]) -> ([SKIP][936], [SKIP][937]) ([Intel XE#1130] / [Intel XE#579]) [935]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_pm@vram-d3cold-threshold.html [936]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_pm@vram-d3cold-threshold.html [937]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-cs-cycles: - shard-bmg: [SKIP][938] ([Intel XE#944]) -> ([SKIP][939], [SKIP][940]) ([Intel XE#1130]) +1 other test ( 2 skip ) [938]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at xe_query@multigpu-query-cs-cycles.html [939]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_query@multigpu-query-cs-cycles.html [940]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][941] ([Intel XE#944]) -> [SKIP][942] ([Intel XE#1130]) +3 other tests skip [941]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_query@multigpu-query-invalid-cs-cycles.html [942]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_query@multigpu-query-mem-usage: - shard-bmg: [SKIP][943] ([Intel XE#944]) -> ([SKIP][944], [SKIP][945]) ([Intel XE#1130] / [Intel XE#944]) +3 other tests ( 2 skip ) [943]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_query@multigpu-query-mem-usage.html [944]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at xe_query@multigpu-query-mem-usage.html [945]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_sriov_flr@flr-each-isolation: - shard-bmg: [SKIP][946] ([Intel XE#3342]) -> [SKIP][947] ([Intel XE#1130]) [946]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_sriov_flr@flr-each-isolation.html [947]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_sriov_flr@flr-each-isolation.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-bmg: [SKIP][948] ([Intel XE#3342]) -> ([SKIP][949], [SKIP][950]) ([Intel XE#1130] / [Intel XE#3342]) [948]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_sriov_flr@flr-vf1-clear.html [949]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at xe_sriov_flr@flr-vf1-clear.html [950]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_sriov_flr@flr-vf1-clear.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [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#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [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#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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [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#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#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [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#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#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#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#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4072]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4072 [Intel XE#4075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4075 [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#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [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#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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [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_8193 -> IGTPW_12447 * Linux: xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c -> xe-2496-4840e56bcc47f3af6bbc58bcc83b094540e5efa0 IGTPW_12447: 4593317dedb4854dc0f4d7beed6cf9c68f3adeb8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c xe-2496-4840e56bcc47f3af6bbc58bcc83b094540e5efa0: 4840e56bcc47f3af6bbc58bcc83b094540e5efa0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 16 15:18:38 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 15:18:38 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/xe=3A_Add_xe=5Fcg=5F?= =?utf-8?q?dmem_test?= In-Reply-To: <20250115115512.84520-1-dev@lankhorst.se> References: <20250115115512.84520-1-dev@lankhorst.se> Message-ID: <173704071871.304946.8483521205721552703@b555e5b46a47> == Series Details == Series: tests/xe: Add xe_cg_dmem test URL : https://patchwork.freedesktop.org/series/143593/ State : failure == Summary == CI Bug Log - changes from XEIGT_8193_full -> XEIGTPW_12447_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12447_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12447_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_12447_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3: - shard-bmg: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp4: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html * igt at kms_flip@flip-vs-suspend at d-dp4: - shard-dg2-set2: NOTRUN -> ([INCOMPLETE][5], [PASS][6]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_flip@flip-vs-suspend at d-dp4.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_flip@flip-vs-suspend at d-dp4.html * igt at kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset at b-edp1: - shard-lnl: [PASS][7] -> ([INCOMPLETE][8], [PASS][9]) +3 other tests ( 1 incomplete, 1 pass ) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset at b-edp1.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset at b-edp1.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset at b-edp1.html * igt at kms_flip_tiling@flip-change-tiling: - shard-bmg: [PASS][10] -> ([SKIP][11], [INCOMPLETE][12]) ([Intel XE#2136]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip_tiling@flip-change-tiling.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_flip_tiling@flip-change-tiling.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_flip_tiling@flip-change-tiling.html * {igt at xe_cg_dmem@functional} (NEW): - shard-bmg: NOTRUN -> ([SKIP][13], [SKIP][14]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at xe_cg_dmem@functional.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at xe_cg_dmem@functional.html - shard-lnl: NOTRUN -> ([SKIP][15], [SKIP][16]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at xe_cg_dmem@functional.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt at xe_cg_dmem@functional.html * {igt at xe_cg_dmem@test-simple-min} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][17] +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at xe_cg_dmem@test-simple-min.html - shard-lnl: NOTRUN -> [SKIP][18] +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at xe_cg_dmem@test-simple-min.html * igt at xe_exec_threads@threads-cm-shared-vm-rebind: - shard-bmg: NOTRUN -> ([FAIL][19], [SKIP][20]) ([Intel XE#1130]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at xe_exec_threads@threads-cm-shared-vm-rebind.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_exec_threads@threads-cm-shared-vm-rebind.html - shard-dg2-set2: NOTRUN -> [FAIL][21] [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_exec_threads@threads-cm-shared-vm-rebind.html #### Warnings #### * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][22] ([Intel XE#2882]) -> ([FAIL][23], [SKIP][24]) ([Intel XE#2423]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][25] ([Intel XE#2882]) -> [FAIL][26] [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html New tests --------- New tests have been introduced between XEIGT_8193_full and XEIGTPW_12447_full: ### New IGT tests (3) ### * igt at xe_cg_dmem@functional: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt at xe_cg_dmem@test-simple-max: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_cg_dmem@test-simple-min: - Statuses : 3 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12447_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotrebind: - shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#1885]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at core_hotunplug@hotrebind.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at core_hotunplug@hotrebind.html * igt at core_hotunplug@hotrebind-lateclose: - shard-bmg: [PASS][29] -> ([SKIP][30], [SKIP][31]) ([Intel XE#1885]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at core_hotunplug@hotrebind-lateclose.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at core_hotunplug@hotrebind-lateclose.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at core_hotunplug@hotrebind-lateclose.html * igt at core_hotunplug@hotreplug: - shard-bmg: [PASS][32] -> ([PASS][33], [SKIP][34]) ([Intel XE#1885]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at core_hotunplug@hotreplug.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at core_hotunplug@hotreplug.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at core_hotunplug@hotreplug.html * igt at core_setmaster@master-drop-set-user: - shard-bmg: [PASS][35] -> ([FAIL][36], [PASS][37]) ([Intel XE#3249]) +2 other tests ( 1 fail, 1 pass ) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at core_setmaster@master-drop-set-user.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at core_setmaster@master-drop-set-user.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at core_setmaster@master-drop-set-user.html * igt at fbdev@eof: - shard-bmg: [PASS][38] -> ([SKIP][39], [PASS][40]) ([Intel XE#2134]) +2 other tests ( 1 pass, 1 skip ) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at fbdev@eof.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at fbdev@eof.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at fbdev@eof.html * igt at kms_addfb_basic@bad-pitch-63: - shard-bmg: NOTRUN -> ([PASS][41], [SKIP][42]) ([Intel XE#2423]) +1 other test ( 1 pass, 1 skip ) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_addfb_basic@bad-pitch-63.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_addfb_basic@bad-pitch-63.html * igt at kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#873]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt at kms_async_flips@invalid-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> ([SKIP][44], [SKIP][45]) ([Intel XE#1407]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [PASS][46] -> ([PASS][47], [SKIP][48]) ([Intel XE#2136]) +28 other tests ( 1 pass, 1 skip ) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/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-bmg: [PASS][49] -> ([SKIP][50], [SKIP][51]) ([Intel XE#2136]) +8 other tests ( 2 skip ) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#2136]) +24 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_big_fb@linear-16bpp-rotate-180.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_big_fb@x-tiled-64bpp-rotate-180: - shard-dg2-set2: [PASS][54] -> [SKIP][55] ([Intel XE#2136]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_big_fb@x-tiled-64bpp-rotate-180.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_big_fb@x-tiled-64bpp-rotate-180.html * igt at kms_big_fb@x-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> ([SKIP][56], [SKIP][57]) ([Intel XE#2136] / [Intel XE#2327]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html * igt at kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#316]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_big_fb@x-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-16bpp-rotate-0: - shard-lnl: NOTRUN -> ([SKIP][59], [SKIP][60]) ([Intel XE#1124]) +1 other test ( 2 skip ) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> ([SKIP][61], [SKIP][62]) ([Intel XE#1467]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt at kms_big_fb@y-tiled-addfb.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#610]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/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: NOTRUN -> [SKIP][64] ([Intel XE#1124]) +7 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1124]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#619]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: NOTRUN -> ([SKIP][67], [SKIP][68]) ([Intel XE#1124]) +1 other test ( 2 skip ) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_bw@connected-linear-tiling-1-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#367]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_bw@connected-linear-tiling-1-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> ([SKIP][70], [SKIP][71]) ([Intel XE#367]) +1 other test ( 2 skip ) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#2191]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: NOTRUN -> ([SKIP][73], [SKIP][74]) ([Intel XE#2423] / [Intel XE#367]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#455] / [Intel XE#787]) +44 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/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: NOTRUN -> [SKIP][76] ([Intel XE#2907]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> ([SKIP][77], [SKIP][78]) ([Intel XE#2136] / [Intel XE#2887]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#2136]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-bmg: NOTRUN -> ([SKIP][80], [PASS][81]) ([Intel XE#2136]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#2887]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: NOTRUN -> ([SKIP][83], [SKIP][84]) ([Intel XE#2136]) +1 other test ( 2 skip ) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-a-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#787]) +195 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-a-hdmi-a-2.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> ([SKIP][86], [SKIP][87]) ([Intel XE#787]) +27 other tests ( 2 skip ) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs at pipe-b-dp-4.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs at pipe-b-dp-4.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-4/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-b-dp-2.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> ([SKIP][89], [SKIP][90]) ([Intel XE#455] / [Intel XE#787]) +7 other tests ( 2 skip ) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2887]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][92] -> ([PASS][93], [INCOMPLETE][94]) ([Intel XE#1727] / [Intel XE#3124]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/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-dp-4: - shard-dg2-set2: [PASS][95] -> ([PASS][96], [INCOMPLETE][97]) ([Intel XE#3124]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-dp-4.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-dp-4.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][98] -> ([PASS][99], [DMESG-WARN][100]) ([Intel XE#1727] / [Intel XE#3113]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg2-set2: NOTRUN -> ([SKIP][101], [SKIP][102]) ([Intel XE#306]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_chamelium_color@ctm-0-50.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#306]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#373]) +10 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#373]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-dg2-set2: NOTRUN -> ([SKIP][106], [SKIP][107]) ([Intel XE#373]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt at kms_content_protection@atomic at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][108] ([Intel XE#1178]) +1 other test fail [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at kms_content_protection@atomic at pipe-a-dp-2.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2390]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@lic-type-0: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#3278]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][111] ([Intel XE#1188]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-dg2-set2: NOTRUN -> ([SKIP][112], [SKIP][113]) ([Intel XE#455]) +3 other tests ( 2 skip ) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_cursor_crc@cursor-random-32x10.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> ([SKIP][114], [SKIP][115]) ([Intel XE#2321]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt at kms_cursor_crc@cursor-random-512x170.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-sliding-max-size: - shard-bmg: NOTRUN -> ([SKIP][116], [SKIP][117]) ([Intel XE#2320] / [Intel XE#2423]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_cursor_crc@cursor-sliding-max-size.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cursor_crc@cursor-sliding-max-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-lnl: NOTRUN -> ([SKIP][118], [SKIP][119]) ([Intel XE#309]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [PASS][120] -> ([SKIP][121], [PASS][122]) ([Intel XE#2291]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][123] -> [SKIP][124] ([Intel XE#2291]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#309]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: [PASS][126] -> ([SKIP][127], [SKIP][128]) ([Intel XE#2291] / [Intel XE#2423]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1508]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [PASS][130] -> ([SKIP][131], [SKIP][132]) ([Intel XE#1340] / [Intel XE#2423]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> ([SKIP][133], [SKIP][134]) ([Intel XE#2372]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_feature_discovery@chamelium.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_feature_discovery@chamelium.html - shard-dg2-set2: NOTRUN -> ([SKIP][135], [SKIP][136]) ([Intel XE#701]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_feature_discovery@chamelium.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1138]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> ([SKIP][138], [SKIP][139]) ([Intel XE#1135]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_feature_discovery@psr2.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-absolute-wf_vblank: - shard-bmg: [PASS][140] -> ([SKIP][141], [SKIP][142]) ([Intel XE#2316] / [Intel XE#2423]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@2x-absolute-wf_vblank.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_flip@2x-absolute-wf_vblank.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_flip@2x-absolute-wf_vblank.html * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1421]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-bmg: [PASS][144] -> ([SKIP][145], [PASS][146]) ([Intel XE#2316]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_flip@2x-dpms-vs-vblank-race-interruptible.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_flip@2x-dpms-vs-vblank-race-interruptible.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][147] -> ([PASS][148], [FAIL][149]) ([Intel XE#301]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [PASS][150] -> [FAIL][151] ([Intel XE#3321]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-suspend: - shard-dg2-set2: NOTRUN -> ([ABORT][152], [PASS][153]) ([Intel XE#2625]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at kms_flip@2x-flip-vs-suspend.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_flip@2x-flip-vs-suspend.html * igt at kms_flip@2x-flip-vs-suspend at cd-hdmi-a2-dp2: - shard-dg2-set2: NOTRUN -> [ABORT][154] ([Intel XE#2625]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at kms_flip@2x-flip-vs-suspend at cd-hdmi-a2-dp2.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][155] -> [SKIP][156] ([Intel XE#2423]) +107 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-nonexisting-fb.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@2x-plain-flip: - shard-bmg: [PASS][157] -> [SKIP][158] ([Intel XE#2316]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@2x-plain-flip.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-lnl: NOTRUN -> ([SKIP][159], [SKIP][160]) ([Intel XE#1421]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-bmg: [PASS][161] -> ([SKIP][162], [FAIL][163]) ([Intel XE#2423] / [Intel XE#2882]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@flip-vs-blocking-wf-vblank.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_flip@flip-vs-blocking-wf-vblank.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at c-dp2: - shard-bmg: NOTRUN -> [FAIL][164] ([Intel XE#2882]) +1 other test fail [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_flip@flip-vs-blocking-wf-vblank at c-dp2.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4: - shard-dg2-set2: [PASS][165] -> [FAIL][166] ([Intel XE#301]) +8 other tests fail [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][167] ([Intel XE#301]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank at c-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][168] ([Intel XE#301] / [Intel XE#3321]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: NOTRUN -> ([PASS][169], [INCOMPLETE][170]) ([Intel XE#2597]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_flip@flip-vs-suspend.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [PASS][171] -> [INCOMPLETE][172] ([Intel XE#2597]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@nonexisting-fb: - shard-dg2-set2: [PASS][173] -> [SKIP][174] ([Intel XE#2423] / [i915#2575]) +9 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_flip@nonexisting-fb.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_flip@nonexisting-fb.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-lnl: NOTRUN -> ([SKIP][175], [SKIP][176]) ([Intel XE#1401] / [Intel XE#1745]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> ([SKIP][177], [SKIP][178]) ([Intel XE#1401]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][179] ([Intel XE#455]) +12 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/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-downscaling: - shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#1401] / [Intel XE#1745]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#1401]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-lnl: NOTRUN -> ([SKIP][182], [SKIP][183]) ([Intel XE#1397] / [Intel XE#1745]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> ([SKIP][184], [SKIP][185]) ([Intel XE#1397]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][186] ([i915#5274]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][187] ([Intel XE#651]) +30 other tests skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> ([SKIP][188], [SKIP][189]) ([Intel XE#651]) +8 other tests ( 2 skip ) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> ([FAIL][190], [FAIL][191]) ([Intel XE#2333]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#656]) +6 other tests skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> ([SKIP][193], [SKIP][194]) ([Intel XE#651]) +2 other tests ( 2 skip ) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> ([SKIP][195], [SKIP][196]) ([Intel XE#2136] / [Intel XE#2313]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-lnl: NOTRUN -> ([SKIP][197], [SKIP][198]) ([Intel XE#656]) +5 other tests ( 2 skip ) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][199] ([Intel XE#2312]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#653]) +31 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][201] ([Intel XE#2313]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: NOTRUN -> ([SKIP][202], [SKIP][203]) ([Intel XE#653]) +4 other tests ( 2 skip ) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-slowdraw.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_frontbuffer_tracking@psr-suspend: - shard-lnl: NOTRUN -> [INCOMPLETE][204] ([Intel XE#2050]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at kms_frontbuffer_tracking@psr-suspend.html * igt at kms_hdr@bpc-switch: - shard-bmg: NOTRUN -> [SKIP][205] ([Intel XE#2423]) +4 other tests skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@static-toggle-suspend: - shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#1503]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#346]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_joiner@basic-big-joiner.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][208] ([Intel XE#616]) +3 other tests fail [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-bmg: [PASS][209] -> ([SKIP][210], [PASS][211]) ([Intel XE#2423]) +141 other tests ( 1 pass, 1 skip ) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format at pipe-a: - shard-bmg: NOTRUN -> [DMESG-WARN][212] ([Intel XE#877]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format at pipe-a.html * igt at kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][213] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][214] ([Intel XE#2763]) +5 other tests skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-bmg: [PASS][215] -> ([SKIP][216], [SKIP][217]) ([Intel XE#2423]) +33 other tests ( 2 skip ) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][218] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d.html * igt at kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#870]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade: - shard-bmg: NOTRUN -> ([SKIP][220], [SKIP][221]) ([Intel XE#870]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_pm_backlight@fade.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][222] -> ([FAIL][223], [FAIL][224]) ([Intel XE#718]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: NOTRUN -> ([SKIP][225], [SKIP][226]) ([Intel XE#1129]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at kms_pm_dc@dc6-psr.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@basic-rte: - shard-bmg: [PASS][227] -> [SKIP][228] ([Intel XE#2446]) +4 other tests skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_pm_rpm@basic-rte.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_pm_rpm@basic-rte.html * igt at kms_pm_rpm@i2c: - shard-bmg: [PASS][229] -> ([PASS][230], [SKIP][231]) ([Intel XE#2446]) +2 other tests ( 1 pass, 1 skip ) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_pm_rpm@i2c.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_pm_rpm@i2c.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_pm_rpm@i2c.html * igt at kms_pm_rpm@legacy-planes-dpms: - shard-bmg: [PASS][232] -> ([SKIP][233], [SKIP][234]) ([Intel XE#2446]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_pm_rpm@legacy-planes-dpms.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_pm_rpm@legacy-planes-dpms.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_pm_rpm@legacy-planes-dpms.html * igt at kms_pm_rpm@universal-planes-dpms: - shard-dg2-set2: [PASS][235] -> [SKIP][236] ([Intel XE#2446]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at kms_pm_rpm@universal-planes-dpms.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_pm_rpm@universal-planes-dpms.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][237] ([Intel XE#2893]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/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-bmg: NOTRUN -> [SKIP][238] ([Intel XE#1489]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][239] ([Intel XE#1489]) +9 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> ([SKIP][240], [SKIP][241]) ([Intel XE#1489] / [Intel XE#2136]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> ([SKIP][242], [SKIP][243]) ([Intel XE#1489]) +2 other tests ( 2 skip ) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-lnl: NOTRUN -> ([SKIP][244], [SKIP][245]) ([Intel XE#2893]) +1 other test ( 2 skip ) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2-set2: NOTRUN -> [SKIP][246] ([Intel XE#1122]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-sprite-plane-move: - shard-bmg: NOTRUN -> [SKIP][247] ([Intel XE#2234] / [Intel XE#2850]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_psr@fbc-pr-sprite-plane-move.html * igt at kms_psr@pr-dpms: - shard-dg2-set2: NOTRUN -> ([SKIP][248], [SKIP][249]) ([Intel XE#2850] / [Intel XE#929]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_psr@pr-dpms.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_psr@pr-dpms.html * igt at kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][250] ([Intel XE#2136]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr@psr-basic.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][251] ([Intel XE#2850] / [Intel XE#929]) +17 other tests skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_psr@psr-dpms.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][252] ([Intel XE#3414]) +2 other tests skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][253] ([Intel XE#1127]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> ([SKIP][254], [SKIP][255]) ([Intel XE#1500] / [Intel XE#362]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [PASS][256] -> [FAIL][257] ([Intel XE#899]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][258] -> [FAIL][259] ([Intel XE#2159]) +1 other test fail [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-3/igt at kms_vrr@cmrr at pipe-a-edp-1.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][260] ([Intel XE#2168]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_vrr@lobf.html * {igt at xe_cg_dmem@test-simple-max} (NEW): - shard-bmg: NOTRUN -> ([SKIP][261], [SKIP][262]) ([Intel XE#1130]) +1 other test ( 2 skip ) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_cg_dmem@test-simple-max.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_cg_dmem@test-simple-max.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][263] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][264] ([Intel XE#1126]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][265] ([Intel XE#1130]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-lnl: NOTRUN -> ([SKIP][266], [SKIP][267]) ([Intel XE#3889]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@discovery-race-vmbind: - shard-bmg: NOTRUN -> [SKIP][268] ([Intel XE#2905]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at xe_eudebug@discovery-race-vmbind.html * igt at xe_eudebug_online@breakpoint-many-sessions-tiles: - shard-dg2-set2: NOTRUN -> ([SKIP][269], [SKIP][270]) ([Intel XE#2905]) +1 other test ( 2 skip ) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at xe_eudebug_online@breakpoint-many-sessions-tiles.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at xe_eudebug_online@breakpoint-many-sessions-tiles.html * igt at xe_eudebug_online@interrupt-other-debuggable: - shard-dg2-set2: NOTRUN -> [SKIP][271] ([Intel XE#2905]) +10 other tests skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_eudebug_online@interrupt-other-debuggable.html * igt at xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> ([SKIP][272], [SKIP][273]) ([Intel XE#1130] / [Intel XE#2905]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_eudebug_online@single-step.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at xe_eudebug_online@single-step.html * igt at xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> ([SKIP][274], [SKIP][275]) ([Intel XE#688]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at xe_evict@evict-large-multi-vm.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at xe_evict@evict-large-multi-vm.html * igt at xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][276] ([Intel XE#1130]) +3 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> ([SKIP][277], [SKIP][278]) ([Intel XE#1392]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][279] ([Intel XE#2322]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-dg2-set2: [PASS][280] -> ([SKIP][281], [PASS][282]) ([Intel XE#1392]) +3 other tests ( 1 pass, 1 skip ) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt at xe_exec_basic@multigpu-once-null: - shard-dg2-set2: [PASS][283] -> [SKIP][284] ([Intel XE#1392]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at xe_exec_basic@multigpu-once-null.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at xe_exec_basic@multigpu-once-null.html - shard-lnl: NOTRUN -> [SKIP][285] ([Intel XE#1392]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at xe_exec_basic@multigpu-once-null.html * igt at xe_exec_compute_mode@twice-bindexecqueue-rebind: - shard-bmg: [PASS][286] -> ([SKIP][287], [SKIP][288]) ([Intel XE#1130]) +85 other tests ( 2 skip ) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at xe_exec_compute_mode@twice-bindexecqueue-rebind.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_exec_compute_mode@twice-bindexecqueue-rebind.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_exec_compute_mode@twice-bindexecqueue-rebind.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> ([SKIP][289], [SKIP][290]) ([Intel XE#288]) +4 other tests ( 2 skip ) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][291] ([Intel XE#288]) +27 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_exec_reset@parallel-cat-error: - shard-dg2-set2: [PASS][292] -> [SKIP][293] ([Intel XE#1130]) +7 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at xe_exec_reset@parallel-cat-error.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at xe_exec_reset@parallel-cat-error.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-lnl: NOTRUN -> [SKIP][294] ([Intel XE#2905]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_exec_sip_eudebug@breakpoint-writesip-twice: - shard-lnl: NOTRUN -> ([SKIP][295], [SKIP][296]) ([Intel XE#2905]) +2 other tests ( 2 skip ) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at xe_exec_sip_eudebug@breakpoint-writesip-twice.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at xe_exec_sip_eudebug@breakpoint-writesip-twice.html * igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [PASS][297] -> ([PASS][298], [SKIP][299]) ([Intel XE#1130]) +323 other tests ( 1 pass, 1 skip ) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt at xe_gt_freq@freq_suspend: - shard-dg2-set2: [PASS][300] -> ([PASS][301], [ABORT][302]) ([Intel XE#2625]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt at xe_gt_freq@freq_suspend.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_gt_freq@freq_suspend.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at xe_gt_freq@freq_suspend.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][303] ([Intel XE#2229]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][304] -> ([SKIP][305], [PASS][306]) ([Intel XE#1192]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at xe_live_ktest@xe_dma_buf.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at xe_live_ktest@xe_dma_buf.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-bmg: [PASS][307] -> ([PASS][308], [SKIP][309]) ([Intel XE#2229]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [PASS][310] -> ([FAIL][311], [SKIP][312]) ([Intel XE#1192] / [Intel XE#1999]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_live_ktest@xe_mocs.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_live_ktest@xe_mocs.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at xe_live_ktest@xe_mocs.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-bmg: [PASS][313] -> [FAIL][314] ([Intel XE#1999]) +1 other test fail [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][315] ([Intel XE#560]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at xe_media_fill@media-fill.html * igt at xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][316] ([Intel XE#4045]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at xe_mmap@pci-membarrier-parallel.html * igt at xe_module_load@many-reload: - shard-bmg: [PASS][317] -> ([FAIL][318], [PASS][319]) ([Intel XE#3546]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_module_load@many-reload.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_module_load@many-reload.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at xe_module_load@many-reload.html * igt at xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][320] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> ([FAIL][321], [FAIL][322]) ([Intel XE#1173]) +1 other test ( 2 fail ) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][323] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@s2idle-basic: - shard-dg2-set2: [PASS][324] -> [ABORT][325] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_pm@s2idle-basic.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at xe_pm@s2idle-basic.html * igt at xe_pm@s3-exec-after: - shard-dg2-set2: [PASS][326] -> ([PASS][327], [ABORT][328]) ([Intel XE#1358]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at xe_pm@s3-exec-after.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-435/igt at xe_pm@s3-exec-after.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-432/igt at xe_pm@s3-exec-after.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> ([SKIP][329], [SKIP][330]) ([Intel XE#2284] / [Intel XE#366]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at xe_pm@s4-d3cold-basic-exec.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-4/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-vm-bind-userptr: - shard-lnl: [PASS][331] -> [ABORT][332] ([Intel XE#1358] / [Intel XE#1794]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at xe_pm@s4-vm-bind-userptr.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-2/igt at xe_pm@s4-vm-bind-userptr.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][333] -> ([PASS][334], [FAIL][335]) ([Intel XE#958]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at xe_pm_residency@toggle-gt-c6.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt at xe_pm_residency@toggle-gt-c6.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-invalid-size: - shard-lnl: NOTRUN -> [SKIP][336] ([Intel XE#944]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at xe_query@multigpu-query-invalid-size.html * igt at xe_query@multigpu-query-mem-usage: - shard-dg2-set2: NOTRUN -> [SKIP][337] ([Intel XE#944]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: NOTRUN -> ([SKIP][338], [SKIP][339]) ([Intel XE#1130] / [Intel XE#944]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at xe_query@multigpu-query-uc-fw-version-huc.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_query@query-gt-list: - shard-bmg: [PASS][340] -> [SKIP][341] ([Intel XE#1130]) +222 other tests skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_query@query-gt-list.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_query@query-gt-list.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][342] ([Intel XE#3342]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-464/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@munmap-style-unbind-end: - shard-bmg: NOTRUN -> ([SKIP][343], [PASS][344]) ([Intel XE#1130]) +4 other tests ( 1 pass, 1 skip ) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_vm@munmap-style-unbind-end.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at xe_vm@munmap-style-unbind-end.html #### Possible fixes #### * igt at core_getversion@basic: - shard-bmg: [FAIL][345] -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at core_getversion@basic.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-4/igt at core_getversion@basic.html * igt at fbdev@pan: - shard-bmg: [SKIP][347] ([Intel XE#2134]) -> ([PASS][348], [PASS][349]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at fbdev@pan.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at fbdev@pan.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at fbdev@pan.html * igt at kms_async_flips@alternate-sync-async-flip at pipe-a-dp-2: - shard-bmg: [FAIL][350] ([Intel XE#827]) -> [PASS][351] [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-dp-2.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-dp-2.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][352] ([Intel XE#3719]) -> [PASS][353] +3 other tests pass [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][354] ([Intel XE#3862]) -> ([PASS][355], [PASS][356]) +1 other test ( 2 pass ) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1: - shard-lnl: [FAIL][357] ([Intel XE#4075]) -> [PASS][358] +1 other test pass [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-8/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [SKIP][359] ([Intel XE#2291]) -> [PASS][360] +1 other test pass [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][361] ([Intel XE#2291]) -> ([PASS][362], [PASS][363]) +2 other tests ( 2 pass ) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [FAIL][364] ([Intel XE#1475]) -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-4/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-3/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_flip@2x-flip-vs-expired-vblank at ac-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][366] ([Intel XE#301]) -> ([PASS][367], [PASS][368]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank at ac-hdmi-a6-dp4.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank at ac-hdmi-a6-dp4.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank at ac-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-bmg: [SKIP][369] ([Intel XE#2316]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][371] ([Intel XE#2316]) -> ([PASS][372], [PASS][373]) +1 other test ( 2 pass ) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_flip@2x-plain-flip-fb-recreate.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@dpms-vs-vblank-race: - shard-dg2-set2: [INCOMPLETE][374] ([Intel XE#2049]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_flip@dpms-vs-vblank-race.html * igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6: - shard-dg2-set2: [INCOMPLETE][376] -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_flip@dpms-vs-vblank-race at a-hdmi-a6.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][378] ([Intel XE#886]) -> ([PASS][379], [PASS][380]) +1 other test ( 2 pass ) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_flip@flip-vs-absolute-wf_vblank.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt at kms_flip@flip-vs-absolute-wf_vblank.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-7/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a6: - shard-dg2-set2: [FAIL][381] ([Intel XE#4072]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a6.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a6.html * igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a6: - shard-dg2-set2: [FAIL][383] ([Intel XE#886]) -> [PASS][384] +1 other test pass [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a6.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][385] ([Intel XE#2882] / [Intel XE#3820]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3: - shard-bmg: [FAIL][387] ([Intel XE#3820]) -> [PASS][388] +1 other test pass [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][389] ([Intel XE#2571]) -> ([PASS][390], [PASS][391]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][392] ([Intel XE#899]) -> [PASS][393] +1 other test pass [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at xe_exec_basic@multigpu-once-bindexecqueue: - shard-dg2-set2: [SKIP][394] ([Intel XE#1392]) -> [PASS][395] +2 other tests pass [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_exec_basic@multigpu-once-bindexecqueue.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-433/igt at xe_exec_basic@multigpu-once-bindexecqueue.html * igt at xe_pm@s2idle-basic-exec: - shard-dg2-set2: [ABORT][396] ([Intel XE#1358]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at xe_pm@s2idle-basic-exec.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at xe_pm@s2idle-basic-exec.html * igt at xe_pm@s4-basic-exec: - shard-lnl: [ABORT][398] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> ([PASS][399], [PASS][400]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt at xe_pm@s4-basic-exec.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-5/igt at xe_pm@s4-basic-exec.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-6/igt at xe_pm@s4-basic-exec.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][401] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-lnl-1/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_vm@bind-once: - shard-bmg: [SKIP][403] ([Intel XE#1130]) -> [PASS][404] +1 other test pass [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_vm@bind-once.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at xe_vm@bind-once.html * igt at xe_vm@mixed-userptr-misaligned-binds-1611661312: - shard-bmg: [SKIP][405] ([Intel XE#1130]) -> ([PASS][406], [PASS][407]) +1 other test ( 2 pass ) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_vm@mixed-userptr-misaligned-binds-1611661312.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at xe_vm@mixed-userptr-misaligned-binds-1611661312.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at xe_vm@mixed-userptr-misaligned-binds-1611661312.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][408] ([Intel XE#2233]) -> ([SKIP][409], [SKIP][410]) ([Intel XE#2233] / [Intel XE#2423]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][411] ([Intel XE#3007]) -> ([SKIP][412], [SKIP][413]) ([Intel XE#2423]) [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_addfb_basic@bad-pitch-999.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_addfb_basic@bad-pitch-999.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_addfb_basic@bad-pitch-999.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][414] ([Intel XE#827]) -> ([SKIP][415], [PASS][416]) ([Intel XE#2423]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_async_flips@alternate-sync-async-flip.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: [SKIP][417] ([Intel XE#2550]) -> ([SKIP][418], [SKIP][419]) ([Intel XE#2550] / [Intel XE#3767]) +23 other tests ( 2 skip ) [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-bmg: [SKIP][420] ([Intel XE#3768]) -> ([SKIP][421], [SKIP][422]) ([Intel XE#2423] / [Intel XE#3768]) [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_async_flips@invalid-async-flip-atomic.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_async_flips@invalid-async-flip-atomic.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: [SKIP][423] ([Intel XE#2370]) -> ([SKIP][424], [SKIP][425]) ([Intel XE#2423]) [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][426] ([Intel XE#2327]) -> ([SKIP][427], [SKIP][428]) ([Intel XE#2136] / [Intel XE#2327]) +4 other tests ( 2 skip ) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-bmg: [SKIP][429] ([Intel XE#2327]) -> ([SKIP][430], [SKIP][431]) ([Intel XE#2136]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][432] ([Intel XE#2327]) -> [SKIP][433] ([Intel XE#2136]) +2 other tests skip [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][434] ([Intel XE#2136] / [Intel XE#2231]) -> ([SKIP][435], [SKIP][436]) ([Intel XE#1124]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][437] ([Intel XE#607]) -> ([SKIP][438], [SKIP][439]) ([Intel XE#2136] / [Intel XE#607]) [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][440] ([Intel XE#610]) -> [SKIP][441] ([Intel XE#2136]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-bmg: [SKIP][442] ([Intel XE#1124]) -> [SKIP][443] ([Intel XE#2136]) +13 other tests skip [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][444] ([Intel XE#1124]) -> ([SKIP][445], [SKIP][446]) ([Intel XE#2136]) +3 other tests ( 2 skip ) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][447] ([Intel XE#1124]) -> ([SKIP][448], [SKIP][449]) ([Intel XE#1124] / [Intel XE#2136]) +19 other tests ( 2 skip ) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-bmg: [SKIP][450] ([Intel XE#2328]) -> ([SKIP][451], [SKIP][452]) ([Intel XE#2136]) +1 other test ( 2 skip ) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: [SKIP][453] ([Intel XE#610]) -> ([SKIP][454], [SKIP][455]) ([Intel XE#2136] / [Intel XE#610]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: [SKIP][456] ([Intel XE#2314] / [Intel XE#2894]) -> ([SKIP][457], [SKIP][458]) ([Intel XE#2314] / [Intel XE#2423] / [Intel XE#2894]) [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: [SKIP][459] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][460] ([Intel XE#2423]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][461] ([Intel XE#367]) -> [SKIP][462] ([Intel XE#2423]) +3 other tests skip [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: [SKIP][463] ([Intel XE#367]) -> ([SKIP][464], [SKIP][465]) ([Intel XE#2423] / [Intel XE#367]) +5 other tests ( 2 skip ) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-bmg: [SKIP][466] ([Intel XE#2887]) -> ([SKIP][467], [SKIP][468]) ([Intel XE#2136]) +7 other tests ( 2 skip ) [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][469] ([Intel XE#2136] / [Intel XE#2231]) -> ([SKIP][470], [SKIP][471]) ([Intel XE#2887]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][472] ([Intel XE#2887]) -> [SKIP][473] ([Intel XE#2136]) +18 other tests skip [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-bmg: [SKIP][474] ([Intel XE#2652] / [Intel XE#787]) -> ([SKIP][475], [SKIP][476]) ([Intel XE#2136]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][477] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][478] ([Intel XE#2136]) [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][479] ([Intel XE#3432]) -> [SKIP][480] ([Intel XE#2136]) +2 other tests skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-bmg: [SKIP][481] ([Intel XE#3432]) -> ([SKIP][482], [SKIP][483]) ([Intel XE#2136]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: [SKIP][484] ([Intel XE#3432]) -> ([SKIP][485], [SKIP][486]) ([Intel XE#2136] / [Intel XE#3432]) +2 other tests ( 2 skip ) [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][487] ([Intel XE#2887]) -> ([SKIP][488], [SKIP][489]) ([Intel XE#2136] / [Intel XE#2887]) +23 other tests ( 2 skip ) [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-bmg: [SKIP][490] ([Intel XE#2652] / [Intel XE#787]) -> ([SKIP][491], [SKIP][492]) ([Intel XE#2136] / [Intel XE#2652] / [Intel XE#787]) +1 other test ( 2 skip ) [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][493] ([Intel XE#2724]) -> ([SKIP][494], [SKIP][495]) ([Intel XE#2136]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_cdclk@mode-transition.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cdclk@mode-transition.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][496] ([Intel XE#2724]) -> ([SKIP][497], [SKIP][498]) ([Intel XE#2136] / [Intel XE#2724]) +1 other test ( 2 skip ) [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cdclk@mode-transition-all-outputs.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_cdclk@mode-transition-all-outputs.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][499] ([Intel XE#2325]) -> ([SKIP][500], [SKIP][501]) ([Intel XE#2325] / [Intel XE#2423]) +2 other tests ( 2 skip ) [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_chamelium_color@ctm-0-50.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_chamelium_color@ctm-0-50.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-bmg: [SKIP][502] ([Intel XE#2325]) -> [SKIP][503] ([Intel XE#2423]) +4 other tests skip [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_chamelium_color@ctm-blue-to-red.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][504] ([Intel XE#3007]) -> ([SKIP][505], [SKIP][506]) ([Intel XE#2325] / [Intel XE#2423]) [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_color@ctm-green-to-red.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_chamelium_color@ctm-green-to-red.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-max: - shard-dg2-set2: [SKIP][507] ([Intel XE#306]) -> [SKIP][508] ([Intel XE#2423] / [i915#2575]) [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_chamelium_color@ctm-max.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_chamelium_color@ctm-max.html * igt at kms_chamelium_edid@dp-edid-resolution-list: - shard-bmg: [SKIP][509] ([Intel XE#2252]) -> ([SKIP][510], [SKIP][511]) ([Intel XE#2252] / [Intel XE#2423]) +16 other tests ( 2 skip ) [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_edid@dp-edid-resolution-list.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_chamelium_edid@dp-edid-resolution-list.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_chamelium_edid@dp-edid-resolution-list.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2-set2: [SKIP][512] ([Intel XE#373]) -> [SKIP][513] ([Intel XE#2423] / [i915#2575]) [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_frames@hdmi-aspect-ratio: - shard-bmg: [SKIP][514] ([Intel XE#2252]) -> [SKIP][515] ([Intel XE#2423]) +10 other tests skip [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_chamelium_frames@hdmi-aspect-ratio.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_chamelium_frames@hdmi-aspect-ratio.html * igt at kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-bmg: [SKIP][516] ([Intel XE#3007]) -> ([SKIP][517], [SKIP][518]) ([Intel XE#2252] / [Intel XE#2423]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@dp-hpd-storm-disable: - shard-bmg: [SKIP][519] ([Intel XE#2252]) -> ([SKIP][520], [SKIP][521]) ([Intel XE#2423]) +3 other tests ( 2 skip ) [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html * igt at kms_content_protection@atomic: - shard-bmg: [FAIL][522] ([Intel XE#1178]) -> ([SKIP][523], [SKIP][524]) ([Intel XE#2341] / [Intel XE#2423]) [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_content_protection@atomic.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_content_protection@atomic.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_content_protection@atomic.html * igt at kms_content_protection@content-type-change: - shard-bmg: [SKIP][525] ([Intel XE#2341]) -> ([SKIP][526], [SKIP][527]) ([Intel XE#2423]) [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_content_protection@content-type-change.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_content_protection@content-type-change.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][528] ([Intel XE#2390]) -> ([SKIP][529], [SKIP][530]) ([Intel XE#2390] / [Intel XE#2423]) [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_content_protection@dp-mst-type-0.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_content_protection@dp-mst-type-0.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-bmg: [FAIL][531] ([Intel XE#1178]) -> [SKIP][532] ([Intel XE#2423]) [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_content_protection@legacy.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-bmg: [FAIL][533] ([Intel XE#1178]) -> ([FAIL][534], [SKIP][535]) ([Intel XE#1178] / [Intel XE#2423]) [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_content_protection@lic-type-0.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_content_protection@lic-type-0.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-bmg: [SKIP][536] ([Intel XE#2341]) -> [SKIP][537] ([Intel XE#2423]) [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_content_protection@lic-type-1.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][538] ([Intel XE#2341]) -> ([SKIP][539], [SKIP][540]) ([Intel XE#2341] / [Intel XE#2423]) [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_content_protection@mei-interface.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_content_protection@mei-interface.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-bmg: [FAIL][541] ([Intel XE#1188]) -> ([SKIP][542], [SKIP][543]) ([Intel XE#2423]) [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_content_protection@uevent.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_content_protection@uevent.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-onscreen-128x42: - shard-bmg: [SKIP][544] ([Intel XE#2320]) -> ([SKIP][545], [SKIP][546]) ([Intel XE#2423]) +2 other tests ( 2 skip ) [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_crc@cursor-onscreen-128x42.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cursor_crc@cursor-onscreen-128x42.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cursor_crc@cursor-onscreen-128x42.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][547] ([Intel XE#2320]) -> ([SKIP][548], [SKIP][549]) ([Intel XE#2320] / [Intel XE#2423]) +6 other tests ( 2 skip ) [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_crc@cursor-random-32x32.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_cursor_crc@cursor-random-32x32.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-bmg: [SKIP][550] ([Intel XE#2321]) -> ([SKIP][551], [SKIP][552]) ([Intel XE#2321] / [Intel XE#2423]) +1 other test ( 2 skip ) [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_cursor_crc@cursor-random-512x170.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cursor_crc@cursor-random-512x170.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-bmg: [SKIP][553] ([Intel XE#2321]) -> ([SKIP][554], [SKIP][555]) ([Intel XE#2423]) [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_cursor_crc@cursor-random-512x512.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cursor_crc@cursor-random-512x512.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: [SKIP][556] ([Intel XE#2320]) -> [SKIP][557] ([Intel XE#2423]) +7 other tests skip [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_cursor_crc@cursor-sliding-256x85.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][558] ([Intel XE#2321]) -> [SKIP][559] ([Intel XE#2423]) [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_crc@cursor-sliding-512x512.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-bmg: [SKIP][560] ([Intel XE#2291]) -> ([SKIP][561], [SKIP][562]) ([Intel XE#2423]) [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-bmg: [SKIP][563] ([Intel XE#2291]) -> [SKIP][564] ([Intel XE#2423]) +1 other test skip [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][565] ([Intel XE#877]) -> ([DMESG-WARN][566], [SKIP][567]) ([Intel XE#2423] / [Intel XE#877]) [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: [SKIP][568] ([Intel XE#2286]) -> [SKIP][569] ([Intel XE#2423]) [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [FAIL][570] ([Intel XE#2141]) -> ([FAIL][571], [SKIP][572]) ([Intel XE#2136] / [Intel XE#2141]) [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][573] ([Intel XE#1508]) -> [SKIP][574] ([Intel XE#2136]) [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][575] ([Intel XE#2425]) -> ([SKIP][576], [PASS][577]) ([Intel XE#2423]) [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_display_modes@extended-mode-basic.html [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][578] ([Intel XE#2323]) -> [SKIP][579] ([Intel XE#2423]) [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_display_modes@mst-extended-mode-negative.html [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_display_modes@mst-extended-mode-negative.html - shard-dg2-set2: [SKIP][580] ([Intel XE#307]) -> [SKIP][581] ([Intel XE#2423] / [i915#2575]) [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt at kms_display_modes@mst-extended-mode-negative.html [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][582] ([Intel XE#2244]) -> [SKIP][583] ([Intel XE#2136]) +1 other test skip [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: [SKIP][584] ([Intel XE#2244]) -> ([SKIP][585], [SKIP][586]) ([Intel XE#2136] / [Intel XE#2244]) +2 other tests ( 2 skip ) [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_dsc@dsc-with-output-formats.html [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_dsc@dsc-with-output-formats.html [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-bmg: [SKIP][587] ([Intel XE#2244]) -> ([SKIP][588], [SKIP][589]) ([Intel XE#2136]) [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][590] ([Intel XE#776]) -> ([SKIP][591], [SKIP][592]) ([Intel XE#2136] / [Intel XE#776]) +1 other test ( 2 skip ) [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_fbcon_fbt@psr-suspend.html [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_fbcon_fbt@psr-suspend.html [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][593] ([Intel XE#2375]) -> ([SKIP][594], [SKIP][595]) ([Intel XE#2375] / [Intel XE#2423]) [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_feature_discovery@dp-mst.html [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_feature_discovery@dp-mst.html [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr2: - shard-bmg: [SKIP][596] ([Intel XE#2374]) -> ([SKIP][597], [SKIP][598]) ([Intel XE#2374] / [Intel XE#2423]) [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_feature_discovery@psr2.html [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_feature_discovery@psr2.html [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-bmg: [FAIL][599] ([Intel XE#2882]) -> ([SKIP][600], [FAIL][601]) ([Intel XE#2423] / [Intel XE#2882]) [599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-dg2-set2: [FAIL][602] ([Intel XE#301]) -> ([FAIL][603], [PASS][604]) ([Intel XE#301]) [602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank.html [603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank.html [604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][605] ([Intel XE#2882] / [Intel XE#3820]) -> [SKIP][606] ([Intel XE#2316]) [605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: [SKIP][607] ([Intel XE#2316]) -> [SKIP][608] ([Intel XE#2423]) +2 other tests skip [607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-vs-hang.html [608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: [SKIP][609] ([Intel XE#2316]) -> ([PASS][610], [SKIP][611]) ([Intel XE#2423]) +1 other test ( 1 pass, 1 skip ) [609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-bmg: [SKIP][612] ([Intel XE#2316]) -> ([SKIP][613], [SKIP][614]) ([Intel XE#2423]) [612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-expired-vblank: - shard-bmg: [FAIL][615] ([Intel XE#2882]) -> [SKIP][616] ([Intel XE#2423]) [615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank.html [616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: [SKIP][617] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][618] ([Intel XE#2136]) +4 other tests skip [617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-bmg: [SKIP][619] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][620] ([Intel XE#2136]) [619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html [620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: [SKIP][621] ([Intel XE#2293] / [Intel XE#2380]) -> ([SKIP][622], [SKIP][623]) ([Intel XE#2136] / [Intel XE#2293] / [Intel XE#2380]) +10 other tests ( 2 skip ) [621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/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-upscaling: - shard-bmg: [SKIP][624] ([Intel XE#2293] / [Intel XE#2380]) -> ([SKIP][625], [SKIP][626]) ([Intel XE#2136]) +2 other tests ( 2 skip ) [624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/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: [SKIP][627] ([Intel XE#2311]) -> ([SKIP][628], [SKIP][629]) ([Intel XE#2136] / [Intel XE#2311]) +45 other tests ( 2 skip ) [627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][630] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][631] ([Intel XE#2311]) [630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html [631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][632] ([Intel XE#651]) -> [SKIP][633] ([Intel XE#2136]) +1 other test skip [632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html [633]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][634] ([Intel XE#2311]) -> [SKIP][635] ([Intel XE#2136]) +33 other tests skip [634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][636] ([Intel XE#651]) -> [SKIP][637] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][638] ([Intel XE#2311]) -> [SKIP][639] ([Intel XE#2312]) +6 other tests skip [638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html [639]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][640] ([Intel XE#2312]) -> ([SKIP][641], [SKIP][642]) ([Intel XE#2136] / [Intel XE#2311]) +6 other tests ( 2 skip ) [640]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [641]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [642]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][643] ([Intel XE#2312]) -> ([SKIP][644], [SKIP][645]) ([Intel XE#2136]) +5 other tests ( 2 skip ) [643]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [644]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [645]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: [SKIP][646] ([Intel XE#2136] / [Intel XE#2231]) -> ([SKIP][647], [SKIP][648]) ([Intel XE#2136]) [646]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html [647]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html [648]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [FAIL][649] ([Intel XE#2333]) -> [SKIP][650] ([Intel XE#2136]) +12 other tests skip [649]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [650]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][651] ([Intel XE#2333]) -> [SKIP][652] ([Intel XE#2312]) +4 other tests skip [651]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html [652]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][653] ([Intel XE#2333]) -> ([SKIP][654], [SKIP][655]) ([Intel XE#2136] / [Intel XE#2312]) +2 other tests ( 2 skip ) [653]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [654]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [655]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [FAIL][656] ([Intel XE#2333]) -> ([FAIL][657], [SKIP][658]) ([Intel XE#2312] / [Intel XE#2333]) [656]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [657]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [658]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][659] ([Intel XE#2312]) -> ([FAIL][660], [SKIP][661]) ([Intel XE#2136] / [Intel XE#2333]) +1 other test ( 1 fail, 1 skip ) [659]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [660]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [661]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][662] ([Intel XE#2312]) -> ([FAIL][663], [FAIL][664]) ([Intel XE#2333]) +2 other tests ( 2 fail ) [662]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [663]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [664]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][665] ([Intel XE#2136] / [Intel XE#2231]) -> ([SKIP][666], [FAIL][667]) ([Intel XE#2136] / [Intel XE#2333]) [665]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [666]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [667]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/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-bmg: [FAIL][668] ([Intel XE#2333]) -> ([SKIP][669], [SKIP][670]) ([Intel XE#2136]) +5 other tests ( 2 skip ) [668]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [669]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [670]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][671] ([Intel XE#2333]) -> ([FAIL][672], [SKIP][673]) ([Intel XE#2136] / [Intel XE#2333]) +23 other tests ( 1 fail, 1 skip ) [671]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [672]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [673]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: [DMESG-FAIL][674] ([Intel XE#877]) -> ([FAIL][675], [FAIL][676]) ([Intel XE#2333]) [674]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [675]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [676]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][677] ([Intel XE#2312]) -> ([SKIP][678], [SKIP][679]) ([Intel XE#2311] / [Intel XE#2312]) [677]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html [678]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html [679]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][680] ([Intel XE#2311]) -> ([SKIP][681], [SKIP][682]) ([Intel XE#2136] / [Intel XE#2312]) +2 other tests ( 2 skip ) [680]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html [681]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html [682]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move: - shard-bmg: [SKIP][683] ([Intel XE#2312]) -> ([SKIP][684], [SKIP][685]) ([Intel XE#2311]) +2 other tests ( 2 skip ) [683]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html [684]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html [685]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][686] ([Intel XE#2312]) -> [SKIP][687] ([Intel XE#2311]) [686]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html [687]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move: - shard-bmg: [SKIP][688] ([Intel XE#2311]) -> ([SKIP][689], [SKIP][690]) ([Intel XE#2311] / [Intel XE#2312]) +1 other test ( 2 skip ) [688]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html [689]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html [690]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-suspend: - shard-bmg: [SKIP][691] ([Intel XE#2311]) -> ([SKIP][692], [SKIP][693]) ([Intel XE#2136]) +10 other tests ( 2 skip ) [691]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-suspend.html [692]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-suspend.html [693]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-suspend.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: [SKIP][694] ([Intel XE#2352]) -> [SKIP][695] ([Intel XE#2136]) [694]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [695]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][696] ([Intel XE#2313]) -> ([SKIP][697], [SKIP][698]) ([Intel XE#2136]) +12 other tests ( 2 skip ) [696]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html [697]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html [698]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][699] ([Intel XE#2313]) -> ([SKIP][700], [SKIP][701]) ([Intel XE#2136] / [Intel XE#2313]) +45 other tests ( 2 skip ) [699]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html [700]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html [701]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][702] ([Intel XE#2313]) -> [SKIP][703] ([Intel XE#2312]) +4 other tests skip [702]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [703]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][704] ([Intel XE#2313]) -> ([SKIP][705], [SKIP][706]) ([Intel XE#2136] / [Intel XE#2312]) +3 other tests ( 2 skip ) [704]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html [705]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html [706]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][707] ([Intel XE#2312]) -> ([SKIP][708], [SKIP][709]) ([Intel XE#2136] / [Intel XE#2313]) +3 other tests ( 2 skip ) [707]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [708]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [709]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][710] ([Intel XE#2312]) -> [SKIP][711] ([Intel XE#2136]) +10 other tests skip [710]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html [711]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][712] ([Intel XE#2313]) -> ([SKIP][713], [SKIP][714]) ([Intel XE#2312] / [Intel XE#2313]) +2 other tests ( 2 skip ) [712]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [713]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [714]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][715] ([Intel XE#2312]) -> [SKIP][716] ([Intel XE#2313]) +1 other test skip [715]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [716]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][717] ([Intel XE#2352]) -> ([SKIP][718], [SKIP][719]) ([Intel XE#2136] / [Intel XE#2352]) [717]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [718]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [719]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][720] ([Intel XE#2350]) -> ([SKIP][721], [SKIP][722]) ([Intel XE#2136]) [720]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [721]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [722]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][723] ([Intel XE#2313]) -> [SKIP][724] ([Intel XE#2136]) +33 other tests skip [723]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [724]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html - shard-dg2-set2: [SKIP][725] ([Intel XE#653]) -> [SKIP][726] ([Intel XE#2136]) +2 other tests skip [725]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [726]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][727] ([Intel XE#2312]) -> ([SKIP][728], [SKIP][729]) ([Intel XE#2312] / [Intel XE#2313]) [727]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html [728]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html [729]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-rte: - shard-bmg: [SKIP][730] ([Intel XE#2312]) -> ([SKIP][731], [SKIP][732]) ([Intel XE#2313]) +2 other tests ( 2 skip ) [730]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-rte.html [731]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-rte.html [732]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-rte.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][733] ([Intel XE#2312]) -> ([SKIP][734], [SKIP][735]) ([Intel XE#2136] / [Intel XE#2312]) +1 other test ( 2 skip ) [733]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html [734]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html [735]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][736] ([Intel XE#2340]) -> ([SKIP][737], [SKIP][738]) ([Intel XE#2340] / [Intel XE#2423]) [736]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_getfb@getfb2-accept-ccs.html [737]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_getfb@getfb2-accept-ccs.html [738]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [SKIP][739] ([Intel XE#1503]) -> ([PASS][740], [SKIP][741]) ([Intel XE#2423]) [739]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_hdr@invalid-hdr.html [740]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_hdr@invalid-hdr.html [741]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@basic-big-joiner: - shard-bmg: [SKIP][742] ([Intel XE#346]) -> ([SKIP][743], [SKIP][744]) ([Intel XE#2136] / [Intel XE#346]) [742]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_joiner@basic-big-joiner.html [743]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_joiner@basic-big-joiner.html [744]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-bmg: [SKIP][745] ([Intel XE#2927]) -> ([SKIP][746], [SKIP][747]) ([Intel XE#2136] / [Intel XE#2927]) [745]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_joiner@basic-ultra-joiner.html [746]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_joiner@basic-ultra-joiner.html [747]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][748] ([Intel XE#2501]) -> ([SKIP][749], [SKIP][750]) ([Intel XE#2423] / [Intel XE#2501]) [748]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [749]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [750]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-bmg: [SKIP][751] ([Intel XE#2486]) -> ([SKIP][752], [SKIP][753]) ([Intel XE#2423] / [Intel XE#2486]) [751]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_panel_fitting@atomic-fastset.html [752]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_panel_fitting@atomic-fastset.html [753]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-bmg: [SKIP][754] ([Intel XE#3007]) -> [SKIP][755] ([Intel XE#2423]) +1 other test skip [754]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_plane_alpha_blend@constant-alpha-max.html [755]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_plane_alpha_blend@constant-alpha-max.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][756] ([Intel XE#2393]) -> [SKIP][757] ([Intel XE#2423]) [756]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_plane_lowres@tiling-y.html [757]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_lowres@tiling-yf: - shard-bmg: [SKIP][758] ([Intel XE#2393]) -> ([SKIP][759], [SKIP][760]) ([Intel XE#2423]) [758]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_plane_lowres@tiling-yf.html [759]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_plane_lowres@tiling-yf.html [760]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][761] ([Intel XE#2493]) -> ([SKIP][762], [SKIP][763]) ([Intel XE#2423] / [Intel XE#2493]) +1 other test ( 2 skip ) [761]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_plane_multiple@tiling-yf.html [762]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_plane_multiple@tiling-yf.html [763]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-bmg: [SKIP][764] ([Intel XE#3007]) -> [DMESG-WARN][765] ([Intel XE#877]) [764]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html [765]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-bmg: [SKIP][766] ([Intel XE#2763]) -> ([SKIP][767], [SKIP][768]) ([Intel XE#2423]) [766]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html [767]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html [768]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-bmg: [SKIP][769] ([Intel XE#2763]) -> [SKIP][770] ([Intel XE#2423]) +2 other tests skip [769]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [770]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][771] ([Intel XE#2763]) -> ([SKIP][772], [SKIP][773]) ([Intel XE#2423] / [Intel XE#2763]) +7 other tests ( 2 skip ) [771]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [772]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [773]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][774] ([Intel XE#2938]) -> ([SKIP][775], [SKIP][776]) ([Intel XE#2136]) [774]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_pm_backlight@brightness-with-dpms.html [775]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_pm_backlight@brightness-with-dpms.html [776]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][777] ([Intel XE#2392]) -> [SKIP][778] ([Intel XE#2136]) [777]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_pm_dc@dc5-psr.html [778]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][779] ([Intel XE#3309]) -> ([SKIP][780], [SKIP][781]) ([Intel XE#2136] / [Intel XE#3309]) [779]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_pm_dc@dc5-retention-flops.html [780]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_pm_dc@dc5-retention-flops.html [781]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-bmg: [SKIP][782] ([Intel XE#2392]) -> ([SKIP][783], [SKIP][784]) ([Intel XE#2136] / [Intel XE#2392]) [782]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_pm_dc@dc6-psr.html [783]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_pm_dc@dc6-psr.html [784]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [FAIL][785] -> ([SKIP][786], [SKIP][787]) ([Intel XE#2446]) [785]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_pm_rpm@basic-pci-d3-state.html [786]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_pm_rpm@basic-pci-d3-state.html [787]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][788] ([Intel XE#1439] / [Intel XE#836]) -> ([SKIP][789], [SKIP][790]) ([Intel XE#1439] / [Intel XE#2446] / [Intel XE#836]) [788]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [789]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [790]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-bmg: [SKIP][791] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> ([SKIP][792], [SKIP][793]) ([Intel XE#1439] / [Intel XE#2446] / [Intel XE#3141] / [Intel XE#836]) +1 other test ( 2 skip ) [791]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_pm_rpm@modeset-lpsp.html [792]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_pm_rpm@modeset-lpsp.html [793]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: [SKIP][794] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][795] ([Intel XE#2446]) [794]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [795]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][796] ([Intel XE#1489]) -> ([SKIP][797], [SKIP][798]) ([Intel XE#2136]) +4 other tests ( 2 skip ) [796]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [797]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [798]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][799] ([Intel XE#1489]) -> [SKIP][800] ([Intel XE#2136]) +10 other tests skip [799]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [800]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][801] ([Intel XE#1489]) -> ([SKIP][802], [SKIP][803]) ([Intel XE#1489] / [Intel XE#2136]) +15 other tests ( 2 skip ) [801]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [802]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [803]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/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-dg2-set2: [SKIP][804] ([Intel XE#1489]) -> [SKIP][805] ([Intel XE#2136]) [804]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html [805]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@page_flip-p010: - shard-bmg: [SKIP][806] ([Intel XE#2387]) -> ([SKIP][807], [SKIP][808]) ([Intel XE#2136] / [Intel XE#2387]) [806]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_psr2_su@page_flip-p010.html [807]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr2_su@page_flip-p010.html [808]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-bmg: [SKIP][809] ([Intel XE#2387]) -> ([SKIP][810], [SKIP][811]) ([Intel XE#2136]) [809]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_psr2_su@page_flip-xrgb8888.html [810]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr2_su@page_flip-xrgb8888.html [811]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-blt: - shard-bmg: [SKIP][812] ([Intel XE#2234] / [Intel XE#2850]) -> ([SKIP][813], [SKIP][814]) ([Intel XE#2136] / [Intel XE#2234] / [Intel XE#2850]) +26 other tests ( 2 skip ) [812]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_psr@fbc-pr-cursor-blt.html [813]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_psr@fbc-pr-cursor-blt.html [814]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_psr@fbc-pr-cursor-blt.html * igt at kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][815] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][816] ([Intel XE#2136] / [Intel XE#2351]) [815]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt at kms_psr@fbc-psr-sprite-plane-onoff.html [816]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_psr@fbc-psr-sprite-plane-onoff.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: [SKIP][817] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][818] ([Intel XE#2136]) +15 other tests skip [817]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_psr@psr-primary-page-flip.html [818]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr2-suspend: - shard-bmg: [SKIP][819] ([Intel XE#2234] / [Intel XE#2850]) -> ([SKIP][820], [SKIP][821]) ([Intel XE#2136]) +6 other tests ( 2 skip ) [819]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_psr@psr2-suspend.html [820]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr@psr2-suspend.html [821]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][822] ([Intel XE#2414]) -> ([SKIP][823], [SKIP][824]) ([Intel XE#2136]) [822]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [823]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [824]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][825] ([Intel XE#2414]) -> ([SKIP][826], [SKIP][827]) ([Intel XE#2136] / [Intel XE#2414]) [825]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [826]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [827]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@bad-pixel-format: - shard-bmg: [SKIP][828] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][829] ([Intel XE#2423]) [828]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_rotation_crc@bad-pixel-format.html [829]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@primary-rotation-90: - shard-bmg: [SKIP][830] ([Intel XE#3414] / [Intel XE#3904]) -> ([SKIP][831], [SKIP][832]) ([Intel XE#2423] / [Intel XE#3414] / [Intel XE#3904]) +1 other test ( 2 skip ) [830]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_rotation_crc@primary-rotation-90.html [831]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_rotation_crc@primary-rotation-90.html [832]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-bmg: [SKIP][833] ([Intel XE#2330]) -> [SKIP][834] ([Intel XE#2423]) +1 other test skip [833]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html [834]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][835] ([Intel XE#2330]) -> ([SKIP][836], [SKIP][837]) ([Intel XE#2330] / [Intel XE#2423]) +1 other test ( 2 skip ) [835]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [836]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [837]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][838] ([Intel XE#1127]) -> [SKIP][839] ([Intel XE#2423] / [i915#2575]) [838]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [839]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][840] ([Intel XE#2413]) -> ([SKIP][841], [SKIP][842]) ([Intel XE#2413] / [Intel XE#2423]) +2 other tests ( 2 skip ) [840]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-center.html [841]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_scaling_modes@scaling-mode-center.html [842]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: [SKIP][843] ([Intel XE#2413]) -> [SKIP][844] ([Intel XE#2423]) [843]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_scaling_modes@scaling-mode-full-aspect.html [844]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: [SKIP][845] ([Intel XE#1435]) -> ([SKIP][846], [SKIP][847]) ([Intel XE#2423]) [845]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_setmode@basic-clone-single-crtc.html [846]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_setmode@basic-clone-single-crtc.html [847]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][848] ([Intel XE#2426]) -> ([SKIP][849], [SKIP][850]) ([Intel XE#2423] / [Intel XE#2426]) +1 other test ( 2 skip ) [848]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_tiled_display@basic-test-pattern.html [849]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_tiled_display@basic-test-pattern.html [850]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [SKIP][851] ([Intel XE#362]) -> ([FAIL][852], [SKIP][853]) ([Intel XE#1729] / [Intel XE#362]) [851]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html [852]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern.html [853]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: [SKIP][854] ([Intel XE#2450]) -> ([SKIP][855], [SKIP][856]) ([Intel XE#2423] / [Intel XE#2450]) [854]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_tv_load_detect@load-detect.html [855]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_tv_load_detect@load-detect.html [856]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flip-dpms: - shard-bmg: [SKIP][857] ([Intel XE#1499]) -> ([SKIP][858], [SKIP][859]) ([Intel XE#1499] / [Intel XE#2423]) +1 other test ( 2 skip ) [857]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_vrr@flip-dpms.html [858]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_vrr@flip-dpms.html [859]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@flip-suspend: - shard-bmg: [SKIP][860] ([Intel XE#1499]) -> [SKIP][861] ([Intel XE#2423]) +1 other test skip [860]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_vrr@flip-suspend.html [861]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@lobf: - shard-bmg: [SKIP][862] ([Intel XE#2168]) -> [SKIP][863] ([Intel XE#2423]) [862]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at kms_vrr@lobf.html [863]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_vrr@lobf.html * igt at kms_vrr@max-min: - shard-bmg: [SKIP][864] ([Intel XE#1499]) -> ([SKIP][865], [SKIP][866]) ([Intel XE#2423]) [864]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at kms_vrr@max-min.html [865]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_vrr@max-min.html [866]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_vrr@max-min.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][867] ([Intel XE#3007]) -> ([SKIP][868], [SKIP][869]) ([Intel XE#1499] / [Intel XE#2423]) [867]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-virtual.html [868]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-virtual.html [869]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: [SKIP][870] ([Intel XE#756]) -> ([SKIP][871], [SKIP][872]) ([Intel XE#2423] / [Intel XE#756]) [870]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_writeback@writeback-check-output-xrgb2101010.html [871]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_writeback@writeback-check-output-xrgb2101010.html [872]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-3/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-bmg: [SKIP][873] ([Intel XE#756]) -> ([SKIP][874], [SKIP][875]) ([Intel XE#2423]) [873]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at kms_writeback@writeback-fb-id.html [874]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_writeback@writeback-fb-id.html [875]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: [SKIP][876] ([Intel XE#756]) -> [SKIP][877] ([Intel XE#2423]) [876]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at kms_writeback@writeback-pixel-formats.html [877]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][878] ([Intel XE#1091] / [Intel XE#2849]) -> ([SKIP][879], [SKIP][880]) ([Intel XE#2423]) [878]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at sriov_basic@enable-vfs-autoprobe-off.html [879]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at sriov_basic@enable-vfs-autoprobe-off.html [880]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][881] ([Intel XE#3889]) -> [SKIP][882] ([Intel XE#1130]) [881]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [882]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][883] ([Intel XE#2905]) -> [SKIP][884] ([Intel XE#1130]) +15 other tests skip [883]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [884]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: [SKIP][885] ([Intel XE#3889]) -> ([SKIP][886], [SKIP][887]) ([Intel XE#1130] / [Intel XE#3889]) [885]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html [886]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html [887]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug_online@basic-breakpoint: - shard-dg2-set2: [SKIP][888] ([Intel XE#2905]) -> [SKIP][889] ([Intel XE#1130]) [888]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt at xe_eudebug_online@basic-breakpoint.html [889]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at xe_eudebug_online@basic-breakpoint.html * igt at xe_eudebug_online@set-breakpoint: - shard-bmg: [SKIP][890] ([Intel XE#2905]) -> ([SKIP][891], [SKIP][892]) ([Intel XE#1130]) +3 other tests ( 2 skip ) [890]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_eudebug_online@set-breakpoint.html [891]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_eudebug_online@set-breakpoint.html [892]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_eudebug_online@set-breakpoint.html * igt at xe_eudebug_online@stopped-thread: - shard-bmg: [SKIP][893] ([Intel XE#2905]) -> ([SKIP][894], [SKIP][895]) ([Intel XE#1130] / [Intel XE#2905]) +17 other tests ( 2 skip ) [893]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at xe_eudebug_online@stopped-thread.html [894]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_eudebug_online@stopped-thread.html [895]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at xe_eudebug_online@stopped-thread.html * igt at xe_exec_balancer@once-parallel-userptr-invalidate: - shard-bmg: [SKIP][896] ([Intel XE#1130]) -> ([SKIP][897], [PASS][898]) ([Intel XE#1130]) +4 other tests ( 1 pass, 1 skip ) [896]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_exec_balancer@once-parallel-userptr-invalidate.html [897]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_exec_balancer@once-parallel-userptr-invalidate.html [898]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at xe_exec_balancer@once-parallel-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][899] ([Intel XE#2322]) -> ([SKIP][900], [SKIP][901]) ([Intel XE#1130] / [Intel XE#2322]) +15 other tests ( 2 skip ) [899]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [900]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [901]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind: - shard-bmg: [SKIP][902] ([Intel XE#2322]) -> [SKIP][903] ([Intel XE#1130]) +8 other tests skip [902]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html [903]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][904] ([Intel XE#2322]) -> ([SKIP][905], [SKIP][906]) ([Intel XE#1130]) +3 other tests ( 2 skip ) [904]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at xe_exec_basic@multigpu-once-null-rebind.html [905]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_exec_basic@multigpu-once-null-rebind.html [906]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [SKIP][907] ([Intel XE#1192]) -> [SKIP][908] ([Intel XE#2229]) [907]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_live_ktest@xe_bo.html [908]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_live_ktest@xe_bo.html * igt at xe_mmap@pci-membarrier: - shard-bmg: [SKIP][909] ([Intel XE#4045]) -> ([SKIP][910], [SKIP][911]) ([Intel XE#1130] / [Intel XE#4045]) [909]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_mmap@pci-membarrier.html [910]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at xe_mmap@pci-membarrier.html [911]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_mmap@pci-membarrier.html * igt at xe_mmap@pci-membarrier-parallel: - shard-bmg: [SKIP][912] ([Intel XE#4045]) -> [SKIP][913] ([Intel XE#1130]) [912]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_mmap@pci-membarrier-parallel.html [913]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_mmap@pci-membarrier-parallel.html * igt at xe_mmap@small-bar: - shard-bmg: [SKIP][914] ([Intel XE#586]) -> ([SKIP][915], [SKIP][916]) ([Intel XE#1130] / [Intel XE#586]) [914]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at xe_mmap@small-bar.html [915]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-5/igt at xe_mmap@small-bar.html [916]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_mmap@small-bar.html * igt at xe_oa@oa-tlb-invalidate: - shard-bmg: [SKIP][917] ([Intel XE#2248]) -> ([SKIP][918], [SKIP][919]) ([Intel XE#1130] / [Intel XE#2248]) [917]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_oa@oa-tlb-invalidate.html [918]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_oa@oa-tlb-invalidate.html [919]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-8/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_oa@syncs-syncobj-wait: - shard-dg2-set2: [SKIP][920] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][921] ([Intel XE#1130]) [920]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt at xe_oa@syncs-syncobj-wait.html [921]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-dg2-434/igt at xe_oa@syncs-syncobj-wait.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][922] ([Intel XE#2248]) -> [SKIP][923] ([Intel XE#1130]) [922]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_oa@unprivileged-single-ctx-counters.html [923]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][924] ([Intel XE#1420]) -> [SKIP][925] ([Intel XE#1130]) [924]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_pat@pat-index-xehpc.html [925]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][926] ([Intel XE#2245]) -> ([SKIP][927], [SKIP][928]) ([Intel XE#1130] / [Intel XE#2245]) [926]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt at xe_pat@pat-index-xelp.html [927]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at xe_pat@pat-index-xelp.html [928]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_pat@pat-index-xelp.html * igt at xe_pm@d3cold-mocs: - shard-bmg: [SKIP][929] ([Intel XE#2284]) -> ([SKIP][930], [SKIP][931]) ([Intel XE#1130]) [929]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_pm@d3cold-mocs.html [930]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_pm@d3cold-mocs.html [931]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-bmg: [SKIP][932] ([Intel XE#2284]) -> ([SKIP][933], [SKIP][934]) ([Intel XE#1130] / [Intel XE#2284]) +4 other tests ( 2 skip ) [932]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt at xe_pm@s3-d3cold-basic-exec.html [933]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_pm@s3-d3cold-basic-exec.html [934]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_pm@vram-d3cold-threshold: - shard-bmg: [SKIP][935] ([Intel XE#579]) -> ([SKIP][936], [SKIP][937]) ([Intel XE#1130] / [Intel XE#579]) [935]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_pm@vram-d3cold-threshold.html [936]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_pm@vram-d3cold-threshold.html [937]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-2/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-cs-cycles: - shard-bmg: [SKIP][938] ([Intel XE#944]) -> ([SKIP][939], [SKIP][940]) ([Intel XE#1130]) +1 other test ( 2 skip ) [938]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt at xe_query@multigpu-query-cs-cycles.html [939]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_query@multigpu-query-cs-cycles.html [940]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-1/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][941] ([Intel XE#944]) -> [SKIP][942] ([Intel XE#1130]) +3 other tests skip [941]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt at xe_query@multigpu-query-invalid-cs-cycles.html [942]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_query@multigpu-query-mem-usage: - shard-bmg: [SKIP][943] ([Intel XE#944]) -> ([SKIP][944], [SKIP][945]) ([Intel XE#1130] / [Intel XE#944]) +3 other tests ( 2 skip ) [943]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt at xe_query@multigpu-query-mem-usage.html [944]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at xe_query@multigpu-query-mem-usage.html [945]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_sriov_flr@flr-each-isolation: - shard-bmg: [SKIP][946] ([Intel XE#3342]) -> [SKIP][947] ([Intel XE#1130]) [946]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_sriov_flr@flr-each-isolation.html [947]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_sriov_flr@flr-each-isolation.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-bmg: [SKIP][948] ([Intel XE#3342]) -> ([SKIP][949], [SKIP][950]) ([Intel XE#1130] / [Intel XE#3342]) [948]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt at xe_sriov_flr@flr-vf1-clear.html [949]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-6/igt at xe_sriov_flr@flr-vf1-clear.html [950]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/shard-bmg-7/igt at xe_sriov_flr@flr-vf1-clear.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [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#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [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#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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [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#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#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [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#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#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#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#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4072]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4072 [Intel XE#4075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4075 [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#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [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#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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [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_8193 -> IGTPW_12447 * Linux: xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c -> xe-2496-4840e56bcc47f3af6bbc58bcc83b094540e5efa0 IGTPW_12447: 4593317dedb4854dc0f4d7beed6cf9c68f3adeb8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c xe-2496-4840e56bcc47f3af6bbc58bcc83b094540e5efa0: 4840e56bcc47f3af6bbc58bcc83b094540e5efa0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12447/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 16 15:20:22 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 15:20:22 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_series_starting_with_=5Bi?= =?utf-8?q?-g-t=2Cv1=2C1/1=5D_tests/xe=5Feudebug=3A_refactor_exec-queue-plac?= =?utf-8?q?ements_test?= In-Reply-To: <20250116125522.146533-1-jan.sokolowski@intel.com> References: <20250116125522.146533-1-jan.sokolowski@intel.com> Message-ID: <173704082214.268103.929367669917326896@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v1,1/1] tests/xe_eudebug: refactor exec-queue-placements test URL : https://patchwork.freedesktop.org/series/143606/ State : failure == Summary == CI Bug Log - changes from IGT_8195 -> IGTPW_12448 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12448 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12448, 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_12448/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-atsm-1 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12448: ### IGT changes ### #### Possible regressions #### * igt at i915_selftest@live at guc_hang: - bat-arlh-2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-arlh-2/igt at i915_selftest@live at guc_hang.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12448/bat-arlh-2/igt at i915_selftest@live at guc_hang.html Known issues ------------ Here are the changes found in IGTPW_12448 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at dmabuf@all-tests: - bat-apl-1: [PASS][3] -> [INCOMPLETE][4] ([i915#12904]) +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-apl-1/igt at dmabuf@all-tests.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12448/bat-apl-1/igt at dmabuf@all-tests.html * igt at i915_selftest@live: - bat-mtlp-8: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-mtlp-8/igt at i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12448/bat-mtlp-8/igt at i915_selftest@live.html - bat-arlh-2: [PASS][7] -> [INCOMPLETE][8] ([i915#12445]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-arlh-2/igt at i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12448/bat-arlh-2/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_lrc: - bat-adlp-6: [PASS][9] -> [INCOMPLETE][10] ([i915#9413]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-adlp-6/igt at i915_selftest@live at gt_lrc.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12448/bat-adlp-6/igt at i915_selftest@live at gt_lrc.html * igt at i915_selftest@live at workarounds: - bat-arlh-3: [PASS][11] -> [DMESG-FAIL][12] ([i915#12061]) +1 other test dmesg-fail [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-arlh-3/igt at i915_selftest@live at workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12448/bat-arlh-3/igt at i915_selftest@live at workarounds.html - bat-arls-5: [PASS][13] -> [DMESG-FAIL][14] ([i915#12061]) +1 other test dmesg-fail [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-arls-5/igt at i915_selftest@live at workarounds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12448/bat-arls-5/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - bat-mtlp-6: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12448/bat-mtlp-6/igt at i915_selftest@live at workarounds.html #### Warnings #### * igt at i915_selftest@live: - bat-adlp-6: [ABORT][17] ([i915#13399]) -> [INCOMPLETE][18] ([i915#9413]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-adlp-6/igt at i915_selftest@live.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12448/bat-adlp-6/igt at i915_selftest@live.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13399 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8195 -> IGTPW_12448 * Linux: CI_DRM_15966 -> CI_DRM_15967 CI-20190529: 20190529 CI_DRM_15966: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15967: 50d15a728295807727a2642284d639fc71ecaa15 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12448: 2fd03025a2eca2200fa611c818989a6f6b77295a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8195: 8195 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12448/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Thu Jan 16 15:37:30 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Thu, 16 Jan 2025 15:37:30 -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/1=5D_tests/intel/xe=5Feudebug=3A_refactor_exec-queu?= =?utf-8?q?e-placements_test?= In-Reply-To: <20250116125738.146610-1-jan.sokolowski@intel.com> References: <20250116125738.146610-1-jan.sokolowski@intel.com> Message-ID: <173704185070.304946.14690362430815862949@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v2,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test URL : https://patchwork.freedesktop.org/series/143607/ State : failure == Summary == CI Bug Log - changes from IGT_8195 -> IGTPW_12449 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12449 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12449, 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_12449/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-atsm-1 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12449: ### IGT changes ### #### Possible regressions #### * igt at i915_selftest@live at workarounds: - bat-adlp-9: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-adlp-9/igt at i915_selftest@live at workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12449/bat-adlp-9/igt at i915_selftest@live at workarounds.html Known issues ------------ Here are the changes found in IGTPW_12449 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-mtlp-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-mtlp-8/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12449/bat-mtlp-8/igt at i915_selftest@live.html - bat-adlp-9: [PASS][5] -> [ABORT][6] ([i915#13399]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-adlp-9/igt at i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12449/bat-adlp-9/igt at i915_selftest@live.html - bat-arlh-2: [PASS][7] -> [INCOMPLETE][8] ([i915#12445]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-arlh-2/igt at i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12449/bat-arlh-2/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-arls-5: [PASS][9] -> [DMESG-FAIL][10] ([i915#12061]) +1 other test dmesg-fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-arls-5/igt at i915_selftest@live at workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12449/bat-arls-5/igt at i915_selftest@live at workarounds.html - bat-arlh-2: [PASS][11] -> [INCOMPLETE][12] ([i915#13269]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-arlh-2/igt at i915_selftest@live at workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12449/bat-arlh-2/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_selftest@live: - bat-adlp-6: [ABORT][13] ([i915#13399]) -> [PASS][14] +1 other test pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-adlp-6/igt at i915_selftest@live.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12449/bat-adlp-6/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-mtlp-6: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12449/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#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#13269]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13269 [i915#13399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13399 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8195 -> IGTPW_12449 * Linux: CI_DRM_15966 -> CI_DRM_15967 CI-20190529: 20190529 CI_DRM_15966: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15967: 50d15a728295807727a2642284d639fc71ecaa15 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12449: 60034091ec5e0fc09c76c44fd3e34775b5ab681b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8195: 8195 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12449/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From vprosyak at amd.com Thu Jan 16 15:43:11 2025 From: vprosyak at amd.com (vitaly prosyak) Date: Thu, 16 Jan 2025 10:43:11 -0500 Subject: [PATCH 3/8] lib/amdgpu: Add user mode queue support in ring context In-Reply-To: <20250116115150.ma35lvddby7647it@kamilkon-desk.igk.intel.com> References: <20250116065211.1882469-1-sunil.khatri@amd.com> <20250116065211.1882469-4-sunil.khatri@amd.com> <20250116115150.ma35lvddby7647it@kamilkon-desk.igk.intel.com> Message-ID: <23b97017-9074-44f3-9248-5341aedb7f2f@amd.com> Hi Kamil, I have sent the review to Sunil, but we were using the internal review process. I believe Sunil is aware of the build failure, and we discussed how to address it. Until the build failure is resolved and the header is updated or the new code is guarded, we will not proceed with the merge. Thanks for your help! Vitaly On 2025-01-16 06:51, Kamil Konieczny wrote: > Hi Sunil, > On 2025-01-16 at 12:22:06 +0530, Sunil Khatri wrote: >> Add the meta data to support the user mode command >> submission in the ring_context. >> >> User mode command submission methods needs these >> resources to be initialized and to create/destroy queues. >> >> Also once we have the queue created the queue id is >> used to submit the work load to the h/w. >> >> Signed-off-by: Sunil Khatri >> Reviewed-by: Vitaly Prosyak vitaly.prosyak at amd.com> > Why do you send it here with r-b already added? > Was is sent in some previous series and got r-b on mailinglist? > I do not see any info about this in cover letter. > > Before merging please address build failures: > > see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1346611 for the overview. > > build:tests-debian-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69437776): > ../lib/amdgpu/amd_user_queue.c: In function ?amdgpu_user_queue_destroy?: > ../lib/amdgpu/amd_user_queue.c:183:6: error: implicit declaration of function ?amdgpu_free_userqueue?; did you mean ?amdgpu_open_devices?? [-Werror=implicit-function-declaration] > r = amdgpu_free_userqueue(device_handle, ctxt->queue_id); > ^~~~~~~~~~~~~~~~~~~~~ > amdgpu_open_devices > ../lib/amdgpu/amd_user_queue.c:183:6: warning: nested extern declaration of ?amdgpu_free_userqueue? [-Wnested-externs] > ../lib/amdgpu/amd_user_queue.c: In function ?amdgpu_user_queue_create?: > ../lib/amdgpu/amd_user_queue.c:387:7: error: implicit declaration of function ?amdgpu_create_userqueue?; did you mean ?amdgpu_cs_create_semaphore?? [-Werror=implicit-function-declaration] > r = amdgpu_create_userqueue(device_handle, AMDGPU_HW_IP_GFX, > ^~~~~~~~~~~~~~~~~~~~~~~ > amdgpu_cs_create_semaphore > ../lib/amdgpu/amd_user_queue.c:387:7: warning: nested extern declaration of ?amdgpu_create_userqueue? [-Wnested-externs] > cc1: some warnings being treated as errors > ninja: build stopped: subcommand failed. > section_end:1737012393:step_script > section_start:1737012393:cleanup_file_variables > Cleaning up project directory and file based variables > section_end:1737012394:cleanup_file_variables > ERROR: Job failed: exit code 1 > > Regards, > Kamil > >> --- >> lib/amdgpu/amd_ip_blocks.h | 31 +++++++++++++++++++++++++++++++ >> 1 file changed, 31 insertions(+) >> >> diff --git a/lib/amdgpu/amd_ip_blocks.h b/lib/amdgpu/amd_ip_blocks.h >> index dc4d87151..9d110d402 100644 >> --- a/lib/amdgpu/amd_ip_blocks.h >> +++ b/lib/amdgpu/amd_ip_blocks.h >> @@ -86,6 +86,14 @@ struct dynamic_test{ >> bool support_sdma; >> }; >> >> +struct amdgpu_userq_bo { >> + amdgpu_bo_handle handle; >> + amdgpu_va_handle va_handle; >> + uint64_t mc_addr; >> + uint64_t size; >> + void *ptr; >> +}; >> + >> #define for_each_test(t, T) for(typeof(*T) *t = T; t->name; t++) >> >> /* set during execution */ >> @@ -141,6 +149,29 @@ struct amdgpu_ring_context { >> struct amdgpu_cs_ib_info ib_info; /* amdgpu_bo_list_create */ >> struct amdgpu_cs_request ibs_request; /* amdgpu_cs_query_fence_status */ >> struct amdgpu_cs_err_codes err_codes; >> + >> + /* User queue resources */ >> + struct amdgpu_userq_bo queue; >> + struct amdgpu_userq_bo shadow; >> + struct amdgpu_userq_bo doorbell; >> + struct amdgpu_userq_bo rptr; >> + struct amdgpu_userq_bo wptr; >> + struct amdgpu_userq_bo csa; >> + struct amdgpu_userq_bo eop; >> + >> + uint32_t *queue_cpu; >> + uint64_t *wptr_cpu; >> + uint64_t *doorbell_cpu; >> + >> + uint32_t db_handle; >> + uint32_t queue_id; >> + uint32_t npkt; >> + >> + uint32_t timeline_syncobj_handle; >> + uint64_t point; >> + bool user_queue; >> + >> + struct drm_amdgpu_info_device dev_info; >> }; >> >> >> -- >> 2.34.1 >> From Sunil.Khatri at amd.com Thu Jan 16 16:28:49 2025 From: Sunil.Khatri at amd.com (Khatri, Sunil) Date: Thu, 16 Jan 2025 16:28:49 +0000 Subject: [PATCH 3/8] lib/amdgpu: Add user mode queue support in ring context In-Reply-To: <23b97017-9074-44f3-9248-5341aedb7f2f@amd.com> References: <20250116065211.1882469-1-sunil.khatri@amd.com> <20250116065211.1882469-4-sunil.khatri@amd.com> <20250116115150.ma35lvddby7647it@kamilkon-desk.igk.intel.com> <23b97017-9074-44f3-9248-5341aedb7f2f@amd.com> Message-ID: [AMD Official Use Only - AMD Internal Distribution Only] Thanks Vitaly for responding to it. @Kamil Konieczny Libdrm changes have not been upstreamed yet and I missed that part and that?s the reason those undefined function failures are seen. Once we have the needed libdrm changes merged I will submit it again and hopefully it will pass. Regards Sunil khatri -----Original Message----- From: Prosyak, Vitaly Sent: Thursday, January 16, 2025 9:13 PM To: Kamil Konieczny ; Khatri, Sunil ; igt-dev at lists.freedesktop.org; Deucher, Alexander ; Koenig, Christian ; Prosyak, Vitaly ; Sharma, Shashank ; Strawbridge at rtg-sunil-navi33.amd.com; Strawbridge, Michael Subject: Re: [PATCH 3/8] lib/amdgpu: Add user mode queue support in ring context Hi Kamil, I have sent the review to Sunil, but we were using the internal review process. I believe Sunil is aware of the build failure, and we discussed how to address it. Until the build failure is resolved and the header is updated or the new code is guarded, we will not proceed with the merge. Thanks for your help! Vitaly On 2025-01-16 06:51, Kamil Konieczny wrote: > Hi Sunil, > On 2025-01-16 at 12:22:06 +0530, Sunil Khatri wrote: >> Add the meta data to support the user mode command submission in the >> ring_context. >> >> User mode command submission methods needs these resources to be >> initialized and to create/destroy queues. >> >> Also once we have the queue created the queue id is used to submit >> the work load to the h/w. >> >> Signed-off-by: Sunil Khatri >> Reviewed-by: Vitaly Prosyak vitaly.prosyak at amd.com> > Why do you send it here with r-b already added? > Was is sent in some previous series and got r-b on mailinglist? > I do not see any info about this in cover letter. > > Before merging please address build failures: > > see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1346611 for the overview. > > build:tests-debian-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69437776): > ../lib/amdgpu/amd_user_queue.c: In function ?amdgpu_user_queue_destroy?: > ../lib/amdgpu/amd_user_queue.c:183:6: error: implicit declaration of function ?amdgpu_free_userqueue?; did you mean ?amdgpu_open_devices?? [-Werror=implicit-function-declaration] > r = amdgpu_free_userqueue(device_handle, ctxt->queue_id); > ^~~~~~~~~~~~~~~~~~~~~ > amdgpu_open_devices > ../lib/amdgpu/amd_user_queue.c:183:6: warning: nested extern declaration of ?amdgpu_free_userqueue? [-Wnested-externs] > ../lib/amdgpu/amd_user_queue.c: In function ?amdgpu_user_queue_create?: > ../lib/amdgpu/amd_user_queue.c:387:7: error: implicit declaration of function ?amdgpu_create_userqueue?; did you mean ?amdgpu_cs_create_semaphore?? [-Werror=implicit-function-declaration] > r = amdgpu_create_userqueue(device_handle, AMDGPU_HW_IP_GFX, > ^~~~~~~~~~~~~~~~~~~~~~~ > amdgpu_cs_create_semaphore > ../lib/amdgpu/amd_user_queue.c:387:7: warning: nested extern declaration of ?amdgpu_create_userqueue? [-Wnested-externs] > cc1: some warnings being treated as errors > ninja: build stopped: subcommand failed. > section_end:1737012393:step_script > section_start:1737012393:cleanup_file_variables > Cleaning up project directory and file based variables > section_end:1737012394:cleanup_file_variables > ERROR: Job failed: exit code 1 > > Regards, > Kamil > >> --- >> lib/amdgpu/amd_ip_blocks.h | 31 +++++++++++++++++++++++++++++++ >> 1 file changed, 31 insertions(+) >> >> diff --git a/lib/amdgpu/amd_ip_blocks.h b/lib/amdgpu/amd_ip_blocks.h >> index dc4d87151..9d110d402 100644 >> --- a/lib/amdgpu/amd_ip_blocks.h >> +++ b/lib/amdgpu/amd_ip_blocks.h >> @@ -86,6 +86,14 @@ struct dynamic_test{ >> bool support_sdma; >> }; >> >> +struct amdgpu_userq_bo { >> + amdgpu_bo_handle handle; >> + amdgpu_va_handle va_handle; >> + uint64_t mc_addr; >> + uint64_t size; >> + void *ptr; >> +}; >> + >> #define for_each_test(t, T) for(typeof(*T) *t = T; t->name; t++) >> >> /* set during execution */ >> @@ -141,6 +149,29 @@ struct amdgpu_ring_context { >> struct amdgpu_cs_ib_info ib_info; /* amdgpu_bo_list_create */ >> struct amdgpu_cs_request ibs_request; /* amdgpu_cs_query_fence_status */ >> struct amdgpu_cs_err_codes err_codes; >> + >> + /* User queue resources */ >> + struct amdgpu_userq_bo queue; >> + struct amdgpu_userq_bo shadow; >> + struct amdgpu_userq_bo doorbell; >> + struct amdgpu_userq_bo rptr; >> + struct amdgpu_userq_bo wptr; >> + struct amdgpu_userq_bo csa; >> + struct amdgpu_userq_bo eop; >> + >> + uint32_t *queue_cpu; >> + uint64_t *wptr_cpu; >> + uint64_t *doorbell_cpu; >> + >> + uint32_t db_handle; >> + uint32_t queue_id; >> + uint32_t npkt; >> + >> + uint32_t timeline_syncobj_handle; >> + uint64_t point; >> + bool user_queue; >> + >> + struct drm_amdgpu_info_device dev_info; >> }; >> >> >> -- >> 2.34.1 >> From marcin.bernatowicz at linux.intel.com Thu Jan 16 19:29:04 2025 From: marcin.bernatowicz at linux.intel.com (Marcin Bernatowicz) Date: Thu, 16 Jan 2025 20:29:04 +0100 Subject: [PATCH v3 i-g-t 0/2] tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs Message-ID: <20250116192906.636031-1-marcin.bernatowicz@linux.intel.com> Introduce a new subtest flr-vfs-parallel to validate parallel FLR execution on all VFs. This subtest ensures correct behavior during simultaneous resets. Introduce the flr-twice subtest, which initiates FLR twice in parallel on the same VF. This subtest covers a use case where two FLRs can occur within a short time frame, such as when starting a QEMU VM with a passed VF. v2: Reintroduce condition to reinitialize test data only if more VFs remain to be tested (omitted when extracting execute_sequential_flr). v3: Introduce threaded FLR initiation to achieve better parallelism by mitigating 100ms reset delays.(Lukasz) Cc: Adam Miszczak Cc: Jakub Kolakowski Cc: Lukasz Laguna Cc: Micha? Wajdeczko Cc: Micha? Winiarski Cc: Narasimha C V Cc: Piotr Pi?rkowski Cc: Satyanarayana K V P Cc: Tomasz Lis Marcin Bernatowicz (2): tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs tests/intel/xe_sriov_flr: Add flr-twice subtest tests/intel/xe_sriov_flr.c | 230 +++++++++++++++++++++++++++++++++---- 1 file changed, 206 insertions(+), 24 deletions(-) -- 2.31.1 From marcin.bernatowicz at linux.intel.com Thu Jan 16 19:29:05 2025 From: marcin.bernatowicz at linux.intel.com (Marcin Bernatowicz) Date: Thu, 16 Jan 2025 20:29:05 +0100 Subject: [PATCH v3 i-g-t 1/2] tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs In-Reply-To: <20250116192906.636031-1-marcin.bernatowicz@linux.intel.com> References: <20250116192906.636031-1-marcin.bernatowicz@linux.intel.com> Message-ID: <20250116192906.636031-2-marcin.bernatowicz@linux.intel.com> Introduce a new subtest flr-vfs-parallel to validate parallel FLR execution on all VFs. This subtest ensures correct behavior during simultaneous resets. Refactor verify_flr to accept an execution strategy function pointer, allowing for both sequential and parallel FLR strategies. Update clear_tests to use the new execution strategy approach and modify existing subtests to utilize the sequential FLR strategy. v2: Reintroduce condition to reinitialize test data only if more VFs remain to be tested (omitted when extracting execute_sequential_flr). v3: Introduce threaded FLR initiation to achieve better parallelism by mitigating 100ms reset delays.(Lukasz) Signed-off-by: Marcin Bernatowicz Cc: Adam Miszczak Cc: Jakub Kolakowski Cc: Marcin Bernatowicz Cc: Micha? Wajdeczko Cc: Micha? Winiarski Cc: Narasimha C V Cc: Piotr Pi?rkowski Cc: Satyanarayana K V P Cc: Tomasz Lis --- tests/intel/xe_sriov_flr.c | 210 ++++++++++++++++++++++++++++++++----- 1 file changed, 186 insertions(+), 24 deletions(-) diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c index 550d58bb9..a8d35be31 100644 --- a/tests/intel/xe_sriov_flr.c +++ b/tests/intel/xe_sriov_flr.c @@ -4,6 +4,7 @@ */ #include +#include #include #include "drmtest.h" #include "igt_core.h" @@ -35,6 +36,11 @@ * Description: * Sequentially performs FLR on each VF to verify isolation and * clearing of LMEM, GGTT, and SCRATCH_REGS on the reset VF only. + * + * SUBTEST: flr-vfs-parallel + * Run type: FULL + * Description: + * Executes FLR on all VFs simultaneously to validate correct behavior during parallel resets. */ IGT_TEST_DESCRIPTION("Xe tests for SR-IOV VF FLR (Functional Level Reset)"); @@ -210,6 +216,26 @@ static void subchecks_report_results(struct subcheck *checks, int num_checks) igt_skip_on(skips == num_checks); } +/** + * flr_exec_strategy - Function pointer for FLR execution strategy + * @pf_fd: File descriptor for the Physical Function (PF). + * @num_vfs: Total number of Virtual Functions (VFs) to test. + * @checks: Array of subchecks. + * @num_checks: Number of subchecks. + * @wait_flr_ms: Time to wait (in milliseconds) for FLR to complete + * + * Defines a strategy for executing FLRs (Functional Level Resets) + * across multiple VFs. The strategy determines the order and + * manner (e.g., sequential or parallel) in which FLRs are performed. + * It is expected to initiate FLRs and handle related operations, + * such as verifying and preparing subchecks. + * + * Return: The ID of the last VF for which FLR was successfully initiated. + */ +typedef int (*flr_exec_strategy)(int pf_fd, int num_vfs, + struct subcheck *checks, int num_checks, + const int wait_flr_ms); + /** * verify_flr - Orchestrates the verification of Function Level Reset (FLR) * across multiple Virtual Functions (VFs). @@ -222,18 +248,20 @@ static void subchecks_report_results(struct subcheck *checks, int num_checks) * @num_vfs: Total number of Virtual Functions (VFs) to test. * @checks: Array of subchecks. * @num_checks: Number of subchecks. + * @flr_exec_strategy: Execution strategy for FLR (e.g., sequential or parallel). * * Detailed Workflow: * - Initializes and prepares VFs for testing. - * - Iterates through each VF, performing FLR, and verifies that only - * the reset VF is affected while others remain unchanged. - * - Reinitializes test data for the FLRed VF if there are more VFs to test. - * - Continues the process until all VFs are tested. - * - Handles any test failures or early exits, cleans up, and reports results. + * - Executes the FLR operation using the provided execution strategy + * (e.g., sequential or parallel) and validates that the reset VF behaves + * as expected. + * - Cleans up resources and reports results after all VFs have been tested + * or in the case of an early exit. * * A timeout is used to wait for FLR operations to complete. */ -static void verify_flr(int pf_fd, int num_vfs, struct subcheck *checks, int num_checks) +static void verify_flr(int pf_fd, int num_vfs, struct subcheck *checks, + int num_checks, flr_exec_strategy exec_strategy) { const int wait_flr_ms = 200; int i, vf_id, flr_vf_id = -1; @@ -242,6 +270,7 @@ static void verify_flr(int pf_fd, int num_vfs, struct subcheck *checks, int num_ igt_sriov_enable_vfs(pf_fd, num_vfs); if (igt_warn_on(!igt_sriov_device_reset_exists(pf_fd, 1))) goto disable_vfs; + /* Refresh PCI state */ if (igt_warn_on(igt_pci_system_reinit())) goto disable_vfs; @@ -257,14 +286,34 @@ static void verify_flr(int pf_fd, int num_vfs, struct subcheck *checks, int num_ if (no_subchecks_can_proceed(checks, num_checks)) goto cleanup; - flr_vf_id = 1; + /* Execute the chosen FLR strategy */ + flr_vf_id = exec_strategy(pf_fd, num_vfs, checks, num_checks, wait_flr_ms); + +cleanup: + for (i = 0; i < num_checks; ++i) + checks[i].cleanup(checks[i].data); + +disable_vfs: + igt_sriov_disable_vfs(pf_fd); + + if (flr_vf_id > 0 || no_subchecks_can_proceed(checks, num_checks)) + subchecks_report_results(checks, num_checks); + else + igt_skip("No checks executed\n"); +} + +static int execute_sequential_flr(int pf_fd, int num_vfs, + struct subcheck *checks, int num_checks, + const int wait_flr_ms) +{ + int i, vf_id, flr_vf_id = 1; do { if (igt_warn_on_f(!igt_sriov_device_reset(pf_fd, flr_vf_id), "Initiating VF%u FLR failed\n", flr_vf_id)) - goto cleanup; + break; - /* assume FLR is finished after wait_flr_ms */ + /* Assume FLR is finished after wait_flr_ms */ usleep(wait_flr_ms * 1000); for (vf_id = 1; vf_id <= num_vfs; ++vf_id) @@ -272,28 +321,132 @@ static void verify_flr(int pf_fd, int num_vfs, struct subcheck *checks, int num_ if (subcheck_can_proceed(&checks[i])) checks[i].verify_vf(vf_id, flr_vf_id, checks[i].data); - /* reinitialize test data for FLRed VF */ + /* Reinitialize test data for the FLRed VF */ if (flr_vf_id < num_vfs) for (i = 0; i < num_checks; ++i) if (subcheck_can_proceed(&checks[i])) checks[i].prepare_vf(flr_vf_id, checks[i].data); if (no_subchecks_can_proceed(checks, num_checks)) - goto cleanup; + break; } while (++flr_vf_id <= num_vfs); -cleanup: - for (i = 0; i < num_checks; ++i) - checks[i].cleanup(checks[i].data); + return flr_vf_id - 1; +} -disable_vfs: - igt_sriov_disable_vfs(pf_fd); +pthread_mutex_t signal_mutex = PTHREAD_MUTEX_INITIALIZER; +pthread_cond_t signal_cond = PTHREAD_COND_INITIALIZER; - if (flr_vf_id > 1 || no_subchecks_can_proceed(checks, num_checks)) - subchecks_report_results(checks, num_checks); - else - igt_skip("No checks executed\n"); +enum thread_signal { + SIGNAL_WAIT, + SIGNAL_START, + SIGNAL_SKIP +} thread_signal = SIGNAL_WAIT; + +struct flr_thread_data { + int pf_fd; + int vf_id; + int flr_instance; + int result; +}; + +static void *flr_thread(void *arg) +{ + struct flr_thread_data *data = (struct flr_thread_data *)arg; + + pthread_mutex_lock(&signal_mutex); + while (thread_signal == SIGNAL_WAIT) + pthread_cond_wait(&signal_cond, &signal_mutex); + pthread_mutex_unlock(&signal_mutex); + + if (thread_signal == SIGNAL_START && + igt_warn_on_f(!igt_sriov_device_reset(data->pf_fd, data->vf_id), + "Initiating VF%u FLR failed (flr_instance=%u)\n", + data->vf_id, data->flr_instance)) + data->result = -1; + + return NULL; +} + +static int execute_parallel_flr_(int pf_fd, int num_vfs, + struct subcheck *checks, + int num_checks, const int wait_flr_ms, + unsigned int num_flrs_per_vf) +{ + pthread_t threads[num_vfs * num_flrs_per_vf]; + struct flr_thread_data thread_data[num_vfs * num_flrs_per_vf]; + int vf_id = 0, last_vf_id = 0; + int i, j, k, created_threads = 0; + + igt_assert(num_flrs_per_vf > 0); + + for (i = 0; i < num_vfs; ++i) { + for (j = 0; j < num_flrs_per_vf; ++j) { + thread_data[created_threads].pf_fd = pf_fd; + thread_data[created_threads].vf_id = i + 1; // VF IDs are 1-based + thread_data[created_threads].flr_instance = j; + thread_data[created_threads].result = 0; + + if (pthread_create(&threads[created_threads], NULL, + flr_thread, + &thread_data[created_threads])) { + last_vf_id = i + 1; + + goto cleanup_threads; + } else { + created_threads++; + } + } + } + +cleanup_threads: + pthread_mutex_lock(&signal_mutex); + thread_signal = (created_threads == num_vfs * num_flrs_per_vf) ? + SIGNAL_START : + SIGNAL_SKIP; + pthread_cond_broadcast(&signal_cond); + pthread_mutex_unlock(&signal_mutex); + + for (i = 0; i < created_threads; ++i) + pthread_join(threads[i], NULL); + + if (last_vf_id) { + for (k = 0; k < num_checks; ++k) + set_skip_reason(checks[k].data, + "Thread creation failed for VF%u\n", last_vf_id); + return 0; + } + + /* Assume FLRs finished after wait_flr_ms */ + usleep(wait_flr_ms * 1000); + + /* Verify results */ + for (i = 0; i < created_threads; ++i) { + vf_id = thread_data[i].vf_id; + + /* Skip already checked VF or if the FLR initiation failed */ + if (vf_id == last_vf_id || thread_data[i].result != 0) + continue; + + for (k = 0; k < num_checks; ++k) + if (subcheck_can_proceed(&checks[k])) + checks[k].verify_vf(vf_id, vf_id, checks[k].data); + + if (no_subchecks_can_proceed(checks, num_checks)) + break; + + last_vf_id = vf_id; + } + + return last_vf_id; +} + +static int execute_parallel_flr(int pf_fd, int num_vfs, struct subcheck *checks, + int num_checks, const int wait_flr_ms) +{ + return execute_parallel_flr_(pf_fd, num_vfs, checks, num_checks, + wait_flr_ms, 1); } #define GEN12_VF_CAP_REG 0x1901f8 @@ -817,7 +970,7 @@ static void regs_subcheck_cleanup(struct subcheck_data *data) intel_register_access_fini(&rdata->mmio[i]); } -static void clear_tests(int pf_fd, int num_vfs) +static void clear_tests(int pf_fd, int num_vfs, flr_exec_strategy exec_strategy) { struct xe_mmio xemmio = { }; const unsigned int num_gts = xe_number_gt(pf_fd); @@ -882,7 +1035,7 @@ static void clear_tests(int pf_fd, int num_vfs) }; igt_assert_eq(i, num_checks); - verify_flr(pf_fd, num_vfs, checks, num_checks); + verify_flr(pf_fd, num_vfs, checks, num_checks, exec_strategy); } igt_main @@ -899,7 +1052,7 @@ igt_main igt_describe("Verify LMEM, GGTT, and SCRATCH_REGS are properly cleared after VF1 FLR"); igt_subtest("flr-vf1-clear") { - clear_tests(pf_fd, 1); + clear_tests(pf_fd, 1, execute_sequential_flr); } igt_describe("Perform sequential FLR on each VF, verifying that LMEM, GGTT, and SCRATCH_REGS are cleared only on the reset VF."); @@ -908,7 +1061,16 @@ igt_main igt_require(total_vfs > 1); - clear_tests(pf_fd, total_vfs > 3 ? 3 : total_vfs); + clear_tests(pf_fd, total_vfs > 3 ? 3 : total_vfs, execute_sequential_flr); + } + + igt_describe("Perform FLR on all VFs in parallel, ensuring correct behavior during simultaneous resets."); + igt_subtest("flr-vfs-parallel") { + unsigned int total_vfs = igt_sriov_get_total_vfs(pf_fd); + + igt_require(total_vfs > 1); + + clear_tests(pf_fd, total_vfs, execute_parallel_flr); } igt_fixture { -- 2.31.1 From marcin.bernatowicz at linux.intel.com Thu Jan 16 19:29:06 2025 From: marcin.bernatowicz at linux.intel.com (Marcin Bernatowicz) Date: Thu, 16 Jan 2025 20:29:06 +0100 Subject: [PATCH v3 i-g-t 2/2] tests/intel/xe_sriov_flr: Add flr-twice subtest In-Reply-To: <20250116192906.636031-1-marcin.bernatowicz@linux.intel.com> References: <20250116192906.636031-1-marcin.bernatowicz@linux.intel.com> Message-ID: <20250116192906.636031-3-marcin.bernatowicz@linux.intel.com> Introduce the `flr-twice` subtest, which initiates FLR twice in parallel on the same VF. This subtest covers a use case where two FLRs can occur within a short time frame, such as when starting a QEMU VM with a passed VF. Example log showing the behavior: [ 241.906514] vfio-pci 0000:00:02.1: resetting [ 241.907123] xe 0000:00:02.0: [drm] GT1: PF: VF1 FLR [ 241.907204] xe 0000:00:02.0: [drm] GT0: PF: VF1 FLR [ 242.013441] vfio-pci 0000:00:02.1: reset done [ 242.040918] vfio-pci 0000:00:02.1: resetting [ 242.041794] xe 0000:00:02.0: [drm] GT1: PF: VF1 FLR [ 242.041803] xe 0000:00:02.0: [drm:pf_enter_vf_flr_wip [xe]] GT1: PF: VF1 FLR is already in progress [ 242.042207] xe 0000:00:02.0: [drm] GT0: PF: VF1 FLR [ 242.042214] xe 0000:00:02.0: [drm:pf_enter_vf_flr_wip [xe]] GT0: PF: VF1 FLR is already in progress [ 242.149432] vfio-pci 0000:00:02.1: reset done Signed-off-by: Marcin Bernatowicz Cc: Adam Miszczak Cc: Jakub Kolakowski Cc: Marcin Bernatowicz Cc: Micha? Wajdeczko Cc: Micha? Winiarski Cc: Narasimha C V Cc: Piotr Pi?rkowski Cc: Satyanarayana K V P Cc: Tomasz Lis --- tests/intel/xe_sriov_flr.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c index a8d35be31..50f88fed4 100644 --- a/tests/intel/xe_sriov_flr.c +++ b/tests/intel/xe_sriov_flr.c @@ -41,6 +41,13 @@ * Run type: FULL * Description: * Executes FLR on all VFs simultaneously to validate correct behavior during parallel resets. + * + * SUBTEST: flr-twice + * Run type: FULL + * Description: + * Initiates FLR twice in parallel on the same VF to validate behavior + * when multiple resets occur within a short time frame, as seen in some + * real-world scenarios (e.g., when starting a QEMU VM with a passed VF). */ IGT_TEST_DESCRIPTION("Xe tests for SR-IOV VF FLR (Functional Level Reset)"); @@ -449,6 +456,14 @@ static int execute_parallel_flr(int pf_fd, int num_vfs, struct subcheck *checks, wait_flr_ms, 1); } +static int execute_parallel_flr_twice(int pf_fd, int num_vfs, + struct subcheck *checks, int num_checks, + const int wait_flr_ms) +{ + return execute_parallel_flr_(pf_fd, num_vfs, checks, num_checks, + wait_flr_ms, 2); +} + #define GEN12_VF_CAP_REG 0x1901f8 #define GGTT_PTE_TEST_FIELD_MASK GENMASK_ULL(19, 12) #define GGTT_PTE_ADDR_SHIFT 12 @@ -1073,6 +1088,11 @@ igt_main clear_tests(pf_fd, total_vfs, execute_parallel_flr); } + igt_describe("Initiate FLR twice in parallel on same VF."); + igt_subtest("flr-twice") { + clear_tests(pf_fd, 1, execute_parallel_flr_twice); + } + igt_fixture { igt_sriov_disable_vfs(pf_fd); /* abort to avoid execution of next tests with enabled VFs */ -- 2.31.1 From alan.previn.teres.alexis at intel.com Thu Jan 16 21:55:26 2025 From: alan.previn.teres.alexis at intel.com (Teres Alexis, Alan Previn) Date: Thu, 16 Jan 2025 21:55:26 +0000 Subject: [PATCH i-g-t v2 2/9] tests/intel/xe_vm: Update invalid flag subtest In-Reply-To: <20250116001951.4159243-3-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> <20250116001951.4159243-3-daniele.ceraolospurio@intel.com> Message-ID: <10debaf4405cf45996a80cbd18a6064123958634.camel@intel.com> Reviewed-by: Alan Previn On Wed, 2025-01-15 at 16:19 -0800, Daniele Ceraolo Spurio wrote: > PXP introduced a new valid flag, so we need to add it to the test and > shift the first invalid bit left by one. > > v2: only test the new flag if the kernel supports it. > > Signed-off-by: Daniele Ceraolo Spurio > --- > ?tests/intel/xe_vm.c | 25 ++++++++++++++++++++++++- > ?1 file changed, 24 insertions(+), 1 deletion(-) > > diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c > index 6ee3f4634..40e92d805 100644 > --- a/tests/intel/xe_vm.c > +++ b/tests/intel/xe_vm.c > @@ -2173,6 +2173,22 @@ test_mmap_style_bind(int fd, struct drm_xe_engine_class_instance *eci, > ????????xe_vm_destroy(fd, vm); > ?} > ? > +static bool pxp_interface_supported(int fd) > +{ > +???????struct drm_xe_device_query query = { > +???????????????.extensions = 0, > +???????????????.query = DRM_XE_DEVICE_QUERY_PXP_STATUS, > +???????????????.size = 0, > +???????????????.data = 0, > +???????}; > +???????int ret = 0; > + > +???????if (igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query)) > +???????????????ret = -errno; > + > +???????return ret != -EINVAL; > +} > + > ?/** > ? * SUBTEST: bind-flag-invalid > ? * Description: > @@ -2221,6 +2237,13 @@ static void bind_flag_invalid(int fd) > ????????igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL)); > ????????syncobj_reset(fd, &sync[0].handle, 1); > ? > +???????if (pxp_interface_supported(fd)) { > +???????????????bind.bind.flags = DRM_XE_VM_BIND_FLAG_CHECK_PXP; > +???????????????igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind); > +???????????????igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL)); > +???????????????syncobj_reset(fd, &sync[0].handle, 1); > +???????} > + > ????????bind.bind.flags = DRM_XE_VM_BIND_FLAG_NULL; > ????????bind.bind.obj = 0; > ????????igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind); > @@ -2234,7 +2257,7 @@ static void bind_flag_invalid(int fd) > ????????syncobj_reset(fd, &sync[0].handle, 1); > ? > ????????/* Using invalid flags should not work */ > -???????bind.bind.flags = 1 << 4; > +???????bind.bind.flags = 1 << 5; > ????????igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind); > ????????do_ioctl_err(fd, DRM_IOCTL_XE_VM_BIND, &bind, EINVAL); > ? From alan.previn.teres.alexis at intel.com Thu Jan 16 22:02:31 2025 From: alan.previn.teres.alexis at intel.com (Teres Alexis, Alan Previn) Date: Thu, 16 Jan 2025 22:02:31 +0000 Subject: [PATCH i-g-t v2 4/9] tests/intel/xe_create: Stop treating the extension field as MBZ In-Reply-To: <20250116001951.4159243-5-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> <20250116001951.4159243-5-daniele.ceraolospurio@intel.com> Message-ID: <7626a11d90ed144fce3125421632746059eceb68.camel@intel.com> Reviewed-by: Alan Previn On Wed, 2025-01-15 at 16:19 -0800, Daniele Ceraolo Spurio wrote: > A new extension for the xe_create ioctl was added to support PXP, so the > field is no longer expected to always be zero. > > Signed-off-by: Daniele Ceraolo Spurio > --- > ?tests/intel/xe_create.c | 5 ----- > ?1 file changed, 5 deletions(-) > > diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c > index 07e11036d..0907a8a8a 100644 > --- a/tests/intel/xe_create.c > +++ b/tests/intel/xe_create.c > @@ -127,11 +127,6 @@ static void create_invalid_mbz(int fd) > ????????gem_close(fd, create.handle); > ????????create.handle = 0; > ? > -???????/* No supported extensions yet */ > -???????create.extensions = -1; > -???????igt_assert_eq(__ioctl_create(fd, &create), -EINVAL); > -???????create.extensions = 0; > - > ????????/* Make sure KMD rejects non-zero padding/reserved fields */ > ????????for (i = 0; i < ARRAY_SIZE(create.pad); i++) { > ????????????????create.pad[i] = -1; From alan.previn.teres.alexis at intel.com Thu Jan 16 22:06:28 2025 From: alan.previn.teres.alexis at intel.com (Teres Alexis, Alan Previn) Date: Thu, 16 Jan 2025 22:06:28 +0000 Subject: [PATCH i-g-t v2 5/9] tests/intel/xe_exec_queue_property: Update first invalid property value In-Reply-To: <20250116001951.4159243-6-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> <20250116001951.4159243-6-daniele.ceraolospurio@intel.com> Message-ID: Reviewed-by: Alan Previn On Wed, 2025-01-15 at 16:19 -0800, Daniele Ceraolo Spurio wrote: > A new property was added with ID 2, so the invalid property testing > should start from ID 3. > > No new tests are added to test the new property as that will be > covered by the PXP tests. > > Signed-off-by: Daniele Ceraolo Spurio > --- > ?tests/intel/xe_exec_queue_property.c | 2 +- > ?1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/intel/xe_exec_queue_property.c b/tests/intel/xe_exec_queue_property.c > index 25a7e7abb..885d5bcc9 100644 > --- a/tests/intel/xe_exec_queue_property.c > +++ b/tests/intel/xe_exec_queue_property.c > @@ -183,7 +183,7 @@ static void invalid_property(int xe) > ? > ????????/* This will fail as soon as a new property is introduced. It is > ???????? * expected and the test will have to be updated. */ > -???????for (int i = 2; i < 16; i++ ) { > +???????for (int i = 3; i < 16; i++ ) { > ????????????????ext.property = i; > ????????????????igt_assert_eq(__xe_exec_queue_create(xe, vm, 1, 1, &instance, > ???????????????????????????????????????????????????? to_user_pointer(&ext), &exec_queue_id), -EINVAL); From alan.previn.teres.alexis at intel.com Thu Jan 16 22:16:31 2025 From: alan.previn.teres.alexis at intel.com (Teres Alexis, Alan Previn) Date: Thu, 16 Jan 2025 22:16:31 +0000 Subject: [PATCH i-g-t v2 6/9] tests/intel/xe_pxp: Add PXP object and queue creation tests In-Reply-To: <20250116001951.4159243-7-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> <20250116001951.4159243-7-daniele.ceraolospurio@intel.com> Message-ID: <464d657b9b12adc7c00a762f80fb03cc2a262753.camel@intel.com> Reviewed-by: Alan Previn On Wed, 2025-01-15 at 16:19 -0800, Ceraolo Spurio, Daniele wrote: > PXP support introduces new SET_PROPERTY extensions to both BOs and > exec_queues to mark them as being used for PXP workloads, so we need to > test both correct and incorrect usage of those new interfaces. > > Since this is the first usage of extensions for BO creation, the > common BO code has been update to support the extra parameter. > > v2: fix memory lead, remove unneeded igt_require (Alan) > > Signed-off-by: Daniele Ceraolo Spurio > Cc: Alan Previn > --- > ?lib/xe/xe_ioctl.c???? |? 14 +-- > ?lib/xe/xe_ioctl.h???? |?? 2 +- > ?tests/intel/xe_mmap.c |?? 1 + > ?tests/intel/xe_pxp.c? | 201 ++++++++++++++++++++++++++++++++++++++++++ > ?tests/meson.build???? |?? 1 + > ?5 files changed, 213 insertions(+), 6 deletions(-) > ?create mode 100644 tests/intel/xe_pxp.c > > diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c > index 6d8388918..01ab7c758 100644 > --- a/lib/xe/xe_ioctl.c > +++ b/lib/xe/xe_ioctl.c > @@ -264,7 +264,8 @@ static bool vram_selected(int fd, uint32_t selected_regions) > ?} > ? > ?static uint32_t ___xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t placement, > -???????????????????????????????uint32_t flags, uint16_t cpu_caching, uint32_t *handle) > +???????????????????????????????uint32_t flags, uint16_t cpu_caching, void *ext, > +???????????????????????????????uint32_t *handle) > ?{ > ????????struct drm_xe_gem_create create = { > ????????????????.vm_id = vm, > @@ -275,6 +276,9 @@ static uint32_t ___xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t pla > ????????}; > ????????int err; > ? > +???????if (ext) > +???????????????create.extensions = to_user_pointer(ext); > + > ????????/* > ???????? * In case vram_if_possible returned system_memory, > ???????? * visible VRAM cannot be requested through flags > @@ -292,11 +296,11 @@ static uint32_t ___xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t pla > ?} > ? > ?uint32_t __xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t placement, > -???????????????????????uint32_t flags, uint32_t *handle) > +???????????????????????uint32_t flags, void *ext, uint32_t *handle) > ?{ > ????????uint16_t cpu_caching = __xe_default_cpu_caching(fd, placement, flags); > ? > -???????return ___xe_bo_create(fd, vm, size, placement, flags, cpu_caching, handle); > +???????return ___xe_bo_create(fd, vm, size, placement, flags, cpu_caching, ext, handle); > ?} > ? > ?uint32_t xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t placement, > @@ -304,7 +308,7 @@ uint32_t xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t placement, > ?{ > ????????uint32_t handle; > ? > -???????igt_assert_eq(__xe_bo_create(fd, vm, size, placement, flags, &handle), 0); > +???????igt_assert_eq(__xe_bo_create(fd, vm, size, placement, flags, NULL, &handle), 0); > ? > ????????return handle; > ?} > @@ -312,7 +316,7 @@ uint32_t xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t placement, > ?uint32_t __xe_bo_create_caching(int fd, uint32_t vm, uint64_t size, uint32_t placement, > ????????????????????????????????uint32_t flags, uint16_t cpu_caching, uint32_t *handle) > ?{ > -???????return ___xe_bo_create(fd, vm, size, placement, flags, cpu_caching, handle); > +???????return ___xe_bo_create(fd, vm, size, placement, flags, cpu_caching, NULL, handle); > ?} > ? > ?uint32_t xe_bo_create_caching(int fd, uint32_t vm, uint64_t size, uint32_t placement, > diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h > index 18cc2b72b..c8a2d81c5 100644 > --- a/lib/xe/xe_ioctl.h > +++ b/lib/xe/xe_ioctl.h > @@ -67,7 +67,7 @@ void xe_vm_unbind_all_async(int fd, uint32_t vm, uint32_t exec_queue, > ??????????????????????????? uint32_t num_syncs); > ?void xe_vm_destroy(int fd, uint32_t vm); > ?uint32_t __xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t placement, > -???????????????????????uint32_t flags, uint32_t *handle); > +???????????????????????uint32_t flags, void *ext, uint32_t *handle); > ?uint32_t xe_bo_create(int fd, uint32_t vm, uint64_t size, uint32_t placement, > ????????????????????? uint32_t flags); > ?uint32_t __xe_bo_create_caching(int fd, uint32_t vm, uint64_t size, uint32_t placement, > diff --git a/tests/intel/xe_mmap.c b/tests/intel/xe_mmap.c > index 72dc16fc7..5fd641075 100644 > --- a/tests/intel/xe_mmap.c > +++ b/tests/intel/xe_mmap.c > @@ -298,6 +298,7 @@ static void test_small_bar(int fd) > ????????igt_assert_neq(__xe_bo_create(fd, 0, visible_size + page_size, > ????????????????????????????????????? vram_memory(fd, 0), > ????????????????????????????????????? DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM, > +???????????????????????????????????? NULL, > ????????????????????????????????????? &bo), > ?????????????????????? 0); > ? > diff --git a/tests/intel/xe_pxp.c b/tests/intel/xe_pxp.c > new file mode 100644 > index 000000000..234fa8782 > --- /dev/null > +++ b/tests/intel/xe_pxp.c > @@ -0,0 +1,201 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright ? 2024 Intel Corporation > + */ > + > +#include "igt.h" > +#include "xe_drm.h" > +#include "xe/xe_ioctl.h" > +#include "xe/xe_query.h" > + > +IGT_TEST_DESCRIPTION("Test PXP that manages protected content through arbitrated HW-PXP-session"); > +/* Note: PXP = "Protected Xe Path" */ > + > +/** > + * TEST: Test PXP functionality > + * Category: Content protection > + * Mega feature: PXP > + * Sub-category: PXP tests > + * Functionality: Execution of protected content > + * Test category: functionality test > + */ > + > +static int __pxp_bo_create(int fd, uint32_t vm, uint64_t size, > +????????????????????????? uint32_t session_type, uint32_t *handle) > +{ > +???????struct drm_xe_ext_set_property ext = { > +???????????????.base.next_extension = 0, > +???????????????.base.name = DRM_XE_GEM_CREATE_EXTENSION_SET_PROPERTY, > +???????????????.property = DRM_XE_GEM_CREATE_SET_PROPERTY_PXP_TYPE, > +???????????????.value = session_type, > +???????}; > +???????int ret = 0; > + > +???????if (__xe_bo_create(fd, vm, size, system_memory(fd), 0, &ext, handle)) { > +???????????????ret = -errno; > +???????????????errno = 0; > +???????} > + > +???????return ret; > +} > + > +static int __create_pxp_rcs_queue(int fd, uint32_t vm, > +???????????????????????????????? uint32_t session_type, > +???????????????????????????????? uint32_t *q) > +{ > +???????struct drm_xe_engine_class_instance inst = { > +???????????????.engine_class = DRM_XE_ENGINE_CLASS_RENDER, > +???????}; > +???????struct drm_xe_ext_set_property ext = { 0 }; > +???????uint64_t ext_ptr = to_user_pointer(&ext); > + > +???????ext.base.next_extension = 0, > +???????ext.base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, > +???????ext.property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PXP_TYPE, > +???????ext.value = session_type; > + > +???????return __xe_exec_queue_create(fd, vm, 1, 1, &inst, ext_ptr, q); > +} > + > +static int query_pxp_status(int fd) > +{ > +???????struct drm_xe_query_pxp_status *pxp_query; > +???????struct drm_xe_device_query query = { > +???????????????.extensions = 0, > +???????????????.query = DRM_XE_DEVICE_QUERY_PXP_STATUS, > +???????????????.size = 0, > +???????????????.data = 0, > +???????}; > +???????int ret; > + > +???????if (igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query)) > +???????????????return -errno; > + > +???????pxp_query = malloc(query.size); > +???????igt_assert(pxp_query); > +???????memset(pxp_query, 0, query.size); > + > +???????query.data = to_user_pointer(pxp_query); > + > +???????if (igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query)) > +???????????????ret = -errno; > +???????else > +???????????????ret = pxp_query->status; > + > +???????free(pxp_query); > + > +???????return ret; > +} > + > +static bool is_pxp_hw_supported(int fd) > +{ > +???????int pxp_status; > +???????int i = 0; > + > +???????/* PXP init completes after driver init, so we might have to wait for it */ > +???????while (i++ < 50) { > +???????????????pxp_status = query_pxp_status(fd); > + > +???????????????/* -EINVAL means the PXP interface is not available */ > +???????????????igt_require(pxp_status != -EINVAL); > + > +???????????????/* -ENODEV means PXP not supported or disabled */ > +???????????????if (pxp_status == -ENODEV) > +???????????????????????return false; > + > +???????????????/* status 1 means pxp is ready */ > +???????????????if (pxp_status == 1) > +???????????????????????return true; > + > +???????????????/* > +??????????????? * 0 means init still in progress, any other remaining state > +??????????????? * is an error > +??????????????? */ > +???????????????igt_assert_eq(pxp_status, 0); > + > +???????????????usleep(50*1000); > +???????} > + > +???????igt_assert_f(0, "PXP failed to initialize within the timeout\n"); > +???????return false; > +} > + > +/** > + * SUBTEST: pxp-bo-alloc > + * Description: Verify PXP bo allocation works as expected > + */ > +static void test_pxp_bo_alloc(int fd, bool pxp_supported) > +{ > +???????uint32_t bo; > +???????int ret; > + > +???????/* BO creation with DRM_XE_PXP_TYPE_NONE must always succeed */ > +???????ret = __pxp_bo_create(fd, 0, 4096, DRM_XE_PXP_TYPE_NONE, &bo); > +???????igt_assert_eq(ret, 0); > +???????gem_close(fd, bo); > + > +???????/* BO creation with DRM_XE_PXP_TYPE_HWDRM must only succeed if PXP is supported */ > +???????ret = __pxp_bo_create(fd, 0, 4096, DRM_XE_PXP_TYPE_HWDRM, &bo); > +???????igt_assert_eq(ret, pxp_supported ? 0 : -ENODEV); > +???????if (!ret) > +???????????????gem_close(fd, bo); > + > +???????/* BO creation with an invalid type must always fail */ > +???????ret = __pxp_bo_create(fd, 0, 4096, 0xFF, &bo); > +???????igt_assert_eq(ret, -EINVAL); > +} > + > +/** > + * SUBTEST: pxp-queue-alloc > + * Description: Verify PXP exec queue creation works as expected > + */ > +static void test_pxp_queue_creation(int fd, bool pxp_supported) > +{ > +???????uint32_t q; > +???????uint32_t vm; > +???????int ret; > + > +???????vm = xe_vm_create(fd, 0, 0); > + > +???????/* queue creation with DRM_XE_PXP_TYPE_NONE must always succeed */ > +???????ret = __create_pxp_rcs_queue(fd, vm, DRM_XE_PXP_TYPE_NONE, &q); > +???????igt_assert_eq(ret, 0); > +???????xe_exec_queue_destroy(fd, q); > + > +???????/* queue creation with DRM_XE_PXP_TYPE_HWDRM must only succeed if PXP is supported */ > +???????ret = __create_pxp_rcs_queue(fd, vm, DRM_XE_PXP_TYPE_HWDRM, &q); > +???????igt_assert_eq(ret, pxp_supported ? 0 : -ENODEV); > +???????if (!ret) > +???????????????xe_exec_queue_destroy(fd, q); > + > +???????/* queue creation with an invalid type must always fail */ > +???????ret = __create_pxp_rcs_queue(fd, vm, 0xFF, &q); > +???????igt_assert_eq(ret, -EINVAL); > + > +???????xe_vm_destroy(fd, vm); > +} > + > +igt_main > +{ > +???????int xe_fd = -1; > +???????bool pxp_supported = true; > + > +???????igt_fixture { > +???????????????xe_fd = drm_open_driver(DRIVER_XE); > +???????????????igt_require(xe_has_engine_class(xe_fd, DRM_XE_ENGINE_CLASS_RENDER)); > +???????????????pxp_supported = is_pxp_hw_supported(xe_fd); > +???????} > + > +???????igt_subtest_group { > +???????????????igt_describe("Verify PXP allocations work as expected"); > +???????????????igt_subtest("pxp-bo-alloc") > +???????????????test_pxp_bo_alloc(xe_fd, pxp_supported); > + > +???????????????igt_subtest("pxp-queue-alloc") > +???????????????test_pxp_queue_creation(xe_fd, pxp_supported); > +???????} > + > +???????igt_fixture { > +???????????????close(xe_fd); > +???????} > +} > diff --git a/tests/meson.build b/tests/meson.build > index a6750d523..09adf0394 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -311,6 +311,7 @@ intel_xe_progs = [ > ????????'xe_pm', > ????????'xe_pm_residency', > ????????'xe_prime_self_import', > +???????'xe_pxp', > ????????'xe_query', > ????????'xe_render_copy', > ????????'xe_vm', > -- > 2.43.0 > From umesh.nerlige.ramappa at intel.com Thu Jan 16 22:52:00 2025 From: umesh.nerlige.ramappa at intel.com (Umesh Nerlige Ramappa) Date: Thu, 16 Jan 2025 14:52:00 -0800 Subject: [PATCH i-g-t] tests/perf_pmu: Fix busy-double-start for GuC backend Message-ID: <20250116225200.158728-1-umesh.nerlige.ramappa@intel.com> On GuC-based platforms, backend could switch work at a very fast rate determined by "timeslice_duration_ms". For a default value of 1 ms, the switching latencies could add up really quickly over the test duration. Choose a reasonable timeslice for this test so that expected and actual busyness is within acceptable threshold. A 5ms timeslice works well for this specific use case. Signed-off-by: Umesh Nerlige Ramappa --- tests/intel/perf_pmu.c | 48 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/tests/intel/perf_pmu.c b/tests/intel/perf_pmu.c index 5d0467c02..1c0bafe82 100644 --- a/tests/intel/perf_pmu.c +++ b/tests/intel/perf_pmu.c @@ -441,6 +441,33 @@ busy_start(int gem_fd, const intel_ctx_t *ctx, gem_quiescent_gpu(gem_fd); } +static void set_timeslice(int cs, unsigned int value) +{ + unsigned int delay; + + igt_debug("setting timeslice to %u ms\n", value); + igt_assert_lte(0, igt_sysfs_printf(cs, "timeslice_duration_ms", "%u", value)); + igt_sysfs_scanf(cs, "timeslice_duration_ms", "%u", &delay); + igt_assert_eq(delay, value); +} + +static int timeslice_fd(int fd, const struct intel_execution_engine2 *e) +{ + int sys, cs = -1; + char buf[32]; + + sys = igt_sysfs_open(fd); + igt_require(sys != -1); + + snprintf(buf, sizeof(buf), "engine/%s", e->name); + cs = openat(sys, buf, O_RDONLY); + igt_require(cs != -1); + + close(sys); + + return cs; +} + /* * This test has a potentially low rate of catching the issue it is trying to * catch. Or in other words, quite high rate of false negative successes. We @@ -456,6 +483,22 @@ busy_double_start(int gem_fd, const intel_ctx_t *ctx, const intel_ctx_t *tmp_ctx; int fd; uint64_t ahnd = get_reloc_ahnd(gem_fd, ctx->id), ahndN; + unsigned int saved, cs; + + /* + * On GuC-based platforms, backend could switch work at a very fast rate + * determined by "timeslice_duration_ms". For a default value of 1 ms, + * the switching latencies could add up really quickly over the test + * duration. Choose a reasonable timeslice for this test so that + * expected and actual busyness is within acceptable threshold. A 5ms + * timeslice works well for this specific use case. + */ + if (gem_using_guc_submission(gem_fd)) { + cs = timeslice_fd(gem_fd, e); + igt_assert(igt_sysfs_scanf(cs, "timeslice_duration_ms", "%u", &saved) == 1); + igt_debug("initial timeslice %u ms\n", saved); + set_timeslice(cs, 5); + } tmp_ctx = intel_ctx_create(gem_fd, &ctx->cfg); ahndN = get_reloc_ahnd(gem_fd, tmp_ctx->id); @@ -510,6 +553,11 @@ busy_double_start(int gem_fd, const intel_ctx_t *ctx, put_ahnd(ahnd); put_ahnd(ahndN); + if (gem_using_guc_submission(gem_fd)) { + set_timeslice(cs, saved); + close(cs); + } + assert_within_epsilon(val, ts[1] - ts[0], tolerance); igt_assert_eq(val2, 0); -- 2.43.0 From ashutosh.dixit at intel.com Fri Jan 17 00:54:24 2025 From: ashutosh.dixit at intel.com (Ashutosh Dixit) Date: Thu, 16 Jan 2025 16:54:24 -0800 Subject: [PATCH v2 i-g-t] tests/intel/xe_oa: Extend non-zero-reason test Message-ID: <20250117005424.3038122-1-ashutosh.dixit@intel.com> From: Sai Teja Pottumuttu Extend non-zero-reason test to use configurable OA buffer sizes and execute the test for three different sizes 8,16 and 32MB. v2 (Ashutosh): - Define and use __for_one_hwe_in_oag_w_arg - Introduce and use 'oau' variable at igt_main scope for parsing capabilities Reviewed-by: Ashutosh Dixit Signed-off-by: Ashutosh Dixit Signed-off-by: Sai Teja Pottumuttu --- tests/intel/xe_oa.c | 31 +++++++++++++++++++++++++------ 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c index 492a6b5d64..8d2ebcdcaa 100644 --- a/tests/intel/xe_oa.c +++ b/tests/intel/xe_oa.c @@ -2504,7 +2504,7 @@ again_1: * Description: Test reason field is non-zero. Can also check OA buffer wraparound issues */ static void -test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) +test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe, size_t oa_buffer_size) { /* ~20 micro second period */ int oa_exponent = max_oa_exponent_for_period_lte(20000); @@ -2522,6 +2522,7 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(fmt), DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, oa_exponent, DRM_XE_OA_PROPERTY_OA_ENGINE_INSTANCE, hwe->engine_instance, + DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, oa_buffer_size, }; struct intel_xe_oa_open_prop param = { .num_properties = ARRAY_SIZE(properties) / 2, @@ -2541,6 +2542,9 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) load_helper_init(); load_helper_run(HIGH); + if (!oa_buffer_size) + param.num_properties = param.num_properties - 1; + stream_fd = __perf_open(drm_fd, ¶m, true /* prevent_pm */); set_fd_flags(stream_fd, O_CLOEXEC); @@ -4762,6 +4766,11 @@ static const char *xe_engine_class_name(uint32_t engine_class) igt_dynamic_f("%s-%d", xe_engine_class_name(hwe->engine_class), \ hwe->engine_instance) +#define __for_one_hwe_in_oag_w_arg(hwe, str) \ + if ((hwe = oa_unit_engine(drm_fd, 0))) \ + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class), \ + hwe->engine_instance, str) + #define __for_one_render_engine_0(hwe) \ xe_for_each_engine(drm_fd, hwe) \ if (hwe->engine_class == DRM_XE_ENGINE_CLASS_RENDER) \ @@ -4796,6 +4805,7 @@ igt_main { NULL }, }; struct drm_xe_engine_class_instance *hwe = NULL; + struct drm_xe_oa_unit *oau; struct xe_device *xe_dev; igt_fixture { @@ -4825,6 +4835,7 @@ igt_main /* See xe_query_oa_units_new() */ igt_require(xe_dev->oa_units); + oau = nth_oa_unit(drm_fd, 0); devid = intel_get_drm_devid(drm_fd); sysfs = igt_sysfs_open(drm_fd); @@ -4867,8 +4878,19 @@ igt_main test_buffer_fill(hwe); igt_subtest_with_dynamic("non-zero-reason") { - __for_one_hwe_in_oag(hwe) - test_non_zero_reason(hwe); + if (oau->capabilities & DRM_XE_OA_CAPS_OA_BUFFER_SIZE) { + __for_one_hwe_in_oag_w_arg(hwe, "8M") + test_non_zero_reason(hwe, SZ_8M); + + __for_one_hwe_in_oag_w_arg(hwe, "16M") + test_non_zero_reason(hwe, SZ_16M); + + __for_one_hwe_in_oag_w_arg(hwe, "32M") + test_non_zero_reason(hwe, SZ_32M); + } else { + __for_one_hwe_in_oag_w_arg(hwe, "default") + test_non_zero_reason(hwe, 0); + } } igt_subtest("disabled-read-error") @@ -4999,9 +5021,6 @@ igt_main igt_subtest_group { igt_fixture { - struct drm_xe_query_oa_units *qoa = xe_oa_units(drm_fd); - struct drm_xe_oa_unit *oau = (struct drm_xe_oa_unit *)&qoa->oa_units[0]; - igt_require(oau->capabilities & DRM_XE_OA_CAPS_SYNCS); } -- 2.47.1 From ashutosh.dixit at intel.com Fri Jan 17 00:58:31 2025 From: ashutosh.dixit at intel.com (Dixit, Ashutosh) Date: Thu, 16 Jan 2025 16:58:31 -0800 Subject: [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Extend non-zero-reason test In-Reply-To: <20250116135456.4066677-2-sai.teja.pottumuttu@intel.com> References: <20250116135456.4066677-1-sai.teja.pottumuttu@intel.com> <20250116135456.4066677-2-sai.teja.pottumuttu@intel.com> Message-ID: <85o706dzns.wl-ashutosh.dixit@intel.com> On Thu, 16 Jan 2025 05:54:56 -0800, Sai Teja Pottumuttu wrote: > Hi Sai Teja, > Extend non-zero-reason test to use configurable OA buffer sizes and > execute the test for three different sizes 8,16 and 32MB. I made a few changes to the patch and posted a v2. Please take a look. I have tested these changes, so no need to test again. A single patch generally doesn't need a cover letter. I am seeing consistent failures with 32 MB OA buffer size (reason seems to 0 somehow) on Xe1. Did you see these failures on Xe2? So I think we should drop the 32 MB size test. Rest looks good and I have R-b'd the v2. If you like my changes you can R-b v2 too :-) Thanks. -- Ashutosh > > Signed-off-by: Sai Teja Pottumuttu > --- > tests/intel/xe_oa.c | 30 +++++++++++++++++++++++++++--- > 1 file changed, 27 insertions(+), 3 deletions(-) > > diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c > index 492a6b5d6..f28156a66 100644 > --- a/tests/intel/xe_oa.c > +++ b/tests/intel/xe_oa.c > @@ -2504,7 +2504,7 @@ again_1: > * Description: Test reason field is non-zero. Can also check OA buffer wraparound issues > */ > static void > -test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) > +test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe, size_t oa_buffer_size) > { > /* ~20 micro second period */ > int oa_exponent = max_oa_exponent_for_period_lte(20000); > @@ -2522,6 +2522,7 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) > DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(fmt), > DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, oa_exponent, > DRM_XE_OA_PROPERTY_OA_ENGINE_INSTANCE, hwe->engine_instance, > + DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, oa_buffer_size, > }; > struct intel_xe_oa_open_prop param = { > .num_properties = ARRAY_SIZE(properties) / 2, > @@ -2541,6 +2542,9 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) > load_helper_init(); > load_helper_run(HIGH); > > + if (!oa_buffer_size) > + param.num_properties = param.num_properties - 1; > + > stream_fd = __perf_open(drm_fd, ¶m, true /* prevent_pm */); > set_fd_flags(stream_fd, O_CLOEXEC); > > @@ -4867,8 +4871,28 @@ igt_main > test_buffer_fill(hwe); > > igt_subtest_with_dynamic("non-zero-reason") { > - __for_one_hwe_in_oag(hwe) > - test_non_zero_reason(hwe); > + struct drm_xe_query_oa_units *qoa = xe_oa_units(drm_fd); > + struct drm_xe_oa_unit *oau = (struct drm_xe_oa_unit *)&qoa->oa_units[0]; > + > + if (oau->capabilities & DRM_XE_OA_CAPS_OA_BUFFER_SIZE) { > + hwe = oa_unit_engine(drm_fd, 0); > + if (hwe) { > + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class), > + hwe->engine_instance, "8MB") > + test_non_zero_reason(hwe, SZ_8M); > + > + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class), > + hwe->engine_instance, "16MB") > + test_non_zero_reason(hwe, SZ_16M); > + > + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class), > + hwe->engine_instance, "32MB") > + test_non_zero_reason(hwe, SZ_32M); > + } > + } else { > + __for_one_hwe_in_oag(hwe) > + test_non_zero_reason(hwe, 0); > + } > } > > igt_subtest("disabled-read-error") > -- > 2.34.1 > From ashutosh.dixit at intel.com Fri Jan 17 01:00:41 2025 From: ashutosh.dixit at intel.com (Dixit, Ashutosh) Date: Thu, 16 Jan 2025 17:00:41 -0800 Subject: [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Extend non-zero-reason test In-Reply-To: <85o706dzns.wl-ashutosh.dixit@intel.com> References: <20250116135456.4066677-1-sai.teja.pottumuttu@intel.com> <20250116135456.4066677-2-sai.teja.pottumuttu@intel.com> <85o706dzns.wl-ashutosh.dixit@intel.com> Message-ID: <85msfqdzk6.wl-ashutosh.dixit@intel.com> On Thu, 16 Jan 2025 16:58:31 -0800, Dixit, Ashutosh wrote: > > On Thu, 16 Jan 2025 05:54:56 -0800, Sai Teja Pottumuttu wrote: > > > > Hi Sai Teja, > > > Extend non-zero-reason test to use configurable OA buffer sizes and > > execute the test for three different sizes 8,16 and 32MB. > > I made a few changes to the patch and posted a v2. Please take a look. I > have tested these changes, so no need to test again. > > A single patch generally doesn't need a cover letter. > > I am seeing consistent failures with 32 MB OA buffer size (reason seems to > 0 somehow) on Xe1. Did you see these failures on Xe2? So I think we should > drop the 32 MB size test. > > Rest looks good and I have R-b'd the v2. If you like my changes you can R-b > v2 too :-) v2 seems to have ended here: https://patchwork.freedesktop.org/series/143640/ because I didn't include the cover letter. Sorry! > > Thanks. > -- > Ashutosh > > > > > > Signed-off-by: Sai Teja Pottumuttu > > --- > > tests/intel/xe_oa.c | 30 +++++++++++++++++++++++++++--- > > 1 file changed, 27 insertions(+), 3 deletions(-) > > > > diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c > > index 492a6b5d6..f28156a66 100644 > > --- a/tests/intel/xe_oa.c > > +++ b/tests/intel/xe_oa.c > > @@ -2504,7 +2504,7 @@ again_1: > > * Description: Test reason field is non-zero. Can also check OA buffer wraparound issues > > */ > > static void > > -test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) > > +test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe, size_t oa_buffer_size) > > { > > /* ~20 micro second period */ > > int oa_exponent = max_oa_exponent_for_period_lte(20000); > > @@ -2522,6 +2522,7 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) > > DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(fmt), > > DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, oa_exponent, > > DRM_XE_OA_PROPERTY_OA_ENGINE_INSTANCE, hwe->engine_instance, > > + DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, oa_buffer_size, > > }; > > struct intel_xe_oa_open_prop param = { > > .num_properties = ARRAY_SIZE(properties) / 2, > > @@ -2541,6 +2542,9 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe) > > load_helper_init(); > > load_helper_run(HIGH); > > > > + if (!oa_buffer_size) > > + param.num_properties = param.num_properties - 1; > > + > > stream_fd = __perf_open(drm_fd, ¶m, true /* prevent_pm */); > > set_fd_flags(stream_fd, O_CLOEXEC); > > > > @@ -4867,8 +4871,28 @@ igt_main > > test_buffer_fill(hwe); > > > > igt_subtest_with_dynamic("non-zero-reason") { > > - __for_one_hwe_in_oag(hwe) > > - test_non_zero_reason(hwe); > > + struct drm_xe_query_oa_units *qoa = xe_oa_units(drm_fd); > > + struct drm_xe_oa_unit *oau = (struct drm_xe_oa_unit *)&qoa->oa_units[0]; > > + > > + if (oau->capabilities & DRM_XE_OA_CAPS_OA_BUFFER_SIZE) { > > + hwe = oa_unit_engine(drm_fd, 0); > > + if (hwe) { > > + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class), > > + hwe->engine_instance, "8MB") > > + test_non_zero_reason(hwe, SZ_8M); > > + > > + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class), > > + hwe->engine_instance, "16MB") > > + test_non_zero_reason(hwe, SZ_16M); > > + > > + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class), > > + hwe->engine_instance, "32MB") > > + test_non_zero_reason(hwe, SZ_32M); > > + } > > + } else { > > + __for_one_hwe_in_oag(hwe) > > + test_non_zero_reason(hwe, 0); > > + } > > } > > > > igt_subtest("disabled-read-error") > > -- > > 2.34.1 > > From tejasreex.illipilli at intel.com Fri Jan 17 03:43:15 2025 From: tejasreex.illipilli at intel.com (Illipilli, TejasreeX) Date: Fri, 17 Jan 2025 03:43:15 +0000 Subject: =?utf-8?B?UkU6IOKclyBpOTE1LkNJLkJBVDogZmFpbHVyZSBmb3IgSW5pdGlhbCBQVEwg?= =?utf-8?Q?support_(rev6)?= In-Reply-To: <20250115151604.uddp3le3gtmfzoic@kamilkon-desk.igk.intel.com> References: <20241218213654.2734573-1-clinton.a.taylor@intel.com> <173643279483.1645445.6728014542556156152@b555e5b46a47> <20250115151604.uddp3le3gtmfzoic@kamilkon-desk.igk.intel.com> Message-ID: Hi, https://patchwork.freedesktop.org/series/141325/ - Re-reported. Xe.CI.Full - Addressed failures, Xe cannot be re-reported. i915.CI.BAT - Re-reported. Thanks, Tejasree -----Original Message----- From: I915-ci-infra On Behalf Of Kamil Konieczny Sent: Wednesday, January 15, 2025 8:46 PM To: igt-dev at lists.freedesktop.org Cc: Taylor, Clinton A ; I915-ci-infra at lists.freedesktop.org Subject: Re: ? i915.CI.BAT: failure for Initial PTL support (rev6) Hi igt-dev, On 2025-01-09 at 14:26:34 -0000, Patchwork wrote: below regressions are unrelated, please re-report and respin i915 tests. Regards, Kamil > == Series Details == > > Series: Initial PTL support (rev6) > URL : https://patchwork.freedesktop.org/series/141325/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_8183 -> IGTPW_12418 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12418 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12418, 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_12418/index.html > > Participating hosts (38 -> 37) > ------------------------------ > > Missing (1): fi-snb-2520m > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12418: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at core_hotunplug@unbind-rebind: > - fi-cfl-guc: [PASS][1] -> [ABORT][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/fi-cfl-guc/igt at core_hotunplug@unbind-rebind.html > [2]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/fi-cfl-guc/igt at co > re_hotunplug at unbind-rebind.html > > * igt at i915_selftest@live at gt_heartbeat: > - bat-arlh-2: [PASS][3] -> [INCOMPLETE][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-arlh-2/igt at i915_selftest@live at gt_heartbeat.html > [4]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-arlh-2/igt at i9 > 15_selftest at live@gt_heartbeat.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_12418 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt at i915_selftest@live: > - bat-arlh-2: [PASS][5] -> [INCOMPLETE][6] ([i915#13050]) > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-arlh-2/igt at i915_selftest@live.html > [6]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-arlh-2/igt at i9 > 15_selftest at live.html > > * igt at i915_selftest@live at workarounds: > - 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_8183/bat-arls-5/igt at i915_selftest@live at workarounds.html > [8]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-arls-5/igt at i9 > 15_selftest at live@workarounds.html > > * igt at runner@aborted: > - fi-pnv-d510: NOTRUN -> [FAIL][9] ([i915#13350]) > [9]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/fi-pnv-d510/igt at r > unner at aborted.html > > > #### Possible fixes #### > > * igt at i915_selftest@live at workarounds: > - {bat-mtlp-9}: [DMESG-FAIL][10] ([i915#13393]) -> [PASS][11] +1 other test pass > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/bat-mtlp-9/igt at i915_selftest@live at workarounds.html > [11]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/bat-mtlp-9/igt at i9 > 15_selftest at live@workarounds.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [i915#13050]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13050 > [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_8183 -> IGTPW_12418 > > CI-20190529: 20190529 > CI_DRM_15929: 14e0c4a8247c9514dc57b2231602fb6d9455802b @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_12418: 23052ace3ac04fd0203b573736255ba4919c63d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8183: b2dbc6f22815128c0dd5c737504f42e1f1a6ad62 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > == Logs == > > For more details see: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/index.html From patchwork at emeril.freedesktop.org Fri Jan 17 04:00:47 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 04:00:47 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Add_test_for_configurable_O?= =?utf-8?q?A_buffer_size_=28rev2=29?= In-Reply-To: <20250116135456.4066677-1-sai.teja.pottumuttu@intel.com> References: <20250116135456.4066677-1-sai.teja.pottumuttu@intel.com> Message-ID: <173708644794.484510.17823813600508107538@b555e5b46a47> == Series Details == Series: Add test for configurable OA buffer size (rev2) URL : https://patchwork.freedesktop.org/series/142128/ State : success == Summary == CI Bug Log - changes from XEIGT_8195_BAT -> XEIGTPW_12450_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12450_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3970] / [Intel XE#4078]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-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_8195/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/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_8195/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8195 -> IGTPW_12450 * Linux: xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c -> xe-2501-596a18adf934dd4a61e15c72b7e1e4ddae489474 IGTPW_12450: c39b75a0b25211edcf46f78b95c8bf019186a04f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8195: 8195 xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c xe-2501-596a18adf934dd4a61e15c72b7e1e4ddae489474: 596a18adf934dd4a61e15c72b7e1e4ddae489474 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 04:01:57 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 04:01:57 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Add_test_for_configurable?= =?utf-8?q?_OA_buffer_size_=28rev2=29?= In-Reply-To: <20250116135456.4066677-1-sai.teja.pottumuttu@intel.com> References: <20250116135456.4066677-1-sai.teja.pottumuttu@intel.com> Message-ID: <173708651773.487978.11016236011899751402@b555e5b46a47> == Series Details == Series: Add test for configurable OA buffer size (rev2) URL : https://patchwork.freedesktop.org/series/142128/ State : success == Summary == CI Bug Log - changes from IGT_8195 -> IGTPW_12450 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/index.html Participating hosts (42 -> 41) ------------------------------ Additional (1): bat-adls-6 Missing (2): fi-blb-e6850 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12450 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at debugfs_test@basic-hwmon: - bat-adls-6: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt at debugfs_test@basic-hwmon.html * igt at gem_lmem_swapping@parallel-random-engines: - bat-adls-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt at gem_lmem_swapping@parallel-random-engines.html * igt at gem_tiled_pread_basic: - bat-adls-6: NOTRUN -> [SKIP][3] ([i915#3282]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt at gem_tiled_pread_basic.html * igt at i915_selftest@live: - bat-mtlp-8: [PASS][4] -> [DMESG-FAIL][5] ([i915#12061]) +1 other test dmesg-fail [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-mtlp-8/igt at i915_selftest@live.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-mtlp-8/igt at i915_selftest@live.html * igt at i915_selftest@live at late_gt_pm: - fi-cfl-8109u: [PASS][6] -> [DMESG-WARN][7] ([i915#11621]) +132 other tests dmesg-warn [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/fi-cfl-8109u/igt at i915_selftest@live at late_gt_pm.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/fi-cfl-8109u/igt at i915_selftest@live at late_gt_pm.html * igt at i915_selftest@live at workarounds: - bat-arlh-3: [PASS][8] -> [DMESG-FAIL][9] ([i915#12061]) +1 other test dmesg-fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-arlh-3/igt at i915_selftest@live at workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-arlh-3/igt at i915_selftest@live at workarounds.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adls-6: NOTRUN -> [SKIP][10] ([i915#4103]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_dsc@dsc-basic: - bat-adls-6: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#3840]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt at kms_dsc@dsc-basic.html * igt at kms_force_connector_basic@force-load-detect: - bat-adls-6: NOTRUN -> [SKIP][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt at kms_force_connector_basic@force-load-detect.html * igt at kms_pm_backlight@basic-brightness: - bat-adls-6: NOTRUN -> [SKIP][13] ([i915#5354]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt at kms_pm_backlight@basic-brightness.html * igt at kms_psr@psr-primary-mmap-gtt: - bat-adls-6: NOTRUN -> [SKIP][14] ([i915#1072] / [i915#9732]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt at kms_psr@psr-primary-mmap-gtt.html * igt at kms_setmode@basic-clone-single-crtc: - bat-adls-6: NOTRUN -> [SKIP][15] ([i915#3555]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt at kms_setmode@basic-clone-single-crtc.html * igt at prime_vgem@basic-fence-read: - bat-adls-6: NOTRUN -> [SKIP][16] ([i915#3291]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt at prime_vgem@basic-fence-read.html #### Possible fixes #### * igt at i915_selftest@live: - bat-adlp-6: [ABORT][17] ([i915#13399]) -> [PASS][18] +1 other test pass [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-adlp-6/igt at i915_selftest@live.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adlp-6/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-mtlp-6: [DMESG-FAIL][19] ([i915#12061]) -> [PASS][20] +1 other test pass [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/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#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13399 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8195 -> IGTPW_12450 * Linux: CI_DRM_15966 -> CI_DRM_15971 CI-20190529: 20190529 CI_DRM_15966: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15971: 58078c97cb752a5ea9ae2f2e3ab898945153d39e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12450: c39b75a0b25211edcf46f78b95c8bf019186a04f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8195: 8195 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 04:31:12 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 04:31:12 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fsriov=5F?= =?utf-8?q?flr=3A_Add_parallel_FLR_subtest_for_SR-IOV_VFs_=28rev3=29?= In-Reply-To: <20250116192906.636031-1-marcin.bernatowicz@linux.intel.com> References: <20250116192906.636031-1-marcin.bernatowicz@linux.intel.com> Message-ID: <173708827204.570523.12497523409832986227@b555e5b46a47> == Series Details == Series: tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs (rev3) URL : https://patchwork.freedesktop.org/series/142042/ State : success == Summary == CI Bug Log - changes from IGT_8195 -> IGTPW_12451 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/index.html Participating hosts (42 -> 41) ------------------------------ Additional (1): bat-adls-6 Missing (2): fi-blb-e6850 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12451 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at debugfs_test@basic-hwmon: - bat-adls-6: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/bat-adls-6/igt at debugfs_test@basic-hwmon.html * igt at gem_lmem_swapping@parallel-random-engines: - bat-adls-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/bat-adls-6/igt at gem_lmem_swapping@parallel-random-engines.html * igt at gem_tiled_pread_basic: - bat-adls-6: NOTRUN -> [SKIP][3] ([i915#3282]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/bat-adls-6/igt at gem_tiled_pread_basic.html * igt at i915_selftest@live: - bat-mtlp-8: [PASS][4] -> [DMESG-FAIL][5] ([i915#12061]) +1 other test dmesg-fail [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-mtlp-8/igt at i915_selftest@live.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/bat-mtlp-8/igt at i915_selftest@live.html * igt at i915_selftest@live at late_gt_pm: - fi-cfl-8109u: [PASS][6] -> [DMESG-WARN][7] ([i915#11621]) +132 other tests dmesg-warn [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/fi-cfl-8109u/igt at i915_selftest@live at late_gt_pm.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/fi-cfl-8109u/igt at i915_selftest@live at late_gt_pm.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adls-6: NOTRUN -> [SKIP][8] ([i915#4103]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/bat-adls-6/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_dsc@dsc-basic: - bat-adls-6: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#3840]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/bat-adls-6/igt at kms_dsc@dsc-basic.html * igt at kms_force_connector_basic@force-load-detect: - bat-adls-6: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/bat-adls-6/igt at kms_force_connector_basic@force-load-detect.html * igt at kms_pm_backlight@basic-brightness: - bat-adls-6: NOTRUN -> [SKIP][11] ([i915#5354]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/bat-adls-6/igt at kms_pm_backlight@basic-brightness.html * igt at kms_psr@psr-primary-mmap-gtt: - bat-adls-6: NOTRUN -> [SKIP][12] ([i915#1072] / [i915#9732]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/bat-adls-6/igt at kms_psr@psr-primary-mmap-gtt.html * igt at kms_setmode@basic-clone-single-crtc: - bat-adls-6: NOTRUN -> [SKIP][13] ([i915#3555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/bat-adls-6/igt at kms_setmode@basic-clone-single-crtc.html * igt at prime_vgem@basic-fence-read: - bat-adls-6: NOTRUN -> [SKIP][14] ([i915#3291]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/bat-adls-6/igt at prime_vgem@basic-fence-read.html #### Possible fixes #### * igt at i915_selftest@live: - bat-adlp-6: [ABORT][15] ([i915#13399]) -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-adlp-6/igt at i915_selftest@live.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/bat-adlp-6/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-mtlp-6: [DMESG-FAIL][17] ([i915#12061]) -> [PASS][18] +1 other test pass [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/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#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13399 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8195 -> IGTPW_12451 * Linux: CI_DRM_15966 -> CI_DRM_15971 CI-20190529: 20190529 CI_DRM_15966: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15971: 58078c97cb752a5ea9ae2f2e3ab898945153d39e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12451: 93736f372c8c3aae00d18f841f9990a0e22c6586 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8195: 8195 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 05:24:08 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 05:24:08 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fsriov=5Ffl?= =?utf-8?q?r=3A_Add_parallel_FLR_subtest_for_SR-IOV_VFs_=28rev3=29?= In-Reply-To: <20250116192906.636031-1-marcin.bernatowicz@linux.intel.com> References: <20250116192906.636031-1-marcin.bernatowicz@linux.intel.com> Message-ID: <173709144819.576735.3304653105035369837@b555e5b46a47> == Series Details == Series: tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs (rev3) URL : https://patchwork.freedesktop.org/series/142042/ State : success == Summary == CI Bug Log - changes from XEIGT_8195_BAT -> XEIGTPW_12451_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12451_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_exec_balancer@twice-virtual-userptr-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4078]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/bat-adlp-vf/igt at xe_exec_balancer@twice-virtual-userptr-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/bat-adlp-vf/igt at xe_exec_balancer@twice-virtual-userptr-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_8195/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/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_8195/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/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#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8195 -> IGTPW_12451 * Linux: xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c -> xe-2502-58078c97cb752a5ea9ae2f2e3ab898945153d39e IGTPW_12451: 93736f372c8c3aae00d18f841f9990a0e22c6586 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8195: 8195 xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c xe-2502-58078c97cb752a5ea9ae2f2e3ab898945153d39e: 58078c97cb752a5ea9ae2f2e3ab898945153d39e == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 07:20:03 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 07:20:03 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/perf=5Fpmu=3A_Fix_bus?= =?utf-8?q?y-double-start_for_GuC_backend?= In-Reply-To: <20250116225200.158728-1-umesh.nerlige.ramappa@intel.com> References: <20250116225200.158728-1-umesh.nerlige.ramappa@intel.com> Message-ID: <173709840393.588873.17029086699237619299@b555e5b46a47> == Series Details == Series: tests/perf_pmu: Fix busy-double-start for GuC backend URL : https://patchwork.freedesktop.org/series/143637/ State : success == Summary == CI Bug Log - changes from XEIGT_8195_BAT -> XEIGTPW_12452_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12452_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_8195/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/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#3970] / [Intel XE#4078]) +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/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_8195/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8195 -> IGTPW_12452 * Linux: xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c -> xe-2503-d8c883b9b7702b39eb913a72fd7158ad9a6ea11f IGTPW_12452: d0f4ecfcbae2bfd49793d61994ab641826a5cdbf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8195: 8195 xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c xe-2503-d8c883b9b7702b39eb913a72fd7158ad9a6ea11f: d8c883b9b7702b39eb913a72fd7158ad9a6ea11f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 07:28:31 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 07:28:31 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/perf=5Fpmu=3A_Fix_b?= =?utf-8?q?usy-double-start_for_GuC_backend?= In-Reply-To: <20250116225200.158728-1-umesh.nerlige.ramappa@intel.com> References: <20250116225200.158728-1-umesh.nerlige.ramappa@intel.com> Message-ID: <173709891148.610111.12958136438082772313@b555e5b46a47> == Series Details == Series: tests/perf_pmu: Fix busy-double-start for GuC backend URL : https://patchwork.freedesktop.org/series/143637/ State : success == Summary == CI Bug Log - changes from IGT_8195 -> IGTPW_12452 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/index.html Participating hosts (42 -> 41) ------------------------------ Additional (1): bat-adls-6 Missing (2): fi-blb-e6850 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12452 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at debugfs_test@basic-hwmon: - bat-adls-6: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/bat-adls-6/igt at debugfs_test@basic-hwmon.html * igt at dmabuf@all-tests: - bat-apl-1: [PASS][2] -> [INCOMPLETE][3] ([i915#12904]) +1 other test incomplete [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-apl-1/igt at dmabuf@all-tests.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/bat-apl-1/igt at dmabuf@all-tests.html * igt at gem_lmem_swapping@parallel-random-engines: - bat-adls-6: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/bat-adls-6/igt at gem_lmem_swapping@parallel-random-engines.html * igt at gem_tiled_pread_basic: - bat-adls-6: NOTRUN -> [SKIP][5] ([i915#3282]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/bat-adls-6/igt at gem_tiled_pread_basic.html * igt at i915_selftest@live: - bat-mtlp-8: [PASS][6] -> [DMESG-FAIL][7] ([i915#12061]) +1 other test dmesg-fail [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-mtlp-8/igt at i915_selftest@live.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/bat-mtlp-8/igt at i915_selftest@live.html * igt at i915_selftest@live at late_gt_pm: - fi-cfl-8109u: [PASS][8] -> [DMESG-WARN][9] ([i915#11621]) +132 other tests dmesg-warn [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/fi-cfl-8109u/igt at i915_selftest@live at late_gt_pm.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/fi-cfl-8109u/igt at i915_selftest@live at late_gt_pm.html * igt at i915_selftest@live at workarounds: - bat-arls-5: [PASS][10] -> [DMESG-FAIL][11] ([i915#12061]) +1 other test dmesg-fail [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-arls-5/igt at i915_selftest@live at workarounds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/bat-arls-5/igt at i915_selftest@live at workarounds.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adls-6: NOTRUN -> [SKIP][12] ([i915#4103]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/bat-adls-6/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_dsc@dsc-basic: - bat-adls-6: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#3840]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/bat-adls-6/igt at kms_dsc@dsc-basic.html * igt at kms_force_connector_basic@force-load-detect: - bat-adls-6: NOTRUN -> [SKIP][14] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/bat-adls-6/igt at kms_force_connector_basic@force-load-detect.html * igt at kms_pm_backlight@basic-brightness: - bat-adls-6: NOTRUN -> [SKIP][15] ([i915#5354]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/bat-adls-6/igt at kms_pm_backlight@basic-brightness.html * igt at kms_psr@psr-primary-mmap-gtt: - bat-adls-6: NOTRUN -> [SKIP][16] ([i915#1072] / [i915#9732]) +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/bat-adls-6/igt at kms_psr@psr-primary-mmap-gtt.html * igt at kms_setmode@basic-clone-single-crtc: - bat-adls-6: NOTRUN -> [SKIP][17] ([i915#3555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/bat-adls-6/igt at kms_setmode@basic-clone-single-crtc.html * igt at prime_vgem@basic-fence-read: - bat-adls-6: NOTRUN -> [SKIP][18] ([i915#3291]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/bat-adls-6/igt at prime_vgem@basic-fence-read.html #### Possible fixes #### * igt at i915_selftest@live: - bat-adlp-6: [ABORT][19] ([i915#13399]) -> [PASS][20] +1 other test pass [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-adlp-6/igt at i915_selftest@live.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/bat-adlp-6/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-mtlp-6: [DMESG-FAIL][21] ([i915#12061]) -> [PASS][22] +1 other test pass [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/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#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13399 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8195 -> IGTPW_12452 * Linux: CI_DRM_15966 -> CI_DRM_15972 CI-20190529: 20190529 CI_DRM_15966: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15972: d8c883b9b7702b39eb913a72fd7158ad9a6ea11f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12452: d0f4ecfcbae2bfd49793d61994ab641826a5cdbf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8195: 8195 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 07:47:41 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 07:47:41 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Foa=3A_Ex?= =?utf-8?q?tend_non-zero-reason_test?= In-Reply-To: <20250117005424.3038122-1-ashutosh.dixit@intel.com> References: <20250117005424.3038122-1-ashutosh.dixit@intel.com> Message-ID: <173710006133.588873.406869222471143644@b555e5b46a47> == Series Details == Series: tests/intel/xe_oa: Extend non-zero-reason test URL : https://patchwork.freedesktop.org/series/143640/ State : success == Summary == CI Bug Log - changes from IGT_8195 -> IGTPW_12453 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/index.html Participating hosts (42 -> 41) ------------------------------ Additional (1): bat-adls-6 Missing (2): fi-blb-e6850 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12453 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at debugfs_test@basic-hwmon: - bat-adls-6: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/bat-adls-6/igt at debugfs_test@basic-hwmon.html * igt at dmabuf@all-tests: - bat-apl-1: [PASS][2] -> [INCOMPLETE][3] ([i915#12904]) +1 other test incomplete [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-apl-1/igt at dmabuf@all-tests.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/bat-apl-1/igt at dmabuf@all-tests.html * igt at gem_lmem_swapping@parallel-random-engines: - bat-adls-6: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/bat-adls-6/igt at gem_lmem_swapping@parallel-random-engines.html * igt at gem_tiled_pread_basic: - bat-adls-6: NOTRUN -> [SKIP][5] ([i915#3282]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/bat-adls-6/igt at gem_tiled_pread_basic.html * igt at i915_selftest@live at late_gt_pm: - fi-cfl-8109u: [PASS][6] -> [DMESG-WARN][7] ([i915#11621]) +132 other tests dmesg-warn [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/fi-cfl-8109u/igt at i915_selftest@live at late_gt_pm.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/fi-cfl-8109u/igt at i915_selftest@live at late_gt_pm.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adls-6: NOTRUN -> [SKIP][8] ([i915#4103]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/bat-adls-6/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_dsc@dsc-basic: - bat-adls-6: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#3840]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/bat-adls-6/igt at kms_dsc@dsc-basic.html * igt at kms_force_connector_basic@force-load-detect: - bat-adls-6: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/bat-adls-6/igt at kms_force_connector_basic@force-load-detect.html * igt at kms_pm_backlight@basic-brightness: - bat-adls-6: NOTRUN -> [SKIP][11] ([i915#5354]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/bat-adls-6/igt at kms_pm_backlight@basic-brightness.html * igt at kms_psr@psr-primary-mmap-gtt: - bat-adls-6: NOTRUN -> [SKIP][12] ([i915#1072] / [i915#9732]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/bat-adls-6/igt at kms_psr@psr-primary-mmap-gtt.html * igt at kms_setmode@basic-clone-single-crtc: - bat-adls-6: NOTRUN -> [SKIP][13] ([i915#3555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/bat-adls-6/igt at kms_setmode@basic-clone-single-crtc.html * igt at prime_vgem@basic-fence-read: - bat-adls-6: NOTRUN -> [SKIP][14] ([i915#3291]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/bat-adls-6/igt at prime_vgem@basic-fence-read.html #### Possible fixes #### * igt at i915_selftest@live: - bat-adlp-6: [ABORT][15] ([i915#13399]) -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-adlp-6/igt at i915_selftest@live.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/bat-adlp-6/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-mtlp-6: [DMESG-FAIL][17] ([i915#12061]) -> [PASS][18] +1 other test pass [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/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#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13399 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8195 -> IGTPW_12453 * Linux: CI_DRM_15966 -> CI_DRM_15972 CI-20190529: 20190529 CI_DRM_15966: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15972: d8c883b9b7702b39eb913a72fd7158ad9a6ea11f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12453: 8f67778e3bb90960a69048a954529e876fa23f64 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8195: 8195 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 08:00:19 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 08:00:19 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Miscellaneous_OA_Refactors?= =?utf-8?q?_=28rev3=29?= In-Reply-To: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> References: <20250113061949.753864-1-sai.teja.pottumuttu@intel.com> Message-ID: <173710081932.610111.11874150847825128631@b555e5b46a47> == Series Details == Series: Miscellaneous OA Refactors (rev3) URL : https://patchwork.freedesktop.org/series/142773/ State : failure == Summary == CI Bug Log - changes from XEIGT_8189_full -> XEIGTPW_12433_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12433_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12433_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_12433_full: ### IGT changes ### #### Possible regressions #### * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1: - shard-lnl: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-6/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-c-edp-1.html New tests --------- New tests have been introduced between XEIGT_8189_full and XEIGTPW_12433_full: ### New IGT tests (26) ### * igt at kms_atomic@crtc-invalid-params-fence at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.56] s * igt at kms_cursor_crc@cursor-onscreen-64x64 at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.45] s * igt at kms_cursor_crc@cursor-onscreen-64x64 at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.21] s * igt at kms_cursor_crc@cursor-sliding-128x128 at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [4.01] s * igt at kms_cursor_crc@cursor-sliding-128x128 at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [3.58] s * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.42] s * igt at kms_flip@2x-flip-vs-rmfb at ab-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.36] s * igt at kms_flip@2x-flip-vs-rmfb at ac-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.37] s * igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.35] s * igt at kms_flip@2x-flip-vs-rmfb at bc-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.33] s * igt at kms_flip@2x-flip-vs-rmfb at bd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.33] s * igt at kms_flip@2x-flip-vs-rmfb at cd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.38] s * igt at kms_flip@basic-flip-vs-dpms at a-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.81] s * igt at kms_flip@basic-flip-vs-dpms at b-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.72] s * igt at kms_flip@basic-flip-vs-dpms at c-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.74] s * igt at kms_flip@basic-flip-vs-dpms at d-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.75] s * igt at kms_flip@busy-flip at a-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.80] s * igt at kms_flip@busy-flip at b-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.75] s * igt at kms_flip@busy-flip at c-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.70] s * igt at kms_flip@busy-flip at d-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.71] s * igt at kms_flip@nonexisting-fb at a-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.31] s * igt at kms_flip@nonexisting-fb at b-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.21] s * igt at kms_flip@nonexisting-fb at c-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.21] s * igt at kms_flip@nonexisting-fb at d-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.20] s * igt at kms_vblank@query-busy-hang at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.63] s * igt at kms_vblank@query-busy-hang at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.40] s Known issues ------------ Here are the changes found in XEIGTPW_12433_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotreplug: - shard-lnl: NOTRUN -> [ABORT][3] ([Intel XE#3914]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-3/igt at core_hotunplug@hotreplug.html * igt at fbdev@eof: - shard-bmg: [PASS][4] -> [SKIP][5] ([Intel XE#2134]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-8/igt at fbdev@eof.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at fbdev@eof.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1125]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@unused-offsets: - shard-bmg: [PASS][7] -> [SKIP][8] ([Intel XE#3007]) +8 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-2/igt at kms_addfb_basic@unused-offsets.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_addfb_basic@unused-offsets.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#316]) +4 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_big_fb@x-tiled-16bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-7/igt at kms_big_fb@x-tiled-16bpp-rotate-270.html * igt at kms_big_fb@y-tiled-16bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +4 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-1/igt at kms_big_fb@y-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#619]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#607]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +10 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt at kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2314] / [Intel XE#2894]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2191]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-3/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#2191]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#367]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#367]) +5 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2907]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#455] / [Intel XE#787]) +40 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-5/igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#787]) +167 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs at pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs at pipe-b-dp-2.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][27] -> [INCOMPLETE][28] ([Intel XE#3862]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-6.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-c-hdmi-a-6.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-lnl: [PASS][29] -> [INCOMPLETE][30] ([Intel XE#3862]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-6/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-7/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: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#3432]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-4/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#3432]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs at pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2669]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs at pipe-a-edp-1.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][34] ([Intel XE#1727] / [Intel XE#3124]) +1 other test incomplete [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/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-cc: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#306]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@degamma: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#306]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2252]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#373]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-5/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +16 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_content_protection@atomic: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#3278]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-3/igt at kms_content_protection@atomic.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][42] ([Intel XE#1178]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt at kms_content_protection@atomic-dpms at pipe-a-dp-2.html * igt at kms_content_protection@dp-mst-type-1: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2390]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_content_protection@dp-mst-type-1.html - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#307]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at kms_content_protection@dp-mst-type-1.html - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#307]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#1178]) +5 other tests fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#1188]) +1 other test fail [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1424]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2291]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2286]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursor-vs-flip-legacy: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][51] ([Intel XE#877]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt at kms_cursor_legacy@cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@cursora-vs-flipa-toggle: - shard-bmg: [PASS][52] -> [INCOMPLETE][53] ([Intel XE#3226]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipa-toggle.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt at kms_cursor_legacy@cursora-vs-flipa-toggle.html * igt at kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [PASS][54] -> [SKIP][55] ([Intel XE#2291]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-1/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#323]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#3070]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-2/igt at kms_dp_linktrain_fallback@dp-fallback.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_fbcon_fbt@fbc: - shard-bmg: NOTRUN -> [FAIL][59] ([Intel XE#1695]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt at kms_fbcon_fbt@fbc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#776]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#703]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at kms_feature_discovery@display-3x.html * igt at kms_flip@2x-busy-flip: - shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#2316]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-2/igt at kms_flip@2x-busy-flip.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt at kms_flip@2x-busy-flip.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1421]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][65] ([Intel XE#2882]) +1 other test fail [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/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 ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][66] ([Intel XE#301]) +3 other tests fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-lnl: [PASS][67] -> [FAIL][68] ([Intel XE#886]) +1 other test fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-6/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-3/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank: - shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#2882]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_flip@flip-vs-expired-vblank.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][71] -> [FAIL][72] ([Intel XE#2882] / [Intel XE#3288]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2: - shard-bmg: [PASS][73] -> [FAIL][74] ([Intel XE#3288] / [Intel XE#3321]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2.html * igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3: - shard-bmg: [PASS][75] -> [FAIL][76] ([Intel XE#3321]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html * igt at kms_flip@wf_vblank-ts-check: - shard-bmg: [PASS][77] -> [INCOMPLETE][78] ([Intel XE#2635]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_flip@wf_vblank-ts-check.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-4/igt at kms_flip@wf_vblank-ts-check.html * igt at kms_flip@wf_vblank-ts-check at d-dp2: - shard-bmg: [PASS][79] -> [INCOMPLETE][80] ([Intel XE#2049]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_flip@wf_vblank-ts-check at d-dp2.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-4/igt at kms_flip@wf_vblank-ts-check at d-dp2.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2293]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1401]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-3/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#651]) +44 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2311]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-bmg: NOTRUN -> [FAIL][86] ([Intel XE#2333]) +1 other test fail [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#651]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#656]) +13 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2313]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2312]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#1158]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#653]) +42 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_hdr@bpc-switch-suspend: - shard-dg2-set2: NOTRUN -> [ABORT][93] ([Intel XE#2625]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@bpc-switch-suspend at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][94] ([Intel XE#4048]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt at kms_hdr@bpc-switch-suspend at pipe-a-dp-2.html * igt at kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1503]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-1/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2934]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-4/igt at kms_joiner@basic-force-ultra-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2925]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_joiner@basic-force-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_12433/shard-dg2-436/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#356]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#3007]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][101] ([Intel XE#616]) +3 other tests fail [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#3307]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-1/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2763] / [Intel XE#455]) +6 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-d: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2763]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-d.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-a: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#2763]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-a.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2763]) +11 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#870]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][108] -> [FAIL][109] ([Intel XE#718]) +1 other test fail [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-3/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc5-dpms-negative: - shard-bmg: [PASS][110] -> [SKIP][111] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt at kms_pm_dc@dc5-dpms-negative.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_pm_dc@dc5-dpms-negative.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-bmg: [PASS][112] -> [SKIP][113] ([Intel XE#2446]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1439] / [Intel XE#3141]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt at kms_pm_rpm@modeset-non-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#1489]) +11 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2893]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-4/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#1489]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1122]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1406]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt at kms_psr@fbc-pr-cursor-plane-move.html * igt at kms_psr@fbc-psr2-cursor-render: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt at kms_psr@fbc-psr2-cursor-render.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2850] / [Intel XE#929]) +18 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at kms_psr@psr-dpms.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2939]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1127]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#3414]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.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_12433/shard-bmg-1/igt at kms_setmode@basic-clone-single-crtc.html - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1435]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: NOTRUN -> [FAIL][127] ([Intel XE#1729]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1: - shard-lnl: [PASS][128] -> [FAIL][129] ([Intel XE#899]) +1 other test fail [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1.html * igt at kms_vrr@cmrr: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2168]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt at kms_vrr@cmrr.html * igt at kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#455]) +26 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at kms_vrr@flipline.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#1091] / [Intel XE#2849]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1126]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0x3fff.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#3889]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt at xe_eudebug@basic-vm-access-parameters-userptr.html - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#3889]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#3889]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug_online@preempt-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2905]) +15 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at xe_eudebug_online@preempt-breakpoint.html - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#2905]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-3/igt at xe_eudebug_online@preempt-breakpoint.html * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2905]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][141] ([Intel XE#1473]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt at xe_evict@evict-beng-mixed-many-threads-large.html - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#688]) +5 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-1/igt at xe_evict@evict-beng-mixed-many-threads-large.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2322]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-dg2-set2: [PASS][144] -> [SKIP][145] ([Intel XE#1392]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt at xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1392]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt at xe_exec_basic@multigpu-once-userptr.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#288]) +36 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#1192]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [PASS][149] -> [SKIP][150] ([Intel XE#1192]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at xe_live_ktest@xe_mocs.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt at xe_live_ktest@xe_mocs.html * igt at xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#560]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt at xe_media_fill@media-fill.html - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#560]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-3/igt at xe_media_fill@media-fill.html * igt at xe_mmap@pci-membarrier-parallel: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#4045]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at xe_mmap@pci-membarrier-parallel.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#378]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-5/igt at xe_module_load@force-load.html * igt at xe_module_load@load: - shard-dg2-set2: ([PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176]) -> ([PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [SKIP][184], [PASS][185], [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]) ([Intel XE#378]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at xe_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-435/igt at xe_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-432/igt at xe_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at xe_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-432/igt at xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-432/igt at xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-432/igt at xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-432/igt at xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-433/igt at xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-464/igt at xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-433/igt at xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-435/igt at xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-433/igt at xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-464/igt at xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-464/igt at xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-435/igt at xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt at xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt at xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt at xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt at xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt at xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt at xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt at xe_module_load@load.html * igt at xe_module_load@reload: - shard-dg2-set2: NOTRUN -> [FAIL][201] ([Intel XE#3546]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at xe_module_load@reload.html - shard-bmg: [PASS][202] -> [FAIL][203] ([Intel XE#3546]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-7/igt at xe_module_load@reload.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-4/igt at xe_module_load@reload.html * igt at xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][204] ([Intel XE#2541] / [Intel XE#3573]) +8 other tests skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt at xe_pm@d3cold-mocs: - shard-bmg: NOTRUN -> [SKIP][205] ([Intel XE#2284]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt at xe_pm@d3cold-mocs.html - shard-dg2-set2: NOTRUN -> [SKIP][206] ([Intel XE#2284]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s2idle-vm-bind-prefetch: - shard-dg2-set2: [PASS][208] -> [ABORT][209] ([Intel XE#1358]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at xe_pm@s2idle-vm-bind-prefetch.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-prefetch.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [PASS][210] -> [ABORT][211] ([Intel XE#1358] / [Intel XE#1794]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-435/igt at xe_pm@s2idle-vm-bind-unbind-all.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][212] ([Intel XE#579]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][213] -> [FAIL][214] ([Intel XE#958]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-1/igt at xe_pm_residency@toggle-gt-c6.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-5/igt at xe_pm_residency@toggle-gt-c6.html * igt at xe_query@multigpu-query-hwconfig: - shard-bmg: NOTRUN -> [SKIP][215] ([Intel XE#944]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt at xe_query@multigpu-query-hwconfig.html * igt at xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][216] ([Intel XE#944]) +3 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at xe_query@multigpu-query-uc-fw-version-guc.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-lnl: NOTRUN -> [SKIP][217] ([Intel XE#944]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_query@query-invalid-extension: - shard-bmg: [PASS][218] -> [SKIP][219] ([Intel XE#1130]) +17 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-5/igt at xe_query@query-invalid-extension.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at xe_query@query-invalid-extension.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][220] ([Intel XE#3342]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt at xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt at kms_addfb_basic@addfb25-modifier-no-flag: - shard-dg2-set2: [SKIP][221] ([i915#6077]) -> [PASS][222] +1 other test pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at kms_addfb_basic@addfb25-modifier-no-flag.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at kms_addfb_basic@addfb25-modifier-no-flag.html * igt at kms_addfb_basic@bad-pitch-63: - shard-dg2-set2: [SKIP][223] ([Intel XE#2423] / [i915#2575]) -> [PASS][224] +1 other test pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at kms_addfb_basic@bad-pitch-63.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at kms_addfb_basic@bad-pitch-63.html * igt at kms_addfb_basic@invalid-set-prop: - shard-bmg: [SKIP][225] ([Intel XE#2461]) -> [PASS][226] +1 other test pass [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_addfb_basic@invalid-set-prop.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt at kms_addfb_basic@invalid-set-prop.html * igt at kms_atomic_interruptible@atomic-setmode: - shard-dg2-set2: [SKIP][227] -> [PASS][228] +3 other tests pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at kms_atomic_interruptible@atomic-setmode.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at kms_atomic_interruptible@atomic-setmode.html * igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-b-edp-1: - shard-lnl: [FAIL][229] ([Intel XE#3908]) -> [PASS][230] +1 other test pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-7/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-b-edp-1.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-5/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-b-edp-1.html * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: [SKIP][231] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [SKIP][233] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [ABORT][235] ([Intel XE#2625]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt at kms_color@legacy-gamma-reset: - shard-bmg: [SKIP][237] -> [PASS][238] +4 other tests pass [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_color@legacy-gamma-reset.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_color@legacy-gamma-reset.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [SKIP][239] ([Intel XE#2291]) -> [PASS][240] +3 other tests pass [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [DMESG-WARN][241] ([Intel XE#877]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][243] ([Intel XE#4072]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-5/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][245] ([Intel XE#2882]) -> [PASS][246] +2 other tests pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-5/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ad-dp2-hdmi-a3.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ad-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][247] ([Intel XE#301]) -> [PASS][248] +1 other test pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a6-dp4.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][249] ([Intel XE#3820]) -> [PASS][250] +1 other test pass [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [SKIP][251] ([Intel XE#2316]) -> [PASS][252] +6 other tests pass [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt at kms_flip@2x-nonexisting-fb.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@flip-vs-suspend: - shard-bmg: [INCOMPLETE][253] ([Intel XE#2597]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-8/igt at kms_flip@flip-vs-suspend.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-lnl: [INCOMPLETE][255] ([Intel XE#2049]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-7/igt at kms_flip@flip-vs-suspend-interruptible.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at c-edp1: - shard-lnl: [INCOMPLETE][257] -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-7/igt at kms_flip@flip-vs-suspend-interruptible at c-edp1.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt at kms_flip@flip-vs-suspend-interruptible at c-edp1.html * igt at kms_flip@flip-vs-suspend at b-dp2: - shard-bmg: [INCOMPLETE][259] -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-8/igt at kms_flip@flip-vs-suspend at b-dp2.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt at kms_flip@flip-vs-suspend at b-dp2.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render: - shard-dg2-set2: [SKIP][261] ([Intel XE#2136]) -> [PASS][262] +1 other test pass [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][263] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_plane_alpha_blend@coverage-vs-premult-vs-constant: - shard-dg2-set2: [SKIP][265] ([Intel XE#829]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html - shard-bmg: [SKIP][267] ([Intel XE#829]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html * igt at kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][269] ([Intel XE#3007]) -> [PASS][270] +5 other tests pass [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-4/igt at kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html * igt at kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [INCOMPLETE][271] -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-464/igt at kms_rotation_crc@sprite-rotation-180.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at kms_rotation_crc@sprite-rotation-180.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [FAIL][273] ([Intel XE#2883]) -> [PASS][274] +2 other tests pass [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-8/igt at kms_setmode@basic at pipe-b-edp-1.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-8/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-bmg: [SKIP][275] ([Intel XE#1435]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][277] ([Intel XE#899]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-lnl-6/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at xe_exec_threads@threads-cm-fd-userptr-invalidate: - shard-bmg: [SKIP][279] ([Intel XE#1130]) -> [PASS][280] +11 other tests pass [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at xe_exec_threads@threads-cm-fd-userptr-invalidate.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt at xe_exec_threads@threads-cm-fd-userptr-invalidate.html * igt at xe_live_ktest@xe_bo: - shard-dg2-set2: [SKIP][281] ([Intel XE#2229] / [Intel XE#455]) -> [PASS][282] +1 other test pass [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at xe_live_ktest@xe_bo.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at xe_live_ktest@xe_bo.html - shard-bmg: [FAIL][283] ([Intel XE#3099]) -> [PASS][284] +1 other test pass [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at xe_live_ktest@xe_bo.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-dg2-set2: [SKIP][285] ([Intel XE#2229]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: [SKIP][287] ([Intel XE#1192]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-2/igt at xe_live_ktest@xe_dma_buf.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_pm@s4-basic-exec: - shard-dg2-set2: [ABORT][289] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][290] +1 other test pass [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-432/igt at xe_pm@s4-basic-exec.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at xe_pm@s4-basic-exec.html * igt at xe_vm@mmap-style-bind-either-side-full: - shard-dg2-set2: [SKIP][291] ([Intel XE#1130]) -> [PASS][292] +6 other tests pass [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at xe_vm@mmap-style-bind-either-side-full.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at xe_vm@mmap-style-bind-either-side-full.html #### Warnings #### * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][293] -> [SKIP][294] ([Intel XE#2385]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: [SKIP][295] ([Intel XE#829]) -> [SKIP][296] ([Intel XE#316]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html - shard-bmg: [SKIP][297] ([Intel XE#829]) -> [SKIP][298] ([Intel XE#2327]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: [SKIP][299] ([Intel XE#2327]) -> [SKIP][300] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-1/igt at kms_big_fb@linear-32bpp-rotate-90.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][301] ([Intel XE#2136]) -> [SKIP][302] ([Intel XE#316]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html - shard-bmg: [SKIP][303] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][304] ([Intel XE#2327]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-8bpp-rotate-270: - shard-bmg: [SKIP][305] ([Intel XE#1124]) -> [SKIP][306] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-5/igt at kms_big_fb@y-tiled-8bpp-rotate-270.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_big_fb@y-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-bmg: [SKIP][307] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][308] ([Intel XE#1124]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: [SKIP][309] -> [SKIP][310] ([Intel XE#2314] / [Intel XE#2894]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html - shard-dg2-set2: [SKIP][311] -> [SKIP][312] ([Intel XE#2191]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][313] ([Intel XE#3007]) -> [SKIP][314] ([Intel XE#367]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html - shard-dg2-set2: [SKIP][315] ([Intel XE#2423] / [i915#2575]) -> [SKIP][316] ([Intel XE#367]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html * igt at kms_ccs@bad-aux-stride-y-tiled-ccs: - shard-bmg: [SKIP][317] ([Intel XE#2887]) -> [SKIP][318] ([Intel XE#2136] / [Intel XE#2231]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-7/igt at kms_ccs@bad-aux-stride-y-tiled-ccs.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_ccs@bad-aux-stride-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [DMESG-WARN][319] -> [SKIP][320] ([Intel XE#2136] / [Intel XE#2231]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs: - shard-bmg: [SKIP][321] -> [SKIP][322] ([Intel XE#2887]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-bmg: [SKIP][323] ([Intel XE#3007]) -> [SKIP][324] ([Intel XE#2325]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_chamelium_color@ctm-blue-to-red.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt at kms_chamelium_color@ctm-blue-to-red.html - shard-dg2-set2: [SKIP][325] ([Intel XE#2423] / [i915#2575]) -> [SKIP][326] ([Intel XE#306]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at kms_chamelium_color@ctm-blue-to-red.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-dg2-set2: [SKIP][327] ([Intel XE#2423] / [i915#2575]) -> [SKIP][328] ([Intel XE#373]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html - shard-bmg: [SKIP][329] ([Intel XE#3007]) -> [SKIP][330] ([Intel XE#2252]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt at kms_chamelium_edid@vga-edid-read: - shard-bmg: [SKIP][331] -> [SKIP][332] ([Intel XE#2252]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_chamelium_edid@vga-edid-read.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt at kms_chamelium_edid@vga-edid-read.html * igt at kms_chamelium_frames@hdmi-frame-dump: - shard-bmg: [SKIP][333] ([Intel XE#2252]) -> [SKIP][334] ([Intel XE#3007]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-2/igt at kms_chamelium_frames@hdmi-frame-dump.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_chamelium_frames@hdmi-frame-dump.html * igt at kms_content_protection@atomic-dpms: - shard-bmg: [SKIP][335] ([Intel XE#2341]) -> [FAIL][336] ([Intel XE#1178]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt at kms_content_protection@atomic-dpms.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][337] ([Intel XE#3007]) -> [SKIP][338] ([Intel XE#2341]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_content_protection@mei-interface.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt at kms_content_protection@mei-interface.html - shard-dg2-set2: [SKIP][339] ([Intel XE#2423] / [i915#2575]) -> [SKIP][340] ([Intel XE#455]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at kms_content_protection@mei-interface.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_content_protection@mei-interface.html * igt at kms_dsc@dsc-fractional-bpp: - shard-bmg: [SKIP][341] ([Intel XE#2244]) -> [SKIP][342] ([Intel XE#2136] / [Intel XE#2231]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_dsc@dsc-fractional-bpp.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [SKIP][343] ([Intel XE#2316]) -> [FAIL][344] ([Intel XE#2882]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][345] ([Intel XE#2882] / [Intel XE#3820]) -> [FAIL][346] ([Intel XE#2882] / [Intel XE#3288]) +1 other test fail [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@wf_vblank-ts-check-interruptible: - shard-bmg: [FAIL][347] ([Intel XE#2882]) -> [SKIP][348] ([Intel XE#3007]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-1/igt at kms_flip@wf_vblank-ts-check-interruptible.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_flip@wf_vblank-ts-check-interruptible.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: [SKIP][349] -> [SKIP][350] ([Intel XE#2293] / [Intel XE#2380]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][351] -> [SKIP][352] ([Intel XE#455]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][353] ([Intel XE#2311]) -> [SKIP][354] ([Intel XE#2312]) +5 other tests skip [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][355] ([Intel XE#2312]) -> [SKIP][356] ([Intel XE#2311]) +6 other tests skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][357] ([Intel XE#2333]) -> [SKIP][358] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][359] ([Intel XE#2333]) -> [SKIP][360] ([Intel XE#2312]) +2 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][361] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][362] ([Intel XE#2333]) +1 other test fail [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/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-bmg: [SKIP][363] ([Intel XE#2312]) -> [FAIL][364] ([Intel XE#2333]) +1 other test fail [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary: - shard-bmg: [SKIP][365] ([Intel XE#2311]) -> [SKIP][366] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: [SKIP][367] ([Intel XE#2136]) -> [SKIP][368] ([Intel XE#653]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html - shard-bmg: [SKIP][369] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][370] ([Intel XE#2313]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][371] ([Intel XE#2312]) -> [SKIP][372] ([Intel XE#2313]) +12 other tests skip [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][373] ([Intel XE#2313]) -> [SKIP][374] ([Intel XE#2312]) +4 other tests skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][375] -> [SKIP][376] ([Intel XE#2313]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][377] -> [SKIP][378] ([Intel XE#653]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-bmg: [SKIP][379] ([Intel XE#2313]) -> [SKIP][380] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-bmg: [SKIP][381] ([Intel XE#3007]) -> [SKIP][382] ([Intel XE#2763]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html - shard-dg2-set2: [SKIP][383] ([Intel XE#2423] / [i915#2575]) -> [SKIP][384] ([Intel XE#2763] / [Intel XE#455]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-433/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-bmg: [SKIP][385] ([Intel XE#2763]) -> [SKIP][386] ([Intel XE#3007]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt at kms_pm_backlight@bad-brightness: - shard-bmg: [SKIP][387] -> [SKIP][388] ([Intel XE#870]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_pm_backlight@bad-brightness.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt at kms_pm_backlight@bad-brightness.html - shard-dg2-set2: [SKIP][389] -> [SKIP][390] ([Intel XE#870]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at kms_pm_backlight@bad-brightness.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-432/igt at kms_pm_backlight@bad-brightness.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][391] -> [SKIP][392] ([Intel XE#1489]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-bmg: [SKIP][393] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][394] ([Intel XE#1489]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][395] ([Intel XE#1489]) -> [SKIP][396] ([Intel XE#2136] / [Intel XE#2231]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-6/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-bmg: [SKIP][397] -> [SKIP][398] ([Intel XE#1489]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-3/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr@fbc-pr-dpms: - shard-dg2-set2: [SKIP][399] ([Intel XE#2136]) -> [SKIP][400] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at kms_psr@fbc-pr-dpms.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at kms_psr@fbc-pr-dpms.html * igt at kms_psr@pr-suspend: - shard-bmg: [SKIP][401] -> [SKIP][402] ([Intel XE#2234] / [Intel XE#2850]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_psr@pr-suspend.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt at kms_psr@pr-suspend.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: [SKIP][403] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][404] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at kms_psr@psr-primary-page-flip.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-bmg: [SKIP][405] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][406] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_psr@psr2-sprite-plane-onoff.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-1/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][407] ([Intel XE#362]) -> [SKIP][408] ([Intel XE#1500]) [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][409] ([Intel XE#3007]) -> [SKIP][410] ([Intel XE#756]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at kms_writeback@writeback-invalid-parameters.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-5/igt at kms_writeback@writeback-invalid-parameters.html - shard-dg2-set2: [SKIP][411] ([Intel XE#2423] / [i915#2575]) -> [SKIP][412] ([Intel XE#756]) [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at kms_writeback@writeback-invalid-parameters.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at kms_writeback@writeback-invalid-parameters.html * igt at xe_eudebug@basic-exec-queues: - shard-bmg: [SKIP][413] ([Intel XE#2905]) -> [SKIP][414] ([Intel XE#1130]) +2 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-7/igt at xe_eudebug@basic-exec-queues.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at xe_eudebug@basic-exec-queues.html * igt at xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][415] ([Intel XE#1473]) -> [TIMEOUT][416] ([Intel XE#1473]) +1 other test timeout [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-2/igt at xe_evict@evict-beng-mixed-many-threads-small.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-8/igt at xe_evict@evict-beng-mixed-many-threads-small.html * igt at xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [FAIL][417] ([Intel XE#1000]) -> [TIMEOUT][418] ([Intel XE#1473]) [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at xe_evict@evict-beng-mixed-threads-large.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at xe_evict@evict-beng-mixed-threads-large.html * igt at xe_evict@evict-threads-large: - shard-bmg: [FAIL][419] ([Intel XE#1000]) -> [INCOMPLETE][420] ([Intel XE#1473]) [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-7/igt at xe_evict@evict-threads-large.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-6/igt at xe_evict@evict-threads-large.html * igt at xe_exec_basic@multigpu-once-rebind: - shard-bmg: [SKIP][421] ([Intel XE#2322]) -> [SKIP][422] ([Intel XE#1130]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-1/igt at xe_exec_basic@multigpu-once-rebind.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at xe_exec_basic@multigpu-once-rebind.html * igt at xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][423] ([Intel XE#1130]) -> [SKIP][424] ([Intel XE#288]) +1 other test skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-435/igt at xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - shard-bmg: [FAIL][425] ([Intel XE#3099]) -> [SKIP][426] ([Intel XE#2229]) [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-bmg: [SKIP][427] ([Intel XE#4045]) -> [SKIP][428] ([Intel XE#1130]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-3/igt at xe_mmap@pci-membarrier-bad-pagesize.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-7/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-bmg: [SKIP][429] ([Intel XE#1130]) -> [SKIP][430] ([Intel XE#2284]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-bmg-4/igt at xe_pm@s4-d3cold-basic-exec.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-bmg-4/igt at xe_pm@s4-d3cold-basic-exec.html - shard-dg2-set2: [SKIP][431] ([Intel XE#1130]) -> [SKIP][432] ([Intel XE#2284] / [Intel XE#366]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8189/shard-dg2-434/igt at xe_pm@s4-d3cold-basic-exec.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/shard-dg2-464/igt at xe_pm@s4-d3cold-basic-exec.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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [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#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [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#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [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#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [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#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#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#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#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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#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#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [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#2461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2461 [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#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [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#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#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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [Intel XE#3099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3099 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [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#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#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908 [Intel XE#3914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4048]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4048 [Intel XE#4072]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4072 [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#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [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#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 [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077 Build changes ------------- * IGT: IGT_8189 -> IGTPW_12433 * Linux: xe-2479-19b8afc5609e9ae7b410bdb028b4aaf83656b567 -> xe-2480-20058aae3e619821197cd32b736893f1d7917ba3 IGTPW_12433: 8035b8a8167171e8443e4e89f41878445c51f814 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8189: e036190dc1730ecb94cb393f88378e734db4b1d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2479-19b8afc5609e9ae7b410bdb028b4aaf83656b567: 19b8afc5609e9ae7b410bdb028b4aaf83656b567 xe-2480-20058aae3e619821197cd32b736893f1d7917ba3: 20058aae3e619821197cd32b736893f1d7917ba3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12433/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 08:12:44 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 08:12:44 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Foa=3A_Exte?= =?utf-8?q?nd_non-zero-reason_test?= In-Reply-To: <20250117005424.3038122-1-ashutosh.dixit@intel.com> References: <20250117005424.3038122-1-ashutosh.dixit@intel.com> Message-ID: <173710156408.588873.9606655810189257823@b555e5b46a47> == Series Details == Series: tests/intel/xe_oa: Extend non-zero-reason test URL : https://patchwork.freedesktop.org/series/143640/ State : success == Summary == CI Bug Log - changes from XEIGT_8195_BAT -> XEIGTPW_12453_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12453_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [PASS][1] -> [DMESG-FAIL][2] ([Intel XE#4078]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078 Build changes ------------- * IGT: IGT_8195 -> IGTPW_12453 * Linux: xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c -> xe-2503-d8c883b9b7702b39eb913a72fd7158ad9a6ea11f IGTPW_12453: 8f67778e3bb90960a69048a954529e876fa23f64 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8195: 8195 xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c xe-2503-d8c883b9b7702b39eb913a72fd7158ad9a6ea11f: d8c883b9b7702b39eb913a72fd7158ad9a6ea11f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 08:18:49 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 08:18:49 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Add_test_for_configurable_?= =?utf-8?q?OA_buffer_size_=28rev2=29?= In-Reply-To: <20250116135456.4066677-1-sai.teja.pottumuttu@intel.com> References: <20250116135456.4066677-1-sai.teja.pottumuttu@intel.com> Message-ID: <173710192986.610111.6306916315452880613@b555e5b46a47> == Series Details == Series: Add test for configurable OA buffer size (rev2) URL : https://patchwork.freedesktop.org/series/142128/ State : failure == Summary == CI Bug Log - changes from XEIGT_8195_full -> XEIGTPW_12450_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12450_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12450_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_12450_full: ### IGT changes ### #### Possible regressions #### * igt at core_hotunplug@hotreplug: - shard-dg2-set2: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at core_hotunplug@hotreplug.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-463/igt at core_hotunplug@hotreplug.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg2-set2: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-464/igt at kms_dp_linktrain_fallback@dp-fallback.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c: - shard-dg2-set2: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c.html #### Warnings #### * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [SKIP][7] ([Intel XE#2423]) -> [FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html New tests --------- New tests have been introduced between XEIGT_8195_full and XEIGTPW_12450_full: ### New IGT tests (45) ### * igt at kms_atomic@crtc-invalid-params-fence at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.56] s * igt at kms_atomic@plane-primary-legacy at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.98] s * igt at kms_cursor_crc@cursor-alpha-transparent at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.67] s * igt at kms_cursor_crc@cursor-alpha-transparent at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.42] s * igt at kms_cursor_crc@cursor-onscreen-128x42 at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.48] s * igt at kms_cursor_crc@cursor-onscreen-128x42 at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.21] s * igt at kms_cursor_crc@cursor-sliding-128x128 at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [4.20] s * igt at kms_cursor_crc@cursor-sliding-128x128 at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [4.25] s * igt at kms_cursor_edge_walk@128x128-left-edge at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [3.39] s * igt at kms_cursor_edge_walk@128x128-left-edge at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [3.25] s * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.39] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at ab-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.30] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at ac-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.18] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at ad-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.15] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at bc-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.33] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at bd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.33] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at cd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.43] s * igt at kms_flip@basic-flip-vs-dpms at a-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.80] s * igt at kms_flip@basic-flip-vs-dpms at b-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.73] s * igt at kms_flip@basic-flip-vs-dpms at c-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.74] s * igt at kms_flip@basic-flip-vs-dpms at d-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.74] s * igt at kms_flip@bo-too-big-interruptible at a-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.29] s * igt at kms_flip@bo-too-big-interruptible at b-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.16] s * igt at kms_flip@bo-too-big-interruptible at c-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.18] s * igt at kms_flip@bo-too-big-interruptible at d-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.18] s * igt at kms_flip@busy-flip at a-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.81] s * igt at kms_flip@busy-flip at b-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.71] s * igt at kms_flip@busy-flip at c-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.72] s * igt at kms_flip@busy-flip at d-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.71] s * igt at kms_flip@nonexisting-fb at a-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.30] s * igt at kms_flip@nonexisting-fb at b-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.21] s * igt at kms_flip@nonexisting-fb at c-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.21] s * igt at kms_flip@nonexisting-fb at d-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.20] s * igt at kms_sequence@queue-busy at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.67] s * igt at kms_sequence@queue-busy at pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.42] s * igt at kms_sequence@queue-busy at pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.42] s * igt at kms_sequence@queue-busy at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.42] s * igt at kms_vblank@query-busy-hang at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.63] s * igt at kms_vblank@query-busy-hang at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.38] s * igt at xe_oa@non-zero-reason at ccs-0-16mb: - Statuses : 1 pass(s) - Exec time: [2.82] s * igt at xe_oa@non-zero-reason at ccs-0-32mb: - Statuses : 1 pass(s) - Exec time: [2.81] s * igt at xe_oa@non-zero-reason at ccs-0-8mb: - Statuses : 1 pass(s) - Exec time: [2.81] s * igt at xe_oa@non-zero-reason at rcs-0-16mb: - Statuses : 1 pass(s) - Exec time: [2.88] s * igt at xe_oa@non-zero-reason at rcs-0-32mb: - Statuses : 1 pass(s) - Exec time: [2.89] s * igt at xe_oa@non-zero-reason at rcs-0-8mb: - Statuses : 1 pass(s) - Exec time: [2.88] s Known issues ------------ Here are the changes found in XEIGTPW_12450_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@unplug-rescan: - shard-bmg: [PASS][9] -> [SKIP][10] ([Intel XE#1885]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at core_hotunplug@unplug-rescan.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at core_hotunplug@unplug-rescan.html * igt at fbdev@unaligned-read: - shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#2134]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at fbdev@unaligned-read.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at fbdev@unaligned-read.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#873]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#664]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt at kms_async_flips@test-cursor.html * igt at kms_big_fb@4-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2327]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt at kms_big_fb@4-tiled-16bpp-rotate-270.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-1/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +4 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-7/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1124]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +8 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt at kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#619]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#367]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2191]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt at kms_bw@linear-tiling-3-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#367]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-7/igt at kms_bw@linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#367]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +28 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2669]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-4/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#2136]) +23 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#3442]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#3432]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-1/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#2907]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +6 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#787]) +118 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-dp-4.html * igt at kms_cdclk@mode-transition at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#314]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-463/igt at kms_cdclk@mode-transition at pipe-d-dp-4.html * igt at kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1152]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-3/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_color@ctm-0-25: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2325]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_color@degamma: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#306]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-463/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_frames@hdmi-crc-planes-random: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2252]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at kms_chamelium_frames@hdmi-crc-planes-random.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#3007]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#373]) +9 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +7 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-1/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#307]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@legacy at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#1178]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt at kms_content_protection@legacy at pipe-a-dp-2.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#1178]) +3 other tests fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2423]) +13 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#308]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1424]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#309]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2291]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [PASS][52] -> [FAIL][53] ([Intel XE#1475]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#323]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1138]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1137]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt at kms_feature_discovery@dp-mst.html - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1137]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-3/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1421]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-4/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][59] -> [FAIL][60] ([Intel XE#301] / [Intel XE#3321]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/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 ac-hdmi-a6-dp4: - shard-dg2-set2: [PASS][61] -> [FAIL][62] ([Intel XE#301]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a6-dp4.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][63] ([Intel XE#3321]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/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 at ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][64] ([Intel XE#301]) +6 other tests fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#2316]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: NOTRUN -> [FAIL][67] ([Intel XE#886]) +2 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-1/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1: - shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#886]) +4 other tests fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-7/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-8/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html * igt at kms_flip@flip-vs-suspend at c-edp1: - shard-lnl: [PASS][70] -> [DMESG-WARN][71] ([Intel XE#2932]) +3 other tests dmesg-warn [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-6/igt at kms_flip@flip-vs-suspend at c-edp1.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-4/igt at kms_flip@flip-vs-suspend at c-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1401]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling: - shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2293]) +6 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#651]) +30 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][78] ([Intel XE#2333]) +1 other test fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#656]) +20 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2312]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#651]) +7 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2311]) +5 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2313]) +6 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2136]) +18 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#653]) +29 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_getfb@getfb2-accept-ccs: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#2340]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-3/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#455]) +18 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-swap: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1503]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt at kms_hdr@static-swap.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#346]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-1/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2925]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#2934]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2927]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#3307]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2763]) +11 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-463/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-bmg: [PASS][96] -> [SKIP][97] ([Intel XE#2423]) +123 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#2763]) +7 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2763] / [Intel XE#455]) +6 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2763]) +19 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2938]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#870]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][103] -> [FAIL][104] ([Intel XE#718]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-4/igt at kms_pm_dc@dc5-dpms.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#1129]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@cursor: - shard-bmg: [PASS][106] -> [SKIP][107] ([Intel XE#2446]) +5 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_pm_rpm@cursor.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_pm_rpm@cursor.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_prop_blob@blob-prop-core: - shard-bmg: [PASS][109] -> [SKIP][110] ([Intel XE#3007]) +7 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_prop_blob@blob-prop-core.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_prop_blob@blob-prop-core.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2893]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-3/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#1489]) +12 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#1489]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr@pr-basic: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1406]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt at kms_psr@pr-basic.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2850] / [Intel XE#929]) +16 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at kms_psr@psr-dpms.html * igt at kms_psr@psr2-suspend: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt at kms_psr@psr2-suspend.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#1127]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/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-set2: NOTRUN -> [SKIP][118] ([Intel XE#3414]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2413]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [PASS][120] -> [FAIL][121] ([Intel XE#2883]) +2 other tests fail [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-3/igt at kms_setmode@basic at pipe-b-edp-1.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-7/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1435]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-4/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#330]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at kms_tv_load_detect@load-detect.html - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#330]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt at kms_tv_load_detect@load-detect.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [INCOMPLETE][125] ([Intel XE#3864]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-3.html * igt at kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#1499]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_vrr@flip-basic.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2168]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#756]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at kms_writeback@writeback-fb-id.html * igt at xe_compute_preempt@compute-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1280] / [Intel XE#455]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt at xe_compute_preempt@compute-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1123]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt at xe_copy_basic@mem-copy-linear-0x369.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#3889]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug_online@resume-dss: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2905]) +10 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt at xe_eudebug_online@resume-dss.html * igt at xe_eudebug_online@stopped-thread: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2905]) +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-1/igt at xe_eudebug_online@stopped-thread.html * igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2905]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-small: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#688]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-2/igt at xe_evict@evict-beng-small.html * igt at xe_exec_balancer@many-parallel-userptr-invalidate: - shard-bmg: [PASS][136] -> [SKIP][137] ([Intel XE#1130]) +275 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at xe_exec_balancer@many-parallel-userptr-invalidate.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at xe_exec_balancer@many-parallel-userptr-invalidate.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1392]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1392]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-dg2-set2: [PASS][140] -> [SKIP][141] ([Intel XE#1392]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_exec_basic@multigpu-once-null-rebind.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#288]) +20 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_gt_freq@freq_suspend: - shard-dg2-set2: [PASS][143] -> [ABORT][144] ([Intel XE#2625]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at xe_gt_freq@freq_suspend.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at xe_gt_freq@freq_suspend.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#255]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt at xe_huc_copy@huc_copy.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [PASS][146] -> [SKIP][147] ([Intel XE#2229]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at xe_live_ktest@xe_bo.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_eudebug: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1192] / [Intel XE#3026]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-8/igt at xe_live_ktest@xe_eudebug.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#2229]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-bmg: [PASS][150] -> [FAIL][151] ([Intel XE#1999]) +2 other tests fail [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#378]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt at xe_module_load@force-load.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2248]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-7/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#977]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#2838] / [Intel XE#979]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-basic: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2284]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt at xe_pm@d3cold-basic.html * igt at xe_pm@d3cold-mmap-system: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s2idle-basic-exec: - shard-dg2-set2: [PASS][159] -> [ABORT][160] ([Intel XE#1358]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_pm@s2idle-basic-exec.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at xe_pm@s2idle-basic-exec.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: NOTRUN -> [ABORT][161] ([Intel XE#1358] / [Intel XE#1794]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_pm@s3-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_12450/shard-lnl-6/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_pm@s3-d3hot-basic-exec: - shard-dg2-set2: [PASS][163] -> [ABORT][164] ([Intel XE#1358] / [Intel XE#1794]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-464/igt at xe_pm@s3-d3hot-basic-exec.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at xe_pm@s3-d3hot-basic-exec.html * igt at xe_pm@s4-basic-exec: - shard-lnl: [PASS][165] -> [ABORT][166] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-1/igt at xe_pm@s4-basic-exec.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-2/igt at xe_pm@s4-basic-exec.html * igt at xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#944]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#944]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-each-isolation: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#3342]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-4/igt at xe_sriov_flr@flr-each-isolation.html * igt at xe_vm@bind-no-array-conflict: - shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#1130]) +28 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at xe_vm@bind-no-array-conflict.html #### Possible fixes #### * igt at core_hotunplug@hotrebind: - shard-bmg: [SKIP][171] ([Intel XE#1885]) -> [PASS][172] +2 other tests pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at core_hotunplug@hotrebind.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt at core_hotunplug@hotrebind.html * igt at core_setmaster@master-drop-set-user: - shard-bmg: [FAIL][173] ([Intel XE#3249]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at core_setmaster@master-drop-set-user.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at core_setmaster@master-drop-set-user.html * igt at fbdev@info: - shard-bmg: [SKIP][175] ([Intel XE#2134]) -> [PASS][176] +3 other tests pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at fbdev@info.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at fbdev@info.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-bmg: [INCOMPLETE][177] ([Intel XE#3861]) -> [PASS][178] +1 other test pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_async_flips@async-flip-suspend-resume.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt at kms_async_flips@async-flip-suspend-resume.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][179] ([Intel XE#3719]) -> [PASS][180] +3 other tests pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-8/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg2-set2: [SKIP][181] ([Intel XE#2136]) -> [PASS][182] +5 other tests pass [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [SKIP][183] ([Intel XE#2136]) -> [PASS][184] +21 other tests pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_big_fb@linear-16bpp-rotate-180.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180: - shard-dg2-set2: [SKIP][185] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][187] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/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-d-dp-4: - shard-dg2-set2: [INCOMPLETE][189] ([Intel XE#3124]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-4.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/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: [DMESG-WARN][191] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-hdmi-a-6.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-hdmi-a-6.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][193] ([Intel XE#2291]) -> [PASS][194] +3 other tests pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-dg2-set2: [ABORT][195] -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at kms_fbcon_fbt@fbc-suspend.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-bmg: [SKIP][197] ([Intel XE#2316]) -> [PASS][198] +1 other test pass [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][199] ([Intel XE#301]) -> [PASS][200] +3 other tests pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-suspend: - shard-dg2-set2: [ABORT][201] ([Intel XE#2625]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at kms_flip@2x-flip-vs-suspend.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt at kms_flip@2x-flip-vs-suspend.html * igt at kms_flip@busy-flip: - shard-dg2-set2: [SKIP][203] ([Intel XE#2423] / [i915#2575]) -> [PASS][204] +14 other tests pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_flip@busy-flip.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt at kms_flip@busy-flip.html * igt at kms_flip@flip-vs-panning-interruptible: - shard-dg2-set2: [INCOMPLETE][205] ([Intel XE#2049]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@flip-vs-panning-interruptible.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt at kms_flip@flip-vs-panning-interruptible.html * igt at kms_flip@flip-vs-panning-interruptible at c-dp4: - shard-dg2-set2: [INCOMPLETE][207] -> [PASS][208] +1 other test pass [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@flip-vs-panning-interruptible at c-dp4.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt at kms_flip@flip-vs-panning-interruptible at c-dp4.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][209] ([Intel XE#2597]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-464/igt at kms_flip@flip-vs-suspend-interruptible.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-wf_vblank-interruptible: - shard-lnl: [FAIL][211] ([Intel XE#886]) -> [PASS][212] +7 other tests pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-2/igt at kms_flip@flip-vs-wf_vblank-interruptible.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-4/igt at kms_flip@flip-vs-wf_vblank-interruptible.html * igt at kms_flip@plain-flip-ts-check: - shard-bmg: [FAIL][213] ([Intel XE#2882]) -> [PASS][214] +2 other tests pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_flip@plain-flip-ts-check.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at kms_flip@plain-flip-ts-check.html - shard-lnl: [FAIL][215] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-1/igt at kms_flip@plain-flip-ts-check.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-7/igt at kms_flip@plain-flip-ts-check.html * igt at kms_frontbuffer_tracking@fbcpsr-suspend: - shard-lnl: [INCOMPLETE][217] ([Intel XE#2050]) -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcpsr-suspend.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcpsr-suspend.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][219] ([Intel XE#2571]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - shard-bmg: [SKIP][221] ([Intel XE#2423]) -> [PASS][222] +103 other tests pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-bmg: [SKIP][223] ([Intel XE#2446]) -> [PASS][224] +2 other tests pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@universal-planes-dpms: - shard-dg2-set2: [SKIP][225] ([Intel XE#2446]) -> [PASS][226] +1 other test pass [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_pm_rpm@universal-planes-dpms.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt at kms_pm_rpm@universal-planes-dpms.html * igt at kms_vrr@flipline: - shard-lnl: [FAIL][227] ([Intel XE#1522]) -> [PASS][228] +1 other test pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-7/igt at kms_vrr@flipline.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt at kms_vrr@flipline.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [SKIP][229] ([Intel XE#1392]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-463/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html * igt at xe_mmap@pci-membarrier-bad-object: - shard-dg2-set2: [SKIP][231] ([Intel XE#4045]) -> [PASS][232] +1 other test pass [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-433/igt at xe_mmap@pci-membarrier-bad-object.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt at xe_mmap@pci-membarrier-bad-object.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-dg2-set2: [ABORT][233] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at xe_pm@s4-vm-bind-unbind-all.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-463/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_spin_batch@spin-all: - shard-bmg: [SKIP][235] ([Intel XE#1130]) -> [PASS][236] +231 other tests pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_spin_batch@spin-all.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt at xe_spin_batch@spin-all.html * igt at xe_vm@invalid-extensions: - shard-dg2-set2: [SKIP][237] ([Intel XE#1130]) -> [PASS][238] +27 other tests pass [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_vm@invalid-extensions.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-463/igt at xe_vm@invalid-extensions.html #### Warnings #### * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][239] ([Intel XE#2423]) -> [SKIP][240] ([Intel XE#2370]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][241] ([Intel XE#2136]) -> [SKIP][242] ([Intel XE#2327]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: [SKIP][243] ([Intel XE#2136]) -> [SKIP][244] ([Intel XE#316]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_big_fb@linear-16bpp-rotate-270.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: [SKIP][245] ([Intel XE#2327]) -> [SKIP][246] ([Intel XE#2136]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_big_fb@linear-8bpp-rotate-270.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-16bpp-rotate-90: - shard-bmg: [SKIP][247] ([Intel XE#2327]) -> [SKIP][248] ([Intel XE#2136] / [Intel XE#2231]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-16bpp-rotate-90: - shard-dg2-set2: [SKIP][249] ([Intel XE#2136]) -> [SKIP][250] ([Intel XE#1124]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_big_fb@y-tiled-16bpp-rotate-90.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt at kms_big_fb@y-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb: - shard-bmg: [SKIP][251] ([Intel XE#2328]) -> [SKIP][252] ([Intel XE#2136]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_big_fb@y-tiled-addfb.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][253] ([Intel XE#2136]) -> [SKIP][254] ([Intel XE#610]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][255] ([Intel XE#2136]) -> [SKIP][256] ([Intel XE#1124]) +15 other tests skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][257] ([Intel XE#607]) -> [SKIP][258] ([Intel XE#2136]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][259] ([Intel XE#1124]) -> [SKIP][260] ([Intel XE#2136]) +15 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-bmg: [SKIP][261] ([Intel XE#1124]) -> [SKIP][262] ([Intel XE#2136] / [Intel XE#2231]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][263] ([Intel XE#2423]) -> [SKIP][264] ([Intel XE#2314] / [Intel XE#2894]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][265] ([Intel XE#2423]) -> [SKIP][266] ([Intel XE#367]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][267] ([Intel XE#367]) -> [SKIP][268] ([Intel XE#2423]) +4 other tests skip [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][269] ([Intel XE#2887]) -> [SKIP][270] ([Intel XE#2136] / [Intel XE#2231]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][271] ([Intel XE#2136]) -> [SKIP][272] ([Intel XE#455] / [Intel XE#787]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-bmg: [SKIP][273] ([Intel XE#2887]) -> [SKIP][274] ([Intel XE#2136]) +22 other tests skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_ccs@crc-primary-basic-y-tiled-ccs.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][275] ([Intel XE#3432]) -> [SKIP][276] ([Intel XE#2136]) +4 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][277] ([Intel XE#2136]) -> [SKIP][278] ([Intel XE#2887]) +25 other tests skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs: - shard-dg2-set2: [SKIP][279] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][280] ([Intel XE#455] / [Intel XE#787]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][281] ([Intel XE#2136]) -> [SKIP][282] ([Intel XE#2724]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_cdclk@mode-transition.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][283] ([Intel XE#2724]) -> [SKIP][284] ([Intel XE#2136]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_cdclk@mode-transition-all-outputs.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][285] ([Intel XE#2325]) -> [SKIP][286] ([Intel XE#2423]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_chamelium_color@ctm-0-50.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][287] ([Intel XE#2423]) -> [SKIP][288] ([Intel XE#2252]) +11 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: [SKIP][289] ([Intel XE#2423] / [i915#2575]) -> [SKIP][290] ([Intel XE#373]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][291] ([Intel XE#2252]) -> [SKIP][292] ([Intel XE#2423]) +12 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_chamelium_hpd@common-hpd-after-suspend.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_content_protection@legacy: - shard-bmg: [SKIP][293] ([Intel XE#2423]) -> [FAIL][294] ([Intel XE#1178]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_content_protection@legacy.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-bmg: [FAIL][295] ([Intel XE#1178]) -> [SKIP][296] ([Intel XE#2423]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_content_protection@lic-type-0.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][297] ([Intel XE#2341]) -> [SKIP][298] ([Intel XE#2423]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_content_protection@mei-interface.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-bmg: [FAIL][299] ([Intel XE#1188]) -> [SKIP][300] ([Intel XE#2423]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_content_protection@uevent.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-bmg: [SKIP][301] ([Intel XE#2423]) -> [SKIP][302] ([Intel XE#2321]) +2 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_cursor_crc@cursor-onscreen-512x512.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][303] ([Intel XE#2320]) -> [SKIP][304] ([Intel XE#2423]) +10 other tests skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_cursor_crc@cursor-random-32x32.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: [SKIP][305] ([Intel XE#2423]) -> [SKIP][306] ([Intel XE#2320]) +4 other tests skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-bmg: [SKIP][307] ([Intel XE#2321]) -> [SKIP][308] ([Intel XE#2423]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][309] ([Intel XE#2321]) -> [SKIP][310] ([Intel XE#3007]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_cursor_crc@cursor-sliding-512x512.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-bmg: [SKIP][311] ([Intel XE#2423]) -> [SKIP][312] ([Intel XE#2291]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: [SKIP][313] ([Intel XE#2286]) -> [SKIP][314] ([Intel XE#2423]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][315] ([Intel XE#877]) -> [SKIP][316] ([Intel XE#2423]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [SKIP][317] ([Intel XE#2291]) -> [SKIP][318] ([Intel XE#2423]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][319] ([Intel XE#2423] / [i915#2575]) -> [SKIP][320] ([Intel XE#323]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: [SKIP][321] ([Intel XE#1508]) -> [SKIP][322] ([Intel XE#2136] / [Intel XE#2231]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [FAIL][323] ([Intel XE#2141]) -> [SKIP][324] ([Intel XE#2136]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dsc@dsc-with-bpc: - shard-bmg: [SKIP][325] ([Intel XE#2244]) -> [SKIP][326] ([Intel XE#2136]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_dsc@dsc-with-bpc.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_dsc@dsc-with-bpc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][327] ([Intel XE#776]) -> [SKIP][328] ([Intel XE#2136]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_fbcon_fbt@psr-suspend.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][329] ([Intel XE#2423]) -> [SKIP][330] ([Intel XE#2372]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_feature_discovery@chamelium.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][331] ([Intel XE#2375]) -> [SKIP][332] ([Intel XE#2423]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_feature_discovery@dp-mst.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr2: - shard-bmg: [SKIP][333] ([Intel XE#2423]) -> [SKIP][334] ([Intel XE#2374]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_feature_discovery@psr2.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: [SKIP][335] ([Intel XE#2423] / [i915#2575]) -> [SKIP][336] ([Intel XE#1135]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_feature_discovery@psr2.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][337] -> [SKIP][338] ([Intel XE#2423]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-bmg: [INCOMPLETE][339] -> [SKIP][340] ([Intel XE#3007]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [SKIP][341] ([Intel XE#2316]) -> [SKIP][342] ([Intel XE#2423]) +2 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_flip@2x-nonexisting-fb.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@2x-plain-flip: - shard-bmg: [SKIP][343] ([Intel XE#2423]) -> [SKIP][344] ([Intel XE#2316]) +2 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_flip@2x-plain-flip.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_flip@2x-plain-flip.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][345] ([Intel XE#2136]) -> [SKIP][346] ([Intel XE#455]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][347] ([Intel XE#2380]) -> [SKIP][348] ([Intel XE#2136]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: [SKIP][349] ([Intel XE#2136]) -> [SKIP][350] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-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-32bpp-yftile-upscaling: - shard-bmg: [SKIP][351] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][352] ([Intel XE#2136]) +6 other tests skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][353] ([Intel XE#2311]) -> [SKIP][354] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][355] ([Intel XE#2136]) -> [SKIP][356] ([Intel XE#2312]) +5 other tests skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][357] ([Intel XE#2312]) -> [SKIP][358] ([Intel XE#2136]) +7 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][359] ([Intel XE#2312]) -> [SKIP][360] ([Intel XE#2311]) +4 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][361] ([Intel XE#2136]) -> [SKIP][362] ([Intel XE#651]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt: - shard-bmg: [SKIP][363] ([Intel XE#2136]) -> [SKIP][364] ([Intel XE#2136] / [Intel XE#2231]) +15 other tests skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: [SKIP][365] ([Intel XE#2136]) -> [SKIP][366] ([Intel XE#2311]) +28 other tests skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [FAIL][367] ([Intel XE#2333]) -> [SKIP][368] ([Intel XE#2136]) +23 other tests skip [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][369] ([Intel XE#2333]) -> [SKIP][370] ([Intel XE#2312]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][371] ([Intel XE#2136]) -> [FAIL][372] ([Intel XE#2333]) +22 other tests fail [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][373] ([Intel XE#2333]) -> [SKIP][374] ([Intel XE#2136] / [Intel XE#2231]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move: - shard-bmg: [SKIP][375] ([Intel XE#2312]) -> [FAIL][376] ([Intel XE#2333]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-bmg: [SKIP][377] ([Intel XE#2136]) -> [SKIP][378] ([Intel XE#2352]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-tiling-y.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][379] ([Intel XE#2311]) -> [SKIP][380] ([Intel XE#2136]) +37 other tests skip [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move: - shard-dg2-set2: [SKIP][381] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][382] ([Intel XE#651]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff: - shard-bmg: [SKIP][383] ([Intel XE#2311]) -> [SKIP][384] ([Intel XE#2312]) +2 other tests skip [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][385] ([Intel XE#2312]) -> [SKIP][386] ([Intel XE#2313]) +2 other tests skip [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][387] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][388] ([Intel XE#653]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][389] ([Intel XE#2313]) -> [SKIP][390] ([Intel XE#2312]) +5 other tests skip [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][391] ([Intel XE#2136]) -> [SKIP][392] ([Intel XE#2313]) +37 other tests skip [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][393] ([Intel XE#2313]) -> [SKIP][394] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][395] ([Intel XE#2313]) -> [SKIP][396] ([Intel XE#2136]) +37 other tests skip [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render: - shard-dg2-set2: [SKIP][397] ([Intel XE#2136]) -> [SKIP][398] ([Intel XE#653]) +4 other tests skip [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html * igt at kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][399] ([Intel XE#2502]) -> [SKIP][400] ([Intel XE#2423]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_getfb@getfb-reject-ccs.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][401] ([Intel XE#2423]) -> [SKIP][402] ([Intel XE#3374] / [Intel XE#3544]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [SKIP][403] ([Intel XE#2423]) -> [SKIP][404] ([Intel XE#1503]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_hdr@invalid-hdr.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][405] ([Intel XE#2934]) -> [SKIP][406] ([Intel XE#2136]) +1 other test skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_joiner@basic-force-ultra-joiner.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-bmg: [SKIP][407] ([Intel XE#2136]) -> [SKIP][408] ([Intel XE#2927]) [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_joiner@basic-ultra-joiner.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt at kms_joiner@basic-ultra-joiner.html - shard-dg2-set2: [SKIP][409] ([Intel XE#2136]) -> [SKIP][410] ([Intel XE#2927]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_joiner@basic-ultra-joiner.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][411] ([Intel XE#346]) -> [SKIP][412] ([Intel XE#2136]) [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_joiner@invalid-modeset-big-joiner.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][413] ([Intel XE#2136]) -> [SKIP][414] ([Intel XE#3012]) [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_joiner@invalid-modeset-force-big-joiner.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: [SKIP][415] ([Intel XE#2927]) -> [SKIP][416] ([Intel XE#2136]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_joiner@invalid-modeset-ultra-joiner.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_panel_fitting@legacy: - shard-bmg: [SKIP][417] ([Intel XE#2486]) -> [SKIP][418] ([Intel XE#2423]) +1 other test skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_panel_fitting@legacy.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_panel_fitting@legacy.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][419] ([Intel XE#2423]) -> [SKIP][420] ([Intel XE#2493]) [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_plane_multiple@tiling-yf.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: [SKIP][421] ([Intel XE#2423] / [i915#2575]) -> [SKIP][422] ([Intel XE#2763] / [Intel XE#455]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-bmg: [SKIP][423] ([Intel XE#2423]) -> [SKIP][424] ([Intel XE#2763]) +4 other tests skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][425] ([Intel XE#2763]) -> [SKIP][426] ([Intel XE#2423]) +3 other tests skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_backlight@basic-brightness: - shard-bmg: [SKIP][427] ([Intel XE#2136]) -> [SKIP][428] ([Intel XE#870]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_pm_backlight@basic-brightness.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][429] ([Intel XE#2938]) -> [SKIP][430] ([Intel XE#2136]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_pm_backlight@brightness-with-dpms.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade: - shard-bmg: [SKIP][431] ([Intel XE#870]) -> [SKIP][432] ([Intel XE#2136]) +1 other test skip [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_pm_backlight@fade.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: [SKIP][433] ([Intel XE#2391]) -> [SKIP][434] ([Intel XE#2136]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_pm_dc@dc3co-vpb-simulation.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][435] ([Intel XE#2136]) -> [SKIP][436] ([Intel XE#2392]) [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_pm_dc@dc5-psr.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][437] ([Intel XE#2446]) -> [SKIP][438] ([Intel XE#1439] / [Intel XE#836]) [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][439] ([Intel XE#1489]) -> [SKIP][440] ([Intel XE#2136]) +10 other tests skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][441] ([Intel XE#2136]) -> [SKIP][442] ([Intel XE#1489]) +6 other tests skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][443] ([Intel XE#2136]) -> [SKIP][444] ([Intel XE#1489]) +1 other test skip [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-bmg: [SKIP][445] ([Intel XE#2136]) -> [SKIP][446] ([Intel XE#2387]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_psr2_su@page_flip-nv12.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-bmg: [SKIP][447] ([Intel XE#2387]) -> [SKIP][448] ([Intel XE#2136] / [Intel XE#2231]) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_psr2_su@page_flip-xrgb8888.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: [SKIP][449] ([Intel XE#2136]) -> [SKIP][450] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html * igt at kms_psr@fbc-psr2-primary-blt: - shard-bmg: [SKIP][451] ([Intel XE#2136]) -> [SKIP][452] ([Intel XE#2234] / [Intel XE#2850]) +15 other tests skip [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_psr@fbc-psr2-primary-blt.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at kms_psr@fbc-psr2-primary-blt.html * igt at kms_psr@psr-basic: - shard-bmg: [SKIP][453] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][454] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_psr@psr-basic.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_psr@psr-basic.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: [SKIP][455] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][456] ([Intel XE#2136]) +23 other tests skip [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_psr@psr-primary-page-flip.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr2-primary-blt: - shard-dg2-set2: [SKIP][457] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][458] ([Intel XE#2850] / [Intel XE#929]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_psr@psr2-primary-blt.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt at kms_psr@psr2-primary-blt.html * igt at kms_psr@psr2-primary-render: - shard-bmg: [SKIP][459] ([Intel XE#2136]) -> [SKIP][460] ([Intel XE#2234]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_psr@psr2-primary-render.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt at kms_psr@psr2-primary-render.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][461] ([Intel XE#2136]) -> [SKIP][462] ([Intel XE#2414]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/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][463] ([Intel XE#2330]) -> [SKIP][464] ([Intel XE#2423]) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][465] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][466] ([Intel XE#2423]) +1 other test skip [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: [SKIP][467] ([Intel XE#2423]) -> [SKIP][468] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][469] ([Intel XE#2423]) -> [SKIP][470] ([Intel XE#3007]) +10 other tests skip [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-center.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: [SKIP][471] ([Intel XE#2413]) -> [SKIP][472] ([Intel XE#2423]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_scaling_modes@scaling-mode-full-aspect.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: [SKIP][473] ([Intel XE#2450]) -> [SKIP][474] ([Intel XE#2423]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_tv_load_detect@load-detect.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at kms_tv_load_detect@load-detect.html * igt at kms_vblank@ts-continuation-dpms-suspend: - shard-bmg: [SKIP][475] ([Intel XE#2423]) -> [INCOMPLETE][476] ([Intel XE#3864]) [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_vblank@ts-continuation-dpms-suspend.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt at kms_vblank@ts-continuation-dpms-suspend.html * igt at kms_vrr@cmrr: - shard-bmg: [SKIP][477] ([Intel XE#2423]) -> [SKIP][478] ([Intel XE#2168]) [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_vrr@cmrr.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt at kms_vrr@cmrr.html * igt at kms_vrr@flip-dpms: - shard-bmg: [SKIP][479] ([Intel XE#2423]) -> [SKIP][480] ([Intel XE#1499]) [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_vrr@flip-dpms.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-dg2-set2: [SKIP][481] ([Intel XE#2423] / [i915#2575]) -> [SKIP][482] ([Intel XE#455]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_vrr@seamless-rr-switch-drrs.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][483] ([Intel XE#1499]) -> [SKIP][484] ([Intel XE#2423]) +2 other tests skip [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_vrr@seamless-rr-switch-virtual.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: [SKIP][485] ([Intel XE#756]) -> [SKIP][486] ([Intel XE#2423]) [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_writeback@writeback-check-output-xrgb2101010.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][487] ([Intel XE#2423]) -> [SKIP][488] ([Intel XE#1091] / [Intel XE#2849]) [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at sriov_basic@enable-vfs-autoprobe-off.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: [SKIP][489] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][490] ([Intel XE#2423]) [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][491] ([Intel XE#1130]) -> [SKIP][492] ([Intel XE#1280] / [Intel XE#455]) [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_compute_preempt@compute-preempt.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt at xe_compute_preempt@compute-preempt.html * igt at xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][493] ([Intel XE#1130]) -> [SKIP][494] ([Intel XE#2504]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_create@multigpu-create-massive-size.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt at xe_create@multigpu-create-massive-size.html - shard-dg2-set2: [SKIP][495] ([Intel XE#1130]) -> [SKIP][496] ([Intel XE#944]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_create@multigpu-create-massive-size.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-463/igt at xe_create@multigpu-create-massive-size.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][497] ([Intel XE#1130]) -> [SKIP][498] ([Intel XE#2905]) +14 other tests skip [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: [SKIP][499] ([Intel XE#1130]) -> [SKIP][500] ([Intel XE#3889]) [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html - shard-bmg: [SKIP][501] ([Intel XE#1130]) -> [SKIP][502] ([Intel XE#3889]) [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@discovery-empty: - shard-bmg: [SKIP][503] ([Intel XE#2905]) -> [SKIP][504] ([Intel XE#1130]) +17 other tests skip [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at xe_eudebug@discovery-empty.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at xe_eudebug@discovery-empty.html * igt at xe_eudebug_online@set-breakpoint: - shard-dg2-set2: [SKIP][505] ([Intel XE#1130]) -> [SKIP][506] ([Intel XE#2905]) [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_eudebug_online@set-breakpoint.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt at xe_eudebug_online@set-breakpoint.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: [SKIP][507] ([Intel XE#1130]) -> [SKIP][508] ([Intel XE#2322]) +9 other tests skip [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][509] ([Intel XE#2322]) -> [SKIP][510] ([Intel XE#1130]) +16 other tests skip [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at xe_exec_basic@multigpu-once-null-rebind.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@twice-basic-prefetch: - shard-dg2-set2: [SKIP][511] ([Intel XE#1130]) -> [SKIP][512] ([Intel XE#288]) +3 other tests skip [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_exec_fault_mode@twice-basic-prefetch.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt at xe_exec_fault_mode@twice-basic-prefetch.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][513] ([Intel XE#1130]) -> [SKIP][514] ([Intel XE#2459] / [Intel XE#2596]) [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_media_fill@media-fill.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt at xe_media_fill@media-fill.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-bmg: [SKIP][515] ([Intel XE#4045]) -> [SKIP][516] ([Intel XE#1130]) [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at xe_mmap@pci-membarrier-bad-pagesize.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_oa@buffer-fill: - shard-dg2-set2: [SKIP][517] ([Intel XE#1130]) -> [SKIP][518] ([Intel XE#2541] / [Intel XE#3573]) [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_oa@buffer-fill.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt at xe_oa@buffer-fill.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][519] ([Intel XE#1130]) -> [SKIP][520] ([Intel XE#2245]) [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_pat@pat-index-xelp.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt at xe_pat@pat-index-xelp.html * igt at xe_pat@pat-index-xelpg: - shard-bmg: [SKIP][521] ([Intel XE#1130]) -> [SKIP][522] ([Intel XE#2236]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at xe_pat@pat-index-xelpg.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt at xe_pat@pat-index-xelpg.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: [SKIP][523] ([Intel XE#1130]) -> [SKIP][524] ([Intel XE#2284]) +1 other test skip [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at xe_pm@s2idle-d3cold-basic-exec.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-bmg: [SKIP][525] ([Intel XE#2284]) -> [SKIP][526] ([Intel XE#1130]) +2 other tests skip [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at xe_pm@s3-d3cold-basic-exec.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_query@multigpu-query-hwconfig: - shard-bmg: [SKIP][527] ([Intel XE#1130]) -> [SKIP][528] ([Intel XE#944]) +3 other tests skip [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at xe_query@multigpu-query-hwconfig.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt at xe_query@multigpu-query-hwconfig.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][529] ([Intel XE#944]) -> [SKIP][530] ([Intel XE#1130]) +5 other tests skip [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at xe_query@multigpu-query-invalid-cs-cycles.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-bmg: [SKIP][531] ([Intel XE#3342]) -> [SKIP][532] ([Intel XE#1130]) [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at xe_sriov_flr@flr-vf1-clear.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt at xe_sriov_flr@flr-vf1-clear.html [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [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#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#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [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#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#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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [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#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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [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#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [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#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [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#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#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026 [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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [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#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#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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#3861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3861 [Intel XE#3864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3864 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [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#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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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_8195 -> IGTPW_12450 * Linux: xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c -> xe-2501-596a18adf934dd4a61e15c72b7e1e4ddae489474 IGTPW_12450: c39b75a0b25211edcf46f78b95c8bf019186a04f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8195: 8195 xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c xe-2501-596a18adf934dd4a61e15c72b7e1e4ddae489474: 596a18adf934dd4a61e15c72b7e1e4ddae489474 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From jan.sokolowski at intel.com Fri Jan 17 08:20:55 2025 From: jan.sokolowski at intel.com (Jan Sokolowski) Date: Fri, 17 Jan 2025 08:20:55 +0000 Subject: [PATCH i-g-t v3 1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test Message-ID: <20250117082055.154635-1-jan.sokolowski@intel.com> In some cases, ccs_mode_all_engines can fail, which will cause test fixture to not execute properly and put the rest of the tests in an unstable state. Also, ccs_mode_all_engines changes the state of the card for other tests as well, thus it should clean after itself too, which until now it didn't do. Refactor exec-queue-placements test so that all possible failure paths are serviced, and add a proper cleanup method, ccs_mode_restore. Signed-off-by: Jan Sokolowski --- v2: Forgot proper path in title v3: More changes. Moved test back to where it originally was --- tests/intel/xe_eudebug.c | 41 ++++++++++++++++++++++++++++++++++------ 1 file changed, 35 insertions(+), 6 deletions(-) diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c index 91e9ae885..9787183ed 100644 --- a/tests/intel/xe_eudebug.c +++ b/tests/intel/xe_eudebug.c @@ -2797,7 +2797,7 @@ static void ccs_mode_all_engines(int num_gt) igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", num_slices) > 0); igt_assert(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", &ccs_mode) > 0); - igt_assert(num_slices == ccs_mode); + igt_require(num_slices == ccs_mode); close(gt_fd); } @@ -2805,6 +2805,25 @@ static void ccs_mode_all_engines(int num_gt) igt_require(num_gts_with_ccs_mode > 0); } +static void ccs_mode_restore(int num_gt) +{ + int fd, gt, gt_fd, ccs_mode, num_slices; + + for (gt = 0; gt < num_gt; gt++) { + fd = drm_open_driver(DRIVER_XE); + gt_fd = xe_sysfs_gt_open(fd, gt); + close(fd); + + if (igt_sysfs_scanf(gt_fd, "num_cslices", "%u", &num_slices) <= 0) + continue; + + igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", 1) > 0); + igt_assert(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", &ccs_mode) > 0); + igt_assert(ccs_mode == 1); + close(gt_fd); + } +} + igt_main { bool was_enabled; @@ -2920,16 +2939,26 @@ igt_main test_empty_discovery(fd, DISCOVERY_DESTROY_RESOURCES, 16); igt_subtest_group { - igt_fixture { + bool restore_ccs = false; + + igt_subtest("exec-queue-placements") { drm_close_driver(fd); + fd = -1; ccs_mode_all_engines(gt_count); + restore_ccs = true; fd = drm_open_driver(DRIVER_XE); - } - - igt_subtest("exec-queue-placements") test_basic_sessions(fd, EXEC_QUEUES_PLACEMENTS, 1, true); + } + igt_fixture { + if (restore_ccs) { + drm_close_driver(fd); + fd = -1; + ccs_mode_restore(gt_count); + } + if (fd == -1) + fd = drm_open_driver(DRIVER_XE); + } } - igt_fixture { xe_eudebug_enable(fd, was_enabled); drm_close_driver(fd); -- 2.34.1 From patchwork at emeril.freedesktop.org Fri Jan 17 08:34:37 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 08:34:37 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/amdgpu/amd=5Fabm?= =?utf-8?q?=3A_Fix_test_failed_on_self-refresh_panel?= In-Reply-To: <20250115095904.1965-1-chiahsuan.chung@amd.com> References: <20250115095904.1965-1-chiahsuan.chung@amd.com> Message-ID: <173710287784.610111.18043054783085832232@b555e5b46a47> == Series Details == Series: tests/amdgpu/amd_abm: Fix test failed on self-refresh panel URL : https://patchwork.freedesktop.org/series/143552/ State : failure == Summary == CI Bug Log - changes from IGT_8193_full -> IGTPW_12441_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12441_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12441_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_12441/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12441_full: ### IGT changes ### #### Possible regressions #### * igt at gem_tiled_swapping@non-threaded: - shard-rkl: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-3/igt at gem_tiled_swapping@non-threaded.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/IGT_8193/shard-dg1-12/igt at perf_pmu@busy-check-all at vcs1.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/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/IGT_8193/shard-mtlp-8/igt at perf_pmu@busy-check-all at vcs1.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-1/igt at perf_pmu@busy-check-all at vcs1.html New tests --------- New tests have been introduced between IGT_8193_full and IGTPW_12441_full: ### New IGT tests (82) ### * igt at gem_ctx_engines@independent at bcs0: - Statuses : 5 pass(s) - Exec time: [0.05, 0.24] s * igt at gem_ctx_engines@independent at rcs0: - Statuses : 5 pass(s) - Exec time: [0.06, 0.24] s * igt at gem_ctx_engines@independent at vcs0: - Statuses : 5 pass(s) - Exec time: [0.05, 0.18] s * igt at gem_ctx_engines@independent at vcs1: - Statuses : 3 pass(s) - Exec time: [0.06, 0.21] s * igt at gem_ctx_engines@independent at vecs0: - Statuses : 5 pass(s) - Exec time: [0.05, 0.19] s * igt at gem_exec_async@forked-writes: - Statuses : 3 pass(s) - Exec time: [0.17, 0.33] s * igt at gem_exec_async@forked-writes at bcs0: - Statuses : 3 pass(s) - Exec time: [0.03, 0.05] s * igt at gem_exec_async@forked-writes at rcs0: - Statuses : 3 pass(s) - Exec time: [0.04, 0.07] s * igt at gem_exec_async@forked-writes at vcs0: - Statuses : 3 pass(s) - Exec time: [0.03, 0.04] s * igt at gem_exec_async@forked-writes at vcs1: - Statuses : 3 pass(s) - Exec time: [0.03, 0.04] s * igt at gem_exec_async@forked-writes at vecs0: - Statuses : 3 pass(s) - Exec time: [0.03, 0.04] s * igt at gem_exec_balancer@fairslice: - Statuses : 4 pass(s) - Exec time: [1.03, 3.62] s * igt at gem_exec_balancer@nohangcheck: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 3.89] s * igt at gem_exec_balancer@noheartbeat: - Statuses : 2 pass(s) 3 skip(s) - Exec time: [0.0, 1.06] s * igt at gem_exec_balancer@persistence: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 3.87] s * igt at gem_exec_balancer@sequential: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 5.53] s * igt at gem_exec_create@legacy: - Statuses : 4 pass(s) - Exec time: [2.05, 4.19] s * igt at gem_exec_schedule@fairslice: - Statuses : 5 pass(s) - Exec time: [8.00, 14.15] s * igt at gem_exec_schedule@fairslice-all: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 2.11] s * igt at gem_exec_schedule@fairslice at bcs0: - Statuses : 5 pass(s) - Exec time: [2.00, 2.03] s * igt at gem_exec_schedule@fairslice at rcs0: - Statuses : 5 pass(s) - Exec time: [2.0, 2.05] s * igt at gem_exec_schedule@fairslice at vcs0: - Statuses : 5 pass(s) - Exec time: [2.0, 2.03] s * igt at gem_exec_schedule@fairslice at vcs1: - Statuses : 3 pass(s) - Exec time: [2.02, 2.03] s * igt at gem_exec_schedule@fairslice at vecs0: - Statuses : 5 pass(s) - Exec time: [2.00, 2.02] s * igt at gem_exec_schedule@preempt-user: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 0.28] s * igt at gem_exec_schedule@preempt-user at bcs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.09] s * igt at gem_exec_schedule@preempt-user at rcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@preempt-user at vcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@preempt-user at vcs1: - Statuses : 3 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@preempt-user at vecs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.07] s * igt at gem_exec_schedule@u-fairslice: - Statuses : 4 pass(s) - Exec time: [10.06, 14.15] s * igt at gem_exec_schedule@u-fairslice-all: - Statuses : 4 pass(s) - Exec time: [2.04, 2.08] s * igt at gem_exec_schedule@u-fairslice at bcs0: - Statuses : 4 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-fairslice at rcs0: - Statuses : 4 pass(s) - Exec time: [2.01, 2.04] s * igt at gem_exec_schedule@u-fairslice at vcs0: - Statuses : 4 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-fairslice at vcs1: - Statuses : 4 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-fairslice at vecs0: - Statuses : 4 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-independent: - Statuses : 6 pass(s) - Exec time: [0.10, 9.13] s * igt at gem_exec_schedule@u-independent at rcs0: - Statuses : 6 pass(s) - Exec time: [0.06, 1.13] s * igt at gem_exec_schedule@u-independent at vcs0: - Statuses : 5 pass(s) - Exec time: [0.11, 2.02] s * igt at gem_exec_schedule@u-independent at vcs1: - Statuses : 3 pass(s) - Exec time: [0.10, 2.02] s * igt at gem_exec_schedule@u-independent at vecs0: - Statuses : 5 pass(s) - Exec time: [0.11, 2.00] s * igt at gem_exec_schedule@u-lateslice: - Statuses : 5 pass(s) - Exec time: [0.06, 0.16] s * igt at gem_exec_schedule@u-lateslice at bcs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-lateslice at rcs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@u-lateslice at vcs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-lateslice at vcs1: - Statuses : 4 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-lateslice at vecs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-semaphore-codependency: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 0.03] s * igt at gem_exec_schedule@u-semaphore-noskip: - Statuses : 5 pass(s) - Exec time: [0.19, 0.82] s * igt at gem_exec_schedule@u-semaphore-resolve: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 0.07] s * igt at gem_exec_schedule@u-semaphore-user: - Statuses : 3 pass(s) 1 skip(s) - Exec time: [0.0, 0.08] s * igt at gem_exec_schedule@u-submit-early-slice: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 0.37] s * igt at gem_exec_schedule@u-submit-early-slice at bcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-early-slice at rcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.07] s * igt at gem_exec_schedule@u-submit-early-slice at vcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-early-slice at vcs1: - Statuses : 4 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-early-slice at vecs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-golden-slice: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 0.31] s * igt at gem_exec_schedule@u-submit-golden-slice at bcs0: - Statuses : 4 pass(s) - Exec time: [0.03, 0.05] s * igt at gem_exec_schedule@u-submit-golden-slice at rcs0: - Statuses : 4 pass(s) - Exec time: [0.03, 0.06] s * igt at gem_exec_schedule@u-submit-golden-slice at vcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-golden-slice at vcs1: - Statuses : 3 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@u-submit-golden-slice at vecs0: - Statuses : 4 pass(s) - Exec time: [0.03, 0.05] s * igt at gem_exec_schedule@u-submit-late-slice: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 0.33] s * igt at gem_exec_schedule@u-submit-late-slice at bcs0: - Statuses : 6 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-late-slice at rcs0: - Statuses : 6 pass(s) - Exec time: [0.02, 0.07] s * igt at gem_exec_schedule@u-submit-late-slice at vcs0: - Statuses : 6 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-late-slice at vcs1: - Statuses : 4 pass(s) - Exec time: [0.03, 0.05] s * igt at gem_exec_schedule@u-submit-late-slice at vecs0: - Statuses : 6 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_softpin@32b-excludes-last-page: - Statuses : 5 pass(s) - Exec time: [0.00] s * igt at gem_softpin@full: - Statuses : 4 pass(s) - Exec time: [0.01] s * igt at gem_softpin@zero: - Statuses : 5 pass(s) - Exec time: [0.00, 0.01] s * igt at gen9_exec_parse@shadow-peek: - Statuses : 1 pass(s) 3 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_invalid_mode@overflow-vrefresh at pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.04] s * igt at kms_invalid_mode@overflow-vrefresh at pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt at kms_invalid_mode@overflow-vrefresh at pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt at kms_invalid_mode@overflow-vrefresh at pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt at perf@non-zero-reason: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 50.59] s * igt at perf_pmu@gt-awake: - Statuses : 5 pass(s) - Exec time: [2.53, 9.03] s * igt at perf_pmu@invalid-open: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt at perf_pmu@rc6-suspend: - Statuses : 3 pass(s) - Exec time: [7.53, 15.95] s Known issues ------------ Here are the changes found in IGTPW_12441_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-17/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8411]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at api_intel_bb@object-reloc-purge-cache.html * igt at debugfs_test@basic-hwmon: - shard-tglu-1: NOTRUN -> [SKIP][8] ([i915#9318]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at debugfs_test@basic-hwmon.html * igt at device_reset@cold-reset-bound: - shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-2/igt at device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][11] ([i915#11078]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-1/igt at device_reset@cold-reset-bound.html * igt at drm_fdinfo@busy-idle at bcs0: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +17 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-7/igt at drm_fdinfo@busy-idle at bcs0.html * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +6 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-1/igt at drm_fdinfo@busy-idle at vecs0.html * igt at drm_fdinfo@isolation at vecs0: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8414]) +18 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-17/igt at drm_fdinfo@isolation at vecs0.html * igt at gem_bad_reloc@negative-reloc-lut: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#3281]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-5/igt at gem_bad_reloc@negative-reloc-lut.html * igt at gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#3936]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-8/igt at gem_busy@semaphore.html * igt at gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at gem_ccs@block-copy-compressed.html - shard-rkl: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-4/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-2/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-4/igt at gem_close_race@multigpu-basic-process.html - shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#7697]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#6335]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-7/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#8562]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-7/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][24] ([i915#12353]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk8/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at gem_ctx_persistence@heartbeat-hang.html * igt at gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][26] ([i915#1099]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-snb2/igt at gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt at gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#5882]) +7 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-7/igt at gem_ctx_persistence@saturated-hostile-nopreempt.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-2/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-2/igt at gem_ctx_sseu@invalid-args.html * igt at gem_eio@in-flight-suspend: - shard-rkl: [PASS][30] -> [DMESG-WARN][31] ([i915#12964]) +26 other tests dmesg-warn [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-2/igt at gem_eio@in-flight-suspend.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-5/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@kms: - shard-dg2: NOTRUN -> [FAIL][32] ([i915#5784]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-5/igt at gem_eio@kms.html - shard-dg1: [PASS][33] -> [FAIL][34] ([i915#5784]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-12/igt at gem_eio@kms.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at gem_eio@kms.html * igt at gem_eio@reset-stress: - shard-dg2: NOTRUN -> [FAIL][35] ([i915#12543] / [i915#5784]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at gem_eio@reset-stress.html - shard-snb: NOTRUN -> [FAIL][36] ([i915#8898]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-snb7/igt at gem_eio@reset-stress.html * igt at gem_eio@unwedge-stress: - shard-dg1: [PASS][37] -> [FAIL][38] ([i915#12714] / [i915#5784]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-18/igt at gem_eio@unwedge-stress.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-false-hang: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4812]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-18/igt at gem_exec_balancer@bonded-false-hang.html * igt at gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4771]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4771]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-17/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4036]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-7/igt at gem_exec_balancer@invalid-bonds.html - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4036]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#4525]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-7/igt at gem_exec_balancer@parallel.html * igt at gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#4525]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-9/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4812]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-8/igt at gem_exec_balancer@sliced.html * igt at gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][47] ([i915#11965]) +1 other test fail [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-8/igt at gem_exec_capture@capture.html * igt at gem_exec_capture@capture-invisible at smem0: - shard-glk: NOTRUN -> [SKIP][48] ([i915#6334]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk2/igt at gem_exec_capture@capture-invisible at smem0.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][49] ([i915#11965]) +4 other tests fail [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-2/igt at gem_exec_capture@capture at vecs0-lmem0.html - shard-dg1: NOTRUN -> [FAIL][50] ([i915#11965]) +2 other tests fail [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3539]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-18/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-5/igt at gem_exec_flush@basic-uc-ro-default.html - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3539] / [i915#4852]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/igt at gem_exec_flush@basic-uc-ro-default.html * igt at gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3281]) +15 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-7/igt at gem_exec_reloc@basic-scanout.html * igt at gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3281]) +11 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/igt at gem_exec_reloc@basic-wc-read-active.html * igt at gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#3281]) +15 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-8/igt at gem_exec_reloc@basic-write-read-active.html * igt at gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-8/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_schedule@thriceslice: - shard-snb: NOTRUN -> [SKIP][58] +473 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-snb2/igt at gem_exec_schedule@thriceslice.html * igt at gem_exec_suspend@basic-s0 at lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][59] ([i915#11441]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-3/igt at gem_exec_suspend@basic-s0 at lmem0.html * igt at gem_exec_suspend@basic-s3 at smem: - shard-glk: NOTRUN -> [INCOMPLETE][60] ([i915#13196]) +1 other test incomplete [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk1/igt at gem_exec_suspend@basic-s3 at smem.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4860]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-11/igt at gem_fence_thrash@bo-write-verify-y.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4860]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-18/igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt at gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#2190]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-5/igt at gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][64] ([i915#2190]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk1/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4613] / [i915#7582]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-2/igt at gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613] / [i915#7582]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-5/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@basic: - shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#4613]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at gem_lmem_swapping@basic.html * igt at gem_lmem_swapping@heavy-random: - shard-glk: NOTRUN -> [SKIP][68] ([i915#4613]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk3/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#12193]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-17/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4565]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-17/igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4613]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-5/igt at gem_lmem_swapping@parallel-random-verify.html - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4613]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-3/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: NOTRUN -> [TIMEOUT][73] ([i915#5493]) +1 other test timeout [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][74] ([i915#4613]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-8/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8289]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-3/igt at gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][76] ([i915#8289]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at gem_media_fill@media-fill.html * igt at gem_mmap_gtt@basic-read-write-distinct: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4077]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-2/igt at gem_mmap_gtt@basic-read-write-distinct.html * igt at gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4077]) +13 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-7/igt at gem_mmap_gtt@cpuset-big-copy-odd.html * igt at gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4083]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-5/igt at gem_mmap_wc@invalid-flags.html * igt at gem_mmap_wc@read-write-distinct: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4083]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-1/igt at gem_mmap_wc@read-write-distinct.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4083]) +8 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3282]) +9 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-13/igt at gem_partial_pwrite_pread@reads-snoop.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3282]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-8/igt at gem_partial_pwrite_pread@reads-snoop.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3282]) +9 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_pread@exhaustion: - shard-tglu: NOTRUN -> [WARN][85] ([i915#2658]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-8/igt at gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][86] ([i915#2658]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk5/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3282]) +8 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-4/igt at gem_pread@snoop.html * igt at gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][88] ([i915#12964]) +1 other test timeout [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-5/igt at gem_pxp@create-protected-buffer.html * igt at gem_pxp@create-regular-context-1: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4270]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-11/igt at gem_pxp@create-regular-context-1.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][90] ([i915#12917] / [i915#12964]) +2 other tests timeout [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-7/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4270]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/igt at gem_pxp@reject-modify-context-protection-on.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#5190] / [i915#8428]) +9 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-8/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#8428]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-7/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#8411]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-1/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4079]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4079]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-11/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#4885]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-4/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_tiled_fence_blits@basic: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4077]) +11 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-13/igt at gem_tiled_fence_blits@basic.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][99] ([i915#13449]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-snb2/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#3297] / [i915#3323]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-3/igt at gem_userptr_blits@dmabuf-sync.html - shard-dg1: NOTRUN -> [SKIP][101] ([i915#3297]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3297]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-7/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#3282] / [i915#3297]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-4/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#3297] / [i915#4880]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-2/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#3297] / [i915#4880]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#3297]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-4/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#3297]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-2/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_workarounds@suspend-resume-context: - shard-glk: NOTRUN -> [INCOMPLETE][108] ([i915#13356]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk9/igt at gem_workarounds@suspend-resume-context.html * igt at gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#2856]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-7/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@bb-large: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#2527] / [i915#2856]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at gen9_exec_parse@bb-large.html * igt at gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#2527]) +5 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-5/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#2527]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-13/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#2856]) +5 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at gen9_exec_parse@bb-start-param.html * igt at gen9_exec_parse@valid-registers: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#2527] / [i915#2856]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-2/igt at gen9_exec_parse@valid-registers.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#4881]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-8/igt at i915_fb_tiling.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [DMESG-WARN][116] ([i915#13475] / [i915#4391] / [i915#4423]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#7091]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-11/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#8399]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-4/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#11681] / [i915#6621]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-18/igt at i915_pm_rps@basic-api.html - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#11681] / [i915#6621]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-4/igt at i915_pm_rps@basic-api.html * igt at i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#6245]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-17/igt at i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][122] ([i915#6245]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-9/igt at i915_query@hwconfig_table.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6188]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-4/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_selftest@mock at memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][124] ([i915#9311]) +1 other test dmesg-warn [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-4/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][125] -> [INCOMPLETE][126] ([i915#4817]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-2/igt at i915_suspend@basic-s3-without-i915.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-3/igt at i915_suspend@basic-s3-without-i915.html * igt at intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#7707]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-3/igt at intel_hwmon@hwmon-read.html * igt at intel_hwmon@hwmon-write: - shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#7707]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#4212]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-18/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#4212]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-6/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4212]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-5/igt at kms_addfb_basic@clobberred-modifier.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-glk: NOTRUN -> [FAIL][132] ([i915#10991] / [i915#13335]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk8/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [FAIL][133] ([i915#13335]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk8/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-2.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [FAIL][134] ([i915#10991]) +1 other test fail [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk8/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-hdmi-a-2.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][135] ([i915#8709]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/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-atomic at pipe-d-edp-1-4-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#8709]) +11 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-4/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-edp-1-4-mc-ccs.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][137] ([i915#8709]) +7 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-2/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-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#8709]) +15 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/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@invalid-async-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#12967]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-2/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#9531]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition: - shard-dg1: [PASS][141] -> [FAIL][142] ([i915#5956]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-12/igt at kms_atomic_transition@plane-all-modeset-transition.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at kms_atomic_transition@plane-all-modeset-transition.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#1769] / [i915#3555]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-8/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][144] -> [FAIL][145] ([i915#11808] / [i915#5956]) +1 other test fail [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-6/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/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-4: - shard-dg1: NOTRUN -> [FAIL][146] ([i915#5956]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-4.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#5286]) +8 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-4/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#5286]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-10/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#4538] / [i915#5286]) +4 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#5286]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-18/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#5286]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/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-rkl: NOTRUN -> [SKIP][152] ([i915#3638]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-3/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#3638]) +6 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#4538] / [i915#5190]) +17 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#5190]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-5/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][156] +34 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-2/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][157] +7 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-6/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#4538]) +6 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-18/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-4/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#12313]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-18/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#12313]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-4/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#6095]) +39 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-9/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-suspend-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#12805]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/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][164] ([i915#6095]) +103 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-3/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-dg1: NOTRUN -> [SKIP][165] ([i915#12805]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/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][166] ([i915#6095]) +156 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/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-ccs: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#6095]) +14 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-5/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#6095]) +19 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#12313]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-4/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][170] ([i915#10307] / [i915#6095]) +165 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-5/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][171] ([i915#12313]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-7/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][172] ([i915#12313]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-5/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][173] ([i915#12313]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#11616] / [i915#7213]) +4 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at kms_cdclk@mode-transition at pipe-a-dp-4.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#3742]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-5/igt at kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][176] ([i915#3742]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#4087]) +4 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-5/igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3.html * igt at kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][178] +22 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-2/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +12 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-5/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#11151] / [i915#7828]) +8 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-9/igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt at kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#11151] / [i915#7828]) +12 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at kms_chamelium_frames@hdmi-crc-multiple.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#11151] / [i915#7828]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html - shard-dg1: NOTRUN -> [SKIP][183] ([i915#11151] / [i915#7828]) +11 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#11151] / [i915#7828]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-6/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-3/igt at kms_content_protection@atomic-dpms.html - shard-dg2: NOTRUN -> [TIMEOUT][186] ([i915#7173]) +1 other test timeout [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#9424]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-4/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#3116] / [i915#3299]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-8/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#9424]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-11/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#9433]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-13/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#7118] / [i915#9424]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-4/igt at kms_content_protection@type1.html - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#6944] / [i915#9424]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-5/igt at kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][194] ([i915#7116] / [i915#9424]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#13049]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-7/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#13049]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-1/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#3555]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-4/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#13049]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#8814]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-8/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#3555]) +6 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-17/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#3555]) +6 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-8/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#13049]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-9/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_crc@cursor-suspend at pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [DMESG-WARN][203] ([i915#4423]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at kms_cursor_crc@cursor-suspend at pipe-d-hdmi-a-4.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#13046] / [i915#5354]) +8 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-8/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#4103]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][206] ([i915#4103] / [i915#4213]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-18/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#9809]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-8/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#9067]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-5/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#4103] / [i915#4213]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-2/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#9723]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-1/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#8588]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#3804]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-7/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-tglu: NOTRUN -> [SKIP][213] ([i915#12402]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-5/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#8812]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-2/igt at kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#8812]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-basic: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#3840]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-17/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3840] / [i915#9688]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-4/igt at kms_dsc@dsc-fractional-bpp.html - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#3840]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#3840]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-5/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#3840]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-4/igt at kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-3/igt at kms_dsc@dsc-with-formats.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][222] ([i915#9878]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk4/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#3469]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#4854]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-8/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#1839]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-4/igt at kms_feature_discovery@display-3x.html - shard-dg1: NOTRUN -> [SKIP][226] ([i915#1839]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-17/igt at kms_feature_discovery@display-3x.html - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#1839]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-5/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#9337]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-2/igt at kms_feature_discovery@dp-mst.html - shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#9337]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][230] ([i915#9337]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#658]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-17/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1: - shard-snb: [PASS][232] -> [FAIL][233] ([i915#11989]) +6 other tests fail [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-snb5/igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-snb5/igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@2x-flip-vs-dpms: - shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#3637]) +3 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#9934]) +7 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#8381]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-modeset: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3637]) +3 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-6/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#9934]) +7 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-5/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][239] ([i915#4839]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk7/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#3637]) +5 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-10/igt at kms_flip@2x-nonexisting-fb-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#9934]) +9 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-7/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][242] ([i915#12964]) +16 other tests dmesg-warn [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-4/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a1.html * igt at kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#8381]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-4/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg1: [PASS][244] -> [DMESG-WARN][245] ([i915#4423]) +5 other tests dmesg-warn [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-13/igt at kms_flip@flip-vs-suspend-interruptible.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/igt at kms_flip@flip-vs-suspend-interruptible.html - shard-glk: NOTRUN -> [INCOMPLETE][246] ([i915#12745] / [i915#4839]) +1 other test incomplete [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk5/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][247] ([i915#12745]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk5/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate-interruptible: - shard-glk: [PASS][248] -> [FAIL][249] ([i915#11989]) +2 other tests fail [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-glk5/igt at kms_flip@plain-flip-fb-recreate-interruptible.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk7/igt at kms_flip@plain-flip-fb-recreate-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp4: - shard-dg2: NOTRUN -> [FAIL][250] ([i915#11989]) +3 other tests fail [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-dp4.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a1: - shard-tglu: [PASS][251] -> [FAIL][252] ([i915#10826]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-tglu-4/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a1.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at b-edp1: - shard-mtlp: [PASS][253] -> [FAIL][254] ([i915#11989]) +4 other tests fail [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at b-edp1.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at b-edp1.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at d-hdmi-a1: - shard-tglu: [PASS][255] -> [FAIL][256] ([i915#11989]) +6 other tests fail [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-tglu-4/igt at kms_flip@plain-flip-fb-recreate-interruptible at d-hdmi-a1.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at d-hdmi-a1.html * igt at kms_flip@wf_vblank-ts-check-interruptible at a-edp1: - shard-mtlp: NOTRUN -> [FAIL][257] ([i915#11989]) +1 other test fail [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-7/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-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#3555]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#2672] / [i915#3555]) +6 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-1/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-mtlp: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8810]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-1/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-yftile-to-64bpp-yftile-downscaling: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-10/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#2587] / [i915#2672]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-10/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling 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][264] ([i915#2672]) +6 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/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-downscaling: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#2672] / [i915#3555]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-18/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#2587] / [i915#2672]) +2 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-18/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-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-17/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#2672]) +3 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#2587] / [i915#2672]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#2672] / [i915#3555]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-3/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 at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode.html * igt at kms_flip_tiling@flip-change-tiling: - shard-rkl: [PASS][273] -> [DMESG-WARN][274] ([i915#12917] / [i915#12964]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-4/igt at kms_flip_tiling@flip-change-tiling.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-7/igt at kms_flip_tiling@flip-change-tiling.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#8708]) +3 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-6/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: [PASS][276] -> [FAIL][277] ([i915#6880]) +1 other test fail [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-2/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#8708]) +24 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#1825]) +63 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/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][280] ([i915#8708]) +23 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-17/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][281] ([i915#10056] / [i915#13353]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk6/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#3458]) +28 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#1825]) +12 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][284] +57 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-10/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][285] +56 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-18/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#3023]) +36 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-5/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#5439]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-9/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#5354]) +51 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-11/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][289] +37 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html - shard-dg1: NOTRUN -> [SKIP][290] ([i915#3458]) +22 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#10433] / [i915#3458]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#12713]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-8/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][293] ([i915#3555] / [i915#8228]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/igt at kms_hdr@static-swap.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_12441/shard-tglu-9/igt at kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#3555] / [i915#8228]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-2/igt at kms_hdr@static-swap.html - shard-rkl: NOTRUN -> [SKIP][296] ([i915#3555] / [i915#8228]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-5/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#3555] / [i915#8228]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8228]) +4 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-3/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#10656]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-7/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#12388]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-8/igt at kms_joiner@basic-force-big-joiner.html - shard-dg2: [PASS][301] -> [SKIP][302] ([i915#12388]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-10/igt at kms_joiner@basic-force-big-joiner.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-11/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#12394] / [i915#13522]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][304] ([i915#12339]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-8/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#10656]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][306] ([i915#10656]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-2/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#12388]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-8/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#10656] / [i915#13522]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-4/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][309] ([i915#12394] / [i915#13522]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-2/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#12339]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#4816]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#6301]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-10/igt at kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][313] ([i915#6301]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-7/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-dg1: NOTRUN -> [SKIP][314] ([i915#6301]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-17/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: NOTRUN -> [DMESG-FAIL][315] ([i915#12964]) +2 other tests dmesg-fail [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-6/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: [PASS][316] -> [INCOMPLETE][317] ([i915#12756]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-glk5/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk8/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][318] ([i915#12178]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk2/igt at kms_plane_alpha_blend@alpha-basic.html * igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][319] ([i915#7862]) +1 other test fail [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk2/igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#3555]) +8 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-5/igt at kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][321] ([i915#3555] / [i915#8806]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-5/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#6953]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-4/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#12247]) +11 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-7/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#12247]) +8 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-8/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-b: - shard-tglu: NOTRUN -> [SKIP][325] ([i915#12247]) +8 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-10/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-b.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#12247]) +15 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-3/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-dg2: NOTRUN -> [SKIP][327] ([i915#12247] / [i915#6953] / [i915#9423]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-5/igt at kms_plane_scaling@planes-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][328] ([i915#12247] / [i915#6953]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-5/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#12247] / [i915#9423]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-2/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-1: NOTRUN -> [SKIP][330] ([i915#12247]) +4 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/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-dg1: NOTRUN -> [SKIP][331] ([i915#12247] / [i915#6953]) +2 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-17/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][332] ([i915#12247] / [i915#6953]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-1/igt at kms_plane_scaling@planes-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b: - shard-dg1: NOTRUN -> [SKIP][333] ([i915#12247]) +21 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-18/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#5354]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-4/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#9812]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-10/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#9685]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-2/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#3361]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-1/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][338] ([i915#9340]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-14/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#8430]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-11/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#9519]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-4/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg1: NOTRUN -> [SKIP][341] ([i915#9519]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-13/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#9519]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-3/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][343] -> [SKIP][344] ([i915#9519]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-5/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-7/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: [PASS][345] -> [INCOMPLETE][346] ([i915#10553]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-glk3/igt at kms_pm_rpm@system-suspend-modeset.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk3/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][347] ([i915#6524]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-5/igt at kms_prime@basic-crc-hybrid.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][348] ([i915#11520]) +15 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-2/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][349] ([i915#11520]) +13 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-snb7/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][350] ([i915#11520]) +11 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk2/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#11520]) +3 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#12316]) +2 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-6/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#11520]) +12 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-2/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][354] ([i915#11520]) +6 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-7/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][355] ([i915#11520]) +9 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-13/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#9683]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-3/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#9683]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-4/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][358] ([i915#9683]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-12/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][359] ([i915#1072] / [i915#9732]) +26 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-17/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][360] ([i915#9732]) +13 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-7/igt at kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt at kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][361] ([i915#9688]) +5 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-2/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#1072] / [i915#9732]) +34 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-4/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr2-sprite-blt: - shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#9732]) +8 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at kms_psr@psr2-sprite-blt.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][364] +307 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-glk3/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +30 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-5/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][366] ([i915#9685]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu-1: NOTRUN -> [SKIP][367] ([i915#9685]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][368] ([i915#5289]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-rkl-2/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#12755] / [i915#5190]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-10/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][370] ([i915#5289]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: NOTRUN -> [SKIP][371] ([i915#5289]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg1-17/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-mtlp: NOTRUN -> [SKIP][372] ([i915#12755]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-mtlp-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][373] ([i915#12755]) +2 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-dg2-8/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_selftest@drm_framebuffer: - shard-tglu: NOTRUN -> [ABORT][374] ([i915#13179]) +1 other test abort [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/shard-tglu-5/igt at kms_selftest@drm_framebuffer.html * igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1: - shard-rkl: [PASS][375] -> [DMESG-FAIL][376] ([i915#12964]) +1 other test dmesg-fail [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/sh == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12441/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 09:21:57 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 09:21:57 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/chamelium/kms=5Fch?= =?utf-8?q?amelium=5Fcolor=3A_force_connector_reprobe_after_plugging_ports?= In-Reply-To: <20250115151507.2023293-1-kunal1.joshi@intel.com> References: <20250115151507.2023293-1-kunal1.joshi@intel.com> Message-ID: <173710571772.649610.9352045950403523259@b555e5b46a47> == Series Details == Series: tests/chamelium/kms_chamelium_color: force connector reprobe after plugging ports URL : https://patchwork.freedesktop.org/series/143560/ State : failure == Summary == CI Bug Log - changes from IGT_8193_full -> IGTPW_12442_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12442_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12442_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_12442/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12442_full: ### IGT changes ### #### Possible regressions #### * igt at dmabuf@all-tests at dma_fence_unwrap: - shard-dg1: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-18/igt at dmabuf@all-tests at dma_fence_unwrap.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-18/igt at dmabuf@all-tests at dma_fence_unwrap.html * igt at gem_exec_balancer@semaphore: - shard-mtlp: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-5/igt at gem_exec_balancer@semaphore.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-7/igt at gem_exec_balancer@semaphore.html * igt at i915_pm_rpm@debugfs-read: - shard-rkl: [PASS][5] -> [SKIP][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-5/igt at i915_pm_rpm@debugfs-read.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/igt at i915_pm_rpm@debugfs-read.html * igt at perf_pmu@all-busy-check-all: - shard-dg1: [PASS][7] -> [FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-14/igt at perf_pmu@all-busy-check-all.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-12/igt at perf_pmu@all-busy-check-all.html * igt at perf_pmu@busy-check-all at vecs0: - shard-mtlp: [PASS][9] -> [FAIL][10] +1 other test fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-8/igt at perf_pmu@busy-check-all at vecs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-6/igt at perf_pmu@busy-check-all at vecs0.html * igt at perf_pmu@module-unload: - shard-tglu-1: NOTRUN -> [INCOMPLETE][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at perf_pmu@module-unload.html New tests --------- New tests have been introduced between IGT_8193_full and IGTPW_12442_full: ### New IGT tests (82) ### * igt at gem_ctx_engines@independent at bcs0: - Statuses : 4 pass(s) - Exec time: [0.05, 0.21] s * igt at gem_ctx_engines@independent at rcs0: - Statuses : 4 pass(s) - Exec time: [0.06, 0.19] s * igt at gem_ctx_engines@independent at vcs0: - Statuses : 4 pass(s) - Exec time: [0.05, 0.16] s * igt at gem_ctx_engines@independent at vcs1: - Statuses : 2 pass(s) - Exec time: [0.06, 0.11] s * igt at gem_ctx_engines@independent at vecs0: - Statuses : 4 pass(s) - Exec time: [0.05, 0.16] s * igt at gem_exec_async@forked-writes: - Statuses : 5 pass(s) - Exec time: [0.09, 0.33] s * igt at gem_exec_async@forked-writes at bcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_async@forked-writes at rcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.07] s * igt at gem_exec_async@forked-writes at vcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_async@forked-writes at vcs1: - Statuses : 4 pass(s) - Exec time: [0.03, 0.04] s * igt at gem_exec_async@forked-writes at vecs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_balancer@fairslice: - Statuses : 3 pass(s) 1 skip(s) - Exec time: [0.0, 3.62] s * igt at gem_exec_balancer@nohangcheck: - Statuses : 5 pass(s) - Exec time: [0.75, 3.93] s * igt at gem_exec_balancer@noheartbeat: - Statuses : 2 pass(s) 4 skip(s) - Exec time: [0.0, 1.06] s * igt at gem_exec_balancer@persistence: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 3.72] s * igt at gem_exec_balancer@sequential: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 5.55] s * igt at gem_exec_create@legacy: - Statuses : 5 pass(s) - Exec time: [2.04, 2.09] s * igt at gem_exec_schedule@fairslice: - Statuses : 2 pass(s) - Exec time: [8.04, 10.10] s * igt at gem_exec_schedule@fairslice-all: - Statuses : 6 pass(s) - Exec time: [2.04, 2.12] s * igt at gem_exec_schedule@fairslice at bcs0: - Statuses : 2 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@fairslice at rcs0: - Statuses : 2 pass(s) - Exec time: [2.02] s * igt at gem_exec_schedule@fairslice at vcs0: - Statuses : 2 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@fairslice at vcs1: - Statuses : 1 pass(s) - Exec time: [2.02] s * igt at gem_exec_schedule@fairslice at vecs0: - Statuses : 2 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@preempt-user: - Statuses : 4 pass(s) - Exec time: [0.07, 0.24] s * igt at gem_exec_schedule@preempt-user at bcs0: - Statuses : 4 pass(s) - Exec time: [0.01, 0.03] s * igt at gem_exec_schedule@preempt-user at rcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.06] s * igt at gem_exec_schedule@preempt-user at vcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.03] s * igt at gem_exec_schedule@preempt-user at vcs1: - Statuses : 3 pass(s) - Exec time: [0.02, 0.03] s * igt at gem_exec_schedule@preempt-user at vecs0: - Statuses : 4 pass(s) - Exec time: [0.01, 0.03] s * igt at gem_exec_schedule@u-fairslice: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 12.11] s * igt at gem_exec_schedule@u-fairslice-all: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 2.11] s * igt at gem_exec_schedule@u-fairslice at bcs0: - Statuses : 5 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-fairslice at rcs0: - Statuses : 5 pass(s) - Exec time: [2.01, 2.04] s * igt at gem_exec_schedule@u-fairslice at vcs0: - Statuses : 5 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-fairslice at vcs1: - Statuses : 3 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-fairslice at vecs0: - Statuses : 5 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-independent: - Statuses : 7 pass(s) - Exec time: [0.11, 9.70] s * igt at gem_exec_schedule@u-independent at rcs0: - Statuses : 7 pass(s) - Exec time: [0.06, 1.70] s * igt at gem_exec_schedule@u-independent at vcs0: - Statuses : 6 pass(s) - Exec time: [0.11, 2.08] s * igt at gem_exec_schedule@u-independent at vcs1: - Statuses : 4 pass(s) - Exec time: [0.12, 1.97] s * igt at gem_exec_schedule@u-independent at vecs0: - Statuses : 6 pass(s) - Exec time: [0.10, 2.00] s * igt at gem_exec_schedule@u-lateslice: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 0.12] s * igt at gem_exec_schedule@u-lateslice at bcs0: - Statuses : 4 pass(s) - Exec time: [0.02] s * igt at gem_exec_schedule@u-lateslice at rcs0: - Statuses : 4 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@u-lateslice at vcs0: - Statuses : 4 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-lateslice at vcs1: - Statuses : 3 pass(s) - Exec time: [0.02] s * igt at gem_exec_schedule@u-lateslice at vecs0: - Statuses : 4 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-semaphore-codependency: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 0.05] s * igt at gem_exec_schedule@u-semaphore-noskip: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 0.41] s * igt at gem_exec_schedule@u-semaphore-resolve: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 0.07] s * igt at gem_exec_schedule@u-semaphore-user: - Statuses : 5 pass(s) - Exec time: [0.01, 0.08] s * igt at gem_exec_schedule@u-submit-early-slice: - Statuses : 4 pass(s) - Exec time: [0.09, 0.37] s * igt at gem_exec_schedule@u-submit-early-slice at bcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-early-slice at rcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.07] s * igt at gem_exec_schedule@u-submit-early-slice at vcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-early-slice at vcs1: - Statuses : 3 pass(s) - Exec time: [0.03, 0.05] s * igt at gem_exec_schedule@u-submit-early-slice at vecs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-golden-slice: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 0.33] s * igt at gem_exec_schedule@u-submit-golden-slice at bcs0: - Statuses : 5 pass(s) - Exec time: [0.03, 0.05] s * igt at gem_exec_schedule@u-submit-golden-slice at rcs0: - Statuses : 5 pass(s) - Exec time: [0.03, 0.06] s * igt at gem_exec_schedule@u-submit-golden-slice at vcs0: - Statuses : 5 pass(s) - Exec time: [0.03, 0.06] s * igt at gem_exec_schedule@u-submit-golden-slice at vcs1: - Statuses : 4 pass(s) - Exec time: [0.03, 0.05] s * igt at gem_exec_schedule@u-submit-golden-slice at vecs0: - Statuses : 5 pass(s) - Exec time: [0.03, 0.06] s * igt at gem_exec_schedule@u-submit-late-slice: - Statuses : 2 pass(s) - Exec time: [0.08, 0.12] s * igt at gem_exec_schedule@u-submit-late-slice at bcs0: - Statuses : 2 pass(s) - Exec time: [0.02] s * igt at gem_exec_schedule@u-submit-late-slice at rcs0: - Statuses : 2 pass(s) - Exec time: [0.02, 0.03] s * igt at gem_exec_schedule@u-submit-late-slice at vcs0: - Statuses : 2 pass(s) - Exec time: [0.02] s * igt at gem_exec_schedule@u-submit-late-slice at vcs1: - Statuses : 1 pass(s) - Exec time: [0.02] s * igt at gem_exec_schedule@u-submit-late-slice at vecs0: - Statuses : 2 pass(s) - Exec time: [0.02, 0.03] s * igt at gem_softpin@32b-excludes-last-page: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt at gem_softpin@full: - Statuses : 3 pass(s) 1 skip(s) - Exec time: [0.0, 0.02] s * igt at gem_softpin@zero: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt at gen9_exec_parse@shadow-peek: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt at kms_invalid_mode@overflow-vrefresh at pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.04] s * igt at kms_invalid_mode@overflow-vrefresh at pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt at kms_invalid_mode@overflow-vrefresh at pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt at kms_invalid_mode@overflow-vrefresh at pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt at perf@non-zero-reason: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 51.29] s * igt at perf_pmu@gt-awake: - Statuses : 7 pass(s) - Exec time: [2.01, 8.93] s * igt at perf_pmu@invalid-open: - Statuses : 6 pass(s) - Exec time: [0.0, 0.00] s * igt at perf_pmu@rc6-suspend: - Statuses : 2 pass(s) - Exec time: [7.57, 8.55] s Known issues ------------ Here are the changes found in IGTPW_12442_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8411]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-17/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8411]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-3/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at debugfs_test@basic-hwmon: - shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#9318]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at debugfs_test@basic-hwmon.html * igt at device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#11078]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/igt at device_reset@cold-reset-bound.html * igt at device_reset@unbind-cold-reset-rebind: - shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#11078]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-idle at vcs1: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8414]) +6 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at drm_fdinfo@busy-idle at vcs1.html * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#8414]) +6 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-6/igt at drm_fdinfo@busy-idle at vecs0.html * igt at drm_fdinfo@virtual-busy-all: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#8414]) +8 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-3/igt at drm_fdinfo@virtual-busy-all.html * igt at gem_bad_reloc@negative-reloc-lut: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#3281]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-3/igt at gem_bad_reloc@negative-reloc-lut.html * igt at gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#3936]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-11/igt at gem_busy@semaphore.html * igt at gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-12/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#3555] / [i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-10/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#9323]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-7/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-9/igt at gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][27] ([i915#7697]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-1/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@create-clear: - shard-rkl: [PASS][28] -> [DMESG-WARN][29] ([i915#12964]) +20 other tests dmesg-warn [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-1/igt at gem_create@create-clear.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-7/igt at gem_create@create-clear.html * igt at gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#6335]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-2/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#8562]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-4/igt at gem_create@create-ext-set-pat.html - shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#8562]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][33] ([i915#12353]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk7/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#8555]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-3/igt at gem_ctx_persistence@heartbeat-hang.html * igt at gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#8555]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-12/igt at gem_ctx_persistence@heartbeat-stop.html * igt at gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][36] ([i915#1099]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-snb5/igt at gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt at gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#5882]) +7 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-4/igt at gem_ctx_persistence@saturated-hostile-nopreempt.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#280]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-6/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][39] ([i915#280]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-6/igt at gem_ctx_sseu@invalid-args.html * igt at gem_eio@in-flight-1us: - shard-mtlp: [PASS][40] -> [ABORT][41] ([i915#13193]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-8/igt at gem_eio@in-flight-1us.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-4/igt at gem_eio@in-flight-1us.html * igt at gem_eio@kms: - shard-dg1: [PASS][42] -> [FAIL][43] ([i915#5784]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-12/igt at gem_eio@kms.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-17/igt at gem_eio@kms.html * igt at gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4771]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-8/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_12442/shard-dg2-2/igt at gem_exec_balancer@bonded-false-hang.html - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4812]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-14/igt at gem_exec_balancer@bonded-false-hang.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4036]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-8/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4525]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/igt at gem_exec_balancer@parallel.html * igt at gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#4525]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-4/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#4525]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_big@single: - shard-tglu: [PASS][51] -> [ABORT][52] ([i915#11713]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-tglu-9/igt at gem_exec_big@single.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-5/igt at gem_exec_big@single.html * igt at gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][53] ([i915#11965]) +1 other test fail [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-5/igt at gem_exec_capture@capture.html * igt at gem_exec_capture@capture-invisible at smem0: - shard-glk: NOTRUN -> [SKIP][54] ([i915#6334]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk4/igt at gem_exec_capture@capture-invisible at smem0.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][55] ([i915#11965]) +4 other tests fail [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-3/igt at gem_exec_capture@capture at vecs0-lmem0.html - shard-dg1: NOTRUN -> [FAIL][56] ([i915#11965]) +2 other tests fail [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-12/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#3539]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-12/igt at gem_exec_flush@basic-uc-prw-default.html - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3539]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-10/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#3539] / [i915#4852]) +5 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-7/igt at gem_exec_flush@basic-uc-ro-default.html * igt at gem_exec_flush@basic-wb-prw-default: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3539] / [i915#4852]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-14/igt at gem_exec_flush@basic-wb-prw-default.html * igt at gem_exec_reloc@basic-cpu-gtt: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#3281]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-5/igt at gem_exec_reloc@basic-cpu-gtt.html * igt at gem_exec_reloc@basic-cpu-read: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3281]) +16 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-5/igt at gem_exec_reloc@basic-cpu-read.html * igt at gem_exec_reloc@basic-scanout: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3281]) +9 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-14/igt at gem_exec_reloc@basic-scanout.html * igt at gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4537] / [i915#4812]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-2/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_suspend@basic-s3 at smem: - shard-glk: NOTRUN -> [INCOMPLETE][65] ([i915#13196]) +1 other test incomplete [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk4/igt at gem_exec_suspend@basic-s3 at smem.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4860]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-7/igt at gem_fence_thrash@bo-write-verify-y.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4860]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-12/igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt at gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#2190]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/igt at gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][69] ([i915#2190]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk5/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#4613] / [i915#7582]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-6/igt at gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][71] ([i915#4613] / [i915#7582]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-3/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-multi: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#4613]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-7/igt at gem_lmem_swapping@heavy-multi.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][73] ([i915#4613]) +6 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk8/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-dg1: NOTRUN -> [SKIP][74] ([i915#12193]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4565]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at gem_lmem_swapping@heavy-verify-multi-ccs at lmem0.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#4613]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4613]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-6/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#4613]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-9/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#8289]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-2/igt at gem_media_fill@media-fill.html * igt at gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#284]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-7/igt at gem_media_vme.html * igt at gem_mmap_gtt@basic-read-write-distinct: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4077]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-5/igt at gem_mmap_gtt@basic-read-write-distinct.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4077]) +14 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-10/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][83] -> [ABORT][84] ([i915#10729]) +1 other test abort [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-1/igt at gem_mmap_offset@clear-via-pagefault.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-2/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4083]) +10 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-3/igt at gem_mmap_wc@invalid-flags.html * igt at gem_mmap_wc@read-write-distinct: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4083]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-1/igt at gem_mmap_wc@read-write-distinct.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4083]) +6 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-14/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3282]) +6 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at gem_partial_pwrite_pread@reads-snoop.html - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3282]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-8/igt at gem_partial_pwrite_pread@reads-snoop.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3282]) +11 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-10/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][91] ([i915#2658]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][92] ([i915#2658]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk5/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#3282]) +8 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-1/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@create-valid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][94] ([i915#12964]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/igt at gem_pxp@create-valid-protected-context.html * igt at gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][95] ([i915#12917] / [i915#12964]) +3 other tests timeout [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/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-dg2: NOTRUN -> [SKIP][96] ([i915#4270]) +5 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-5/igt at gem_pxp@protected-raw-src-copy-not-readible.html * igt at gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#4270]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at gem_pxp@reject-modify-context-protection-on.html * igt at gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#8428]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-3/igt at gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#5190] / [i915#8428]) +12 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-10/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4079]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-10/igt at gem_render_tiled_blits@basic.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#8411]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#4079]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-14/igt at gem_set_tiling_vs_gtt.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4885]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-4/igt at gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4885]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-14/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_tiled_fence_blits@basic: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4077]) +11 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-17/igt at gem_tiled_fence_blits@basic.html * igt at gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#3297] / [i915#3323]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-5/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#3297]) +5 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-7/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#3282] / [i915#3297]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-1/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#3297] / [i915#4880]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-2/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@readonly-unsync: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#3297]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-6/igt at gem_userptr_blits@readonly-unsync.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#3297]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-4/igt at gem_userptr_blits@unsync-unmap-after-close.html - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#3297]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][113] +443 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-snb7/igt at gem_vm_create@invalid-create.html * igt at gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#2856]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-5/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#2527]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-17/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@secure-batches: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#2527] / [i915#2856]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-9/igt at gen9_exec_parse@secure-batches.html * igt at gen9_exec_parse@shadow-peek (NEW): - shard-dg2: NOTRUN -> [SKIP][117] ([i915#2856]) +5 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-10/igt at gen9_exec_parse@shadow-peek.html - shard-rkl: NOTRUN -> [SKIP][118] ([i915#2527]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-4/igt at gen9_exec_parse@shadow-peek.html - shard-tglu-1: NOTRUN -> [SKIP][119] ([i915#2527] / [i915#2856]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at gen9_exec_parse@shadow-peek.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#4881]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-11/igt at i915_fb_tiling.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][121] -> [DMESG-WARN][122] ([i915#13475]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-tglu-10/igt at i915_module_load@reload-with-fault-injection.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-9/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#6412]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at i915_module_load@resize-bar.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#7091]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-2/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#8399]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-7/igt at i915_pm_freq_api@freq-reset-multiple.html * igt at i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [PASS][126] -> [FAIL][127] ([i915#12942]) +1 other test fail [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-1/igt at i915_pm_rc6_residency@rc6-accuracy.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-5/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at i915_pm_rc6_residency@rc6-idle: - shard-dg1: NOTRUN -> [FAIL][128] ([i915#3591]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: NOTRUN -> [FAIL][129] ([i915#12739] / [i915#3591]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html * igt at i915_pm_rpm@system-suspend: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#13328]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-7/igt at i915_pm_rpm@system-suspend.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-dg1: [PASS][131] -> [DMESG-FAIL][132] ([i915#4423]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-13/igt at i915_pm_rpm@system-suspend-execbuf.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-17/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#11681] / [i915#6621]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-18/igt at i915_pm_rps@basic-api.html - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#11681] / [i915#6621]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-4/igt at i915_pm_rps@basic-api.html - shard-dg2: NOTRUN -> [SKIP][135] ([i915#11681] / [i915#6621]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-11/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#11681]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-11/igt at i915_pm_rps@thresholds-park.html * igt at i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#6245]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][138] ([i915#6245]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-9/igt at i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][139] ([i915#6245]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-1/igt at i915_query@hwconfig_table.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6188]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-5/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [PASS][141] -> [DMESG-FAIL][142] ([i915#12061]) +1 other test dmesg-fail [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-8/igt at i915_selftest@live at workarounds.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-2/igt at i915_selftest@live at workarounds.html * igt at i915_selftest@mock at memory_region: - shard-tglu-1: NOTRUN -> [DMESG-WARN][143] ([i915#9311]) +1 other test dmesg-warn [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s2idle-without-i915: - shard-rkl: NOTRUN -> [DMESG-WARN][144] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-2/igt at i915_suspend@basic-s2idle-without-i915.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][145] ([i915#4817]) +1 other test incomplete [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk2/igt at i915_suspend@forcewake.html * igt at intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#7707]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-2/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#4212]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-10/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#4212]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-18/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#4212]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-4/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-b-hdmi-a-2-y-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#8709]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/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-atomic at pipe-d-edp-1-4-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#8709]) +11 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-1/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-edp-1-4-mc-ccs.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-1-y-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#8709]) +7 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-1-y-rc-ccs-cc.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][153] ([i915#8709]) +15 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-18/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-d-hdmi-a-2-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#8709]) +23 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-11/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-2-4-mc-ccs.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#9531]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-11/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][156] ([i915#9531]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_interruptible@legacy-cursor: - shard-dg1: [PASS][157] -> [DMESG-WARN][158] ([i915#4423]) +4 other tests dmesg-warn [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-13/igt at kms_atomic_interruptible@legacy-cursor.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-17/igt at kms_atomic_interruptible@legacy-cursor.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#1769] / [i915#3555]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-17/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-hdmi-a-1: - shard-tglu: [PASS][160] -> [FAIL][161] ([i915#11808]) +1 other test fail [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-tglu-10/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-hdmi-a-1.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-3/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-hdmi-a-1.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#5286]) +7 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-2/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-32bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#5286]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_big_fb@4-tiled-32bpp-rotate-0.html * igt at kms_big_fb@4-tiled-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#4423] / [i915#4538] / [i915#5286]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-17/igt at kms_big_fb@4-tiled-32bpp-rotate-180.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#5286]) +4 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-10/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#4538] / [i915#5286]) +6 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-14/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][167] -> [FAIL][168] ([i915#5138]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-6/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#3638]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-2/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#3638]) +7 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-17/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#5190]) +6 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-2/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#4538] / [i915#5190]) +17 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-2/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html - shard-dg1: NOTRUN -> [SKIP][173] ([i915#4538]) +4 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-14/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][174] +26 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-7/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][175] +7 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-1/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_ccs@bad-pixel-format-y-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-4/igt at kms_ccs@bad-pixel-format-y-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#6095]) +39 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-6/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-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#12805]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-12/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#6095]) +59 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#6095]) +101 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/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-mtl-rc-ccs-cc at pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#6095]) +147 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-12/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][182] ([i915#6095]) +27 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/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-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#12313]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-11/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#12313]) +4 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-2/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#10307] / [i915#6095]) +163 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/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-dg1: NOTRUN -> [SKIP][186] ([i915#12313]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][187] ([i915#12313]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-9/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#12313]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-1/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#3742]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-4/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#4087]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/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-tglu-1: NOTRUN -> [SKIP][191] ([i915#11151] / [i915#7828]) +6 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#11151] / [i915#7828]) +11 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-7/igt at kms_chamelium_edid@hdmi-edid-read.html * igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#11151] / [i915#7828]) +7 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-3/igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt at kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#11151] / [i915#7828]) +13 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-3/igt at kms_chamelium_frames@hdmi-crc-multiple.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#11151] / [i915#7828]) +9 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#11151] / [i915#7828]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-2/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#7118] / [i915#9424]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-7/igt at kms_content_protection@atomic.html * igt at kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-9/igt at kms_content_protection@atomic-dpms.html - shard-rkl: NOTRUN -> [SKIP][199] ([i915#7118] / [i915#9424]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-1/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#3116] / [i915#3299]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-7/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#3116]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-2/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#9424]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-5/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#6944] / [i915#9424]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_content_protection@mei-interface.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#9424]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-18/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#7118]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-4/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#6944] / [i915#9424]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-6/igt at kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][207] ([i915#7116] / [i915#9424]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-256x256: - shard-rkl: [PASS][208] -> [DMESG-WARN][209] ([i915#12917] / [i915#12964]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-7/igt at kms_cursor_crc@cursor-offscreen-256x256.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/igt at kms_cursor_crc@cursor-offscreen-256x256.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#13049]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/igt at kms_cursor_crc@cursor-offscreen-512x170.html - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#13049]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#3555]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#13049]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-8/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#3555]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-8/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#8814]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-4/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3555]) +5 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555]) +10 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-11/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#13049]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#13049]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-4/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_edge_walk@128x128-right-edge at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][220] ([i915#12964]) +23 other tests dmesg-warn [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-5/igt at kms_cursor_edge_walk@128x128-right-edge at pipe-a-hdmi-a-2.html * igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#13046] / [i915#5354]) +8 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-2/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#4103] / [i915#4213]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-5/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#4103] / [i915#4213]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-12/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#9809]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-2/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][225] ([i915#2346]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk1/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [FAIL][226] ([i915#2346]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-5/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#9067]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-6/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#4103]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#4103]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [DMESG-WARN][230] ([i915#4423]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-17/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#8588]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-14/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#1257]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/igt at kms_dp_aux_dev.html - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#1257]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#12402]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-7/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#8812]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#3840] / [i915#9688]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-10/igt at kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][237] ([i915#3840]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-6/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#3840]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-formats: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#3840]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/igt at kms_dsc@dsc-with-formats.html - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#3840]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_dsc@dsc-with-formats.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][241] ([i915#9878]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk8/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#3469]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-7/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#2065] / [i915#4854]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-7/igt at kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][244] ([i915#4854]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-2/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#1839]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-7/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#1839]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/igt at kms_feature_discovery@display-3x.html - shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#1839]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_feature_discovery@display-3x.html - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#1839]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-1/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#1839]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-12/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#9337]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-10/igt at kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][251] ([i915#9337]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-12/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#658]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-18/igt at kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][253] ([i915#658]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-4/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#9934]) +8 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-5/igt at kms_flip@2x-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#9934]) +5 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#9934]) +7 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-5/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-flip-vs-modeset: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#3637]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-4/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][258] ([i915#12745] / [i915#1982] / [i915#4839]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk7/igt at kms_flip@2x-flip-vs-suspend.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][259] ([i915#4839]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk1/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][260] ([i915#1982] / [i915#4839]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk7/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#3637]) +3 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-10/igt at kms_flip@2x-nonexisting-fb-interruptible.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#3637]) +6 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#8381]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-7/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][264] ([i915#12745] / [i915#4839]) +1 other test incomplete [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk5/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][265] ([i915#12745]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk5/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-snb: NOTRUN -> [FAIL][266] ([i915#11989]) +3 other tests fail [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-snb4/igt at kms_flip@plain-flip-ts-check-interruptible.html - shard-mtlp: [PASS][267] -> [FAIL][268] ([i915#11989]) +1 other test fail [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-6/igt at kms_flip@plain-flip-ts-check-interruptible.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-2/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip@plain-flip-ts-check-interruptible at b-hdmi-a1: - shard-tglu-1: NOTRUN -> [FAIL][269] ([i915#11989]) +3 other tests fail [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_flip@plain-flip-ts-check-interruptible at b-hdmi-a1.html * igt at kms_flip@wf_vblank-ts-check: - shard-dg2: [PASS][270] -> [FAIL][271] ([i915#11989]) +1 other test fail [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-4/igt at kms_flip@wf_vblank-ts-check.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-7/igt at kms_flip@wf_vblank-ts-check.html * igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1: - shard-tglu: [PASS][272] -> [FAIL][273] ([i915#11989]) +1 other test fail [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-tglu-7/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-5/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html * igt at kms_flip@wf_vblank-ts-check at b-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][274] ([i915#11989]) +2 other tests fail [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-7/igt at kms_flip@wf_vblank-ts-check at b-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#2672] / [i915#3555]) +6 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-7/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-mtlp: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8810]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-7/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-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#2672]) +6 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/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-downscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#2587] / [i915#2672]) +3 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-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-32bpp-ytileccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#2587] / [i915#2672]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#2587] / [i915#2672] / [i915#3555]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/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-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#2672] / [i915#3555]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-12/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-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#2587] / [i915#2672]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-4/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: - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#2672] / [i915#3555]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#2672] / [i915#3555]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#2672]) +3 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-11/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-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#8708]) +2 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#1825]) +48 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][292] ([i915#10056] / [i915#13353]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk2/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#10433] / [i915#3458]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#8708]) +21 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-12/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][295] +49 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html - shard-dg1: NOTRUN -> [SKIP][296] +47 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-18/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#1825]) +12 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][298] +50 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-10/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#4423]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#3023]) +30 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#5439]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][302] +447 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#3458]) +24 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#5354]) +52 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#8708]) +25 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-11/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#3458]) +19 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#6118]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-11/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@bpc-switch: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#3555] / [i915#8228]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#12713]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-8/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#8228]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-12/igt at kms_hdr@static-swap.html - shard-tglu: NOTRUN -> [SKIP][311] ([i915#3555] / [i915#8228]) +2 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-10/igt at kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#3555] / [i915#8228]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-8/igt at kms_hdr@static-swap.html - shard-rkl: NOTRUN -> [SKIP][313] ([i915#3555] / [i915#8228]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-5/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#3555] / [i915#8228]) +2 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-5/igt at kms_hdr@static-toggle.html * igt at kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][315] ([i915#12388]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-4/igt at kms_joiner@basic-force-big-joiner.html - shard-dg2: [PASS][316] -> [SKIP][317] ([i915#12388]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-10/igt at kms_joiner@basic-force-big-joiner.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-2/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][318] ([i915#12394] / [i915#13522]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#12339]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-2/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#10656]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][321] ([i915#10656]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-11/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#12394] / [i915#13522]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-2/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#4070] / [i915#4816]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-5/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#6301]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-3/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#6301]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-11/igt at kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][326] ([i915#6301]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-18/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][327] +17 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-5/igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1: - shard-glk: [PASS][328] -> [INCOMPLETE][329] ([i915#12756] / [i915#1982]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-glk5/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk9/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#3555]) +6 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-6/igt at kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][331] ([i915#3555] / [i915#8806]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-10/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#6953]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-6/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][333] ([i915#8292]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-10/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-mtlp: NOTRUN -> [SKIP][334] ([i915#12247]) +8 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-3/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-b: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#12247]) +8 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-2/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-b.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#12247]) +12 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/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-dg2: NOTRUN -> [SKIP][337] ([i915#12247] / [i915#6953] / [i915#9423]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-10/igt at kms_plane_scaling@planes-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][338] ([i915#12247] / [i915#6953]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-4/igt at kms_plane_scaling@planes-downscale-factor-0-25.html - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#12247] / [i915#6953]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#12247]) +15 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-11/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: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#12247] / [i915#9423]) +2 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/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-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][342] ([i915#12247] / [i915#6953]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/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-c: - shard-dg1: NOTRUN -> [SKIP][343] ([i915#12247]) +17 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b: - shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#12247]) +3 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/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][345] ([i915#12247] / [i915#6953]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-1/igt at kms_plane_scaling@planes-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][346] ([i915#12247] / [i915#3555]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-9/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#5354]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-4/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg1: NOTRUN -> [SKIP][348] ([i915#12343]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][349] ([i915#9812]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-8/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][350] ([i915#5354]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-12/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][351] ([i915#9685]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-5/igt at kms_pm_dc@dc5-psr.html - shard-dg2: NOTRUN -> [SKIP][352] ([i915#9685]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-7/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#3828]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-1/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#5978]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-5/igt at kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [SKIP][355] ([i915#3361]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-1/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#4281]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-5/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][357] ([i915#9340]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-18/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#8430]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-2/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@i2c: - shard-rkl: [PASS][359] -> [SKIP][360] ([i915#12916]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-4/igt at kms_pm_rpm@i2c.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-2/igt at kms_pm_rpm@i2c.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#9519]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-11/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#9519]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-5/igt at kms_pm_rpm@modeset-non-lpsp.html - shard-dg2: [PASS][363] -> [SKIP][364] ([i915#9519]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-11/igt at kms_pm_rpm@modeset-non-lpsp.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-4/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][365] -> [SKIP][366] ([i915#9519]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-5/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][367] ([i915#6524]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-9/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][368] ([i915#6524] / [i915#6805]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-5/igt at kms_prime@basic-crc-vgem.html * igt at kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][369] ([i915#6524]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-5/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#11520]) +20 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-7/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][371] ([i915#11520]) +11 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-snb1/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][372] ([i915#11520]) +8 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-2/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-mtlp: NOTRUN -> [SKIP][373] ([i915#12316]) +2 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-5/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][374] ([i915#11520]) +5 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-8/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][375] ([i915#11520]) +8 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-13/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][376] ([i915#11520]) +14 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-glk3/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][377] ([i915#11520]) +3 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/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-dg2: NOTRUN -> [SKIP][378] ([i915#9683]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg2-10/igt at kms_psr2_su@page_flip-nv12.html - shard-rkl: NOTRUN -> [SKIP][379] ([i915#9683]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-rkl-6/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][380] ([i915#9683]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-14/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-basic: - shard-mtlp: NOTRUN -> [SKIP][381] ([i915#9688]) +3 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-mtlp-1/igt at kms_psr@fbc-pr-basic.html * igt at kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][382] ([i915#9732]) +10 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-tglu-10/igt at kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt at kms_psr@pr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][383] ([i915#1072] / [i915#9732]) +20 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/shard-dg1-18/igt at kms_psr@pr-cursor-plane-onoff.html * igt at kms_psr@ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12442/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From chiahsuan.chung at amd.com Fri Jan 17 09:59:08 2025 From: chiahsuan.chung at amd.com (Tom Chung) Date: Fri, 17 Jan 2025 17:59:08 +0800 Subject: [PATCH i-g-t, v2] tests/amdgpu/amd_vrr_range: Fix panel cannot light up after test Message-ID: <20250117100101.4282-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 --- v2: Move igt_amd_trigger_hotplug() to non-VRR sink only tests/amdgpu/amd_vrr_range.c | 140 +++++++++++++++++++++++++++-------- 1 file changed, 110 insertions(+), 30 deletions(-) diff --git a/tests/amdgpu/amd_vrr_range.c b/tests/amdgpu/amd_vrr_range.c index 79db6f9c4..9d2462e5e 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; @@ -273,25 +347,38 @@ static void test_freesync_parsing_base(data_t *data, uint32_t test_flags) edid = (const struct edid *)edid_database[j].edid; expected_range = edid_database[j].range; - /* eDP allow read edid for each display detection */ - if (output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP) - igt_amd_allow_edp_hotplug_detect(data->fd, output->name, true); + if (has_vrr(output)) { + /* A VRR sink, just parsing range from EDID directly */ - /* force to use hard coded VRR EDID */ - kmstest_force_edid(data->fd, output->config.connector, edid); + 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 { + /* A non-VRR sink. Override a golden EDID */ + /* eDP allow read edid for each display detection */ + if (output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP) + igt_amd_allow_edp_hotplug_detect(data->fd, output->name, true); - /* undo EDID override. re-parse EDID of display */ - kmstest_force_edid(data->fd, output->config.connector, NULL); + /* force to use hard coded VRR EDID */ + kmstest_force_edid(data->fd, output->config.connector, edid); - igt_amd_trigger_hotplug(data->fd, output->name); + trigger_edid_parse(data, output, test_flags); - /* eDP dis-allow read edid for each display detection */ - if (output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP) - igt_amd_allow_edp_hotplug_detect(data->fd, output->name, false); + 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); + + /* eDP dis-allow read edid for each display detection */ + if (output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP) + igt_amd_allow_edp_hotplug_detect(data->fd, output->name, false); + } test_conn_cnt++; @@ -317,20 +404,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 Fri Jan 17 10:03:58 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 10:03:58 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_Xe=3A_Add_tests_for_PXP_?= =?utf-8?q?=28rev2=29?= In-Reply-To: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> References: <20250116001951.4159243-1-daniele.ceraolospurio@intel.com> Message-ID: <173710823839.649603.14180732331748999625@b555e5b46a47> == Series Details == Series: Xe: Add tests for PXP (rev2) URL : https://patchwork.freedesktop.org/series/142450/ State : failure == Summary == CI Bug Log - changes from IGT_8193_full -> IGTPW_12444_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12444_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12444_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_12444/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12444_full: ### IGT changes ### #### Possible regressions #### * igt at gem_tiled_swapping@non-threaded: - shard-rkl: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-4/igt at gem_tiled_swapping@non-threaded.html * igt at i915_selftest@live: - shard-rkl: [PASS][2] -> [DMESG-FAIL][3] +1 other test dmesg-fail [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-2/igt at i915_selftest@live.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-3/igt at i915_selftest@live.html New tests --------- New tests have been introduced between IGT_8193_full and IGTPW_12444_full: ### New IGT tests (77) ### * igt at gem_ctx_engines@independent at bcs0: - Statuses : 5 pass(s) - Exec time: [0.06, 0.21] s * igt at gem_ctx_engines@independent at rcs0: - Statuses : 5 pass(s) - Exec time: [0.06, 0.23] s * igt at gem_ctx_engines@independent at vcs0: - Statuses : 5 pass(s) - Exec time: [0.06, 0.19] s * igt at gem_ctx_engines@independent at vcs1: - Statuses : 3 pass(s) - Exec time: [0.06, 0.21] s * igt at gem_ctx_engines@independent at vecs0: - Statuses : 5 pass(s) - Exec time: [0.05, 0.21] s * igt at gem_exec_async@forked-writes: - Statuses : 4 pass(s) - Exec time: [0.09, 0.43] s * igt at gem_exec_async@forked-writes at bcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.11] s * igt at gem_exec_async@forked-writes at rcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.09] s * igt at gem_exec_async@forked-writes at vcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.10] s * igt at gem_exec_async@forked-writes at vcs1: - Statuses : 2 pass(s) - Exec time: [0.03, 0.04] s * igt at gem_exec_async@forked-writes at vecs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.10] s * igt at gem_exec_balancer@fairslice: - Statuses : 3 pass(s) 2 skip(s) - Exec time: [0.0, 3.64] s * igt at gem_exec_balancer@nohangcheck: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 1.21] s * igt at gem_exec_balancer@noheartbeat: - Statuses : 3 pass(s) 3 skip(s) - Exec time: [0.0, 3.82] s * igt at gem_exec_balancer@persistence: - Statuses : 6 pass(s) - Exec time: [0.74, 3.76] s * igt at gem_exec_balancer@sequential: - Statuses : 3 pass(s) 1 skip(s) - Exec time: [0.0, 5.62] s * igt at gem_exec_create@legacy: - Statuses : 5 pass(s) - Exec time: [2.02, 4.20] s * igt at gem_exec_schedule@fairslice: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 12.12] s * igt at gem_exec_schedule@fairslice-all: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 2.09] s * igt at gem_exec_schedule@fairslice at bcs0: - Statuses : 5 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@fairslice at rcs0: - Statuses : 5 pass(s) - Exec time: [2.01, 2.04] s * igt at gem_exec_schedule@fairslice at vcs0: - Statuses : 5 pass(s) - Exec time: [2.01, 2.03] s * igt at gem_exec_schedule@fairslice at vcs1: - Statuses : 3 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@fairslice at vecs0: - Statuses : 5 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@preempt-user: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 0.24] s * igt at gem_exec_schedule@preempt-user at bcs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@preempt-user at rcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.06] s * igt at gem_exec_schedule@preempt-user at vcs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@preempt-user at vcs1: - Statuses : 4 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@preempt-user at vecs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@u-fairslice: - Statuses : - Exec time: [None] s * igt at gem_exec_schedule@u-fairslice-all: - Statuses : 4 pass(s) - Exec time: [2.04, 2.08] s * igt at gem_exec_schedule@u-independent: - Statuses : 5 pass(s) - Exec time: [0.49, 9.43] s * igt at gem_exec_schedule@u-independent at rcs0: - Statuses : 5 pass(s) - Exec time: [0.10, 1.49] s * igt at gem_exec_schedule@u-independent at vcs0: - Statuses : 5 pass(s) - Exec time: [0.12, 2.00] s * igt at gem_exec_schedule@u-independent at vcs1: - Statuses : 3 pass(s) - Exec time: [0.12, 1.99] s * igt at gem_exec_schedule@u-independent at vecs0: - Statuses : 5 pass(s) - Exec time: [0.11, 2.05] s * igt at gem_exec_schedule@u-lateslice: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 0.17] s * igt at gem_exec_schedule@u-lateslice at bcs0: - Statuses : 6 pass(s) - Exec time: [0.01, 0.03] s * igt at gem_exec_schedule@u-lateslice at rcs0: - Statuses : 6 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@u-lateslice at vcs0: - Statuses : 6 pass(s) - Exec time: [0.01, 0.03] s * igt at gem_exec_schedule@u-lateslice at vcs1: - Statuses : 4 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-lateslice at vecs0: - Statuses : 6 pass(s) - Exec time: [0.01, 0.03] s * igt at gem_exec_schedule@u-semaphore-codependency: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 0.04] s * igt at gem_exec_schedule@u-semaphore-noskip: - Statuses : 4 pass(s) - Exec time: [0.22, 0.41] s * igt at gem_exec_schedule@u-semaphore-resolve: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 0.07] s * igt at gem_exec_schedule@u-semaphore-user: - Statuses : 4 pass(s) - Exec time: [0.01, 0.06] s * igt at gem_exec_schedule@u-submit-early-slice: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 0.40] s * igt at gem_exec_schedule@u-submit-early-slice at bcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-early-slice at rcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.08] s * igt at gem_exec_schedule@u-submit-early-slice at vcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-early-slice at vcs1: - Statuses : 3 pass(s) - Exec time: [0.03, 0.06] s * igt at gem_exec_schedule@u-submit-early-slice at vecs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-golden-slice: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 0.20] s * igt at gem_exec_schedule@u-submit-golden-slice at bcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@u-submit-golden-slice at rcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-golden-slice at vcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@u-submit-golden-slice at vcs1: - Statuses : 3 pass(s) - Exec time: [0.03, 0.04] s * igt at gem_exec_schedule@u-submit-golden-slice at vecs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-late-slice: - Statuses : 5 pass(s) - Exec time: [0.07, 0.32] s * igt at gem_exec_schedule@u-submit-late-slice at bcs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@u-submit-late-slice at rcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.07] s * igt at gem_exec_schedule@u-submit-late-slice at vcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@u-submit-late-slice at vcs1: - Statuses : 4 pass(s) - Exec time: [0.03, 0.04] s * igt at gem_exec_schedule@u-submit-late-slice at vecs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_softpin@32b-excludes-last-page: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt at gem_softpin@full: - Statuses : 5 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_softpin@zero: - Statuses : 4 pass(s) - Exec time: [0.00, 0.01] s * igt at gen9_exec_parse@shadow-peek: - Statuses : 1 pass(s) 4 skip(s) - Exec time: [0.0, 0.00] s * igt at kms_invalid_mode@overflow-vrefresh at pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.04] s * igt at kms_invalid_mode@overflow-vrefresh at pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt at kms_invalid_mode@overflow-vrefresh at pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt at kms_invalid_mode@overflow-vrefresh at pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt at perf@non-zero-reason: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 50.53] s * igt at perf_pmu@gt-awake: - Statuses : 7 pass(s) - Exec time: [2.01, 8.72] s * igt at perf_pmu@invalid-open: - Statuses : 6 pass(s) - Exec time: [0.0, 0.00] s * igt at perf_pmu@rc6-suspend: - Statuses : 6 pass(s) - Exec time: [6.90, 23.22] s Known issues ------------ Here are the changes found in IGTPW_12444_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-13/igt at api_intel_bb@blit-reloc-keep-cache.html * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-11/igt at api_intel_bb@object-reloc-purge-cache.html * igt at drm_fdinfo@busy-idle at bcs0: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +17 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-3/igt at drm_fdinfo@busy-idle at bcs0.html * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8414]) +6 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-3/igt at drm_fdinfo@busy-idle at vecs0.html * igt at drm_fdinfo@isolation at vecs0: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +18 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at drm_fdinfo@isolation at vecs0.html * igt at gem_bad_reloc@negative-reloc-lut: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#3281]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-8/igt at gem_bad_reloc@negative-reloc-lut.html * igt at gem_ccs@block-copy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at gem_ccs@block-copy-compressed.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-12/igt at gem_ccs@block-copy-compressed.html - shard-rkl: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-2/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-8/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-6/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_close_race@multigpu-basic-process: - shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#6335]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-6/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#8562]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-2/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3: - shard-rkl: [PASS][18] -> [DMESG-FAIL][19] ([i915#12964]) +4 other tests dmesg-fail [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-4/igt at gem_ctx_isolation@preservation-s3.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-2/igt at gem_ctx_isolation@preservation-s3.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-11/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-12/igt at gem_ctx_persistence@heartbeat-stop.html * igt at gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][22] ([i915#1099]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-snb7/igt at gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt at gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#5882]) +7 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-10/igt at gem_ctx_persistence@saturated-hostile-nopreempt.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-2/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-9/igt at gem_ctx_sseu@invalid-args.html * igt at gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][28] ([i915#8898]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-snb2/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-2/igt at gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4771]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@full-late: - shard-mtlp: [PASS][31] -> [FAIL][32] ([i915#13364]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-8/igt at gem_exec_balancer@full-late.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-2/igt at gem_exec_balancer@full-late.html * igt at gem_exec_balancer@hog: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-4/igt at gem_exec_balancer@hog.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4036]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-18/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-6/igt at gem_exec_balancer@parallel.html * igt at gem_exec_balancer@sliced: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4812]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-12/igt at gem_exec_balancer@sliced.html * igt at gem_exec_big@single: - shard-tglu: [PASS][37] -> [ABORT][38] ([i915#11713]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-tglu-9/igt at gem_exec_big@single.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-2/igt at gem_exec_big@single.html * igt at gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][39] ([i915#11965]) +1 other test fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-4/igt at gem_exec_capture@capture.html * igt at gem_exec_capture@capture-invisible at smem0: - shard-glk: NOTRUN -> [SKIP][40] ([i915#6334]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-glk5/igt at gem_exec_capture@capture-invisible at smem0.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][41] ([i915#11965]) +4 other tests fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-5/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-12/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-uc-ro-default: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at gem_exec_flush@basic-uc-ro-default.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-11/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-2/igt at gem_exec_flush@basic-wb-prw-default.html * igt at gem_exec_reloc@basic-gtt-read-active: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3281]) +9 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/igt at gem_exec_reloc@basic-gtt-read-active.html * igt at gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +14 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-5/igt at gem_exec_reloc@basic-scanout.html * igt at gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +13 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-13/igt at gem_exec_reloc@basic-wc-read-active.html * igt at gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-5/igt at gem_exec_schedule@preempt-queue-chain.html * igt at gem_exec_schedule@thriceslice: - shard-snb: NOTRUN -> [SKIP][50] +478 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-snb2/igt at gem_exec_schedule@thriceslice.html * igt at gem_exec_suspend@basic-s0 at lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][51] ([i915#11441]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-4/igt at gem_exec_suspend@basic-s0 at lmem0.html * igt at gem_exec_suspend@basic-s4-devices: - shard-tglu: [PASS][52] -> [ABORT][53] ([i915#7975] / [i915#8213]) +1 other test abort [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-tglu-5/igt at gem_exec_suspend@basic-s4-devices.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-10/igt at gem_exec_suspend@basic-s4-devices.html - shard-dg2: NOTRUN -> [ABORT][54] ([i915#7975] / [i915#8213]) +1 other test abort [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-5/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-5/igt at gem_fence_thrash@bo-write-verify-y.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-13/igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.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_12444/shard-rkl-5/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613] / [i915#7582]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-1/igt at gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613] / [i915#7582]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-2/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at gem_lmem_swapping@heavy-verify-random-ccs.html - shard-dg1: NOTRUN -> [SKIP][61] ([i915#12193]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-12/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4565]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-12/igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-5/igt at gem_lmem_swapping@parallel-random-verify.html - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4613]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-5/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-glk: NOTRUN -> [SKIP][65] ([i915#4613]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-glk4/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: NOTRUN -> [TIMEOUT][66] ([i915#5493]) +1 other test timeout [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-13/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][67] ([i915#4613]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-10/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8289]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-3/igt at gem_media_fill@media-fill.html * igt at gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#284]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-4/igt at gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][70] ([i915#284]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-4/igt at gem_media_vme.html * igt at gem_mmap_gtt@basic-read-write-distinct: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4077]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-2/igt at gem_mmap_gtt@basic-read-write-distinct.html * igt at gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4077]) +10 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-10/igt at gem_mmap_gtt@cpuset-medium-copy-xy.html * igt at gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083]) +10 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-3/igt at gem_mmap_wc@bad-size.html * igt at gem_mmap_wc@read-write-distinct: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4083]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-7/igt at gem_mmap_wc@read-write-distinct.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4083]) +5 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-12/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3282]) +5 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-13/igt at gem_partial_pwrite_pread@reads-snoop.html - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3282]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-7/igt at gem_partial_pwrite_pread@reads-snoop.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3282]) +9 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_pread@exhaustion: - shard-tglu: NOTRUN -> [WARN][79] ([i915#2658]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-10/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#3282]) +10 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-5/igt at gem_pwrite@basic-exhaustion.html - shard-tglu-1: NOTRUN -> [WARN][81] ([i915#2658]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at gem_pwrite@basic-exhaustion.html - shard-snb: NOTRUN -> [WARN][82] ([i915#2658]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-snb5/igt at gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][83] ([i915#2658]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-glk7/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][84] ([i915#12964]) +2 other tests timeout [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-6/igt at gem_pxp@create-protected-buffer.html * igt at gem_pxp@create-regular-context-1: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4270]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-3/igt at gem_pxp@create-regular-context-1.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#13398]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][87] ([i915#12917] / [i915#12964]) +4 other tests timeout [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-5/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html * igt at gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4270]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-13/igt at gem_pxp@reject-modify-context-protection-on.html * igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#5190] / [i915#8428]) +6 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-8/igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#8428]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-1/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#8411]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-3/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#4079]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-5/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4079]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-17/igt at gem_set_tiling_vs_gtt.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4885]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-5/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_tiled_fence_blits@basic: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4077]) +11 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-13/igt at gem_tiled_fence_blits@basic.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][96] ([i915#13263] / [i915#13449]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-snb1/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@coherency-sync: - shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#3297]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at gem_userptr_blits@coherency-sync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][98] ([i915#3323]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-glk7/igt at gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#3323]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-5/igt at gem_userptr_blits@dmabuf-sync.html - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#3297] / [i915#3323]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at gem_userptr_blits@dmabuf-sync.html - shard-dg1: NOTRUN -> [SKIP][101] ([i915#3297]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-13/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3297]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-10/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3282] / [i915#3297]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-6/igt at gem_userptr_blits@forbidden-operations.html - shard-dg2: NOTRUN -> [SKIP][104] ([i915#3282] / [i915#3297]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#3297] / [i915#4880]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-13/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#3297] / [i915#4880]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-10/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#3297]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-1/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#3297]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-10/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#2856]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-3/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#2527]) +4 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-4/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#2527]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-17/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@secure-batches: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#2527] / [i915#2856]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at gen9_exec_parse@secure-batches.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#2856]) +5 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-8/igt at gen9_exec_parse@unaligned-access.html * igt at gen9_exec_parse@valid-registers: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#2527] / [i915#2856]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-4/igt at gen9_exec_parse@valid-registers.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#4881]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-3/igt at i915_fb_tiling.html * igt at i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][116] -> [ABORT][117] ([i915#9820]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-snb2/igt at i915_module_load@reload-with-fault-injection.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-snb5/igt at i915_module_load@reload-with-fault-injection.html - shard-dg1: NOTRUN -> [ABORT][118] ([i915#13493] / [i915#9820]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-18/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_api@freq-reset-multiple: - shard-tglu-1: NOTRUN -> [SKIP][119] ([i915#8399]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at i915_pm_freq_api@freq-reset-multiple.html * igt at i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#8399]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-5/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [PASS][121] -> [FAIL][122] ([i915#12942]) +1 other test fail [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-1/igt at i915_pm_rc6_residency@rc6-accuracy.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-3/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0: - shard-dg1: NOTRUN -> [FAIL][123] ([i915#3591]) +1 other test fail [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0.html * igt at i915_pm_rpm@gem-execbuf-stress: - shard-dg1: [PASS][124] -> [DMESG-WARN][125] ([i915#4423]) +3 other tests dmesg-warn [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-17/igt at i915_pm_rpm@gem-execbuf-stress.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-17/igt at i915_pm_rpm@gem-execbuf-stress.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#11681] / [i915#6621]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-12/igt at i915_pm_rps@basic-api.html - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#11681] / [i915#6621]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-7/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#11681]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-3/igt at i915_pm_rps@thresholds-park.html * igt at i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#6245]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][130] ([i915#6245]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-3/igt at i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][131] ([i915#6245]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-3/igt at i915_query@hwconfig_table.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6188]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-2/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_selftest@mock at memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][133] ([i915#9311]) +1 other test dmesg-warn [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-3/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][134] ([i915#4817]) +1 other test incomplete [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-glk2/igt at i915_suspend@forcewake.html * igt at intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#7707]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-7/igt at intel_hwmon@hwmon-read.html * igt at intel_hwmon@hwmon-write: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#7707]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#4212]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#4212]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-2/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][139] ([i915#12454] / [i915#12712]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/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-hdmi-a-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#8709]) +7 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/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-3-4-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#8709]) +23 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-3/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-3-4-rc-ccs.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-edp-1-4-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#8709]) +11 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-3/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-edp-1-4-mc-ccs.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][143] ([i915#8709]) +7 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/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][144] ([i915#8709]) +7 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/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@invalid-async-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#12967]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-5/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#9531]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-2/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][147] ([i915#9531]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-3/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-mtlp: [PASS][148] -> [FAIL][149] ([i915#11808] / [i915#5956]) +1 other test fail [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-8/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-6/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][150] ([i915#1769] / [i915#3555]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-18/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][151] ([i915#5956]) +1 other test fail [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-10/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-dp-4.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#5286]) +10 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-4/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#5286]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-7/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#5286]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-17/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-tglu-1: NOTRUN -> [SKIP][155] ([i915#5286]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/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][156] ([i915#4538] / [i915#5286]) +5 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/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-rkl: NOTRUN -> [SKIP][157] ([i915#3638]) +5 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-4/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3638]) +6 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-12/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#4538] / [i915#5190]) +16 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][160] +7 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-2/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#4538]) +6 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#12313]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-1/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][163] ([i915#6095]) +174 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-4.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#10307] / [i915#6095]) +154 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-8/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-rotation-180-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#12313]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#10307] / [i915#10434] / [i915#6095]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-4/igt at kms_ccs@crc-primary-rotation-180-yf-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#6095]) +123 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/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-dg1: NOTRUN -> [SKIP][168] ([i915#12805]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][169] ([i915#12796]) +2 other tests incomplete [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-glk3/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#6095]) +28 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/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-dg2-rc-ccs at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#6095]) +24 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#12313]) +4 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-4/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][173] ([i915#12313]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-11/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#12313]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-13/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][175] ([i915#12313]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-5/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#6095]) +24 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-10/igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-c-hdmi-a-1.html * igt at kms_cdclk@mode-transition: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#11616] / [i915#7213]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#7213]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3742]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-3/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#11151] / [i915#7828]) +15 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-5/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#11151] / [i915#7828]) +7 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-9/igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt at kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#11151] / [i915#7828]) +13 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-4/igt at kms_chamelium_frames@hdmi-crc-fast.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#11151] / [i915#7828]) +7 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#11151] / [i915#7828]) +7 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-13/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#11151] / [i915#7828]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-6/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic-dpms: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#9424]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-4/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#3116] / [i915#3299]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-10/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#3116]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-5/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#9424]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-3/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#9433]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-12/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#6944] / [i915#7116] / [i915#7118]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#7118] / [i915#9424]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-8/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#6944] / [i915#9424]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-2/igt at kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][195] ([i915#7118] / [i915#9424]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-3/igt at kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][196] ([i915#7116] / [i915#9424]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-17/igt at kms_content_protection@uevent.html * igt at kms_content_protection@uevent at pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][197] ([i915#1339] / [i915#7173]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-10/igt at kms_content_protection@uevent at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-offscreen-256x256: - shard-rkl: [PASS][198] -> [DMESG-WARN][199] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-7/igt at kms_cursor_crc@cursor-offscreen-256x256.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-7/igt at kms_cursor_crc@cursor-offscreen-256x256.html * igt at kms_cursor_crc@cursor-onscreen-32x10: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#3555]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-32x10.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#13049]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-10/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#13049]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-2/igt at kms_cursor_crc@cursor-onscreen-512x512.html - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#13049]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#3555]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-6/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#13049]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-18/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#8814]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-3/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#3555]) +6 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#13049]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-2/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_crc@cursor-sliding-64x21 at pipe-b-hdmi-a-1: - shard-rkl: [PASS][209] -> [DMESG-WARN][210] ([i915#12964]) +39 other tests dmesg-warn [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-2/igt at kms_cursor_crc@cursor-sliding-64x21 at pipe-b-hdmi-a-1.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-4/igt at kms_cursor_crc@cursor-sliding-64x21 at pipe-b-hdmi-a-1.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][211] +35 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-2/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#13046] / [i915#5354]) +7 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-4/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#4103] / [i915#4213]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][214] ([i915#4103]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-5/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#4103] / [i915#4213]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#9809]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-2/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: NOTRUN -> [FAIL][217] ([i915#2346]) +1 other test fail [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-snb2/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#9067]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-5/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#4103]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#9723]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#9723]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-5/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#3555]) +5 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#8588]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-18/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#3804]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-2/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1.html * igt at kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#1257]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-5/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#12402]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-7/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#8812]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-13/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-basic: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#3840] / [i915#9688]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-4/igt at kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][230] ([i915#3840]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#3840]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-2/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-formats: - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#3840]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_dsc@dsc-with-formats.html * igt at kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#3469]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-3/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#3469]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#2065] / [i915#4854]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-3/igt at kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][236] ([i915#4854]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-2/igt at kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][237] ([i915#4854]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-3/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#1839]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-11/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-3x: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#1839]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-8/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#1839]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-17/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#9337]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-5/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#658]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/igt at kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][243] ([i915#658]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-7/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#9934]) +4 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-18/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#8381]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-12/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-modeset: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3637]) +3 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-5/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#9934]) +8 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-11/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][248] ([i915#12745] / [i915#1982] / [i915#4839]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/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: NOTRUN -> [INCOMPLETE][249] ([i915#1982] / [i915#4839]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-glk9/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#3637]) +4 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-10/igt at kms_flip@2x-nonexisting-fb-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#9934]) +8 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-7/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-wf_vblank-ts-check at ac-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [FAIL][252] ([i915#11989]) +2 other tests fail [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-glk4/igt at kms_flip@2x-wf_vblank-ts-check at ac-hdmi-a1-hdmi-a2.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-snb: [PASS][253] -> [FAIL][254] ([i915#11989]) +1 other test fail [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-snb5/igt at kms_flip@flip-vs-blocking-wf-vblank.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-snb7/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1: - shard-tglu: [PASS][255] -> [FAIL][256] ([i915#11989]) +6 other tests fail [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-tglu-2/igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-5/igt at kms_flip@flip-vs-blocking-wf-vblank at c-hdmi-a1.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#8381]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-2/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][258] ([i915#12745] / [i915#4839]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-glk8/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][259] ([i915#12745]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-glk8/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check: - shard-dg1: [PASS][260] -> [FAIL][261] ([i915#11989]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-13/igt at kms_flip@plain-flip-ts-check.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at kms_flip@plain-flip-ts-check.html * igt at kms_flip@plain-flip-ts-check at b-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][262] ([i915#11989]) +3 other tests fail [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at kms_flip@plain-flip-ts-check at b-hdmi-a4.html * igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1: - shard-tglu-1: NOTRUN -> [FAIL][263] ([i915#11989]) +1 other test fail [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#2672] / [i915#3555]) +9 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-2/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-1/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-mtlp: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8810]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-1/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-yftile-to-32bpp-yftileccs-upscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#2587] / [i915#2672]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/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-yftile-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#2587] / [i915#2672]) +2 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-4/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling 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][269] ([i915#2672]) +9 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/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-downscaling: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#2672] / [i915#3555]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-18/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#2587] / [i915#2672]) +3 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-18/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-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#2587] / [i915#2672] / [i915#3555]) +2 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-13/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-10/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#2672] / [i915#3555]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#2672] / [i915#3555]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-8/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: NOTRUN -> [SKIP][276] ([i915#2672] / [i915#3555]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#2672]) +4 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/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-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#8708]) +3 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [DMESG-WARN][280] ([i915#12964]) +25 other tests dmesg-warn [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-1/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [PASS][281] -> [FAIL][282] ([i915#6880]) +1 other test fail [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#8708]) +29 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][284] +58 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/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][285] ([i915#1825]) +67 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#3458]) +26 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#8708]) +18 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#10433] / [i915#3458]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][289] +49 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#3023]) +43 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-2/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#5439]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-6/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#3458] / [i915#4423]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#1825]) +10 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-2/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-cpu: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#5354]) +45 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][295] ([i915#3458]) +22 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][296] +50 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-9/igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#6118]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-2/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#12713]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-4/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8228]) +2 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-2/igt at kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#8228]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-3/igt at kms_hdr@static-swap.html - shard-rkl: NOTRUN -> [SKIP][301] ([i915#3555] / [i915#8228]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-1/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#8228]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-13/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8228]) +3 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/igt at kms_hdr@static-toggle-dpms.html * igt at kms_hdr@static-toggle-suspend: - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8228]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#10656]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-1/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#12388]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-8/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][307] ([i915#12339]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-7/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#10656]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#12388]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-11/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#10656] / [i915#13522]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-2/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][311] ([i915#12394] / [i915#13522]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-4/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][312] ([i915#12394] / [i915#13522]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-17/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#4070] / [i915#4816]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-1/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#6301]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-10/igt at kms_panel_fitting@atomic-fastset.html - shard-dg2: NOTRUN -> [SKIP][315] ([i915#6301]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-3/igt at kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][316] ([i915#6301]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-2/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-dg1: NOTRUN -> [SKIP][317] ([i915#6301]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-18/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][318] +16 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-FAIL][319] ([i915#12964]) +1 other test dmesg-fail [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-4/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][320] ([i915#13026]) +1 other test incomplete [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-glk1/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][321] ([i915#12178]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-glk3/igt at kms_plane_alpha_blend@alpha-basic.html * igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][322] ([i915#7862]) +1 other test fail [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-glk3/igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#3555]) +8 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-3/igt at kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][324] ([i915#3555] / [i915#8806]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-10/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#6953]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-6/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#12247]) +8 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-3/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-b: - shard-tglu: NOTRUN -> [SKIP][327] ([i915#12247]) +4 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-2/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-b.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#12247]) +15 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/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][329] ([i915#12247] / [i915#6953]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-3/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#12247] / [i915#9423]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#12247]) +15 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/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-tglu-1: NOTRUN -> [SKIP][332] ([i915#12247]) +9 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/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-dg2: NOTRUN -> [SKIP][333] ([i915#12247] / [i915#6953] / [i915#9423]) +2 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-3/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][334] ([i915#12247] / [i915#6953]) +2 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-17/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][335] ([i915#12247] / [i915#6953]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-5/igt at kms_plane_scaling@planes-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b: - shard-dg1: NOTRUN -> [SKIP][336] ([i915#12247]) +21 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-17/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#5354]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-4/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg1: NOTRUN -> [SKIP][338] ([i915#12343]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-17/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][339] ([i915#9685]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-8/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#4281]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-5/igt at kms_pm_dc@dc9-dpms.html - shard-dg1: NOTRUN -> [DMESG-WARN][341] ([i915#4423]) +1 other test dmesg-warn [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][342] ([i915#9340]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-18/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#8430]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][344] -> [SKIP][345] ([i915#9519]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-3/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-4/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-rkl: NOTRUN -> [SKIP][346] ([i915#9519]) +2 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-4/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#9519]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-5/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][348] -> [SKIP][349] ([i915#9519]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-7/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-3/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html - shard-dg1: NOTRUN -> [SKIP][350] ([i915#9519]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-18/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#9519]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-5/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][352] ([i915#6524]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-8/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#6524]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-5/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][354] ([i915#11520]) +10 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-snb7/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#11520]) +6 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#12316]) +2 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-4/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#11520]) +10 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-5/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][358] ([i915#11520]) +4 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-10/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][359] ([i915#11520]) +10 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-17/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][360] ([i915#11520]) +14 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-glk4/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#11520]) +14 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-7/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#9683]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-4/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#9683]) +2 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-4/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][364] ([i915#9683]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-14/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +28 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg1-18/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][366] ([i915#9732]) +10 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-8/igt at kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt at kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][367] ([i915#9688]) +5 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-mtlp-1/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][368] ([i915#1072] / [i915#9732]) +40 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-5/igt at kms_psr@fbc-psr2-sprite-render.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#1072] / [i915#9732]) +37 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-2/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr-sprite-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][370] ([i915#9732]) +13 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_psr@psr-sprite-mmap-cpu.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][371] +422 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-glk6/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][372] ([i915#9685]) +2 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-rkl-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][373] ([i915#9685]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][374] ([i915#5289]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-3/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#5190]) +2 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-dg2-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu-1: NOTRUN -> [SKIP][376] ([i915#5289]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/shard-tglu-1/igt at kms_rotation_crc@primary == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12444/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 10:14:53 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 10:14:53 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fsriov=5Ff?= =?utf-8?q?lr=3A_Add_parallel_FLR_subtest_for_SR-IOV_VFs_=28rev3=29?= In-Reply-To: <20250116192906.636031-1-marcin.bernatowicz@linux.intel.com> References: <20250116192906.636031-1-marcin.bernatowicz@linux.intel.com> Message-ID: <173710889301.674301.7769638192372800018@b555e5b46a47> == Series Details == Series: tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs (rev3) URL : https://patchwork.freedesktop.org/series/142042/ State : failure == Summary == CI Bug Log - changes from XEIGT_8195_full -> XEIGTPW_12451_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12451_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12451_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_12451_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@flip-vs-suspend at d-dp4: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@flip-vs-suspend at d-dp4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_flip@flip-vs-suspend at d-dp4.html * igt at kms_flip@plain-flip-ts-check at a-hdmi-a2: - shard-dg2-set2: NOTRUN -> [FAIL][3] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-432/igt at kms_flip@plain-flip-ts-check at a-hdmi-a2.html * igt at kms_psr@psr2-primary-page-flip at edp-1: - shard-lnl: [PASS][4] -> [FAIL][5] +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-8/igt at kms_psr@psr2-primary-page-flip at edp-1.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-5/igt at kms_psr@psr2-primary-page-flip at edp-1.html * igt at xe_exec_threads@threads-hang-basic: - shard-bmg: [PASS][6] -> [ABORT][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at xe_exec_threads@threads-hang-basic.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at xe_exec_threads@threads-hang-basic.html * {igt at xe_sriov_flr@flr-twice} (NEW): - shard-lnl: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-2/igt at xe_sriov_flr@flr-twice.html * igt at xe_sriov_flr@flr-vfs-parallel (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][9] +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-463/igt at xe_sriov_flr@flr-vfs-parallel.html New tests --------- New tests have been introduced between XEIGT_8195_full and XEIGTPW_12451_full: ### New IGT tests (40) ### * igt at kms_atomic@plane-primary-legacy at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.94] s * igt at kms_cursor_crc@cursor-onscreen-128x42 at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.50] s * igt at kms_cursor_crc@cursor-onscreen-128x42 at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.18] s * igt at kms_cursor_crc@cursor-onscreen-64x64 at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.69] s * igt at kms_cursor_crc@cursor-onscreen-64x64 at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.26] s * igt at kms_cursor_crc@cursor-sliding-128x128 at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [3.92] s * igt at kms_cursor_crc@cursor-sliding-128x128 at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [3.55] s * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.42] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at ab-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.42] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at ac-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.20] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at ad-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.18] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at bc-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.35] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at bd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.38] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at cd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.38] s * igt at kms_flip@2x-flip-vs-rmfb at ab-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.35] s * igt at kms_flip@2x-flip-vs-rmfb at ac-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.34] s * igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.39] s * igt at kms_flip@2x-flip-vs-rmfb at bc-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.33] s * igt at kms_flip@2x-flip-vs-rmfb at bd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.34] s * igt at kms_flip@2x-flip-vs-rmfb at cd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.39] s * igt at kms_flip@basic-flip-vs-dpms at a-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.82] s * igt at kms_flip@basic-flip-vs-dpms at b-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.75] s * igt at kms_flip@basic-flip-vs-dpms at c-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.76] s * igt at kms_flip@basic-flip-vs-dpms at d-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.74] s * igt at kms_flip@bo-too-big-interruptible at a-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.30] s * igt at kms_flip@bo-too-big-interruptible at b-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.18] s * igt at kms_flip@bo-too-big-interruptible at c-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.18] s * igt at kms_flip@bo-too-big-interruptible at d-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.18] s * igt at kms_flip@busy-flip at a-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.79] s * igt at kms_flip@busy-flip at b-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.71] s * igt at kms_flip@busy-flip at c-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.71] s * igt at kms_flip@busy-flip at d-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.69] s * igt at kms_sequence@queue-busy at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.68] s * igt at kms_sequence@queue-busy at pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.40] s * igt at kms_sequence@queue-busy at pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.42] s * igt at kms_sequence@queue-busy at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.42] s * igt at kms_vblank@query-busy-hang at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.65] s * igt at kms_vblank@query-busy-hang at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.38] s * igt at xe_sriov_flr@flr-twice: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_sriov_flr@flr-vfs-parallel: - Statuses : 2 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12451_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotreplug: - shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#1885]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at core_hotunplug@hotreplug.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at core_hotunplug@hotreplug.html * igt at core_setmaster@master-drop-set-root: - shard-bmg: [PASS][12] -> [FAIL][13] ([Intel XE#3249]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at core_setmaster@master-drop-set-root.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@read: - shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#2134]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at fbdev@read.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at fbdev@read.html * igt at kms_addfb_basic@unused-pitches: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#2423] / [i915#2575]) +6 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_addfb_basic@unused-pitches.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#873]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-433/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#664]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-4/igt at kms_async_flips@test-cursor.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [PASS][19] -> [SKIP][20] ([Intel XE#2136]) +32 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1407]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-4/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#316]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-463/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@linear-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2327]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_big_fb@linear-8bpp-rotate-90.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - 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_8195/shard-bmg-6/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-6/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +5 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2191]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-434/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt at kms_bw@linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#367]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-433/igt at kms_bw@linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-3-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#367]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-6/igt at kms_bw@linear-tiling-3-displays-2560x1440p.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2907]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#455] / [Intel XE#787]) +30 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-433/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2669]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#3442]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-463/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][36] ([Intel XE#3862]) +1 other test incomplete [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-463/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#3432]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2887]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2887]) +4 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-7/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#787]) +139 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/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-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#1727] / [Intel XE#3124]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/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-b-hdmi-a-6: - shard-dg2-set2: [PASS][43] -> [INCOMPLETE][44] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-6.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-6.html * igt at kms_cdclk@mode-transition at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#314]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-434/igt at kms_cdclk@mode-transition at pipe-d-dp-4.html * igt at kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1152]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-2/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#373]) +8 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-463/igt at kms_chamelium_audio@dp-audio.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2252]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#373]) +7 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-8/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#307]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-6/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@legacy at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][51] ([Intel XE#1178]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_content_protection@legacy at pipe-a-dp-2.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][52] ([Intel XE#1178]) +2 other tests fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2423]) +21 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#308]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1424]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-5/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#309]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-7/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-dg2-set2: NOTRUN -> [FAIL][57] ([Intel XE#1475]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#323]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-8/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#2425]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_display_modes@extended-mode-basic.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#1138]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1137]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-434/igt at kms_feature_discovery@dp-mst.html - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1137]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-4/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1421]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][65] -> [FAIL][66] ([Intel XE#301] / [Intel XE#3321]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#2316]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/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_12451/shard-bmg-6/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6: - shard-dg2-set2: [PASS][69] -> [FAIL][70] ([Intel XE#301]) +1 other test fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-436/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][71] -> [INCOMPLETE][72] ([Intel XE#2597]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@flip-vs-suspend.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][73] ([Intel XE#2597]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html * igt at kms_flip@plain-flip-ts-check: - shard-dg2-set2: [PASS][74] -> [FAIL][75] ([Intel XE#886]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_flip@plain-flip-ts-check.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-432/igt at kms_flip@plain-flip-ts-check.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [PASS][76] -> [FAIL][77] ([Intel XE#886]) +1 other test fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-5/igt at kms_flip@plain-flip-ts-check-interruptible.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-8/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-dg2-set2: [PASS][78] -> [SKIP][79] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-433/igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1401]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2293]) +5 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#651]) +5 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2311]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#651]) +28 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [PASS][86] -> [SKIP][87] ([Intel XE#2136]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#656]) +19 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2136]) +26 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#653]) +30 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2313]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_getfb@getfb2-accept-ccs: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#2340]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-1/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#455]) +14 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-433/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1503]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-4/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@basic-force-big-joiner: - shard-bmg: [PASS][95] -> [SKIP][96] ([Intel XE#3012]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_joiner@basic-force-big-joiner.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2925]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#2934]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-2/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2927]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-463/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#3307]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-3/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2763]) +8 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-bmg: [PASS][102] -> [SKIP][103] ([Intel XE#2423]) +115 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#2763]) +7 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-3/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format 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]) +13 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2763] / [Intel XE#455]) +4 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2763]) +15 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-3/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2938]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#870]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][111] -> [FAIL][112] ([Intel XE#718]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-4/igt at kms_pm_dc@dc5-dpms.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-4/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1129]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2446]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-bmg: [PASS][115] -> [SKIP][116] ([Intel XE#2446]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_pm_rpm@system-suspend-modeset.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#1489]) +10 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-436/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#2893]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-6/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#1489]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr@pr-basic: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#1406]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-4/igt at kms_psr@pr-basic.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-436/igt at kms_psr@psr-dpms.html * igt at kms_psr@psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2136]) +5 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_psr@psr2-primary-render.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#3414]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-rotation-90: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#3414] / [Intel XE#3904]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-2/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1127]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2413]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1435]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-5/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tv_load_detect@load-detect: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#330]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-6/igt at kms_tv_load_detect@load-detect.html * igt at kms_vblank@query-busy: - shard-bmg: [PASS][129] -> [SKIP][130] ([Intel XE#3007]) +9 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_vblank@query-busy.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_vblank@query-busy.html * igt at kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#1499]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_vrr@flip-basic.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2168]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#756]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-436/igt at kms_writeback@writeback-fb-id.html * igt at xe_compute_preempt@compute-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1280] / [Intel XE#455]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-432/igt at xe_compute_preempt@compute-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#1123]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at xe_copy_basic@mem-copy-linear-0x369.html * igt at xe_eudebug_online@resume-dss: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2905]) +7 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at xe_eudebug_online@resume-dss.html * igt at xe_eudebug_online@stopped-thread: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#2905]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-7/igt at xe_eudebug_online@stopped-thread.html * igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2905]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-small: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#688]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-8/igt at xe_evict@evict-beng-small.html * igt at xe_exec_balancer@many-parallel-userptr-invalidate: - shard-bmg: [PASS][140] -> [SKIP][141] ([Intel XE#1130]) +289 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at xe_exec_balancer@many-parallel-userptr-invalidate.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at xe_exec_balancer@many-parallel-userptr-invalidate.html * igt at xe_exec_balancer@twice-virtual-basic: - shard-dg2-set2: [PASS][142] -> [SKIP][143] ([Intel XE#1130]) +24 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-464/igt at xe_exec_balancer@twice-virtual-basic.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at xe_exec_balancer@twice-virtual-basic.html * igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap: - shard-dg2-set2: [PASS][144] -> [SKIP][145] ([Intel XE#1392]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-435/igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-once-rebind: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1392]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-5/igt at xe_exec_basic@multigpu-once-rebind.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#288]) +23 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#255]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-433/igt at xe_huc_copy@huc_copy.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [PASS][149] -> [SKIP][150] ([Intel XE#1192]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at xe_live_ktest@xe_bo.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_eudebug: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#1192] / [Intel XE#3026]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-1/igt at xe_live_ktest@xe_eudebug.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2229]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-434/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-bmg: [PASS][153] -> [FAIL][154] ([Intel XE#1999]) +2 other tests fail [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_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_12451/shard-lnl-1/igt at xe_module_load@force-load.html * igt at xe_module_load@reload-no-display: - shard-bmg: [PASS][156] -> [FAIL][157] ([Intel XE#3546]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at xe_module_load@reload-no-display.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at xe_module_load@reload-no-display.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#2248]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-5/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-433/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#977]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#2838] / [Intel XE#979]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-463/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@prime-self-import-coh: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#1130]) +7 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at xe_pat@prime-self-import-coh.html * igt at xe_pm@d3cold-mmap-system: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: NOTRUN -> [ABORT][164] ([Intel XE#1358] / [Intel XE#1794]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_pm@s2idle-vm-bind-userptr: - shard-dg2-set2: [PASS][165] -> [ABORT][166] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-433/igt at xe_pm@s2idle-vm-bind-userptr.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-userptr.html * igt at xe_pm@s3-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_12451/shard-lnl-4/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_pm@s3-exec-after: - shard-dg2-set2: [PASS][168] -> [ABORT][169] ([Intel XE#1358]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at xe_pm@s3-exec-after.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-432/igt at xe_pm@s3-exec-after.html * igt at xe_pm@s4-exec-after: - shard-lnl: [PASS][170] -> [ABORT][171] ([Intel XE#1358] / [Intel XE#1607]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-4/igt at xe_pm@s4-exec-after.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-2/igt at xe_pm@s4-exec-after.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#944]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-436/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_query@multigpu-query-mem-usage: - shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#944]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-6/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#3342]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-433/igt at xe_sriov_flr@flr-each-isolation.html * igt at xe_vm@bind-no-array-conflict: - shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#1130]) +29 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at xe_vm@bind-no-array-conflict.html #### Possible fixes #### * igt at core_hotunplug@hotunbind-rebind: - shard-bmg: [SKIP][176] ([Intel XE#1885]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at core_hotunplug@hotunbind-rebind.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at core_hotunplug@hotunbind-rebind.html * igt at fbdev@info: - shard-bmg: [SKIP][178] ([Intel XE#2134]) -> [PASS][179] +3 other tests pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at fbdev@info.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-2/igt at fbdev@info.html * igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180: - shard-dg2-set2: [SKIP][180] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][182] ([Intel XE#2136]) -> [PASS][183] +17 other tests pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][184] ([Intel XE#2291]) -> [PASS][185] +3 other tests pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-4/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][186] ([Intel XE#2423]) -> [PASS][187] +85 other tests pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb-recreate.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-2/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: [SKIP][188] ([Intel XE#2316]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@busy-flip: - shard-dg2-set2: [SKIP][190] ([Intel XE#2423] / [i915#2575]) -> [PASS][191] +15 other tests pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_flip@busy-flip.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at kms_flip@busy-flip.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4: - shard-dg2-set2: [FAIL][192] ([Intel XE#301]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html * igt at kms_flip@flip-vs-panning-interruptible: - shard-dg2-set2: [INCOMPLETE][194] ([Intel XE#2049]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@flip-vs-panning-interruptible.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-434/igt at kms_flip@flip-vs-panning-interruptible.html * igt at kms_flip@flip-vs-panning-interruptible at c-dp4: - shard-dg2-set2: [INCOMPLETE][196] -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@flip-vs-panning-interruptible at c-dp4.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-434/igt at kms_flip@flip-vs-panning-interruptible at c-dp4.html * igt at kms_flip@flip-vs-wf_vblank-interruptible: - shard-lnl: [FAIL][198] ([Intel XE#886]) -> [PASS][199] +4 other tests pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-2/igt at kms_flip@flip-vs-wf_vblank-interruptible.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-5/igt at kms_flip@flip-vs-wf_vblank-interruptible.html * igt at kms_flip@plain-flip-ts-check: - shard-bmg: [FAIL][200] ([Intel XE#2882]) -> [PASS][201] +2 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_flip@plain-flip-ts-check.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-4/igt at kms_flip@plain-flip-ts-check.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][202] ([Intel XE#2136]) -> [PASS][203] +5 other tests pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-suspend: - shard-lnl: [INCOMPLETE][204] ([Intel XE#2050]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcpsr-suspend.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcpsr-suspend.html * igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [FAIL][206] ([Intel XE#616]) -> [PASS][207] +1 other test pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-434/igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64.html * igt at kms_pm_rpm@i2c: - shard-bmg: [SKIP][208] ([Intel XE#2446]) -> [PASS][209] +2 other tests pass [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_pm_rpm@i2c.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_pm_rpm@i2c.html * igt at kms_pm_rpm@universal-planes-dpms: - shard-dg2-set2: [SKIP][210] ([Intel XE#2446]) -> [PASS][211] [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_pm_rpm@universal-planes-dpms.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-433/igt at kms_pm_rpm@universal-planes-dpms.html * igt at kms_vrr@flipline: - shard-lnl: [FAIL][212] ([Intel XE#1522]) -> [PASS][213] +1 other test pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-7/igt at kms_vrr@flipline.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-lnl-7/igt at kms_vrr@flipline.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: [ABORT][214] ([Intel XE#2625]) -> [PASS][215] +2 other tests pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-463/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html * igt at xe_mmap@pci-membarrier: - shard-dg2-set2: [SKIP][216] ([Intel XE#4045]) -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-435/igt at xe_mmap@pci-membarrier.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-433/igt at xe_mmap@pci-membarrier.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-bmg: [SKIP][218] ([Intel XE#4045]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at xe_mmap@pci-membarrier-bad-pagesize.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-4/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-dg2-set2: [ABORT][220] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at xe_pm@s4-vm-bind-unbind-all.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [SKIP][222] ([Intel XE#1130]) -> [PASS][223] +197 other tests pass [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-4/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html * igt at xe_vm@invalid-extensions: - shard-dg2-set2: [SKIP][224] ([Intel XE#1130]) -> [PASS][225] +26 other tests pass [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_vm@invalid-extensions.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-433/igt at xe_vm@invalid-extensions.html #### Warnings #### * igt at kms_async_flips@async-flip-suspend-resume: - shard-bmg: [INCOMPLETE][226] ([Intel XE#3861]) -> [SKIP][227] ([Intel XE#2423]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_async_flips@async-flip-suspend-resume.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_async_flips@async-flip-suspend-resume.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-bmg: [SKIP][228] ([Intel XE#3768]) -> [SKIP][229] ([Intel XE#2423]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2-set2: [SKIP][230] ([Intel XE#455]) -> [SKIP][231] ([Intel XE#2423] / [i915#2575]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: [SKIP][232] ([Intel XE#2136]) -> [SKIP][233] ([Intel XE#316]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_big_fb@linear-16bpp-rotate-270.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: [SKIP][234] ([Intel XE#2327]) -> [SKIP][235] ([Intel XE#2136]) +4 other tests skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_big_fb@linear-32bpp-rotate-90.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-bmg: [SKIP][236] ([Intel XE#2136]) -> [SKIP][237] ([Intel XE#2327]) +4 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_big_fb@linear-64bpp-rotate-90.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-16bpp-rotate-90: - shard-dg2-set2: [SKIP][238] ([Intel XE#2136]) -> [SKIP][239] ([Intel XE#1124]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_big_fb@y-tiled-16bpp-rotate-90.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at kms_big_fb@y-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][240] ([Intel XE#1124]) -> [SKIP][241] ([Intel XE#2136] / [Intel XE#2231]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_big_fb@y-tiled-32bpp-rotate-90.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_big_fb@y-tiled-32bpp-rotate-90.html - shard-dg2-set2: [SKIP][242] ([Intel XE#1124]) -> [SKIP][243] ([Intel XE#2136] / [Intel XE#2351]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_big_fb@y-tiled-32bpp-rotate-90.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_big_fb@y-tiled-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb: - shard-bmg: [SKIP][244] ([Intel XE#2328]) -> [SKIP][245] ([Intel XE#2136]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_big_fb@y-tiled-addfb.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][246] ([Intel XE#2136]) -> [SKIP][247] ([Intel XE#607]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][248] ([Intel XE#1124]) -> [SKIP][249] ([Intel XE#2136]) +15 other tests skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][250] ([Intel XE#2136]) -> [SKIP][251] ([Intel XE#1124]) +13 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][252] ([Intel XE#607]) -> [SKIP][253] ([Intel XE#2136]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-bmg: [SKIP][254] ([Intel XE#2136]) -> [SKIP][255] ([Intel XE#2136] / [Intel XE#2231]) +14 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html - shard-dg2-set2: [SKIP][256] ([Intel XE#1124]) -> [SKIP][257] ([Intel XE#2136]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: [SKIP][258] ([Intel XE#2423]) -> [SKIP][259] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-2/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][260] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][261] ([Intel XE#2423]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][262] ([Intel XE#2423]) -> [SKIP][263] ([Intel XE#367]) +4 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-dg2-set2: [SKIP][264] ([Intel XE#367]) -> [SKIP][265] ([Intel XE#2423] / [i915#2575]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-433/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][266] ([Intel XE#367]) -> [SKIP][267] ([Intel XE#2423]) +3 other tests skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][268] ([Intel XE#2136]) -> [SKIP][269] ([Intel XE#2887]) +13 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-3/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][270] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][271] ([Intel XE#2136]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][272] ([Intel XE#2136]) -> [SKIP][273] ([Intel XE#455] / [Intel XE#787]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-432/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-bmg: [SKIP][274] ([Intel XE#2887]) -> [SKIP][275] ([Intel XE#2136]) +14 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_ccs@crc-primary-basic-y-tiled-ccs.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][276] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][277] ([Intel XE#2136] / [Intel XE#2351]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc: - shard-dg2-set2: [SKIP][278] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][279] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-432/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][280] ([Intel XE#3432]) -> [SKIP][281] ([Intel XE#2136]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][282] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][283] ([Intel XE#2136]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][284] ([Intel XE#2136]) -> [SKIP][285] ([Intel XE#2724]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_cdclk@mode-transition.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-2/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][286] ([Intel XE#2724]) -> [SKIP][287] ([Intel XE#2136]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_cdclk@mode-transition-all-outputs.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][288] ([Intel XE#2325]) -> [SKIP][289] ([Intel XE#2423]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_chamelium_color@ctm-green-to-red.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][290] ([Intel XE#2423]) -> [SKIP][291] ([Intel XE#2252]) +8 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-3/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_frames@hdmi-aspect-ratio: - shard-bmg: [SKIP][292] ([Intel XE#2252]) -> [SKIP][293] ([Intel XE#2423]) +10 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_chamelium_frames@hdmi-aspect-ratio.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_chamelium_frames@hdmi-aspect-ratio.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: [SKIP][294] ([Intel XE#2423] / [i915#2575]) -> [SKIP][295] ([Intel XE#373]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-434/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-bmg: [SKIP][296] ([Intel XE#2252]) -> [SKIP][297] ([Intel XE#3007]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html - shard-dg2-set2: [SKIP][298] ([Intel XE#373]) -> [SKIP][299] ([Intel XE#2423] / [i915#2575]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][300] ([Intel XE#2390]) -> [SKIP][301] ([Intel XE#2423]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_content_protection@dp-mst-type-1.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-bmg: [SKIP][302] ([Intel XE#2423]) -> [FAIL][303] ([Intel XE#1178]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_content_protection@legacy.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_content_protection@legacy.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][304] ([Intel XE#2341]) -> [SKIP][305] ([Intel XE#2423]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_content_protection@mei-interface.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@type1: - shard-bmg: [SKIP][306] ([Intel XE#2423]) -> [SKIP][307] ([Intel XE#2341]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_content_protection@type1.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-bmg: [FAIL][308] ([Intel XE#1188]) -> [SKIP][309] ([Intel XE#2423]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_content_protection@uevent.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: [SKIP][310] ([Intel XE#2423]) -> [SKIP][311] ([Intel XE#2321]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_cursor_crc@cursor-offscreen-512x170.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-2/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: [SKIP][312] ([Intel XE#2321]) -> [SKIP][313] ([Intel XE#2423]) +2 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_cursor_crc@cursor-offscreen-512x512.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][314] ([Intel XE#2320]) -> [SKIP][315] ([Intel XE#2423]) +5 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_cursor_crc@cursor-random-32x32.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][316] ([Intel XE#2320]) -> [SKIP][317] ([Intel XE#3007]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: [SKIP][318] ([Intel XE#2423]) -> [SKIP][319] ([Intel XE#2320]) +2 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-256x85.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-bmg: [SKIP][320] ([Intel XE#2423]) -> [SKIP][321] ([Intel XE#2291]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: [SKIP][322] ([Intel XE#2286]) -> [SKIP][323] ([Intel XE#2423]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [SKIP][324] ([Intel XE#2291]) -> [SKIP][325] ([Intel XE#2423]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [DMESG-WARN][326] ([Intel XE#877]) -> [SKIP][327] ([Intel XE#2423]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-bmg: [SKIP][328] ([Intel XE#2423]) -> [SKIP][329] ([Intel XE#2286]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: [SKIP][330] ([Intel XE#1508]) -> [SKIP][331] ([Intel XE#2136]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][332] ([Intel XE#2323]) -> [SKIP][333] ([Intel XE#2423]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_display_modes@mst-extended-mode-negative.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dsc@dsc-fractional-bpp: - shard-bmg: [SKIP][334] ([Intel XE#2136]) -> [SKIP][335] ([Intel XE#2244]) +2 other tests skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_dsc@dsc-fractional-bpp.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: [SKIP][336] ([Intel XE#2244]) -> [SKIP][337] ([Intel XE#2136]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_dsc@dsc-with-output-formats.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][338] ([Intel XE#776]) -> [SKIP][339] ([Intel XE#2136]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_fbcon_fbt@psr-suspend.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][340] ([Intel XE#2423]) -> [SKIP][341] ([Intel XE#2372]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_feature_discovery@chamelium.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-3/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-bmg: [SKIP][342] ([Intel XE#2423]) -> [SKIP][343] ([Intel XE#2373]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_feature_discovery@display-3x.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@psr2: - shard-bmg: [SKIP][344] ([Intel XE#2423]) -> [SKIP][345] ([Intel XE#2374]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_feature_discovery@psr2.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: [SKIP][346] ([Intel XE#2423] / [i915#2575]) -> [SKIP][347] ([Intel XE#1135]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_feature_discovery@psr2.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-463/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][348] -> [SKIP][349] ([Intel XE#3007]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-bmg: [INCOMPLETE][350] -> [SKIP][351] ([Intel XE#2423]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [SKIP][352] ([Intel XE#2316]) -> [SKIP][353] ([Intel XE#2423]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_flip@2x-nonexisting-fb.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [SKIP][354] ([Intel XE#2423]) -> [INCOMPLETE][355] ([Intel XE#2597]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_flip@flip-vs-suspend-interruptible.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: [SKIP][356] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][357] ([Intel XE#2136]) +5 other tests skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][358] ([Intel XE#2136]) -> [SKIP][359] ([Intel XE#455]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][360] ([Intel XE#2380]) -> [SKIP][361] ([Intel XE#2136]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: [SKIP][362] ([Intel XE#2136]) -> [SKIP][363] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][364] ([Intel XE#651]) -> [SKIP][365] ([Intel XE#2136] / [Intel XE#2351]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: [SKIP][366] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][367] ([Intel XE#651]) +2 other tests skip [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][368] ([Intel XE#2312]) -> [SKIP][369] ([Intel XE#2311]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][370] ([Intel XE#2136]) -> [SKIP][371] ([Intel XE#2312]) +12 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: [SKIP][372] ([Intel XE#2311]) -> [SKIP][373] ([Intel XE#2136]) +40 other tests skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: [SKIP][374] ([Intel XE#2136]) -> [SKIP][375] ([Intel XE#2311]) +32 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][376] ([Intel XE#2333]) -> [SKIP][377] ([Intel XE#2312]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][378] ([Intel XE#2136]) -> [FAIL][379] ([Intel XE#2333]) +11 other tests fail [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][380] ([Intel XE#2333]) -> [SKIP][381] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [FAIL][382] ([Intel XE#2333]) -> [SKIP][383] ([Intel XE#2136]) +18 other tests skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/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-bmg: [SKIP][384] ([Intel XE#2312]) -> [FAIL][385] ([Intel XE#2333]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][386] ([Intel XE#2136]) -> [SKIP][387] ([Intel XE#651]) +2 other tests skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][388] ([Intel XE#651]) -> [SKIP][389] ([Intel XE#2136]) +2 other tests skip [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][390] ([Intel XE#2311]) -> [SKIP][391] ([Intel XE#2312]) +4 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render: - shard-bmg: [SKIP][392] ([Intel XE#2311]) -> [SKIP][393] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][394] ([Intel XE#2136]) -> [SKIP][395] ([Intel XE#2313]) +30 other tests skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][396] ([Intel XE#653]) -> [SKIP][397] ([Intel XE#2136]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][398] ([Intel XE#2313]) -> [SKIP][399] ([Intel XE#2136]) +39 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][400] ([Intel XE#2312]) -> [SKIP][401] ([Intel XE#2136]) +9 other tests skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][402] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][403] ([Intel XE#653]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][404] ([Intel XE#2312]) -> [SKIP][405] ([Intel XE#2136] / [Intel XE#2231]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][406] ([Intel XE#2313]) -> [SKIP][407] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][408] ([Intel XE#2136]) -> [SKIP][409] ([Intel XE#2352]) +1 other test skip [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][410] ([Intel XE#2350]) -> [SKIP][411] ([Intel XE#2136]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render: - shard-dg2-set2: [SKIP][412] ([Intel XE#2136]) -> [SKIP][413] ([Intel XE#653]) +4 other tests skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][414] ([Intel XE#653]) -> [SKIP][415] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][416] ([Intel XE#2313]) -> [SKIP][417] ([Intel XE#2312]) +6 other tests skip [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][418] ([Intel XE#2312]) -> [SKIP][419] ([Intel XE#2313]) +2 other tests skip [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][420] ([Intel XE#2340]) -> [SKIP][421] ([Intel XE#2423]) [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_getfb@getfb2-accept-ccs.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_joiner@basic-big-joiner: - shard-bmg: [SKIP][422] ([Intel XE#2136]) -> [SKIP][423] ([Intel XE#346]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_joiner@basic-big-joiner.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-2/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][424] ([Intel XE#2136]) -> [SKIP][425] ([Intel XE#2927]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_joiner@basic-ultra-joiner.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-433/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][426] ([Intel XE#346]) -> [SKIP][427] ([Intel XE#2136]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_joiner@invalid-modeset-big-joiner.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: [SKIP][428] ([Intel XE#2934]) -> [SKIP][429] ([Intel XE#2136]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_lease@empty-lease: - shard-bmg: [SKIP][430] ([Intel XE#2423]) -> [SKIP][431] ([Intel XE#3007]) +9 other tests skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_lease@empty-lease.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_lease@empty-lease.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: [SKIP][432] ([Intel XE#2423] / [i915#2575]) -> [SKIP][433] ([Intel XE#2763] / [Intel XE#455]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-434/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-bmg: [SKIP][434] ([Intel XE#2763]) -> [SKIP][435] ([Intel XE#2423]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_plane_scaling@planes-downscale-factor-0-25.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/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-bmg: [SKIP][436] ([Intel XE#2423]) -> [SKIP][437] ([Intel XE#2763]) +3 other tests skip [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_pm_backlight@basic-brightness: - shard-bmg: [SKIP][438] ([Intel XE#2136]) -> [SKIP][439] ([Intel XE#870]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_pm_backlight@basic-brightness.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-2/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@fade: - shard-bmg: [SKIP][440] ([Intel XE#870]) -> [SKIP][441] ([Intel XE#2136]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_pm_backlight@fade.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: [SKIP][442] ([Intel XE#2391]) -> [SKIP][443] ([Intel XE#2136]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_pm_dc@dc3co-vpb-simulation.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][444] ([Intel XE#3309]) -> [SKIP][445] ([Intel XE#2136]) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_pm_dc@dc5-retention-flops.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][446] ([Intel XE#2446]) -> [SKIP][447] ([Intel XE#1439] / [Intel XE#836]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-bmg: [SKIP][448] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][449] ([Intel XE#2446]) [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_pm_rpm@modeset-lpsp.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-bmg: [SKIP][450] ([Intel XE#2136]) -> [SKIP][451] ([Intel XE#1489]) +4 other tests skip [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-4/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-dg2-set2: [SKIP][452] ([Intel XE#1489]) -> [SKIP][453] ([Intel XE#2136]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-435/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][454] ([Intel XE#2136]) -> [SKIP][455] ([Intel XE#1489]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-bmg: [SKIP][456] ([Intel XE#1489]) -> [SKIP][457] ([Intel XE#2136]) +11 other tests skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][458] ([Intel XE#2136]) -> [SKIP][459] ([Intel XE#2387]) +1 other test skip [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-3/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-bmg: [SKIP][460] ([Intel XE#2387]) -> [SKIP][461] ([Intel XE#2136]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_psr2_su@page_flip-xrgb8888.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr-primary-blt: - shard-dg2-set2: [SKIP][462] ([Intel XE#2136]) -> [SKIP][463] ([Intel XE#2850] / [Intel XE#929]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_psr@fbc-psr-primary-blt.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-436/igt at kms_psr@fbc-psr-primary-blt.html * igt at kms_psr@fbc-psr-sprite-plane-move: - shard-dg2-set2: [SKIP][464] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][465] ([Intel XE#2136] / [Intel XE#2351]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-435/igt at kms_psr@fbc-psr-sprite-plane-move.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at kms_psr@fbc-psr-sprite-plane-move.html * igt at kms_psr@fbc-psr2-primary-blt: - shard-bmg: [SKIP][466] ([Intel XE#2136]) -> [SKIP][467] ([Intel XE#2234] / [Intel XE#2850]) +12 other tests skip [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_psr@fbc-psr2-primary-blt.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_psr@fbc-psr2-primary-blt.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: [SKIP][468] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][469] ([Intel XE#2136]) +19 other tests skip [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_psr@psr-primary-page-flip.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr-sprite-render: - shard-bmg: [SKIP][470] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][471] ([Intel XE#2136] / [Intel XE#2231]) [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_psr@psr-sprite-render.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_psr@psr-sprite-render.html * igt at kms_psr@psr2-primary-blt: - shard-dg2-set2: [SKIP][472] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][473] ([Intel XE#2850] / [Intel XE#929]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_psr@psr2-primary-blt.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-433/igt at kms_psr@psr2-primary-blt.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][474] ([Intel XE#2414]) -> [SKIP][475] ([Intel XE#2136]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][476] ([Intel XE#2423]) -> [SKIP][477] ([Intel XE#2330]) [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-bmg: [SKIP][478] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][479] ([Intel XE#2423]) +1 other test skip [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: [SKIP][480] ([Intel XE#2330]) -> [SKIP][481] ([Intel XE#2423]) [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-bmg: [SKIP][482] ([Intel XE#2423]) -> [SKIP][483] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_rotation_crc@sprite-rotation-90.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][484] ([Intel XE#2423]) -> [SKIP][485] ([Intel XE#2413]) [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-center.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: [SKIP][486] ([Intel XE#1435]) -> [SKIP][487] ([Intel XE#3007]) [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_setmode@basic-clone-single-crtc.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_setmode@clone-exclusive-crtc: - shard-bmg: [SKIP][488] ([Intel XE#2423]) -> [SKIP][489] ([Intel XE#1435]) [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_setmode@clone-exclusive-crtc.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][490] ([Intel XE#1500]) -> [SKIP][491] ([Intel XE#362]) [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: [SKIP][492] ([Intel XE#2450]) -> [SKIP][493] ([Intel XE#2423]) [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_tv_load_detect@load-detect.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@max-min: - shard-bmg: [SKIP][494] ([Intel XE#2423]) -> [SKIP][495] ([Intel XE#1499]) [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_vrr@max-min.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-8/igt at kms_vrr@max-min.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-dg2-set2: [SKIP][496] ([Intel XE#2423] / [i915#2575]) -> [SKIP][497] ([Intel XE#455]) [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_vrr@seamless-rr-switch-drrs.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-434/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][498] ([Intel XE#1499]) -> [SKIP][499] ([Intel XE#2423]) +1 other test skip [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_vrr@seamless-rr-switch-virtual.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-fb-id: - shard-bmg: [SKIP][500] ([Intel XE#2423]) -> [SKIP][501] ([Intel XE#756]) [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_writeback@writeback-fb-id.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-2/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: [SKIP][502] ([Intel XE#756]) -> [SKIP][503] ([Intel XE#2423]) +2 other tests skip [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_writeback@writeback-pixel-formats.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][504] ([Intel XE#2423]) -> [SKIP][505] ([Intel XE#1091] / [Intel XE#2849]) [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at sriov_basic@enable-vfs-autoprobe-off.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-3/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: [SKIP][506] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][507] ([Intel XE#2423]) [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][508] ([Intel XE#1130]) -> [SKIP][509] ([Intel XE#1280] / [Intel XE#455]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_compute_preempt@compute-preempt.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-432/igt at xe_compute_preempt@compute-preempt.html * igt at xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: [SKIP][510] ([Intel XE#1123]) -> [SKIP][511] ([Intel XE#1130]) [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-435/igt at xe_copy_basic@mem-copy-linear-0xfffe.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at xe_copy_basic@mem-copy-linear-0xfffe.html * igt at xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][512] ([Intel XE#1130]) -> [SKIP][513] ([Intel XE#2504]) [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_create@multigpu-create-massive-size.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-4/igt at xe_create@multigpu-create-massive-size.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][514] ([Intel XE#1130]) -> [SKIP][515] ([Intel XE#2905]) +12 other tests skip [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-2/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: [SKIP][516] ([Intel XE#1130]) -> [SKIP][517] ([Intel XE#3889]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-bmg: [SKIP][518] ([Intel XE#3889]) -> [SKIP][519] ([Intel XE#1130]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug@discovery-empty: - shard-bmg: [SKIP][520] ([Intel XE#2905]) -> [SKIP][521] ([Intel XE#1130]) +16 other tests skip [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at xe_eudebug@discovery-empty.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at xe_eudebug@discovery-empty.html * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-dg2-set2: [SKIP][522] ([Intel XE#2905]) -> [SKIP][523] ([Intel XE#1130]) +2 other tests skip [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-464/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: [SKIP][524] ([Intel XE#1130]) -> [SKIP][525] ([Intel XE#2322]) +10 other tests skip [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-3/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][526] ([Intel XE#2322]) -> [SKIP][527] ([Intel XE#1130]) +15 other tests skip [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at xe_exec_basic@multigpu-once-null-rebind.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][528] ([Intel XE#288]) -> [SKIP][529] ([Intel XE#1130]) +3 other tests skip [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-435/igt at xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_fault_mode@twice-basic-prefetch: - shard-dg2-set2: [SKIP][530] ([Intel XE#1130]) -> [SKIP][531] ([Intel XE#288]) +3 other tests skip [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_exec_fault_mode@twice-basic-prefetch.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-435/igt at xe_exec_fault_mode@twice-basic-prefetch.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][532] ([Intel XE#1192]) -> [SKIP][533] ([Intel XE#2833]) [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at xe_live_ktest@xe_eudebug.html * igt at xe_mmap@small-bar: - shard-bmg: [SKIP][534] ([Intel XE#586]) -> [SKIP][535] ([Intel XE#1130]) [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at xe_mmap@small-bar.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at xe_mmap@small-bar.html * igt at xe_oa@syncs-ufence-wait: - shard-dg2-set2: [SKIP][536] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][537] ([Intel XE#1130]) [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_oa@syncs-ufence-wait.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at xe_oa@syncs-ufence-wait.html * igt at xe_pat@pat-index-xelpg: - shard-bmg: [SKIP][538] ([Intel XE#1130]) -> [SKIP][539] ([Intel XE#2236]) [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at xe_pat@pat-index-xelpg.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-6/igt at xe_pat@pat-index-xelpg.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: [SKIP][540] ([Intel XE#2284]) -> [SKIP][541] ([Intel XE#1130]) +1 other test skip [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at xe_pm@d3cold-mmap-system.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: [SKIP][542] ([Intel XE#1130]) -> [SKIP][543] ([Intel XE#2284]) +1 other test skip [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at xe_pm@s2idle-d3cold-basic-exec.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-4/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@vram-d3cold-threshold: - shard-bmg: [SKIP][544] ([Intel XE#579]) -> [SKIP][545] ([Intel XE#1130]) [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at xe_pm@vram-d3cold-threshold.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-gt-list: - shard-dg2-set2: [SKIP][546] ([Intel XE#944]) -> [SKIP][547] ([Intel XE#1130]) [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_query@multigpu-query-gt-list.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-dg2-464/igt at xe_query@multigpu-query-gt-list.html * igt at xe_query@multigpu-query-invalid-extension: - shard-bmg: [SKIP][548] ([Intel XE#944]) -> [SKIP][549] ([Intel XE#1130]) +3 other tests skip [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at xe_query@multigpu-query-invalid-extension.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-1/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_sriov_flr@flr-each-isolation: - shard-bmg: [SKIP][550] ([Intel XE#3342]) -> [SKIP][551] ([Intel XE#1130]) [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at xe_sriov_flr@flr-each-isolation.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/shard-bmg-7/igt at xe_sriov_flr@flr-each-isolation.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [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#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#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [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#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#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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [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#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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [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#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [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#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026 [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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [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#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#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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3861 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [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#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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_8195 -> IGTPW_12451 * Linux: xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c -> xe-2502-58078c97cb752a5ea9ae2f2e3ab898945153d39e IGTPW_12451: 93736f372c8c3aae00d18f841f9990a0e22c6586 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8195: 8195 xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c xe-2502-58078c97cb752a5ea9ae2f2e3ab898945153d39e: 58078c97cb752a5ea9ae2f2e3ab898945153d39e == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12451/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From christoph.manszewski at intel.com Fri Jan 17 10:36:56 2025 From: christoph.manszewski at intel.com (Manszewski, Christoph) Date: Fri, 17 Jan 2025 11:36:56 +0100 Subject: [PATCH i-g-t v2 1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test In-Reply-To: <20250116125738.146610-1-jan.sokolowski@intel.com> References: <20250116125738.146610-1-jan.sokolowski@intel.com> Message-ID: <269bc5f4-fe4a-41c9-b11b-ea2ca8c6824d@intel.com> Hi Jan, On 16.01.2025 13:57, Jan Sokolowski wrote: > In some cases, ccs_mode_all_engines can fail, > which will cause test fixture to not execute properly > and put the rest of the tests in an unstable state. Also, > ccs_mode_all_engines changes the state of the card for > other tests as well, thus it should clean after itself too, > which until now it didn't do. > > Move the test to the end in the execution list and add > a proper cleanup method, ccs_mode_restore; > > Signed-off-by: Jan Sokolowski > --- > > v2: Forgot proper path in title > > --- > tests/intel/xe_eudebug.c | 46 ++++++++++++++++++++++++++++++---------- > 1 file changed, 35 insertions(+), 11 deletions(-) > > diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c > index 91e9ae885..c93b55857 100644 > --- a/tests/intel/xe_eudebug.c > +++ b/tests/intel/xe_eudebug.c > @@ -2805,6 +2805,25 @@ static void ccs_mode_all_engines(int num_gt) > igt_require(num_gts_with_ccs_mode > 0); > } > > +static void ccs_mode_restore(int num_gt) > +{ > + int fd, gt, gt_fd, ccs_mode, num_slices; > + > + for (gt = 0; gt < num_gt; gt++) { > + fd = drm_open_driver(DRIVER_XE); > + gt_fd = xe_sysfs_gt_open(fd, gt); > + close(fd); > + > + if (igt_sysfs_scanf(gt_fd, "num_cslices", "%u", &num_slices) <= 0) > + continue; > + > + igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", 1) > 0); Well - this doesn't really restore the previous value, rather sets it to 1. > + igt_assert(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", &ccs_mode) > 0); > + igt_assert(ccs_mode == 1); > + close(gt_fd); > + } > +} > + > igt_main > { > bool was_enabled; > @@ -2919,17 +2938,6 @@ igt_main > igt_subtest("discovery-empty-clients") > test_empty_discovery(fd, DISCOVERY_DESTROY_RESOURCES, 16); > > - igt_subtest_group { > - igt_fixture { > - drm_close_driver(fd); > - ccs_mode_all_engines(gt_count); > - fd = drm_open_driver(DRIVER_XE); > - } > - > - igt_subtest("exec-queue-placements") > - test_basic_sessions(fd, EXEC_QUEUES_PLACEMENTS, 1, true); > - } > - > igt_fixture { > xe_eudebug_enable(fd, was_enabled); > drm_close_driver(fd); > @@ -2984,4 +2992,20 @@ igt_main > free(multigpu_was_enabled); > } > } > + > + igt_subtest_group { > + igt_fixture { > + ccs_mode_all_engines(gt_count); > + } > + > + igt_subtest("exec-queue-placements") { > + fd = drm_open_driver(DRIVER_XE); > + > + test_basic_sessions(fd, EXEC_QUEUES_PLACEMENTS, 1, true); > + > + ccs_mode_restore(gt_count); This looks weird - the fixture sets something, that the test unsets. I think this should be symmetric - either we want the setting to apply for a subtest_group and we set/unset it in a fixture, or we want it to be subtest specific so we set/unset it in a subtest. The original placement in the fixture indicates the former, though for now we only have a single subtest and I am not sure what the plans for future tests are. I am also not convinced about moving the subtest group to work around the fact, that the skip from 'ccs_mode_all_engines' could leave the device closed. You could just fix it by either returning an appropriate value based on which you skip after reopening the driver in the fixture, or let the function handle the closing and opening by passing in the fd, and returning a new one. In the end I am also not sure why we need that close/open in the first place though I assume it is there for a reason. Thanks, Christoph > + drm_close_driver(fd); > + } > + } > + > } From patchwork at emeril.freedesktop.org Fri Jan 17 10:44:50 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 10:44:50 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_The_series_add_support_f?= =?utf-8?q?or_UMQ_submission?= In-Reply-To: <20250116065211.1882469-1-sunil.khatri@amd.com> References: <20250116065211.1882469-1-sunil.khatri@amd.com> Message-ID: <173711069082.682686.10016003524270936669@b555e5b46a47> == Series Details == Series: The series add support for UMQ submission URL : https://patchwork.freedesktop.org/series/143586/ State : failure == Summary == CI Bug Log - changes from IGT_8193_full -> IGTPW_12446_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12446_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12446_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_12446/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12446_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_12446/shard-tglu-1/igt at gem_tiled_swapping@non-threaded.html * igt at i915_module_load@load: - shard-dg2: ([PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16]) -> ([PASS][17], [DMESG-WARN][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [FAIL][31], [FAIL][32], [FAIL][33], [FAIL][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38]) ([i915#13368]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-10/igt at i915_module_load@load.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-2/igt at i915_module_load@load.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-5/igt at i915_module_load@load.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-3/igt at i915_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-7/igt at i915_module_load@load.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-10/igt at i915_module_load@load.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-8/igt at i915_module_load@load.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-4/igt at i915_module_load@load.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-2/igt at i915_module_load@load.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-3/igt at i915_module_load@load.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-8/igt at i915_module_load@load.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-5/igt at i915_module_load@load.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-4/igt at i915_module_load@load.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-11/igt at i915_module_load@load.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-11/igt at i915_module_load@load.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-2/igt at i915_module_load@load.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-2/igt at i915_module_load@load.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-10/igt at i915_module_load@load.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-3/igt at i915_module_load@load.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at i915_module_load@load.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-3/igt at i915_module_load@load.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-5/igt at i915_module_load@load.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-2/igt at i915_module_load@load.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at i915_module_load@load.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/igt at i915_module_load@load.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-5/igt at i915_module_load@load.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/igt at i915_module_load@load.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at i915_module_load@load.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-11/igt at i915_module_load@load.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-11/igt at i915_module_load@load.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-11/igt at i915_module_load@load.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-11/igt at i915_module_load@load.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-11/igt at i915_module_load@load.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-10/igt at i915_module_load@load.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at i915_module_load@load.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at i915_module_load@load.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-5/igt at i915_module_load@load.html * igt at i915_module_load@resize-bar: - shard-dg2: [PASS][39] -> [SKIP][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-4/igt at i915_module_load@resize-bar.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-3/igt at i915_module_load@resize-bar.html * igt at i915_selftest@live: - shard-rkl: [PASS][41] -> [DMESG-FAIL][42] +1 other test dmesg-fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-2/igt at i915_selftest@live.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-7/igt at i915_selftest@live.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][43] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-hdmi-a3.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: [PASS][44] -> [CRASH][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbcpsr-suspend: - shard-mtlp: [PASS][46] -> [ABORT][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbcpsr-suspend.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-4/igt at kms_frontbuffer_tracking@fbcpsr-suspend.html #### Warnings #### * igt at gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][48] ([i915#13427]) -> [INCOMPLETE][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-5/igt at gem_create@create-ext-cpu-access-big.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-11/igt at gem_create@create-ext-cpu-access-big.html New tests --------- New tests have been introduced between IGT_8193_full and IGTPW_12446_full: ### New IGT tests (82) ### * igt at gem_ctx_engines@independent at bcs0: - Statuses : 6 pass(s) - Exec time: [0.06, 0.22] s * igt at gem_ctx_engines@independent at rcs0: - Statuses : 6 pass(s) - Exec time: [0.06, 0.23] s * igt at gem_ctx_engines@independent at vcs0: - Statuses : 6 pass(s) - Exec time: [0.05, 0.17] s * igt at gem_ctx_engines@independent at vcs1: - Statuses : 4 pass(s) - Exec time: [0.06, 0.22] s * igt at gem_ctx_engines@independent at vecs0: - Statuses : 6 pass(s) - Exec time: [0.05, 0.21] s * igt at gem_exec_async@forked-writes: - Statuses : 7 pass(s) - Exec time: [0.07, 0.32] s * igt at gem_exec_async@forked-writes at bcs0: - Statuses : 7 pass(s) - Exec time: [0.02, 0.08] s * igt at gem_exec_async@forked-writes at rcs0: - Statuses : 7 pass(s) - Exec time: [0.02, 0.08] s * igt at gem_exec_async@forked-writes at vcs0: - Statuses : 7 pass(s) - Exec time: [0.02, 0.08] s * igt at gem_exec_async@forked-writes at vcs1: - Statuses : 4 pass(s) - Exec time: [0.03, 0.04] s * igt at gem_exec_async@forked-writes at vecs0: - Statuses : 6 pass(s) - Exec time: [0.02, 0.07] s * igt at gem_exec_balancer@fairslice: - Statuses : 3 pass(s) 1 skip(s) - Exec time: [0.0, 3.07] s * igt at gem_exec_balancer@nohangcheck: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 1.59] s * igt at gem_exec_balancer@noheartbeat: - Statuses : 3 pass(s) 4 skip(s) - Exec time: [0.0, 3.72] s * igt at gem_exec_balancer@persistence: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0, 1.05] s * igt at gem_exec_balancer@sequential: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 3.76] s * igt at gem_exec_create@legacy: - Statuses : 6 pass(s) - Exec time: [2.04, 4.21] s * igt at gem_exec_schedule@fairslice: - Statuses : 5 pass(s) - Exec time: [8.04, 14.14] s * igt at gem_exec_schedule@fairslice-all: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 2.11] s * igt at gem_exec_schedule@fairslice at bcs0: - Statuses : 5 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@fairslice at rcs0: - Statuses : 5 pass(s) - Exec time: [2.01, 2.04] s * igt at gem_exec_schedule@fairslice at vcs0: - Statuses : 5 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@fairslice at vcs1: - Statuses : 3 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@fairslice at vecs0: - Statuses : 5 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@preempt-user: - Statuses : 5 pass(s) - Exec time: [0.06, 0.24] s * igt at gem_exec_schedule@preempt-user at bcs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@preempt-user at rcs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.06] s * igt at gem_exec_schedule@preempt-user at vcs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@preempt-user at vcs1: - Statuses : 4 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@preempt-user at vecs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@u-fairslice: - Statuses : 5 pass(s) - Exec time: [8.04, 14.14] s * igt at gem_exec_schedule@u-fairslice-all: - Statuses : 6 pass(s) - Exec time: [2.04, 2.12] s * igt at gem_exec_schedule@u-fairslice at bcs0: - Statuses : 5 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-fairslice at rcs0: - Statuses : 5 pass(s) - Exec time: [2.01, 2.04] s * igt at gem_exec_schedule@u-fairslice at vcs0: - Statuses : 5 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-fairslice at vcs1: - Statuses : 4 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-fairslice at vecs0: - Statuses : 5 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-independent: - Statuses : 7 pass(s) - Exec time: [0.10, 9.59] s * igt at gem_exec_schedule@u-independent at rcs0: - Statuses : 7 pass(s) - Exec time: [0.06, 1.58] s * igt at gem_exec_schedule@u-independent at vcs0: - Statuses : 6 pass(s) - Exec time: [0.11, 2.02] s * igt at gem_exec_schedule@u-independent at vcs1: - Statuses : 4 pass(s) - Exec time: [0.11, 1.98] s * igt at gem_exec_schedule@u-independent at vecs0: - Statuses : 6 pass(s) - Exec time: [0.11, 1.99] s * igt at gem_exec_schedule@u-lateslice: - Statuses : 3 pass(s) 1 skip(s) - Exec time: [0.0, 0.11] s * igt at gem_exec_schedule@u-lateslice at bcs0: - Statuses : 3 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-lateslice at rcs0: - Statuses : 3 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-lateslice at vcs0: - Statuses : 3 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-lateslice at vcs1: - Statuses : 2 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-lateslice at vecs0: - Statuses : 3 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-semaphore-codependency: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 0.04] s * igt at gem_exec_schedule@u-semaphore-noskip: - Statuses : - Exec time: [None] s * igt at gem_exec_schedule@u-semaphore-resolve: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 0.04] s * igt at gem_exec_schedule@u-semaphore-user: - Statuses : 4 pass(s) - Exec time: [0.01, 0.08] s * igt at gem_exec_schedule@u-submit-early-slice: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 0.39] s * igt at gem_exec_schedule@u-submit-early-slice at bcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.06] s * igt at gem_exec_schedule@u-submit-early-slice at rcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.08] s * igt at gem_exec_schedule@u-submit-early-slice at vcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-early-slice at vcs1: - Statuses : 3 pass(s) - Exec time: [0.04, 0.05] s * igt at gem_exec_schedule@u-submit-early-slice at vecs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.06] s * igt at gem_exec_schedule@u-submit-golden-slice: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 0.21] s * igt at gem_exec_schedule@u-submit-golden-slice at bcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@u-submit-golden-slice at rcs0: - Statuses : 5 pass(s) - Exec time: [0.03, 0.05] s * igt at gem_exec_schedule@u-submit-golden-slice at vcs0: - Statuses : 5 pass(s) - Exec time: [0.03, 0.05] s * igt at gem_exec_schedule@u-submit-golden-slice at vcs1: - Statuses : 3 pass(s) - Exec time: [0.03, 0.04] s * igt at gem_exec_schedule@u-submit-golden-slice at vecs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@u-submit-late-slice: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 0.21] s * igt at gem_exec_schedule@u-submit-late-slice at bcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-late-slice at rcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-late-slice at vcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-late-slice at vcs1: - Statuses : 2 pass(s) - Exec time: [0.03] s * igt at gem_exec_schedule@u-submit-late-slice at vecs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_softpin@32b-excludes-last-page: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt at gem_softpin@full: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt at gem_softpin@zero: - Statuses : 5 pass(s) - Exec time: [0.00, 0.01] s * igt at gen9_exec_parse@shadow-peek: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt at kms_invalid_mode@overflow-vrefresh at pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.04] s * igt at kms_invalid_mode@overflow-vrefresh at pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt at kms_invalid_mode@overflow-vrefresh at pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt at kms_invalid_mode@overflow-vrefresh at pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt at perf@non-zero-reason: - Statuses : 1 fail(s) 3 pass(s) - Exec time: [2.76, 9.44] s * igt at perf_pmu@gt-awake: - Statuses : 1 dmesg-warn(s) 4 pass(s) - Exec time: [2.01, 8.92] s * igt at perf_pmu@invalid-open: - Statuses : 4 pass(s) - Exec time: [0.0, 0.00] s * igt at perf_pmu@rc6-suspend: - Statuses : 6 pass(s) - Exec time: [6.90, 23.55] s Known issues ------------ Here are the changes found in IGTPW_12446_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#8411]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-13/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][51] ([i915#8411]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-10/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at debugfs_test@basic-hwmon: - shard-tglu-1: NOTRUN -> [SKIP][52] ([i915#9318]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at debugfs_test@basic-hwmon.html * igt at device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#11078]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-5/igt at device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][54] ([i915#11078]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-5/igt at device_reset@cold-reset-bound.html * igt at drm_fdinfo@busy-idle at bcs0: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#8414]) +17 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-10/igt at drm_fdinfo@busy-idle at bcs0.html * igt at drm_fdinfo@busy-idle at vcs1: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#8414]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-17/igt at drm_fdinfo@busy-idle at vcs1.html * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#8414]) +6 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-3/igt at drm_fdinfo@busy-idle at vecs0.html * igt at gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3936]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at gem_busy@semaphore.html * igt at gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#3555] / [i915#9323]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-17/igt at gem_ccs@block-copy-compressed.html - shard-rkl: NOTRUN -> [SKIP][60] ([i915#3555] / [i915#9323]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-5/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#3555] / [i915#9323]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#3555] / [i915#9323]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-3/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#9323]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-2/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][64] ([i915#7697]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-6/igt at gem_close_race@multigpu-basic-process.html - shard-dg2: NOTRUN -> [SKIP][65] ([i915#7697]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/igt at gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][66] ([i915#7697]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-1/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@create-ext-cpu-access-big: - shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#6335]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at gem_create@create-ext-cpu-access-big.html - shard-rkl: NOTRUN -> [SKIP][68] ([i915#6335]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#8562]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-7/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][70] ([i915#1099]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-snb1/igt at gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt at gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#5882]) +7 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at gem_ctx_persistence@saturated-hostile-nopreempt.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#280]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-7/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][73] ([i915#280]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-8/igt at gem_ctx_sseu@invalid-args.html * igt at gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#280]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@reset-stress: - shard-snb: NOTRUN -> [FAIL][75] ([i915#8898]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-snb5/igt at gem_eio@reset-stress.html - shard-dg1: [PASS][76] -> [FAIL][77] ([i915#12543] / [i915#5784]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-14/igt at gem_eio@reset-stress.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-17/igt at gem_eio@reset-stress.html * igt at gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4771]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-5/igt at gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4771]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-17/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4812]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4036]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-10/igt at gem_exec_balancer@invalid-bonds.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4036]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-17/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@noheartbeat (NEW): - {shard-dg2-9}: NOTRUN -> [SKIP][83] ([i915#8555]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-9/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#4525]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at gem_exec_balancer@parallel.html * igt at gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#4525]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-3/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#4525]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-4/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_balancer@sliced: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4812]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-18/igt at gem_exec_balancer@sliced.html * igt at gem_exec_big@single: - shard-tglu: [PASS][88] -> [ABORT][89] ([i915#11713]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-tglu-9/igt at gem_exec_big@single.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-5/igt at gem_exec_big@single.html * igt at gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][90] ([i915#11965]) +1 other test fail [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-2/igt at gem_exec_capture@capture.html * igt at gem_exec_capture@capture-invisible at smem0: - shard-glk: NOTRUN -> [SKIP][91] ([i915#6334]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-glk5/igt at gem_exec_capture@capture-invisible at smem0.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][92] ([i915#11965]) +4 other tests fail [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at gem_exec_capture@capture at vecs0-lmem0.html - shard-dg1: NOTRUN -> [FAIL][93] ([i915#11965]) +2 other tests fail [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-13/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3539]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-18/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#3539] / [i915#4852]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at gem_exec_flush@basic-uc-ro-default.html - shard-dg1: NOTRUN -> [SKIP][96] ([i915#3539] / [i915#4852]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-13/igt at gem_exec_flush@basic-uc-ro-default.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3539]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-10/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#3281]) +8 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-12/igt at gem_exec_reloc@basic-wc-read-active.html * igt at gem_exec_reloc@basic-write-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#3281]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-3/igt at gem_exec_reloc@basic-write-gtt-noreloc.html * igt at gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#3281]) +15 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at gem_exec_reloc@basic-write-read-active.html - shard-rkl: NOTRUN -> [SKIP][101] ([i915#3281]) +13 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-1/igt at gem_exec_reloc@basic-write-read-active.html * igt at gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4537] / [i915#4812]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-5/igt at gem_exec_schedule@semaphore-power.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4860]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/igt at gem_fence_thrash@bo-write-verify-y.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4860]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-13/igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt at gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#2190]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-1/igt at gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][106] ([i915#2190]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-glk7/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#4613] / [i915#7582]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-2/igt at gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][108] ([i915#4613] / [i915#7582]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-8/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#12193]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-18/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4565]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-18/igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0.html * igt at gem_lmem_swapping@massive-random: - shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#4613]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at gem_lmem_swapping@massive-random.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#4613]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-4/igt at gem_lmem_swapping@parallel-random-verify.html - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#4613]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-7/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][114] ([i915#4613]) +6 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-glk2/igt at gem_lmem_swapping@random-engines.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#4613]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-4/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#8289]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-5/igt at gem_media_fill@media-fill.html * igt at gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#284]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][118] ([i915#284]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/igt at gem_media_vme.html * igt at gem_mmap_gtt@basic-read-write-distinct: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#4077]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-1/igt at gem_mmap_gtt@basic-read-write-distinct.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#4077]) +14 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#4083]) +10 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-2/igt at gem_mmap_wc@fault-concurrent.html * igt at gem_mmap_wc@read-write-distinct: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#4083]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-3/igt at gem_mmap_wc@read-write-distinct.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#4083]) +6 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-12/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#3282]) +14 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-5/igt at gem_partial_pwrite_pread@reads.html * igt at gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#3282]) +6 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-13/igt at gem_partial_pwrite_pread@reads-snoop.html - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#3282]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-8/igt at gem_partial_pwrite_pread@reads-snoop.html * igt at gem_pread@exhaustion: - shard-tglu: NOTRUN -> [WARN][127] ([i915#2658]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-10/igt at gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][128] ([i915#2658]) +1 other test warn [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-glk1/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#3282]) +9 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-1/igt at gem_pwrite@basic-exhaustion.html - shard-snb: NOTRUN -> [WARN][130] ([i915#2658]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-snb4/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][131] ([i915#12964]) +2 other tests timeout [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-4/igt at gem_pxp@create-protected-buffer.html - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4270]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-12/igt at gem_pxp@create-protected-buffer.html * igt at gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][133] ([i915#12917] / [i915#12964]) +3 other tests timeout [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html * igt at gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#4270]) +5 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at gem_pxp@protected-raw-src-copy-not-readible.html * igt at gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#4270]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-2/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#5190] / [i915#8428]) +13 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-10/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#8428]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-6/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#4079]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][139] ([i915#8411]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#4079]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-18/igt at gem_set_tiling_vs_gtt.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4885]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-17/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_tiled_fence_blits@basic: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#4077]) +8 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-17/igt at gem_tiled_fence_blits@basic.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][143] ([i915#13263] / [i915#13449]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-snb4/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#3297]) +7 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at gem_userptr_blits@coherency-sync.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#3297]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][146] ([i915#3323]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-glk7/igt at gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][147] ([i915#3297] / [i915#3323]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-5/igt at gem_userptr_blits@dmabuf-sync.html - shard-dg1: NOTRUN -> [SKIP][148] ([i915#3297]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-13/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3282] / [i915#3297]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-1/igt at gem_userptr_blits@forbidden-operations.html - shard-dg2: NOTRUN -> [SKIP][150] ([i915#3282] / [i915#3297]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-5/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3297] / [i915#4880]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#3297] / [i915#4880]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-18/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#3297]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-4/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#3297]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-9/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][155] +472 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-snb5/igt at gem_vm_create@invalid-create.html * igt at gem_workarounds@suspend-resume: - shard-glk: [PASS][156] -> [INCOMPLETE][157] ([i915#13356]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-glk8/igt at gem_workarounds@suspend-resume.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-glk4/igt at gem_workarounds@suspend-resume.html * igt at gem_workarounds@suspend-resume-context: - shard-glk: NOTRUN -> [INCOMPLETE][158] ([i915#13356]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-glk9/igt at gem_workarounds@suspend-resume-context.html * igt at gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#2856]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-5/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#2527]) +6 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-7/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-start-out: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#2527] / [i915#2856]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at gen9_exec_parse@bb-start-out.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#2856]) +7 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-10/igt at gen9_exec_parse@unaligned-access.html - shard-dg1: NOTRUN -> [SKIP][163] ([i915#2527]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-17/igt at gen9_exec_parse@unaligned-access.html * igt at gen9_exec_parse@valid-registers: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#2527] / [i915#2856]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-2/igt at gen9_exec_parse@valid-registers.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [DMESG-WARN][165] ([i915#13475]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-12/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#8399]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at i915_pm_freq_api@freq-basic-api.html * igt at i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#8399]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_rc6_residency@rc6-fence: - shard-tglu-1: NOTRUN -> [WARN][168] ([i915#2681]) +1 other test warn [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at i915_pm_rc6_residency@rc6-fence.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#11681] / [i915#6621]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-14/igt at i915_pm_rps@basic-api.html - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#11681] / [i915#6621]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-3/igt at i915_pm_rps@basic-api.html - shard-dg2: NOTRUN -> [SKIP][171] ([i915#11681] / [i915#6621]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#11681]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-10/igt at i915_pm_rps@thresholds.html * igt at i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#6245]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at i915_query@hwconfig_table.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#6188]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-5/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_selftest@mock at memory_region: - shard-tglu-1: NOTRUN -> [DMESG-WARN][175] ([i915#9311]) +1 other test dmesg-warn [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at i915_selftest@mock at memory_region.html * igt at intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#7707]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-2/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#5190]) +4 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-3/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][178] ([i915#4212]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-17/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#4212]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-3/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#4212]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-10/igt at kms_addfb_basic@clobberred-modifier.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-tglu: NOTRUN -> [FAIL][181] ([i915#10991] / [i915#13320]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-5/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][182] ([i915#10991]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-5/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-edp-1-4-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8709]) +11 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-6/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-edp-1-4-mc-ccs.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-1-y-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#8709]) +7 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-1-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][185] ([i915#8709]) +7 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/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-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#8709]) +15 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-14/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-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#8709]) +11 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/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@invalid-async-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#12967]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-2/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#9531]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-10/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][190] ([i915#9531]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-mtlp: [PASS][191] -> [FAIL][192] ([i915#11808] / [i915#5956]) +1 other test fail [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-8/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-6/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#1769] / [i915#3555]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][194] ([i915#1769] / [i915#3555]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-12/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-dg2: NOTRUN -> [SKIP][195] ([i915#1769] / [i915#3555]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-10/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-hdmi-a-1: - shard-tglu: [PASS][196] -> [FAIL][197] ([i915#11808]) +3 other tests fail [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-tglu-10/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-hdmi-a-1.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-5/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-hdmi-a-1.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#5286]) +10 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][199] ([i915#5286]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-10/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#5286]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/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][201] ([i915#4538] / [i915#5286]) +5 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-14/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#3638]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-4/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#3638]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-14/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#4538] / [i915#5190]) +20 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][205] +7 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-5/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#4538]) +4 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-17/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#12313]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-17/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#12313]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-8/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][209] ([i915#6095]) +98 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-18/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-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#6095]) +39 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-9/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-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#12313]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#12805]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-18/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#6095]) +24 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#6095]) +125 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/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-mtl-rc-ccs at pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#6095]) +13 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/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][216] ([i915#12796]) +1 other test incomplete [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/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][217] ([i915#12313]) +4 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#10307] / [i915#6095]) +163 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#12313]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-2/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][220] ([i915#12313]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-2/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][221] ([i915#10307] / [i915#10434] / [i915#6095]) +6 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/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 at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#11616] / [i915#7213]) +4 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-10/igt at kms_cdclk@mode-transition at pipe-a-dp-4.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#3742]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-4/igt at kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#3742]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-12/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#4087]) +4 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1.html * igt at kms_chamelium_audio@dp-audio-edid: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#11151] / [i915#7828]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at kms_chamelium_audio@dp-audio-edid.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#11151] / [i915#7828]) +16 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-1/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#11151] / [i915#7828]) +7 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-2/igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt at kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#11151] / [i915#7828]) +17 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at kms_chamelium_frames@hdmi-crc-fast.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#11151] / [i915#7828]) +7 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-12/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#11151] / [i915#7828]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-7/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-10/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#9424]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-1/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#3116] / [i915#3299]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-10/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#9424]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#9433]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-13/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#7118]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#7118] / [i915#9424]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#6944] / [i915#9424]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-1/igt at kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][240] ([i915#7118] / [i915#9424]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-2/igt at kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][241] ([i915#7116] / [i915#9424]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-18/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-256x256: - shard-rkl: [PASS][242] -> [DMESG-WARN][243] ([i915#12917] / [i915#12964]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-7/igt at kms_cursor_crc@cursor-offscreen-256x256.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-4/igt at kms_cursor_crc@cursor-offscreen-256x256.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#13049]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-7/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#13049]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-3/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#3555]) +4 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-max-size.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#13049]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-12/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#8814]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-7/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#3555]) +8 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-5/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#13049]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-3/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][251] +38 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-3/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#13046] / [i915#5354]) +13 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-2/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][253] ([i915#4103] / [i915#4213]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][254] ([i915#4103]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][255] ([i915#4103] / [i915#4213]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-17/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#9809]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-1/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][257] ([i915#2346]) +1 other test fail [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-glk4/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#9067]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/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-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#4103]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#9723]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-1/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#8588]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-12/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#3804]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-4/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1.html * igt at kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#1257]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#12402]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-5/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#8812]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-fractional-bpp: - shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#3840]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#3840]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-13/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#3840]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-4/igt at kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#3840]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-7/igt at kms_dsc@dsc-with-formats.html * igt at kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#1839]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#1839]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-3/igt at kms_feature_discovery@display-3x.html - shard-dg1: NOTRUN -> [SKIP][272] ([i915#1839]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-12/igt at kms_feature_discovery@display-3x.html - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#1839]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-1/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#658]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-17/igt at kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][275] ([i915#658]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][276] ([i915#658]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#9934]) +8 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-12/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#8381]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-17/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-modeset: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3637]) +3 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-7/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#9934]) +7 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][281] ([i915#4839]) +1 other test incomplete [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-glk6/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#3637]) +5 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-10/igt at kms_flip@2x-nonexisting-fb-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#9934]) +8 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-7/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-snb: NOTRUN -> [FAIL][284] ([i915#11989]) +1 other test fail [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-snb2/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#3637]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [DMESG-WARN][286] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-2/igt at kms_flip@absolute-wf_vblank-interruptible.html * igt at kms_flip@dpms-off-confusion-interruptible at a-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][287] ([i915#12964]) +31 other tests dmesg-warn [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-7/igt at kms_flip@dpms-off-confusion-interruptible at a-hdmi-a1.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at c-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][288] ([i915#13027]) +1 other test fail [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at kms_flip@flip-vs-expired-vblank-interruptible at c-hdmi-a3.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#8381]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][290] ([i915#12745] / [i915#4839]) +2 other tests incomplete [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-glk4/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][291] ([i915#12745]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-glk4/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#2672] / [i915#3555]) +8 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-2/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#2672] / [i915#3555]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#2587] / [i915#2672]) +2 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/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-xtile-to-64bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-8/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-mtlp: NOTRUN -> [SKIP][296] ([i915#3555] / [i915#8810]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-8/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-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#2672]) +8 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/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-downscaling: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#2672] / [i915#3555]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][299] ([i915#2672] / [i915#3555]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-13/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#2587] / [i915#2672]) +2 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-13/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-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#2587] / [i915#2672] / [i915#3555]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-14/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#2672]) +5 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][304] ([i915#2587] / [i915#2672]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-9/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-yftile-to-32bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#2672] / [i915#3555]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-2/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode.html * igt at kms_force_connector_basic@force-edid: - shard-dg1: NOTRUN -> [DMESG-WARN][307] ([i915#4391] / [i915#4423]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-13/igt at kms_force_connector_basic@force-edid.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#8708]) +3 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [FAIL][309] ([i915#6880]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#5354]) +53 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#8708]) +32 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#8708]) +18 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: - shard-dg2: [PASS][313] -> [FAIL][314] ([i915#6880]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-8/igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][315] ([i915#10056] / [i915#13353]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-glk5/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#5439]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#10433] / [i915#3458]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][318] +45 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][319] ([i915#1825]) +12 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#1825]) +65 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][321] +34 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#5439]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-10/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#3458]) +30 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-3/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#3023]) +41 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][325] ([i915#3458]) +22 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-13/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][326] +58 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-5/igt at kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#12713]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-tglu-1: NOTRUN -> [SKIP][328] ([i915#3555] / [i915#8228]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#3555] / [i915#8228]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-9/igt at kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#3555] / [i915#8228]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-3/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#3555] / [i915#8228]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#3555] / [i915#8228]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#10656]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][334] ([i915#12388]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-5/igt at kms_joiner@basic-force-big-joiner.html - shard-dg2: [PASS][335] -> [SKIP][336] ([i915#12388]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-10/igt at kms_joiner@basic-force-big-joiner.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][337] ([i915#12394] / [i915#13522]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-17/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#12339]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-4/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#10656]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-3/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#10656] / [i915#13522]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][341] ([i915#12394] / [i915#13522]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-4/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#12339]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-2/igt at kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][343] ([i915#12339]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-12/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#4816]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-4/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][345] ([i915#6301]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-10/igt at kms_panel_fitting@atomic-fastset.html - shard-dg2: NOTRUN -> [SKIP][346] ([i915#6301]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][347] ([i915#6301]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-dg1: NOTRUN -> [SKIP][348] ([i915#6301]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-18/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][349] +21 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-4/igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt at kms_pipe_crc_basic@hang-read-crc: - shard-dg1: [PASS][350] -> [DMESG-WARN][351] ([i915#4423]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-17/igt at kms_pipe_crc_basic@hang-read-crc.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-13/igt at kms_pipe_crc_basic@hang-read-crc.html * igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-0: - shard-rkl: [PASS][352] -> [DMESG-WARN][353] ([i915#12964]) +37 other tests dmesg-warn [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-4/igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-0.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-5/igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-0.html * igt at kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][354] ([i915#12178]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-glk1/igt at kms_plane_alpha_blend@alpha-basic.html * igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][355] ([i915#7862]) +1 other test fail [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-glk1/igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#3555]) +7 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-7/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#6953]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#12247] / [i915#9423]) +2 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#12247]) +23 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-mtlp: NOTRUN -> [SKIP][360] ([i915#12247]) +8 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-6/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-tglu: NOTRUN -> [SKIP][361] ([i915#3555]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-10/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation at pipe-b: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#12247]) +3 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-10/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation at pipe-b.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][363] ([i915#12247]) +15 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-4/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][364] ([i915#12247] / [i915#6953]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-2/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][365] ([i915#12247]) +4 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/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-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#12247] / [i915#6953] / [i915#9423]) +2 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-7/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][367] ([i915#12247] / [i915#6953]) +2 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-13/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][368] ([i915#12247] / [i915#6953]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-6/igt at kms_plane_scaling@planes-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b: - shard-dg1: NOTRUN -> [SKIP][369] ([i915#12247]) +16 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-14/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg1: NOTRUN -> [SKIP][370] ([i915#12343]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-18/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][371] ([i915#9812]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-9/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][372] ([i915#5354]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-14/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][373] ([i915#9685]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-2/igt at kms_pm_dc@dc5-psr.html - shard-dg2: NOTRUN -> [SKIP][374] ([i915#9685]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#5978]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-10/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][376] ([i915#3361]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/igt at kms_pm_dc@dc9-dpms.html - shard-tglu-1: NOTRUN -> [SKIP][377] ([i915#4281]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][378] ([i915#9340]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-5/igt at kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][379] ([i915#9340]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg1-18/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#8430]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][381] ([i915#9519]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-7/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][382] ([i915#9519]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-3/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][383] ([i915#9519]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-mtlp-5/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][384] ([i915#12916]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: [PASS][385] -> [INCOMPLETE][386] ([i915#10553]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-glk3/igt at kms_pm_rpm@system-suspend-modeset.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-glk4/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][387] ([i915#6524]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-2/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][388] ([i915#6524]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-rkl-6/igt at kms_prime@basic-modeset-hybrid.html - shard-tglu-1: NOTRUN -> [SKIP][389] ([i915#6524]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-1/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][390] ([i915#11520]) +15 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-snb2/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#11520]) +18 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-dg2-8/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][392] ([i915#11520]) +5 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/shard-tglu-5/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-mtlp: NOTRUN -> [SKIP][393] ([i915#12316]) +2 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12446/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 11:04:12 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 11:04:12 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_series_starting_with_=5Bi?= =?utf-8?q?-g-t=2Cv3=2C1/1=5D_tests/intel/xe=5Feudebug=3A_refactor_exec-queu?= =?utf-8?q?e-placements_test?= In-Reply-To: <20250117082055.154635-1-jan.sokolowski@intel.com> References: <20250117082055.154635-1-jan.sokolowski@intel.com> Message-ID: <173711185230.679380.16669155165130409307@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test URL : https://patchwork.freedesktop.org/series/143661/ State : failure == Summary == CI Bug Log - changes from IGT_8196 -> IGTPW_12454 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12454 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12454, 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_12454/index.html Participating hosts (42 -> 43) ------------------------------ Additional (2): bat-dg2-14 bat-dg1-7 Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12454: ### IGT changes ### #### Possible regressions #### * igt at i915_selftest@live: - bat-adlp-9: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/bat-adlp-9/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-adlp-9/igt at i915_selftest@live.html Known issues ------------ Here are the changes found in IGTPW_12454 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at gem_mmap@basic: - bat-dg1-7: NOTRUN -> [SKIP][3] ([i915#4083]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt at gem_mmap@basic.html - bat-dg2-14: NOTRUN -> [SKIP][4] ([i915#4083]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at gem_mmap@basic.html * igt at gem_render_tiled_blits@basic: - bat-dg2-14: NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at gem_render_tiled_blits@basic.html * igt at gem_tiled_blits@basic: - bat-dg1-7: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt at gem_tiled_blits@basic.html * igt at gem_tiled_fence_blits@basic: - bat-dg2-14: NOTRUN -> [SKIP][7] ([i915#4077]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at gem_tiled_fence_blits@basic.html * igt at gem_tiled_pread_basic: - bat-dg1-7: NOTRUN -> [SKIP][8] ([i915#4079]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt at gem_tiled_pread_basic.html * igt at i915_module_load@load: - fi-pnv-d510: [PASS][9] -> [ABORT][10] ([i915#13203]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/fi-pnv-d510/igt at i915_module_load@load.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/fi-pnv-d510/igt at i915_module_load@load.html * igt at i915_pm_rps@basic-api: - bat-dg2-14: NOTRUN -> [SKIP][11] ([i915#11681] / [i915#6621]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at i915_pm_rps@basic-api.html - bat-dg1-7: NOTRUN -> [SKIP][12] ([i915#11681] / [i915#6621]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt at i915_pm_rps@basic-api.html * igt at i915_selftest@live: - bat-mtlp-8: [PASS][13] -> [DMESG-FAIL][14] ([i915#12061]) +1 other test dmesg-fail [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/bat-mtlp-8/igt at i915_selftest@live.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-mtlp-8/igt at i915_selftest@live.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-14: NOTRUN -> [SKIP][15] ([i915#5190]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - bat-dg1-7: NOTRUN -> [SKIP][16] ([i915#4215]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt at kms_addfb_basic@basic-y-tiled-legacy.html - bat-dg2-14: NOTRUN -> [SKIP][17] ([i915#4215] / [i915#5190]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - bat-dg1-7: NOTRUN -> [SKIP][18] ([i915#4212]) +7 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_addfb_basic@tile-pitch-mismatch: - bat-dg2-14: NOTRUN -> [SKIP][19] ([i915#4212]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at kms_addfb_basic@tile-pitch-mismatch.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-14: NOTRUN -> [SKIP][20] ([i915#4103] / [i915#4213]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-dg1-7: NOTRUN -> [SKIP][21] ([i915#4103] / [i915#4213]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_dsc@dsc-basic: - bat-dg2-14: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#3840]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at kms_dsc@dsc-basic.html - bat-dg1-7: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#3840]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt at kms_dsc@dsc-basic.html * igt at kms_force_connector_basic@force-load-detect: - bat-dg2-14: NOTRUN -> [SKIP][24] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at kms_force_connector_basic@force-load-detect.html - bat-dg1-7: NOTRUN -> [SKIP][25] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt at kms_force_connector_basic@force-load-detect.html * igt at kms_force_connector_basic@prune-stale-modes: - bat-dg2-14: NOTRUN -> [SKIP][26] ([i915#5274]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_pm_backlight@basic-brightness: - bat-dg2-14: NOTRUN -> [SKIP][27] ([i915#5354]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at kms_pm_backlight@basic-brightness.html - bat-dg1-7: NOTRUN -> [SKIP][28] ([i915#5354]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt at kms_pm_backlight@basic-brightness.html * igt at kms_psr@psr-primary-page-flip: - bat-dg1-7: NOTRUN -> [SKIP][29] ([i915#1072] / [i915#9732]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr-sprite-plane-onoff: - bat-dg2-14: NOTRUN -> [SKIP][30] ([i915#1072] / [i915#9732]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_setmode@basic-clone-single-crtc: - bat-dg2-14: NOTRUN -> [SKIP][31] ([i915#3555]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at kms_setmode@basic-clone-single-crtc.html - bat-dg1-7: NOTRUN -> [SKIP][32] ([i915#3555]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt at kms_setmode@basic-clone-single-crtc.html * igt at prime_vgem@basic-fence-flip: - bat-dg2-14: NOTRUN -> [SKIP][33] ([i915#3708]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at prime_vgem@basic-fence-flip.html * igt at prime_vgem@basic-fence-mmap: - bat-dg1-7: NOTRUN -> [SKIP][34] ([i915#3708] / [i915#4077]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-fence-read: - bat-dg1-7: NOTRUN -> [SKIP][35] ([i915#3708]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@basic-gtt: - bat-dg2-14: NOTRUN -> [SKIP][36] ([i915#3708] / [i915#4077]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@basic-write: - bat-dg2-14: NOTRUN -> [SKIP][37] ([i915#3291] / [i915#3708]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt at prime_vgem@basic-write.html #### Possible fixes #### * igt at i915_module_load@load: - {bat-mtlp-9}: [DMESG-WARN][38] ([i915#13494]) -> [PASS][39] [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/bat-mtlp-9/igt at i915_module_load@load.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-mtlp-9/igt at i915_module_load@load.html * igt at i915_selftest@live at workarounds: - bat-arlh-3: [DMESG-FAIL][40] ([i915#12061]) -> [PASS][41] +1 other test pass [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/bat-arlh-3/igt at i915_selftest@live at workarounds.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-arlh-3/igt at i915_selftest@live at workarounds.html - bat-arls-5: [DMESG-FAIL][42] ([i915#12061]) -> [PASS][43] +1 other test pass [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/bat-arls-5/igt at i915_selftest@live at workarounds.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-arls-5/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#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8196 -> IGTPW_12454 * Linux: CI_DRM_15973 -> CI_DRM_15974 CI-20190529: 20190529 CI_DRM_15973: a15d2a84505eed8dbb58911147e44752734f3a88 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15974: 48e8781781323a28fabb378bcc79b3f48c1bcae0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12454: 869da313bdf1dbd8ecc8d012205411b1b5daefe9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8196: 824553d05138bbfa48b9e60e9c2a741497c7c627 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 11:44:30 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 11:44:30 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/amdgpu/amd=5Fvrr=5F?= =?utf-8?q?range=3A_Fix_panel_cannot_light_up_after_test_=28rev2=29?= In-Reply-To: <20250117100101.4282-1-chiahsuan.chung@amd.com> References: <20250117100101.4282-1-chiahsuan.chung@amd.com> Message-ID: <173711427070.682686.6714253092192226241@b555e5b46a47> == Series Details == Series: tests/amdgpu/amd_vrr_range: Fix panel cannot light up after test (rev2) URL : https://patchwork.freedesktop.org/series/143059/ State : success == Summary == CI Bug Log - changes from IGT_8196 -> IGTPW_12455 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/index.html Participating hosts (42 -> 43) ------------------------------ Additional (2): bat-dg2-14 bat-dg1-7 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12455 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at dmabuf@all-tests: - bat-apl-1: [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/bat-apl-1/igt at dmabuf@all-tests.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-apl-1/igt at dmabuf@all-tests.html * igt at gem_mmap@basic: - bat-dg1-7: NOTRUN -> [SKIP][3] ([i915#4083]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg1-7/igt at gem_mmap@basic.html - bat-dg2-14: NOTRUN -> [SKIP][4] ([i915#4083]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at gem_mmap@basic.html * igt at gem_render_tiled_blits@basic: - bat-dg2-14: NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at gem_render_tiled_blits@basic.html * igt at gem_tiled_blits@basic: - bat-dg1-7: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg1-7/igt at gem_tiled_blits@basic.html * igt at gem_tiled_fence_blits@basic: - bat-dg2-14: NOTRUN -> [SKIP][7] ([i915#4077]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at gem_tiled_fence_blits@basic.html * igt at gem_tiled_pread_basic: - bat-dg1-7: NOTRUN -> [SKIP][8] ([i915#4079]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg1-7/igt at gem_tiled_pread_basic.html * igt at i915_module_load@load: - fi-pnv-d510: [PASS][9] -> [ABORT][10] ([i915#13203]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/fi-pnv-d510/igt at i915_module_load@load.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/fi-pnv-d510/igt at i915_module_load@load.html * igt at i915_pm_rps@basic-api: - bat-dg2-14: NOTRUN -> [SKIP][11] ([i915#11681] / [i915#6621]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at i915_pm_rps@basic-api.html - bat-dg1-7: NOTRUN -> [SKIP][12] ([i915#11681] / [i915#6621]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg1-7/igt at i915_pm_rps@basic-api.html * igt at i915_selftest@live: - bat-adlp-6: [PASS][13] -> [ABORT][14] ([i915#13399]) +1 other test abort [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/bat-adlp-6/igt at i915_selftest@live.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-adlp-6/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-mtlp-6: [PASS][15] -> [DMESG-FAIL][16] ([i915#12061]) +1 other test dmesg-fail [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-mtlp-6/igt at i915_selftest@live at workarounds.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-14: NOTRUN -> [SKIP][17] ([i915#5190]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - bat-dg1-7: NOTRUN -> [SKIP][18] ([i915#4215]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg1-7/igt at kms_addfb_basic@basic-y-tiled-legacy.html - bat-dg2-14: NOTRUN -> [SKIP][19] ([i915#4215] / [i915#5190]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - bat-dg1-7: NOTRUN -> [SKIP][20] ([i915#4212]) +7 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg1-7/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_addfb_basic@tile-pitch-mismatch: - bat-dg2-14: NOTRUN -> [SKIP][21] ([i915#4212]) +7 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at kms_addfb_basic@tile-pitch-mismatch.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-14: NOTRUN -> [SKIP][22] ([i915#4103] / [i915#4213]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-dg1-7: NOTRUN -> [SKIP][23] ([i915#4103] / [i915#4213]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg1-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_dsc@dsc-basic: - bat-dg2-14: NOTRUN -> [SKIP][24] ([i915#3555] / [i915#3840]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at kms_dsc@dsc-basic.html - bat-dg1-7: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#3840]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg1-7/igt at kms_dsc@dsc-basic.html * igt at kms_force_connector_basic@force-load-detect: - bat-dg2-14: NOTRUN -> [SKIP][26] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at kms_force_connector_basic@force-load-detect.html - bat-dg1-7: NOTRUN -> [SKIP][27] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg1-7/igt at kms_force_connector_basic@force-load-detect.html * igt at kms_force_connector_basic@prune-stale-modes: - bat-dg2-14: NOTRUN -> [SKIP][28] ([i915#5274]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_pm_backlight@basic-brightness: - bat-dg2-14: NOTRUN -> [SKIP][29] ([i915#5354]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at kms_pm_backlight@basic-brightness.html - bat-dg1-7: NOTRUN -> [SKIP][30] ([i915#5354]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg1-7/igt at kms_pm_backlight@basic-brightness.html * igt at kms_psr@psr-primary-page-flip: - bat-dg1-7: NOTRUN -> [SKIP][31] ([i915#1072] / [i915#9732]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg1-7/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr-sprite-plane-onoff: - bat-dg2-14: NOTRUN -> [SKIP][32] ([i915#1072] / [i915#9732]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_setmode@basic-clone-single-crtc: - bat-dg2-14: NOTRUN -> [SKIP][33] ([i915#3555]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at kms_setmode@basic-clone-single-crtc.html - bat-dg1-7: NOTRUN -> [SKIP][34] ([i915#3555]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg1-7/igt at kms_setmode@basic-clone-single-crtc.html * igt at prime_vgem@basic-fence-flip: - bat-dg2-14: NOTRUN -> [SKIP][35] ([i915#3708]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at prime_vgem@basic-fence-flip.html * igt at prime_vgem@basic-fence-mmap: - bat-dg1-7: NOTRUN -> [SKIP][36] ([i915#3708] / [i915#4077]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg1-7/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-fence-read: - bat-dg1-7: NOTRUN -> [SKIP][37] ([i915#3708]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg1-7/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@basic-gtt: - bat-dg2-14: NOTRUN -> [SKIP][38] ([i915#3708] / [i915#4077]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@basic-write: - bat-dg2-14: NOTRUN -> [SKIP][39] ([i915#3291] / [i915#3708]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-dg2-14/igt at prime_vgem@basic-write.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - bat-arlh-3: [DMESG-FAIL][40] ([i915#12061]) -> [PASS][41] +1 other test pass [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/bat-arlh-3/igt at i915_selftest@live at workarounds.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-arlh-3/igt at i915_selftest@live at workarounds.html - bat-arls-5: [DMESG-FAIL][42] ([i915#12061]) -> [PASS][43] +1 other test pass [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/bat-arls-5/igt at i915_selftest@live at workarounds.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/bat-arls-5/igt at i915_selftest@live at workarounds.html #### Warnings #### * igt at kms_busy@basic at flip: - fi-cfl-8109u: [DMESG-WARN][44] ([i915#11621]) -> [DMESG-WARN][45] ([i915#11621] / [i915#1982]) +1 other test dmesg-warn [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/fi-cfl-8109u/igt at kms_busy@basic at flip.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/fi-cfl-8109u/igt at kms_busy@basic at flip.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203 [i915#13399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13399 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8196 -> IGTPW_12455 * Linux: CI_DRM_15973 -> CI_DRM_15974 CI-20190529: 20190529 CI_DRM_15973: a15d2a84505eed8dbb58911147e44752734f3a88 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15974: 48e8781781323a28fabb378bcc79b3f48c1bcae0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12455: 5885393e3cf3c5e6bc77566baf9056af5a04192d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8196: 824553d05138bbfa48b9e60e9c2a741497c7c627 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 11:58:34 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 11:58:34 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_Initial_PTL_support_=28r?= =?utf-8?q?ev6=29?= In-Reply-To: <20241218213654.2734573-1-clinton.a.taylor@intel.com> References: <20241218213654.2734573-1-clinton.a.taylor@intel.com> Message-ID: <173711511404.701978.14192991678396183767@b555e5b46a47> == Series Details == Series: Initial PTL support (rev6) URL : https://patchwork.freedesktop.org/series/141325/ State : failure == Summary == CI Bug Log - changes from IGT_8183_full -> IGTPW_12418_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12418_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12418_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_12418/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12418_full: ### IGT changes ### #### Possible regressions #### * igt at gem_exec_schedule@wide at vcs1: - shard-tglu: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-6/igt at gem_exec_schedule@wide at vcs1.html * igt at i915_module_load@load: - shard-dg2: ([PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18]) -> ([PASS][19], [FAIL][20], [FAIL][21], [FAIL][22], [FAIL][23], [FAIL][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [DMESG-WARN][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36]) ([i915#13368]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-11/igt at i915_module_load@load.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-11/igt at i915_module_load@load.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-4/igt at i915_module_load@load.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-8/igt at i915_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-4/igt at i915_module_load@load.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-3/igt at i915_module_load@load.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-7/igt at i915_module_load@load.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-4/igt at i915_module_load@load.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-8/igt at i915_module_load@load.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-1/igt at i915_module_load@load.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-5/igt at i915_module_load@load.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-1/igt at i915_module_load@load.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-7/igt at i915_module_load@load.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-5/igt at i915_module_load@load.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-3/igt at i915_module_load@load.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-10/igt at i915_module_load@load.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-10/igt at i915_module_load@load.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-2/igt at i915_module_load@load.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-11/igt at i915_module_load@load.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-11/igt at i915_module_load@load.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-11/igt at i915_module_load@load.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-11/igt at i915_module_load@load.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-11/igt at i915_module_load@load.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-10/igt at i915_module_load@load.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-4/igt at i915_module_load@load.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-7/igt at i915_module_load@load.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-7/igt at i915_module_load@load.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-4/igt at i915_module_load@load.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-10/igt at i915_module_load@load.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-2/igt at i915_module_load@load.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-3/igt at i915_module_load@load.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-5/igt at i915_module_load@load.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-5/igt at i915_module_load@load.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-8/igt at i915_module_load@load.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-3/igt at i915_module_load@load.html * igt at perf_pmu@module-unload: - shard-rkl: [PASS][37] -> [INCOMPLETE][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-1/igt at perf_pmu@module-unload.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-6/igt at perf_pmu@module-unload.html #### Warnings #### * igt at gem_tiled_swapping@non-threaded: - shard-rkl: [FAIL][39] ([i915#12941]) -> [FAIL][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-7/igt at gem_tiled_swapping@non-threaded.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-7/igt at gem_tiled_swapping@non-threaded.html - shard-tglu: [FAIL][41] ([i915#12941]) -> [FAIL][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-tglu-9/igt at gem_tiled_swapping@non-threaded.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-10/igt at gem_tiled_swapping@non-threaded.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-edp1: - shard-mtlp: [FAIL][43] ([i915#11989]) -> [FAIL][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-3/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-edp1.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-2/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-edp1.html New tests --------- New tests have been introduced between IGT_8183_full and IGTPW_12418_full: ### New IGT tests (77) ### * igt at gem_ctx_engines@independent at bcs0: - Statuses : 6 pass(s) - Exec time: [0.05, 0.21] s * igt at gem_ctx_engines@independent at rcs0: - Statuses : 6 pass(s) - Exec time: [0.05, 0.19] s * igt at gem_ctx_engines@independent at vcs0: - Statuses : 6 pass(s) - Exec time: [0.05, 0.17] s * igt at gem_ctx_engines@independent at vcs1: - Statuses : 4 pass(s) - Exec time: [0.06, 0.16] s * igt at gem_ctx_engines@independent at vecs0: - Statuses : 6 pass(s) - Exec time: [0.05, 0.17] s * igt at gem_exec_async@forked-writes: - Statuses : 6 pass(s) - Exec time: [0.07, 0.33] s * igt at gem_exec_async@forked-writes at bcs0: - Statuses : 6 pass(s) - Exec time: [0.02, 0.07] s * igt at gem_exec_async@forked-writes at rcs0: - Statuses : 6 pass(s) - Exec time: [0.02, 0.07] s * igt at gem_exec_async@forked-writes at vcs0: - Statuses : 6 pass(s) - Exec time: [0.02, 0.07] s * igt at gem_exec_async@forked-writes at vcs1: - Statuses : 3 pass(s) - Exec time: [0.03, 0.04] s * igt at gem_exec_async@forked-writes at vecs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.08] s * igt at gem_exec_balancer@fairslice: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 5.23] s * igt at gem_exec_balancer@nohangcheck: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 3.91] s * igt at gem_exec_balancer@noheartbeat: - Statuses : 2 pass(s) 2 skip(s) - Exec time: [0.0, 1.08] s * igt at gem_exec_balancer@persistence: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 3.70] s * igt at gem_exec_balancer@sequential: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 3.82] s * igt at gem_exec_create@legacy: - Statuses : 6 pass(s) - Exec time: [2.06, 4.20] s * igt at gem_exec_schedule@fairslice: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 14.14] s * igt at gem_exec_schedule@fairslice-all: - Statuses : 3 pass(s) - Exec time: [2.04, 2.11] s * igt at gem_exec_schedule@fairslice at bcs0: - Statuses : 4 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@fairslice at rcs0: - Statuses : 4 pass(s) - Exec time: [2.01, 2.04] s * igt at gem_exec_schedule@fairslice at vcs0: - Statuses : 4 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@fairslice at vcs1: - Statuses : 4 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@fairslice at vecs0: - Statuses : 4 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@preempt-user: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 0.24] s * igt at gem_exec_schedule@preempt-user at bcs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@preempt-user at rcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.06] s * igt at gem_exec_schedule@preempt-user at vcs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@preempt-user at vcs1: - Statuses : 4 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@preempt-user at vecs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@u-fairslice: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 12.10] s * igt at gem_exec_schedule@u-fairslice-all: - Statuses : 3 pass(s) 1 skip(s) - Exec time: [0.0, 2.09] s * igt at gem_exec_schedule@u-fairslice at bcs0: - Statuses : 4 pass(s) - Exec time: [1.96, 2.03] s * igt at gem_exec_schedule@u-fairslice at rcs0: - Statuses : 4 pass(s) - Exec time: [2.01, 2.04] s * igt at gem_exec_schedule@u-fairslice at vcs0: - Statuses : 4 pass(s) - Exec time: [1.97, 2.02] s * igt at gem_exec_schedule@u-fairslice at vcs1: - Statuses : 3 pass(s) - Exec time: [1.99, 2.02] s * igt at gem_exec_schedule@u-fairslice at vecs0: - Statuses : 4 pass(s) - Exec time: [1.99, 2.02] s * igt at gem_exec_schedule@u-independent: - Statuses : 6 pass(s) - Exec time: [0.11, 9.75] s * igt at gem_exec_schedule@u-independent at rcs0: - Statuses : 6 pass(s) - Exec time: [0.07, 1.69] s * igt at gem_exec_schedule@u-independent at vcs0: - Statuses : 5 pass(s) - Exec time: [0.12, 2.08] s * igt at gem_exec_schedule@u-independent at vcs1: - Statuses : 3 pass(s) - Exec time: [0.10, 1.98] s * igt at gem_exec_schedule@u-independent at vecs0: - Statuses : 5 pass(s) - Exec time: [0.11, 2.06] s * igt at gem_exec_schedule@u-lateslice: - Statuses : 3 pass(s) - Exec time: [0.05, 0.10] s * igt at gem_exec_schedule@u-lateslice at bcs0: - Statuses : 3 pass(s) - Exec time: [0.01] s * igt at gem_exec_schedule@u-lateslice at rcs0: - Statuses : 3 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-lateslice at vcs0: - Statuses : 3 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-lateslice at vcs1: - Statuses : 2 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-lateslice at vecs0: - Statuses : 3 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-semaphore-codependency: - Statuses : 4 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@u-semaphore-noskip: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 0.81] s * igt at gem_exec_schedule@u-semaphore-resolve: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 0.07] s * igt at gem_exec_schedule@u-semaphore-user: - Statuses : 5 pass(s) - Exec time: [0.01, 0.08] s * igt at gem_exec_schedule@u-submit-early-slice: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 0.21] s * igt at gem_exec_schedule@u-submit-early-slice at bcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@u-submit-early-slice at rcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-early-slice at vcs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@u-submit-early-slice at vcs1: - Statuses : 3 pass(s) - Exec time: [0.03, 0.04] s * igt at gem_exec_schedule@u-submit-early-slice at vecs0: - Statuses : 4 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@u-submit-golden-slice: - Statuses : 5 pass(s) - Exec time: [0.07, 0.20] s * igt at gem_exec_schedule@u-submit-golden-slice at bcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-golden-slice at rcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-golden-slice at vcs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@u-submit-golden-slice at vcs1: - Statuses : 3 pass(s) - Exec time: [0.03] s * igt at gem_exec_schedule@u-submit-golden-slice at vecs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-late-slice: - Statuses : 1 pass(s) - Exec time: [0.21] s * igt at gem_exec_schedule@u-submit-late-slice at bcs0: - Statuses : 1 pass(s) - Exec time: [0.04] s * igt at gem_exec_schedule@u-submit-late-slice at rcs0: - Statuses : 1 pass(s) - Exec time: [0.05] s * igt at gem_exec_schedule@u-submit-late-slice at vcs0: - Statuses : 1 pass(s) - Exec time: [0.05] s * igt at gem_exec_schedule@u-submit-late-slice at vecs0: - Statuses : 1 pass(s) - Exec time: [0.05] s * igt at gem_softpin@32b-excludes-last-page: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt at gem_softpin@full: - Statuses : 4 pass(s) - Exec time: [0.01] s * igt at gem_softpin@zero: - Statuses : 3 pass(s) 1 skip(s) - Exec time: [0.0, 0.00] s * igt at gen9_exec_parse@shadow-peek: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt at perf@non-zero-reason: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [2.75, 11.06] s * igt at perf_pmu@gt-awake: - Statuses : 7 pass(s) - Exec time: [2.01, 9.13] s * igt at perf_pmu@invalid-open: - Statuses : 4 pass(s) - Exec time: [0.0] s * igt at perf_pmu@rc6-suspend: - Statuses : 7 pass(s) - Exec time: [6.91, 23.34] s Known issues ------------ Here are the changes found in IGTPW_12418_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#8411]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-2/igt at api_intel_bb@object-reloc-purge-cache.html * igt at device_reset@cold-reset-bound: - shard-tglu-1: NOTRUN -> [SKIP][46] ([i915#11078]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at device_reset@cold-reset-bound.html * igt at drm_fdinfo@busy-check-all at ccs0: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#8414]) +6 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-2/igt at drm_fdinfo@busy-check-all at ccs0.html * igt at drm_fdinfo@busy at rcs0: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#8414]) +17 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-5/igt at drm_fdinfo@busy at rcs0.html * igt at drm_fdinfo@most-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#8414]) +7 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/igt at drm_fdinfo@most-busy-check-all.html * igt at gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#7697]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at gem_basic@multigpu-create-close.html - shard-tglu: NOTRUN -> [SKIP][51] ([i915#7697]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-7/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3555] / [i915#9323]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-7/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#3555] / [i915#9323]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg2: [PASS][54] -> [INCOMPLETE][55] ([i915#7297]) +1 other test incomplete [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-8/igt at gem_ccs@suspend-resume.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-7/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#7697]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-10/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#8562]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-4/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][58] ([i915#1099]) +5 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-snb4/igt at gem_ctx_persistence@engines-queued.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#280]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#280]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-17/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][61] ([i915#8898]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-snb7/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@full-pulse: - shard-mtlp: [PASS][62] -> [FAIL][63] ([i915#13364]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-6/igt at gem_exec_balancer@full-pulse.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-6/igt at gem_exec_balancer@full-pulse.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4036]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-17/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@noheartbeat (NEW): - shard-dg2: NOTRUN -> [SKIP][65] ([i915#8555]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-2/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][66] ([i915#4525]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt at gem_exec_balancer@parallel-keep-in-fence: - shard-tglu: NOTRUN -> [SKIP][67] ([i915#4525]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-9/igt at gem_exec_balancer@parallel-keep-in-fence.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#4525]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-7/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4812]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-5/igt at gem_exec_balancer@sliced.html * igt at gem_exec_fence@syncobj-backward-timeline-chain-engines: - shard-snb: NOTRUN -> [SKIP][70] +495 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-snb4/igt at gem_exec_fence@syncobj-backward-timeline-chain-engines.html * igt at gem_exec_flush@basic-batch-kernel-default-cmd: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3711]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-4/igt at gem_exec_flush@basic-batch-kernel-default-cmd.html * igt at gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3539] / [i915#4852]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/igt at gem_exec_flush@basic-batch-kernel-default-wb.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3539]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-3/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3539] / [i915#4852]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-5/igt at gem_exec_flush@basic-wb-pro-default.html * igt at gem_exec_reloc@basic-concurrent16: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3281]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-5/igt at gem_exec_reloc@basic-concurrent16.html * igt at gem_exec_reloc@basic-gtt-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3281]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-17/igt at gem_exec_reloc@basic-gtt-read-noreloc.html * igt at gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#3281]) +13 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-5/igt at gem_exec_reloc@basic-write-gtt.html * igt at gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3281]) +9 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-1/igt at gem_exec_reloc@basic-write-read.html * igt at gem_exec_schedule@reorder-wide: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4812]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-13/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_schedule@wide: - shard-tglu: NOTRUN -> [INCOMPLETE][80] ([i915#13391]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-6/igt at gem_exec_schedule@wide.html * igt at gem_fence_thrash@bo-write-verify-none: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4860]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-2/igt at gem_fence_thrash@bo-write-verify-none.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4860]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-14/igt at gem_fence_thrash@bo-write-verify-x.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4860]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-1/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#2190]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#4613] / [i915#7582]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-6/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#12193]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-12/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4565]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-12/igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#4613]) +5 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-7/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#4613]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-4/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][90] ([i915#4613]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-glk2/igt at gem_lmem_swapping@random-engines.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#4613]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at gem_lmem_swapping@verify-random-ccs.html - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4613]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-5/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#3282]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-8/igt at gem_madvise@dontneed-before-exec.html * igt at gem_mmap_gtt@basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#4077]) +15 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/igt at gem_mmap_gtt@basic-small-copy.html * igt at gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4077]) +9 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-5/igt at gem_mmap_gtt@cpuset-big-copy-odd.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][96] -> [ABORT][97] ([i915#10729]) +1 other test abort [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-7/igt at gem_mmap_offset@clear-via-pagefault.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-5/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4083]) +7 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-2/igt at gem_mmap_wc@fault-concurrent.html * igt at gem_mmap_wc@read-write: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#4083]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-6/igt at gem_mmap_wc@read-write.html * igt at gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4083]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/igt at gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt at gem_partial_pwrite_pread@write: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#3282]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-13/igt at gem_partial_pwrite_pread@write.html * igt at gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#3282]) +11 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at gem_partial_pwrite_pread@writes-after-reads.html * igt at gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#3282]) +8 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-5/igt at gem_pread@snoop.html * igt at gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][104] ([i915#2658]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-snb7/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@create-valid-protected-context: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#4270]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-2/igt at gem_pxp@create-valid-protected-context.html - shard-rkl: NOTRUN -> [TIMEOUT][106] ([i915#12964]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-1/igt at gem_pxp@create-valid-protected-context.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#13398]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-6/igt at gem_pxp@hw-rejects-pxp-context.html - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#13398]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-8/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [TIMEOUT][109] ([i915#12917] / [i915#12964]) +2 other tests timeout [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-4/igt at gem_pxp@reject-modify-context-protection-on.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4270]) +4 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/igt at gem_pxp@verify-pxp-stale-ctx-execution.html * igt at gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][111] +400 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-glk2/igt at gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt at gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#8428]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-1/igt at gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#5190] / [i915#8428]) +9 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-5/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4079]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-5/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#8411]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-3/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#4079]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-6/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4885]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-13/igt at gem_softpin@evict-snoop.html * igt at gem_softpin@noreloc-s3: - shard-glk: NOTRUN -> [INCOMPLETE][118] ([i915#13306]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-glk7/igt at gem_softpin@noreloc-s3.html * igt at gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4079]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-14/igt at gem_tiled_pread_pwrite.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#3297]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-7/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#3297] / [i915#3323]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-4/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#3297]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#3282] / [i915#3297]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#3297] / [i915#4880]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-4/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#3297] / [i915#4880]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-17/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#3297]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-7/igt at gem_userptr_blits@readonly-pwrite-unsync.html - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#3297]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-2/igt at gem_userptr_blits@readonly-pwrite-unsync.html * igt at gem_userptr_blits@readonly-unsync: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#3297]) +4 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-12/igt at gem_userptr_blits@readonly-unsync.html * igt at gem_userptr_blits@relocations: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#3281] / [i915#3297]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-6/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#3297]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-3/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][131] +11 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-8/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@bb-chained: - shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#2527] / [i915#2856]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#2527]) +6 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-5/igt at gen9_exec_parse@bb-oversize.html - shard-dg1: NOTRUN -> [SKIP][134] ([i915#2527]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-14/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-secure: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#2527] / [i915#2856]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-2/igt at gen9_exec_parse@bb-secure.html - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#2856]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-4/igt at gen9_exec_parse@bb-secure.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#2856]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-10/igt at gen9_exec_parse@unaligned-access.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#4881]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-4/igt at i915_fb_tiling.html * igt at i915_module_load@reload-with-fault-injection: - shard-snb: NOTRUN -> [ABORT][139] ([i915#9820]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-snb5/igt at i915_module_load@reload-with-fault-injection.html - shard-dg1: [PASS][140] -> [ABORT][141] ([i915#13493] / [i915#9820]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg1-18/igt at i915_module_load@reload-with-fault-injection.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-13/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#6412]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at i915_module_load@resize-bar.html * igt at i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#8399]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-10/igt at i915_pm_freq_api@freq-basic-api.html - shard-rkl: NOTRUN -> [SKIP][144] ([i915#8399]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-1/igt at i915_pm_freq_api@freq-basic-api.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#6590]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-dg1: [PASS][146] -> [FAIL][147] ([i915#3591]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-12/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][148] ([i915#12797]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-glk3/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][149] ([i915#8346]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-6/igt at i915_pm_rps@reset.html * igt at i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#11681]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-3/igt at i915_pm_rps@thresholds.html * igt at i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#4387]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-5/igt at i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][152] ([i915#4387]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-8/igt at i915_pm_sseu@full-enable.html * igt at i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#7984]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-7/igt at i915_power@sanity.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#5723]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at i915_query@test-query-geometry-subslices.html - shard-tglu: NOTRUN -> [SKIP][155] ([i915#5723]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-7/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [PASS][156] -> [DMESG-FAIL][157] ([i915#12061]) +1 other test dmesg-fail [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-6/igt at i915_selftest@live at workarounds.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-8/igt at i915_selftest@live at workarounds.html * igt at i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][158] ([i915#1982] / [i915#9311]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-glk2/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-glk: NOTRUN -> [DMESG-WARN][159] ([i915#9311]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-glk2/igt at i915_selftest@mock at memory_region.html * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#4212]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-7/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#4215] / [i915#5190]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-3/igt at kms_addfb_basic@basic-y-tiled-legacy.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][162] ([i915#8709]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/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-atomic at pipe-d-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#8709]) +7 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-5/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_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3555]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-5/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#9531]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-17/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][166] ([i915#1769]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-snb1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#5286]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/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][168] ([i915#5286]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#5286]) +10 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#5286]) +6 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-6/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-async-flip: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#4538] / [i915#5286]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-17/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-mtlp: [PASS][172] -> [FAIL][173] ([i915#5138]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-5/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-6/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3638]) +4 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-5/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#3638]) +4 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-13/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [DMESG-WARN][176] ([i915#4423]) +3 other tests dmesg-warn [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-13/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#4538] / [i915#5190]) +15 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-4/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][178] +12 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-3/igt at kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#4538]) +5 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#6095]) +49 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#12313]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-3/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#10307] / [i915#6095]) +103 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-2/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-dg1: NOTRUN -> [SKIP][183] ([i915#12313]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-12/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#12313]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-8/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#6095]) +74 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/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-rotation-180-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#12313]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/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-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#12805]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/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-1: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#6095]) +4 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-8/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#6095]) +108 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-7/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html - shard-glk: NOTRUN -> [INCOMPLETE][190] ([i915#12796]) +3 other tests incomplete [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-glk7/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#12313]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#6095]) +29 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-6/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-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#12313]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-2/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#6095]) +144 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-12/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][195] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/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: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#7213] / [i915#9010]) +4 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-3/igt at kms_cdclk@mode-transition.html - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3742]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_cdclk@mode-transition.html - shard-dg1: NOTRUN -> [SKIP][198] ([i915#3742]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#4087]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-2/igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3.html * igt at kms_chamelium_audio@hdmi-audio: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#11151] / [i915#7828]) +6 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-17/igt at kms_chamelium_audio@hdmi-audio.html - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#11151] / [i915#7828]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-7/igt at kms_chamelium_audio@hdmi-audio.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#11151] / [i915#7828]) +6 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt at kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#11151] / [i915#7828]) +8 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-7/igt at kms_chamelium_frames@hdmi-crc-fast.html * igt at kms_chamelium_hpd@dp-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#11151] / [i915#7828]) +7 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-8/igt at kms_chamelium_hpd@dp-hpd-fast.html * igt at kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#11151] / [i915#7828]) +13 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-3/igt at kms_chamelium_hpd@vga-hpd-fast.html * igt at kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#7118] / [i915#9424]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-1/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#3116]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at kms_content_protection@dp-mst-type-0.html - shard-tglu: NOTRUN -> [SKIP][208] ([i915#3116] / [i915#3299]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-6/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#7118] / [i915#9424]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-5/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#9424]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/igt at kms_content_protection@lic-type-0.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#3555]) +5 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-6/igt at kms_cursor_crc@cursor-offscreen-32x32.html - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8814]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-8/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#13049]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-7/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#13049]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-3/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#13049]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-13/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#13049]) +3 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-7/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#3555]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_cursor_crc@cursor-random-32x32.html - shard-dg1: NOTRUN -> [SKIP][218] ([i915#3555]) +4 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#13049]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#8814]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-2/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#13049]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-3/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#9809]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-2/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#4103]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-9/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#4103]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@basic-flip-after-cursor-varying-size: - shard-dg1: [PASS][225] -> [DMESG-WARN][226] ([i915#4423]) +8 other tests dmesg-warn [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg1-17/igt at kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-13/igt at kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#13046] / [i915#5354]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-4/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#9067]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#9067]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#4103] / [i915#4213]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-5/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][231] ([i915#12170]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][232] ([i915#11968]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#8588]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-2/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#1769] / [i915#3555] / [i915#3804]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-3/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-tglu: NOTRUN -> [SKIP][235] ([i915#3804]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-3/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1.html * igt at kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#1257]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#12402]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#12402]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-8/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_dsc@dsc-fractional-bpp: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#3840]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#3840]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-8/igt at kms_dsc@dsc-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#3840]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#3840]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-3/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#3840]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-3/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][244] ([i915#9878]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-glk6/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#3469]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-6/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#3469]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#9337]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-10/igt at kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][248] ([i915#9337]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-5/igt at kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#9337]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-4/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#658]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-7/igt at kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][251] ([i915#658]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-7/igt at kms_feature_discovery@psr1.html - shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#658]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-absolute-wf_vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#3637]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-3/igt at kms_flip@2x-absolute-wf_vblank-interruptible.html - shard-dg1: NOTRUN -> [SKIP][254] ([i915#9934]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/igt at kms_flip@2x-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#3637]) +4 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-8/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#9934]) +11 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-7/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#3637]) +5 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/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-dg2: NOTRUN -> [SKIP][258] ([i915#9934]) +9 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-10/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at c-edp1: - shard-mtlp: [PASS][259] -> [FAIL][260] ([i915#11989]) +5 other tests fail [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-3/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at c-edp1.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-2/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at c-edp1.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#8381]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-7/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@flip-vs-fences at b-hdmi-a2: - shard-rkl: NOTRUN -> [DMESG-WARN][262] ([i915#12964]) +25 other tests dmesg-warn [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-5/igt at kms_flip@flip-vs-fences at b-hdmi-a2.html * igt at kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [PASS][263] -> [FAIL][264] ([i915#11989]) +3 other tests fail [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-tglu-3/igt at kms_flip@plain-flip-fb-recreate-interruptible.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-7/igt at kms_flip@plain-flip-fb-recreate-interruptible.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-dg2: [PASS][265] -> [FAIL][266] ([i915#11989]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-5/igt at kms_flip@plain-flip-ts-check-interruptible.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-10/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip@plain-flip-ts-check-interruptible at d-dp4: - shard-dg2: NOTRUN -> [FAIL][267] ([i915#11989]) +2 other tests fail [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-10/igt at kms_flip@plain-flip-ts-check-interruptible at d-dp4.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#2672] / [i915#3555]) +2 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-10/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#2672] / [i915#3555]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#2587] / [i915#2672]) +2 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/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-32bpp-yftileccs-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#2672]) +4 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/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-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#2672] / [i915#3555]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#2587] / [i915#2672]) +2 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-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 at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#2672]) +4 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-3/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: NOTRUN -> [SKIP][275] ([i915#2587] / [i915#2672] / [i915#3555]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#2672] / [i915#3555]) +4 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/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: NOTRUN -> [SKIP][278] ([i915#2587] / [i915#2672]) +3 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-7/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-4tiledg2rcccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#2672] / [i915#3555]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-7/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#2672] / [i915#8813]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling at pipe-a-default-mode.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: [PASS][282] -> [FAIL][283] ([i915#6880]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#8708]) +4 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#5354]) +26 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-4/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-snb: [PASS][286] -> [SKIP][287] +3 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-snb1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][288] ([i915#10056] / [i915#13353]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-glk9/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#3458]) +17 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][290] +39 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][291] ([i915#4423]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-13/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][292] +37 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#8708]) +28 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#3458]) +16 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-13/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][295] +53 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#10433] / [i915#3458]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#3023]) +37 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#1825]) +14 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#1825]) +60 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][300] +84 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-3/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#8708]) +11 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#8228]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-4/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@brightness-with-hdr: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#12713]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-5/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8228]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-7/igt at kms_hdr@static-toggle.html * igt at kms_histogram@algo-color: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#13389]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at kms_histogram@algo-color.html - shard-tglu: NOTRUN -> [SKIP][306] ([i915#13389]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-6/igt at kms_histogram@algo-color.html * igt at kms_histogram@global-basic: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#13388]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at kms_histogram@global-basic.html * igt at kms_histogram@global-color: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#13388]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-9/igt at kms_histogram@global-color.html - shard-dg2: NOTRUN -> [SKIP][309] ([i915#13388]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-10/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#12388]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#12394] / [i915#13522]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-8/igt at kms_joiner@basic-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][312] ([i915#12394] / [i915#13522]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-5/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#12339]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-3/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][314] ([i915#12394] / [i915#13522]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-12/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#6301]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-3/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][316] ([i915#13026]) +1 other test incomplete [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-glk6/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][317] ([i915#10647] / [i915#12169]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-glk4/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][318] ([i915#10647]) +1 other test fail [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-glk4/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_lowres@tiling-x: - shard-mtlp: NOTRUN -> [SKIP][319] ([i915#11614] / [i915#3582]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-4/igt at kms_plane_lowres@tiling-x.html * igt at kms_plane_lowres@tiling-x at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-4/igt at kms_plane_lowres@tiling-x at pipe-a-edp-1.html * igt at kms_plane_lowres@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#3555]) +7 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-tglu: NOTRUN -> [FAIL][322] ([i915#8292]) +1 other test fail [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-5/igt at kms_plane_scaling@intel-max-src-size.html - shard-rkl: NOTRUN -> [SKIP][323] ([i915#6953]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-4/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][324] ([i915#8292]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-10/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#12247]) +4 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/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-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][326] ([i915#12247]) +8 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-4/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#12247] / [i915#6953]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/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][328] ([i915#12247] / [i915#6953] / [i915#9423]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-4/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][329] ([i915#12247]) +3 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-4/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-25 at pipe-b: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#12247]) +3 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-mtlp: NOTRUN -> [SKIP][331] ([i915#6953]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-1/igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#12247] / [i915#3555]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-3/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#12247] / [i915#3555]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-3/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-c: - shard-mtlp: NOTRUN -> [SKIP][334] ([i915#12247]) +7 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-3/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-c.html * igt at kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][335] ([i915#5354]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-12/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#12343]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade: - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#9812]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc6-dpms: - shard-dg1: NOTRUN -> [SKIP][338] ([i915#3361]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-14/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][339] ([i915#3361]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-3/igt at kms_pm_dc@dc9-dpms.html - shard-tglu: NOTRUN -> [SKIP][340] ([i915#4281]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-7/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#9340]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-5/igt at kms_pm_lpsp@kms-lpsp.html - shard-tglu: NOTRUN -> [SKIP][342] ([i915#3828]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-5/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#8430]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-7/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][344] -> [SKIP][345] ([i915#9519]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-4/igt at kms_pm_rpm@modeset-lpsp.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-1/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@pm-caching: - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#4077]) +4 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-2/igt at kms_pm_rpm@pm-caching.html * igt at kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#6524]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-3/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#11520]) +4 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-8/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][349] ([i915#11520]) +14 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-snb4/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][350] ([i915#11520]) +10 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-glk9/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#11520]) +12 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-4/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#9808]) +3 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-6/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][353] ([i915#11520]) +4 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-13/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#11520]) +5 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#11520]) +16 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-1/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#12316]) +5 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-8/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg1: NOTRUN -> [SKIP][357] ([i915#9683]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-17/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][358] ([i915#9683]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][359] ([i915#9683]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-8/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-primary-blt: - shard-mtlp: NOTRUN -> [SKIP][360] ([i915#9688]) +13 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-8/igt at kms_psr@fbc-pr-primary-blt.html * igt at kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +33 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-1/igt at kms_psr@psr-sprite-plane-move.html * igt at kms_psr@psr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][362] ([i915#9732]) +11 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#1072] / [i915#9732]) +22 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-10/igt at kms_psr@psr2-primary-mmap-gtt.html * igt at kms_psr@psr2-primary-render: - shard-tglu: NOTRUN -> [SKIP][364] ([i915#9732]) +22 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-10/igt at kms_psr@psr2-primary-render.html * igt at kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +19 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-13/igt at kms_psr@psr2-sprite-mmap-gtt.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][366] ([i915#9685]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-rotation-90: - shard-rkl: [PASS][367] -> [DMESG-WARN][368] ([i915#12964]) +15 other tests dmesg-warn [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-4/igt at kms_rotation_crc@primary-rotation-90.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-5/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][369] ([i915#5289]) +2 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][370] ([i915#5289]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-8/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][371] ([i915#5289]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-14/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#12755]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-10/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][373] ([i915#13179]) +1 other test abort [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-snb2/igt at kms_selftest@drm_framebuffer.html * igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][374] ([i915#13179]) +1 other test abort [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-10/igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free.html * igt at kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][375] ([i915#3555] / [i915#8809]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-7/igt at kms_setmode@clone-exclusive-crtc.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][376] ([i915#3555]) +5 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-5/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][377] ([i915#10959]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-glk2/igt at kms_tiled_display@basic-test-pattern.html - shard-mtlp: NOTRUN -> [SKIP][378] ([i915#8623]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-4/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][379] ([i915#8623]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-4/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][380] ([i915#12276]) +1 other test incomplete [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-glk8/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html * igt at kms_vrr@flip-basic-fastset: - shard-mtlp: NOTRUN -> [SKIP][381] ([i915#8808] / [i915#9906]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-3/igt at kms_vrr@flip-basic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#9906]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@lobf: - shard-tglu: NOTRUN -> [SKIP][383] ([i915#11920]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-2/igt at kms_vrr@lobf.html * igt at kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][384] ([i915#9906]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-12/igt at kms_vrr@max-min.html * igt at kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][385] ([i915#3555] / [i915#9906]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-8/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][386] ([i915#9906]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-1/igt at kms_vrr@seamless-rr-switch-virtual.html - shard-tglu: NOTRUN -> [SKIP][387] ([i915#9906]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-4/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][388] ([i915#2437]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-2/igt at kms_writeback@writeback-fb-id.html - shard-glk: NOTRUN -> [SKIP][389] ([i915#2437]) +1 other test skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-glk2/igt at kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][390] ([i915#2437]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-1/igt at kms_writeback@writeback-fb-id.html - shard-rkl: NOTRUN -> [SKIP][391] ([i915#2437]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-3/igt at kms_writeback@writeback-fb-id.html - shard-dg1: NOTRUN -> [SKIP][392] ([i915#2437]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-14/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-pixel-formats: - shard-rkl: NOTRUN -> [SKIP][393] ([i915#2437] / [i915#9412]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-5/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][394] ([i915#2436]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-5/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][395] ([i915#7387]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-7/igt at perf@global-sseu-config.html * igt at perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][396] ([i915#2435]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-2/igt at perf@per-context-mode-unprivileged.html * igt at perf@unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][397] ([i915#2433]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg1-18/igt at perf@unprivileged-single-ctx-counters.html * igt at perf_pmu@busy-double-start at rcs0: - shard-mtlp: [PASS][398] -> [FAIL][399] ([i915#4349]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-5/igt at perf_pmu@busy-double-start at rcs0.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-8/igt at p == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From christoph.manszewski at intel.com Fri Jan 17 12:01:44 2025 From: christoph.manszewski at intel.com (Manszewski, Christoph) Date: Fri, 17 Jan 2025 13:01:44 +0100 Subject: [PATCH i-g-t v3 1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test In-Reply-To: <20250117082055.154635-1-jan.sokolowski@intel.com> References: <20250117082055.154635-1-jan.sokolowski@intel.com> Message-ID: Hi Jan, On 17.01.2025 09:20, Jan Sokolowski wrote: > In some cases, ccs_mode_all_engines can fail, > which will cause test fixture to not execute properly > and put the rest of the tests in an unstable state. Also, > ccs_mode_all_engines changes the state of the card for > other tests as well, thus it should clean after itself too, > which until now it didn't do. > > Refactor exec-queue-placements test so that all possible > failure paths are serviced, and add a proper cleanup method, > ccs_mode_restore. > > Signed-off-by: Jan Sokolowski > --- > > v2: Forgot proper path in title > v3: More changes. Moved test back to where it originally was Sorry I missed that version and replied to v2 earlier, though some of my comments still stand. > > --- > > tests/intel/xe_eudebug.c | 41 ++++++++++++++++++++++++++++++++++------ > 1 file changed, 35 insertions(+), 6 deletions(-) > > diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c > index 91e9ae885..9787183ed 100644 > --- a/tests/intel/xe_eudebug.c > +++ b/tests/intel/xe_eudebug.c > @@ -2797,7 +2797,7 @@ static void ccs_mode_all_engines(int num_gt) > > igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", num_slices) > 0); > igt_assert(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", &ccs_mode) > 0); > - igt_assert(num_slices == ccs_mode); > + igt_require(num_slices == ccs_mode); Can you explain this change? We successfully write ccs_mode but we expect to don't read back the written value? I admit that I don't know how this setting works, but that looks suspicious at first glance. > close(gt_fd); > } > > @@ -2805,6 +2805,25 @@ static void ccs_mode_all_engines(int num_gt) > igt_require(num_gts_with_ccs_mode > 0); > } > > +static void ccs_mode_restore(int num_gt) > +{ > + int fd, gt, gt_fd, ccs_mode, num_slices; > + > + for (gt = 0; gt < num_gt; gt++) { > + fd = drm_open_driver(DRIVER_XE); > + gt_fd = xe_sysfs_gt_open(fd, gt); > + close(fd); > + > + if (igt_sysfs_scanf(gt_fd, "num_cslices", "%u", &num_slices) <= 0) > + continue; > + > + igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", 1) > 0); See my comment from v2. > + igt_assert(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", &ccs_mode) > 0); > + igt_assert(ccs_mode == 1); > + close(gt_fd); > + } > +} > + > igt_main > { > bool was_enabled; > @@ -2920,16 +2939,26 @@ igt_main > test_empty_discovery(fd, DISCOVERY_DESTROY_RESOURCES, 16); > > igt_subtest_group { > - igt_fixture { > + bool restore_ccs = false; > + > + igt_subtest("exec-queue-placements") { > drm_close_driver(fd); > + fd = -1; > ccs_mode_all_engines(gt_count); > + restore_ccs = true; Do we need this flag? I would assume, that we always want to restore the previous state. It would just have no effect at worst. > fd = drm_open_driver(DRIVER_XE); > - } > - > - igt_subtest("exec-queue-placements") > test_basic_sessions(fd, EXEC_QUEUES_PLACEMENTS, 1, true); > + } > + igt_fixture { > + if (restore_ccs) { > + drm_close_driver(fd); > + fd = -1; > + ccs_mode_restore(gt_count); > + } > + if (fd == -1) > + fd = drm_open_driver(DRIVER_XE); Like in my comment in v2 - that looks like a weird workaround for skipping too early in the fixture. Thanks, Christoph > + } > } > - > igt_fixture { > xe_eudebug_enable(fd, was_enabled); > drm_close_driver(fd); From patchwork at emeril.freedesktop.org Fri Jan 17 12:16:23 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 12:16:23 -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_=28rev2=29?= In-Reply-To: <20250117100101.4282-1-chiahsuan.chung@amd.com> References: <20250117100101.4282-1-chiahsuan.chung@amd.com> Message-ID: <173711618305.714322.2311881253868854323@b555e5b46a47> == Series Details == Series: tests/amdgpu/amd_vrr_range: Fix panel cannot light up after test (rev2) URL : https://patchwork.freedesktop.org/series/143059/ State : success == Summary == CI Bug Log - changes from XEIGT_8196_BAT -> XEIGTPW_12455_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8196 -> IGTPW_12455 * Linux: xe-2504-a15d2a84505eed8dbb58911147e44752734f3a88 -> xe-2505-48e8781781323a28fabb378bcc79b3f48c1bcae0 IGTPW_12455: 5885393e3cf3c5e6bc77566baf9056af5a04192d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8196: 824553d05138bbfa48b9e60e9c2a741497c7c627 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2504-a15d2a84505eed8dbb58911147e44752734f3a88: a15d2a84505eed8dbb58911147e44752734f3a88 xe-2505-48e8781781323a28fabb378bcc79b3f48c1bcae0: 48e8781781323a28fabb378bcc79b3f48c1bcae0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 12:31:47 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 12:31:47 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/xe=3A_Add_xe=5Fcg?= =?utf-8?q?=5Fdmem_test?= In-Reply-To: <20250115115512.84520-1-dev@lankhorst.se> References: <20250115115512.84520-1-dev@lankhorst.se> Message-ID: <173711710775.716774.15607296093450232932@b555e5b46a47> == Series Details == Series: tests/xe: Add xe_cg_dmem test URL : https://patchwork.freedesktop.org/series/143593/ State : failure == Summary == CI Bug Log - changes from IGT_8193_full -> IGTPW_12447_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12447_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12447_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_12447/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12447_full: ### IGT changes ### #### Possible regressions #### * igt at gem_tiled_swapping@non-threaded: - shard-rkl: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt at gem_tiled_swapping@non-threaded.html * igt at i915_module_load@load: - shard-dg2: ([PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16]) -> ([PASS][17], [PASS][18], [FAIL][19], [FAIL][20], [FAIL][21], [FAIL][22], [FAIL][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-10/igt at i915_module_load@load.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-2/igt at i915_module_load@load.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-5/igt at i915_module_load@load.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-3/igt at i915_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-7/igt at i915_module_load@load.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-10/igt at i915_module_load@load.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-8/igt at i915_module_load@load.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-4/igt at i915_module_load@load.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-2/igt at i915_module_load@load.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-3/igt at i915_module_load@load.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-8/igt at i915_module_load@load.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-5/igt at i915_module_load@load.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-4/igt at i915_module_load@load.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-11/igt at i915_module_load@load.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg2-11/igt at i915_module_load@load.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt at i915_module_load@load.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt at i915_module_load@load.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-11/igt at i915_module_load@load.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-11/igt at i915_module_load@load.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-11/igt at i915_module_load@load.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-11/igt at i915_module_load@load.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-11/igt at i915_module_load@load.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt at i915_module_load@load.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt at i915_module_load@load.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt at i915_module_load@load.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt at i915_module_load@load.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt at i915_module_load@load.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt at i915_module_load@load.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-5/igt at i915_module_load@load.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt at i915_module_load@load.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt at i915_module_load@load.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt at i915_module_load@load.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt at i915_module_load@load.html #### Warnings #### * igt at perf_pmu@rc6 at runtime-pm-gt0: - shard-rkl: [DMESG-WARN][35] ([i915#12964]) -> [SKIP][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-5/igt at perf_pmu@rc6 at runtime-pm-gt0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt at perf_pmu@rc6 at runtime-pm-gt0.html New tests --------- New tests have been introduced between IGT_8193_full and IGTPW_12447_full: ### New IGT tests (78) ### * igt at gem_ctx_engines@independent at bcs0: - Statuses : 5 pass(s) - Exec time: [0.05, 0.23] s * igt at gem_ctx_engines@independent at rcs0: - Statuses : 5 pass(s) - Exec time: [0.05, 0.23] s * igt at gem_ctx_engines@independent at vcs0: - Statuses : 5 pass(s) - Exec time: [0.05, 0.20] s * igt at gem_ctx_engines@independent at vcs1: - Statuses : 3 pass(s) - Exec time: [0.06, 0.21] s * igt at gem_ctx_engines@independent at vecs0: - Statuses : 5 pass(s) - Exec time: [0.05, 0.22] s * igt at gem_exec_async@forked-writes: - Statuses : 5 pass(s) - Exec time: [0.16, 0.34] s * igt at gem_exec_async@forked-writes at bcs0: - Statuses : 5 pass(s) - Exec time: [0.03, 0.07] s * igt at gem_exec_async@forked-writes at rcs0: - Statuses : 5 pass(s) - Exec time: [0.03, 0.07] s * igt at gem_exec_async@forked-writes at vcs0: - Statuses : 5 pass(s) - Exec time: [0.03, 0.08] s * igt at gem_exec_async@forked-writes at vcs1: - Statuses : 4 pass(s) - Exec time: [0.03, 0.04] s * igt at gem_exec_async@forked-writes at vecs0: - Statuses : 5 pass(s) - Exec time: [0.03, 0.07] s * igt at gem_exec_balancer@fairslice: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 5.25] s * igt at gem_exec_balancer@nohangcheck: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 3.86] s * igt at gem_exec_balancer@noheartbeat: - Statuses : 2 pass(s) 2 skip(s) - Exec time: [0.0, 3.69] s * igt at gem_exec_balancer@persistence: - Statuses : 4 pass(s) - Exec time: [0.75, 1.22] s * igt at gem_exec_balancer@sequential: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 3.72] s * igt at gem_exec_create@legacy: - Statuses : 5 pass(s) - Exec time: [2.05, 4.19] s * igt at gem_exec_schedule@fairslice: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 14.14] s * igt at gem_exec_schedule@fairslice-all: - Statuses : 3 pass(s) 1 skip(s) - Exec time: [0.0, 2.07] s * igt at gem_exec_schedule@fairslice at bcs0: - Statuses : 6 pass(s) - Exec time: [2.01, 2.03] s * igt at gem_exec_schedule@fairslice at rcs0: - Statuses : 6 pass(s) - Exec time: [2.01, 2.04] s * igt at gem_exec_schedule@fairslice at vcs0: - Statuses : 6 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@fairslice at vcs1: - Statuses : 4 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@fairslice at vecs0: - Statuses : 6 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@preempt-user: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 0.23] s * igt at gem_exec_schedule@preempt-user at bcs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@preempt-user at rcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@preempt-user at vcs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@preempt-user at vcs1: - Statuses : 4 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@preempt-user at vecs0: - Statuses : 5 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@u-fairslice: - Statuses : 3 pass(s) 1 skip(s) - Exec time: [0.0, 12.13] s * igt at gem_exec_schedule@u-fairslice-all: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 2.12] s * igt at gem_exec_schedule@u-fairslice at bcs0: - Statuses : 3 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-fairslice at rcs0: - Statuses : 3 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-fairslice at vcs0: - Statuses : 3 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-fairslice at vcs1: - Statuses : 2 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-fairslice at vecs0: - Statuses : 3 pass(s) - Exec time: [2.01, 2.02] s * igt at gem_exec_schedule@u-independent: - Statuses : 6 pass(s) - Exec time: [0.11, 10.02] s * igt at gem_exec_schedule@u-independent at rcs0: - Statuses : 6 pass(s) - Exec time: [0.07, 2.02] s * igt at gem_exec_schedule@u-independent at vcs0: - Statuses : 5 pass(s) - Exec time: [0.12, 2.00] s * igt at gem_exec_schedule@u-independent at vcs1: - Statuses : 3 pass(s) - Exec time: [0.11, 1.98] s * igt at gem_exec_schedule@u-independent at vecs0: - Statuses : 5 pass(s) - Exec time: [0.12, 2.01] s * igt at gem_exec_schedule@u-lateslice: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 0.16] s * igt at gem_exec_schedule@u-lateslice at bcs0: - Statuses : 4 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-lateslice at rcs0: - Statuses : 4 pass(s) - Exec time: [0.01, 0.04] s * igt at gem_exec_schedule@u-lateslice at vcs0: - Statuses : 4 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-lateslice at vcs1: - Statuses : 3 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-lateslice at vecs0: - Statuses : 4 pass(s) - Exec time: [0.01, 0.02] s * igt at gem_exec_schedule@u-semaphore-codependency: - Statuses : 5 pass(s) - Exec time: [0.01, 0.03] s * igt at gem_exec_schedule@u-semaphore-noskip: - Statuses : 4 pass(s) - Exec time: [0.19, 0.73] s * igt at gem_exec_schedule@u-semaphore-resolve: - Statuses : 5 pass(s) - Exec time: [0.01, 0.07] s * igt at gem_exec_schedule@u-semaphore-user: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 0.08] s * igt at gem_exec_schedule@u-submit-early-slice: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0, 0.37] s * igt at gem_exec_schedule@u-submit-early-slice at bcs0: - Statuses : 2 pass(s) - Exec time: [0.03, 0.06] s * igt at gem_exec_schedule@u-submit-early-slice at rcs0: - Statuses : 2 pass(s) - Exec time: [0.03, 0.07] s * igt at gem_exec_schedule@u-submit-early-slice at vcs0: - Statuses : 2 pass(s) - Exec time: [0.03, 0.05] s * igt at gem_exec_schedule@u-submit-early-slice at vcs1: - Statuses : 2 pass(s) - Exec time: [0.03, 0.07] s * igt at gem_exec_schedule@u-submit-early-slice at vecs0: - Statuses : 2 pass(s) - Exec time: [0.03, 0.05] s * igt at gem_exec_schedule@u-submit-golden-slice: - Statuses : 3 pass(s) 1 skip(s) - Exec time: [0.0, 0.32] s * igt at gem_exec_schedule@u-submit-golden-slice at bcs0: - Statuses : 3 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@u-submit-golden-slice at rcs0: - Statuses : 3 pass(s) - Exec time: [0.03, 0.06] s * igt at gem_exec_schedule@u-submit-golden-slice at vcs0: - Statuses : 3 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@u-submit-golden-slice at vcs1: - Statuses : 3 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@u-submit-golden-slice at vecs0: - Statuses : 3 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@u-submit-late-slice: - Statuses : 5 pass(s) 1 skip(s) - Exec time: [0.0, 0.20] s * igt at gem_exec_schedule@u-submit-late-slice at bcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@u-submit-late-slice at rcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_exec_schedule@u-submit-late-slice at vcs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.04] s * igt at gem_exec_schedule@u-submit-late-slice at vcs1: - Statuses : 3 pass(s) - Exec time: [0.03] s * igt at gem_exec_schedule@u-submit-late-slice at vecs0: - Statuses : 5 pass(s) - Exec time: [0.02, 0.05] s * igt at gem_softpin@32b-excludes-last-page: - Statuses : 5 pass(s) - Exec time: [0.00, 0.01] s * igt at gem_softpin@full: - Statuses : 4 pass(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt at gem_softpin@zero: - Statuses : 5 pass(s) - Exec time: [0.00, 0.01] s * igt at gen9_exec_parse@shadow-peek: - Statuses : 1 pass(s) 5 skip(s) - Exec time: [0.0, 0.01] s * igt at perf@non-zero-reason: - Statuses : 1 fail(s) 5 pass(s) 1 skip(s) - Exec time: [0.0, 51.19] s * igt at perf_pmu@gt-awake: - Statuses : 4 pass(s) - Exec time: [2.01, 8.28] s * igt at perf_pmu@invalid-open: - Statuses : 4 pass(s) - Exec time: [0.0] s * igt at perf_pmu@rc6-suspend: - Statuses : 5 pass(s) - Exec time: [7.49, 16.04] s Known issues ------------ Here are the changes found in IGTPW_12447_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#8411]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#8411]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt at api_intel_bb@object-reloc-purge-cache.html * igt at device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#11078]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-5/igt at device_reset@cold-reset-bound.html * igt at drm_fdinfo@busy-idle at bcs0: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#8414]) +16 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt at drm_fdinfo@busy-idle at bcs0.html * igt at drm_fdinfo@busy-idle at vecs0: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#8414]) +6 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-3/igt at drm_fdinfo@busy-idle at vecs0.html * igt at drm_fdinfo@isolation at vecs0: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#8414]) +18 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt at drm_fdinfo@isolation at vecs0.html * igt at gem_bad_reloc@negative-reloc-lut: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-5/igt at gem_bad_reloc@negative-reloc-lut.html * igt at gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3936]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt at gem_busy@semaphore.html * igt at gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#3555] / [i915#9323]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-4/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][46] ([i915#3555] / [i915#9323]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-8/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][47] ([i915#7697]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-6/igt at gem_close_race@multigpu-basic-process.html - shard-dg2: NOTRUN -> [SKIP][48] ([i915#7697]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt at gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][49] ([i915#7697]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@busy-create: - shard-rkl: [PASS][50] -> [DMESG-WARN][51] ([i915#12964]) +27 other tests dmesg-warn [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-7/igt at gem_create@busy-create.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-5/igt at gem_create@busy-create.html * igt at gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#6335]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/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][53] ([i915#6335]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#8562]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#8555]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#8555]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt at gem_ctx_persistence@heartbeat-stop.html * igt at gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][57] ([i915#1099]) +5 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-snb1/igt at gem_ctx_persistence@legacy-engines-queued.html * igt at gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#280]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-4/igt at gem_ctx_sseu@invalid-args.html * igt at gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][59] ([i915#280]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#280]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@hibernate: - shard-dg1: NOTRUN -> [ABORT][61] ([i915#7975] / [i915#8213]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt at gem_eio@hibernate.html * igt at gem_eio@kms: - shard-dg1: [PASS][62] -> [FAIL][63] ([i915#5784]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-12/igt at gem_eio@kms.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt at gem_eio@kms.html * igt at gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][64] ([i915#8898]) +1 other test fail [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-snb4/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4771]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4036]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#4525]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-4/igt at gem_exec_balancer@parallel.html * igt at gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#4525]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-5/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@sliced: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4812]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt at gem_exec_balancer@sliced.html * igt at gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][70] ([i915#11965]) +1 other test fail [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-3/igt at gem_exec_capture@capture.html * igt at gem_exec_capture@capture-invisible at smem0: - shard-glk: NOTRUN -> [SKIP][71] ([i915#6334]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk9/igt at gem_exec_capture@capture-invisible at smem0.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][72] ([i915#11965]) +4 other tests fail [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt at gem_exec_capture@capture at vecs0-lmem0.html - shard-dg1: NOTRUN -> [FAIL][73] ([i915#11965]) +2 other tests fail [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_endless@dispatch at vcs1: - shard-dg1: [PASS][74] -> [TIMEOUT][75] ([i915#3778]) +1 other test timeout [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-17/igt at gem_exec_endless@dispatch at vcs1.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt at gem_exec_endless@dispatch at vcs1.html * igt at gem_exec_fence@concurrent: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4812]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt at gem_exec_fence@concurrent.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3539]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at gem_exec_flush@basic-uc-prw-default.html - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3539]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-uc-ro-default: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3539] / [i915#4852]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt at gem_exec_flush@basic-uc-ro-default.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3539] / [i915#4852]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3281]) +11 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt at gem_exec_reloc@basic-gtt-cpu-active.html * igt at gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3281]) +11 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at gem_exec_reloc@basic-wc-read-active.html * igt at gem_exec_reloc@basic-write-read-active: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#3281]) +8 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-7/igt at gem_exec_reloc@basic-write-read-active.html * igt at gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4537] / [i915#4812]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt at gem_exec_schedule@semaphore-power.html * igt at gem_exec_schedule@thriceslice: - shard-snb: NOTRUN -> [SKIP][85] +461 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-snb7/igt at gem_exec_schedule@thriceslice.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][86] ([i915#7975] / [i915#8213]) +1 other test abort [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4860]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4860]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt at gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#2190]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt at gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][90] ([i915#2190]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk5/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#4613] / [i915#7582]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-8/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#4613]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-5/igt at gem_lmem_swapping@parallel-random-verify.html - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#4613]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-2/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][94] ([i915#4613]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk1/igt at gem_lmem_swapping@random-engines.html - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#4613]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at gem_lmem_swapping@random-engines.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: NOTRUN -> [TIMEOUT][96] ([i915#5493]) +1 other test timeout [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#4613]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-5/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#8289]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-3/igt at gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][99] ([i915#8289]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt at gem_media_fill@media-fill.html * igt at gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#284]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-5/igt at gem_media_vme.html * igt at gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#4083]) +5 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt at gem_mmap@bad-object.html * igt at gem_mmap_gtt@basic-read-write-distinct: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4077]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-5/igt at gem_mmap_gtt@basic-read-write-distinct.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4077]) +14 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4083]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt at gem_mmap_wc@fault-concurrent.html * igt at gem_mmap_wc@read-write-distinct: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#4083]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-3/igt at gem_mmap_wc@read-write-distinct.html * igt at gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#3282]) +6 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt at gem_partial_pwrite_pread@reads-snoop.html - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#3282]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-5/igt at gem_partial_pwrite_pread@reads-snoop.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#3282]) +6 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_pread@exhaustion: - shard-tglu: NOTRUN -> [WARN][109] ([i915#2658]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-3/igt at gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][110] ([i915#2658]) +1 other test warn [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk9/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#3282]) +6 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt at gem_pwrite@basic-exhaustion.html - shard-snb: NOTRUN -> [WARN][112] ([i915#2658]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-snb2/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][113] ([i915#12964]) +1 other test timeout [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-7/igt at gem_pxp@create-protected-buffer.html * igt at gem_pxp@create-regular-context-1: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4270]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt at gem_pxp@create-regular-context-1.html * igt at gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][115] ([i915#12917] / [i915#12964]) +1 other test timeout [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-4/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html * igt at gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4270]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at gem_pxp@reject-modify-context-protection-on.html * igt at gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#5190] / [i915#8428]) +6 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt at gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#8428]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-7/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#8411]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#4079]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#4079]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt at gem_set_tiling_vs_gtt.html * igt at gem_tiled_fence_blits@basic: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4077]) +9 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at gem_tiled_fence_blits@basic.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][123] ([i915#13263] / [i915#13449]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-snb7/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][124] ([i915#3323]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk9/igt at gem_userptr_blits@dmabuf-sync.html - shard-dg1: NOTRUN -> [SKIP][125] ([i915#3297]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#3297]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt at gem_userptr_blits@dmabuf-unsync.html - shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#3297]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#3282] / [i915#3297]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#3297] / [i915#4880]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#3297] / [i915#4880]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#3297]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-7/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#3297]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-7/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_workarounds@suspend-resume-context: - shard-glk: NOTRUN -> [INCOMPLETE][133] ([i915#13356]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk5/igt at gem_workarounds@suspend-resume-context.html * igt at gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#2856]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-4/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#2527]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt at gen9_exec_parse@batch-invalid-length.html * igt at gen9_exec_parse@bb-oversize: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#2527]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@shadow-peek (NEW): - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#2527] / [i915#2856]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at gen9_exec_parse@shadow-peek.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#2856]) +5 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt at gen9_exec_parse@unaligned-access.html * igt at gen9_exec_parse@valid-registers: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#2527] / [i915#2856]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-9/igt at gen9_exec_parse@valid-registers.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#4881]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt at i915_fb_tiling.html * igt at i915_hangman@detector at vcs0: - shard-mtlp: [PASS][141] -> [ABORT][142] ([i915#13193]) +1 other test abort [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-6/igt at i915_hangman@detector at vcs0.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-4/igt at i915_hangman@detector at vcs0.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [ABORT][143] ([i915#13493] / [i915#9820]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt at i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][144] -> [DMESG-WARN][145] ([i915#10887] / [i915#13475]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-tglu-10/igt at i915_module_load@reload-with-fault-injection.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-8/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#8399]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-7/igt at i915_pm_freq_api@freq-reset-multiple.html - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#8399]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at i915_pm_freq_api@freq-reset-multiple.html * igt at i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [PASS][148] -> [FAIL][149] ([i915#12942]) +1 other test fail [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-1/igt at i915_pm_rc6_residency@rc6-accuracy.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at i915_pm_rc6_residency@rc6-idle: - shard-dg1: NOTRUN -> [FAIL][150] ([i915#3591]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: NOTRUN -> [FAIL][151] ([i915#12739] / [i915#3591]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#11681] / [i915#6621]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt at i915_pm_rps@basic-api.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#11681] / [i915#6621]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-7/igt at i915_pm_rps@basic-api.html - shard-dg2: NOTRUN -> [SKIP][154] ([i915#11681] / [i915#6621]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt at i915_pm_rps@basic-api.html * igt at i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#6245]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt at i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6245]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-8/igt at i915_query@hwconfig_table.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#6188]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-4/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_selftest@mock at memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][158] ([i915#9311]) +1 other test dmesg-warn [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt at i915_selftest@mock at memory_region.html - shard-tglu-1: NOTRUN -> [DMESG-WARN][159] ([i915#9311]) +1 other test dmesg-warn [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@debugfs-reader: - shard-mtlp: [PASS][160] -> [INCOMPLETE][161] ([i915#13491]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-4/igt at i915_suspend@debugfs-reader.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-5/igt at i915_suspend@debugfs-reader.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][162] ([i915#4817]) +2 other tests incomplete [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk3/igt at i915_suspend@forcewake.html * igt at intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#7707]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-4/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#4212]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#4212]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-7/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][166] ([i915#12454] / [i915#12712]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/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-b-hdmi-a-2-y-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#8709]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/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-atomic at pipe-d-edp-1-4-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#8709]) +11 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-1/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-edp-1-4-mc-ccs.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][169] ([i915#8709]) +7 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-6/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_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#9531]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [PASS][171] -> [FAIL][172] ([i915#11808]) +1 other test fail [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-tglu-2/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-6/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#1769] / [i915#3555]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/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-dg2: NOTRUN -> [SKIP][174] ([i915#1769] / [i915#3555]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#5286]) +3 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-8/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@4-tiled-64bpp-rotate-0: - shard-mtlp: [PASS][176] -> [FAIL][177] ([i915#12469] / [i915#5138]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-8/igt at kms_big_fb@4-tiled-64bpp-rotate-0.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-3/igt at kms_big_fb@4-tiled-64bpp-rotate-0.html * igt at kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][178] -> [FAIL][179] ([i915#5138]) +1 other test fail [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-mtlp-2/igt at kms_big_fb@4-tiled-64bpp-rotate-180.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-3/igt at kms_big_fb@4-tiled-64bpp-rotate-180.html * igt at kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#5286]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#5286]) +4 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#4538] / [i915#5286]) +6 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/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-hflip: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#5286]) +6 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#3638]) +4 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#3638]) +5 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#4538] / [i915#5190]) +9 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html - shard-dg1: NOTRUN -> [SKIP][187] ([i915#4538]) +4 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][188] +7 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-7/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][189] +485 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk3/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-2.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#12313]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-4/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][191] ([i915#6095]) +147 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/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-y-tiled-ccs at pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#10307] / [i915#6095]) +128 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#6095]) +29 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-4/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-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#12313]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#12805]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][196] ([i915#12796]) +1 other test incomplete [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk8/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#6095]) +22 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/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-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#6095]) +81 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#12313]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#12313]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-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-dg1: NOTRUN -> [SKIP][201] ([i915#12313]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][202] ([i915#12313]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-10/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#6095]) +44 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/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 at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#11616] / [i915#7213]) +4 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/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][206] ([i915#3742]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#4087]) +4 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1.html * igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#11151] / [i915#7828]) +6 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-6/igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt at kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#11151] / [i915#7828]) +12 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#11151] / [i915#7828]) +6 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html - shard-dg1: NOTRUN -> [SKIP][211] ([i915#11151] / [i915#7828]) +6 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#11151] / [i915#7828]) +9 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#11151] / [i915#7828]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-6/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#3555]) +4 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-3/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#9424]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#3116] / [i915#3299]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-6/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#7118]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt at kms_content_protection@srm.html - shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#6944] / [i915#7116] / [i915#7118]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#7118] / [i915#9424]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#6944] / [i915#9424]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-4/igt at kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][222] ([i915#7118] / [i915#9424]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt at kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#7116] / [i915#9424]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-256x85 at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][224] ([i915#12964]) +22 other tests dmesg-warn [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt at kms_cursor_crc@cursor-offscreen-256x85 at pipe-b-hdmi-a-1.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#3555]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-4/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#13049]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#8814]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-7/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#3555]) +6 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#13049]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-7/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#13049]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#3555]) +8 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#13049]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-4/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][233] +27 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-7/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#13046] / [i915#5354]) +8 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/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-rkl: NOTRUN -> [SKIP][235] ([i915#4103]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][236] ([i915#4103] / [i915#4213]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#4103]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-glk: [PASS][238] -> [DMESG-WARN][239] ([i915#118]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-glk1/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk5/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#9809]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-8/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][241] -> [FAIL][242] ([i915#2346]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-glk8/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk4/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#9067]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-10/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#4103] / [i915#4213]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#9723]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-5/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#8588]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#3840] / [i915#9688]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#3840]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][249] ([i915#3840]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#3840]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-8/igt at kms_dsc@dsc-with-formats.html * igt at kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#3469]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#2065] / [i915#4854]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-3/igt at kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][253] ([i915#4854]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#1839]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt at kms_feature_discovery@display-3x.html - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#1839]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-1/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#1839]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#9337]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#658]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#658]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#9934]) +5 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt at kms_flip@2x-absolute-wf_vblank.html * igt at kms_flip@2x-blocking-wf_vblank at ac-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [FAIL][261] ([i915#11989]) +2 other tests fail [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk3/igt at kms_flip@2x-blocking-wf_vblank at ac-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-glk: [PASS][262] -> [FAIL][263] ([i915#11989]) +1 other test fail [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-glk7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk4/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#9934]) +5 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#3637]) +3 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#8381]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-modeset: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#3637]) +3 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-1/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][268] ([i915#12745] / [i915#4839]) +1 other test incomplete [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk7/igt at kms_flip@2x-flip-vs-suspend.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][269] ([i915#4839]) +1 other test incomplete [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk7/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#3637]) +5 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-3/igt at kms_flip@2x-nonexisting-fb-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#9934]) +4 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-5/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][272] ([i915#12745] / [i915#1982] / [i915#4839]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk6/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][273] ([i915#12745] / [i915#1982]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk6/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#2672] / [i915#3555]) +9 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-8/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-mtlp: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8810]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-8/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-yftile-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#2587] / [i915#2672]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-4/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling 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][278] ([i915#2672]) +9 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-5/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-downscaling: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#2672] / [i915#3555]) +4 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][280] ([i915#2672] / [i915#3555]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#2587] / [i915#2672]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/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-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#2587] / [i915#2672] / [i915#3555]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#2672] / [i915#3555]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#2587] / [i915#2672]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#2672] / [i915#3555]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-3/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#2672]) +5 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/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-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#8708]) +3 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-4/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#5354]) +42 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#8708]) +20 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][293] +48 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#8708]) +22 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#3458]) +23 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][296] +49 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#1825]) +11 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][298] +54 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-10/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#1825]) +46 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#5439]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-4/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#3023]) +31 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#3458]) +22 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#6118]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8228]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-8/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#3555] / [i915#8228]) +2 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt at kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#3555] / [i915#8228]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-2/igt at kms_hdr@static-swap.html - shard-rkl: NOTRUN -> [SKIP][307] ([i915#3555] / [i915#8228]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-7/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#3555] / [i915#8228]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#10656]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][310] ([i915#12388]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-8/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#12394] / [i915#13522]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#12339]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-5/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#10656]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#10656] / [i915#13522]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#12339]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#6301]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][317] +17 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt at kms_plane_alpha_blend@alpha-basic: - shard-dg1: [PASS][318] -> [DMESG-WARN][319] ([i915#4423]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-dg1-18/igt at kms_plane_alpha_blend@alpha-basic.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-14/igt at kms_plane_alpha_blend@alpha-basic.html * igt at kms_plane_multiple@tiling-yf: - shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#3555]) +4 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][321] ([i915#3555] / [i915#8806]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#6953]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt at kms_plane_scaling@intel-max-src-size.html - shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#6953]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#12247] / [i915#9423]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-10/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#12247]) +8 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-1/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-b: - shard-tglu: NOTRUN -> [SKIP][326] ([i915#12247]) +12 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-9/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-b.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#12247]) +15 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/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][328] ([i915#12247] / [i915#6953]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-1/igt at kms_plane_scaling@planes-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][329] ([i915#12247] / [i915#6953]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/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][330] ([i915#12247] / [i915#6953] / [i915#9423]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/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][331] ([i915#12247]) +7 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/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-25 at pipe-b: - shard-dg1: NOTRUN -> [SKIP][332] ([i915#12247]) +8 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/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][333] ([i915#12247] / [i915#6953]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-1/igt at kms_plane_scaling@planes-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#12247] / [i915#6953]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/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-tglu-1: NOTRUN -> [SKIP][335] ([i915#12247]) +3 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#12247] / [i915#3555]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-9/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#5354]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg1: NOTRUN -> [SKIP][338] ([i915#12343]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][339] ([i915#9812]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-10/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_backlight@fade-with-suspend: - shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#9812]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_pm_backlight@fade-with-suspend.html - shard-dg1: NOTRUN -> [SKIP][341] ([i915#5354]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][342] ([i915#9685]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-3/igt at kms_pm_dc@dc5-psr.html - shard-dg2: NOTRUN -> [SKIP][343] ([i915#9685]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#5978]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#9685]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-4/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#3361]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][347] ([i915#9340]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-13/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#9519]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#9519]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#9519]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-6/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#9519]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][352] -> [SKIP][353] ([i915#9519]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-rkl-5/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-4/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][354] ([i915#6524]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-9/igt at kms_prime@basic-crc-hybrid.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#11520]) +3 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#12316]) +2 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-6/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#11520]) +10 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][358] ([i915#11520]) +7 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-17/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-snb: NOTRUN -> [SKIP][359] ([i915#11520]) +10 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-snb5/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html - shard-tglu: NOTRUN -> [SKIP][360] ([i915#11520]) +3 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-10/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][361] ([i915#11520]) +19 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk5/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#11520]) +11 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#9683]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#9683]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +22 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][366] ([i915#9688]) +5 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-5/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][367] ([i915#1072] / [i915#9732]) +28 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-2/igt at kms_psr@fbc-psr2-sprite-render.html * igt at kms_psr@pr-cursor-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][368] ([i915#9732]) +13 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_psr@pr-cursor-mmap-gtt.html * igt at kms_psr@psr-primary-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#1072] / [i915#9732]) +29 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-8/igt at kms_psr@psr-primary-mmap-cpu.html * igt at kms_psr@psr2-cursor-render: - shard-tglu: NOTRUN -> [SKIP][370] ([i915#9732]) +11 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-10/igt at kms_psr@psr2-cursor-render.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][371] ([i915#5289]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][372] ([i915#5289]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][373] ([i915#12755]) +2 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-2/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#5190]) +2 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][375] ([i915#5289]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][376] ([i915#5289]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-mtlp: NOTRUN -> [SKIP][377] ([i915#12755]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-8/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_selftest@drm_framebuffer: - shard-tglu: NOTRUN -> [ABORT][378] ([i915#13179]) +1 other test abort [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-9/igt at kms_selftest@drm_framebuffer.html * igt at kms_tiled_display@basic-test-pattern: - shard-tglu-1: NOTRUN -> [SKIP][379] ([i915#8623]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_tiled_display@basic-test-pattern.html - shard-dg1: NOTRUN -> [SKIP][380] ([i915#8623]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][381] ([i915#12276]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk2/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-2.html * igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1: - shard-glk: [PASS][382] -> [INCOMPLETE][383] ([i915#12276]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/shard-glk1/igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-glk9/igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1.html * igt at kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][384] ([i915#3555] / [i915#8808]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-mtlp-3/igt at kms_vrr@flip-basic.html * igt at kms_vrr@flip-basic-fastset: - shard-dg1: NOTRUN -> [SKIP][385] ([i915#9906]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][386] ([i915#11920]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-7/igt at kms_vrr@lobf.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][387] ([i915#9906]) +2 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-rkl-3/igt at kms_vrr@seamless-rr-switch-drrs.html - shard-tglu: NOTRUN -> [SKIP][388] ([i915#9906]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-3/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][389] ([i915#9906]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-7/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#2437]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg2-4/igt at kms_writeback@writeback-fb-id.html - shard-tglu-1: NOTRUN -> [SKIP][391] ([i915#2437]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-tglu-1/igt at kms_writeback@writeback-fb-id.html - shard-dg1: NOTRUN -> [SKIP][392] ([i915#2437]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-18/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][393] ([i915#2437] / [i915#9412]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/shard-dg1-12/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP] == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12447/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From francois.dugast at intel.com Fri Jan 17 12:49:24 2025 From: francois.dugast at intel.com (Francois Dugast) Date: Fri, 17 Jan 2025 13:49:24 +0100 Subject: [PATCH 1/2] tests/intel/xe_fault_injection: Inject errors during xe_guc_mmio_send_recv In-Reply-To: <20241230084451.17488-2-satyanarayana.k.v.p@intel.com> References: <20241230084451.17488-1-satyanarayana.k.v.p@intel.com> <20241230084451.17488-2-satyanarayana.k.v.p@intel.com> Message-ID: Hi, On Mon, Dec 30, 2024 at 02:14:50PM +0530, Satyanarayana K V P wrote: > Use the kernel fault injection infrastructure to test error handling > of xe at probe time when executing xe_guc_mmio_send_recv() so that > more code paths are tested, such as error handling and unwinding. > > Error can be injected using: > ./xe_fault_injection --run-subtest inject-fault-probe-function-xe_guc_mmio_send_recv > > Cc: Matthew Brost > Cc: Micha? Wajdeczko > Cc: Francois Dugast > Signed-off-by: Satyanarayana K V P > --- > tests/intel/xe_fault_injection.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c > index 7ae941367..ef3bbb7ec 100644 > --- a/tests/intel/xe_fault_injection.c > +++ b/tests/intel/xe_fault_injection.c > @@ -170,6 +170,7 @@ static void set_retval(const char function_name[], long long retval) > * @xe_uc_fw_init: xe_uc_fw_init > * @xe_wa_init: xe_wa_init > * @xe_wopcm_init: xe_wopcm_init > + * @xe_guc_mmio_send_recv: xe_guc_mmio_send_recv Please keep this list sorted. > */ > static void > inject_fault_probe(int fd, char pci_slot[], const char function_name[]) > @@ -301,6 +302,7 @@ igt_main > { "xe_uc_fw_init" }, > { "xe_wa_init" }, > { "xe_wopcm_init" }, > + { "xe_guc_mmio_send_recv" }, Please also keep this list sorted. Francois > { } > }; > const struct section vm_create_fail_functions[] = { > -- > 2.35.3 > From christoph.manszewski at intel.com Fri Jan 17 13:07:48 2025 From: christoph.manszewski at intel.com (Manszewski, Christoph) Date: Fri, 17 Jan 2025 14:07:48 +0100 Subject: [PATCH i-g-t 1/2] lib/xe/xe_util: introduce helper for enabling ccs mode In-Reply-To: <20241216131137.50945-1-dominik.grzegorzek@intel.com> References: <20241216131137.50945-1-dominik.grzegorzek@intel.com> Message-ID: Hi Dominik, On 16.12.2024 14:11, Dominik Grzegorzek wrote: > From: Andrzej Hajda > > Multiple tests will require enabled ccs mode. Add special helper to > avoid code duplication. > > Signed-off-by: Andrzej Hajda > --- > lib/xe/xe_util.c | 31 +++++++++++++++++++++++++++++++ > lib/xe/xe_util.h | 1 + > 2 files changed, 32 insertions(+) > > diff --git a/lib/xe/xe_util.c b/lib/xe/xe_util.c > index 9482819c2..f7ae19f08 100644 > --- a/lib/xe/xe_util.c > +++ b/lib/xe/xe_util.c > @@ -302,3 +302,34 @@ int xe_gt_count_engines_by_class(int fd, int gt, int class) > > return n; > } > + > +/** > + * xe_sysfs_enable_ccs_mode: > + * @fd: pointer to xe drm fd, can reopened multiple times > + * > + * Enables ccs_mode on all GTs, it must succeed for at least one GT. > + * Since function requires the driver to be closed during ccs_mode change > + * @fd will be closed then re-opened. > + */ > +void xe_sysfs_enable_ccs_mode(int *fd) > +{ > + int gt, gt_fd, num_slices, ccs_mode, num_gt, enabled_count = 0; > + > + num_gt = xe_number_gt(*fd); > + > + for (gt = 0; gt < num_gt; gt++) { > + gt_fd = xe_sysfs_gt_open(*fd, gt); > + drm_close_driver(*fd); Why not outside the loop? Thanks, Christoph > + > + if (!igt_debug_on(igt_sysfs_scanf(gt_fd, "num_cslices", "%u", &num_slices) <= 0) && > + !igt_debug_on(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", num_slices) <= 0) && > + !igt_debug_on(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", &ccs_mode) <= 0) && > + !igt_debug_on(num_slices != ccs_mode)) > + enabled_count++; > + close(gt_fd); > + *fd = drm_open_driver(DRIVER_XE); > + } > + > + if (!enabled_count) > + igt_require_f(0, "Cannot enable ccs mode for any GT\n"); > +} > diff --git a/lib/xe/xe_util.h b/lib/xe/xe_util.h > index b9fbfc5cd..a82c44a2a 100644 > --- a/lib/xe/xe_util.h > +++ b/lib/xe/xe_util.h > @@ -53,5 +53,6 @@ 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); > > +void xe_sysfs_enable_ccs_mode(int *fd); > > #endif /* XE_UTIL_H */ From christoph.manszewski at intel.com Fri Jan 17 13:18:53 2025 From: christoph.manszewski at intel.com (Manszewski, Christoph) Date: Fri, 17 Jan 2025 14:18:53 +0100 Subject: [PATCH i-g-t 1/2] lib/xe/xe_util: introduce helper for enabling ccs mode In-Reply-To: References: <20241216131137.50945-1-dominik.grzegorzek@intel.com> Message-ID: <2208c434-10f1-4fb3-ba89-1f7bcfd8d03a@intel.com> On 17.01.2025 14:07, Manszewski, Christoph wrote: > Hi Dominik, > > On 16.12.2024 14:11, Dominik Grzegorzek wrote: >> From: Andrzej Hajda >> >> Multiple tests will require enabled ccs mode. Add special helper to >> avoid code duplication. >> >> Signed-off-by: Andrzej Hajda >> --- >> ? lib/xe/xe_util.c | 31 +++++++++++++++++++++++++++++++ >> ? lib/xe/xe_util.h |? 1 + >> ? 2 files changed, 32 insertions(+) >> >> diff --git a/lib/xe/xe_util.c b/lib/xe/xe_util.c >> index 9482819c2..f7ae19f08 100644 >> --- a/lib/xe/xe_util.c >> +++ b/lib/xe/xe_util.c >> @@ -302,3 +302,34 @@ int xe_gt_count_engines_by_class(int fd, int gt, >> int class) >> ????? return n; >> ? } >> + >> +/** >> + * xe_sysfs_enable_ccs_mode: >> + * @fd: pointer to xe drm fd, can reopened multiple times >> + * >> + * Enables ccs_mode on all GTs, it must succeed for at least one GT. >> + * Since function requires the driver to be closed during ccs_mode >> change >> + * @fd will be closed then re-opened. >> + */ >> +void xe_sysfs_enable_ccs_mode(int *fd) >> +{ >> +??? int gt, gt_fd, num_slices, ccs_mode, num_gt, enabled_count = 0; >> + >> +??? num_gt = xe_number_gt(*fd); >> + >> +??? for (gt = 0; gt < num_gt; gt++) { >> +??????? gt_fd = xe_sysfs_gt_open(*fd, gt); >> +??????? drm_close_driver(*fd); > > Why not outside the loop? Nevermind > > Thanks, > Christoph > >> + >> +??????? if (!igt_debug_on(igt_sysfs_scanf(gt_fd, "num_cslices", "%u", >> &num_slices) <= 0) && >> +??????????? !igt_debug_on(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", >> num_slices) <= 0) && >> +??????????? !igt_debug_on(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", >> &ccs_mode) <= 0) && >> +??????????? !igt_debug_on(num_slices != ccs_mode)) >> +??????????? enabled_count++; >> +??????? close(gt_fd); >> +??????? *fd = drm_open_driver(DRIVER_XE); >> +??? } >> + >> +??? if (!enabled_count) >> +??????? igt_require_f(0, "Cannot enable ccs mode for any GT\n"); Unless I am missing something (again): igt_require_f(enabled_count, "Cannot enable ccs mode for any GT\n")? Reviewed-by: Chritoph Manszewski >> +} >> diff --git a/lib/xe/xe_util.h b/lib/xe/xe_util.h >> index b9fbfc5cd..a82c44a2a 100644 >> --- a/lib/xe/xe_util.h >> +++ b/lib/xe/xe_util.h >> @@ -53,5 +53,6 @@ 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); >> +void xe_sysfs_enable_ccs_mode(int *fd); >> ? #endif /* XE_UTIL_H */ From francois.dugast at intel.com Fri Jan 17 13:19:01 2025 From: francois.dugast at intel.com (Francois Dugast) Date: Fri, 17 Jan 2025 14:19:01 +0100 Subject: [PATCH 2/2] tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv In-Reply-To: <20241230084451.17488-3-satyanarayana.k.v.p@intel.com> References: <20241230084451.17488-1-satyanarayana.k.v.p@intel.com> <20241230084451.17488-3-satyanarayana.k.v.p@intel.com> Message-ID: Hi, On Mon, Dec 30, 2024 at 02:14:51PM +0530, Satyanarayana K V P wrote: > Use the kernel fault injection infrastructure to test error handling > of xe at enabling of VFs stage when executing xe_guc_ct_send_recv() > so that more code paths are tested, such as error handling and unwinding. > > Error can be injected using: > ./xe_fault_injection --run-subtest guc-fail-xe_guc_ct_send_recv > > Cc: Matthew Brost > Cc: Micha? Wajdeczko > Cc: Francois Dugast > Signed-off-by: Satyanarayana K V P > --- > tests/intel/xe_fault_injection.c | 59 ++++++++++++++++++++++++++++++++ > 1 file changed, 59 insertions(+) > > diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c > index ef3bbb7ec..fce8d2846 100644 > --- a/tests/intel/xe_fault_injection.c > +++ b/tests/intel/xe_fault_injection.c > @@ -19,12 +19,14 @@ > #include "igt_sysfs.h" > #include "lib/igt_syncobj.h" > #include "lib/intel_pat.h" > +#include "lib/igt_sriov_device.h" > #include "xe/xe_ioctl.h" > #include "xe/xe_query.h" > > #define INJECT_ERRNO -ENOMEM > #define BO_ADDR 0x1a0000 > #define BO_SIZE (1024*1024) > +#define NUM_VFS 1 > > enum injection_list_action { > INJECTION_LIST_ADD, > @@ -281,6 +283,55 @@ vm_bind_fail(int fd, const char function_name[]) > igt_assert_eq(simple_vm_bind(fd, vm), 0); > } > > +static int sriov_enable_vfs(int fd, int num_vfs) > +{ > + int sysfs; > + bool ret; > + > + sysfs = igt_sysfs_open(fd); > + igt_assert_fd(sysfs); > + > + ret = __igt_sysfs_set_u32(sysfs, "device/sriov_numvfs", num_vfs); > + close(sysfs); > + > + return ret; > +} > + > +/** > + * SUBTEST: guc-fail-%s > + * Description: inject an error in function %arg[1] used when xe interacts with guc to make it fail > + * Functionality: fault > + * > + * arg[1]: > + * @xe_guc_ct_send_recv: xe_guc_ct_send_recv > + */ > + > +static void > +guc_fail(int fd, int num_vfs, const char function_name[]) > +{ > + bool autoprobe_en = 0; > + > + ignore_faults_in_dmesg(function_name); > + injection_list_do(INJECTION_LIST_ADD, function_name); > + set_retval(function_name, INJECT_ERRNO); > + > + autoprobe_en = igt_sriov_is_driver_autoprobe_enabled(fd); > + > + if (autoprobe_en) > + igt_sriov_disable_driver_autoprobe(fd); > + > + /* igt_sriov_enable_vfs can't be used here as it is causing abort on any error. > + * Since error in this test is expected, we have written our own static function here. > + */ > + sriov_enable_vfs(fd, num_vfs); > + > + igt_assert_eq(-errno, INJECT_ERRNO); > + injection_list_do(INJECTION_LIST_REMOVE, function_name); > + > + if (autoprobe_en) > + igt_sriov_enable_driver_autoprobe(fd); > +} > + > igt_main > { > int fd; > @@ -319,6 +370,10 @@ igt_main > { "xe_vma_ops_alloc" }, > { } > }; > + const struct section guc_fail_functions[] = { > + { "xe_guc_ct_send_recv" }, > + { } > + }; > > igt_fixture { > igt_require(fail_function_injection_enabled()); On my setup other SRIOV tests are just skipped but guc-fail-xe_guc_ct_send_recv crashes instead of skipping. Maybe we are missing some igt_require for SRIOV? > @@ -335,6 +390,10 @@ igt_main > igt_subtest_f("vm-bind-fail-%s", s->name) > vm_bind_fail(fd, s->name); > > + for (const struct section *s = guc_fail_functions; s->name; s++) > + igt_subtest_f("guc-fail-%s", s->name) > + guc_fail(fd, NUM_VFS, s->name); To be consistent with other tests and also the commit message, I would emphasize what is being tested from the user's perspective, which is enabling VFs, so rename: guc_fail_functions -> enable_vfs_fail_functions guc-fail-%s -> enable-vfs-fail-%s guc_fail -> enable_vfs_fail This way if we have more fault injection points to exercise while enabling VFs, they can be added to enable_vfs_fail_functions, whether related to GuC or not. Francois > + > igt_fixture { > xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_UNBIND); > } > -- > 2.35.3 > From kamil.konieczny at linux.intel.com Fri Jan 17 13:35:46 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Fri, 17 Jan 2025 14:35:46 +0100 Subject: =?utf-8?B?4pyXIGk5MTUuQ0kuRnVsbA==?= =?utf-8?Q?=3A?= failure for Initial PTL support (rev6) In-Reply-To: <173711511404.701978.14192991678396183767@b555e5b46a47> References: <20241218213654.2734573-1-clinton.a.taylor@intel.com> <173711511404.701978.14192991678396183767@b555e5b46a47> Message-ID: <20250117133546.5fmux5gfxxr76vyp@kamilkon-desk.igk.intel.com> Hi igt-dev, On 2025-01-17 at 11:58:34 -0000, Patchwork wrote: below regressions are unrelated, Regards, Kamil > == Series Details == > > Series: Initial PTL support (rev6) > URL : https://patchwork.freedesktop.org/series/141325/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_8183_full -> IGTPW_12418_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12418_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12418_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_12418/index.html > > Participating hosts (12 -> 12) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12418_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt at gem_exec_schedule@wide at vcs1: > - shard-tglu: NOTRUN -> [INCOMPLETE][1] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-6/igt at gem_exec_schedule@wide at vcs1.html > > * igt at i915_module_load@load: > - shard-dg2: ([PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18]) -> ([PASS][19], [FAIL][20], [FAIL][21], [FAIL][22], [FAIL][23], [FAIL][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [DMESG-WARN][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36]) ([i915#13368]) > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-11/igt at i915_module_load@load.html > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-11/igt at i915_module_load@load.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-4/igt at i915_module_load@load.html > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-8/igt at i915_module_load@load.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-4/igt at i915_module_load@load.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-3/igt at i915_module_load@load.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-7/igt at i915_module_load@load.html > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-4/igt at i915_module_load@load.html > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-8/igt at i915_module_load@load.html > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-1/igt at i915_module_load@load.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-5/igt at i915_module_load@load.html > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-1/igt at i915_module_load@load.html > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-7/igt at i915_module_load@load.html > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-5/igt at i915_module_load@load.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-3/igt at i915_module_load@load.html > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-10/igt at i915_module_load@load.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-dg2-10/igt at i915_module_load@load.html > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-2/igt at i915_module_load@load.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-11/igt at i915_module_load@load.html > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-11/igt at i915_module_load@load.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-11/igt at i915_module_load@load.html > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-11/igt at i915_module_load@load.html > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-11/igt at i915_module_load@load.html > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-10/igt at i915_module_load@load.html > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-4/igt at i915_module_load@load.html > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-7/igt at i915_module_load@load.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-7/igt at i915_module_load@load.html > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-4/igt at i915_module_load@load.html > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-10/igt at i915_module_load@load.html > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-2/igt at i915_module_load@load.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-3/igt at i915_module_load@load.html > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-5/igt at i915_module_load@load.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-5/igt at i915_module_load@load.html > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-8/igt at i915_module_load@load.html > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-3/igt at i915_module_load@load.html > > * igt at perf_pmu@module-unload: > - shard-rkl: [PASS][37] -> [INCOMPLETE][38] > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-1/igt at perf_pmu@module-unload.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-6/igt at perf_pmu@module-unload.html > > > #### Warnings #### > > * igt at gem_tiled_swapping@non-threaded: > - shard-rkl: [FAIL][39] ([i915#12941]) -> [FAIL][40] > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-rkl-7/igt at gem_tiled_swapping@non-threaded.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-rkl-7/igt at gem_tiled_swapping@non-threaded.html > - shard-tglu: [FAIL][41] ([i915#12941]) -> [FAIL][42] > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-tglu-9/igt at gem_tiled_swapping@non-threaded.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-10/igt at gem_tiled_swapping@non-threaded.html > > * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-edp1: > - shard-mtlp: [FAIL][43] ([i915#11989]) -> [FAIL][44] > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8183/shard-mtlp-3/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-edp1.html > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-2/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-edp1.html > > > New tests > --------- > > New tests have been introduced between IGT_8183_full and IGTPW_12418_full: > > ### New IGT tests (77) ### > > * igt at gem_ctx_engines@independent at bcs0: > - Statuses : 6 pass(s) > - Exec time: [0.05, 0.21] s > > * igt at gem_ctx_engines@independent at rcs0: > - Statuses : 6 pass(s) > - Exec time: [0.05, 0.19] s > > * igt at gem_ctx_engines@independent at vcs0: > - Statuses : 6 pass(s) > - Exec time: [0.05, 0.17] s > > * igt at gem_ctx_engines@independent at vcs1: > - Statuses : 4 pass(s) > - Exec time: [0.06, 0.16] s > > * igt at gem_ctx_engines@independent at vecs0: > - Statuses : 6 pass(s) > - Exec time: [0.05, 0.17] s > > * igt at gem_exec_async@forked-writes: > - Statuses : 6 pass(s) > - Exec time: [0.07, 0.33] s > > * igt at gem_exec_async@forked-writes at bcs0: > - Statuses : 6 pass(s) > - Exec time: [0.02, 0.07] s > > * igt at gem_exec_async@forked-writes at rcs0: > - Statuses : 6 pass(s) > - Exec time: [0.02, 0.07] s > > * igt at gem_exec_async@forked-writes at vcs0: > - Statuses : 6 pass(s) > - Exec time: [0.02, 0.07] s > > * igt at gem_exec_async@forked-writes at vcs1: > - Statuses : 3 pass(s) > - Exec time: [0.03, 0.04] s > > * igt at gem_exec_async@forked-writes at vecs0: > - Statuses : 5 pass(s) > - Exec time: [0.02, 0.08] s > > * igt at gem_exec_balancer@fairslice: > - Statuses : 4 pass(s) 1 skip(s) > - Exec time: [0.0, 5.23] s > > * igt at gem_exec_balancer@nohangcheck: > - Statuses : 6 pass(s) 1 skip(s) > - Exec time: [0.0, 3.91] s > > * igt at gem_exec_balancer@noheartbeat: > - Statuses : 2 pass(s) 2 skip(s) > - Exec time: [0.0, 1.08] s > > * igt at gem_exec_balancer@persistence: > - Statuses : 6 pass(s) 1 skip(s) > - Exec time: [0.0, 3.70] s > > * igt at gem_exec_balancer@sequential: > - Statuses : 4 pass(s) 1 skip(s) > - Exec time: [0.0, 3.82] s > > * igt at gem_exec_create@legacy: > - Statuses : 6 pass(s) > - Exec time: [2.06, 4.20] s > > * igt at gem_exec_schedule@fairslice: > - Statuses : 4 pass(s) 1 skip(s) > - Exec time: [0.0, 14.14] s > > * igt at gem_exec_schedule@fairslice-all: > - Statuses : 3 pass(s) > - Exec time: [2.04, 2.11] s > > * igt at gem_exec_schedule@fairslice at bcs0: > - Statuses : 4 pass(s) > - Exec time: [2.01, 2.02] s > > * igt at gem_exec_schedule@fairslice at rcs0: > - Statuses : 4 pass(s) > - Exec time: [2.01, 2.04] s > > * igt at gem_exec_schedule@fairslice at vcs0: > - Statuses : 4 pass(s) > - Exec time: [2.01, 2.02] s > > * igt at gem_exec_schedule@fairslice at vcs1: > - Statuses : 4 pass(s) > - Exec time: [2.01, 2.02] s > > * igt at gem_exec_schedule@fairslice at vecs0: > - Statuses : 4 pass(s) > - Exec time: [2.01, 2.02] s > > * igt at gem_exec_schedule@preempt-user: > - Statuses : 5 pass(s) 1 skip(s) > - Exec time: [0.0, 0.24] s > > * igt at gem_exec_schedule@preempt-user at bcs0: > - Statuses : 5 pass(s) > - Exec time: [0.01, 0.04] s > > * igt at gem_exec_schedule@preempt-user at rcs0: > - Statuses : 5 pass(s) > - Exec time: [0.02, 0.06] s > > * igt at gem_exec_schedule@preempt-user at vcs0: > - Statuses : 5 pass(s) > - Exec time: [0.01, 0.04] s > > * igt at gem_exec_schedule@preempt-user at vcs1: > - Statuses : 4 pass(s) > - Exec time: [0.02, 0.04] s > > * igt at gem_exec_schedule@preempt-user at vecs0: > - Statuses : 5 pass(s) > - Exec time: [0.02, 0.04] s > > * igt at gem_exec_schedule@u-fairslice: > - Statuses : 4 pass(s) 1 skip(s) > - Exec time: [0.0, 12.10] s > > * igt at gem_exec_schedule@u-fairslice-all: > - Statuses : 3 pass(s) 1 skip(s) > - Exec time: [0.0, 2.09] s > > * igt at gem_exec_schedule@u-fairslice at bcs0: > - Statuses : 4 pass(s) > - Exec time: [1.96, 2.03] s > > * igt at gem_exec_schedule@u-fairslice at rcs0: > - Statuses : 4 pass(s) > - Exec time: [2.01, 2.04] s > > * igt at gem_exec_schedule@u-fairslice at vcs0: > - Statuses : 4 pass(s) > - Exec time: [1.97, 2.02] s > > * igt at gem_exec_schedule@u-fairslice at vcs1: > - Statuses : 3 pass(s) > - Exec time: [1.99, 2.02] s > > * igt at gem_exec_schedule@u-fairslice at vecs0: > - Statuses : 4 pass(s) > - Exec time: [1.99, 2.02] s > > * igt at gem_exec_schedule@u-independent: > - Statuses : 6 pass(s) > - Exec time: [0.11, 9.75] s > > * igt at gem_exec_schedule@u-independent at rcs0: > - Statuses : 6 pass(s) > - Exec time: [0.07, 1.69] s > > * igt at gem_exec_schedule@u-independent at vcs0: > - Statuses : 5 pass(s) > - Exec time: [0.12, 2.08] s > > * igt at gem_exec_schedule@u-independent at vcs1: > - Statuses : 3 pass(s) > - Exec time: [0.10, 1.98] s > > * igt at gem_exec_schedule@u-independent at vecs0: > - Statuses : 5 pass(s) > - Exec time: [0.11, 2.06] s > > * igt at gem_exec_schedule@u-lateslice: > - Statuses : 3 pass(s) > - Exec time: [0.05, 0.10] s > > * igt at gem_exec_schedule@u-lateslice at bcs0: > - Statuses : 3 pass(s) > - Exec time: [0.01] s > > * igt at gem_exec_schedule@u-lateslice at rcs0: > - Statuses : 3 pass(s) > - Exec time: [0.01, 0.02] s > > * igt at gem_exec_schedule@u-lateslice at vcs0: > - Statuses : 3 pass(s) > - Exec time: [0.01, 0.02] s > > * igt at gem_exec_schedule@u-lateslice at vcs1: > - Statuses : 2 pass(s) > - Exec time: [0.01, 0.02] s > > * igt at gem_exec_schedule@u-lateslice at vecs0: > - Statuses : 3 pass(s) > - Exec time: [0.01, 0.02] s > > * igt at gem_exec_schedule@u-semaphore-codependency: > - Statuses : 4 pass(s) > - Exec time: [0.01, 0.04] s > > * igt at gem_exec_schedule@u-semaphore-noskip: > - Statuses : 6 pass(s) 1 skip(s) > - Exec time: [0.0, 0.81] s > > * igt at gem_exec_schedule@u-semaphore-resolve: > - Statuses : 6 pass(s) 1 skip(s) > - Exec time: [0.0, 0.07] s > > * igt at gem_exec_schedule@u-semaphore-user: > - Statuses : 5 pass(s) > - Exec time: [0.01, 0.08] s > > * igt at gem_exec_schedule@u-submit-early-slice: > - Statuses : 4 pass(s) 1 skip(s) > - Exec time: [0.0, 0.21] s > > * igt at gem_exec_schedule@u-submit-early-slice at bcs0: > - Statuses : 4 pass(s) > - Exec time: [0.02, 0.04] s > > * igt at gem_exec_schedule@u-submit-early-slice at rcs0: > - Statuses : 4 pass(s) > - Exec time: [0.02, 0.05] s > > * igt at gem_exec_schedule@u-submit-early-slice at vcs0: > - Statuses : 4 pass(s) > - Exec time: [0.02, 0.04] s > > * igt at gem_exec_schedule@u-submit-early-slice at vcs1: > - Statuses : 3 pass(s) > - Exec time: [0.03, 0.04] s > > * igt at gem_exec_schedule@u-submit-early-slice at vecs0: > - Statuses : 4 pass(s) > - Exec time: [0.02, 0.04] s > > * igt at gem_exec_schedule@u-submit-golden-slice: > - Statuses : 5 pass(s) > - Exec time: [0.07, 0.20] s > > * igt at gem_exec_schedule@u-submit-golden-slice at bcs0: > - Statuses : 5 pass(s) > - Exec time: [0.02, 0.05] s > > * igt at gem_exec_schedule@u-submit-golden-slice at rcs0: > - Statuses : 5 pass(s) > - Exec time: [0.02, 0.05] s > > * igt at gem_exec_schedule@u-submit-golden-slice at vcs0: > - Statuses : 5 pass(s) > - Exec time: [0.01, 0.04] s > > * igt at gem_exec_schedule@u-submit-golden-slice at vcs1: > - Statuses : 3 pass(s) > - Exec time: [0.03] s > > * igt at gem_exec_schedule@u-submit-golden-slice at vecs0: > - Statuses : 5 pass(s) > - Exec time: [0.02, 0.05] s > > * igt at gem_exec_schedule@u-submit-late-slice: > - Statuses : 1 pass(s) > - Exec time: [0.21] s > > * igt at gem_exec_schedule@u-submit-late-slice at bcs0: > - Statuses : 1 pass(s) > - Exec time: [0.04] s > > * igt at gem_exec_schedule@u-submit-late-slice at rcs0: > - Statuses : 1 pass(s) > - Exec time: [0.05] s > > * igt at gem_exec_schedule@u-submit-late-slice at vcs0: > - Statuses : 1 pass(s) > - Exec time: [0.05] s > > * igt at gem_exec_schedule@u-submit-late-slice at vecs0: > - Statuses : 1 pass(s) > - Exec time: [0.05] s > > * igt at gem_softpin@32b-excludes-last-page: > - Statuses : 6 pass(s) 1 skip(s) > - Exec time: [0.0, 0.01] s > > * igt at gem_softpin@full: > - Statuses : 4 pass(s) > - Exec time: [0.01] s > > * igt at gem_softpin@zero: > - Statuses : 3 pass(s) 1 skip(s) > - Exec time: [0.0, 0.00] s > > * igt at gen9_exec_parse@shadow-peek: > - Statuses : 6 skip(s) > - Exec time: [0.0] s > > * igt at perf@non-zero-reason: > - Statuses : 1 fail(s) 4 pass(s) > - Exec time: [2.75, 11.06] s > > * igt at perf_pmu@gt-awake: > - Statuses : 7 pass(s) > - Exec time: [2.01, 9.13] s > > * igt at perf_pmu@invalid-open: > - Statuses : 4 pass(s) > - Exec time: [0.0] s > > * igt at perf_pmu@rc6-suspend: > - Statuses : 7 pass(s) > - Exec time: [6.91, 23.34] s > > > > Known issues > ------------ > > Here are the changes found in IGTPW_12418_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt at api_intel_bb@object-reloc-purge-cache: > - shard-dg2: NOTRUN -> [SKIP][45] ([i915#8411]) +1 other test skip > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-dg2-2/igt at api_intel_bb@object-reloc-purge-cache.html > > * igt at device_reset@cold-reset-bound: > - shard-tglu-1: NOTRUN -> [SKIP][46] ([i915#11078]) > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-tglu-1/igt at device_reset@cold-reset-bound.html > > * igt at drm_fdinfo@busy-check-all at ccs0: > - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#8414]) +6 other tests skip > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/shard-mtlp-2/igt at drm_fdinfo@busy-check-all at ccs0.html ...cut... > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12418/index.html From kamil.konieczny at linux.intel.com Fri Jan 17 14:05:41 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Fri, 17 Jan 2025 15:05:41 +0100 Subject: [PATCH i-g-t v5 0/7] Initial PTL support In-Reply-To: <20241218213654.2734573-1-clinton.a.taylor@intel.com> References: <20241218213654.2734573-1-clinton.a.taylor@intel.com> Message-ID: <20250117140541.ugu4xgqnbdbgftkn@kamilkon-desk.igk.intel.com> Hi Clint, On 2024-12-18 at 13:36:47 -0800, Clint Taylor wrote: > Initial set of patches to enable testing Pantherlake. Applied, thanks! Regards, Kamil > > Juha-pekka Heikkila (4): > tests/kms_addfb_basic: fix x-tiled tests for case when there is no > x-tile > tests/intel/kms_draw_crc: fix x-tiled tests for case when there is no > x-tile > tests/kms_cursor_legacy: flip_vs_cursor_busy_crc was requiring any > driver but used intel x-tile > tests/intel/kms_frontbuffer_tracking: fix x-tiled tests for case when > there is no x-tile > > Matt Atwood (1): > lib/intel_chipset: add pantherlake definition and support > > Matthew Auld (2): > lib/intel_pat: extend for xe3 > tests/intel/xe_pat: extend for xe3 > > lib/intel_chipset.h | 2 ++ > lib/intel_device_info.c | 13 +++++++++++++ > lib/intel_pat.c | 3 ++- > tests/intel/kms_draw_crc.c | 6 ++++-- > tests/intel/kms_frontbuffer_tracking.c | 20 ++++++++++++++++---- > tests/intel/xe_pat.c | 4 ++-- > tests/kms_addfb_basic.c | 22 ++++++++++++---------- > tests/kms_cursor_legacy.c | 2 +- > 8 files changed, 52 insertions(+), 20 deletions(-) > > -- > 2.25.1 > From patchwork at emeril.freedesktop.org Fri Jan 17 14:11:34 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 14:11:34 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/perf=5Fpmu=3A_Fix_bu?= =?utf-8?q?sy-double-start_for_GuC_backend?= In-Reply-To: <20250116225200.158728-1-umesh.nerlige.ramappa@intel.com> References: <20250116225200.158728-1-umesh.nerlige.ramappa@intel.com> Message-ID: <173712309415.745013.1588256087966496565@b555e5b46a47> == Series Details == Series: tests/perf_pmu: Fix busy-double-start for GuC backend URL : https://patchwork.freedesktop.org/series/143637/ State : failure == Summary == CI Bug Log - changes from XEIGT_8195_full -> XEIGTPW_12452_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12452_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12452_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_12452_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-dg2-set2: [PASS][1] -> [FAIL][2] +2 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-suspend at c-edp1: - shard-lnl: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-6/igt at kms_flip@flip-vs-suspend at c-edp1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-7/igt at kms_flip@flip-vs-suspend at c-edp1.html * igt at kms_flip@flip-vs-suspend at d-dp4: - shard-dg2-set2: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@flip-vs-suspend at d-dp4.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at kms_flip@flip-vs-suspend at d-dp4.html * igt at kms_plane_lowres@tiling-none at pipe-a-dp-4: - shard-dg2-set2: [PASS][7] -> [DMESG-WARN][8] +1 other test dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_plane_lowres@tiling-none at pipe-a-dp-4.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at kms_plane_lowres@tiling-none at pipe-a-dp-4.html New tests --------- New tests have been introduced between XEIGT_8195_full and XEIGTPW_12452_full: ### New IGT tests (25) ### * igt at kms_atomic@crtc-invalid-params-fence at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.56] s * igt at kms_cursor_crc@cursor-alpha-transparent at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.70] s * igt at kms_cursor_crc@cursor-alpha-transparent at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.40] s * igt at kms_cursor_crc@cursor-onscreen-128x42 at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.47] s * igt at kms_cursor_crc@cursor-onscreen-128x42 at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.23] s * igt at kms_cursor_crc@cursor-sliding-128x128 at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [3.88] s * igt at kms_cursor_crc@cursor-sliding-128x128 at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [3.70] s * igt at kms_flip@2x-flip-vs-rmfb at ab-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.39] s * igt at kms_flip@2x-flip-vs-rmfb at ac-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.34] s * igt at kms_flip@2x-flip-vs-rmfb at ad-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.36] s * igt at kms_flip@2x-flip-vs-rmfb at bc-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.34] s * igt at kms_flip@2x-flip-vs-rmfb at bd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.32] s * igt at kms_flip@2x-flip-vs-rmfb at cd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.39] s * igt at kms_flip@bo-too-big-interruptible at a-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.30] s * igt at kms_flip@bo-too-big-interruptible at b-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.15] s * igt at kms_flip@bo-too-big-interruptible at c-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.18] s * igt at kms_flip@bo-too-big-interruptible at d-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.18] s * igt at kms_flip@busy-flip at a-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.82] s * igt at kms_flip@busy-flip at b-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.74] s * igt at kms_flip@busy-flip at c-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.70] s * igt at kms_flip@busy-flip at d-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.73] s * igt at kms_flip@nonexisting-fb at a-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.31] s * igt at kms_flip@nonexisting-fb at b-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.21] s * igt at kms_flip@nonexisting-fb at c-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.20] s * igt at kms_flip@nonexisting-fb at d-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.21] s Known issues ------------ Here are the changes found in XEIGTPW_12452_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getversion@basic: - shard-bmg: [PASS][9] -> [FAIL][10] ([Intel XE#3440]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at core_getversion@basic.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at core_getversion@basic.html * igt at core_hotunplug@hotreplug: - shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#1885]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at core_hotunplug@hotreplug.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at core_hotunplug@hotreplug.html * igt at core_setmaster@master-drop-set-root: - shard-bmg: [PASS][13] -> [FAIL][14] ([Intel XE#3249]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at core_setmaster@master-drop-set-root.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@read: - shard-bmg: [PASS][15] -> [SKIP][16] ([Intel XE#2134]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at fbdev@read.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at fbdev@read.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#873]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#664]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-3/igt at kms_async_flips@test-cursor.html * igt at kms_atomic_transition@modeset-transition: - shard-bmg: [PASS][19] -> [DMESG-WARN][20] ([Intel XE#877]) +1 other test dmesg-warn [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_atomic_transition@modeset-transition.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_atomic_transition@modeset-transition.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1407]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-7/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#316]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@linear-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2327]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_big_fb@linear-8bpp-rotate-90.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-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_8195/shard-bmg-6/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg2-set2: [PASS][26] -> [SKIP][27] ([Intel XE#2136]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-464/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +5 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-2/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +8 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#619]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-433/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][32] -> [SKIP][33] ([Intel XE#2314] / [Intel XE#2894]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2191]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt at kms_bw@linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#367]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at kms_bw@linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-3-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#367]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-3/igt at kms_bw@linear-tiling-3-displays-2560x1440p.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-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][38] ([Intel XE#787]) +146 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-433/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 at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2669]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-5/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][40] -> [SKIP][41] ([Intel XE#2136]) +25 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#3442]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][43] ([Intel XE#3862]) +1 other test incomplete [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#3432]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-1/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#2887]) +6 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-2/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs at pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs at pipe-c-dp-2.html * igt at kms_ccs@random-ccs-data-y-tiled-ccs at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#455] / [Intel XE#787]) +32 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at kms_ccs@random-ccs-data-y-tiled-ccs at pipe-d-dp-2.html * igt at kms_cdclk@mode-transition at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#314]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at kms_cdclk@mode-transition at pipe-d-dp-4.html * igt at kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1152]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-3/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_color@degamma: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#306]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#373]) +11 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#373]) +6 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-5/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2252]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#307]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at kms_content_protection@dp-mst-lic-type-1.html - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#307]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-8/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@legacy at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][56] ([Intel XE#1178]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_content_protection@legacy at pipe-a-dp-2.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][57] ([Intel XE#1178]) +2 other tests fail [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2320]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#308]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1424]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-1/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-suspend: - shard-dg2-set2: [PASS][61] -> [ABORT][62] ([Intel XE#2625] / [Intel XE#4083]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-435/igt at kms_cursor_crc@cursor-suspend.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-d-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [ABORT][63] ([Intel XE#2625] / [Intel XE#4083]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at kms_cursor_crc@cursor-suspend at pipe-d-hdmi-a-2.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2291]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2291]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#309]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-1/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#323]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][69] -> [SKIP][70] ([Intel XE#2425]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_display_modes@extended-mode-basic.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1138]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1137]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at kms_feature_discovery@dp-mst.html - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1137]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-1/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-busy-flip: - shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#2316]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_flip@2x-busy-flip.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_flip@2x-busy-flip.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1421]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-5/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][77] ([Intel XE#2882]) +2 other tests fail [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-2/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a6-dp4: - shard-dg2-set2: [PASS][78] -> [FAIL][79] ([Intel XE#301]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a6-dp4.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a6-dp4.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][80] -> [FAIL][81] ([Intel XE#886]) +1 other test fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-435/igt at kms_flip@2x-wf_vblank-ts-check-interruptible at ab-hdmi-a6-dp4.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at kms_flip@2x-wf_vblank-ts-check-interruptible at ab-hdmi-a6-dp4.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [PASS][82] -> [INCOMPLETE][83] ([Intel XE#2597]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@flip-vs-suspend.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@nonblocking-read: - shard-dg2-set2: [PASS][84] -> [SKIP][85] ([Intel XE#2423] / [i915#2575]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at kms_flip@nonblocking-read.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at kms_flip@nonblocking-read.html - shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#3007]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_flip@nonblocking-read.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_flip@nonblocking-read.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1401]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2136] / [Intel XE#2351]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2293]) +6 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2311]) +6 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#651]) +29 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#656]) +22 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2312]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#651]) +7 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-3/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#653]) +29 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2313]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2136]) +21 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_getfb@getfb2-accept-ccs: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2340]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-6/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@bpc-switch-dpms: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2423]) +14 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#455]) +17 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-433/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-swap: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1503]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-7/igt at kms_hdr@static-swap.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#346]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-2/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2925]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#2934]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-1/igt at kms_joiner@invalid-modeset-force-ultra-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_12452/shard-dg2-463/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#3307]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-2/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2763]) +8 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-433/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-bmg: [PASS][110] -> [SKIP][111] ([Intel XE#2423]) +117 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format 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_12452/shard-lnl-1/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format at pipe-a: - shard-bmg: NOTRUN -> [DMESG-WARN][113] ([Intel XE#877]) +1 other test dmesg-warn [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2763]) +15 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2763] / [Intel XE#455]) +4 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2938]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#870]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1129]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@legacy-planes-dpms: - shard-bmg: [PASS][119] -> [SKIP][120] ([Intel XE#2446]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_pm_rpm@legacy-planes-dpms.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_pm_rpm@legacy-planes-dpms.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2446]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#1489]) +12 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#2893]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-7/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#1489]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-5/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr@pr-basic: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1406]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-5/igt at kms_psr@pr-basic.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2850] / [Intel XE#929]) +17 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at kms_psr@psr-dpms.html * igt at kms_psr@psr2-suspend: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_psr@psr2-suspend.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#3414]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1127]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2413]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1435]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-8/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#330]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at kms_tv_load_detect@load-detect.html - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#330]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-4/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][134] -> [FAIL][135] ([Intel XE#2159]) +1 other test fail [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-5/igt at kms_vrr@cmrr at pipe-a-edp-1.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-1/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#1499]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_vrr@flip-basic.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#2168]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#756]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at xe_compute_preempt@compute-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#1280] / [Intel XE#455]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-433/igt at xe_compute_preempt@compute-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#3889]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-5/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug_online@resume-dss: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2905]) +7 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at xe_eudebug_online@resume-dss.html * igt at xe_eudebug_online@stopped-thread: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#2905]) +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-6/igt at xe_eudebug_online@stopped-thread.html * igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2905]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html * igt at xe_evict@evict-beng-small: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#688]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-8/igt at xe_evict@evict-beng-small.html * igt at xe_exec_basic@many-rebind: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#1130]) +21 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at xe_exec_basic@many-rebind.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#1392]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#1392]) +5 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-3/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [PASS][148] -> [SKIP][149] ([Intel XE#1392]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-433/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#288]) +25 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#255]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at xe_huc_copy@huc_copy.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [PASS][152] -> [SKIP][153] ([Intel XE#1192]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at xe_live_ktest@xe_bo.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_eudebug: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1192] / [Intel XE#3026]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-7/igt at xe_live_ktest@xe_eudebug.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2229]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#2229]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-433/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.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_12452/shard-lnl-4/igt at xe_module_load@force-load.html * igt at xe_module_load@reload-no-display: - shard-bmg: [PASS][158] -> [FAIL][159] ([Intel XE#3546]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at xe_module_load@reload-no-display.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at xe_module_load@reload-no-display.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#2248]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-2/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#2541] / [Intel XE#3573]) +8 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#977]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at xe_pat@pat-index-xe2.html * igt at xe_pm@d3cold-mmap-system: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s2idle-vm-bind-prefetch: - shard-dg2-set2: NOTRUN -> [ABORT][164] ([Intel XE#1358]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-prefetch.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: NOTRUN -> [ABORT][165] ([Intel XE#1358] / [Intel XE#1794]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-6/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_pm@s4-multiple-execs: - shard-lnl: [PASS][167] -> [ABORT][168] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-4/igt at xe_pm@s4-multiple-execs.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-2/igt at xe_pm@s4-multiple-execs.html * igt at xe_query@multigpu-query-mem-usage: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#944]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-3/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#944]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#3342]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at xe_sriov_flr@flr-each-isolation.html - shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#3342]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-1/igt at xe_sriov_flr@flr-each-isolation.html * igt at xe_vm@bind-once: - shard-bmg: [PASS][173] -> [SKIP][174] ([Intel XE#1130]) +265 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at xe_vm@bind-once.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at xe_vm@bind-once.html * igt at xe_vm@large-split-binds-2097152: - shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#1130]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at xe_vm@large-split-binds-2097152.html #### Possible fixes #### * igt at core_hotunplug@hotunbind-rebind: - shard-bmg: [SKIP][176] ([Intel XE#1885]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at core_hotunplug@hotunbind-rebind.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at core_hotunplug@hotunbind-rebind.html * igt at fbdev@info: - shard-bmg: [SKIP][178] ([Intel XE#2134]) -> [PASS][179] +2 other tests pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at fbdev@info.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at fbdev@info.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [SKIP][180] ([Intel XE#2136]) -> [PASS][181] +17 other tests pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_big_fb@linear-16bpp-rotate-180.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180: - shard-dg2-set2: [SKIP][182] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][184] ([Intel XE#2291]) -> [PASS][185] +1 other test pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3: - shard-bmg: [FAIL][186] ([Intel XE#3321]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible at ac-dp2-hdmi-a3: - shard-bmg: [INCOMPLETE][188] -> [PASS][189] +1 other test pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_flip@2x-flip-vs-rmfb-interruptible at ac-dp2-hdmi-a3.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-5/igt at kms_flip@2x-flip-vs-rmfb-interruptible at ac-dp2-hdmi-a3.html * igt at kms_flip@busy-flip: - shard-dg2-set2: [SKIP][190] ([Intel XE#2423] / [i915#2575]) -> [PASS][191] +13 other tests pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_flip@busy-flip.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at kms_flip@busy-flip.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: - shard-dg2-set2: [FAIL][192] ([Intel XE#301]) -> [PASS][193] +7 other tests pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-464/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: [FAIL][194] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][195] +1 other test pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html * igt at kms_flip@flip-vs-wf_vblank-interruptible: - shard-lnl: [FAIL][196] ([Intel XE#886]) -> [PASS][197] +7 other tests pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-2/igt at kms_flip@flip-vs-wf_vblank-interruptible.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-4/igt at kms_flip@flip-vs-wf_vblank-interruptible.html * igt at kms_flip@plain-flip-ts-check: - shard-lnl: [FAIL][198] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-1/igt at kms_flip@plain-flip-ts-check.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-6/igt at kms_flip@plain-flip-ts-check.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][200] ([Intel XE#2136]) -> [PASS][201] +6 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-suspend: - shard-lnl: [INCOMPLETE][202] ([Intel XE#2050]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcpsr-suspend.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcpsr-suspend.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-bmg: [SKIP][204] ([Intel XE#2446]) -> [PASS][205] +3 other tests pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-4/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@universal-planes-dpms: - shard-dg2-set2: [SKIP][206] ([Intel XE#2446]) -> [PASS][207] +1 other test pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_pm_rpm@universal-planes-dpms.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at kms_pm_rpm@universal-planes-dpms.html * igt at kms_properties@connector-properties-legacy: - shard-bmg: [SKIP][208] ([Intel XE#2423]) -> [PASS][209] +103 other tests pass [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_properties@connector-properties-legacy.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_properties@connector-properties-legacy.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][210] ([Intel XE#899]) -> [PASS][211] +1 other test pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at kms_vrr@flipline: - shard-lnl: [FAIL][212] ([Intel XE#1522]) -> [PASS][213] +1 other test pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-7/igt at kms_vrr@flipline.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-lnl-4/igt at kms_vrr@flipline.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: [ABORT][214] ([Intel XE#2625]) -> [PASS][215] +2 other tests pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html * igt at xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [SKIP][216] ([Intel XE#1130]) -> [PASS][217] +217 other tests pass [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_exec_basic@many-bindexecqueue-rebind.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at xe_exec_basic@many-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [SKIP][218] ([Intel XE#1392]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html * igt at xe_live_ktest@xe_migrate: - shard-bmg: [SKIP][220] ([Intel XE#1192]) -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at xe_live_ktest@xe_migrate.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at xe_live_ktest@xe_migrate.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-dg2-set2: [SKIP][222] ([Intel XE#4045]) -> [PASS][223] +1 other test pass [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at xe_mmap@pci-membarrier-bad-pagesize.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at xe_mmap@pci-membarrier-bad-pagesize.html - shard-bmg: [SKIP][224] ([Intel XE#4045]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at xe_mmap@pci-membarrier-bad-pagesize.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-2/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_module_load@load: - shard-dg2-set2: ([PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [SKIP][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251]) ([Intel XE#378]) -> ([PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][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], [PASS][272], [PASS][273], [PASS][274]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-435/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-435/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-435/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-433/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-433/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-433/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-464/igt at xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-464/igt at xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-464/igt at xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-435/igt at xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-464/igt at xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at xe_module_load@load.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at xe_module_load@load.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at xe_module_load@load.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at xe_module_load@load.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-433/igt at xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-433/igt at xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at xe_module_load@load.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-433/igt at xe_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at xe_module_load@load.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-dg2-set2: [ABORT][275] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at xe_pm@s4-vm-bind-unbind-all.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_vm@invalid-extensions: - shard-dg2-set2: [SKIP][277] ([Intel XE#1130]) -> [PASS][278] +26 other tests pass [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_vm@invalid-extensions.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at xe_vm@invalid-extensions.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][279] ([Intel XE#2233]) -> [SKIP][280] ([Intel XE#2423]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-bmg: [INCOMPLETE][281] ([Intel XE#3861]) -> [SKIP][282] ([Intel XE#2423]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_async_flips@async-flip-suspend-resume.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_async_flips@async-flip-suspend-resume.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-bmg: [SKIP][283] ([Intel XE#3768]) -> [SKIP][284] ([Intel XE#2423]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic_transition@modeset-transition-fencing: - shard-bmg: [SKIP][285] ([Intel XE#2423]) -> [SKIP][286] ([Intel XE#3007]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_atomic_transition@modeset-transition-fencing.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_atomic_transition@modeset-transition-fencing.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][287] ([Intel XE#2423]) -> [SKIP][288] ([Intel XE#2370]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][289] ([Intel XE#2327]) -> [SKIP][290] ([Intel XE#2136]) +5 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: [SKIP][291] ([Intel XE#2136]) -> [SKIP][292] ([Intel XE#316]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_big_fb@linear-16bpp-rotate-270.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-433/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: [SKIP][293] ([Intel XE#2136]) -> [SKIP][294] ([Intel XE#2327]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_big_fb@linear-32bpp-rotate-270.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-16bpp-rotate-90: - shard-dg2-set2: [SKIP][295] ([Intel XE#2136]) -> [SKIP][296] ([Intel XE#1124]) +2 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_big_fb@y-tiled-16bpp-rotate-90.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at kms_big_fb@y-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][297] ([Intel XE#2136]) -> [SKIP][298] ([Intel XE#607]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][299] ([Intel XE#2136]) -> [SKIP][300] ([Intel XE#610]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][301] ([Intel XE#1124]) -> [SKIP][302] ([Intel XE#2136]) +14 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][303] ([Intel XE#2136]) -> [SKIP][304] ([Intel XE#1124]) +9 other tests skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-2/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-bmg: [SKIP][305] ([Intel XE#2328]) -> [SKIP][306] ([Intel XE#2136]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: [SKIP][307] ([Intel XE#610]) -> [SKIP][308] ([Intel XE#2136]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-bmg: [SKIP][309] ([Intel XE#2423]) -> [SKIP][310] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-bmg: [SKIP][311] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][312] ([Intel XE#2423]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-2160x1440p: - shard-bmg: [SKIP][313] ([Intel XE#2423]) -> [SKIP][314] ([Intel XE#367]) +2 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-2160x1440p.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_bw@linear-tiling-1-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][315] ([Intel XE#367]) -> [SKIP][316] ([Intel XE#2423]) +3 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: [SKIP][317] ([Intel XE#2423] / [i915#2575]) -> [SKIP][318] ([Intel XE#367]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][319] ([Intel XE#2136]) -> [SKIP][320] ([Intel XE#2887]) +22 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-bmg: [SKIP][321] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][322] ([Intel XE#2136]) +2 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs: - shard-bmg: [SKIP][323] ([Intel XE#2887]) -> [SKIP][324] ([Intel XE#2136]) +18 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc: - shard-dg2-set2: [SKIP][325] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][326] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-bmg: [SKIP][327] ([Intel XE#3432]) -> [SKIP][328] ([Intel XE#2136]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][329] ([Intel XE#2136]) -> [SKIP][330] ([Intel XE#3432]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/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-lnl-ccs: - shard-bmg: [SKIP][331] ([Intel XE#2136]) -> [SKIP][332] ([Intel XE#2652] / [Intel XE#787]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][333] ([Intel XE#2724]) -> [SKIP][334] ([Intel XE#2136]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_cdclk@mode-transition-all-outputs.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][335] ([Intel XE#2325]) -> [SKIP][336] ([Intel XE#2423]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_chamelium_color@ctm-green-to-red.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-negative: - shard-bmg: [SKIP][337] ([Intel XE#2423]) -> [SKIP][338] ([Intel XE#2325]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_chamelium_color@ctm-negative.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_edid@dp-edid-resolution-list: - shard-bmg: [SKIP][339] ([Intel XE#2252]) -> [SKIP][340] ([Intel XE#2423]) +12 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_chamelium_edid@dp-edid-resolution-list.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_chamelium_edid@dp-edid-resolution-list.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-bmg: [SKIP][341] ([Intel XE#2423]) -> [SKIP][342] ([Intel XE#2252]) +8 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: [SKIP][343] ([Intel XE#2423] / [i915#2575]) -> [SKIP][344] ([Intel XE#373]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_content_protection@atomic: - shard-bmg: [SKIP][345] ([Intel XE#2423]) -> [SKIP][346] ([Intel XE#2341]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_content_protection@atomic.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_content_protection@atomic.html * igt at kms_content_protection@legacy: - shard-bmg: [SKIP][347] ([Intel XE#2423]) -> [FAIL][348] ([Intel XE#1178]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_content_protection@legacy.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-bmg: [FAIL][349] ([Intel XE#1178]) -> [SKIP][350] ([Intel XE#2423]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_content_protection@lic-type-0.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@srm: - shard-bmg: [SKIP][351] ([Intel XE#2341]) -> [SKIP][352] ([Intel XE#2423]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_content_protection@srm.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-bmg: [FAIL][353] ([Intel XE#1188]) -> [SKIP][354] ([Intel XE#2341]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_content_protection@uevent.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][355] ([Intel XE#2423]) -> [SKIP][356] ([Intel XE#2320]) +3 other tests skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-128x42.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: [SKIP][357] ([Intel XE#2320]) -> [SKIP][358] ([Intel XE#2423]) +8 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-32x32.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: [SKIP][359] ([Intel XE#2321]) -> [SKIP][360] ([Intel XE#2423]) +2 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_cursor_crc@cursor-offscreen-512x512.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-bmg: [SKIP][361] ([Intel XE#2423]) -> [SKIP][362] ([Intel XE#2321]) +3 other tests skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_cursor_crc@cursor-random-512x512.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][363] ([Intel XE#2291]) -> [SKIP][364] ([Intel XE#2423]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-bmg: [SKIP][365] ([Intel XE#2423]) -> [SKIP][366] ([Intel XE#2286]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-2/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-bmg: [SKIP][367] ([Intel XE#2286]) -> [SKIP][368] ([Intel XE#2423]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][369] ([Intel XE#877]) -> [SKIP][370] ([Intel XE#2423]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][371] ([Intel XE#2423] / [i915#2575]) -> [SKIP][372] ([Intel XE#323]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dsc@dsc-with-formats: - shard-bmg: [SKIP][373] ([Intel XE#2244]) -> [SKIP][374] ([Intel XE#2136]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_dsc@dsc-with-formats.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_dsc@dsc-with-formats.html * igt at kms_fbcon_fbt@psr: - shard-bmg: [SKIP][375] ([Intel XE#2136]) -> [SKIP][376] ([Intel XE#776]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_fbcon_fbt@psr.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][377] ([Intel XE#776]) -> [SKIP][378] ([Intel XE#2136]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_fbcon_fbt@psr-suspend.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][379] ([Intel XE#2423]) -> [SKIP][380] ([Intel XE#2372]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_feature_discovery@chamelium.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-5/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][381] ([Intel XE#2375]) -> [SKIP][382] ([Intel XE#2423]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_feature_discovery@dp-mst.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr2: - shard-bmg: [SKIP][383] ([Intel XE#2423]) -> [SKIP][384] ([Intel XE#2374]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_feature_discovery@psr2.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-bmg: [SKIP][385] ([Intel XE#2423]) -> [FAIL][386] ([Intel XE#2882]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-2/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [SKIP][387] ([Intel XE#2423]) -> [SKIP][388] ([Intel XE#2316]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [SKIP][389] ([Intel XE#2316]) -> [SKIP][390] ([Intel XE#2423]) +2 other tests skip [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-bmg: [SKIP][391] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][392] ([Intel XE#2136]) +5 other tests skip [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/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-downscaling: - shard-dg2-set2: [SKIP][393] ([Intel XE#2136]) -> [SKIP][394] ([Intel XE#455]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][395] ([Intel XE#2380]) -> [SKIP][396] ([Intel XE#2136]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-bmg: [SKIP][397] ([Intel XE#2136]) -> [SKIP][398] ([Intel XE#2136] / [Intel XE#2231]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][399] ([Intel XE#2136]) -> [SKIP][400] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: [SKIP][401] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][402] ([Intel XE#651]) +2 other tests skip [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][403] ([Intel XE#2311]) -> [SKIP][404] ([Intel XE#2136]) +35 other tests skip [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][405] ([Intel XE#2312]) -> [SKIP][406] ([Intel XE#2311]) +1 other test skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: [SKIP][407] ([Intel XE#2136]) -> [SKIP][408] ([Intel XE#2311]) +36 other tests skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][409] ([Intel XE#2333]) -> [SKIP][410] ([Intel XE#2136]) +20 other tests skip [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][411] ([Intel XE#2136]) -> [FAIL][412] ([Intel XE#2333]) +16 other tests fail [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [FAIL][413] ([Intel XE#2333]) -> [SKIP][414] ([Intel XE#2312]) +5 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/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-bmg: [SKIP][415] ([Intel XE#2312]) -> [FAIL][416] ([Intel XE#2333]) +1 other test fail [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][417] ([Intel XE#2136]) -> [SKIP][418] ([Intel XE#651]) +3 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][419] ([Intel XE#2136]) -> [SKIP][420] ([Intel XE#2312]) +10 other tests skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][421] ([Intel XE#2311]) -> [SKIP][422] ([Intel XE#2312]) +2 other tests skip [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][423] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][424] ([Intel XE#658]) [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][425] ([Intel XE#2136]) -> [SKIP][426] ([Intel XE#2313]) +28 other tests skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][427] ([Intel XE#2136]) -> [SKIP][428] ([Intel XE#653]) +2 other tests skip [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][429] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][430] ([Intel XE#653]) +1 other test skip [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][431] ([Intel XE#2313]) -> [SKIP][432] ([Intel XE#2136]) +36 other tests skip [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][433] ([Intel XE#2312]) -> [SKIP][434] ([Intel XE#2313]) +3 other tests skip [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][435] ([Intel XE#2312]) -> [SKIP][436] ([Intel XE#2136]) +8 other tests skip [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][437] ([Intel XE#2136]) -> [SKIP][438] ([Intel XE#2352]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][439] ([Intel XE#2350]) -> [SKIP][440] ([Intel XE#2136]) [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][441] ([Intel XE#2313]) -> [SKIP][442] ([Intel XE#2312]) +3 other tests skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [SKIP][443] ([Intel XE#2423]) -> [SKIP][444] ([Intel XE#1503]) [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_hdr@invalid-hdr.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@basic-big-joiner: - shard-bmg: [SKIP][445] ([Intel XE#2136]) -> [SKIP][446] ([Intel XE#346]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_joiner@basic-big-joiner.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][447] ([Intel XE#2934]) -> [SKIP][448] ([Intel XE#2136]) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_joiner@basic-force-ultra-joiner.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][449] ([Intel XE#2136]) -> [SKIP][450] ([Intel XE#2927]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_joiner@basic-ultra-joiner.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][451] ([Intel XE#2393]) -> [SKIP][452] ([Intel XE#2423]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_plane_lowres@tiling-y.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_lowres@tiling-yf: - shard-bmg: [SKIP][453] ([Intel XE#2423]) -> [SKIP][454] ([Intel XE#2393]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_plane_lowres@tiling-yf.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-4/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][455] ([Intel XE#2423]) -> [SKIP][456] ([Intel XE#2493]) [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_plane_multiple@tiling-yf.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][457] ([Intel XE#2571]) -> [SKIP][458] ([Intel XE#2423]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: [SKIP][459] ([Intel XE#2423] / [i915#2575]) -> [SKIP][460] ([Intel XE#2763] / [Intel XE#455]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-bmg: [SKIP][461] ([Intel XE#2423]) -> [DMESG-WARN][462] ([Intel XE#877]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-bmg: [SKIP][463] ([Intel XE#2423]) -> [SKIP][464] ([Intel XE#2763]) +3 other tests skip [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][465] ([Intel XE#2763]) -> [SKIP][466] ([Intel XE#2423]) +3 other tests skip [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_backlight@basic-brightness: - shard-bmg: [SKIP][467] ([Intel XE#2136]) -> [SKIP][468] ([Intel XE#870]) [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_pm_backlight@basic-brightness.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@fade: - shard-bmg: [SKIP][469] ([Intel XE#870]) -> [SKIP][470] ([Intel XE#2136]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_pm_backlight@fade.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][471] ([Intel XE#3309]) -> [SKIP][472] ([Intel XE#2136]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_pm_dc@dc5-retention-flops.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: [SKIP][473] ([Intel XE#2136]) -> [FAIL][474] ([Intel XE#1430]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_pm_dc@dc6-dpms.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@deep-pkgc: - shard-bmg: [SKIP][475] ([Intel XE#2505]) -> [SKIP][476] ([Intel XE#2136]) [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_pm_dc@deep-pkgc.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_pm_dc@deep-pkgc.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: [SKIP][477] ([Intel XE#2136]) -> [SKIP][478] ([Intel XE#2499]) [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_pm_lpsp@kms-lpsp.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-lpsp: - shard-bmg: [SKIP][479] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][480] ([Intel XE#2446]) +1 other test skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_pm_rpm@dpms-lpsp.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][481] ([Intel XE#2446]) -> [SKIP][482] ([Intel XE#1439] / [Intel XE#836]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][483] ([Intel XE#2136]) -> [SKIP][484] ([Intel XE#1489]) +9 other tests skip [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html - shard-dg2-set2: [SKIP][485] ([Intel XE#2136]) -> [SKIP][486] ([Intel XE#1489]) [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-463/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][487] ([Intel XE#1489]) -> [SKIP][488] ([Intel XE#2136]) +15 other tests skip [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-p010: - shard-bmg: [SKIP][489] ([Intel XE#2387]) -> [SKIP][490] ([Intel XE#2136]) [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_psr2_su@page_flip-p010.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: [SKIP][491] ([Intel XE#2136]) -> [SKIP][492] ([Intel XE#2234] / [Intel XE#2850]) +14 other tests skip [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_psr@fbc-psr2-cursor-plane-move.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-5/igt at kms_psr@fbc-psr2-cursor-plane-move.html * igt at kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: [SKIP][493] ([Intel XE#2136]) -> [SKIP][494] ([Intel XE#2850] / [Intel XE#929]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at kms_psr@fbc-psr2-cursor-plane-onoff.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: [SKIP][495] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][496] ([Intel XE#2136]) +18 other tests skip [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_psr@psr-primary-page-flip.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr2-primary-blt: - shard-dg2-set2: [SKIP][497] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][498] ([Intel XE#2850] / [Intel XE#929]) [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_psr@psr2-primary-blt.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at kms_psr@psr2-primary-blt.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][499] ([Intel XE#2136]) -> [SKIP][500] ([Intel XE#2414]) [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-6/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][501] ([Intel XE#2423]) -> [SKIP][502] ([Intel XE#2330]) [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-2/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: [SKIP][503] ([Intel XE#2330]) -> [SKIP][504] ([Intel XE#2423]) [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-bmg: [SKIP][505] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][506] ([Intel XE#2423]) [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_rotation_crc@sprite-rotation-270.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: [SKIP][507] ([Intel XE#2423]) -> [SKIP][508] ([Intel XE#3414] / [Intel XE#3904]) [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: [SKIP][509] ([Intel XE#2413]) -> [SKIP][510] ([Intel XE#2423]) [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_scaling_modes@scaling-mode-full-aspect.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: [SKIP][511] ([Intel XE#1435]) -> [SKIP][512] ([Intel XE#2423]) [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_setmode@invalid-clone-exclusive-crtc.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_setmode@invalid-clone-exclusive-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][513] ([Intel XE#2426]) -> [SKIP][514] ([Intel XE#2423]) +1 other test skip [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_tiled_display@basic-test-pattern.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: [SKIP][515] ([Intel XE#2450]) -> [SKIP][516] ([Intel XE#2423]) [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_tv_load_detect@load-detect.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@cmrr: - shard-bmg: [SKIP][517] ([Intel XE#2423]) -> [SKIP][518] ([Intel XE#2168]) [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_vrr@cmrr.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at kms_vrr@cmrr.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][519] ([Intel XE#2423]) -> [SKIP][520] ([Intel XE#1499]) [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_vrr@seamless-rr-switch-drrs.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-bmg: [SKIP][521] ([Intel XE#1499]) -> [SKIP][522] ([Intel XE#2423]) +1 other test skip [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-vrr.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-fb-id: - shard-bmg: [SKIP][523] ([Intel XE#2423]) -> [SKIP][524] ([Intel XE#756]) [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_writeback@writeback-fb-id.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-2/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][525] ([Intel XE#756]) -> [SKIP][526] ([Intel XE#2423]) +2 other tests skip [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_writeback@writeback-invalid-parameters.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at kms_writeback@writeback-invalid-parameters.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][527] ([Intel XE#2423]) -> [SKIP][528] ([Intel XE#1091] / [Intel XE#2849]) [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at sriov_basic@enable-vfs-autoprobe-off.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][529] ([Intel XE#1130]) -> [SKIP][530] ([Intel XE#1280] / [Intel XE#455]) [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_compute_preempt@compute-preempt.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-433/igt at xe_compute_preempt@compute-preempt.html * igt at xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][531] ([Intel XE#1130]) -> [SKIP][532] ([Intel XE#2504]) [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_create@multigpu-create-massive-size.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-2/igt at xe_create@multigpu-create-massive-size.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][533] ([Intel XE#3889]) -> [SKIP][534] ([Intel XE#1130]) [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: [SKIP][535] ([Intel XE#1130]) -> [SKIP][536] ([Intel XE#3889]) [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug_online@set-breakpoint: - shard-dg2-set2: [SKIP][537] ([Intel XE#1130]) -> [SKIP][538] ([Intel XE#2905]) [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_eudebug_online@set-breakpoint.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-433/igt at xe_eudebug_online@set-breakpoint.html * igt at xe_eudebug_online@single-step: - shard-bmg: [SKIP][539] ([Intel XE#1130]) -> [SKIP][540] ([Intel XE#2905]) +16 other tests skip [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_eudebug_online@single-step.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-8/igt at xe_eudebug_online@single-step.html * igt at xe_eudebug_online@stopped-thread: - shard-bmg: [SKIP][541] ([Intel XE#2905]) -> [SKIP][542] ([Intel XE#1130]) +20 other tests skip [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at xe_eudebug_online@stopped-thread.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at xe_eudebug_online@stopped-thread.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind: - shard-bmg: [SKIP][543] ([Intel XE#2322]) -> [SKIP][544] ([Intel XE#1130]) +13 other tests skip [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind: - shard-bmg: [SKIP][545] ([Intel XE#1130]) -> [SKIP][546] ([Intel XE#2322]) +11 other tests skip [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [SKIP][547] ([Intel XE#1130]) -> [SKIP][548] ([Intel XE#288]) +1 other test skip [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-434/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][549] ([Intel XE#1192]) -> [SKIP][550] ([Intel XE#2833]) [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at xe_live_ktest@xe_eudebug.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][551] ([Intel XE#1130]) -> [SKIP][552] ([Intel XE#2459] / [Intel XE#2596]) [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_media_fill@media-fill.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-4/igt at xe_media_fill@media-fill.html * igt at xe_mmap@small-bar: - shard-bmg: [SKIP][553] ([Intel XE#586]) -> [SKIP][554] ([Intel XE#1130]) [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at xe_mmap@small-bar.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at xe_mmap@small-bar.html * igt at xe_oa@buffer-fill: - shard-dg2-set2: [SKIP][555] ([Intel XE#1130]) -> [SKIP][556] ([Intel XE#2541] / [Intel XE#3573]) [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_oa@buffer-fill.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-435/igt at xe_oa@buffer-fill.html * igt at xe_oa@oa-tlb-invalidate: - shard-bmg: [SKIP][557] ([Intel XE#2248]) -> [SKIP][558] ([Intel XE#1130]) [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at xe_oa@oa-tlb-invalidate.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][559] ([Intel XE#1130]) -> [SKIP][560] ([Intel XE#1420]) [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_pat@pat-index-xehpc.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][561] ([Intel XE#1130]) -> [SKIP][562] ([Intel XE#2245]) [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_pat@pat-index-xelp.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-3/igt at xe_pat@pat-index-xelp.html * igt at xe_peer2peer@write: - shard-dg2-set2: [FAIL][563] ([Intel XE#1173]) -> [SKIP][564] ([Intel XE#1061]) [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at xe_peer2peer@write.html [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-432/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: [SKIP][565] ([Intel XE#2284]) -> [SKIP][566] ([Intel XE#1130]) +1 other test skip [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at xe_pm@d3cold-mmap-system.html [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-1/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: [SKIP][567] ([Intel XE#1130]) -> [SKIP][568] ([Intel XE#2284]) +1 other test skip [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at xe_pm@s2idle-d3cold-basic-exec.html [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-4/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@vram-d3cold-threshold: - shard-bmg: [SKIP][569] ([Intel XE#579]) -> [SKIP][570] ([Intel XE#1130]) [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at xe_pm@vram-d3cold-threshold.html [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-hwconfig: - shard-bmg: [SKIP][571] ([Intel XE#1130]) -> [SKIP][572] ([Intel XE#944]) +1 other test skip [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at xe_query@multigpu-query-hwconfig.html [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-5/igt at xe_query@multigpu-query-hwconfig.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][573] ([Intel XE#944]) -> [SKIP][574] ([Intel XE#1130]) +3 other tests skip [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at xe_query@multigpu-query-invalid-cs-cycles.html [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-bmg-7/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_query@multigpu-query-oa-units: - shard-dg2-set2: [SKIP][575] ([Intel XE#1130]) -> [SKIP][576] ([Intel XE#944]) +1 other test skip [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_query@multigpu-query-oa-units.html [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/shard-dg2-436/igt at xe_query@multigpu-query-oa-units.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [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#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#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#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#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#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#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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [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#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [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#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [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#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026 [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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [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#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#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3861 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4083]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4083 [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#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [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#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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8195 -> IGTPW_12452 * Linux: xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c -> xe-2503-d8c883b9b7702b39eb913a72fd7158ad9a6ea11f IGTPW_12452: d0f4ecfcbae2bfd49793d61994ab641826a5cdbf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8195: 8195 xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c xe-2503-d8c883b9b7702b39eb913a72fd7158ad9a6ea11f: d8c883b9b7702b39eb913a72fd7158ad9a6ea11f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12452/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 14:24:33 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 14:24:33 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Foa=3A_Ext?= =?utf-8?q?end_non-zero-reason_test?= In-Reply-To: <20250117005424.3038122-1-ashutosh.dixit@intel.com> References: <20250117005424.3038122-1-ashutosh.dixit@intel.com> Message-ID: <173712387335.748972.12105515019425509148@b555e5b46a47> == Series Details == Series: tests/intel/xe_oa: Extend non-zero-reason test URL : https://patchwork.freedesktop.org/series/143640/ State : failure == Summary == CI Bug Log - changes from XEIGT_8195_full -> XEIGTPW_12453_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12453_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12453_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_12453_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html * igt at kms_psr@psr2-sprite-plane-move: - shard-lnl: NOTRUN -> [FAIL][2] +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-4/igt at kms_psr@psr2-sprite-plane-move.html #### Warnings #### * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [SKIP][3] ([Intel XE#2423]) -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html New tests --------- New tests have been introduced between XEIGT_8195_full and XEIGTPW_12453_full: ### New IGT tests (21) ### * igt at kms_cursor_crc@cursor-alpha-transparent at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.67] s * igt at kms_cursor_crc@cursor-alpha-transparent at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.40] s * igt at kms_cursor_crc@cursor-onscreen-128x42 at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.46] s * igt at kms_cursor_crc@cursor-onscreen-128x42 at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.19] s * igt at kms_cursor_edge_walk@128x128-left-edge at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [3.41] s * igt at kms_cursor_edge_walk@128x128-left-edge at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [3.24] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at ab-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.41] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at ac-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.15] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at ad-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.23] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at bc-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.38] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at bd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.37] s * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible at cd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [2.41] s * igt at kms_flip@nonexisting-fb at a-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.29] s * igt at kms_flip@nonexisting-fb at b-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.21] s * igt at kms_flip@nonexisting-fb at c-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.21] s * igt at kms_flip@nonexisting-fb at d-hdmi-a6: - Statuses : 1 pass(s) - Exec time: [0.21] s * igt at kms_vblank@query-busy-hang at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.65] s * igt at kms_vblank@query-busy-hang at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.38] s * igt at xe_oa@non-zero-reason at rcs-0-16m: - Statuses : 1 pass(s) - Exec time: [2.82] s * igt at xe_oa@non-zero-reason at rcs-0-32m: - Statuses : 1 pass(s) - Exec time: [2.80] s * igt at xe_oa@non-zero-reason at rcs-0-8m: - Statuses : 1 pass(s) - Exec time: [2.79] s Known issues ------------ Here are the changes found in XEIGTPW_12453_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getversion@basic: - shard-bmg: [PASS][5] -> [FAIL][6] ([Intel XE#3440]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at core_getversion@basic.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at core_getversion@basic.html * igt at core_hotunplug@hotreplug: - shard-bmg: [PASS][7] -> [SKIP][8] ([Intel XE#1885]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at core_hotunplug@hotreplug.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at core_hotunplug@hotreplug.html * igt at fbdev@unaligned-read: - shard-bmg: [PASS][9] -> [SKIP][10] ([Intel XE#2134]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at fbdev@unaligned-read.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at fbdev@unaligned-read.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#873]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-434/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#664]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-6/igt at kms_async_flips@test-cursor.html * igt at kms_atomic_transition@plane-all-transition-nonblocking: - shard-dg2-set2: [PASS][13] -> [INCOMPLETE][14] ([Intel XE#2613]) +1 other test incomplete [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at kms_atomic_transition@plane-all-transition-nonblocking.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-435/igt at kms_atomic_transition@plane-all-transition-nonblocking.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2136]) +24 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-5/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@linear-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2327]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_big_fb@linear-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +5 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-2/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#610]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-463/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +6 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#367]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-435/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-3-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#367]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-1/igt at kms_bw@linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#367]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2907]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-434/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +24 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-432/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc at pipe-d-dp-2.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#787]) +97 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/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 at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2669]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2887]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#2136]) +24 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#3442]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#3432]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-1/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +6 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-1/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][35] -> [INCOMPLETE][36] ([Intel XE#1727] / [Intel XE#3124]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-463/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-b-dp-4: - shard-dg2-set2: [PASS][37] -> [INCOMPLETE][38] ([Intel XE#3124]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-dp-4.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][39] -> [DMESG-WARN][40] ([Intel XE#1727] / [Intel XE#3113]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-6.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs at pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs at pipe-c-dp-2.html * igt at kms_cdclk@mode-transition at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#314]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-463/igt at kms_cdclk@mode-transition at pipe-d-dp-4.html * igt at kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1152]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-3/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_color@ctm-0-25: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2325]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-2/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#306]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-435/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2252]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-3/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#373]) +7 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#373]) +7 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-4/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_content_protection@atomic at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][49] ([Intel XE#1178]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-2/igt at kms_content_protection@atomic at pipe-a-dp-2.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#307]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-433/igt at kms_content_protection@dp-mst-lic-type-1.html - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#307]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-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-set2: NOTRUN -> [INCOMPLETE][52] ([Intel XE#2715]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_content_protection@legacy at pipe-a-dp-4.html * igt at kms_content_protection@srm 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_12453/shard-dg2-434/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2423]) +12 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-onscreen-128x42: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1424]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-6/igt at kms_cursor_crc@cursor-onscreen-128x42.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#309]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-6/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: NOTRUN -> [DMESG-WARN][57] ([Intel XE#877]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#323]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dsc@dsc-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#455]) +8 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-463/igt at kms_dsc@dsc-with-bpc.html * igt at kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1138]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-434/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1137]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-1/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1421]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-4/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][63] ([Intel XE#3321]) +1 other test fail [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/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 ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][64] ([Intel XE#301]) +4 other tests fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#2316]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6: - shard-dg2-set2: [PASS][67] -> [FAIL][68] ([Intel XE#301]) +2 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-435/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-5/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-default-mode: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1401]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2293]) +5 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-valid-mode.html * igt at kms_force_connector_basic@force-connector-state: - shard-bmg: [PASS][72] -> [SKIP][73] ([Intel XE#3007]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_force_connector_basic@force-connector-state.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_force_connector_basic@force-connector-state.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2311]) +7 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#651]) +22 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#656]) +21 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#651]) +7 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2313]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#653]) +23 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2312]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_getfb@getfb2-accept-ccs: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#2340]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-8/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1503]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-4/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#346]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-6/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#2934]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-4/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-c-edp-1: - shard-lnl: [PASS][85] -> [INCOMPLETE][86] ([Intel XE#4016]) +1 other test incomplete [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-8/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-c-edp-1.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-7/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-c-edp-1.html * igt at kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#3307]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-4/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#2763]) +8 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-b.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-bmg: [PASS][89] -> [SKIP][90] ([Intel XE#2423]) +103 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#2763]) +7 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-6/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2763] / [Intel XE#455]) +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-435/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2763]) +15 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2938]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-463/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#870]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-463/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][96] -> [FAIL][97] ([Intel XE#718]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-4/igt at kms_pm_dc@dc5-dpms.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-3/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_rpm@cursor: - shard-bmg: [PASS][98] -> [SKIP][99] ([Intel XE#2446]) +5 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_pm_rpm@cursor.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_pm_rpm@cursor.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2446]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#1489]) +11 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-463/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#2893]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-8/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#1489]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-4/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][104] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-433/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-basic: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1406]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-8/igt at kms_psr@pr-basic.html * igt at kms_psr@psr2-suspend: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-2/igt at kms_psr@psr2-suspend.html * igt at kms_rotation_crc@primary-rotation-90: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#3414] / [Intel XE#3904]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-4/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1127]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-435/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-set2: NOTRUN -> [SKIP][109] ([Intel XE#3414]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-434/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [PASS][110] -> [FAIL][111] ([Intel XE#2883]) +2 other tests fail [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-3/igt at kms_setmode@basic at pipe-b-edp-1.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-1/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1435]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-8/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [PASS][113] -> [SKIP][114] ([Intel XE#1435]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_setmode@invalid-clone-single-crtc-stealing.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#330]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-434/igt at kms_tv_load_detect@load-detect.html - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#330]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-4/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][117] -> [FAIL][118] ([Intel XE#2159]) +1 other test fail [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-5/igt at kms_vrr@cmrr at pipe-a-edp-1.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-5/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#1499]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-2/igt at kms_vrr@flip-basic.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2168]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-435/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#756]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_writeback@writeback-fb-id.html * igt at xe_compute_preempt@compute-preempt at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#1280] / [Intel XE#455]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at xe_compute_preempt@compute-preempt at engine-drm_xe_engine_class_compute.html * igt at xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1123]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-435/igt at xe_copy_basic@mem-copy-linear-0x369.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#3889]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@vm-bind-clear: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2905]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at xe_eudebug@vm-bind-clear.html * igt at xe_eudebug_online@resume-dss: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2905]) +8 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-463/igt at xe_eudebug_online@resume-dss.html * igt at xe_eudebug_online@stopped-thread: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2905]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-5/igt at xe_eudebug_online@stopped-thread.html * igt at xe_evict@evict-beng-small: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#688]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-6/igt at xe_evict@evict-beng-small.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1392]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1392]) +4 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-6/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-dg2-set2: [PASS][131] -> [SKIP][132] ([Intel XE#1392]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-435/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt at xe_exec_fault_mode@many-bindexecqueue-imm: - shard-bmg: [PASS][133] -> [SKIP][134] ([Intel XE#1130]) +246 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at xe_exec_fault_mode@many-bindexecqueue-imm.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at xe_exec_fault_mode@many-bindexecqueue-imm.html * igt at xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#288]) +24 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-463/igt at xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt at xe_exec_threads@threads-bal-rebind: - shard-bmg: [PASS][136] -> [INCOMPLETE][137] ([Intel XE#1169]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at xe_exec_threads@threads-bal-rebind.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-4/igt at xe_exec_threads@threads-bal-rebind.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [PASS][138] -> [SKIP][139] ([Intel XE#2229]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at xe_live_ktest@xe_bo.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][140] -> [SKIP][141] ([Intel XE#1192]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_live_ktest@xe_dma_buf.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-2/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_live_ktest@xe_eudebug: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1192] / [Intel XE#3026]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-8/igt at xe_live_ktest@xe_eudebug.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#2229]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-433/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-bmg: [PASS][144] -> [FAIL][145] ([Intel XE#1999]) +2 other tests fail [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.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_12453/shard-lnl-4/igt at xe_module_load@force-load.html * igt at xe_module_load@many-reload: - shard-bmg: [PASS][147] -> [FAIL][148] ([Intel XE#3546]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at xe_module_load@many-reload.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at xe_module_load@many-reload.html * igt at xe_oa@non-privileged-map-oa-buffer: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at xe_oa@non-privileged-map-oa-buffer.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#2248]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-3/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#977]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-434/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2838] / [Intel XE#979]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-432/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@s3-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_12453/shard-lnl-3/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_pm@s3-exec-after: - shard-dg2-set2: [PASS][154] -> [ABORT][155] ([Intel XE#1358]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at xe_pm@s3-exec-after.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-432/igt at xe_pm@s3-exec-after.html * igt at xe_pm@s3-vm-bind-userptr: - shard-dg2-set2: [PASS][156] -> [INCOMPLETE][157] ([Intel XE#1358] / [Intel XE#569]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_pm@s3-vm-bind-userptr.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-433/igt at xe_pm@s3-vm-bind-userptr.html * igt at xe_pm@s4-exec-after: - shard-lnl: [PASS][158] -> [ABORT][159] ([Intel XE#1358] / [Intel XE#1607]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-4/igt at xe_pm@s4-exec-after.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-2/igt at xe_pm@s4-exec-after.html * igt at xe_query@multigpu-query-invalid-size: - shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#944]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at xe_query@multigpu-query-invalid-size.html * igt at xe_query@multigpu-query-mem-usage: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#944]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-5/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#944]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-432/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#3342]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-434/igt at xe_sriov_flr@flr-each-isolation.html - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#3342]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-5/igt at xe_sriov_flr@flr-each-isolation.html * igt at xe_vm@bind-no-array-conflict: - shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#1130]) +20 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at xe_vm@bind-no-array-conflict.html #### Possible fixes #### * igt at core_hotunplug@hotrebind: - shard-bmg: [SKIP][166] ([Intel XE#1885]) -> [PASS][167] +2 other tests pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at core_hotunplug@hotrebind.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-4/igt at core_hotunplug@hotrebind.html * igt at fbdev@eof: - shard-bmg: [SKIP][168] ([Intel XE#2134]) -> [PASS][169] +1 other test pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at fbdev@eof.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at fbdev@eof.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-bmg: [INCOMPLETE][170] ([Intel XE#3861]) -> [PASS][171] +1 other test pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_async_flips@async-flip-suspend-resume.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_async_flips@async-flip-suspend-resume.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [SKIP][172] ([Intel XE#2136]) -> [PASS][173] +25 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_big_fb@linear-16bpp-rotate-180.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-3/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][174] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-433/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: [INCOMPLETE][176] ([Intel XE#3124]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-4.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-433/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: [DMESG-WARN][178] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-hdmi-a-6.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-hdmi-a-6.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-bmg: [SKIP][180] ([Intel XE#2291]) -> [PASS][181] +1 other test pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-dg2-set2: [ABORT][182] ([Intel XE#2625]) -> [PASS][183] +1 other test pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at kms_fbcon_fbt@fbc-suspend.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][184] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][185] +1 other test pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-434/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: [FAIL][186] ([Intel XE#301]) -> [PASS][187] +3 other tests pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [SKIP][188] ([Intel XE#2316]) -> [PASS][189] +2 other tests pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@flip-vs-panning-interruptible: - shard-dg2-set2: [INCOMPLETE][190] ([Intel XE#2049]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@flip-vs-panning-interruptible.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_flip@flip-vs-panning-interruptible.html * igt at kms_flip@flip-vs-panning-interruptible at c-dp4: - shard-dg2-set2: [INCOMPLETE][192] -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at kms_flip@flip-vs-panning-interruptible at c-dp4.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_flip@flip-vs-panning-interruptible at c-dp4.html * igt at kms_flip@flip-vs-wf_vblank-interruptible: - shard-lnl: [FAIL][194] ([Intel XE#886]) -> [PASS][195] +7 other tests pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-2/igt at kms_flip@flip-vs-wf_vblank-interruptible.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-4/igt at kms_flip@flip-vs-wf_vblank-interruptible.html * igt at kms_flip@plain-flip-ts-check: - shard-lnl: [FAIL][196] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-1/igt at kms_flip@plain-flip-ts-check.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-8/igt at kms_flip@plain-flip-ts-check.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][198] ([Intel XE#2136]) -> [PASS][199] +4 other tests pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-suspend: - shard-lnl: [INCOMPLETE][200] ([Intel XE#2050]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcpsr-suspend.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-1/igt at kms_frontbuffer_tracking@fbcpsr-suspend.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][202] ([Intel XE#2571]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_pm_rpm@drm-resources-equal: - shard-dg2-set2: [SKIP][204] ([Intel XE#2446]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_pm_rpm@drm-resources-equal.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-435/igt at kms_pm_rpm@drm-resources-equal.html * igt at kms_pm_rpm@i2c: - shard-bmg: [SKIP][206] ([Intel XE#2446]) -> [PASS][207] +6 other tests pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_pm_rpm@i2c.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_pm_rpm@i2c.html * igt at kms_properties@connector-properties-legacy: - shard-bmg: [SKIP][208] ([Intel XE#2423]) -> [PASS][209] +111 other tests pass [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_properties@connector-properties-legacy.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-4/igt at kms_properties@connector-properties-legacy.html * igt at kms_vblank@query-busy-hang: - shard-dg2-set2: [SKIP][210] ([Intel XE#2423] / [i915#2575]) -> [PASS][211] +12 other tests pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_vblank@query-busy-hang.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_vblank@query-busy-hang.html * igt at kms_vrr@flipline: - shard-lnl: [FAIL][212] ([Intel XE#1522]) -> [PASS][213] +1 other test pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-7/igt at kms_vrr@flipline.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-2/igt at kms_vrr@flipline.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [SKIP][214] ([Intel XE#1392]) -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-434/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html * igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: [SKIP][216] ([Intel XE#1130]) -> [PASS][217] +15 other tests pass [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-432/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt at xe_live_ktest@xe_migrate: - shard-bmg: [SKIP][218] ([Intel XE#1192]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at xe_live_ktest@xe_migrate.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at xe_live_ktest@xe_migrate.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-dg2-set2: [SKIP][220] ([Intel XE#4045]) -> [PASS][221] +2 other tests pass [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt at xe_mmap@pci-membarrier-bad-pagesize.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-463/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_module_load@load: - shard-lnl: ([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], [SKIP][244], [PASS][245], [PASS][246], [PASS][247]) ([Intel XE#378]) -> ([PASS][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], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-8/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-8/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-8/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-3/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-1/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-1/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-4/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-6/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-6/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-3/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-7/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-7/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-7/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-7/igt at xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-2/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-2/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-4/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-4/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-1/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-5/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-5/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-5/igt at xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-3/igt at xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-6/igt at xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-6/igt at xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-3/igt at xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-2/igt at xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-8/igt at xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-1/igt at xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-1/igt at xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-3/igt at xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-6/igt at xe_module_load@load.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-3/igt at xe_module_load@load.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-7/igt at xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-5/igt at xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-1/igt at xe_module_load@load.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-5/igt at xe_module_load@load.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-8/igt at xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-5/igt at xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-8/igt at xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-3/igt at xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-5/igt at xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-6/igt at xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-4/igt at xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-6/igt at xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-6/igt at xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-1/igt at xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-8/igt at xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-4/igt at xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-4/igt at xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-lnl-4/igt at xe_module_load@load.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-dg2-set2: [ABORT][273] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at xe_pm@s4-vm-bind-unbind-all.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-434/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [SKIP][275] ([Intel XE#1130]) -> [PASS][276] +257 other tests pass [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][277] ([Intel XE#2423]) -> [SKIP][278] ([Intel XE#873]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_async_flips@invalid-async-flip.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-bmg: [SKIP][279] ([Intel XE#3768]) -> [SKIP][280] ([Intel XE#2423]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][281] ([Intel XE#2385]) -> [SKIP][282] ([Intel XE#2423]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: [SKIP][283] ([Intel XE#2423]) -> [SKIP][284] ([Intel XE#2370]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-2/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: [SKIP][285] ([Intel XE#2136]) -> [SKIP][286] ([Intel XE#2327]) +3 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_big_fb@linear-32bpp-rotate-270.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: [SKIP][287] ([Intel XE#2327]) -> [SKIP][288] ([Intel XE#2136]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_big_fb@linear-8bpp-rotate-270.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb: - shard-bmg: [SKIP][289] ([Intel XE#2328]) -> [SKIP][290] ([Intel XE#2136]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_big_fb@y-tiled-addfb.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][291] ([Intel XE#2136]) -> [SKIP][292] ([Intel XE#610]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-3/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][293] ([Intel XE#2136]) -> [SKIP][294] ([Intel XE#1124]) +16 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-270: - 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_8195/shard-bmg-4/igt at kms_big_fb@yf-tiled-64bpp-rotate-270.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_big_fb@yf-tiled-64bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][297] ([Intel XE#2136]) -> [SKIP][298] ([Intel XE#1124]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_big_fb@yf-tiled-8bpp-rotate-90.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-433/igt at kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: [SKIP][299] ([Intel XE#610]) -> [SKIP][300] ([Intel XE#2136]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][301] ([Intel XE#1124]) -> [SKIP][302] ([Intel XE#2136]) +9 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-bmg: [SKIP][303] ([Intel XE#2423]) -> [SKIP][304] ([Intel XE#2314] / [Intel XE#2894]) +3 other tests skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][305] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][306] ([Intel XE#2423]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][307] ([Intel XE#2423]) -> [SKIP][308] ([Intel XE#367]) +3 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][309] ([Intel XE#367]) -> [SKIP][310] ([Intel XE#2423]) +2 other tests skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: [SKIP][311] ([Intel XE#2423] / [i915#2575]) -> [SKIP][312] ([Intel XE#367]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-bmg: [SKIP][313] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][314] ([Intel XE#2136] / [Intel XE#2231]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][315] ([Intel XE#2136]) -> [SKIP][316] ([Intel XE#455] / [Intel XE#787]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-434/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-bmg: [SKIP][317] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][318] ([Intel XE#2136]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][319] ([Intel XE#2136]) -> [SKIP][320] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][321] ([Intel XE#3432]) -> [SKIP][322] ([Intel XE#2136]) +3 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][323] ([Intel XE#2136]) -> [SKIP][324] ([Intel XE#2887]) +23 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-4/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs: - shard-dg2-set2: [SKIP][325] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][326] ([Intel XE#455] / [Intel XE#787]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][327] ([Intel XE#2887]) -> [SKIP][328] ([Intel XE#2136]) +14 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-bmg: [SKIP][329] ([Intel XE#2136]) -> [SKIP][330] ([Intel XE#2652] / [Intel XE#787]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][331] ([Intel XE#2136]) -> [SKIP][332] ([Intel XE#2724]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_cdclk@mode-transition.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-3/igt at kms_cdclk@mode-transition.html * igt at kms_chamelium_color@ctm-negative: - shard-bmg: [SKIP][333] ([Intel XE#2423]) -> [SKIP][334] ([Intel XE#2325]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_chamelium_color@ctm-negative.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_color@degamma: - shard-bmg: [SKIP][335] ([Intel XE#2325]) -> [SKIP][336] ([Intel XE#2423]) +2 other tests skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_chamelium_color@degamma.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-bmg: [SKIP][337] ([Intel XE#2423]) -> [SKIP][338] ([Intel XE#2252]) +13 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-4/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_chamelium_frames@hdmi-frame-dump: - shard-bmg: [SKIP][339] ([Intel XE#2423]) -> [SKIP][340] ([Intel XE#3007]) +4 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_chamelium_frames@hdmi-frame-dump.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_chamelium_frames@hdmi-frame-dump.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][341] ([Intel XE#2252]) -> [SKIP][342] ([Intel XE#2423]) +14 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_chamelium_hpd@common-hpd-after-suspend.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_content_protection@atomic: - shard-bmg: [SKIP][343] ([Intel XE#2423]) -> [FAIL][344] ([Intel XE#1178]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_content_protection@atomic.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-2/igt at kms_content_protection@atomic.html * igt at kms_content_protection@atomic-dpms: - shard-bmg: [FAIL][345] ([Intel XE#1178]) -> [SKIP][346] ([Intel XE#2423]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_content_protection@atomic-dpms.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-bmg: [SKIP][347] ([Intel XE#2341]) -> [SKIP][348] ([Intel XE#2423]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_content_protection@content-type-change.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-bmg: [SKIP][349] ([Intel XE#2423]) -> [SKIP][350] ([Intel XE#2390]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_content_protection@dp-mst-lic-type-0.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-4/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-bmg: [SKIP][351] ([Intel XE#2390]) -> [SKIP][352] ([Intel XE#2423]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_content_protection@dp-mst-lic-type-1.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@legacy: - shard-dg2-set2: [FAIL][353] ([Intel XE#1178]) -> [INCOMPLETE][354] ([Intel XE#2715]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt at kms_content_protection@legacy.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-bmg: [FAIL][355] ([Intel XE#1178]) -> [SKIP][356] ([Intel XE#2341]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_content_protection@lic-type-0.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@type1: - shard-bmg: [SKIP][357] ([Intel XE#2423]) -> [SKIP][358] ([Intel XE#2341]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_content_protection@type1.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: [SKIP][359] ([Intel XE#2320]) -> [SKIP][360] ([Intel XE#2423]) +6 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-32x32.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-random-256x85: - shard-bmg: [SKIP][361] ([Intel XE#2423]) -> [SKIP][362] ([Intel XE#2320]) +4 other tests skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_cursor_crc@cursor-random-256x85.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_cursor_crc@cursor-random-256x85.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][363] ([Intel XE#2320]) -> [SKIP][364] ([Intel XE#3007]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_cursor_crc@cursor-random-32x32.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-bmg: [SKIP][365] ([Intel XE#2423]) -> [SKIP][366] ([Intel XE#2321]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_cursor_crc@cursor-random-512x170.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][367] ([Intel XE#2321]) -> [SKIP][368] ([Intel XE#2423]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_cursor_crc@cursor-sliding-512x512.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-bmg: [SKIP][369] ([Intel XE#2423]) -> [SKIP][370] ([Intel XE#2286]) +2 other tests skip [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][371] ([Intel XE#877]) -> [SKIP][372] ([Intel XE#2423]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [SKIP][373] ([Intel XE#2291]) -> [SKIP][374] ([Intel XE#2423]) +2 other tests skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [DMESG-WARN][375] ([Intel XE#877]) -> [SKIP][376] ([Intel XE#2291]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-bmg: [SKIP][377] ([Intel XE#2286]) -> [SKIP][378] ([Intel XE#2423]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][379] ([Intel XE#1508]) -> [SKIP][380] ([Intel XE#2136]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][381] ([Intel XE#2244]) -> [SKIP][382] ([Intel XE#2136]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-bmg: [SKIP][383] ([Intel XE#2136]) -> [SKIP][384] ([Intel XE#2244]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@fbc: - shard-bmg: [FAIL][385] ([Intel XE#1695]) -> [SKIP][386] ([Intel XE#2136]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_fbcon_fbt@fbc.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_fbcon_fbt@fbc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][387] ([Intel XE#776]) -> [SKIP][388] ([Intel XE#2136]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_fbcon_fbt@psr-suspend.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-3x: - shard-bmg: [SKIP][389] ([Intel XE#2423]) -> [SKIP][390] ([Intel XE#2373]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_feature_discovery@display-3x.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@psr1: - shard-bmg: [SKIP][391] ([Intel XE#2423]) -> [SKIP][392] ([Intel XE#2374]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_feature_discovery@psr1.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-bmg: [SKIP][393] ([Intel XE#2316]) -> [SKIP][394] ([Intel XE#3007]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][395] -> [SKIP][396] ([Intel XE#2423]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip@2x-flip-vs-rmfb-interruptible: - shard-bmg: [INCOMPLETE][397] -> [SKIP][398] ([Intel XE#2423]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-bmg: [SKIP][399] ([Intel XE#2423]) -> [SKIP][400] ([Intel XE#2316]) +2 other tests skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_flip@2x-plain-flip.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@plain-flip-ts-check: - shard-bmg: [FAIL][401] ([Intel XE#2882]) -> [SKIP][402] ([Intel XE#2423]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_flip@plain-flip-ts-check.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_flip@plain-flip-ts-check.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: [SKIP][403] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][404] ([Intel XE#2136]) +4 other tests skip [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][405] ([Intel XE#2136]) -> [SKIP][406] ([Intel XE#455]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][407] ([Intel XE#2136]) -> [SKIP][408] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-2/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-upscaling: - shard-bmg: [SKIP][409] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][410] ([Intel XE#2136] / [Intel XE#2231]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: [SKIP][411] ([Intel XE#2311]) -> [SKIP][412] ([Intel XE#2136]) +35 other tests skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: [SKIP][413] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][414] ([Intel XE#651]) +1 other test skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][415] ([Intel XE#2311]) -> [SKIP][416] ([Intel XE#2136] / [Intel XE#2231]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][417] ([Intel XE#2312]) -> [SKIP][418] ([Intel XE#2311]) +3 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][419] ([Intel XE#2311]) -> [SKIP][420] ([Intel XE#2312]) +6 other tests skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][421] ([Intel XE#2312]) -> [SKIP][422] ([Intel XE#2136]) +9 other tests skip [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: [SKIP][423] ([Intel XE#2136]) -> [SKIP][424] ([Intel XE#2311]) +40 other tests skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [FAIL][425] ([Intel XE#2333]) -> [SKIP][426] ([Intel XE#2136] / [Intel XE#2231]) [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-bmg: [SKIP][427] ([Intel XE#2312]) -> [FAIL][428] ([Intel XE#2333]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][429] ([Intel XE#2136]) -> [FAIL][430] ([Intel XE#2333]) +17 other tests fail [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [FAIL][431] ([Intel XE#2333]) -> [SKIP][432] ([Intel XE#2312]) +1 other test skip [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][433] ([Intel XE#2333]) -> [SKIP][434] ([Intel XE#2136]) +21 other tests skip [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt: - shard-dg2-set2: [SKIP][435] ([Intel XE#2136]) -> [SKIP][436] ([Intel XE#651]) +1 other test skip [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][437] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][438] ([Intel XE#658]) [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][439] ([Intel XE#2136]) -> [SKIP][440] ([Intel XE#2313]) +44 other tests skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][441] ([Intel XE#2313]) -> [SKIP][442] ([Intel XE#2136] / [Intel XE#2231]) [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][443] ([Intel XE#2312]) -> [SKIP][444] ([Intel XE#2313]) +3 other tests skip [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][445] ([Intel XE#2313]) -> [SKIP][446] ([Intel XE#2312]) +7 other tests skip [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][447] ([Intel XE#2313]) -> [SKIP][448] ([Intel XE#2136]) +40 other tests skip [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][449] ([Intel XE#2136]) -> [SKIP][450] ([Intel XE#2352]) +1 other test skip [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render: - shard-dg2-set2: [SKIP][451] ([Intel XE#2136]) -> [SKIP][452] ([Intel XE#653]) +3 other tests skip [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][453] ([Intel XE#2136]) -> [SKIP][454] ([Intel XE#2312]) +10 other tests skip [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][455] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][456] ([Intel XE#653]) [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][457] ([Intel XE#2423]) -> [SKIP][458] ([Intel XE#3374] / [Intel XE#3544]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-2/igt at kms_hdr@brightness-with-hdr.html * igt at kms_joiner@basic-big-joiner: - shard-bmg: [SKIP][459] ([Intel XE#2136]) -> [SKIP][460] ([Intel XE#346]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_joiner@basic-big-joiner.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-3/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][461] ([Intel XE#2934]) -> [SKIP][462] ([Intel XE#2136]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_joiner@basic-force-ultra-joiner.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-bmg: [SKIP][463] ([Intel XE#2136]) -> [SKIP][464] ([Intel XE#2927]) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_joiner@basic-ultra-joiner.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-4/igt at kms_joiner@basic-ultra-joiner.html - shard-dg2-set2: [SKIP][465] ([Intel XE#2136]) -> [SKIP][466] ([Intel XE#2927]) [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_joiner@basic-ultra-joiner.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: [SKIP][467] ([Intel XE#2927]) -> [SKIP][468] ([Intel XE#2136]) [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_joiner@invalid-modeset-ultra-joiner.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][469] ([Intel XE#2423]) -> [SKIP][470] ([Intel XE#2501]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][471] ([Intel XE#2393]) -> [SKIP][472] ([Intel XE#2423]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_plane_lowres@tiling-y.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_lowres@tiling-yf: - shard-bmg: [SKIP][473] ([Intel XE#2423]) -> [SKIP][474] ([Intel XE#2393]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_plane_lowres@tiling-yf.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-3/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][475] ([Intel XE#2763]) -> [SKIP][476] ([Intel XE#2423]) +3 other tests skip [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-bmg: [SKIP][477] ([Intel XE#2423]) -> [SKIP][478] ([Intel XE#2763]) +3 other tests skip [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html - shard-dg2-set2: [SKIP][479] ([Intel XE#2423] / [i915#2575]) -> [SKIP][480] ([Intel XE#2763] / [Intel XE#455]) [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-434/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_pm_backlight@bad-brightness: - shard-bmg: [SKIP][481] ([Intel XE#2136]) -> [SKIP][482] ([Intel XE#870]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_pm_backlight@bad-brightness.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade: - shard-bmg: [SKIP][483] ([Intel XE#870]) -> [SKIP][484] ([Intel XE#2136]) +1 other test skip [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_pm_backlight@fade.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: [SKIP][485] ([Intel XE#2136]) -> [FAIL][486] ([Intel XE#1430]) [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_pm_dc@dc6-dpms.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: [SKIP][487] ([Intel XE#2136]) -> [SKIP][488] ([Intel XE#2499]) [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_pm_lpsp@kms-lpsp.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-lpsp: - shard-bmg: [SKIP][489] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][490] ([Intel XE#2446]) +1 other test skip [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_pm_rpm@dpms-lpsp.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][491] ([Intel XE#2136]) -> [SKIP][492] ([Intel XE#1489]) [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-432/igt at kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-bmg: [SKIP][493] ([Intel XE#2136]) -> [SKIP][494] ([Intel XE#1489]) +5 other tests skip [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-3/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-bmg: [SKIP][495] ([Intel XE#1489]) -> [SKIP][496] ([Intel XE#2136]) +9 other tests skip [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-bmg: [SKIP][497] ([Intel XE#2136]) -> [SKIP][498] ([Intel XE#2387]) [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at kms_psr2_su@page_flip-nv12.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: [SKIP][499] ([Intel XE#2136]) -> [SKIP][500] ([Intel XE#2234] / [Intel XE#2850]) +24 other tests skip [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_psr@fbc-psr2-cursor-plane-move.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-4/igt at kms_psr@fbc-psr2-cursor-plane-move.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: [SKIP][501] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][502] ([Intel XE#2136]) +23 other tests skip [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at kms_psr@psr-primary-page-flip.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr2-primary-blt: - shard-dg2-set2: [SKIP][503] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][504] ([Intel XE#2850] / [Intel XE#929]) [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at kms_psr@psr2-primary-blt.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at kms_psr@psr2-primary-blt.html * igt at kms_rotation_crc@bad-pixel-format: - shard-bmg: [SKIP][505] ([Intel XE#2423]) -> [SKIP][506] ([Intel XE#3414] / [Intel XE#3904]) +4 other tests skip [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_rotation_crc@bad-pixel-format.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-bmg: [SKIP][507] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][508] ([Intel XE#2423]) +1 other test skip [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: [SKIP][509] ([Intel XE#2330]) -> [SKIP][510] ([Intel XE#2423]) [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: [SKIP][511] ([Intel XE#2413]) -> [SKIP][512] ([Intel XE#2423]) [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at kms_scaling_modes@scaling-mode-full-aspect.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][513] ([Intel XE#2426]) -> [SKIP][514] ([Intel XE#2423]) [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][515] ([Intel XE#2423]) -> [SKIP][516] ([Intel XE#1499]) [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at kms_vrr@seamless-rr-switch-drrs.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][517] ([Intel XE#1499]) -> [SKIP][518] ([Intel XE#3007]) [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at kms_vrr@seamless-rr-switch-virtual.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-bmg: [SKIP][519] ([Intel XE#1499]) -> [SKIP][520] ([Intel XE#2423]) +1 other test skip [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-vrr.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: [SKIP][521] ([Intel XE#756]) -> [SKIP][522] ([Intel XE#2423]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt at kms_writeback@writeback-pixel-formats.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at kms_writeback@writeback-pixel-formats.html * igt at xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][523] ([Intel XE#1130]) -> [SKIP][524] ([Intel XE#1280] / [Intel XE#455]) [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_compute_preempt@compute-preempt.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-436/igt at xe_compute_preempt@compute-preempt.html * igt at xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][525] ([Intel XE#1130]) -> [SKIP][526] ([Intel XE#2504]) [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_create@multigpu-create-massive-size.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at xe_create@multigpu-create-massive-size.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][527] ([Intel XE#3889]) -> [SKIP][528] ([Intel XE#1130]) +1 other test skip [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][529] ([Intel XE#1130]) -> [SKIP][530] ([Intel XE#2905]) +17 other tests skip [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: [SKIP][531] ([Intel XE#1130]) -> [SKIP][532] ([Intel XE#3889]) [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@discovery-empty: - shard-bmg: [SKIP][533] ([Intel XE#2905]) -> [SKIP][534] ([Intel XE#1130]) +14 other tests skip [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at xe_eudebug@discovery-empty.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at xe_eudebug@discovery-empty.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: [SKIP][535] ([Intel XE#1130]) -> [SKIP][536] ([Intel XE#2322]) +7 other tests skip [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][537] ([Intel XE#2322]) -> [SKIP][538] ([Intel XE#1130]) +12 other tests skip [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [SKIP][539] ([Intel XE#1130]) -> [SKIP][540] ([Intel XE#288]) +3 other tests skip [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-dg2-434/igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][541] ([Intel XE#1192]) -> [SKIP][542] ([Intel XE#2833]) [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at xe_live_ktest@xe_eudebug.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][543] ([Intel XE#1130]) -> [SKIP][544] ([Intel XE#2459] / [Intel XE#2596]) [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_media_fill@media-fill.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-4/igt at xe_media_fill@media-fill.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-bmg: [SKIP][545] ([Intel XE#4045]) -> [SKIP][546] ([Intel XE#1130]) [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at xe_mmap@pci-membarrier-bad-pagesize.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-1/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_mmap@small-bar: - shard-bmg: [SKIP][547] ([Intel XE#586]) -> [SKIP][548] ([Intel XE#1130]) [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt at xe_mmap@small-bar.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at xe_mmap@small-bar.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][549] ([Intel XE#1130]) -> [SKIP][550] ([Intel XE#1420]) [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_pat@pat-index-xehpc.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-5/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][551] ([Intel XE#1130]) -> [SKIP][552] ([Intel XE#2245]) [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_pat@pat-index-xelp.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at xe_pat@pat-index-xelp.html * igt at xe_pat@pat-index-xelpg: - shard-bmg: [SKIP][553] ([Intel XE#1130]) -> [SKIP][554] ([Intel XE#2236]) [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at xe_pat@pat-index-xelpg.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-3/igt at xe_pat@pat-index-xelpg.html * igt at xe_pm@d3cold-multiple-execs: - shard-bmg: [SKIP][555] ([Intel XE#2284]) -> [SKIP][556] ([Intel XE#1130]) +1 other test skip [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt at xe_pm@d3cold-multiple-execs.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at xe_pm@d3cold-multiple-execs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: [SKIP][557] ([Intel XE#1130]) -> [SKIP][558] ([Intel XE#2284]) +2 other tests skip [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt at xe_pm@s2idle-d3cold-basic-exec.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-6/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][559] ([Intel XE#944]) -> [SKIP][560] ([Intel XE#1130]) +5 other tests skip [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt at xe_query@multigpu-query-invalid-cs-cycles.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-7/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-bmg: [SKIP][561] ([Intel XE#1130]) -> [SKIP][562] ([Intel XE#944]) +2 other tests skip [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/shard-bmg-8/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html [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#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [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#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169 [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#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#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#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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [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#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026 [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#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [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#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [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#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#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#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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3861 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4016]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4016 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [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#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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_8195 -> IGTPW_12453 * Linux: xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c -> xe-2503-d8c883b9b7702b39eb913a72fd7158ad9a6ea11f IGTPW_12453: 8f67778e3bb90960a69048a954529e876fa23f64 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8195: 8195 xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c xe-2503-d8c883b9b7702b39eb913a72fd7158ad9a6ea11f: d8c883b9b7702b39eb913a72fd7158ad9a6ea11f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12453/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From jani.saarinen at intel.com Fri Jan 17 16:31:21 2025 From: jani.saarinen at intel.com (Saarinen, Jani) Date: Fri, 17 Jan 2025 16:31:21 +0000 Subject: [PATCH i-g-t v5 0/7] Initial PTL support In-Reply-To: <20250117140541.ugu4xgqnbdbgftkn@kamilkon-desk.igk.intel.com> References: <20241218213654.2734573-1-clinton.a.taylor@intel.com> <20250117140541.ugu4xgqnbdbgftkn@kamilkon-desk.igk.intel.com> Message-ID: Hi, > -----Original Message----- > From: Kamil Konieczny > Sent: Friday, 17 January 2025 16.06 > To: igt-dev at lists.freedesktop.org > Cc: Taylor, Clinton A ; Juha-Pekka Heikkil? > ; Auld, Matthew > ; Atwood, Matthew S > ; Roper, Matthew D > ; Saarinen, Jani ; > Cavitt, Jonathan ; Jahagirdar, Akshata > ; Pottumuttu, Sai Teja > > Subject: Re: [PATCH i-g-t v5 0/7] Initial PTL support > > Hi Clint, > On 2024-12-18 at 13:36:47 -0800, Clint Taylor wrote: > > Initial set of patches to enable testing Pantherlake. > > Applied, thanks! Great. > > Regards, > Kamil > > > > > Juha-pekka Heikkila (4): > > tests/kms_addfb_basic: fix x-tiled tests for case when there is no > > x-tile > > tests/intel/kms_draw_crc: fix x-tiled tests for case when there is no > > x-tile > > tests/kms_cursor_legacy: flip_vs_cursor_busy_crc was requiring any > > driver but used intel x-tile > > tests/intel/kms_frontbuffer_tracking: fix x-tiled tests for case when > > there is no x-tile > > > > Matt Atwood (1): > > lib/intel_chipset: add pantherlake definition and support > > > > Matthew Auld (2): > > lib/intel_pat: extend for xe3 > > tests/intel/xe_pat: extend for xe3 > > > > lib/intel_chipset.h | 2 ++ > > lib/intel_device_info.c | 13 +++++++++++++ > > lib/intel_pat.c | 3 ++- > > tests/intel/kms_draw_crc.c | 6 ++++-- > > tests/intel/kms_frontbuffer_tracking.c | 20 ++++++++++++++++---- > > tests/intel/xe_pat.c | 4 ++-- > > tests/kms_addfb_basic.c | 22 ++++++++++++---------- > > tests/kms_cursor_legacy.c | 2 +- > > 8 files changed, 52 insertions(+), 20 deletions(-) > > > > -- > > 2.25.1 > > From kamil.konieczny at linux.intel.com Fri Jan 17 17:35:26 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Fri, 17 Jan 2025 18:35:26 +0100 Subject: [PATCH i-g-t] RFC: runner: Add total disk limit option Message-ID: <20250117173526.72550-1-kamil.konieczny@linux.intel.com> Disk limit option counts written bytes only for current subtest. It also reset its accounting after a new (dynamic) subtest start so, when a subtest have many sub-subtests, that makes it hard to predict upper end size for complete run. Try to limit it a little harder and allow imposing a total size for bytes written to disk with a new option --disk-total-limit Cc: Petri Latvala Cc: Ryszard Knop Signed-off-by: Kamil Konieczny --- I am not so sure if this should be total limit for a single run for all tests, or a total limit for only one single test, or both with two new options. --- runner/executor.c | 66 +++++++++++++++++++++++++++++++++-------------- runner/settings.c | 43 +++++++++++++++++++++++++++--- runner/settings.h | 1 + 3 files changed, 86 insertions(+), 24 deletions(-) diff --git a/runner/executor.c b/runner/executor.c index 999e7f719..be70da5df 100644 --- a/runner/executor.c +++ b/runner/executor.c @@ -769,10 +769,24 @@ static const char *show_kernel_task_state(const char *msg) } static bool disk_usage_limit_exceeded(struct settings *settings, - size_t disk_usage) + size_t disk_usage, + size_t disk_total, bool *was_total) { - return settings->disk_usage_limit != 0 && - disk_usage > settings->disk_usage_limit; + if (settings->disk_usage_limit && + disk_usage > settings->disk_usage_limit) { + *was_total = false; + + return true; + } + + if (settings->disk_total_limit && + disk_total > settings->disk_total_limit) { + *was_total = true; + + return true; + } + + return false; } static const char *need_to_timeout(struct settings *settings, @@ -781,9 +795,11 @@ static const char *need_to_timeout(struct settings *settings, double time_since_activity, double time_since_subtest, double time_since_kill, - size_t disk_usage) + size_t disk_usage, + size_t disk_total_usage) { int decrease = 1; + bool bdisk; if (killed) { /* @@ -839,8 +855,8 @@ static const char *need_to_timeout(struct settings *settings, return show_kernel_task_state("Inactivity timeout exceeded. Killing the current test with SIGQUIT.\n"); } - if (disk_usage_limit_exceeded(settings, disk_usage)) - return "Disk usage limit exceeded.\n"; + if (disk_usage_limit_exceeded(settings, disk_usage, disk_total_usage, &bdisk)) + return bdisk ? "Disk total limit exceeded.\n" : "Disk usage limit exceeded.\n"; return NULL; } @@ -902,6 +918,7 @@ static int monitor_output(pid_t child, int kmsgfd, int sigfd, int *outputs, double *time_spent, + size_t *total_disk, struct settings *settings, char **abortreason, bool *abort_already_written) @@ -1161,6 +1178,7 @@ static int monitor_output(pid_t child, if (packet->type == PACKETTYPE_SUBTEST_START || packet->type == PACKETTYPE_DYNAMIC_SUBTEST_START) { time_last_subtest = time_now; + *total_disk += disk_usage; disk_usage = 0; if (results_received && !aborting) { @@ -1354,6 +1372,7 @@ static int monitor_output(pid_t child, if (!aborting) { bool timeoutresult = false; + bool btotaldisk = false; if (killed) timeoutresult = true; @@ -1405,27 +1424,30 @@ static int monitor_output(pid_t child, * Same goes for stopping because we * exceeded the disk usage limit. */ - if (killed && disk_usage_limit_exceeded(settings, disk_usage)) { - timeoutresult = false; - - if (socket_comms_used) { - struct runnerpacket *message; - char killmsg[256]; + if (killed && disk_usage_limit_exceeded(settings, disk_usage, *total_disk, &btotaldisk)) { + char killmsg[256]; + timeoutresult = false; + if (btotaldisk) snprintf(killmsg, sizeof(killmsg), - "runner: This test was killed due to exceeding disk usage limit. " + "runner: This test was killed due to exceeding disk useage limit. " "(Used %zd bytes, limit %zd)\n", disk_usage, settings->disk_usage_limit); + else + snprintf(killmsg, sizeof(killmsg), + "runner: This test was killed due to exceeding total disk limit. " + "(Total used %zd bytes, total disk limit %zd)\n", + *total_disk, + settings->disk_total_limit); + + if (socket_comms_used) { + struct runnerpacket *message; message = runnerpacket_log(STDOUT_FILENO, killmsg); write_packet_with_canary(outputs[_F_SOCKET], message, settings->sync); free(message); } else { - dprintf(outputs[_F_OUT], - "\nrunner: This test was killed due to exceeding disk usage limit. " - "(Used %zd bytes, limit %zd)\n", - disk_usage, - settings->disk_usage_limit); + dprintf(outputs[_F_OUT], "\n%s", killmsg); if (settings->sync) fdatasync(outputs[_F_OUT]); } @@ -1479,7 +1501,8 @@ static int monitor_output(pid_t child, igt_time_elapsed(&time_last_activity, &time_now), igt_time_elapsed(&time_last_subtest, &time_now), igt_time_elapsed(&time_killed, &time_now), - disk_usage); + disk_usage, + *total_disk); if (timeout_reason) { if (killed == SIGKILL) { @@ -1707,6 +1730,7 @@ static char *entry_display_name(struct job_list_entry *entry) static int execute_next_entry(struct execute_state *state, size_t total, double *time_spent, + size_t *total_disk, struct settings *settings, struct job_list_entry *entry, int testdirfd, int resdirfd, @@ -1827,7 +1851,7 @@ static int execute_next_entry(struct execute_state *state, result = monitor_output(child, outfd, errfd, socketfd, kmsgfd, sigfd, - outputs, time_spent, settings, + outputs, time_spent, total_disk, settings, abortreason, abort_already_written); out_kmsgfd: @@ -2360,6 +2384,7 @@ bool execute(struct execute_state *state, struct utsname unamebuf; sigset_t sigmask; double time_spent = 0.0; + size_t total_disk_used = 0; bool status = true; char *last_test = NULL; @@ -2516,6 +2541,7 @@ bool execute(struct execute_state *state, result = execute_next_entry(state, job_list->size, &time_spent, + &total_disk_used, settings, &job_list->entries[state->next], testdirfd, resdirfd, diff --git a/runner/settings.c b/runner/settings.c index 92fd42ea6..afe4357ab 100644 --- a/runner/settings.c +++ b/runner/settings.c @@ -20,6 +20,7 @@ enum { OPT_ABORT_ON_ERROR, OPT_DISK_USAGE_LIMIT, + OPT_DISK_TOTAL_LIMIT, OPT_TEST_LIST, OPT_IGNORE_MISSING, OPT_PIGLIT_DMESG, @@ -183,15 +184,14 @@ static size_t char_to_multiplier(char c) return 0; } -static bool parse_usage_limit(struct settings *settings, const char *optarg) +static bool read_number_with_multiplier(size_t *value, struct settings *settings, const char *optarg) { - size_t value; char *endptr = NULL; if (!optarg) return false; - value = strtoul(optarg, &endptr, 10); + *value = strtoul(optarg, &endptr, 10); if (*endptr) { size_t multiplier = char_to_multiplier(*endptr); @@ -199,10 +199,33 @@ static bool parse_usage_limit(struct settings *settings, const char *optarg) if (multiplier == 0) return false; - value *= multiplier; + *value *= multiplier; } + return true; +} + +static bool parse_usage_limit(struct settings *settings, const char *optarg) +{ + size_t value; + + if (!read_number_with_multiplier(&value, settings, optarg)) + return false; + settings->disk_usage_limit = value; + + return true; +} + +static bool parse_total_limit(struct settings *settings, const char *optarg) +{ + size_t value; + + if (!read_number_with_multiplier(&value, settings, optarg)) + return false; + + settings->disk_total_limit = value; + return true; } @@ -262,6 +285,9 @@ static const char *usage_str = " kernel logs, exceed the given limit in bytes. The limit\n" " parameter can use suffixes k, M and G for kilo/mega/gigabytes,\n" " respectively. Limit of 0 (default) disables the limit.\n" + " --disk-total-limit \n" + " Stop the run if logging from all tests up to current one\n" + " exceeds the given limit in bytes. Limit of 0 (default) disables it.\n" " --use-watchdog Use hardware watchdog for lethal enforcement of the\n" " above timeout. Killing the test process is still\n" " attempted at timeout trigger.\n" @@ -667,6 +693,7 @@ bool parse_options(int argc, char **argv, {"environment", required_argument, NULL, OPT_ENVIRONMENT}, {"abort-on-monitored-error", optional_argument, NULL, OPT_ABORT_ON_ERROR}, {"disk-usage-limit", required_argument, NULL, OPT_DISK_USAGE_LIMIT}, + {"disk-total-limit", required_argument, NULL, OPT_DISK_TOTAL_LIMIT}, {"facts", no_argument, NULL, OPT_FACTS}, {"sync", no_argument, NULL, OPT_SYNC}, {"log-level", required_argument, NULL, OPT_LOG_LEVEL}, @@ -739,6 +766,12 @@ bool parse_options(int argc, char **argv, goto error; } break; + case OPT_DISK_TOTAL_LIMIT: + if (!parse_total_limit(settings, optarg)) { + usage(stderr, "Cannot parse disk total limit"); + goto error; + } + break; case OPT_FACTS: settings->facts = true; break; @@ -1098,6 +1131,7 @@ bool serialize_settings(struct settings *settings) SERIALIZE_LINE(f, settings, abort_mask, "%d"); SERIALIZE_LINE(f, settings, disk_usage_limit, "%zd"); + SERIALIZE_LINE(f, settings, disk_total_limit, "%zd"); if (settings->test_list) SERIALIZE_LINE(f, settings, test_list, "%s"); if (settings->name) @@ -1171,6 +1205,7 @@ bool read_settings_from_file(struct settings *settings, FILE *f) int numval = atoi(val); PARSE_LINE(settings, name, val, abort_mask, numval); PARSE_LINE(settings, name, val, disk_usage_limit, strtoul(val, NULL, 10)); + PARSE_LINE(settings, name, val, disk_total_limit, strtoul(val, NULL, 10)); PARSE_LINE(settings, name, val, test_list, val ? strdup(val) : NULL); PARSE_LINE(settings, name, val, name, val ? strdup(val) : NULL); PARSE_LINE(settings, name, val, dry_run, numval); diff --git a/runner/settings.h b/runner/settings.h index f69f09778..0345b0e69 100644 --- a/runner/settings.h +++ b/runner/settings.h @@ -49,6 +49,7 @@ struct environment_variable { struct settings { int abort_mask; size_t disk_usage_limit; + size_t disk_total_limit; char *test_list; char *name; bool dry_run; -- 2.48.1 From kamil.konieczny at linux.intel.com Fri Jan 17 18:01:05 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Fri, 17 Jan 2025 19:01:05 +0100 Subject: [PATCH i-g-t] tests/xe: Add xe_cg_dmem test In-Reply-To: <20250115115512.84520-1-dev@lankhorst.se> References: <20250115115512.84520-1-dev@lankhorst.se> Message-ID: <20250117180105.js24gb7awykxt2v3@kamilkon-desk.igk.intel.com> Hi Maarten, On 2025-01-15 at 12:55:11 +0100, Maarten Lankhorst wrote: I have not read it, I have only few comments on test names for now. > This adds test to ensure the basic functionality of dmem works as s/dmem/cgroup limits for device memory/ > expected on discrete platforms. Could you give a link to lore.kernel.org for kernel patchset? > > Signed-off-by: Maarten Lankhorst > --- > tests/intel/xe_cg_dmem.c | 379 +++++++++++++++++++++++++++++++++++++++ Test name is imho a little too much a shortcut, what about xe_cgroups or xe_cgroup2? > tests/meson.build | 1 + > 2 files changed, 380 insertions(+) > create mode 100644 tests/intel/xe_cg_dmem.c > > diff --git a/tests/intel/xe_cg_dmem.c b/tests/intel/xe_cg_dmem.c > new file mode 100644 > index 000000000..2924fd973 > --- /dev/null > +++ b/tests/intel/xe_cg_dmem.c > @@ -0,0 +1,379 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright ? 2023 Intel Corporation ------------------^^^^ Is it first public release? If yes, it should be 2025. > + */ > + > +/** > + * TEST: Check cgroup VRAM allocation limits > + * Category: Software building block > + * Sub-category: cgroup > + * Test category: functionality test > + * Run type: BAT > + * Description: Test that the dmem cgroup works as intended. > + * Mega feature: General Core features > + * Functionality: cgroup Sort alphabetically. > +*/ > + > +#include Same here, sort system header string.h after fcntl.h You could have unistd.h as first (this is an exception) > +#include > +#include > +#include > + > +#include "igt.h" > +#include "igt_device.h" > +#include "igt_sysfs.h" > + > +#include "xe_drm.h" > +#include "xe/xe_ioctl.h" > +#include "xe/xe_query.h" > + > +static int cgfd = -1, igtcg = -1, cg1 = -1, cg1_1 = -1, cg1_2 = -1, cg2 = -1; > +static char cgid[64]; > + > +/* > + * cgroups: > + * / cg1_1 > + * /sys/fs/cgroup (cgfd) / igtcg / cg1 /- cg1_2 > + * / cg2 > + */ > + > +static void set_cgrp(int cg) > +{ > + igt_sysfs_set_u32(cg, "cgroup.procs", getpid()); > +} > + > +static inline void set_cg_val(int cg, const char *resource, int64_t val) > +{ > + if (val >= 0) > + igt_assert(igt_sysfs_printf(cg, resource, "%s %"PRIu64, cgid, val)); > + else > + igt_assert(igt_sysfs_printf(cg, resource, "%s max", cgid)); > +} > + > +static void set_cgrp_min(int cg, int64_t min) > +{ > + set_cg_val(cg, "dmem.min", min); > +} > + > +static void set_cgrp_low(int cg, int64_t low) > +{ > + set_cg_val(cg, "dmem.low", low); > +} > + > +static void set_cgrp_max(int cg, int64_t max) > +{ > + set_cg_val(cg, "dmem.max", max); > +} > + > +static int64_t get_cg_val(int cg, const char *resource) > +{ > + char *devstr, *valstr, *str; > + int64_t val; > + > + str = igt_sysfs_get(cg, resource); > + igt_assert(str); > + devstr = strstr(str, cgid); > + igt_assert(devstr); > + > + /* Only care about the line describing this region, terminate if needed */ > + devstr = strtok(devstr, "\n"); > + > + valstr = strstr(devstr, " ") + 1; > + if (!strcmp(valstr, "max")) > + val = INT64_MAX; > + else > + val = strtoll(valstr, NULL, 10); > + > + free(str); > + return val; > +} > + > +static int64_t get_cgrp_min(int cg) > +{ > + return get_cg_val(cg, "dmem.min"); > +} > + > +static int64_t get_cgrp_low(int cg) > +{ > + return get_cg_val(cg, "dmem.low"); > +} > + > +static int64_t get_cgrp_max(int cg) > +{ > + return get_cg_val(cg, "dmem.max"); > +} > + > +static int64_t get_cgrp_current(int cg) > +{ > + return get_cg_val(cg, "dmem.current"); > +} > + > +static void assert_all_cgs_empty(void) > +{ > + igt_assert(!get_cgrp_current(igtcg)); > +} > + > +static void reset_cgs(void) > +{ > + int i, fds[] = { igtcg, cg1, cg1_1, cg1_2, cg2 }; > + set_cgrp(cgfd); > + > + for (i = 0; i < ARRAY_SIZE(fds); i++) { > + int cg = fds[i]; > + > + set_cgrp_min(cg, 0); > + set_cgrp_low(cg, 0); > + set_cgrp_max(cg, -1); > + } > +} > + > +static void cleanup_cg(int sig) > +{ > + /* Move self to root so we can rmdir */ > + set_cgrp(cgfd); > + > + unlinkat(cg1, "cg1_1", AT_REMOVEDIR); > + unlinkat(cg1, "cg1_2", AT_REMOVEDIR); > + unlinkat(igtcg, "cg1", AT_REMOVEDIR); > + unlinkat(igtcg, "cg2", AT_REMOVEDIR); > + unlinkat(cgfd, "igtcg", AT_REMOVEDIR); > + > + /* leak fd's at exit, nobody cares */ > +} > + > +static int mkcgrp(int fd, const char *name) > +{ > + int err; > + > + /* Check and enable controller */ > + igt_require(igt_sysfs_set(fd, "cgroup.subtree_control", "+dmem")); > + > + err = mkdirat(fd, name, 0755); > + if (!err || (err == -1 && errno == EEXIST)) > + err = openat(fd, name, O_RDONLY); > + igt_assert(err >= 0); > + return err; > +} > + > +static void create_cgroups(void) > +{ > + char *controllers; > + cgfd = open("/sys/fs/cgroup", O_RDONLY); > + igt_require(cgfd >= 0); > + > + controllers = igt_sysfs_get(cgfd, "cgroup.controllers"); > + igt_require(controllers && strstr(controllers, "dmem")); > + free(controllers); > + > + igt_install_exit_handler(cleanup_cg); > + > + /* Populate cg's */ > + igtcg = mkcgrp(cgfd, "igtcg"); > + cg1 = mkcgrp(igtcg, "cg1"); > + cg1_1 = mkcgrp(cg1, "cg1_1"); > + cg1_2 = mkcgrp(cg1, "cg1_2"); > + cg2 = mkcgrp(igtcg, "cg2"); > +} > + > +static int bo_create_at(struct xe_device *xe, int cg, uint64_t bo_size) > +{ > + struct drm_xe_gem_create create = { > + .placement = vram_if_possible(xe->fd, 0), > + .cpu_caching = __xe_default_cpu_caching(xe->fd, create.placement, 0), > + .size = bo_size, > + }; > + > + set_cgrp(cg); > + > + if (igt_ioctl(xe->fd, DRM_IOCTL_XE_GEM_CREATE, &create) < 0) { > + igt_debug("Creating bo with size %"PRIu64" returned -1/%m\n", bo_size); > + return -errno; > + } > + > + igt_debug("Creating bo with size %"PRIu64" and handle %u\n", bo_size, create.handle); > + return create.handle; > +} > + > +/** > + * SUBTEST: functional > + * Description: Test if written values can be read back, > + * to rule out copy/paste errors. > + */ > +static void test_functional(void) > +{ > + set_cgrp_min(igtcg, 12345); > + set_cgrp_low(igtcg, 54321); > + set_cgrp_max(igtcg, 67890); > + > + igt_assert_eq_u64(get_cgrp_min(igtcg), 12345); > + igt_assert_eq_u64(get_cgrp_low(igtcg), 54321); > + igt_assert_eq_u64(get_cgrp_max(igtcg), 67890); > + > + set_cgrp_min(igtcg, -1); > + set_cgrp_low(igtcg, -1); > + set_cgrp_max(igtcg, -1); > + > + igt_assert_eq_u64(get_cgrp_min(igtcg), INT64_MAX); > + igt_assert_eq_u64(get_cgrp_low(igtcg), INT64_MAX); > + igt_assert_eq_u64(get_cgrp_max(igtcg), INT64_MAX); > + > + set_cgrp_min(igtcg, 0); > + set_cgrp_low(igtcg, 0); > + set_cgrp_max(igtcg, 0); > + igt_assert_eq_u64(get_cgrp_low(igtcg), 0); > + igt_assert_eq_u64(get_cgrp_max(igtcg), 0); > + igt_assert_eq_u64(get_cgrp_min(igtcg), 0); > +} > + > +/** > + * SUBTEST: test-simple-max > + * Description: Test that cgroup max limits are respected between > + * various nestings of cgroups, and correct cgroups are evicted. > + */ > +static void test_simple_max(struct xe_device *xe) > +{ > + uint64_t bo_size = xe->default_alignment; > + int bo1, bo1_1, bo1_2; > + > + /* Test if we set cgroup limits, that they are respected */ > + assert_all_cgs_empty(); > + > + reset_cgs(); > + > + set_cgrp_max(igtcg, 0); > + igt_assert(get_cgrp_max(igtcg) == 0); > + set_cgrp_max(cg1, 2 * bo_size); > + set_cgrp_max(cg1_1, 2 * bo_size); > + set_cgrp_max(cg1_2, bo_size); > + set_cgrp_max(cg2, -1); > + igt_assert(get_cgrp_max(cg2) == INT64_MAX); > + > + /* First check if top cg limit (of igtcg) is not ignored */ > + igt_assert_eq(-ENOMEM, bo_create_at(xe, cg1_1, bo_size)); > + > + assert_all_cgs_empty(); > + set_cgrp_max(igtcg, 4 * bo_size); > + > + /* Same cg limit? */ > + bo1_1 = bo_create_at(xe, cg1_1, 2 * bo_size); > + igt_assert(bo1_1 > 0); > + > + set_cgrp_max(cg1, 3 * bo_size); > + bo1_2 = bo_create_at(xe, cg1_2, bo_size); > + igt_assert(bo1_2 > 0); > + > + /* Create a too big bo and check if 1_2 is evicted */ > + igt_assert_eq(-ENOMEM, bo_create_at(xe, cg1_2, 4 * bo_size)); > + igt_assert_eq_u64(0, get_cgrp_current(cg1_2)); > + > + gem_close(xe->fd, bo1_2); > + bo1_2 = bo_create_at(xe, cg1_2, bo_size); > + igt_assert(bo1_2 > 0); > + > + set_cgrp_max(cg1, 4 * bo_size); > + bo1 = bo_create_at(xe, cg1_1, bo_size); > + igt_assert(bo1 > 0); > + > + gem_close(xe->fd, bo1_2); > + gem_close(xe->fd, bo1_1); > + gem_close(xe->fd, bo1); > +} > + > +static void create_cg1_min(struct xe_device *xe, int *bo1_1, int *bo1_2) > +{ > + uint64_t bo_size = xe->default_alignment; > + > + if (*bo1_1 > 0) > + gem_close(xe->fd, *bo1_1); > + > + if (*bo1_2 > 0) > + gem_close(xe->fd, *bo1_2); > + > + *bo1_1 = bo_create_at(xe, cg1_1, bo_size); > + igt_assert(*bo1_1 > 0); > + > + *bo1_2 = bo_create_at(xe, cg1_2, bo_size); > + igt_assert(*bo1_2 > 0); > +} > + > +/** > + * SUBTEST: test-simple-min > + * Description: Test that cgroup min limits are respected between > + * various nestings of cgroups, and correct cgroups are evicted. > + */ > +static void test_simple_min(struct xe_device *xe) > +{ > + uint64_t bo_size = xe->default_alignment; > + int bo1_1 = -1, bo1_2 = -1, bo2; > + > + assert_all_cgs_empty(); > + reset_cgs(); > + > + /* set static max of 2 bo's for testing, allow protection as well on cg1 */ > + set_cgrp_max(igtcg, 2 * bo_size); > + set_cgrp_min(igtcg, 2 * bo_size); > + set_cgrp_min(cg1, 2 * bo_size); > + set_cgrp_min(cg1_1, bo_size); > + set_cgrp_min(cg1_2, bo_size); > + > + create_cg1_min(xe, &bo1_1, &bo1_2); > + > + igt_assert_eq_u64(get_cgrp_current(cg1), 2 * bo_size); > + > + bo2 = bo_create_at(xe, cg2, bo_size); > + igt_assert_eq_u64(get_cgrp_current(cg1), 2 * bo_size); > + igt_assert_eq(bo2, -ENOMEM); > + > + /* Unprotect one */ > + set_cgrp_min(cg1, bo_size); > + set_cgrp_min(cg1_2, 0); > + > + bo2 = bo_create_at(xe, cg2, bo_size); > + /* Verify cg1_2 is evicted, cg1_1 not */ > + igt_assert_eq_u64(get_cgrp_current(cg1_2), 0); > + igt_assert_eq_u64(get_cgrp_current(cg1), bo_size); > + igt_assert_eq_u64(get_cgrp_current(igtcg), 2 * bo_size); > + igt_assert(bo2 > 0); > + > + gem_close(xe->fd, bo2); > + gem_close(xe->fd, bo1_1); > + gem_close(xe->fd, bo1_2); > +} > + > +igt_main > +{ > + struct xe_device *xe; > + int fd; > + > + igt_fixture { > + char *data; > + char busid[32]; > + > + fd = drm_open_driver(DRIVER_XE); > + xe = xe_device_get(fd); > + > + /* XXX: Easier way to determine busid? */ > + igt_device_get_pci_slot_name(fd, busid); > + > + /* For now, require VRAM as shared memory lacks support */ > + igt_require(xe->has_vram); > + sprintf(cgid, "drm/%s/vram0", busid); > + > + create_cgroups(); > + > + data = igt_sysfs_get(cgfd, "dmem.capacity"); > + igt_debug("Contents: %s\n", data); > + /* Ensure our driver is found" */ > + igt_require_f(strstr(data, busid), "Is driver xe/%s supported by dmem controller?\n", busid); > + free(data); > + } > + > + igt_subtest("functional") imho better: dmem-basic > + test_functional(); > + > + igt_subtest("test-simple-max") Here also: dmem-simple-max > + test_simple_max(xe); > + > + igt_subtest("test-simple-min") Here also: dmem-simple-min Btw didn't we use lmem in i915 counterparts? Regards, Kamil > + test_simple_min(xe); > +} > diff --git a/tests/meson.build b/tests/meson.build > index a6750d523..f2a0dea88 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -273,6 +273,7 @@ intel_kms_progs = [ > intel_xe_progs = [ > 'xe_wedged', > 'xe_ccs', > + 'xe_cg_dmem', > 'xe_create', > 'xe_compute', > 'xe_compute_preempt', > -- > 2.43.0 > From patchwork at emeril.freedesktop.org Fri Jan 17 18:21:02 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 18:21:02 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_series_starting_with_=5Bi-?= =?utf-8?q?g-t=2Cv3=2C1/1=5D_tests/intel/xe=5Feudebug=3A_refactor_exec-queue?= =?utf-8?q?-placements_test?= In-Reply-To: <20250117082055.154635-1-jan.sokolowski@intel.com> References: <20250117082055.154635-1-jan.sokolowski@intel.com> Message-ID: <173713806262.801064.5335940064632828883@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test URL : https://patchwork.freedesktop.org/series/143661/ State : failure == Summary == CI Bug Log - changes from XEIGT_8196_full -> XEIGTPW_12454_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12454_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12454_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_12454_full: ### IGT changes ### #### Possible regressions #### * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][3] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_psr@psr2-primary-page-flip at edp-1: - shard-lnl: NOTRUN -> [FAIL][5] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-7/igt at kms_psr@psr2-primary-page-flip at edp-1.html #### Warnings #### * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [SKIP][6] ([Intel XE#2423]) -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt at xe_sriov_auto_provisioning@fair-allocation}: - shard-bmg: [SKIP][8] ([Intel XE#1130]) -> [SKIP][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at xe_sriov_auto_provisioning@fair-allocation.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt at xe_sriov_auto_provisioning@fair-allocation.html * {igt at xe_sriov_auto_provisioning@resources-released-on-vfs-disabling}: - shard-lnl: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt at xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html Known issues ------------ Here are the changes found in XEIGTPW_12454_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_setmaster@master-drop-set-shared-fd: - shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#3453]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt at core_setmaster@master-drop-set-shared-fd.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at core_setmaster@master-drop-set-shared-fd.html * igt at core_setmaster@master-drop-set-user: - shard-bmg: [PASS][13] -> [FAIL][14] ([Intel XE#3249]) +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at core_setmaster@master-drop-set-user.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at core_setmaster@master-drop-set-user.html * igt at fbdev@eof: - shard-bmg: [PASS][15] -> [SKIP][16] ([Intel XE#2134]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at fbdev@eof.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at fbdev@eof.html - shard-dg2-set2: [PASS][17] -> [SKIP][18] ([Intel XE#2134]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt at fbdev@eof.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at fbdev@eof.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1125]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-3/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3157]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#873]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#3768]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#664]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-5/igt at kms_async_flips@test-cursor.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: [PASS][24] -> [FAIL][25] ([Intel XE#3908]) +1 other test fail [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-8/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1407]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg2-set2: [PASS][27] -> [SKIP][28] ([Intel XE#2136]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-432/igt at kms_big_fb@4-tiled-8bpp-rotate-180.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_big_fb@4-tiled-8bpp-rotate-180.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#316]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2327]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@linear-64bpp-rotate-180: - shard-lnl: NOTRUN -> [DMESG-WARN][32] ([Intel XE#1725]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-6/igt at kms_big_fb@linear-64bpp-rotate-180.html * igt at kms_big_fb@x-tiled-addfb: - shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2136]) +28 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_big_fb@x-tiled-addfb.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_big_fb@x-tiled-addfb.html * igt at kms_big_fb@y-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#1124]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_big_fb@y-tiled-16bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1124]) +7 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-2/igt at kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#1124]) +12 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#2314] / [Intel XE#2894]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2191]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#2191]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#367]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-2-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#367]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1512]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#2887]) +14 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#2907]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#455] / [Intel XE#787]) +32 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#3432]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][49] -> [ABORT][50] ([Intel XE#2625]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2887]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#787]) +160 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2136]) +20 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_cdclk@mode-transition at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#314]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_cdclk@mode-transition at pipe-d-dp-4.html * igt at kms_cdclk@plane-scaling at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1152]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-435/igt at kms_cdclk@plane-scaling at pipe-b-dp-4.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#306]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-negative: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#306]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#373]) +13 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#373]) +7 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2252]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt at kms_content_protection@content-type-change: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#3278]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#307]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#307]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2423]) +23 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_content_protection@legacy.html - shard-dg2-set2: NOTRUN -> [FAIL][66] ([Intel XE#1178]) +3 other tests fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][68] ([Intel XE#1178]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt at kms_content_protection@srm at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#2321]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-7/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1424]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-5/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#455]) +15 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-435/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#309]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-2/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#323]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#2291]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2291]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][77] -> [FAIL][78] ([Intel XE#1475]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/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-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#323]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1508]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-2/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dsc@dsc-fractional-bpp: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#2244]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#702]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-5/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#1137]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_feature_discovery@dp-mst.html - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1137]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][85] ([Intel XE#301]) +3 other tests fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/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-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][86] ([Intel XE#3321]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: [PASS][87] -> [SKIP][88] ([Intel XE#2316]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_flip@2x-flip-vs-panning-vs-hang.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@2x-flip-vs-rmfb: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1421]) +5 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-7/igt at kms_flip@2x-flip-vs-rmfb.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at c-dp4: - shard-dg2-set2: [PASS][90] -> [FAIL][91] ([Intel XE#301]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank-interruptible at c-dp4.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank-interruptible at c-dp4.html * igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#2136] / [Intel XE#2351]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/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]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/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-ytile-to-64bpp-ytile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1401]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-6/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2293]) +6 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#651]) +36 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#651]) +11 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-7/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2311]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2312]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [FAIL][103] ([Intel XE#2333]) +3 other tests fail [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2136]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#656]) +34 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2313]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#653]) +38 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1158]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_getfb@getfb2-accept-ccs: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2340]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1470]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-6/igt at kms_hdmi_inject@inject-4k.html * igt at kms_invalid_mode@clock-too-high: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1450] / [Intel XE#2568]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt at kms_invalid_mode@clock-too-high.html * igt at kms_invalid_mode@clock-too-high at pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1450]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt at kms_invalid_mode@clock-too-high at pipe-a-edp-1.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_8196/shard-dg2-436/igt at kms_plane_cursor@viewport.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_plane_cursor@viewport.html * igt at kms_plane_lowres@tiling-4: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#599]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt at kms_plane_lowres@tiling-4.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: NOTRUN -> [FAIL][116] ([Intel XE#361]) +1 other test fail [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-432/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#2763]) +7 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2763]) +8 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-b.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2763]) +20 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_dc@dc5-dpms-negative: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1131]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-3/igt at kms_pm_dc@dc5-dpms-negative.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg2-set2: [PASS][122] -> [SKIP][123] ([Intel XE#2446]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt at kms_pm_rpm@modeset-lpsp-stress.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-stress-extra-wait: - shard-bmg: [PASS][124] -> [SKIP][125] ([Intel XE#2446]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at kms_pm_rpm@modeset-stress-extra-wait.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_pm_rpm@modeset-stress-extra-wait.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1489]) +14 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2893]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-3/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-bmg: NOTRUN -> [SKIP][128] ([Intel XE#1489]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1122]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2850] / [Intel XE#929]) +20 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_psr@fbc-pr-cursor-plane-move.html * igt at kms_psr@fbc-pr-dpms: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1406]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt at kms_psr@fbc-pr-dpms.html * igt at kms_psr@pr-sprite-render: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt at kms_psr@pr-sprite-render.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#3414] / [Intel XE#3904]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-7/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#3414]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/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: NOTRUN -> [SKIP][135] ([Intel XE#1127]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [PASS][136] -> [SKIP][137] ([Intel XE#2423] / [i915#2575]) +9 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt at kms_rotation_crc@sprite-rotation-180.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_rotation_crc@sprite-rotation-180.html * igt at kms_setmode@invalid-clone-exclusive-crtc: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1435]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-6/igt at kms_setmode@invalid-clone-exclusive-crtc.html * igt at kms_sysfs_edid_timing: - shard-bmg: [PASS][139] -> [FAIL][140] ([Intel XE#1174]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_sysfs_edid_timing.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1500]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@wait-busy-hang: - shard-bmg: [PASS][142] -> [SKIP][143] ([Intel XE#2423]) +122 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_vblank@wait-busy-hang.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_vblank@wait-busy-hang.html * igt at kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1499]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt at kms_vrr@negative-basic.html - shard-bmg: [PASS][145] -> [SKIP][146] ([Intel XE#1499]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_vrr@negative-basic.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#756]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_writeback@writeback-pixel-formats.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: NOTRUN -> [ABORT][148] ([Intel XE#2625]) +2 other tests abort [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-432/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html * igt at xe_compute@ccs-mode-basic: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#1447]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt at xe_compute@ccs-mode-basic.html * igt at xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#1123]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-432/igt at xe_copy_basic@mem-copy-linear-0x3fff.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#1130]) +6 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at xe_eudebug@basic-vm-access-parameters.html - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#2905]) +8 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#3889]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug_online@resume-one: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2905]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at xe_eudebug_online@resume-one.html * igt at xe_evict@evict-beng-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#688]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt at xe_evict@evict-beng-large-multi-vm.html * igt at xe_exec_basic@many-null-rebind: - shard-dg2-set2: [PASS][156] -> [SKIP][157] ([Intel XE#1130]) +10 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt at xe_exec_basic@many-null-rebind.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at xe_exec_basic@many-null-rebind.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2322]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-dg2-set2: [PASS][159] -> [SKIP][160] ([Intel XE#1392]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#1392]) +8 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-5/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt at xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#288]) +34 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt at xe_exec_fault_mode@once-bindexecqueue-imm.html * igt at xe_exec_mix_modes@exec-spinner-interrupted-lr: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#2360]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at xe_exec_mix_modes@exec-spinner-interrupted-lr.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#2905]) +13 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-435/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_exec_threads@threads-hang-fd-userptr-rebind: - shard-dg2-set2: [PASS][165] -> [DMESG-WARN][166] ([Intel XE#3876]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt at xe_exec_threads@threads-hang-fd-userptr-rebind.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-435/igt at xe_exec_threads@threads-hang-fd-userptr-rebind.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#255]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at xe_huc_copy@huc_copy.html * igt at xe_intel_bb@intel-bb-blit-x: - shard-bmg: [PASS][168] -> [SKIP][169] ([Intel XE#1130]) +251 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at xe_intel_bb@intel-bb-blit-x.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at xe_intel_bb@intel-bb-blit-x.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#1192]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-7/igt at xe_live_ktest@xe_bo.html * igt at xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#560]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at xe_media_fill@media-fill.html - shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#560]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-6/igt at xe_media_fill@media-fill.html * igt at xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#1416]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-3/igt at xe_mmap@vram.html * igt at xe_module_load@reload: - shard-bmg: [PASS][174] -> [FAIL][175] ([Intel XE#3546]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at xe_module_load@reload.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at xe_module_load@reload.html * igt at xe_oa@non-privileged-access-vaddr: - shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#2541] / [Intel XE#3573]) +7 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at xe_oa@non-privileged-access-vaddr.html * igt at xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2248]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#2838] / [Intel XE#979]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][179] ([Intel XE#1173]) +1 other test fail [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-435/igt at xe_pm@d3cold-basic-exec.html * igt at xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#2284] / [Intel XE#366]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [PASS][182] -> [ABORT][183] ([Intel XE#1358] / [Intel XE#1794]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt at xe_pm@s2idle-vm-bind-unbind-all.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_pm@s3-basic: - shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#584]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt at xe_pm@s3-basic.html * igt at xe_pm@s3-basic-exec: - shard-dg2-set2: [PASS][185] -> [ABORT][186] ([Intel XE#1358]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt at xe_pm@s3-basic-exec.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-432/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#2284]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_pm@s4-mocs: - shard-lnl: [PASS][188] -> [ABORT][189] ([Intel XE#1358] / [Intel XE#1794]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-7/igt at xe_pm@s4-mocs.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-2/igt at xe_pm@s4-mocs.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#579]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-invalid-extension: - shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#944]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#944]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_spin_batch@spin-all: - shard-bmg: NOTRUN -> [SKIP][193] ([Intel XE#1130]) +35 other tests skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at xe_spin_batch@spin-all.html * igt at xe_sriov_flr@flr-each-isolation: - shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#3342]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt at xe_sriov_flr@flr-each-isolation.html * igt at xe_wedged@wedged-mode-toggle: - shard-dg2-set2: NOTRUN -> [ABORT][195] ([Intel XE#3075] / [Intel XE#3084]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at xe_wedged@wedged-mode-toggle.html #### Possible fixes #### * igt at core_hotunplug@hotreplug-lateclose: - shard-bmg: [SKIP][196] ([Intel XE#1885]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at core_hotunplug@hotreplug-lateclose.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt at core_hotunplug@hotreplug-lateclose.html * igt at core_setmaster@master-drop-set-root: - shard-bmg: [FAIL][198] ([Intel XE#3249]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at core_setmaster@master-drop-set-root.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@info: - shard-bmg: [SKIP][200] ([Intel XE#2134]) -> [PASS][201] +2 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at fbdev@info.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at fbdev@info.html * igt at fbdev@pan: - shard-dg2-set2: [SKIP][202] ([Intel XE#2134]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at fbdev@pan.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt at fbdev@pan.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [FAIL][204] ([Intel XE#911]) -> [PASS][205] +3 other tests pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-4/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [SKIP][206] ([Intel XE#2136]) -> [PASS][207] +25 other tests pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_big_fb@linear-16bpp-rotate-180.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [SKIP][208] ([Intel XE#2136]) -> [PASS][209] +1 other test pass [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][210] ([Intel XE#3862]) -> [PASS][211] +1 other test pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_cursor_crc@cursor-suspend: - shard-bmg: [SKIP][212] ([Intel XE#2423]) -> [PASS][213] +107 other tests pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_cursor_crc@cursor-suspend.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_draw_crc@fill-fb: - shard-dg2-set2: [SKIP][214] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][215] +2 other tests pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_draw_crc@fill-fb.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_draw_crc@fill-fb.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2-set2: [FAIL][216] -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-432/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-435/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][218] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/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: [FAIL][220] ([Intel XE#301]) -> [PASS][221] +6 other tests pass [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [SKIP][222] ([Intel XE#2316]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_flip@2x-wf_vblank-ts-check.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][224] -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2: - shard-bmg: [FAIL][226] ([Intel XE#3321]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp2.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][228] ([Intel XE#2597]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible.html - shard-dg2-set2: [INCOMPLETE][230] ([Intel XE#2597]) -> [PASS][231] +1 other test pass [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt at kms_flip@flip-vs-suspend-interruptible.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3: - shard-bmg: [INCOMPLETE][232] -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend at c-dp4: - shard-dg2-set2: [INCOMPLETE][234] -> [PASS][235] +1 other test pass [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt at kms_flip@flip-vs-suspend at c-dp4.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_flip@flip-vs-suspend at c-dp4.html * igt at kms_flip@plain-flip-fb-recreate-interruptible: - shard-dg2-set2: [INCOMPLETE][236] ([Intel XE#2049]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt at kms_flip@plain-flip-fb-recreate-interruptible.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-432/igt at kms_flip@plain-flip-fb-recreate-interruptible.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [FAIL][238] ([Intel XE#886]) -> [PASS][239] +2 other tests pass [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-4/igt at kms_flip@plain-flip-ts-check-interruptible.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_plane@plane-panning-bottom-right: - shard-dg2-set2: [SKIP][240] ([Intel XE#2423] / [i915#2575]) -> [PASS][241] +11 other tests pass [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_plane@plane-panning-bottom-right.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_plane@plane-panning-bottom-right.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][242] ([Intel XE#718]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_rpm@cursor: - shard-bmg: [SKIP][244] ([Intel XE#2446]) -> [PASS][245] +3 other tests pass [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_pm_rpm@cursor.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt at kms_pm_rpm@cursor.html * igt at kms_psr@fbc-psr2-sprite-blt at edp-1: - shard-lnl: [FAIL][246] -> [PASS][247] +3 other tests pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-1/igt at kms_psr@fbc-psr2-sprite-blt at edp-1.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-5/igt at kms_psr@fbc-psr2-sprite-blt at edp-1.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [FAIL][248] ([Intel XE#899]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-3/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-6/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at xe_exec_basic@multigpu-no-exec-userptr: - shard-dg2-set2: [SKIP][250] ([Intel XE#1392]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-userptr.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at xe_exec_basic@multigpu-no-exec-userptr.html * igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: [SKIP][252] ([Intel XE#1130]) -> [PASS][253] +17 other tests pass [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-bmg: [FAIL][254] ([Intel XE#1999]) -> [PASS][255] +2 other tests pass [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_pm@s2idle-basic: - shard-dg2-set2: [ABORT][256] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt at xe_pm@s2idle-basic.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at xe_pm@s2idle-basic.html * igt at xe_pm@s2idle-exec-after: - shard-dg2-set2: [ABORT][258] ([Intel XE#1358]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-432/igt at xe_pm@s2idle-exec-after.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at xe_pm@s2idle-exec-after.html * igt at xe_pm@s4-vm-bind-userptr: - shard-lnl: [ABORT][260] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-2/igt at xe_pm@s4-vm-bind-userptr.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt at xe_pm@s4-vm-bind-userptr.html * igt at xe_vm@bind-once: - shard-bmg: [SKIP][262] ([Intel XE#1130]) -> [PASS][263] +241 other tests pass [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at xe_vm@bind-once.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at xe_vm@bind-once.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][264] ([Intel XE#873]) -> [SKIP][265] ([Intel XE#2423]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at kms_async_flips@invalid-async-flip.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][266] ([Intel XE#2423]) -> [SKIP][267] ([Intel XE#2385]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][268] ([Intel XE#2327]) -> [SKIP][269] ([Intel XE#2136]) +5 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: [SKIP][270] ([Intel XE#2136]) -> [SKIP][271] ([Intel XE#2327]) +7 other tests skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_big_fb@linear-32bpp-rotate-90.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-dg2-set2: [SKIP][272] ([Intel XE#2136]) -> [SKIP][273] ([Intel XE#316]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_big_fb@linear-64bpp-rotate-90.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][274] ([Intel XE#2136]) -> [SKIP][275] ([Intel XE#1124]) +15 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][276] ([Intel XE#1124]) -> [SKIP][277] ([Intel XE#2136]) +14 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@yf-tiled-addfb: - shard-bmg: [SKIP][278] ([Intel XE#2136]) -> [SKIP][279] ([Intel XE#2328]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][280] ([Intel XE#2136]) -> [SKIP][281] ([Intel XE#607]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: [SKIP][282] ([Intel XE#610]) -> [SKIP][283] ([Intel XE#2136]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][284] ([Intel XE#2136]) -> [SKIP][285] ([Intel XE#1124]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: [SKIP][286] ([Intel XE#2423]) -> [SKIP][287] ([Intel XE#2314] / [Intel XE#2894]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][288] ([Intel XE#2423]) -> [SKIP][289] ([Intel XE#367]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-dg2-set2: [SKIP][290] ([Intel XE#2423] / [i915#2575]) -> [SKIP][291] ([Intel XE#367]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][292] ([Intel XE#367]) -> [SKIP][293] ([Intel XE#2423]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-bmg: [SKIP][294] ([Intel XE#2887]) -> [SKIP][295] ([Intel XE#2136]) +20 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-bmg: [SKIP][296] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][297] ([Intel XE#2136]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][298] ([Intel XE#2907]) -> [SKIP][299] ([Intel XE#2136]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][300] ([Intel XE#2136]) -> [SKIP][301] ([Intel XE#2887]) +20 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][302] ([Intel XE#3432]) -> [SKIP][303] ([Intel XE#2136]) +2 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/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-dg2-set2: [SKIP][304] ([Intel XE#3442]) -> [SKIP][305] ([Intel XE#2136]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/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: - shard-bmg: [SKIP][306] ([Intel XE#2136]) -> [SKIP][307] ([Intel XE#3432]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][308] ([Intel XE#2136]) -> [SKIP][309] ([Intel XE#2652] / [Intel XE#787]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/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: - shard-dg2-set2: [SKIP][310] ([Intel XE#2136]) -> [SKIP][311] ([Intel XE#455] / [Intel XE#787]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][312] ([Intel XE#2136]) -> [SKIP][313] ([Intel XE#2724]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_cdclk@mode-transition.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][314] ([Intel XE#2724]) -> [SKIP][315] ([Intel XE#2136]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_cdclk@mode-transition-all-outputs.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][316] ([Intel XE#2325]) -> [SKIP][317] ([Intel XE#2423]) +2 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_chamelium_color@ctm-0-50.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-bmg: [SKIP][318] ([Intel XE#2423]) -> [SKIP][319] ([Intel XE#2325]) +2 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_chamelium_color@ctm-red-to-blue.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_edid@dp-edid-resolution-list: - shard-bmg: [SKIP][320] ([Intel XE#2252]) -> [SKIP][321] ([Intel XE#2423]) +13 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at kms_chamelium_edid@dp-edid-resolution-list.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_chamelium_edid@dp-edid-resolution-list.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][322] ([Intel XE#2423]) -> [SKIP][323] ([Intel XE#2252]) +14 other tests skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_chamelium_hpd@common-hpd-after-suspend.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@vga-hpd-fast: - shard-dg2-set2: [SKIP][324] ([Intel XE#373]) -> [SKIP][325] ([Intel XE#2423] / [i915#2575]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt at kms_chamelium_hpd@vga-hpd-fast.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_chamelium_hpd@vga-hpd-fast.html * igt at kms_content_protection@content-type-change: - shard-bmg: [SKIP][326] ([Intel XE#2341]) -> [SKIP][327] ([Intel XE#2423]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at kms_content_protection@content-type-change.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][328] ([Intel XE#2390]) -> [SKIP][329] ([Intel XE#2423]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt at kms_content_protection@dp-mst-type-1.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-0: - shard-bmg: [FAIL][330] ([Intel XE#1178]) -> [SKIP][331] ([Intel XE#2423]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_content_protection@lic-type-0.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][332] ([Intel XE#2423]) -> [SKIP][333] ([Intel XE#2341]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_content_protection@mei-interface.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-bmg: [SKIP][334] ([Intel XE#2341]) -> [FAIL][335] ([Intel XE#1178]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_content_protection@srm.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt at kms_content_protection@srm.html - shard-dg2-set2: [INCOMPLETE][336] ([Intel XE#2715]) -> [FAIL][337] ([Intel XE#1178]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_content_protection@srm.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_content_protection@srm.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][338] -> [FAIL][339] ([Intel XE#1178]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_content_protection@srm at pipe-a-dp-4.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][340] ([Intel XE#2423]) -> [SKIP][341] ([Intel XE#2320]) +5 other tests skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_cursor_crc@cursor-offscreen-128x42.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: [SKIP][342] ([Intel XE#2320]) -> [SKIP][343] ([Intel XE#2423]) +8 other tests skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_cursor_crc@cursor-offscreen-256x85.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-bmg: [SKIP][344] ([Intel XE#2423]) -> [SKIP][345] ([Intel XE#2321]) +6 other tests skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_cursor_crc@cursor-random-512x170.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at kms_cursor_crc@cursor-random-512x170.html - shard-dg2-set2: [SKIP][346] ([Intel XE#2423] / [i915#2575]) -> [SKIP][347] ([Intel XE#308]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_cursor_crc@cursor-random-512x170.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-bmg: [SKIP][348] ([Intel XE#2423]) -> [SKIP][349] ([Intel XE#2291]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: [SKIP][350] ([Intel XE#2423]) -> [SKIP][351] ([Intel XE#2286]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-bmg: [SKIP][352] ([Intel XE#2291]) -> [SKIP][353] ([Intel XE#2423]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: [SKIP][354] ([Intel XE#2286]) -> [SKIP][355] ([Intel XE#2423]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][356] ([Intel XE#1508]) -> [SKIP][357] ([Intel XE#2136]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][358] ([Intel XE#2323]) -> [SKIP][359] ([Intel XE#2423]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_display_modes@mst-extended-mode-negative.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dsc@dsc-fractional-bpp: - shard-bmg: [SKIP][360] ([Intel XE#2244]) -> [SKIP][361] ([Intel XE#2136]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at kms_dsc@dsc-fractional-bpp.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-formats: - shard-bmg: [SKIP][362] ([Intel XE#2136]) -> [SKIP][363] ([Intel XE#2244]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_dsc@dsc-with-formats.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_dsc@dsc-with-formats.html * igt at kms_fbcon_fbt@fbc: - shard-bmg: [SKIP][364] ([Intel XE#2136]) -> [FAIL][365] ([Intel XE#1695]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_fbcon_fbt@fbc.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt at kms_fbcon_fbt@fbc.html * igt at kms_fbcon_fbt@psr: - shard-bmg: [SKIP][366] ([Intel XE#776]) -> [SKIP][367] ([Intel XE#2136]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_fbcon_fbt@psr.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@display-4x: - shard-bmg: [SKIP][368] ([Intel XE#1138]) -> [SKIP][369] ([Intel XE#2423]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_feature_discovery@display-4x.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_feature_discovery@display-4x.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-bmg: [SKIP][370] ([Intel XE#2316]) -> [SKIP][371] ([Intel XE#2423]) +2 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][372] ([Intel XE#2423]) -> [SKIP][373] ([Intel XE#2316]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_flip@2x-plain-flip-fb-recreate.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: [SKIP][374] ([Intel XE#2136]) -> [SKIP][375] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: [SKIP][376] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][377] ([Intel XE#2136]) +5 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][378] ([Intel XE#2136]) -> [SKIP][379] ([Intel XE#455]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][380] ([Intel XE#2380]) -> [SKIP][381] ([Intel XE#2136]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][382] ([Intel XE#455]) -> [SKIP][383] ([Intel XE#2136]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/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: [SKIP][384] ([Intel XE#2136]) -> [SKIP][385] ([Intel XE#2311]) +30 other tests skip [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][386] ([Intel XE#2312]) -> [SKIP][387] ([Intel XE#2311]) +1 other test skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][388] ([Intel XE#2136]) -> [SKIP][389] ([Intel XE#651]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][390] ([Intel XE#2136]) -> [SKIP][391] ([Intel XE#2312]) +7 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][392] ([Intel XE#2311]) -> [SKIP][393] ([Intel XE#2136]) +34 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-slowdraw: - shard-dg2-set2: [SKIP][394] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][395] ([Intel XE#651]) +1 other test skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-slowdraw.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-slowdraw.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][396] ([Intel XE#2136]) -> [FAIL][397] ([Intel XE#2333]) +18 other tests fail [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][398] ([Intel XE#2333]) -> [SKIP][399] ([Intel XE#2312]) +3 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][400] ([Intel XE#2312]) -> [FAIL][401] ([Intel XE#2333]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][402] ([Intel XE#2333]) -> [SKIP][403] ([Intel XE#2136]) +18 other tests skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][404] ([Intel XE#651]) -> [SKIP][405] ([Intel XE#2136] / [Intel XE#2351]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][406] ([Intel XE#651]) -> [SKIP][407] ([Intel XE#2136]) +1 other test skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][408] ([Intel XE#2311]) -> [SKIP][409] ([Intel XE#2312]) +2 other tests skip [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][410] ([Intel XE#2313]) -> [SKIP][411] ([Intel XE#2136]) +31 other tests skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-dg2-set2: [SKIP][412] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][413] ([Intel XE#653]) +1 other test skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][414] ([Intel XE#2312]) -> [SKIP][415] ([Intel XE#2313]) +3 other tests skip [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][416] ([Intel XE#653]) -> [SKIP][417] ([Intel XE#2136]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][418] ([Intel XE#2136]) -> [SKIP][419] ([Intel XE#2313]) +33 other tests skip [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][420] ([Intel XE#2313]) -> [SKIP][421] ([Intel XE#2312]) +5 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][422] ([Intel XE#2312]) -> [SKIP][423] ([Intel XE#2136]) +12 other tests skip [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][424] ([Intel XE#653]) -> [SKIP][425] ([Intel XE#2136] / [Intel XE#2351]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][426] ([Intel XE#2352]) -> [SKIP][427] ([Intel XE#2136]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][428] ([Intel XE#2136]) -> [SKIP][429] ([Intel XE#2350]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][430] ([Intel XE#2136]) -> [SKIP][431] ([Intel XE#653]) +3 other tests skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-slowdraw.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][432] ([Intel XE#2423]) -> [SKIP][433] ([Intel XE#2502]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_getfb@getfb-reject-ccs.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at kms_getfb@getfb-reject-ccs.html - shard-dg2-set2: [SKIP][434] ([Intel XE#2423] / [i915#2575]) -> [SKIP][435] ([Intel XE#605]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_getfb@getfb-reject-ccs.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][436] ([Intel XE#2340]) -> [SKIP][437] ([Intel XE#2423]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_getfb@getfb2-accept-ccs.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2-set2: [SKIP][438] ([Intel XE#2423] / [i915#2575]) -> [SKIP][439] ([Intel XE#455]) +1 other test skip [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_hdr@brightness-with-hdr.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_hdr@brightness-with-hdr.html - shard-bmg: [SKIP][440] ([Intel XE#2423]) -> [SKIP][441] ([Intel XE#3374] / [Intel XE#3544]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt at kms_hdr@brightness-with-hdr.html * igt at kms_joiner@basic-big-joiner: - shard-bmg: [SKIP][442] ([Intel XE#346]) -> [SKIP][443] ([Intel XE#2136]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt at kms_joiner@basic-big-joiner.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][444] ([Intel XE#3012]) -> [SKIP][445] ([Intel XE#2136]) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_joiner@basic-force-big-joiner.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-bmg: [SKIP][446] ([Intel XE#2136]) -> [SKIP][447] ([Intel XE#2927]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_joiner@basic-ultra-joiner.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: [SKIP][448] ([Intel XE#346]) -> [SKIP][449] ([Intel XE#2136]) [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt at kms_joiner@invalid-modeset-big-joiner.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: [SKIP][450] ([Intel XE#2927]) -> [SKIP][451] ([Intel XE#2136]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_joiner@invalid-modeset-ultra-joiner.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-bmg: [SKIP][452] ([Intel XE#2486]) -> [SKIP][453] ([Intel XE#2423]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_panel_fitting@atomic-fastset.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-bmg: [SKIP][454] ([Intel XE#2423]) -> [SKIP][455] ([Intel XE#2486]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_panel_fitting@legacy.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at kms_panel_fitting@legacy.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][456] ([Intel XE#2423]) -> [SKIP][457] ([Intel XE#2763]) +3 other tests skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-bmg: [SKIP][458] ([Intel XE#2763]) -> [SKIP][459] ([Intel XE#2423]) +3 other tests skip [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt at kms_pm_backlight@fade: - shard-bmg: [SKIP][460] ([Intel XE#2136]) -> [SKIP][461] ([Intel XE#870]) +1 other test skip [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_pm_backlight@fade.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][462] ([Intel XE#2136]) -> [SKIP][463] ([Intel XE#3309]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_pm_dc@dc5-retention-flops.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: [SKIP][464] ([Intel XE#2136]) -> [FAIL][465] ([Intel XE#1430]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_pm_dc@dc6-dpms.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-bmg: [SKIP][466] ([Intel XE#2136]) -> [SKIP][467] ([Intel XE#2392]) [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_pm_dc@dc6-psr.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_pm_dc@dc6-psr.html - shard-dg2-set2: [SKIP][468] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][469] ([Intel XE#1129]) [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_pm_dc@dc6-psr.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: [SKIP][470] ([Intel XE#2136]) -> [SKIP][471] ([Intel XE#2499]) [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_pm_lpsp@kms-lpsp.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][472] ([Intel XE#1439] / [Intel XE#836]) -> [SKIP][473] ([Intel XE#2446]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-bmg: [SKIP][474] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][475] ([Intel XE#2446]) +2 other tests skip [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at kms_pm_rpm@modeset-lpsp.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][476] ([Intel XE#1489]) -> [SKIP][477] ([Intel XE#2136]) +14 other tests skip [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][478] ([Intel XE#2136]) -> [SKIP][479] ([Intel XE#1489]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][480] ([Intel XE#2136]) -> [SKIP][481] ([Intel XE#1489]) +11 other tests skip [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][482] ([Intel XE#2387]) -> [SKIP][483] ([Intel XE#2136]) [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-p010: - shard-bmg: [SKIP][484] ([Intel XE#2136]) -> [SKIP][485] ([Intel XE#2387]) [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_psr2_su@page_flip-p010.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-dpms: - shard-dg2-set2: [SKIP][486] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][487] ([Intel XE#2136]) [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt at kms_psr@fbc-pr-dpms.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_psr@fbc-pr-dpms.html * igt at kms_psr@fbc-psr-primary-render: - shard-bmg: [SKIP][488] ([Intel XE#2136]) -> [SKIP][489] ([Intel XE#2234] / [Intel XE#2850]) +20 other tests skip [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_psr@fbc-psr-primary-render.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at kms_psr@fbc-psr-primary-render.html * igt at kms_psr@pr-sprite-blt: - shard-dg2-set2: [SKIP][490] ([Intel XE#2136]) -> [SKIP][491] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_psr@pr-sprite-blt.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt at kms_psr@pr-sprite-blt.html * igt at kms_psr@psr-basic: - shard-bmg: [SKIP][492] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][493] ([Intel XE#2136]) +20 other tests skip [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_psr@psr-basic.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_psr@psr-basic.html * igt at kms_psr@psr-cursor-plane-move: - shard-dg2-set2: [SKIP][494] ([Intel XE#2351]) -> [SKIP][495] ([Intel XE#2850] / [Intel XE#929]) [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_psr@psr-cursor-plane-move.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at kms_psr@psr-cursor-plane-move.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][496] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][497] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt at kms_psr@psr-dpms.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at kms_psr@psr-dpms.html * igt at kms_psr@psr2-primary-render: - shard-bmg: [SKIP][498] ([Intel XE#2136]) -> [SKIP][499] ([Intel XE#2234]) [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_psr@psr2-primary-render.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at kms_psr@psr2-primary-render.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][500] ([Intel XE#2414]) -> [SKIP][501] ([Intel XE#2136]) [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-rotation-90: - shard-bmg: [SKIP][502] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][503] ([Intel XE#2423]) +2 other tests skip [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_rotation_crc@primary-rotation-90.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: [SKIP][504] ([Intel XE#2423]) -> [SKIP][505] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][506] ([Intel XE#2423]) -> [SKIP][507] ([Intel XE#2413]) [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-center.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: [SKIP][508] ([Intel XE#2413]) -> [SKIP][509] ([Intel XE#2423]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt at kms_scaling_modes@scaling-mode-full-aspect.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][510] ([Intel XE#2423]) -> [SKIP][511] ([Intel XE#2426]) +1 other test skip [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_tiled_display@basic-test-pattern.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@flip-suspend: - shard-bmg: [SKIP][512] ([Intel XE#2423]) -> [SKIP][513] ([Intel XE#1499]) +2 other tests skip [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_vrr@flip-suspend.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][514] ([Intel XE#1499]) -> [SKIP][515] ([Intel XE#2423]) +1 other test skip [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_vrr@seamless-rr-switch-drrs.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: [SKIP][516] ([Intel XE#2423]) -> [SKIP][517] ([Intel XE#756]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_writeback@writeback-check-output-xrgb2101010.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: [SKIP][518] ([Intel XE#756]) -> [SKIP][519] ([Intel XE#2423]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_writeback@writeback-pixel-formats.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][520] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][521] ([Intel XE#2423]) [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at sriov_basic@enable-vfs-autoprobe-off.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][522] ([Intel XE#1130]) -> [SKIP][523] ([Intel XE#3889]) [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][524] ([Intel XE#2905]) -> [SKIP][525] ([Intel XE#1130]) +12 other tests skip [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence: - shard-bmg: [SKIP][526] ([Intel XE#1130]) -> [SKIP][527] ([Intel XE#2905]) +10 other tests skip [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-ufence.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-bmg: [SKIP][528] ([Intel XE#3889]) -> [SKIP][529] ([Intel XE#1130]) +1 other test skip [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@reset-with-attention: - shard-dg2-set2: [SKIP][530] ([Intel XE#1130]) -> [SKIP][531] ([Intel XE#2905]) [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at xe_eudebug_online@reset-with-attention.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt at xe_eudebug_online@reset-with-attention.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][532] ([Intel XE#2322]) -> [SKIP][533] ([Intel XE#1130]) +16 other tests skip [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][534] ([Intel XE#1130]) -> [SKIP][535] ([Intel XE#2322]) +16 other tests skip [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at xe_exec_basic@multigpu-once-null-rebind.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [SKIP][536] ([Intel XE#1130]) -> [SKIP][537] ([Intel XE#288]) +2 other tests skip [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-bindexecqueue-rebind-imm: - shard-dg2-set2: [SKIP][538] ([Intel XE#288]) -> [SKIP][539] ([Intel XE#1130]) +2 other tests skip [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt at xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html * igt at xe_exec_sip_eudebug@breakpoint-waitsip: - shard-dg2-set2: [SKIP][540] ([Intel XE#2905]) -> [SKIP][541] ([Intel XE#1130]) [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at xe_exec_sip_eudebug@breakpoint-waitsip.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at xe_exec_sip_eudebug@breakpoint-waitsip.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][542] ([Intel XE#2833]) -> [SKIP][543] ([Intel XE#1192]) [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt at xe_live_ktest@xe_eudebug.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at xe_live_ktest@xe_eudebug.html * igt at xe_mmap@small-bar: - shard-bmg: [SKIP][544] ([Intel XE#1130]) -> [SKIP][545] ([Intel XE#586]) [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at xe_mmap@small-bar.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at xe_mmap@small-bar.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: [SKIP][546] ([Intel XE#1130]) -> [SKIP][547] ([Intel XE#2541] / [Intel XE#3573]) [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at xe_oa@disabled-read-error.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at xe_oa@disabled-read-error.html * igt at xe_oa@rc6-disable: - shard-dg2-set2: [SKIP][548] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][549] ([Intel XE#1130]) [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt at xe_oa@rc6-disable.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt at xe_oa@rc6-disable.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][550] ([Intel XE#2248]) -> [SKIP][551] ([Intel XE#1130]) [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at xe_oa@unprivileged-single-ctx-counters.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xelpg: - shard-bmg: [SKIP][552] ([Intel XE#1130]) -> [SKIP][553] ([Intel XE#2236]) [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at xe_pat@pat-index-xelpg.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt at xe_pat@pat-index-xelpg.html * igt at xe_pm@d3cold-mocs: - shard-bmg: [SKIP][554] ([Intel XE#2284]) -> [SKIP][555] ([Intel XE#1130]) [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at xe_pm@d3cold-mocs.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at xe_pm@d3cold-mocs.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][556] ([Intel XE#944]) -> [SKIP][557] ([Intel XE#1130]) +2 other tests skip [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt at xe_query@multigpu-query-invalid-cs-cycles.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_query@multigpu-query-oa-units: - shard-dg2-set2: [SKIP][558] ([Intel XE#1130]) -> [SKIP][559] ([Intel XE#944]) [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at xe_query@multigpu-query-oa-units.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt at xe_query@multigpu-query-oa-units.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-bmg: [SKIP][560] ([Intel XE#1130]) -> [SKIP][561] ([Intel XE#944]) +1 other test skip [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at xe_query@multigpu-query-topology-l3-bank-mask.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt at xe_query@multigpu-query-topology-l3-bank-mask.html * igt at xe_sriov_flr@flr-each-isolation: - shard-bmg: [SKIP][562] ([Intel XE#3342]) -> [SKIP][563] ([Intel XE#1130]) [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at xe_sriov_flr@flr-each-isolation.html [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt at xe_sriov_flr@flr-each-isolation.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [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#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [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#1174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1174 [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#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [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#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [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#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [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#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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [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#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#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908 [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#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [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#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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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#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_8196 -> IGTPW_12454 * Linux: xe-2504-a15d2a84505eed8dbb58911147e44752734f3a88 -> xe-2505-48e8781781323a28fabb378bcc79b3f48c1bcae0 IGTPW_12454: 869da313bdf1dbd8ecc8d012205411b1b5daefe9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8196: 824553d05138bbfa48b9e60e9c2a741497c7c627 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2504-a15d2a84505eed8dbb58911147e44752734f3a88: a15d2a84505eed8dbb58911147e44752734f3a88 xe-2505-48e8781781323a28fabb378bcc79b3f48c1bcae0: 48e8781781323a28fabb378bcc79b3f48c1bcae0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 19:06:22 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 19:06:22 -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_=28rev2=29?= In-Reply-To: <20250117100101.4282-1-chiahsuan.chung@amd.com> References: <20250117100101.4282-1-chiahsuan.chung@amd.com> Message-ID: <173714078267.834142.15763860229757708032@b555e5b46a47> == Series Details == Series: tests/amdgpu/amd_vrr_range: Fix panel cannot light up after test (rev2) URL : https://patchwork.freedesktop.org/series/143059/ State : failure == Summary == CI Bug Log - changes from XEIGT_8196_full -> XEIGTPW_12455_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12455_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12455_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_12455_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][1] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible at ad-hdmi-a2-dp2: - shard-dg2-set2: NOTRUN -> [FAIL][2] +2 other tests fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible at ad-hdmi-a2-dp2.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-hdmi-a6: - shard-dg2-set2: [PASS][3] -> [FAIL][4] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-hdmi-a6.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-hdmi-a6.html #### Warnings #### * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [SKIP][5] ([Intel XE#2423]) -> [FAIL][6] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt at xe_sriov_auto_provisioning@resources-released-on-vfs-disabling}: - shard-lnl: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-5/igt at xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html Known issues ------------ Here are the changes found in XEIGTPW_12455_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getversion@all-cards: - shard-bmg: [PASS][8] -> [FAIL][9] ([Intel XE#3249]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at core_getversion@all-cards.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at core_getversion@all-cards.html * igt at core_hotunplug@hotreplug: - shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#1885]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at core_hotunplug@hotreplug.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at core_hotunplug@hotreplug.html * igt at fbdev@eof: - shard-bmg: [PASS][12] -> [SKIP][13] ([Intel XE#2134]) +2 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at fbdev@eof.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at fbdev@eof.html - shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#2134]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt at fbdev@eof.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at fbdev@eof.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1125]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-4/igt at intel_hwmon@hwmon-write.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-2-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#3767]) +23 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-2-4-rc-ccs-cc.html * igt at kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#873]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-6/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#3768]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-463/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#664]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-1/igt at kms_async_flips@test-cursor.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1: - shard-lnl: [PASS][21] -> [FAIL][22] ([Intel XE#3908]) +1 other test fail [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-5/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1407]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-2/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#316]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2327]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@linear-64bpp-rotate-180: - shard-lnl: NOTRUN -> [DMESG-WARN][26] ([Intel XE#1725]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-2/igt at kms_big_fb@linear-64bpp-rotate-180.html * igt at kms_big_fb@x-tiled-addfb: - shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#2136]) +27 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_big_fb@x-tiled-addfb.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_big_fb@x-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +18 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +7 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-7/igt at kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-2/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-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2191]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-4/igt at kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#2191]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1512]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-5/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#367]) +5 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-463/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-2-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#367]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-4/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#787]) +251 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs at pipe-a-dp-2.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2887]) +11 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-4/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#2907]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs at pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-5/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs at pipe-b-dp-2.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#3432]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-8/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2887]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-8/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][43] -> [INCOMPLETE][44] ([Intel XE#1727] / [Intel XE#3124]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/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-b-dp-4: - shard-dg2-set2: [PASS][45] -> [INCOMPLETE][46] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-dp-4.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#455] / [Intel XE#787]) +52 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs at pipe-d-dp-2.html * igt at kms_cdclk@mode-transition at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#314]) +4 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at kms_cdclk@mode-transition at pipe-d-dp-4.html * igt at kms_cdclk@plane-scaling at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1152]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-463/igt at kms_cdclk@plane-scaling at pipe-b-dp-4.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#306]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-463/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-negative: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#306]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-6/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_hpd@dp-hpd: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2252]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-2/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#373]) +15 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#373]) +6 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-1/igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][55] ([Intel XE#1178]) +5 other tests fail [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at kms_content_protection@atomic-dpms at pipe-a-dp-2.html - shard-bmg: NOTRUN -> [FAIL][56] ([Intel XE#1178]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-2/igt at kms_content_protection@atomic-dpms at pipe-a-dp-2.html * igt at kms_content_protection@content-type-change: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#3278]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-6/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#307]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-1/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#307]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#455]) +19 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at kms_content_protection@lic-type-1.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#308]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_cursor_crc@cursor-onscreen-512x512.html - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#2321]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-1/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1424]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-1/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-64x21: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2320]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-5/igt at kms_cursor_crc@cursor-random-64x21.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#309]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-2/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#323]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#2291]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][69] ([Intel XE#877]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][70] -> [FAIL][71] ([Intel XE#1475]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-5/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-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#323]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-436/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1508]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-4/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dsc@dsc-fractional-bpp: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#2244]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-5/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_fbcon_fbt@fbc: - shard-dg2-set2: [PASS][75] -> [SKIP][76] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt at kms_fbcon_fbt@fbc.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_fbcon_fbt@fbc.html * igt at kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#702]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-8/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@dp-mst: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1137]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-1/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][79] -> [FAIL][80] ([Intel XE#301] / [Intel XE#3321]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-436/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 ad-hdmi-a6-dp4: - shard-dg2-set2: [PASS][81] -> [FAIL][82] ([Intel XE#301]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-hdmi-a6-dp4.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ad-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][83] ([Intel XE#301]) +7 other tests fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][84] ([Intel XE#3321]) +1 other test fail [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-rmfb: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1421]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-1/igt at kms_flip@2x-flip-vs-rmfb.html - shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#2316]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at kms_flip@2x-flip-vs-rmfb.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_flip@2x-flip-vs-rmfb.html * igt at kms_flip@2x-flip-vs-wf_vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][88] ([Intel XE#2882]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_flip@2x-flip-vs-wf_vblank-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg2-set2: [PASS][89] -> [FAIL][90] ([Intel XE#2882]) +1 other test fail [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@flip-vs-expired-vblank at c-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][91] ([Intel XE#301] / [Intel XE#3321]) +2 other tests fail [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip@plain-flip-interruptible: - shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#2423] / [i915#2575]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt at kms_flip@plain-flip-interruptible.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_flip@plain-flip-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-dg2-set2: [PASS][94] -> [SKIP][95] ([Intel XE#2136]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-432/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-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_12455/shard-lnl-4/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-ytile-to-64bpp-ytile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1401]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-1/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2293]) +9 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#651]) +41 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#651]) +12 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-7/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2311]) +4 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2136]) +19 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [FAIL][105] ([Intel XE#2333]) +2 other tests fail [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#656]) +30 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2313]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1158]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#653]) +48 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2136]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2312]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2136] / [Intel XE#2351]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_getfb@getfb2-accept-ccs: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#2340]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-7/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1470]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-1/igt at kms_hdmi_inject@inject-4k.html * igt at kms_invalid_mode@clock-too-high: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1450] / [Intel XE#2568]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-1/igt at kms_invalid_mode@clock-too-high.html * igt at kms_invalid_mode@clock-too-high at pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1450]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-1/igt at kms_invalid_mode@clock-too-high at pipe-a-edp-1.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2925]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_plane_lowres@tiling-4: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#599]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-3/igt at kms_plane_lowres@tiling-4.html * igt at kms_plane_lowres@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2393]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: NOTRUN -> [FAIL][120] ([Intel XE#361]) +1 other test fail [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#2763]) +7 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-3/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-463/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2763]) +8 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-463/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-b.html * igt at kms_plane_scaling@planes-upscale-20x20: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_plane_scaling@planes-upscale-20x20.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2763]) +20 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-5/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2423]) +17 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2938]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#870]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc5-dpms-negative: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1131]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-3/igt at kms_pm_dc@dc5-dpms-negative.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#908]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@deep-pkgc: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2505]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_pm_dc@deep-pkgc.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-bmg: [PASS][132] -> [SKIP][133] ([Intel XE#2446]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1489]) +15 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#1489]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-5/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#2893]) +5 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-1/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr@fbc-pr-cursor-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#2850] / [Intel XE#929]) +24 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at kms_psr@fbc-pr-cursor-plane-move.html * igt at kms_psr@fbc-pr-dpms: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1406]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-3/igt at kms_psr@fbc-pr-dpms.html * igt at kms_psr@fbc-psr2-primary-blt: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-3/igt at kms_psr@fbc-psr2-primary-blt.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#3414] / [Intel XE#3904]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-5/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#3414]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/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: NOTRUN -> [SKIP][142] ([Intel XE#1127]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_sequence@get-idle: - shard-bmg: [PASS][143] -> [SKIP][144] ([Intel XE#2423]) +115 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_sequence@get-idle.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_sequence@get-idle.html * igt at kms_setmode@basic: - shard-lnl: NOTRUN -> [FAIL][145] ([Intel XE#2883]) +1 other test fail [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-3/igt at kms_setmode@basic.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1435]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-2/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#1500]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [PASS][148] -> [FAIL][149] ([Intel XE#899]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-3/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-6/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1499]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-5/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#756]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1091] / [Intel XE#2849]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-4/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute@ccs-mode-basic: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1447]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-7/igt at xe_compute@ccs-mode-basic.html * igt at xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1123]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at xe_copy_basic@mem-copy-linear-0x3fff.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#1126]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-463/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_eudebug@basic-vm-access-parameters: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#2905]) +8 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-5/igt at xe_eudebug@basic-vm-access-parameters.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#3889]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-463/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug_online@resume-one: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2905]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-8/igt at xe_eudebug_online@resume-one.html * igt at xe_evict@evict-beng-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#688]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-3/igt at xe_evict@evict-beng-large-multi-vm.html * igt at xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [PASS][160] -> [SKIP][161] ([Intel XE#1130]) +261 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at xe_exec_basic@many-bindexecqueue-rebind.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at xe_exec_basic@many-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#2322]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#1392]) +8 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-4/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate-race: - shard-dg2-set2: [PASS][164] -> [SKIP][165] ([Intel XE#1392]) +5 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#1392]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@no-exec-basic-defer-bind: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#1130]) +5 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at xe_exec_basic@no-exec-basic-defer-bind.html * igt at xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#288]) +39 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-436/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: NOTRUN -> [SKIP][169] ([Intel XE#2360]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-436/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#2905]) +17 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-436/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#1130]) +35 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#255]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at xe_huc_copy@huc_copy.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#1192]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-1/igt at xe_live_ktest@xe_bo.html - shard-bmg: [PASS][174] -> [SKIP][175] ([Intel XE#2229]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at xe_live_ktest@xe_bo.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][176] ([Intel XE#1999]) +2 other tests fail [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#560]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at xe_media_fill@media-fill.html - shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#560]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-6/igt at xe_media_fill@media-fill.html * igt at xe_mmap@pci-membarrier: - shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#4045]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-4/igt at xe_mmap@pci-membarrier.html * igt at xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#1416]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-7/igt at xe_mmap@vram.html * igt at xe_module_load@many-reload: - shard-dg2-set2: [PASS][181] -> [FAIL][182] ([Intel XE#3546]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt at xe_module_load@many-reload.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-463/igt at xe_module_load@many-reload.html * igt at xe_module_load@reload-no-display: - shard-bmg: [PASS][183] -> [FAIL][184] ([Intel XE#3546]) +2 other tests fail [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at xe_module_load@reload-no-display.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at xe_module_load@reload-no-display.html * igt at xe_oa@non-privileged-access-vaddr: - shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#2541] / [Intel XE#3573]) +9 other tests skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at xe_oa@non-privileged-access-vaddr.html * igt at xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#2248]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-2/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_pat@display-vs-wb-transient: - shard-dg2-set2: NOTRUN -> [SKIP][187] ([Intel XE#1337]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-436/igt at xe_pat@display-vs-wb-transient.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][188] ([Intel XE#1420]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-8/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][189] ([Intel XE#979]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at xe_pat@pat-index-xelpg.html * igt at xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at xe_pm@d3cold-basic-exec.html * igt at xe_pm@d3hot-mmap-system: - shard-dg2-set2: [PASS][191] -> [SKIP][192] ([Intel XE#1130]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt at xe_pm@d3hot-mmap-system.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at xe_pm@d3hot-mmap-system.html * igt at xe_pm@s2idle-multiple-execs: - shard-dg2-set2: [PASS][193] -> [ABORT][194] ([Intel XE#1358]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt at xe_pm@s2idle-multiple-execs.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at xe_pm@s2idle-multiple-execs.html * igt at xe_pm@s3-basic: - shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#584]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-7/igt at xe_pm@s3-basic.html * igt at xe_pm@s3-vm-bind-userptr: - shard-dg2-set2: [PASS][196] -> [ABORT][197] ([Intel XE#1358] / [Intel XE#1794]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at xe_pm@s3-vm-bind-userptr.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at xe_pm@s3-vm-bind-userptr.html * igt at xe_pm@s4-exec-after: - shard-lnl: [PASS][198] -> [ABORT][199] ([Intel XE#1358] / [Intel XE#1607]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-6/igt at xe_pm@s4-exec-after.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-2/igt at xe_pm@s4-exec-after.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#579]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-engines: - shard-dg2-set2: NOTRUN -> [SKIP][201] ([Intel XE#944]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-lnl: NOTRUN -> [SKIP][202] ([Intel XE#944]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-7/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_sriov_flr@flr-each-isolation: - shard-lnl: NOTRUN -> [SKIP][203] ([Intel XE#3342]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-3/igt at xe_sriov_flr@flr-each-isolation.html * igt at xe_wedged@wedged-mode-toggle: - shard-dg2-set2: NOTRUN -> [ABORT][204] ([Intel XE#3075] / [Intel XE#3084]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at xe_wedged@wedged-mode-toggle.html #### Possible fixes #### * igt at core_getversion@basic: - shard-bmg: [FAIL][205] ([Intel XE#3440]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at core_getversion@basic.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-3/igt at core_getversion@basic.html * igt at core_setmaster@master-drop-set-root: - shard-bmg: [FAIL][207] ([Intel XE#3249]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at core_setmaster@master-drop-set-root.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-5/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@info: - shard-bmg: [SKIP][209] ([Intel XE#2134]) -> [PASS][210] +2 other tests pass [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at fbdev@info.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at fbdev@info.html * igt at fbdev@pan: - shard-dg2-set2: [SKIP][211] ([Intel XE#2134]) -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at fbdev@pan.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at fbdev@pan.html * igt at kms_atomic@atomic-invalid-params: - shard-dg2-set2: [SKIP][213] ([Intel XE#2423] / [i915#2575]) -> [PASS][214] +15 other tests pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_atomic@atomic-invalid-params.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at kms_atomic@atomic-invalid-params.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [SKIP][215] ([Intel XE#2136]) -> [PASS][216] +26 other tests pass [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_big_fb@linear-16bpp-rotate-180.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [SKIP][217] ([Intel XE#2136]) -> [PASS][218] +1 other test pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][219] ([Intel XE#3862]) -> [PASS][220] +1 other test pass [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_draw_crc@fill-fb: - shard-dg2-set2: [SKIP][221] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][222] +2 other tests pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_draw_crc@fill-fb.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at kms_draw_crc@fill-fb.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-bmg: [SKIP][223] ([Intel XE#2316]) -> [PASS][224] +2 other tests pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-dg2-set2: [FAIL][225] -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-432/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-463/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: - shard-dg2-set2: [FAIL][227] ([Intel XE#301]) -> [PASS][228] +4 other tests pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html * igt at kms_flip@flip-vs-panning-vs-hang: - shard-bmg: [SKIP][229] ([Intel XE#2423]) -> [PASS][230] +96 other tests pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_flip@flip-vs-panning-vs-hang.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_flip@flip-vs-panning-vs-hang.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][231] ([Intel XE#2597]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt at kms_flip@flip-vs-suspend-interruptible.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp4: - shard-dg2-set2: [INCOMPLETE][233] -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [FAIL][235] ([Intel XE#886]) -> [PASS][236] +2 other tests pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-4/igt at kms_flip@plain-flip-ts-check-interruptible.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-7/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][237] ([Intel XE#718]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-6/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_rpm@cursor: - shard-bmg: [SKIP][239] ([Intel XE#2446]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_pm_rpm@cursor.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-8/igt at kms_pm_rpm@cursor.html * igt at kms_psr@fbc-psr2-sprite-blt at edp-1: - shard-lnl: [FAIL][241] -> [PASS][242] +3 other tests pass [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-1/igt at kms_psr@fbc-psr2-sprite-blt at edp-1.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-4/igt at kms_psr@fbc-psr2-sprite-blt at edp-1.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [FAIL][243] ([Intel XE#2159]) -> [PASS][244] +1 other test pass [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-3/igt at kms_vrr@cmrr at pipe-a-edp-1.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-5/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at xe_exec_basic@multigpu-once-basic: - shard-dg2-set2: [SKIP][245] ([Intel XE#1392]) -> [PASS][246] +1 other test pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-432/igt at xe_exec_basic@multigpu-once-basic.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at xe_exec_basic@multigpu-once-basic.html * igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: [SKIP][247] ([Intel XE#1130]) -> [PASS][248] +21 other tests pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt at xe_gt_freq@freq_suspend: - shard-dg2-set2: [ABORT][249] ([Intel XE#2625]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-432/igt at xe_gt_freq@freq_suspend.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at xe_gt_freq@freq_suspend.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-bmg: [FAIL][251] ([Intel XE#1999]) -> [PASS][252] +2 other tests pass [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-3/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_pm@s2idle-exec-after: - shard-dg2-set2: [ABORT][253] ([Intel XE#1358]) -> [PASS][254] +1 other test pass [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-432/igt at xe_pm@s2idle-exec-after.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at xe_pm@s2idle-exec-after.html * igt at xe_pm@s4-vm-bind-userptr: - shard-lnl: [ABORT][255] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-2/igt at xe_pm@s4-vm-bind-userptr.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-lnl-5/igt at xe_pm@s4-vm-bind-userptr.html * igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [SKIP][257] ([Intel XE#1130]) -> [PASS][258] +237 other tests pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][259] ([Intel XE#2233]) -> [SKIP][260] ([Intel XE#2423]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][261] ([Intel XE#873]) -> [SKIP][262] ([Intel XE#2423]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at kms_async_flips@invalid-async-flip.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][263] ([Intel XE#2423]) -> [SKIP][264] ([Intel XE#2385]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][265] ([Intel XE#2370]) -> [SKIP][266] ([Intel XE#2423]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: [SKIP][267] ([Intel XE#2327]) -> [SKIP][268] ([Intel XE#2136]) +6 other tests skip [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt at kms_big_fb@linear-32bpp-rotate-270.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-bmg: [SKIP][269] ([Intel XE#2136]) -> [SKIP][270] ([Intel XE#2327]) +4 other tests skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_big_fb@linear-64bpp-rotate-90.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-2/igt at kms_big_fb@linear-64bpp-rotate-90.html - shard-dg2-set2: [SKIP][271] ([Intel XE#2136]) -> [SKIP][272] ([Intel XE#316]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_big_fb@linear-64bpp-rotate-90.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg2-set2: [SKIP][273] ([Intel XE#1124]) -> [SKIP][274] ([Intel XE#2136]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][275] ([Intel XE#1124]) -> [SKIP][276] ([Intel XE#2136]) +10 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: [SKIP][277] ([Intel XE#610]) -> [SKIP][278] ([Intel XE#2136]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][279] ([Intel XE#2136]) -> [SKIP][280] ([Intel XE#1124]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [SKIP][281] ([Intel XE#2136]) -> [SKIP][282] ([Intel XE#1124]) +11 other tests skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: [SKIP][283] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][284] ([Intel XE#2423]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-bmg: [SKIP][285] ([Intel XE#2423]) -> [SKIP][286] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-2/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-1-displays-3840x2160p: - shard-dg2-set2: [SKIP][287] ([Intel XE#2423] / [i915#2575]) -> [SKIP][288] ([Intel XE#367]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at kms_bw@linear-tiling-1-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][289] ([Intel XE#2423]) -> [SKIP][290] ([Intel XE#367]) +3 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-3/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][291] ([Intel XE#367]) -> [SKIP][292] ([Intel XE#2423]) +3 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][293] ([Intel XE#2887]) -> [SKIP][294] ([Intel XE#2136]) +21 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][295] ([Intel XE#2136]) -> [SKIP][296] ([Intel XE#2887]) +21 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-5/igt at kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][297] ([Intel XE#2136]) -> [SKIP][298] ([Intel XE#3432]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-bmg: [SKIP][299] ([Intel XE#3432]) -> [SKIP][300] ([Intel XE#2136]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][301] ([Intel XE#2136]) -> [SKIP][302] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-bmg: [SKIP][303] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][304] ([Intel XE#2136]) +2 other tests skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][305] ([Intel XE#2136]) -> [SKIP][306] ([Intel XE#2724]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_cdclk@mode-transition.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-3/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][307] ([Intel XE#2724]) -> [SKIP][308] ([Intel XE#2136]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_cdclk@mode-transition-all-outputs.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][309] ([Intel XE#2325]) -> [SKIP][310] ([Intel XE#2423]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_chamelium_color@ctm-0-50.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-bmg: [SKIP][311] ([Intel XE#2423]) -> [SKIP][312] ([Intel XE#2325]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_chamelium_color@ctm-red-to-blue.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: [SKIP][313] ([Intel XE#2423] / [i915#2575]) -> [SKIP][314] ([Intel XE#373]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-463/igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][315] ([Intel XE#2423]) -> [SKIP][316] ([Intel XE#2252]) +13 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_chamelium_hpd@common-hpd-after-suspend.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: [SKIP][317] ([Intel XE#2252]) -> [SKIP][318] ([Intel XE#2423]) +13 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_content_protection@atomic-dpms: - shard-bmg: [SKIP][319] ([Intel XE#2423]) -> [FAIL][320] ([Intel XE#1178]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_content_protection@atomic-dpms.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-2/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-bmg: [SKIP][321] ([Intel XE#2390]) -> [SKIP][322] ([Intel XE#2423]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_content_protection@dp-mst-lic-type-0.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][323] ([Intel XE#2423]) -> [SKIP][324] ([Intel XE#2390]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_content_protection@dp-mst-type-0.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-2/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@lic-type-0: - shard-bmg: [FAIL][325] ([Intel XE#1178]) -> [SKIP][326] ([Intel XE#2423]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_content_protection@lic-type-0.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][327] ([Intel XE#2423]) -> [SKIP][328] ([Intel XE#2341]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_content_protection@mei-interface.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-bmg: [SKIP][329] ([Intel XE#2341]) -> [SKIP][330] ([Intel XE#2423]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_content_protection@srm.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_content_protection@srm.html - shard-dg2-set2: [INCOMPLETE][331] ([Intel XE#2715]) -> [FAIL][332] ([Intel XE#1178]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_content_protection@srm.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at kms_content_protection@srm.html * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][333] -> [FAIL][334] ([Intel XE#1178]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_content_protection@srm at pipe-a-dp-4.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at kms_content_protection@srm at pipe-a-dp-4.html * igt at kms_content_protection@uevent: - shard-bmg: [FAIL][335] ([Intel XE#1188]) -> [SKIP][336] ([Intel XE#2423]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_content_protection@uevent.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][337] ([Intel XE#2423]) -> [SKIP][338] ([Intel XE#2320]) +6 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_cursor_crc@cursor-offscreen-128x42.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][339] ([Intel XE#2320]) -> [SKIP][340] ([Intel XE#2423]) +7 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_cursor_crc@cursor-random-32x32.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg2-set2: [SKIP][341] ([Intel XE#2423] / [i915#2575]) -> [SKIP][342] ([Intel XE#308]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_cursor_crc@cursor-random-512x170.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][343] ([Intel XE#2423]) -> [SKIP][344] ([Intel XE#2321]) +4 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x512.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][345] ([Intel XE#2423]) -> [SKIP][346] ([Intel XE#2291]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/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-set2: [SKIP][347] ([Intel XE#2423] / [i915#2575]) -> [SKIP][348] ([Intel XE#323]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-463/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][349] ([Intel XE#877]) -> [SKIP][350] ([Intel XE#2423]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-bmg: [SKIP][351] ([Intel XE#2291]) -> [SKIP][352] ([Intel XE#2423]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: [SKIP][353] ([Intel XE#323]) -> [SKIP][354] ([Intel XE#2423] / [i915#2575]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/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-bmg: [SKIP][355] ([Intel XE#2286]) -> [SKIP][356] ([Intel XE#2423]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][357] ([Intel XE#2244]) -> [SKIP][358] ([Intel XE#2136]) +2 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-bmg: [SKIP][359] ([Intel XE#2136]) -> [SKIP][360] ([Intel XE#2244]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-8/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [FAIL][361] ([Intel XE#1695]) -> [SKIP][362] ([Intel XE#2136]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_fbcon_fbt@fbc-suspend.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][363] ([Intel XE#776]) -> [SKIP][364] ([Intel XE#2136]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_fbcon_fbt@psr-suspend.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-4x: - shard-bmg: [SKIP][365] ([Intel XE#1138]) -> [SKIP][366] ([Intel XE#2423]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_feature_discovery@display-4x.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_feature_discovery@display-4x.html * igt at kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-bmg: [SKIP][367] ([Intel XE#2423]) -> [FAIL][368] ([Intel XE#2882]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_flip@2x-flip-vs-wf_vblank-interruptible.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][369] ([Intel XE#2423]) -> [SKIP][370] ([Intel XE#2316]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_flip@2x-plain-flip-fb-recreate.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [SKIP][371] ([Intel XE#2316]) -> [SKIP][372] ([Intel XE#2423]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_flip@2x-wf_vblank-ts-check.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][373] -> [SKIP][374] ([Intel XE#2423]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][375] ([Intel XE#2597]) -> [SKIP][376] ([Intel XE#2423]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-bmg: [SKIP][377] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][378] ([Intel XE#2136]) +7 other tests skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: [SKIP][379] ([Intel XE#2136]) -> [SKIP][380] ([Intel XE#2293] / [Intel XE#2380]) +9 other tests skip [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][381] ([Intel XE#2136]) -> [SKIP][382] ([Intel XE#455]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][383] ([Intel XE#2312]) -> [SKIP][384] ([Intel XE#2311]) +4 other tests skip [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][385] ([Intel XE#2136]) -> [SKIP][386] ([Intel XE#651]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][387] ([Intel XE#2136]) -> [SKIP][388] ([Intel XE#2312]) +9 other tests skip [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][389] ([Intel XE#2311]) -> [SKIP][390] ([Intel XE#2312]) +3 other tests skip [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][391] ([Intel XE#2311]) -> [SKIP][392] ([Intel XE#2136]) +41 other tests skip [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-slowdraw: - shard-dg2-set2: [SKIP][393] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][394] ([Intel XE#651]) +1 other test skip [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-slowdraw.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-slowdraw.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][395] ([Intel XE#2136]) -> [FAIL][396] ([Intel XE#2333]) +21 other tests fail [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][397] ([Intel XE#2312]) -> [FAIL][398] ([Intel XE#2333]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][399] ([Intel XE#2333]) -> [SKIP][400] ([Intel XE#2136]) +21 other tests skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][401] ([Intel XE#2333]) -> [SKIP][402] ([Intel XE#2312]) +2 other tests skip [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][403] ([Intel XE#651]) -> [SKIP][404] ([Intel XE#2136]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][405] ([Intel XE#2136]) -> [SKIP][406] ([Intel XE#2311]) +33 other tests skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][407] ([Intel XE#651]) -> [SKIP][408] ([Intel XE#2136] / [Intel XE#2351]) [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: [SKIP][409] ([Intel XE#2352]) -> [SKIP][410] ([Intel XE#2136]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][411] ([Intel XE#2313]) -> [SKIP][412] ([Intel XE#2136]) +41 other tests skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-dg2-set2: [SKIP][413] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][414] ([Intel XE#653]) +1 other test skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][415] ([Intel XE#653]) -> [SKIP][416] ([Intel XE#2136]) +1 other test skip [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][417] ([Intel XE#2312]) -> [SKIP][418] ([Intel XE#2313]) +6 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][419] ([Intel XE#2136]) -> [SKIP][420] ([Intel XE#2313]) +41 other tests skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][421] ([Intel XE#2136]) -> [SKIP][422] ([Intel XE#2350]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][423] ([Intel XE#2312]) -> [SKIP][424] ([Intel XE#2136]) +10 other tests skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][425] ([Intel XE#2313]) -> [SKIP][426] ([Intel XE#2312]) +6 other tests skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][427] ([Intel XE#2136]) -> [SKIP][428] ([Intel XE#653]) +3 other tests skip [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-slowdraw.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][429] ([Intel XE#2423]) -> [SKIP][430] ([Intel XE#2502]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_getfb@getfb-reject-ccs.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-2/igt at kms_getfb@getfb-reject-ccs.html - shard-dg2-set2: [SKIP][431] ([Intel XE#2423] / [i915#2575]) -> [SKIP][432] ([Intel XE#605]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_getfb@getfb-reject-ccs.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][433] ([Intel XE#2340]) -> [SKIP][434] ([Intel XE#2423]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_getfb@getfb2-accept-ccs.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2-set2: [SKIP][435] ([Intel XE#2423] / [i915#2575]) -> [SKIP][436] ([Intel XE#455]) [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_hdr@brightness-with-hdr.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-463/igt at kms_hdr@brightness-with-hdr.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][437] ([Intel XE#2934]) -> [SKIP][438] ([Intel XE#2136]) [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_joiner@basic-force-ultra-joiner.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_joiner@basic-force-ultra-joiner.html - shard-dg2-set2: [SKIP][439] ([Intel XE#2925]) -> [SKIP][440] ([Intel XE#2136]) [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt at kms_joiner@basic-force-ultra-joiner.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-bmg: [SKIP][441] ([Intel XE#2136]) -> [SKIP][442] ([Intel XE#2927]) [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_joiner@basic-ultra-joiner.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: [SKIP][443] ([Intel XE#2927]) -> [SKIP][444] ([Intel XE#2136]) [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_joiner@invalid-modeset-ultra-joiner.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][445] ([Intel XE#2423]) -> [SKIP][446] ([Intel XE#2501]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-bmg: [SKIP][447] ([Intel XE#2486]) -> [SKIP][448] ([Intel XE#2423]) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_panel_fitting@atomic-fastset.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-bmg: [SKIP][449] ([Intel XE#2423]) -> [SKIP][450] ([Intel XE#2486]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_panel_fitting@legacy.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-2/igt at kms_panel_fitting@legacy.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][451] ([Intel XE#2393]) -> [SKIP][452] ([Intel XE#2423]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_plane_lowres@tiling-y.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][453] ([Intel XE#2423]) -> [SKIP][454] ([Intel XE#2493]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_plane_multiple@tiling-yf.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][455] ([Intel XE#2423]) -> [SKIP][456] ([Intel XE#2763]) +3 other tests skip [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-bmg: [SKIP][457] ([Intel XE#2763]) -> [SKIP][458] ([Intel XE#2423]) +1 other test skip [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_plane_scaling@planes-downscale-factor-0-25.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_pm_backlight@bad-brightness: - shard-bmg: [SKIP][459] ([Intel XE#870]) -> [SKIP][460] ([Intel XE#2136]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_pm_backlight@bad-brightness.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][461] ([Intel XE#2136]) -> [SKIP][462] ([Intel XE#870]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_pm_backlight@fade-with-dpms.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-2/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: [SKIP][463] ([Intel XE#2391]) -> [SKIP][464] ([Intel XE#2136]) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_pm_dc@dc3co-vpb-simulation.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][465] ([Intel XE#2136]) -> [SKIP][466] ([Intel XE#2392]) +1 other test skip [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_pm_dc@dc5-psr.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-2/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][467] ([Intel XE#2136]) -> [SKIP][468] ([Intel XE#3309]) [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_pm_dc@dc5-retention-flops.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-8/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][469] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][470] ([Intel XE#1129]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_pm_dc@dc6-psr.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: [SKIP][471] ([Intel XE#2136]) -> [SKIP][472] ([Intel XE#2499]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_pm_lpsp@kms-lpsp.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-5/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][473] ([Intel XE#1439] / [Intel XE#836]) -> [SKIP][474] ([Intel XE#2446]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: [SKIP][475] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][476] ([Intel XE#2446]) +1 other test skip [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_pm_rpm@modeset-lpsp-stress.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][477] ([Intel XE#1489]) -> [SKIP][478] ([Intel XE#2136]) [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][479] ([Intel XE#2136]) -> [SKIP][480] ([Intel XE#1489]) +9 other tests skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][481] ([Intel XE#2136]) -> [SKIP][482] ([Intel XE#1489]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-436/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-bmg: [SKIP][483] ([Intel XE#1489]) -> [SKIP][484] ([Intel XE#2136]) +10 other tests skip [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][485] ([Intel XE#2387]) -> [SKIP][486] ([Intel XE#2136]) [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-bmg: [SKIP][487] ([Intel XE#2136]) -> [SKIP][488] ([Intel XE#2387]) +1 other test skip [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_psr2_su@page_flip-xrgb8888.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-bmg: [SKIP][489] ([Intel XE#2136]) -> [SKIP][490] ([Intel XE#2234] / [Intel XE#2850]) +24 other tests skip [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_psr@fbc-pr-cursor-plane-onoff.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-pr-sprite-plane-move: - shard-dg2-set2: [SKIP][491] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][492] ([Intel XE#2136]) [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_psr@fbc-pr-sprite-plane-move.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at kms_psr@fbc-pr-sprite-plane-move.html * igt at kms_psr@fbc-psr2-cursor-render: - shard-dg2-set2: [SKIP][493] ([Intel XE#2136]) -> [SKIP][494] ([Intel XE#2850] / [Intel XE#929]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_psr@fbc-psr2-cursor-render.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-436/igt at kms_psr@fbc-psr2-cursor-render.html * igt at kms_psr@psr-cursor-plane-move: - shard-dg2-set2: [SKIP][495] ([Intel XE#2351]) -> [SKIP][496] ([Intel XE#2850] / [Intel XE#929]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_psr@psr-cursor-plane-move.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at kms_psr@psr-cursor-plane-move.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: [SKIP][497] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][498] ([Intel XE#2136]) +26 other tests skip [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at kms_psr@psr-primary-page-flip.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr-sprite-blt: - shard-dg2-set2: [SKIP][499] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][500] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_psr@psr-sprite-blt.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-436/igt at kms_psr@psr-sprite-blt.html * igt at kms_psr@psr2-primary-render: - shard-bmg: [SKIP][501] ([Intel XE#2136]) -> [SKIP][502] ([Intel XE#2234]) [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_psr@psr2-primary-render.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-5/igt at kms_psr@psr2-primary-render.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][503] ([Intel XE#2136]) -> [SKIP][504] ([Intel XE#2414]) [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-5/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][505] ([Intel XE#2414]) -> [SKIP][506] ([Intel XE#2136]) [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-rotation-90: - shard-bmg: [SKIP][507] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][508] ([Intel XE#2423]) +2 other tests skip [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_rotation_crc@primary-rotation-90.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-bmg: [SKIP][509] ([Intel XE#2423]) -> [SKIP][510] ([Intel XE#2330]) [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-dg2-set2: [SKIP][511] ([Intel XE#2423] / [i915#2575]) -> [SKIP][512] ([Intel XE#3414]) [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_rotation_crc@sprite-rotation-90.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-435/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: [SKIP][513] ([Intel XE#2423]) -> [SKIP][514] ([Intel XE#3414] / [Intel XE#3904]) [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: [SKIP][515] ([Intel XE#2413]) -> [SKIP][516] ([Intel XE#2423]) [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt at kms_scaling_modes@scaling-mode-full-aspect.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][517] ([Intel XE#2423]) -> [SKIP][518] ([Intel XE#2426]) [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-3/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@flip-dpms: - shard-bmg: [SKIP][519] ([Intel XE#1499]) -> [SKIP][520] ([Intel XE#2423]) +1 other test skip [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at kms_vrr@flip-dpms.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@lobf: - shard-bmg: [SKIP][521] ([Intel XE#2423]) -> [SKIP][522] ([Intel XE#2168]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_vrr@lobf.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-6/igt at kms_vrr@lobf.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-bmg: [SKIP][523] ([Intel XE#2423]) -> [SKIP][524] ([Intel XE#1499]) [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-vrr.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-3/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-dg2-set2: [SKIP][525] ([Intel XE#2423] / [i915#2575]) -> [SKIP][526] ([Intel XE#756]) [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at kms_writeback@writeback-check-output.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: [SKIP][527] ([Intel XE#2423]) -> [SKIP][528] ([Intel XE#756]) +1 other test skip [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at kms_writeback@writeback-check-output-xrgb2101010.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][529] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][530] ([Intel XE#2423]) [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at sriov_basic@enable-vfs-autoprobe-off.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][531] ([Intel XE#2905]) -> [SKIP][532] ([Intel XE#1130]) +16 other tests skip [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-bmg: [SKIP][533] ([Intel XE#3889]) -> [SKIP][534] ([Intel XE#1130]) [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: [SKIP][535] ([Intel XE#1130]) -> [SKIP][536] ([Intel XE#3889]) +1 other test skip [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug_online@interrupt-other: - shard-bmg: [SKIP][537] ([Intel XE#1130]) -> [SKIP][538] ([Intel XE#2905]) +14 other tests skip [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt at xe_eudebug_online@interrupt-other.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at xe_eudebug_online@interrupt-other.html * igt at xe_eudebug_online@reset-with-attention: - shard-dg2-set2: [SKIP][539] ([Intel XE#1130]) -> [SKIP][540] ([Intel XE#2905]) [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at xe_eudebug_online@reset-with-attention.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at xe_eudebug_online@reset-with-attention.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: [SKIP][541] ([Intel XE#1130]) -> [SKIP][542] ([Intel XE#2322]) +10 other tests skip [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-2/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt at xe_exec_basic@multigpu-no-exec-rebind: - shard-bmg: [SKIP][543] ([Intel XE#2322]) -> [SKIP][544] ([Intel XE#1130]) +8 other tests skip [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt at xe_exec_basic@multigpu-no-exec-rebind.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at xe_exec_basic@multigpu-no-exec-rebind.html * igt at xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [SKIP][545] ([Intel XE#1130]) -> [SKIP][546] ([Intel XE#288]) +4 other tests skip [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-432/igt at xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate.html * igt at xe_oa@disabled-read-error: - shard-dg2-set2: [SKIP][547] ([Intel XE#1130]) -> [SKIP][548] ([Intel XE#2541] / [Intel XE#3573]) [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at xe_oa@disabled-read-error.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-433/igt at xe_oa@disabled-read-error.html * igt at xe_oa@rc6-disable: - shard-dg2-set2: [SKIP][549] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][550] ([Intel XE#1130]) [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt at xe_oa@rc6-disable.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-434/igt at xe_oa@rc6-disable.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][551] ([Intel XE#2248]) -> [SKIP][552] ([Intel XE#1130]) [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt at xe_oa@unprivileged-single-ctx-counters.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pm@d3cold-basic: - shard-bmg: [SKIP][553] ([Intel XE#1130]) -> [SKIP][554] ([Intel XE#2284]) +2 other tests skip [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at xe_pm@d3cold-basic.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at xe_pm@d3cold-basic.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: [SKIP][555] ([Intel XE#2284]) -> [SKIP][556] ([Intel XE#1130]) [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt at xe_pm@d3cold-mmap-system.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-1/igt at xe_pm@d3cold-mmap-system.html * igt at xe_query@multigpu-query-cs-cycles: - shard-bmg: [SKIP][557] ([Intel XE#944]) -> [SKIP][558] ([Intel XE#1130]) +2 other tests skip [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt at xe_query@multigpu-query-cs-cycles.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-7/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-mem-usage: - shard-bmg: [SKIP][559] ([Intel XE#1130]) -> [SKIP][560] ([Intel XE#944]) +4 other tests skip [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt at xe_query@multigpu-query-mem-usage.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-bmg-4/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_query@multigpu-query-oa-units: - shard-dg2-set2: [SKIP][561] ([Intel XE#1130]) -> [SKIP][562] ([Intel XE#944]) [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt at xe_query@multigpu-query-oa-units.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/shard-dg2-436/igt at xe_query@multigpu-query-oa-units.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [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#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [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#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [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#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#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#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [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#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [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#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#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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [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#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#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#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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [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#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [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#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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_8196 -> IGTPW_12455 * Linux: xe-2504-a15d2a84505eed8dbb58911147e44752734f3a88 -> xe-2505-48e8781781323a28fabb378bcc79b3f48c1bcae0 IGTPW_12455: 5885393e3cf3c5e6bc77566baf9056af5a04192d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8196: 824553d05138bbfa48b9e60e9c2a741497c7c627 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2504-a15d2a84505eed8dbb58911147e44752734f3a88: a15d2a84505eed8dbb58911147e44752734f3a88 xe-2505-48e8781781323a28fabb378bcc79b3f48c1bcae0: 48e8781781323a28fabb378bcc79b3f48c1bcae0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12455/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From nakshtra.goyal at intel.com Fri Jan 17 20:53:19 2025 From: nakshtra.goyal at intel.com (nakshtra.goyal at intel.com) Date: Sat, 18 Jan 2025 02:23:19 +0530 Subject: [PATCH i-g-t] tests/intel/xe_create: Check negative cases for exec_queue create/destroy ioctl Message-ID: <20250117205319.3359797-1-nakshtra.goyal@intel.com> From: Nakshtra Goyal Negetive test cases to check expected errors using invalid flags, width, pad, reserved bits, num_placements, extensions, exec_queue_id Signed-off-by: Nakshtra Goyal --- tests/intel/xe_create.c | 141 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 141 insertions(+) diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c index 07e11036d..edc2a6178 100644 --- a/tests/intel/xe_create.c +++ b/tests/intel/xe_create.c @@ -59,6 +59,123 @@ static int __create_bo(int fd, uint32_t vm, uint64_t size, uint32_t placement, return ret; } +/** + * TEST: Negative test for exec-queue create/destroy ioctl + * Category: Core + * Mega feature: General Core features + * Sub-category: Synchronization + * Functionality: exec-queue create + * Test category: negative test + */ + +/** + * SUBTEST: invalid-flag + * Description: Check ioctl with invalid flag returns expected error code + * + * SUBTEST: exec-queue-create-invalid-reserved + * Description: Send query with invalid reserved value for exec_queue_destroy ioctl + * + * SUBTEST: invalid-width + * Description: Check query with invalid width returns expected error code + * + * SUBTEST: invalid-num-placements + * Description: Check query with invalid num-placements returns expected error code + * + * SUBTEST: invalid-extensions + * Description: Check query with invalid extensions returns expected error code + */ + +static void invalid_flag(int fd) +{ + struct drm_xe_exec_queue_create create = { + .flags = -1, + }; + + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL); +} + +static void exec_queue_create_invalid_reserved(int fd) +{ + struct drm_xe_exec_queue_create create = { + .reserved[0] = 0xffff, + }; + + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL); + + create.reserved[0] = 0; + create.reserved[1] = 0xffff; + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL); +} + +static void invalid_width(int fd) +{ + struct drm_xe_exec_queue_create create = { + .width = 1, + }; + + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL); +} + +static void invalid_num_placements(int fd) +{ + struct drm_xe_exec_queue_create create = { + .num_placements = 1, + }; + + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL); +} + +static void invalid_extensions(int fd) +{ + struct drm_xe_exec_queue_create create = { + .extensions = -1, + }; + + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL); +} + +/** + * SUBTEST: invalid-pad + * Description: Check query with invalid pad returns expected error code + * + * SUBTEST: exec-queue-destroy-invalid-reserved + * Description: Send query with invalid reserved value for exec_queue_destroy ioctl + * + * SUBTEST: invalid-exec-queue-id + * Description: Check query with invalid exec_queue_id returns expected error code + */ + +static void invalid_pad(int fd) +{ + struct drm_xe_exec_queue_destroy destroy = { + .pad = 1, + }; + + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_DESTROY, &destroy, EINVAL); +} + +static void exec_queue_destroy_invalid_reserved(int fd) +{ + struct drm_xe_exec_queue_destroy destroy = { + .reserved[0] = 0xffff, + }; + + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_DESTROY, &destroy, EINVAL); + + destroy.reserved[0] = 0; + destroy.reserved[1] = 0xffff; + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_DESTROY, &destroy, EINVAL); +} + +static void invalid_exec_queue_id(int xe) +{ + struct drm_xe_exec_queue_destroy args = { + .exec_queue_id = 0xffff, + }; + + do_ioctl_err(xe, DRM_IOCTL_XE_EXEC_QUEUE_DESTROY, &args, ENOENT); +} + /** * SUBTEST: create-invalid-size * Functionality: ioctl @@ -392,6 +509,30 @@ igt_main_args("Q:p:", NULL, help_str, opt_handler, NULL) igt_fixture xe = drm_open_driver(DRIVER_XE); + igt_subtest("invalid-flag") + invalid_flag(xe); + + igt_subtest("exec-queue-create-invalid-reserved") + exec_queue_create_invalid_reserved(xe); + + igt_subtest("invalid-width") + invalid_width(xe); + + igt_subtest("invalid-num-placements") + invalid_num_placements(xe); + + igt_subtest("invalid-extensions") + invalid_extensions(xe); + + igt_subtest("invalid-pad") + invalid_pad(xe); + + igt_subtest("exec-queue-destroy-invalid-reserved") + exec_queue_destroy_invalid_reserved(xe); + + igt_subtest("invalid-exec-queue-id") + invalid_exec_queue_id(xe); + igt_subtest("create-invalid-mbz") create_invalid_mbz(xe); -- 2.34.1 From patchwork at emeril.freedesktop.org Fri Jan 17 22:35:53 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 22:35:53 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fcreate=3A_?= =?utf-8?q?Check_negative_cases_for_exec=5Fqueue_create/destroy_ioctl?= In-Reply-To: <20250117205319.3359797-1-nakshtra.goyal@intel.com> References: <20250117205319.3359797-1-nakshtra.goyal@intel.com> Message-ID: <173715335379.897408.7499319820187562896@b555e5b46a47> == Series Details == Series: tests/intel/xe_create: Check negative cases for exec_queue create/destroy ioctl URL : https://patchwork.freedesktop.org/series/143692/ State : success == Summary == CI Bug Log - changes from XEIGT_8198_BAT -> XEIGTPW_12456_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8198 -> IGTPW_12456 * Linux: xe-2508-9033a16532f74ae36c48d729d0855a6e189039df -> xe-2510-4fc988de9f5e17d19edb5fc0a0fbc15a8fc837f4 IGTPW_12456: 12456 IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2508-9033a16532f74ae36c48d729d0855a6e189039df: 9033a16532f74ae36c48d729d0855a6e189039df xe-2510-4fc988de9f5e17d19edb5fc0a0fbc15a8fc837f4: 4fc988de9f5e17d19edb5fc0a0fbc15a8fc837f4 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Fri Jan 17 22:39:25 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 22:39:25 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fcreate?= =?utf-8?q?=3A_Check_negative_cases_for_exec=5Fqueue_create/destroy_ioctl?= In-Reply-To: <20250117205319.3359797-1-nakshtra.goyal@intel.com> References: <20250117205319.3359797-1-nakshtra.goyal@intel.com> Message-ID: <173715356552.897414.9864520687419162944@b555e5b46a47> == Series Details == Series: tests/intel/xe_create: Check negative cases for exec_queue create/destroy ioctl URL : https://patchwork.freedesktop.org/series/143692/ State : success == Summary == CI Bug Log - changes from IGT_8198 -> IGTPW_12456 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/index.html Participating hosts (44 -> 42) ------------------------------ Missing (2): bat-apl-1 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12456 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt at i915_selftest@live at workarounds: - bat-arlh-3: [DMESG-FAIL][1] ([i915#12061]) -> [PASS][2] +1 other test pass [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arlh-3/igt at i915_selftest@live at workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/bat-arlh-3/igt at i915_selftest@live at workarounds.html - bat-arls-5: [DMESG-FAIL][3] ([i915#12061]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arls-5/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/bat-arls-5/igt at i915_selftest@live at workarounds.html - {bat-arls-6}: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arls-6/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/bat-arls-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#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8198 -> IGTPW_12456 * Linux: CI_DRM_15978 -> CI_DRM_15979 CI-20190529: 20190529 CI_DRM_15978: db09bf4e722f65089b91798e6d490d21b8dd8143 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15979: 4fc988de9f5e17d19edb5fc0a0fbc15a8fc837f4 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12456: 12456 IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From lucas.demarchi at intel.com Fri Jan 17 23:17:41 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 17 Jan 2025 15:17:41 -0800 Subject: [PATCH i-g-t 0/5] Add igt_runner's cmdline to results Message-ID: <20250117231751.429703-1-lucas.demarchi@intel.com> Help devs to reproduce what CI is running by dumping what is the command line being used. While it's true that in the shard case we don't have the testlist, just seeing the right incantation of command line is a great improvement. I plan to follow this with the env vars, but first want to get this in. It seems we already have an environment.txt saved, however that doesn't contain the igt_runner's env, only options passed via -e to igt_runner which is then forwarded to each test. I'm wondering if this is a source of bugs when using igt_resume: if the environment doesn't match, it will run with different options on each execution. Lucas De Marchi (5): runner/settings: Deduplicate cleanup runner/settings: Use wrapper functions for each type runner/settings: Drop extra strdup runner/settings: Serialize command line runner/resultgen: Add cmdline to results.json runner/resultgen.c | 7 ++- runner/settings.c | 114 +++++++++++++++++++++++++++++++-------------- runner/settings.h | 4 ++ 3 files changed, 90 insertions(+), 35 deletions(-) -- 2.48.0 From lucas.demarchi at intel.com Fri Jan 17 23:17:45 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 17 Jan 2025 15:17:45 -0800 Subject: [PATCH i-g-t 4/5] runner/settings: Serialize command line In-Reply-To: <20250117231751.429703-1-lucas.demarchi@intel.com> References: <20250117231751.429703-1-lucas.demarchi@intel.com> Message-ID: <20250117231751.429703-5-lucas.demarchi@intel.com> Serialize the command line to metadata.txt. The expected format in the metadata.txt is like below: cmdline.argc : 6 cmdline.argv[0] : ./build/runner/igt_runner cmdline.argv[1] : -o cmdline.argv[2] : --test-list cmdline.argv[3] : /tmp/testlist.txt cmdline.argv[4] : build/tests/ cmdline.argv[5] : /tmp/results Signed-off-by: Lucas De Marchi --- runner/settings.c | 27 +++++++++++++++++++++++++++ runner/settings.h | 4 ++++ 2 files changed, 31 insertions(+) diff --git a/runner/settings.c b/runner/settings.c index 96377f1de..1d65195c9 100644 --- a/runner/settings.c +++ b/runner/settings.c @@ -874,6 +874,8 @@ bool parse_options(int argc, char **argv, goto error; } + settings->cmdline.argc = argc; + settings->cmdline.argv = argv; return true; @@ -1054,6 +1056,7 @@ static bool serialize_hook_strs(struct settings *settings, int dirfd) bool serialize_settings(struct settings *settings) { #define SERIALIZE_LINE(f, s, name, format) fprintf(f, "%s : " format "\n", #name, s->name) +#define SERIALIZE_ARRAY_ITEM(f, s, name, _i, format) fprintf(f, "%s[%d] : " format "\n", #name, _i, s->name[_i]) FILE *f; int dirfd, covfd; @@ -1122,6 +1125,10 @@ bool serialize_settings(struct settings *settings) SERIALIZE_LINE(f, settings, cov_results_per_test, "%d"); SERIALIZE_LINE(f, settings, code_coverage_script, "%s"); + SERIALIZE_LINE(f, settings, cmdline.argc, "%d"); + for (int i = 0; i < settings->cmdline.argc; i++) + SERIALIZE_ARRAY_ITEM(f, settings, cmdline.argv, i, "%s"); + if (settings->sync) { fflush(f); fsync(fileno(f)); @@ -1176,9 +1183,21 @@ static char *parse_str(char **pval) s->field = _f(&val); \ goto cleanup; \ } +#define PARSE_LINE_ARRAY(s, name, val, field, _f, _max) \ + do { \ + int idx; \ + if (sscanf(name, #field "[%u]", &idx) == 1 && \ + idx < s->_max) { \ + s->field[idx] = _f(&val); \ + goto cleanup; \ + } \ + } while (0) + #define PARSE_INT(s, name, val, field) PARSE_LINE(s, name, val, field, parse_int) #define PARSE_UL(s, name, val, field) PARSE_LINE(s, name, val, field, parse_ul) #define PARSE_STR(s, name, val, field) PARSE_LINE(s, name, val, field, parse_str) +#define PARSE_ARRAY_STR(s, name, val, field, _max) \ + PARSE_LINE_ARRAY(s, name, val, field, parse_str, _max) bool read_settings_from_file(struct settings *settings, FILE *f) { @@ -1210,6 +1229,13 @@ bool read_settings_from_file(struct settings *settings, FILE *f) PARSE_INT(settings, name, val, enable_code_coverage); PARSE_INT(settings, name, val, cov_results_per_test); PARSE_STR(settings, name, val, code_coverage_script); + PARSE_INT(settings, name, val, cmdline.argc); + + if (settings->cmdline.argc && !settings->cmdline.argv) + settings->cmdline.argv = calloc(settings->cmdline.argc, + sizeof(*settings->cmdline.argv)); + + PARSE_ARRAY_STR(settings, name, val, cmdline.argv, cmdline.argc); printf("Warning: Unknown field in settings file: %s = %s\n", name, val); @@ -1233,6 +1259,7 @@ cleanup: return true; } #undef PARSE_LINE +#undef PARSE_LINE_ARRAY /** * read_env_vars_from_file() - load env vars from a file diff --git a/runner/settings.h b/runner/settings.h index f69f09778..2266118a7 100644 --- a/runner/settings.h +++ b/runner/settings.h @@ -75,6 +75,10 @@ struct settings { char *code_coverage_script; bool enable_code_coverage; bool cov_results_per_test; + struct { + int argc; + char **argv; + } cmdline; }; /** -- 2.48.0 From lucas.demarchi at intel.com Fri Jan 17 23:17:42 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 17 Jan 2025 15:17:42 -0800 Subject: [PATCH i-g-t 1/5] runner/settings: Deduplicate cleanup In-Reply-To: <20250117231751.429703-1-lucas.demarchi@intel.com> References: <20250117231751.429703-1-lucas.demarchi@intel.com> Message-ID: <20250117231751.429703-2-lucas.demarchi@intel.com> Deduplicate cleanup so it's also easy to parse the line in a different way. Signed-off-by: Lucas De Marchi --- runner/settings.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/runner/settings.c b/runner/settings.c index 92fd42ea6..80d95be5b 100644 --- a/runner/settings.c +++ b/runner/settings.c @@ -1154,13 +1154,10 @@ bool serialize_settings(struct settings *settings) bool read_settings_from_file(struct settings *settings, FILE *f) { -#define PARSE_LINE(s, name, val, field, write) \ - if (!strcmp(name, #field)) { \ - s->field = write; \ - free(name); \ - free(val); \ - name = val = NULL; \ - continue; \ +#define PARSE_LINE(s, name, val, field, write) \ + if (!strcmp(name, #field)) { \ + s->field = write; \ + goto cleanup; \ } char *name = NULL, *val = NULL; @@ -1195,6 +1192,8 @@ bool read_settings_from_file(struct settings *settings, FILE *f) printf("Warning: Unknown field in settings file: %s = %s\n", name, val); + +cleanup: free(name); free(val); name = val = NULL; -- 2.48.0 From lucas.demarchi at intel.com Fri Jan 17 23:17:43 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 17 Jan 2025 15:17:43 -0800 Subject: [PATCH i-g-t 2/5] runner/settings: Use wrapper functions for each type In-Reply-To: <20250117231751.429703-1-lucas.demarchi@intel.com> References: <20250117231751.429703-1-lucas.demarchi@intel.com> Message-ID: <20250117231751.429703-3-lucas.demarchi@intel.com> Simplify assigning the variables by using wrapper functions. This avoids calling atoi() on every iteration and will allow to simplify the strdup() calls in future. Signed-off-by: Lucas De Marchi --- runner/settings.c | 74 ++++++++++++++++++++++++++++------------------- 1 file changed, 45 insertions(+), 29 deletions(-) diff --git a/runner/settings.c b/runner/settings.c index 80d95be5b..13694a51c 100644 --- a/runner/settings.c +++ b/runner/settings.c @@ -1152,43 +1152,60 @@ bool serialize_settings(struct settings *settings) #undef SERIALIZE_LINE } -bool read_settings_from_file(struct settings *settings, FILE *f) +static int parse_int(char **pval) +{ + return atoi(*pval); +} + +static unsigned long parse_ul(char **pval) +{ + return strtoul(*pval, NULL, 10); +} + +static char *parse_str(char **pval) { -#define PARSE_LINE(s, name, val, field, write) \ + return *pval ? strdup(*pval) : NULL; +} + +#define PARSE_LINE(s, name, val, field, _f) \ if (!strcmp(name, #field)) { \ - s->field = write; \ + s->field = _f(&val); \ goto cleanup; \ } +#define PARSE_INT(s, name, val, field) PARSE_LINE(s, name, val, field, parse_int) +#define PARSE_UL(s, name, val, field) PARSE_LINE(s, name, val, field, parse_ul) +#define PARSE_STR(s, name, val, field) PARSE_LINE(s, name, val, field, parse_str) +bool read_settings_from_file(struct settings *settings, FILE *f) +{ char *name = NULL, *val = NULL; settings->dmesg_warn_level = -1; while (fscanf(f, "%ms : %m[^\n]", &name, &val) == 2) { - int numval = atoi(val); - PARSE_LINE(settings, name, val, abort_mask, numval); - PARSE_LINE(settings, name, val, disk_usage_limit, strtoul(val, NULL, 10)); - PARSE_LINE(settings, name, val, test_list, val ? strdup(val) : NULL); - PARSE_LINE(settings, name, val, name, val ? strdup(val) : NULL); - PARSE_LINE(settings, name, val, dry_run, numval); - PARSE_LINE(settings, name, val, allow_non_root, numval); - PARSE_LINE(settings, name, val, facts, numval); - PARSE_LINE(settings, name, val, sync, numval); - PARSE_LINE(settings, name, val, log_level, numval); - PARSE_LINE(settings, name, val, overwrite, numval); - PARSE_LINE(settings, name, val, multiple_mode, numval); - PARSE_LINE(settings, name, val, inactivity_timeout, numval); - PARSE_LINE(settings, name, val, per_test_timeout, numval); - PARSE_LINE(settings, name, val, overall_timeout, numval); - PARSE_LINE(settings, name, val, use_watchdog, numval); - PARSE_LINE(settings, name, val, piglit_style_dmesg, numval); - PARSE_LINE(settings, name, val, dmesg_warn_level, numval); - PARSE_LINE(settings, name, val, prune_mode, numval); - PARSE_LINE(settings, name, val, test_root, val ? strdup(val) : NULL); - PARSE_LINE(settings, name, val, results_path, val ? strdup(val) : NULL); - PARSE_LINE(settings, name, val, enable_code_coverage, numval); - PARSE_LINE(settings, name, val, cov_results_per_test, numval); - PARSE_LINE(settings, name, val, code_coverage_script, val ? strdup(val) : NULL); + PARSE_INT(settings, name, val, abort_mask); + PARSE_UL(settings, name, val, disk_usage_limit); + PARSE_STR(settings, name, val, test_list); + PARSE_STR(settings, name, val, name); + PARSE_INT(settings, name, val, dry_run); + PARSE_INT(settings, name, val, allow_non_root); + PARSE_INT(settings, name, val, facts); + PARSE_INT(settings, name, val, sync); + PARSE_INT(settings, name, val, log_level); + PARSE_INT(settings, name, val, overwrite); + PARSE_INT(settings, name, val, multiple_mode); + PARSE_INT(settings, name, val, inactivity_timeout); + PARSE_INT(settings, name, val, per_test_timeout); + PARSE_INT(settings, name, val, overall_timeout); + PARSE_INT(settings, name, val, use_watchdog); + PARSE_INT(settings, name, val, piglit_style_dmesg); + PARSE_INT(settings, name, val, dmesg_warn_level); + PARSE_INT(settings, name, val, prune_mode); + PARSE_STR(settings, name, val, test_root); + PARSE_STR(settings, name, val, results_path); + PARSE_INT(settings, name, val, enable_code_coverage); + PARSE_INT(settings, name, val, cov_results_per_test); + PARSE_STR(settings, name, val, code_coverage_script); printf("Warning: Unknown field in settings file: %s = %s\n", name, val); @@ -1210,9 +1227,8 @@ cleanup: free(val); return true; - -#undef PARSE_LINE } +#undef PARSE_LINE /** * read_env_vars_from_file() - load env vars from a file -- 2.48.0 From lucas.demarchi at intel.com Fri Jan 17 23:17:44 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 17 Jan 2025 15:17:44 -0800 Subject: [PATCH i-g-t 3/5] runner/settings: Drop extra strdup In-Reply-To: <20250117231751.429703-1-lucas.demarchi@intel.com> References: <20250117231751.429703-1-lucas.demarchi@intel.com> Message-ID: <20250117231751.429703-4-lucas.demarchi@intel.com> No need to strdup() again since the fscanf() function is already allocating the variable. Just set the pointer to NULL so we "leak" our variable to be saved in the settings. Signed-off-by: Lucas De Marchi --- runner/settings.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/runner/settings.c b/runner/settings.c index 13694a51c..96377f1de 100644 --- a/runner/settings.c +++ b/runner/settings.c @@ -1164,7 +1164,11 @@ static unsigned long parse_ul(char **pval) static char *parse_str(char **pval) { - return *pval ? strdup(*pval) : NULL; + char *ret = *pval; + + *pval = NULL; + + return ret; } #define PARSE_LINE(s, name, val, field, _f) \ -- 2.48.0 From lucas.demarchi at intel.com Fri Jan 17 23:17:46 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 17 Jan 2025 15:17:46 -0800 Subject: [PATCH i-g-t 5/5] runner/resultgen: Add cmdline to results.json In-Reply-To: <20250117231751.429703-1-lucas.demarchi@intel.com> References: <20250117231751.429703-1-lucas.demarchi@intel.com> Message-ID: <20250117231751.429703-6-lucas.demarchi@intel.com> For easier repro scenarios, add the cmdline to the json: one can see the exact command executed to try to reproduce a CI failure without needing extra files. Signed-off-by: Lucas De Marchi --- runner/resultgen.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/runner/resultgen.c b/runner/resultgen.c index 87847bf5b..0d3a569cf 100644 --- a/runner/resultgen.c +++ b/runner/resultgen.c @@ -2281,7 +2281,7 @@ struct json_object *generate_results_json(int dirfd) { struct settings settings; struct job_list job_list; - struct json_object *obj, *elapsed; + struct json_object *obj, *elapsed, *arr; struct results results; int testdirfd, fd; size_t i; @@ -2319,6 +2319,11 @@ struct json_object *generate_results_json(int dirfd) close(fd); } + arr = json_object_new_array(); + for (i = 0; i < settings.cmdline.argc; i++) + json_object_array_add(arr, json_object_new_string(settings.cmdline.argv[i])); + json_object_object_add(obj, "cmdline", arr); + elapsed = json_object_new_object(); json_object_object_add(elapsed, "__type__", json_object_new_string("TimeAttribute")); if ((fd = openat(dirfd, "starttime.txt", O_RDONLY)) >= 0) { -- 2.48.0 From lucas.demarchi at intel.com Fri Jan 17 23:17:48 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 17 Jan 2025 15:17:48 -0800 Subject: [PATCH i-g-t 2/5] runner/settings: Use wrapper functions for each type In-Reply-To: <20250117231751.429703-1-lucas.demarchi@intel.com> References: <20250117231751.429703-1-lucas.demarchi@intel.com> Message-ID: <20250117231751.429703-8-lucas.demarchi@intel.com> Simplify assigning the variables by using wrapper functions. This avoids calling atoi() on every iteration and will allow to simplify the strdup() calls in future. Signed-off-by: Lucas De Marchi --- runner/settings.c | 74 ++++++++++++++++++++++++++++------------------- 1 file changed, 45 insertions(+), 29 deletions(-) diff --git a/runner/settings.c b/runner/settings.c index 80d95be5b..13694a51c 100644 --- a/runner/settings.c +++ b/runner/settings.c @@ -1152,43 +1152,60 @@ bool serialize_settings(struct settings *settings) #undef SERIALIZE_LINE } -bool read_settings_from_file(struct settings *settings, FILE *f) +static int parse_int(char **pval) +{ + return atoi(*pval); +} + +static unsigned long parse_ul(char **pval) +{ + return strtoul(*pval, NULL, 10); +} + +static char *parse_str(char **pval) { -#define PARSE_LINE(s, name, val, field, write) \ + return *pval ? strdup(*pval) : NULL; +} + +#define PARSE_LINE(s, name, val, field, _f) \ if (!strcmp(name, #field)) { \ - s->field = write; \ + s->field = _f(&val); \ goto cleanup; \ } +#define PARSE_INT(s, name, val, field) PARSE_LINE(s, name, val, field, parse_int) +#define PARSE_UL(s, name, val, field) PARSE_LINE(s, name, val, field, parse_ul) +#define PARSE_STR(s, name, val, field) PARSE_LINE(s, name, val, field, parse_str) +bool read_settings_from_file(struct settings *settings, FILE *f) +{ char *name = NULL, *val = NULL; settings->dmesg_warn_level = -1; while (fscanf(f, "%ms : %m[^\n]", &name, &val) == 2) { - int numval = atoi(val); - PARSE_LINE(settings, name, val, abort_mask, numval); - PARSE_LINE(settings, name, val, disk_usage_limit, strtoul(val, NULL, 10)); - PARSE_LINE(settings, name, val, test_list, val ? strdup(val) : NULL); - PARSE_LINE(settings, name, val, name, val ? strdup(val) : NULL); - PARSE_LINE(settings, name, val, dry_run, numval); - PARSE_LINE(settings, name, val, allow_non_root, numval); - PARSE_LINE(settings, name, val, facts, numval); - PARSE_LINE(settings, name, val, sync, numval); - PARSE_LINE(settings, name, val, log_level, numval); - PARSE_LINE(settings, name, val, overwrite, numval); - PARSE_LINE(settings, name, val, multiple_mode, numval); - PARSE_LINE(settings, name, val, inactivity_timeout, numval); - PARSE_LINE(settings, name, val, per_test_timeout, numval); - PARSE_LINE(settings, name, val, overall_timeout, numval); - PARSE_LINE(settings, name, val, use_watchdog, numval); - PARSE_LINE(settings, name, val, piglit_style_dmesg, numval); - PARSE_LINE(settings, name, val, dmesg_warn_level, numval); - PARSE_LINE(settings, name, val, prune_mode, numval); - PARSE_LINE(settings, name, val, test_root, val ? strdup(val) : NULL); - PARSE_LINE(settings, name, val, results_path, val ? strdup(val) : NULL); - PARSE_LINE(settings, name, val, enable_code_coverage, numval); - PARSE_LINE(settings, name, val, cov_results_per_test, numval); - PARSE_LINE(settings, name, val, code_coverage_script, val ? strdup(val) : NULL); + PARSE_INT(settings, name, val, abort_mask); + PARSE_UL(settings, name, val, disk_usage_limit); + PARSE_STR(settings, name, val, test_list); + PARSE_STR(settings, name, val, name); + PARSE_INT(settings, name, val, dry_run); + PARSE_INT(settings, name, val, allow_non_root); + PARSE_INT(settings, name, val, facts); + PARSE_INT(settings, name, val, sync); + PARSE_INT(settings, name, val, log_level); + PARSE_INT(settings, name, val, overwrite); + PARSE_INT(settings, name, val, multiple_mode); + PARSE_INT(settings, name, val, inactivity_timeout); + PARSE_INT(settings, name, val, per_test_timeout); + PARSE_INT(settings, name, val, overall_timeout); + PARSE_INT(settings, name, val, use_watchdog); + PARSE_INT(settings, name, val, piglit_style_dmesg); + PARSE_INT(settings, name, val, dmesg_warn_level); + PARSE_INT(settings, name, val, prune_mode); + PARSE_STR(settings, name, val, test_root); + PARSE_STR(settings, name, val, results_path); + PARSE_INT(settings, name, val, enable_code_coverage); + PARSE_INT(settings, name, val, cov_results_per_test); + PARSE_STR(settings, name, val, code_coverage_script); printf("Warning: Unknown field in settings file: %s = %s\n", name, val); @@ -1210,9 +1227,8 @@ cleanup: free(val); return true; - -#undef PARSE_LINE } +#undef PARSE_LINE /** * read_env_vars_from_file() - load env vars from a file -- 2.48.0 From lucas.demarchi at intel.com Fri Jan 17 23:17:49 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 17 Jan 2025 15:17:49 -0800 Subject: [PATCH i-g-t 3/5] runner/settings: Drop extra strdup In-Reply-To: <20250117231751.429703-1-lucas.demarchi@intel.com> References: <20250117231751.429703-1-lucas.demarchi@intel.com> Message-ID: <20250117231751.429703-9-lucas.demarchi@intel.com> No need to strdup() again since the fscanf() function is already allocating the variable. Just set the pointer to NULL so we "leak" our variable to be saved in the settings. Signed-off-by: Lucas De Marchi --- runner/settings.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/runner/settings.c b/runner/settings.c index 13694a51c..96377f1de 100644 --- a/runner/settings.c +++ b/runner/settings.c @@ -1164,7 +1164,11 @@ static unsigned long parse_ul(char **pval) static char *parse_str(char **pval) { - return *pval ? strdup(*pval) : NULL; + char *ret = *pval; + + *pval = NULL; + + return ret; } #define PARSE_LINE(s, name, val, field, _f) \ -- 2.48.0 From lucas.demarchi at intel.com Fri Jan 17 23:17:50 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 17 Jan 2025 15:17:50 -0800 Subject: [PATCH i-g-t 4/5] runner/settings: Serialize command line In-Reply-To: <20250117231751.429703-1-lucas.demarchi@intel.com> References: <20250117231751.429703-1-lucas.demarchi@intel.com> Message-ID: <20250117231751.429703-10-lucas.demarchi@intel.com> Serialize the command line to metadata.txt. The expected format in the metadata.txt is like below: cmdline.argc : 6 cmdline.argv[0] : ./build/runner/igt_runner cmdline.argv[1] : -o cmdline.argv[2] : --test-list cmdline.argv[3] : /tmp/testlist.txt cmdline.argv[4] : build/tests/ cmdline.argv[5] : /tmp/results Signed-off-by: Lucas De Marchi --- runner/settings.c | 27 +++++++++++++++++++++++++++ runner/settings.h | 4 ++++ 2 files changed, 31 insertions(+) diff --git a/runner/settings.c b/runner/settings.c index 96377f1de..1d65195c9 100644 --- a/runner/settings.c +++ b/runner/settings.c @@ -874,6 +874,8 @@ bool parse_options(int argc, char **argv, goto error; } + settings->cmdline.argc = argc; + settings->cmdline.argv = argv; return true; @@ -1054,6 +1056,7 @@ static bool serialize_hook_strs(struct settings *settings, int dirfd) bool serialize_settings(struct settings *settings) { #define SERIALIZE_LINE(f, s, name, format) fprintf(f, "%s : " format "\n", #name, s->name) +#define SERIALIZE_ARRAY_ITEM(f, s, name, _i, format) fprintf(f, "%s[%d] : " format "\n", #name, _i, s->name[_i]) FILE *f; int dirfd, covfd; @@ -1122,6 +1125,10 @@ bool serialize_settings(struct settings *settings) SERIALIZE_LINE(f, settings, cov_results_per_test, "%d"); SERIALIZE_LINE(f, settings, code_coverage_script, "%s"); + SERIALIZE_LINE(f, settings, cmdline.argc, "%d"); + for (int i = 0; i < settings->cmdline.argc; i++) + SERIALIZE_ARRAY_ITEM(f, settings, cmdline.argv, i, "%s"); + if (settings->sync) { fflush(f); fsync(fileno(f)); @@ -1176,9 +1183,21 @@ static char *parse_str(char **pval) s->field = _f(&val); \ goto cleanup; \ } +#define PARSE_LINE_ARRAY(s, name, val, field, _f, _max) \ + do { \ + int idx; \ + if (sscanf(name, #field "[%u]", &idx) == 1 && \ + idx < s->_max) { \ + s->field[idx] = _f(&val); \ + goto cleanup; \ + } \ + } while (0) + #define PARSE_INT(s, name, val, field) PARSE_LINE(s, name, val, field, parse_int) #define PARSE_UL(s, name, val, field) PARSE_LINE(s, name, val, field, parse_ul) #define PARSE_STR(s, name, val, field) PARSE_LINE(s, name, val, field, parse_str) +#define PARSE_ARRAY_STR(s, name, val, field, _max) \ + PARSE_LINE_ARRAY(s, name, val, field, parse_str, _max) bool read_settings_from_file(struct settings *settings, FILE *f) { @@ -1210,6 +1229,13 @@ bool read_settings_from_file(struct settings *settings, FILE *f) PARSE_INT(settings, name, val, enable_code_coverage); PARSE_INT(settings, name, val, cov_results_per_test); PARSE_STR(settings, name, val, code_coverage_script); + PARSE_INT(settings, name, val, cmdline.argc); + + if (settings->cmdline.argc && !settings->cmdline.argv) + settings->cmdline.argv = calloc(settings->cmdline.argc, + sizeof(*settings->cmdline.argv)); + + PARSE_ARRAY_STR(settings, name, val, cmdline.argv, cmdline.argc); printf("Warning: Unknown field in settings file: %s = %s\n", name, val); @@ -1233,6 +1259,7 @@ cleanup: return true; } #undef PARSE_LINE +#undef PARSE_LINE_ARRAY /** * read_env_vars_from_file() - load env vars from a file diff --git a/runner/settings.h b/runner/settings.h index f69f09778..2266118a7 100644 --- a/runner/settings.h +++ b/runner/settings.h @@ -75,6 +75,10 @@ struct settings { char *code_coverage_script; bool enable_code_coverage; bool cov_results_per_test; + struct { + int argc; + char **argv; + } cmdline; }; /** -- 2.48.0 From lucas.demarchi at intel.com Fri Jan 17 23:17:47 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 17 Jan 2025 15:17:47 -0800 Subject: [PATCH i-g-t 1/5] runner/settings: Deduplicate cleanup In-Reply-To: <20250117231751.429703-1-lucas.demarchi@intel.com> References: <20250117231751.429703-1-lucas.demarchi@intel.com> Message-ID: <20250117231751.429703-7-lucas.demarchi@intel.com> Deduplicate cleanup so it's also easy to parse the line in a different way. Signed-off-by: Lucas De Marchi --- runner/settings.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/runner/settings.c b/runner/settings.c index 92fd42ea6..80d95be5b 100644 --- a/runner/settings.c +++ b/runner/settings.c @@ -1154,13 +1154,10 @@ bool serialize_settings(struct settings *settings) bool read_settings_from_file(struct settings *settings, FILE *f) { -#define PARSE_LINE(s, name, val, field, write) \ - if (!strcmp(name, #field)) { \ - s->field = write; \ - free(name); \ - free(val); \ - name = val = NULL; \ - continue; \ +#define PARSE_LINE(s, name, val, field, write) \ + if (!strcmp(name, #field)) { \ + s->field = write; \ + goto cleanup; \ } char *name = NULL, *val = NULL; @@ -1195,6 +1192,8 @@ bool read_settings_from_file(struct settings *settings, FILE *f) printf("Warning: Unknown field in settings file: %s = %s\n", name, val); + +cleanup: free(name); free(val); name = val = NULL; -- 2.48.0 From lucas.demarchi at intel.com Fri Jan 17 23:17:51 2025 From: lucas.demarchi at intel.com (Lucas De Marchi) Date: Fri, 17 Jan 2025 15:17:51 -0800 Subject: [PATCH i-g-t 5/5] runner/resultgen: Add cmdline to results.json In-Reply-To: <20250117231751.429703-1-lucas.demarchi@intel.com> References: <20250117231751.429703-1-lucas.demarchi@intel.com> Message-ID: <20250117231751.429703-11-lucas.demarchi@intel.com> For easier repro scenarios, add the cmdline to the json: one can see the exact command executed to try to reproduce a CI failure without needing extra files. Signed-off-by: Lucas De Marchi --- runner/resultgen.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/runner/resultgen.c b/runner/resultgen.c index 87847bf5b..0d3a569cf 100644 --- a/runner/resultgen.c +++ b/runner/resultgen.c @@ -2281,7 +2281,7 @@ struct json_object *generate_results_json(int dirfd) { struct settings settings; struct job_list job_list; - struct json_object *obj, *elapsed; + struct json_object *obj, *elapsed, *arr; struct results results; int testdirfd, fd; size_t i; @@ -2319,6 +2319,11 @@ struct json_object *generate_results_json(int dirfd) close(fd); } + arr = json_object_new_array(); + for (i = 0; i < settings.cmdline.argc; i++) + json_object_array_add(arr, json_object_new_string(settings.cmdline.argv[i])); + json_object_object_add(obj, "cmdline", arr); + elapsed = json_object_new_object(); json_object_object_add(elapsed, "__type__", json_object_new_string("TimeAttribute")); if ((fd = openat(dirfd, "starttime.txt", O_RDONLY)) >= 0) { -- 2.48.0 From jonathan.cavitt at intel.com Fri Jan 17 23:25:17 2025 From: jonathan.cavitt at intel.com (Cavitt, Jonathan) Date: Fri, 17 Jan 2025 23:25:17 +0000 Subject: [PATCH i-g-t] tests/intel/xe_create: Check negative cases for exec_queue create/destroy ioctl In-Reply-To: <20250117205319.3359797-1-nakshtra.goyal@intel.com> References: <20250117205319.3359797-1-nakshtra.goyal@intel.com> Message-ID: I left some notes below. The NITs can be ignored safely, but everything else should be corrected. To summarize the requested changes: 1. Swap the names of the invalid_width and invalid_num_placements tests, or test the product of those two values instead (as it should not be zero and should be less than XE_HW_ENGINE_MAX_INSTANCE). 2. Add width = 1 and num_placements = 1 to the drm_xe_exec_queue_create struct in invalid_extensions. 3. Check for EFAULT instead of EINVAL in the invalid_extensions test. Once the above changes are applied (or refuted), you can add my RB: Reviewed-by: Jonathan Cavitt -----Original Message----- From: igt-dev On Behalf Of nakshtra.goyal at intel.com Sent: Friday, January 17, 2025 12:53 PM To: igt-dev at lists.freedesktop.org; Gandi, Ramadevi Cc: Gurram, Pravalika Subject: [PATCH i-g-t] tests/intel/xe_create: Check negative cases for exec_queue create/destroy ioctl > > From: Nakshtra Goyal > > Negetive test cases to check expected errors using invalid > flags, width, pad, reserved bits, num_placements, extensions, exec_queue_id NIT: I'm always a bit concerned with these error-case tests that we might be hitting false-negatives, or cases where the tests should fail but end up passing regardless. We don't have a unique error code for every possible failure in the execution, so one of two things could happen that would cause the test to pass without correctly identifying the exercised issue: 1. The test fails earlier than expected, but with the expected error value. The test would still pass, but we wouldn't be able to catch it until the same failure is picked up again during regular execution. This would mean the test isn't exercising what it's supposed to be exercising, which is bad on its own. 2. The test fails later than expected, but with the expected error value. This would arguably be worse than the first case, because that would definitely mean that the error case we're trying to exercise isn't properly being handled. In both cases, the issue could bleed into regular execution. > > Signed-off-by: Nakshtra Goyal > --- > tests/intel/xe_create.c | 141 ++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 141 insertions(+) > > diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c > index 07e11036d..edc2a6178 100644 > --- a/tests/intel/xe_create.c > +++ b/tests/intel/xe_create.c > @@ -59,6 +59,123 @@ static int __create_bo(int fd, uint32_t vm, uint64_t size, uint32_t placement, > return ret; > } > > +/** > + * TEST: Negative test for exec-queue create/destroy ioctl > + * Category: Core > + * Mega feature: General Core features > + * Sub-category: Synchronization > + * Functionality: exec-queue create > + * Test category: negative test > + */ > + > +/** > + * SUBTEST: invalid-flag > + * Description: Check ioctl with invalid flag returns expected error code > + * > + * SUBTEST: exec-queue-create-invalid-reserved > + * Description: Send query with invalid reserved value for exec_queue_destroy ioctl > + * > + * SUBTEST: invalid-width > + * Description: Check query with invalid width returns expected error code > + * > + * SUBTEST: invalid-num-placements > + * Description: Check query with invalid num-placements returns expected error code > + * > + * SUBTEST: invalid-extensions > + * Description: Check query with invalid extensions returns expected error code > + */ > + > +static void invalid_flag(int fd) > +{ > + struct drm_xe_exec_queue_create create = { > + .flags = -1, NIT: I'm fairly certain that for right now, any non-zero flag is invalid. We could probably just use 1 here, but maybe this is to future-proof this test for when flag support is added? It's not particularly important to change, mind: -1 is just as invalid as 1 is. > + }; > + > + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL); > +} > + > +static void exec_queue_create_invalid_reserved(int fd) > +{ > + struct drm_xe_exec_queue_create create = { > + .reserved[0] = 0xffff, > + }; > + > + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL); > + > + create.reserved[0] = 0; > + create.reserved[1] = 0xffff; > + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL); > +} > + > +static void invalid_width(int fd) > +{ > + struct drm_xe_exec_queue_create create = { > + .width = 1, I think that we only get an error with width and num placements if width * num_placements == 0 or width * num_placements > XE_HW_ENGINE_MAX_INSTANCE. So, here, I think it's technically the num_placements that is invalid because it should not be zero. > + }; > + > + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL); > +} > + > +static void invalid_num_placements(int fd) > +{ > + struct drm_xe_exec_queue_create create = { > + .num_placements = 1, See above comment. I think it's technically the width that is invalid here. NIT: Maybe this test and the above invalid_width tests can be concatenated? Something like: """ static void invalid_len(int fd) { struct drm_xe_exec_queue_create create = { .width = 1, .num_placements = 1, } /* Test width = 0 */ create.width = 0; do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL); create.width = 1; /* Test num_placements = 0 */ create.num_placements = 0; do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL); create.num_placements = 1; /* Test length overflow (length = width * num_placements) */ create.width = 16; // FIXME: Refer to XE_HW_ENGINE_MAX_INSTANCE here. create.num_placements = 16; do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL); } """ Or perhaps we should be testing length = 0 and length > XE_HW_ENGINE_MAX_INSTANCE as the tests here instead of exercising width and num_placements separately? > + }; > + > + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL); > +} > + > +static void invalid_extensions(int fd) > +{ > + struct drm_xe_exec_queue_create create = { > + .extensions = -1, > + }; > + > + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL); I ran this test on my end, and while the error value here is correct, I'm fairly certain the ioctl is only reporting EINVAL because it's hitting the earlier invalid_num_placements and invalid_width cases. With width and num_placements set to 1, we hit EFAULT instead, which I think is what's expected to be hit when we run to exec_queue_user_extensions in the execution stack (namely, due to the error reported by __copy_from_user). Though I can see why EINVAL was chosen here: we test something similar in create-invalid-mbz, and there, passing any extensions returns EINVAL. However, xe_exec_queue_create returns a different error value in this case. Also, this is the only error test that goes beyond the width and num_placements check during execution, so this should be the only place we need to set width and num_placements values. > +} > + > +/** > + * SUBTEST: invalid-pad > + * Description: Check query with invalid pad returns expected error code > + * > + * SUBTEST: exec-queue-destroy-invalid-reserved > + * Description: Send query with invalid reserved value for exec_queue_destroy ioctl > + * > + * SUBTEST: invalid-exec-queue-id > + * Description: Check query with invalid exec_queue_id returns expected error code > + */ > + > +static void invalid_pad(int fd) > +{ > + struct drm_xe_exec_queue_destroy destroy = { > + .pad = 1, > + }; > + > + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_DESTROY, &destroy, EINVAL); > +} > + > +static void exec_queue_destroy_invalid_reserved(int fd) NIT: Hmm... I was originally going to point out that we probably don't need to declare "exec_queue_" here and could just shorten the test name to "destroy_invalid_reserved", as then the naming convention would match better with the create-invalid-mbz test. But then I checked create-invalid-mbz more thoroughly, and realized that these tests and the create-invalid-mbz test exercise two different utilities (exec queues and bos, respectively). With that in mind, I'm not sure if this test suite (xe_create.c) is the correct place to be exercising the exec_queue_create and exec_queue_destroy error functionalities. Though on the other hand, I don't see us exercising anything even remotely similar in any of the other test suites, so this is probably as good of a place as any to perform this exercise. -Jonathan Cavitt > +{ > + struct drm_xe_exec_queue_destroy destroy = { > + .reserved[0] = 0xffff, > + }; > + > + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_DESTROY, &destroy, EINVAL); > + > + destroy.reserved[0] = 0; > + destroy.reserved[1] = 0xffff; > + do_ioctl_err(fd, DRM_IOCTL_XE_EXEC_QUEUE_DESTROY, &destroy, EINVAL); > +} > + > +static void invalid_exec_queue_id(int xe) > +{ > + struct drm_xe_exec_queue_destroy args = { > + .exec_queue_id = 0xffff, > + }; > + > + do_ioctl_err(xe, DRM_IOCTL_XE_EXEC_QUEUE_DESTROY, &args, ENOENT); > +} > + > /** > * SUBTEST: create-invalid-size > * Functionality: ioctl > @@ -392,6 +509,30 @@ igt_main_args("Q:p:", NULL, help_str, opt_handler, NULL) > igt_fixture > xe = drm_open_driver(DRIVER_XE); > > + igt_subtest("invalid-flag") > + invalid_flag(xe); > + > + igt_subtest("exec-queue-create-invalid-reserved") > + exec_queue_create_invalid_reserved(xe); > + > + igt_subtest("invalid-width") > + invalid_width(xe); > + > + igt_subtest("invalid-num-placements") > + invalid_num_placements(xe); > + > + igt_subtest("invalid-extensions") > + invalid_extensions(xe); > + > + igt_subtest("invalid-pad") > + invalid_pad(xe); > + > + igt_subtest("exec-queue-destroy-invalid-reserved") > + exec_queue_destroy_invalid_reserved(xe); > + > + igt_subtest("invalid-exec-queue-id") > + invalid_exec_queue_id(xe); > + > igt_subtest("create-invalid-mbz") > create_invalid_mbz(xe); > > -- > 2.34.1 > > From patchwork at emeril.freedesktop.org Fri Jan 17 23:32:37 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 23:32:37 -0000 Subject: =?utf-8?q?=E2=9C=97_GitLab=2EPipeline=3A_warning_for_Add_igt=5Frunner=27s_cm?= =?utf-8?q?dline_to_results?= In-Reply-To: <20250117231751.429703-1-lucas.demarchi@intel.com> References: <20250117231751.429703-1-lucas.demarchi@intel.com> Message-ID: <173715675708.909766.12038094230318846743@b555e5b46a47> == Series Details == Series: Add igt_runner's cmdline to results URL : https://patchwork.freedesktop.org/series/143699/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1347758 for the overview. test:ninja-test has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69563458): 439/443 assembler test/rnde-intsrc OK 0.02 s 440/443 assembler test/rndz OK 0.01 s 441/443 assembler test/lzd OK 0.01 s 442/443 assembler test/not OK 0.01 s 443/443 assembler test/immediate OK 0.01 s Ok: 438 Expected Fail: 4 Fail: 1 Unexpected Pass: 0 Skipped: 0 Timeout: 0 Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt section_end:1737156736:step_script section_start:1737156736:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737156737:cleanup_file_variables ERROR: Job failed: exit code 1 test:ninja-test-clang has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69563457): 439/443 assembler test/rnde-intsrc OK 0.02 s 440/443 assembler test/rndz OK 0.02 s 441/443 assembler test/lzd OK 0.01 s 442/443 assembler test/not OK 0.01 s 443/443 assembler test/immediate OK 0.01 s Ok: 438 Expected Fail: 4 Fail: 1 Unexpected Pass: 0 Skipped: 0 Timeout: 0 Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt section_end:1737156717:step_script section_start:1737156717:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737156718:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1347758 From patchwork at emeril.freedesktop.org Fri Jan 17 23:55:51 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Fri, 17 Jan 2025 23:55:51 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Add_igt=5Frunner=27s_cmdlin?= =?utf-8?q?e_to_results?= In-Reply-To: <20250117231751.429703-1-lucas.demarchi@intel.com> References: <20250117231751.429703-1-lucas.demarchi@intel.com> Message-ID: <173715815116.923178.7485333736368509734@b555e5b46a47> == Series Details == Series: Add igt_runner's cmdline to results URL : https://patchwork.freedesktop.org/series/143699/ State : success == Summary == CI Bug Log - changes from XEIGT_8198_BAT -> XEIGTPW_12457_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8198 -> IGTPW_12457 * Linux: xe-2508-9033a16532f74ae36c48d729d0855a6e189039df -> xe-2510-4fc988de9f5e17d19edb5fc0a0fbc15a8fc837f4 IGTPW_12457: 12457 IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2508-9033a16532f74ae36c48d729d0855a6e189039df: 9033a16532f74ae36c48d729d0855a6e189039df xe-2510-4fc988de9f5e17d19edb5fc0a0fbc15a8fc837f4: 4fc988de9f5e17d19edb5fc0a0fbc15a8fc837f4 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 18 00:00:04 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 18 Jan 2025 00:00:04 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Add_igt=5Frunner=27s_cmdl?= =?utf-8?q?ine_to_results?= In-Reply-To: <20250117231751.429703-1-lucas.demarchi@intel.com> References: <20250117231751.429703-1-lucas.demarchi@intel.com> Message-ID: <173715840437.923178.14278897492827199684@b555e5b46a47> == Series Details == Series: Add igt_runner's cmdline to results URL : https://patchwork.freedesktop.org/series/143699/ State : success == Summary == CI Bug Log - changes from IGT_8198 -> IGTPW_12457 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/index.html Participating hosts (44 -> 41) ------------------------------ Missing (3): bat-apl-1 bat-rpls-4 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12457 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at dmabuf@all-tests at dma_fence_chain: - fi-bsw-nick: [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/fi-bsw-nick/igt at dmabuf@all-tests at dma_fence_chain.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/fi-bsw-nick/igt at dmabuf@all-tests at dma_fence_chain.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - bat-arlh-3: [DMESG-FAIL][3] ([i915#12061]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arlh-3/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/bat-arlh-3/igt at i915_selftest@live at workarounds.html - bat-arls-5: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arls-5/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/bat-arls-5/igt at i915_selftest@live at workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8198 -> IGTPW_12457 * Linux: CI_DRM_15978 -> CI_DRM_15979 CI-20190529: 20190529 CI_DRM_15978: db09bf4e722f65089b91798e6d490d21b8dd8143 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15979: 4fc988de9f5e17d19edb5fc0a0fbc15a8fc837f4 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12457: 12457 IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 18 00:09:52 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 18 Jan 2025 00:09:52 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel/kms=5Fjoiner?= =?utf-8?q?=3A_switch_modeset_from_uj_to_bj_and_vice-versa?= In-Reply-To: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> References: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> Message-ID: <173715899205.926084.3562161763156093928@b555e5b46a47> == Series Details == Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa URL : https://patchwork.freedesktop.org/series/143367/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15940_full -> IGTPW_12423_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12423_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12423_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_12423/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_12423_full: ### IGT changes ### #### Possible regressions #### * igt at i915_pm_rps@reset: - shard-snb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-snb7/igt at i915_pm_rps@reset.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at i915_pm_rps@reset.html New tests --------- New tests have been introduced between CI_DRM_15940_full and IGTPW_12423_full: ### New IGT tests (1) ### * igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner: - Statuses : 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_12423_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at api_intel_bb@object-reloc-keep-cache.html * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at api_intel_bb@object-reloc-purge-cache.html * igt at debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#9318]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at debugfs_test@basic-hwmon.html - shard-tglu: NOTRUN -> [SKIP][6] ([i915#9318]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-7/igt at debugfs_test@basic-hwmon.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at device_reset@unbind-cold-reset-rebind.html - shard-tglu-1: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-hang at rcs0: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +6 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at drm_fdinfo@busy-hang at rcs0.html * igt at drm_fdinfo@most-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +12 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at drm_fdinfo@most-busy-check-all.html * igt at drm_fdinfo@most-busy-idle-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +35 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at drm_fdinfo@most-busy-idle-check-all at vecs1.html * igt at gem_basic@multigpu-create-close: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][17] ([i915#7297]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][18] ([i915#9323]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][19] ([i915#12392] / [i915#7297]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-smem-lmem0.html * igt at gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#7697]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][22] ([i915#13427]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][23] ([i915#12353]) +1 other test incomplete [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk2/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][24] ([i915#1099]) +11 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at gem_ctx_persistence@engines-mixed-process.html * igt at gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at gem_ctx_persistence@heartbeat-close.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][29] ([i915#13197] / [i915#13390]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk7/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@kms: - shard-dg2: [PASS][30] -> [FAIL][31] ([i915#5784]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg2-4/igt at gem_eio@kms.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/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_12423/shard-snb2/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4771]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-pair: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@parallel-balancer: - shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#4525]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_capture@capture-invisible: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#6334]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4812]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at gem_exec_fence@submit.html - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4812]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at gem_exec_fence@submit.html - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at gem_exec_fence@submit.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#5107]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-7/igt at gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][44] ([i915#5107]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +20 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_exec_reloc@basic-active.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +6 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at gem_exec_reloc@basic-write-read.html * igt at gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at gem_exec_schedule@preempt-queue-chain.html * igt at gem_exec_schedule@reorder-wide: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_suspend@basic-s0 at smem: - shard-dg2: [PASS][50] -> [INCOMPLETE][51] ([i915#11441] / [i915#13304]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg2-1/igt at gem_exec_suspend@basic-s0 at smem.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at gem_exec_suspend@basic-s0 at smem.html - shard-rkl: [PASS][52] -> [INCOMPLETE][53] ([i915#13304]) +1 other test incomplete [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-2/igt at gem_exec_suspend@basic-s0 at smem.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at gem_exec_suspend@basic-s0 at smem.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at gem_fence_thrash@bo-write-verify-x.html - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-5/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4860]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at gem_fence_thrash@bo-write-verify-y.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_12423/shard-rkl-4/igt at gem_huc_copy@huc-copy.html - shard-tglu: NOTRUN -> [SKIP][58] ([i915#2190]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-4/igt at gem_lmem_swapping@heavy-random.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4613]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#4613]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@parallel-random: - shard-glk: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk7/igt at gem_lmem_swapping@parallel-random.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][64] ([i915#5493]) +1 other test timeout [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#12193]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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][66] ([i915#4565]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at gem_lmem_swapping@verify-random-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_12423/shard-rkl-1/igt at gem_media_vme.html * igt at gem_mmap@basic-small-bo: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4083]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at gem_mmap@basic-small-bo.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) +20 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4083]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at gem_mmap_wc@read.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4083]) +7 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3282]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at gem_partial_pwrite_pread@reads-snoop.html * igt at gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at gem_pread@snoop.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3282]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-4/igt at gem_pread@snoop.html * igt at gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4270]) +8 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-rkl: NOTRUN -> [TIMEOUT][76] ([i915#12917] / [i915#12964]) +2 other tests timeout [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-6/igt at gem_pxp@hw-rejects-pxp-context.html - shard-tglu: NOTRUN -> [SKIP][77] ([i915#13398]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-9/igt at gem_pxp@hw-rejects-pxp-context.html - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#13398]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: NOTRUN -> [TIMEOUT][79] ([i915#12964]) +1 other test timeout [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at gem_pxp@verify-pxp-stale-ctx-execution.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#5190] / [i915#8428]) +9 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8428]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt at gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4079]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_render_tiled_blits@basic.html * igt at gem_tiled_partial_pwrite_pread@writes: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#3282]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at gem_tiled_partial_pwrite_pread@writes.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4077]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at gem_tiled_partial_pwrite_pread@writes.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][86] ([i915#13449]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at gem_userptr_blits@access-control.html - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at gem_userptr_blits@access-control.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][90] ([i915#3323]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk7/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@unsync-unmap: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at gem_userptr_blits@unsync-unmap.html - shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-4/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][94] +705 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb2/igt at gem_vm_create@invalid-create.html * igt at gem_workarounds@suspend-resume-fd: - shard-glk: NOTRUN -> [INCOMPLETE][95] ([i915#13356]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk8/igt at gem_workarounds@suspend-resume-fd.html * igt at gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#2856]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at gen9_exec_parse@basic-rejected-ctx-param.html * igt at gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#2527]) +5 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#2527]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#2856]) +6 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gen9_exec_parse@bb-start-param.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-6/igt at gen9_exec_parse@unaligned-jump.html * igt at i915_module_load@reload-with-fault-injection: - shard-glk: NOTRUN -> [ABORT][102] ([i915#9820]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk1/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#6412]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at i915_module_load@resize-bar.html * igt at i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#8399]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#6590]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at i915_pm_freq_mult@media-freq at gt0.html - shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#6590]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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][107] ([i915#12942]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#11681] / [i915#6621]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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][109] ([i915#11681] / [i915#6621]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#11681]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at i915_pm_rps@thresholds-park.html * igt at i915_pm_rps@waitboost: - shard-dg1: [PASS][111] -> [FAIL][112] ([i915#13511]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg1-13/igt at i915_pm_rps@waitboost.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at i915_pm_rps@waitboost.html * igt at i915_power@sanity: - shard-mtlp: [PASS][113] -> [SKIP][114] ([i915#7984]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-mtlp-1/igt at i915_power@sanity.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at i915_power@sanity.html * igt at i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#6245]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][116] ([i915#6245]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at i915_query@hwconfig_table.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#5723]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at i915_query@test-query-geometry-subslices.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_12423/shard-tglu-1/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s2idle-without-i915: - shard-snb: [PASS][119] -> [ABORT][120] ([i915#11703]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-snb5/igt at i915_suspend@basic-s2idle-without-i915.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at i915_suspend@basic-s2idle-without-i915.html * igt at i915_suspend@basic-s3-without-i915: - shard-glk: [PASS][121] -> [INCOMPLETE][122] ([i915#4817]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-glk4/igt at i915_suspend@basic-s3-without-i915.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk4/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][123] ([i915#4817]) +1 other test incomplete [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk3/igt at i915_suspend@forcewake.html * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4212]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4215] / [i915#5190]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#12454] / [i915#12712]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4212]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_addfb_basic@tile-pitch-mismatch.html - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#4212]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at kms_addfb_basic@tile-pitch-mismatch.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-3-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_12423/shard-dg2-3/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-3-4-mc-ccs.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#1769] / [i915#3555]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/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: NOTRUN -> [SKIP][131] ([i915#1769] / [i915#3555]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-9/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5286]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-17/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#5286]) +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@4-tiled-addfb: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#5286]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#5286]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-6/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-64bpp-rotate-0: - shard-mtlp: [PASS][136] -> [FAIL][137] ([i915#5138]) +1 other test fail [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-mtlp-8/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#3638]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#3638]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][140] +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-1/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#4538] / [i915#5190]) +15 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#4538]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6187]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#10307] / [i915#6095]) +158 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#12313]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/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][146] ([i915#6095]) +164 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/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-y-tiled-gen12-rc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6095]) +14 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#12313]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][149] +457 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk3/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-dg2-mc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#6095]) +79 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#6095]) +8 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][153] ([i915#12796]) +1 other test incomplete [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk4/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.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][154] ([i915#6095]) +49 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-dg2: NOTRUN -> [SKIP][155] ([i915#12313]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6095]) +69 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][157] ([i915#12964]) +30 other tests dmesg-warn [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-1.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#11616] / [i915#7213]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3742]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#4087]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3.html * igt at kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][161] +18 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_edid@hdmi-edid-read: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at kms_chamelium_edid@hdmi-edid-read.html * igt at kms_chamelium_frames@hdmi-crc-single: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +9 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/igt at kms_chamelium_frames@hdmi-crc-single.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +15 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +8 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +5 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +8 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-9/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt at kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at kms_content_protection@atomic.html * igt at kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#9424]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3116]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_content_protection@dp-mst-type-1.html - shard-tglu: NOTRUN -> [SKIP][171] ([i915#3116] / [i915#3299]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3299]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_content_protection@dp-mst-type-1.html - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3299]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@srm: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#7116]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#6944] / [i915#9424]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at kms_content_protection@uevent.html - shard-dg2: NOTRUN -> [SKIP][176] ([i915#7118] / [i915#9424]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][177] ([i915#7118] / [i915#9424]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-6/igt at kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][178] ([i915#7116] / [i915#9424]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#13049]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#13049]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][181] ([i915#13049]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-tglu: NOTRUN -> [SKIP][182] ([i915#13049]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#13049]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#3555]) +5 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-max-size.html * igt at kms_cursor_crc@cursor-random-64x64: - shard-dg1: [PASS][185] -> [DMESG-WARN][186] ([i915#4423]) +1 other test dmesg-warn [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg1-12/igt at kms_cursor_crc@cursor-random-64x64.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_cursor_crc@cursor-random-64x64.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#3555]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#9809]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-7/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#13046] / [i915#5354]) +6 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: NOTRUN -> [SKIP][190] +22 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#9067]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#9067]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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][193] ([i915#4103]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][194] ([i915#12170]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][195] ([i915#11968]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#9723]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg2: NOTRUN -> [SKIP][197] ([i915#9833]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#1257]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#1257]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][200] ([i915#1257]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at kms_dp_aux_dev.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#8812]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3840] / [i915#9688]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3840]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#3840]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3840]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#3840]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3840]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_dsc@dsc-with-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3840] / [i915#9053]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_dsc@dsc-with-output-formats-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3840] / [i915#9053]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-9/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#3469]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-2x: - shard-snb: [PASS][211] -> [SKIP][212] [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-snb2/igt at kms_feature_discovery@display-2x.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#1839]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#1839]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#658]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-6/igt at kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][216] ([i915#658]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#658]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at bc-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [FAIL][218] ([i915#11989]) +1 other test fail [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk9/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at bc-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#9934]) +11 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [FAIL][220] ([i915#11989]) +3 other tests fail [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#8381]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3637]) +3 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#9934]) +7 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#3637]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#9934]) +6 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#3637]) +5 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-6/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-vga1: - shard-snb: [PASS][227] -> [FAIL][228] ([i915#11989]) +1 other test fail [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-snb2/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-vga1.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-vga1.html * igt at kms_flip@plain-flip-fb-recreate at d-hdmi-a1: - shard-tglu: [PASS][229] -> [FAIL][230] ([i915#11989]) +11 other tests fail [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-tglu-4/igt at kms_flip@plain-flip-fb-recreate at d-hdmi-a1.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_flip@plain-flip-fb-recreate at d-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#2672]) +4 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/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-4tile-to-64bpp-4tile-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#2587] / [i915#2672]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/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-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555]) +2 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-upscaling: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672] / [i915#3555]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#8813]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555] / [i915#5190]) +5 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#3555]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-tglu-1: NOTRUN -> [SKIP][240] ([i915#2587] / [i915#2672]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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][241] ([i915#2587] / [i915#2672]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555]) +4 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-ytile-to-32bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#2672]) +9 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/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-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][245] ([i915#6880]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#5354]) +58 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][247] ([i915#10056] / [i915#13353]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk7/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbc-tiling-linear: - shard-dg2: [PASS][248] -> [FAIL][249] ([i915#6880]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg2-4/igt at kms_frontbuffer_tracking@fbc-tiling-linear.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-tiling-linear.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_12423/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#10433] / [i915#3458]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#3458]) +17 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#3023]) +27 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][254] +26 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#8708]) +29 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#8708]) +8 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#5439]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#3458]) +29 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#1825]) +5 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#1825]) +41 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][261] +52 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][262] +46 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#6118]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8228]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-swap: - shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_hdr@static-toggle.html - shard-dg1: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8228]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-4/igt at kms_hdr@static-toggle.html * igt at kms_histogram@algo-basic: - shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#13389]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_histogram@algo-basic.html * igt at kms_histogram@global-basic: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#13388]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_histogram@global-basic.html - shard-dg1: NOTRUN -> [SKIP][272] ([i915#13388]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_histogram@global-basic.html * igt at kms_histogram@global-color: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#13388]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#10656]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#10656]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][276] ([i915#10656]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#10656]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner (NEW): - shard-dg1: NOTRUN -> [SKIP][278] ([i915#13522]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][279] ([i915#13522]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#13522]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][281] ([i915#13522]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][282] ([i915#13522]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#6301]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#6301]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_panel_fitting@legacy.html * igt at kms_plane@plane-panning-bottom-right-suspend at pipe-b: - shard-glk: NOTRUN -> [INCOMPLETE][285] ([i915#13026]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk3/igt at kms_plane@plane-panning-bottom-right-suspend at pipe-b.html * igt at kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][286] ([i915#3555]) +9 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_plane_lowres@tiling-4.html - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_plane_lowres@tiling-4.html * igt at kms_plane_lowres@tiling-4 at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#11614] / [i915#3582]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_plane_lowres@tiling-4 at pipe-b-edp-1.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#3555]) +7 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_plane_multiple@tiling-yf.html - shard-dg1: NOTRUN -> [SKIP][290] ([i915#3555]) +6 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_plane_multiple@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8806]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-7/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#6953] / [i915#9423]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_plane_scaling@intel-max-src-size.html - shard-rkl: NOTRUN -> [SKIP][293] ([i915#6953]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#12247] / [i915#9423]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#12247]) +4 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#12247]) +4 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-4/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#12247] / [i915#6953]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/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-tglu-1: NOTRUN -> [SKIP][298] ([i915#12247]) +18 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg1: NOTRUN -> [SKIP][299] ([i915#12247]) +9 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-dg2: NOTRUN -> [SKIP][300] ([i915#12247] / [i915#6953] / [i915#9423]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][301] ([i915#12247] / [i915#6953]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/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][302] ([i915#12247]) +7 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-a.html - shard-rkl: NOTRUN -> [SKIP][303] ([i915#12247]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-a.html * igt at kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#5354]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#13441]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-1/igt at kms_pm_dc@dc5-dpms-negative.html * igt at kms_pm_dc@dc5-retention-flops: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#3828]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][307] ([i915#3828]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#9685]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_pm_dc@dc6-psr.html - shard-rkl: NOTRUN -> [SKIP][309] ([i915#9685]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#8430]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@cursor-dpms: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#12916]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at kms_pm_rpm@cursor-dpms.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#9519]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-7/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#9519]) +2 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_pm_rpm@modeset-non-lpsp-stress.html - shard-rkl: NOTRUN -> [SKIP][314] ([i915#9519]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html - shard-mtlp: NOTRUN -> [SKIP][315] ([i915#9519]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-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][316] -> [SKIP][317] ([i915#9519]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-3/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][318] ([i915#10553]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk4/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#6524] / [i915#6805]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#6524]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#6524]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#11520]) +5 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-7/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#12316]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/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][324] ([i915#11520]) +3 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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][325] ([i915#11520]) +10 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-snb: NOTRUN -> [SKIP][326] ([i915#11520]) +21 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][327] ([i915#11520]) +15 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk9/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][328] ([i915#11520]) +5 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#11520]) +11 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@pr-cursor-blt: - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#9688]) +6 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-5/igt at kms_psr@pr-cursor-blt.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#1072] / [i915#9732]) +31 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr-primary-render: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#9732]) +19 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-9/igt at kms_psr@psr-primary-render.html * igt at kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#1072] / [i915#9732]) +25 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_psr@psr-sprite-plane-move.html * igt at kms_psr@psr2-cursor-render: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#9732]) +13 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_psr@psr2-cursor-render.html * igt at kms_psr@psr2-sprite-blt: - shard-dg1: NOTRUN -> [SKIP][335] ([i915#1072] / [i915#9732]) +18 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_psr@psr2-sprite-blt.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#9685]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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][337] ([i915#9685]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-3/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][338] ([i915#5289]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#12755]) +2 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_rotation_crc@primary-rotation-270.html - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#12755]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-1/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#5190]) +6 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#5289]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-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-rkl: NOTRUN -> [SKIP][343] ([i915#5289]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_selftest@drm_framebuffer: - shard-tglu: NOTRUN -> [ABORT][344] ([i915#13179]) +1 other test abort [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-10/igt at kms_selftest@drm_framebuffer.html * igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][345] ([i915#13179]) +1 other test abort [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free.html * igt at kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][346] ([i915#5465]) +4 other tests fail [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at kms_setmode@basic.html * igt at kms_vblank@query-forked-hang: - shard-rkl: [PASS][347] -> [DMESG-WARN][348] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-4/igt at kms_vblank@query-forked-hang.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_vblank@query-forked-hang.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][349] ([i915#12276]) +1 other test incomplete [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk6/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#9906]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#11920]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][352] ([i915#3555] / [i915#9906]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-17/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#9906]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#2437]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_writeback@writeback-check-output.html - shard-rkl: NOTRUN -> [SKIP][355] ([i915#2437]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_writeback@writeback-check-output.html - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#2437]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-4/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#2437] / [i915#9412]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#2437]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#2437] / [i915#9412]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][360] ([i915#2437]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][361] ([i915#2437]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk7/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#2436]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#2434]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at perf@mi-rpc.html * igt at perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][364] ([i915#9100]) +1 other test fail [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at perf@non-zero-reason.html * igt at perf@polling at 0-rcs0: - shard-rkl: [PASS][365] -> [DMESG-WARN][366] ([i915#12964]) +52 other tests dmesg-warn [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-2/igt at perf@polling at 0-rcs0.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at perf@polling at 0-rcs0.html * igt at perf_pmu@all-busy-idle-check-all: - shard-dg2: [PASS][367] -> [FAIL][368] ([i915#11943]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg2-4/igt at perf_pmu@all-busy-idle-check-all.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at perf_pmu@all-busy-idle-check-all.html - shard-dg1: NOTRUN -> [FAIL][369] ([i915#11943]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at perf_pmu@all-busy-idle-check-all.html * igt at perf_pmu@busy-hang: - shard-dg1: [PASS][370] -> [FAIL][371] ([i915#4349]) +1 other test fail [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg1-18/igt at perf_pmu@busy-hang.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at perf_pmu@busy-hang.html * igt at perf_pmu@busy-hang at rcs0: - shard-mtlp: [PASS][372] -> [FAIL][373] ([i915#4349]) +2 other tests fail [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-mtlp-8/igt at perf_pmu@busy-hang at rcs0.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at perf_pmu@busy-hang at rcs0.html * igt at perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#8850]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][375] ([i915#8850]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][376] ([i915#11823]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at perf_pmu@module-unload.html * igt at perf_pmu@most-busy-idle-check-all at rcs0: - shard-mtlp: [PASS][377] -> [FAIL][378] ([i915#11943]) +2 other tests fail [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-mtlp-5/igt at perf_pmu@most-busy-idle-check-all at rcs0.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at perf_pmu@most-busy-idle-check-all at rcs0.html * igt at prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][379] ([i915#3708] / [i915#4077]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][380] ([i915#3708] / [i915#4077]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][381] ([i915#3708]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][382] ([i915#3708]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at prime_vgem@fence-read-hang.html * igt at prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][383] ([i915#3708]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-7/igt at prime_vgem@fence-write-hang.html - shard-rkl: NOTRUN -> [SKIP][384] ([i915#3708]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at prime_vgem@fence-write-hang.html #### Possible fixes #### * igt at gem_ctx_isolation@preservation-s3: - shard-dg1: [DMESG-WARN][385] ([i915#4423]) -> [PASS][386] +2 other tests pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg1-18/igt at gem_ctx_isolation@preservation-s3.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at gem_ctx_isolation@preservation-s3.html * igt at gem_exec_suspend@basic-s4-devices: - shard-tglu: [ABORT][387] ([i915#7975] / [i915#8213]) -> [PASS][388] +1 other test pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-tglu-10/igt at gem_exec_suspend@basic-s4-devices.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-6/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fence_thrash@bo-write-verify-threaded-none: - shard-rkl: [DMESG-WARN][389] ([i915#12964]) -> [PASS][390] +26 other tests pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-7/igt at gem_fence_thrash@bo-write-verify-threaded-none.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at gem_fence_thrash@bo-write-verify-threaded-none.html * igt at gem_softpin@noreloc-s3: - shard-glk: [INCOMPLETE][391] ([i915#13306]) -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-glk8/igt at gem_softpin@noreloc-s3.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk2/igt at gem_softpin@noreloc-s3.html * igt at gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][393] ([i915#12941]) -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-tglu-2/igt at gem_tiled_swapping@non-threaded.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-10/igt at gem_tiled_swapping@non-threaded.html * igt at i915_module_load@reload-with-fault-injection: - shard-snb: [ABORT][395] ([i915#9820]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-snb5/igt at i915_module_load@reload-with-fault-injection.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at i915_module_load@reload-with-fault-injection.html - shard-dg1: [ABORT][397] ([i915#9820]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg1-12/igt at i915_module_load@reload-with-fault-injection.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at i915_module_load@reload-with-fault-injection.html - shard-tglu: [ABORT][399] ([i915#10887] / [i915#12817] / [i915#9820]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-tglu-7/igt at i915_module_load@reload-with-fault-injection.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-7/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: [INCOMPLETE][401] ([i915#12797]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-glk4/igt at i915_pm_rpm@system-suspend-execbuf.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk1/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-snb: [FAIL][403] ([i915#11989]) -> [PASS][404] +1 other test pass [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-snb2/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1: - shard-mtlp: [FAIL][405] ([i915#11989]) -> [PASS][406] +2 other tests pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-mtlp-8/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-snb: [SKIP][407] -> [PASS][408] +1 other test pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a: - shard-glk: [INCOMPLETE][409] ([i915#13026]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-glk6/igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk3/igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a.html * igt at kms_plane_cursor@viewport: - shard-rkl: [DMESG-WARN][411] ([i915#12917] / [i915#12964]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-2/igt at kms_plane_cursor@viewport.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at kms_plane_cursor@viewport.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][413] ([i915#9295]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-tglu-8/igt at kms_pm_dc@dc6-dpms.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-10/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][415] ([i915#9519]) -> [PASS][416] [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-3/igt at kms_pm_rpm@dpms-lpsp.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_pm_rpm@dpms-lpsp.html * igt at perf_pmu@most-busy-idle-check-all at rcs0: - shard-rkl: [FAIL][417] ([i915#4349]) -> [PASS][418] +1 other test pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-3/igt at perf_pmu@most-busy-idle-check-all at rcs0.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at perf_pmu@most-busy-idle-check-all at rcs0.html #### Warnings #### * igt at gem_pxp@fail-invalid-protected-context: - shard-rkl: [SKIP][419] ([i915#4270]) -> [TIMEOUT][420] ([i915#12964]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-2/igt at gem_pxp@fail-invalid-protected-context.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at gem_pxp@fail-invalid-protected-context.html * igt at gem_pxp@protected-raw-src-copy-not-readible: - shard-rkl: [TIMEOUT][421] ([i915#12917] / [i915#12964]) -> [SKIP][422] ([i915#4270]) +2 other tests skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-3/igt at gem_pxp@protected-raw-src-copy-not-readible.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at gem_pxp@protected-raw-src-copy-not-readible.html * igt at gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: [SKIP][423] ([i915#4270]) -> [TIMEOUT][424] ([i915#12917] / [i915#12964]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-4/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt at i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][425] ([i915#10131] / [i915#9820]) -> [ABORT][426] ([i915#10131] / [i915#10887] / [i915#13493] / [i915#9820]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-mtlp-8/igt at i915_module_load@reload-with-fault-injection.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_selftest@mock: - shard-glk: [DMESG-WARN][427] ([i915#9311]) -> [DMESG-WARN][428] ([i915#1982] / [i915#9311]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-glk3/igt at i915_selftest@mock.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk5/igt at i915_selftest@mock.html * igt at kms_content_protection@mei-interface: - shard-dg1: [SKIP][429] ([i915#9433]) -> [SKIP][430] ([i915#9424]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg1-13/igt at kms_content_protection@mei-interface.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_content_protection@mei-interface.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][431] ([i915#10433] / [i915#3458]) -> [SKIP][432] ([i915#3458]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][433] ([i915#4281]) -> [SKIP][434] ([i915#3361]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-5/igt at kms_pm_dc@dc9-dpms.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at kms_pm_dc@dc9-dpms.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kerne == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 18 01:43:04 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 18 Jan 2025 01:43:04 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_Add_test_for_configurabl?= =?utf-8?q?e_OA_buffer_size_=28rev2=29?= In-Reply-To: <20250116135456.4066677-1-sai.teja.pottumuttu@intel.com> References: <20250116135456.4066677-1-sai.teja.pottumuttu@intel.com> Message-ID: <173716458458.955926.6587291772236108464@b555e5b46a47> == Series Details == Series: Add test for configurable OA buffer size (rev2) URL : https://patchwork.freedesktop.org/series/142128/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15971_full -> IGTPW_12450_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12450_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12450_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_12450/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_12450_full: ### IGT changes ### #### Possible regressions #### * igt at gem_tiled_swapping@non-threaded: - shard-tglu: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-10/igt at gem_tiled_swapping@non-threaded.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0: - shard-snb: NOTRUN -> [INCOMPLETE][2] +1 other test incomplete [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb4/igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0.html * igt at i915_pm_rps@reset: - shard-snb: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-snb1/igt at i915_pm_rps@reset.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb2/igt at i915_pm_rps@reset.html * igt at kms_flip@wf_vblank-ts-check-interruptible: - shard-mtlp: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-3/igt at kms_flip@wf_vblank-ts-check-interruptible.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-2/igt at kms_flip@wf_vblank-ts-check-interruptible.html Known issues ------------ Here are the changes found in IGTPW_12450_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-7/igt at api_intel_bb@blit-reloc-keep-cache.html * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8411]) +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/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]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt at api_intel_bb@object-reloc-keep-cache.html * igt at debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#9318]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt at debugfs_test@basic-hwmon.html * igt at device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][11] ([i915#11078]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-4/igt at device_reset@cold-reset-bound.html * igt at device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#11078]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-5/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-idle-check-all at vcs1: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +18 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at drm_fdinfo@busy-idle-check-all at vcs1.html * igt at drm_fdinfo@virtual-busy-hang: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt at drm_fdinfo@virtual-busy-hang.html * igt at gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at gem_basic@multigpu-create-close.html * igt at gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#3936]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-1/igt at gem_busy@semaphore.html * igt at gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@block-multicopy-inplace: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#9323]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][22] ([i915#7697]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-4/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#6335]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8562]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at gem_ctx_persistence@heartbeat-many.html * igt at gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-5/igt at gem_ctx_persistence@heartbeat-stop.html * igt at gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][27] ([i915#1099]) +6 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb5/igt at gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt at gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#280]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][31] ([i915#280]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][32] ([i915#13390]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk2/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@kms: - shard-dg2: NOTRUN -> [FAIL][33] ([i915#5784]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-5/igt at gem_eio@kms.html * igt at gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][34] ([i915#8898]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb7/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#4771]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4771]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at gem_exec_balancer@bonded-semaphore.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4812]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4036]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][40] ([i915#4525]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at gem_exec_balancer@parallel.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#4525]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt at gem_exec_balancer@parallel-keep-submit-fence.html - shard-tglu: NOTRUN -> [SKIP][42] ([i915#4525]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#6334]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at gem_exec_capture@capture-invisible.html - shard-tglu: NOTRUN -> [SKIP][44] ([i915#6334]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-9/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][45] ([i915#11965]) +4 other tests fail [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at gem_exec_flush@basic-batch-kernel-default-cmd.html * igt at gem_exec_flush@basic-uc-pro-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_12450/shard-dg2-4/igt at gem_exec_flush@basic-uc-pro-default.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_reloc@basic-concurrent0: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +14 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt at gem_exec_reloc@basic-concurrent0.html * igt at gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +12 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt at gem_exec_reloc@basic-cpu-gtt.html * igt at gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-8/igt at gem_exec_reloc@basic-cpu-noreloc.html * igt at gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3281]) +7 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt at gem_exec_reloc@basic-wc-read-noreloc.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_suspend@basic-s3 at smem: - shard-glk: [PASS][54] -> [INCOMPLETE][55] ([i915#13196]) +1 other test incomplete [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-glk5/igt at gem_exec_suspend@basic-s3 at smem.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk7/igt at gem_exec_suspend@basic-s3 at smem.html * igt at gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt at gem_fence_thrash@bo-write-verify-threaded-none.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4860]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-5/igt at gem_fence_thrash@bo-write-verify-y.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613] / [i915#7582]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613] / [i915#7582]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-10/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@massive: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at gem_lmem_swapping@massive.html * igt at gem_lmem_swapping@parallel-multi: - shard-glk: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk1/igt at gem_lmem_swapping@parallel-multi.html * igt at gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt at gem_lmem_swapping@parallel-random.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#12193]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at gem_lmem_swapping@verify-random-ccs.html - shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_lmem_swapping@verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4565]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at gem_lmem_swapping@verify-random-ccs at lmem0.html * igt at gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#284]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at gem_media_vme.html - shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#284]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at gem_media_vme.html * igt at gem_mmap_gtt@basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4077]) +10 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at gem_mmap_gtt@basic-small-copy-odd.html * igt at gem_mmap_gtt@basic-write-read-distinct: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4077]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-2/igt at gem_mmap_gtt@basic-write-read-distinct.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) +7 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4083]) +5 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt at gem_mmap_wc@write-read.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) +6 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3282]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt at gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt at gem_pread@exhaustion: - shard-tglu: NOTRUN -> [WARN][74] ([i915#2658]) +1 other test warn [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-3/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb7/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pwrite_snooped: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3282]) +6 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt at gem_pwrite_snooped.html * igt at gem_pxp@create-protected-buffer: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4270]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at gem_pxp@create-protected-buffer.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][78] ([i915#12917] / [i915#12964]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4270]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-5/igt at gem_pxp@regular-baseline-src-copy-readible.html - shard-rkl: NOTRUN -> [TIMEOUT][80] ([i915#12964]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#5190] / [i915#8428]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4079]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4079]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-5/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4079]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4077]) +16 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt at gem_tiled_partial_pwrite_pread@writes.html * igt at gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4879]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3282] / [i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@invalid-mmap-offset-unsync: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at gem_userptr_blits@invalid-mmap-offset-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4880]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4880]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.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_12450/shard-rkl-7/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@unsync-overlap: - shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at gem_userptr_blits@unsync-overlap.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][95] ([i915#3297]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-9/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3297]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-8/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][97] +22 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#2856]) +6 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt at gen9_exec_parse@allowed-all.html * igt at gen9_exec_parse@bb-large: - shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at gen9_exec_parse@bb-large.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#2527]) +6 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt at gen9_exec_parse@bb-start-cmd.html - shard-tglu: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt at gen9_exec_parse@bb-start-cmd.html - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#2856]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-6/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#2527]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt at gen9_exec_parse@bb-start-out.html * igt at i915_module_load@reload-no-display: - shard-snb: [PASS][104] -> [ABORT][105] ([i915#11703]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-snb4/igt at i915_module_load@reload-no-display.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb7/igt at i915_module_load@reload-no-display.html * igt at i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#7178]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at i915_module_load@resize-bar.html - shard-tglu: NOTRUN -> [SKIP][107] ([i915#6412]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-4/igt at i915_module_load@resize-bar.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#7091]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-suspend: - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#8399]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#6590]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-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_12450/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][112] ([i915#11681] / [i915#6621]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#11681]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at i915_pm_rps@thresholds-park.html * igt at i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4387]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-1/igt at i915_pm_sseu@full-enable.html * igt at i915_power@sanity: - shard-mtlp: [PASS][115] -> [SKIP][116] ([i915#7984]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-6/igt at i915_power@sanity.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-5/igt at i915_power@sanity.html - shard-rkl: NOTRUN -> [SKIP][117] ([i915#7984]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at i915_power@sanity.html * igt at i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#6245]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][119] ([i915#6245]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt at i915_query@hwconfig_table.html * igt at i915_query@test-query-geometry-subslices: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#5723]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-9/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][121] ([i915#9311]) +1 other test dmesg-warn [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb5/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][122] ([i915#9311]) +1 other test dmesg-warn [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s3-without-i915: - shard-rkl: NOTRUN -> [INCOMPLETE][123] ([i915#4817]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@debugfs-reader: - shard-mtlp: [PASS][124] -> [INCOMPLETE][125] ([i915#13491]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-7/igt at i915_suspend@debugfs-reader.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-2/igt at i915_suspend@debugfs-reader.html * igt at intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#7707]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt at intel_hwmon@hwmon-read.html - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#7707]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-1/igt at intel_hwmon@hwmon-read.html * igt at intel_hwmon@hwmon-write: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#7707]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-3/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#4212]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#4212]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-1/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4212]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt at kms_addfb_basic@framebuffer-vs-set-tiling.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-dg1: [PASS][132] -> [FAIL][133] ([i915#12518] / [i915#12766]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg1-12/igt at kms_async_flips@alternate-sync-async-flip.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-mtlp: [PASS][134] -> [FAIL][135] ([i915#10991] / [i915#13320]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-1/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-5/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-edp-1: - shard-mtlp: [PASS][136] -> [FAIL][137] ([i915#13320]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-1/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-edp-1.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-5/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-c-edp-1.html * igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][138] ([i915#12518]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-hdmi-a-4.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][139] ([i915#8709]) +23 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/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-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#8709]) +7 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/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@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#12967] / [i915#6228]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#9531]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/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-glk: NOTRUN -> [SKIP][143] ([i915#1769]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk1/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-dg2: NOTRUN -> [SKIP][144] ([i915#1769] / [i915#3555]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][145] ([i915#1769] / [i915#3555]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#5286]) +8 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt at kms_big_fb@4-tiled-16bpp-rotate-180.html * igt at kms_big_fb@4-tiled-64bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#5286]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at kms_big_fb@4-tiled-64bpp-rotate-0.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#4538] / [i915#5286]) +6 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#5286]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#5286]) +7 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-32bpp-rotate-0: - shard-rkl: [PASS][151] -> [DMESG-WARN][152] ([i915#12964]) +22 other tests dmesg-warn [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-3/igt at kms_big_fb@linear-32bpp-rotate-0.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at kms_big_fb@linear-32bpp-rotate-0.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#3638]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#4538] / [i915#5190]) +18 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#3638]) +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#5190]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/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-mtlp: NOTRUN -> [SKIP][157] +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-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-addfb: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#6187]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-6/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#4538]) +7 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.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][160] ([i915#6095]) +29 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/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-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#12313]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][162] ([i915#12313]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/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][163] ([i915#6095]) +165 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/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][164] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#6095]) +4 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-2/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-edp-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#6095]) +84 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#10307] / [i915#6095]) +121 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#12313]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#12805]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#12805]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#6095]) +13 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: [PASS][172] -> [INCOMPLETE][173] ([i915#12796]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-glk1/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk9/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#12313]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#6095]) +77 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#12313]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#3742]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#4087]) +4 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3.html * igt at kms_chamelium_audio@hdmi-audio: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +12 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt at kms_chamelium_audio@hdmi-audio.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][180] +51 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#11151] / [i915#7828]) +6 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-7/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#11151] / [i915#7828]) +8 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#11151] / [i915#7828]) +3 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#11151] / [i915#7828]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-7/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#11151] / [i915#7828]) +11 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html * igt at kms_content_protection@atomic: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#7118] / [i915#9424]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#3116] / [i915#3299]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-7/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3299]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#7118] / [i915#9424]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#9424]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#6944] / [i915#7116] / [i915#7118]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#7116] / [i915#9424]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#3555]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#13049]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-1/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#3555]) +7 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#13049]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/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][197] ([i915#8814]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-7/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555]) +5 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][199] ([i915#13049]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#13049]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#13049]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_edge_walk@64x64-top-edge: - shard-rkl: NOTRUN -> [DMESG-WARN][202] ([i915#12917] / [i915#12964]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt at kms_cursor_edge_walk@64x64-top-edge.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#4103] / [i915#4213]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/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][204] ([i915#4103] / [i915#4213]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#13046] / [i915#5354]) +8 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#9809]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-8/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#4103]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-10/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-rkl: NOTRUN -> [SKIP][208] ([i915#4103]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#9723]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#3555]) +11 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-5/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#3804]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/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][212] ([i915#3804]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/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-rkl: NOTRUN -> [SKIP][213] ([i915#1257]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt at kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][214] ([i915#1257]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-2/igt at kms_dp_aux_dev.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#3840] / [i915#9688]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3840]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-formats: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt at kms_dsc@dsc-with-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#3840] / [i915#9053]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#3955]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt at kms_fbcon_fbt@psr-suspend.html - shard-tglu: NOTRUN -> [SKIP][221] ([i915#3469]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-2/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#1839]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt at kms_feature_discovery@display-3x.html - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#1839]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-7/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#1839]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#658]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-4/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_12450/shard-dg1-18/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#658]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-glk: [PASS][228] -> [FAIL][229] ([i915#11989]) +1 other test fail [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-glk5/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk6/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-dpms: - shard-tglu: NOTRUN -> [SKIP][230] ([i915#3637]) +8 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-7/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#8381]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-rmfb: - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#3637]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at kms_flip@2x-flip-vs-rmfb.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][233] ([i915#12745] / [i915#4839]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk5/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: NOTRUN -> [INCOMPLETE][234] ([i915#4839]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk5/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#9934]) +11 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt at kms_flip@2x-modeset-vs-vblank-race.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#9934]) +5 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#9934]) +7 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-rkl: [PASS][238] -> [FAIL][239] ([i915#11989]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-2/igt at kms_flip@flip-vs-blocking-wf-vblank.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-1/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1: - shard-mtlp: [PASS][240] -> [FAIL][241] ([i915#11989]) +1 other test fail [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-1/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-2/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html * igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][242] ([i915#11989]) +1 other test fail [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-1/igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a2.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#8381]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#2587] / [i915#2672]) +7 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/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-yftile-to-32bpp-yftileccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/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-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#2587] / [i915#2672]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-10/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#2672]) +5 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode.html - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#2587] / [i915#2672]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-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-ytileccs-to-64bpp-ytile-upscaling: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#2672]) +6 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-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-32bpp-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#3555]) +5 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555]) +5 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/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: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#2672] / [i915#3555] / [i915#5190]) +5 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-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-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#8708]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-6/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [DMESG-WARN][257] ([i915#12964]) +17 other tests dmesg-warn [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][258] +37 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-snb: [PASS][259] -> [SKIP][260] +4 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][261] ([i915#10056] / [i915#13353]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk2/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#3458]) +24 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#3023]) +31 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-snb: NOTRUN -> [SKIP][264] +382 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb1/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][265] +23 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#1825]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#8708]) +29 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#5439]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#10055]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#9766]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#10433] / [i915#3458]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#5354]) +46 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#1825]) +39 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][274] +103 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-8/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#8708]) +31 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#3458]) +26 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8228]) +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@brightness-with-hdr: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#12713]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt at kms_hdr@static-toggle.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_12450/shard-rkl-5/igt at kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][282] ([i915#10656]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#12388]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#12339]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt at kms_joiner@basic-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][285] ([i915#12339]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#12339]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#4816]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-5/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][288] ([i915#1839]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-tglu: NOTRUN -> [SKIP][289] ([i915#1839]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-10/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#6301]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][291] ([i915#12756] / [i915#13409] / [i915#13476]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk8/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][292] ([i915#13409] / [i915#13476]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk8/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-b-hdmi-a-2.html * igt at kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#8806]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#13046] / [i915#5354] / [i915#9423]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#6953]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][296] ([i915#8292]) +1 other test fail [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#12247]) +4 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/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: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#12247]) +18 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#12247]) +18 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-10/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-rkl: NOTRUN -> [DMESG-WARN][300] ([i915#12964] / [i915#1982]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#12247]) +13 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/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-dg1: NOTRUN -> [SKIP][302] ([i915#12247] / [i915#6953]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at kms_plane_scaling@planes-downscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#12247] / [i915#6953]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-6/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-rkl: NOTRUN -> [SKIP][304] ([i915#12247] / [i915#6953]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/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_12450/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 at pipe-a: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#12247]) +3 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-6/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-a.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#12343]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-1/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#9812]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-4/igt at kms_pm_backlight@fade.html * igt at kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#5354]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#9685]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at kms_pm_dc@dc3co-vpb-simulation.html - shard-dg1: NOTRUN -> [SKIP][311] ([i915#9685]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#9685]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#3828]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-8/igt at kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][314] ([i915#3828]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#5978]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][316] -> [SKIP][317] ([i915#4281]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-tglu-6/igt at kms_pm_dc@dc9-dpms.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-7/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#3828]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt at kms_pm_lpsp@kms-lpsp.html - shard-tglu: NOTRUN -> [SKIP][319] ([i915#3828]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#8430]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][321] -> [SKIP][322] ([i915#9519]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-5/igt at kms_pm_rpm@dpms-non-lpsp.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#12916]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][324] ([i915#9519]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-9/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#6524] / [i915#6805]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#6524]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][327] ([i915#11520]) +10 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk9/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][328] ([i915#11520]) +13 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#12316]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-5/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#11520]) +7 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html - shard-snb: NOTRUN -> [SKIP][331] ([i915#11520]) +8 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb2/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#11520]) +9 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#11520]) +11 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#11520]) +4 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#9683]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-2/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#9683]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#9683]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][338] ([i915#9683]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][339] +290 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk7/igt at kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt at kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#9688]) +3 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-2/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@psr-sprite-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#9732]) +8 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at kms_psr@psr-sprite-mmap-cpu.html - shard-dg1: NOTRUN -> [SKIP][342] ([i915#1072] / [i915#9732]) +25 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at kms_psr@psr-sprite-mmap-cpu.html * igt at kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#1072] / [i915#9732]) +35 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at kms_psr@psr2-cursor-blt.html * igt at kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#9732]) +25 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-7/igt at kms_psr@psr2-cursor-plane-onoff.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +23 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt at kms_psr@psr2-suspend.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][346] ([i915#5289]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][347] ([i915#5289]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#3555]) +5 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-2/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][349] ([IGT#160]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt at kms_sysfs_edid_timing.html - shard-dg1: NOTRUN -> [FAIL][350] ([IGT#160] / [i915#6493]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][351] ([i915#10959]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk1/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg1: NOTRUN -> [SKIP][352] ([i915#8623]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu: NOTRUN -> [SKIP][353] ([i915#8623]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@flip-basic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#9906]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at kms_vrr@flip-basic-fastset.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_12450/shard-rkl-3/igt at kms_vrr@seamless-rr-switch-drrs.html - shard-tglu: NOTRUN -> [SKIP][356] ([i915#9906]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-3/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-dg1: NOTRUN -> [SKIP][357] ([i915#9906]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#9906]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#2437]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][360] ([i915#2437]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#2437] / [i915#9412]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][362] ([i915#2437] / [i915#9412]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-4/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][363] ([i915#2437]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at kms_writeback@writeback-invalid-parameters.html - shard-tglu: NOTRUN -> [SKIP][364] ([i915#2437]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#2436]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#2434]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt at perf@mi-rpc.html * igt at perf_pmu@cpu-hotplug: - shard-dg1: NOTRUN -> [SKIP][367] ([i915#8850]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at perf_pmu@cpu-hotplug.html - shard-tglu: NOTRUN -> [SKIP][368] ([i915#8850]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-2/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@frequency at gt0: - shard-dg2: NOTRUN -> [FAIL][369] ([i915#12549] / [i915#6806]) +1 other test fail [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-5/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][370] ([i915#11823]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt at perf_pmu@module-unload.html * igt at prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][371] ([i915#3708] / [i915#4077]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][372] ([i915#3708]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][373] ([i915#3708] / [i915#4077]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#3291] / [i915#3708]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt at prime_vgem@basic-write.html * igt at prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][375] ([i915#3708]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt at prime_vgem@fence-flip-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][376] ([i915#9917]) +2 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@bind-unbind-vf at vf-4: - shard-tglu: NOTRUN -> [FAIL][377] ([i915#12910]) +9 other tests fail [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-8/igt at sriov_basic@bind-unbind-vf at vf-4.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][378] ([i915#9917]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-5: - shard-tglu-1: NOTRUN -> [FAIL][379] ([i915#12910]) +9 other tests fail [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-5.html * igt at tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][380] ([i915#4818]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt at tools_test@sysfs_l3_parity.html - shard-dg2: NOTRUN -> [SKIP][381] ([i915#4818]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at gem_eio@in-flight-suspend: - shard-rkl: [DMESG-WARN][382] ([i915#12964]) -> [PASS][383] +34 other tests pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-4/igt at gem_eio@in-flight-suspend.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@kms: - shard-tglu: [DMESG-WARN][384] ([i915#13363]) -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-tglu-4/igt at gem_eio@kms.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-9/igt at gem_eio@kms.html * igt at gem_eio@reset-stress: - shard-dg1: [FAIL][386] ([i915#12543] / [i915#5784]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg1-17/igt at gem_eio@reset-stress.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at gem_eio@reset-stress.html * igt at gem_exec_balancer@full-late-pulse: - shard-mtlp: [FAIL][388] ([i915#13364]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-1/igt at gem_exec_balancer@full-late-pulse.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-8/igt at gem_exec_balancer@full-late-pulse.html * igt at gem_exec_endless@dispatch at vcs1: - shard-dg1: [TIMEOUT][390] ([i915#3778]) -> [PASS][391] +1 other test pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg1-12/igt at gem_exec_endless@dispatch at vcs1.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt at gem_exec_endless@dispatch at vcs1.html * igt at gem_lmem_swapping@basic: - shard-dg2: [SKIP][392] -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg2-10/igt at gem_lmem_swapping@basic.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt at gem_lmem_swapping@basic.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [ABORT][394] ([i915#10729]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-4/igt at gem_mmap_offset@clear-via-pagefault.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-3/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_softpin@noreloc-s3: - shard-tglu: [ABORT][396] ([i915#12817]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-tglu-6/igt at gem_softpin@noreloc-s3.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt at gem_softpin@noreloc-s3.html * igt at i915_module_load@reload-with-fault-injection: - shard-snb: [DMESG-WARN][398] ([i915#13475]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-snb7/igt at i915_module_load@reload-with-fault-injection.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb4/igt at i915_module_load@reload-with-fault-injection.html - shard-tglu: [ABORT][400] ([i915#10887] / [i915#12817] / [i915#9820]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-tglu-9/igt at i915_module_load@reload-with-fault-injection.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-4/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [FAIL][402] ([i915#12942]) -> [PASS][403] +1 other test pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-1/igt at i915_pm_rc6_residency@rc6-accuracy.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-dg2: [FAIL][404] ([i915#10991] / [i915#12766]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg2-7/igt at kms_async_flips@alternate-sync-async-flip.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][406] ([i915#5138]) -> [PASS][407] +1 other test pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-6/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: [FAIL][408] ([i915#11989]) -> [PASS][409] +1 other test pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-snb5/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb7/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: [FAIL][410] ([i915#11989]) -> [PASS][411] +1 other test pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-4/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a1: - shard-tglu: [FAIL][412] ([i915#11989]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-tglu-3/igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a1.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt at kms_flip@flip-vs-blocking-wf-vblank at b-hdmi-a1.html * igt at kms_flip@flip-vs-suspend: - shard-rkl: [DMESG-FAIL][414] ([i915#12964]) -> [PASS][415] +2 other tests pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-2/igt at kms_flip@flip-vs-suspend.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@plain-flip-fb-recreate at a-edp1: - shard-mtlp: [FAIL][416] ([i915#11989]) -> [PASS][417] +4 other tests pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-8/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-7/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html * igt at kms_flip_tiling@flip-change-tiling: - shard-rkl: [DMESG-WARN][418] ([i915#12917] / [i915#12964]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-2/igt at kms_flip_tiling@flip-change-tiling.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt at kms_flip_tiling@flip-change-tiling.html * igt at kms_vblank@query-busy at pipe-c-hdmi-a-1: - shard-glk: [DMESG-WARN][420] ([i915#118]) -> [PASS][421] +1 other test pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-glk8/igt at kms_vblank@query-busy at pipe-c-hdmi-a-1.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk1/igt at kms_vblank@query-busy at pipe-c-hdmi-a-1.html * igt at perf_pmu@render-node-busy-idle at vcs0: - shard-dg1: [FAIL][422] ([i915#4349]) -> [PASS][423] +1 other test pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg1-13/igt at perf_pmu@render-node-busy-idle at vcs0.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt at perf_pmu@render-node-busy-idle at vcs0.html * igt at syncobj_wait@invalid-signal-bad-pad: - shard-dg1: [DMESG-WARN][424] ([i915#4423]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg1-12/igt at syncobj_wait@invalid-signal-bad-pad.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt at syncobj_wait@invalid-signal-bad-pad.html #### Warnings #### * igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [INCOMPLETE][426] ([i915#12392]) -> [INCOMPLETE][427] ([i915#12392] / [i915#7297]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg2-1/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-3/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html * igt at gem_exec_suspend@basic-s3: - shard-rkl: [DMESG-FAIL][428] ([i915#12964]) -> [INCOMPLETE][429] ([i915#13304]) +1 other test incomplete [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-3/igt at gem_exec_suspend@basic-s3.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt at gem_exec_suspend@basic-s3.html * igt at gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-rkl: [TIMEOUT][430] ([i915#12917] / [i915#12964]) -> [SKIP][431] ([i915#4270]) +1 other test skip [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-2/igt at gem_pxp@verify-pxp-stale-buf- == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 18 02:10:27 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 18 Jan 2025 02:10:27 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fsriov?= =?utf-8?q?=5Fflr=3A_Add_parallel_FLR_subtest_for_SR-IOV_VFs_=28rev3=29?= In-Reply-To: <20250116192906.636031-1-marcin.bernatowicz@linux.intel.com> References: <20250116192906.636031-1-marcin.bernatowicz@linux.intel.com> Message-ID: <173716622736.962172.13600816265867616906@b555e5b46a47> == Series Details == Series: tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs (rev3) URL : https://patchwork.freedesktop.org/series/142042/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15971_full -> IGTPW_12451_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12451_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12451_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_12451/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_12451_full: ### IGT changes ### #### Possible regressions #### * igt at gem_tiled_swapping@non-threaded: - shard-tglu: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-4/igt at gem_tiled_swapping@non-threaded.html * igt at kms_flip@plain-flip-ts-check-interruptible at a-hdmi-a4: - shard-dg1: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg1-18/igt at kms_flip@plain-flip-ts-check-interruptible at a-hdmi-a4.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at kms_flip@plain-flip-ts-check-interruptible at a-hdmi-a4.html * igt at perf_pmu@all-busy-check-all: - shard-mtlp: [PASS][4] -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-2/igt at perf_pmu@all-busy-check-all.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-5/igt at perf_pmu@all-busy-check-all.html #### Warnings #### * igt at i915_module_load@reload-with-fault-injection: - shard-glk: [ABORT][6] ([i915#9820]) -> [ABORT][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-glk8/igt at i915_module_load@reload-with-fault-injection.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk6/igt at i915_module_load@reload-with-fault-injection.html Known issues ------------ Here are the changes found in IGTPW_12451_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-5/igt at api_intel_bb@blit-reloc-keep-cache.html * 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_12451/shard-dg1-14/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]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-4/igt at api_intel_bb@object-reloc-keep-cache.html * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-1/igt at api_intel_bb@object-reloc-purge-cache.html * igt at debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#9318]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-4/igt at debugfs_test@basic-hwmon.html - shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#9318]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at debugfs_test@basic-hwmon.html * igt at device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-7/igt at device_reset@cold-reset-bound.html * igt at device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#11078]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-idle-check-all at vcs1: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#8414]) +18 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-12/igt at drm_fdinfo@busy-idle-check-all at vcs1.html * igt at drm_fdinfo@most-busy-idle-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8414]) +19 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at drm_fdinfo@most-busy-idle-check-all at vecs1.html * igt at gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#3281]) +11 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-7/igt at gem_bad_reloc@negative-reloc-lut.html * igt at gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#9323]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@block-multicopy-inplace: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#13008]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-14/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at gem_ccs@suspend-resume.html * igt at gem_ctx_persistence@engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +5 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-snb1/igt at gem_ctx_persistence@engines-hostile-preempt.html * igt at gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#8555]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at gem_ctx_persistence@heartbeat-many.html * igt at gem_ctx_shared@exec-single-timeline at vcs0: - shard-rkl: [PASS][27] -> [DMESG-WARN][28] ([i915#12964]) +32 other tests dmesg-warn [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-2/igt at gem_ctx_shared@exec-single-timeline at vcs0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/igt at gem_ctx_shared@exec-single-timeline at vcs0.html * igt at gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][30] ([i915#280]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-6/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][31] ([i915#13390]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk1/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@reset-stress: - shard-dg2: NOTRUN -> [FAIL][32] ([i915#12543] / [i915#5784]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at gem_eio@reset-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_12451/shard-dg1-17/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4812]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at gem_exec_balancer@bonded-semaphore.html * igt at gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4771]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-1/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4036]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-3/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#8555]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-2/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#4525]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-6/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [SKIP][40] ([i915#4525]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-9/igt at gem_exec_balancer@parallel-ordering.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_12451/shard-rkl-7/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_12451/shard-tglu-4/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at gem_exec_flush@basic-batch-kernel-default-cmd.html * igt at gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-1/igt at gem_exec_flush@basic-uc-ro-default.html * igt at gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +20 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-2/igt at gem_exec_reloc@basic-active.html * igt at gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-1/igt at gem_exec_reloc@basic-cpu-noreloc.html * igt at gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3281]) +9 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-14/igt at gem_exec_reloc@basic-wc-gtt-noreloc.html * igt at gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-7/igt at gem_exec_schedule@reorder-wide.html * igt at gem_fence_thrash@bo-copy: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4860]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at gem_fence_thrash@bo-copy.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4860]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-7/igt at gem_fence_thrash@bo-write-verify-y.html * igt at gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#2190]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-4/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613] / [i915#7582]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-3/igt at gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][53] ([i915#4613] / [i915#7582]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-2/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-1/igt at gem_lmem_swapping@heavy-verify-random.html - shard-tglu-1: NOTRUN -> [SKIP][55] ([i915#4613]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at gem_lmem_swapping@heavy-verify-random.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#12193]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-12/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4565]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-12/igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0.html * igt at gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][58] ([i915#4613]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk1/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-3/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#284]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-5/igt at gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][61] ([i915#284]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-1/igt at gem_media_vme.html * igt at gem_mmap@bad-size: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4083]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at gem_mmap@bad-size.html * igt at gem_mmap_gtt@basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4077]) +12 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-12/igt at gem_mmap_gtt@basic-small-copy-odd.html * igt at gem_mmap_gtt@basic-write-read-distinct: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4077]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-5/igt at gem_mmap_gtt@basic-write-read-distinct.html * igt at gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) +8 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-7/igt at gem_mmap_wc@invalid-flags.html * igt at gem_mmap_wc@write-wc-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4083]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-5/igt at gem_mmap_wc@write-wc-read-gtt.html * igt at gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +10 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-6/igt at gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt at gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][68] ([i915#2658]) +1 other test warn [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-snb1/igt at gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][69] ([i915#2658]) +1 other test warn [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-3/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282]) +7 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@create-protected-buffer: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4270]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-14/igt at gem_pxp@create-protected-buffer.html * igt at gem_pxp@create-regular-context-1: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#4270]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/igt at gem_pxp@create-regular-context-1.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: NOTRUN -> [TIMEOUT][73] ([i915#12964]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-2/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [TIMEOUT][74] ([i915#12917] / [i915#12964]) +1 other test timeout [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/igt at gem_pxp@reject-modify-context-protection-on.html * igt at gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4270]) +8 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-3/igt at gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt at gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +6 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-3/igt at gem_readwrite@beyond-eob.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +11 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-2/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4079]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-12/igt at gem_set_tiling_vs_gtt.html * igt at gem_set_tiling_vs_pwrite: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-2/igt at gem_set_tiling_vs_pwrite.html * igt at gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4077]) +19 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-4/igt at gem_tiled_partial_pwrite_pread@writes.html * igt at gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4079]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-1/igt at gem_tiled_pread_basic.html * igt at gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4879]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at gem_unfence_active_buffers.html - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4879]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-5/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@coherency-sync: - shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#3297]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at gem_userptr_blits@coherency-sync.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-7/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#3282] / [i915#3297]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at gem_userptr_blits@forbidden-operations.html - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3282] / [i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-10/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4880]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4880]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#3281] / [i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-2/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4958]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-10/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#3297]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-12/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#3297]) +4 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-4/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][94] ([i915#3297]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-3/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#3297]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-1/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][96] +412 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-snb5/igt at gem_vm_create@invalid-create.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][97] +21 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-3/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@bb-secure: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-8/igt at gen9_exec_parse@bb-secure.html * igt at gen9_exec_parse@bb-start-cmd: - shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at gen9_exec_parse@bb-start-cmd.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#2527]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at gen9_exec_parse@bb-start-cmd.html - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#2856]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-8/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#2527]) +6 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-3/igt at gen9_exec_parse@bb-start-out.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#2856]) +7 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-7/igt at gen9_exec_parse@unaligned-access.html * igt at i915_module_load@reload-no-display: - shard-tglu-1: NOTRUN -> [DMESG-WARN][104] ([i915#13029]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at i915_module_load@reload-no-display.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [ABORT][105] ([i915#9820]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-10/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#7178]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at i915_module_load@resize-bar.html - shard-tglu: NOTRUN -> [SKIP][107] ([i915#6412]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-4/igt at i915_module_load@resize-bar.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#7091]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-3/igt at i915_pipe_stress@stress-xrgb8888-ytiled.html * igt at i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#8399]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-7/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_rpm@gem-execbuf: - shard-rkl: [PASS][110] -> [SKIP][111] ([i915#13328]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-1/igt at i915_pm_rpm@gem-execbuf.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-1/igt at i915_pm_rpm@gem-execbuf.html * igt at i915_pm_rpm@system-suspend: - shard-glk: [PASS][112] -> [INCOMPLETE][113] ([i915#12797]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-glk8/igt at i915_pm_rpm@system-suspend.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk3/igt at i915_pm_rpm@system-suspend.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#11681] / [i915#6621]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#11681]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-7/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4387]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4387]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at i915_pm_sseu@full-enable.html * igt at i915_power@sanity: - shard-mtlp: [PASS][118] -> [SKIP][119] ([i915#7984]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-6/igt at i915_power@sanity.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-1/igt at i915_power@sanity.html - shard-rkl: NOTRUN -> [SKIP][120] ([i915#7984]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-4/igt at i915_power@sanity.html * igt at i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#6245]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][122] ([i915#6245]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-5/igt at i915_query@hwconfig_table.html * igt at i915_query@test-query-geometry-subslices: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#5723]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-4/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][124] ([i915#9311]) +1 other test dmesg-warn [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-snb5/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][125] ([i915#9311]) +1 other test dmesg-warn [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-4/igt at i915_selftest@mock at memory_region.html - shard-rkl: NOTRUN -> [DMESG-WARN][126] ([i915#9311]) +1 other test dmesg-warn [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-3/igt at i915_selftest@mock at memory_region.html * igt at intel_hwmon@hwmon-write: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#7707]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-4/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4215] / [i915#5190]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-10/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#4212]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-1/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_addfb_basic@clobberred-modifier: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#4212]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at kms_addfb_basic@clobberred-modifier.html * igt at kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4212]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-2/igt at kms_addfb_basic@framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#12454] / [i915#12712]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-6/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][133] ([i915#8709]) +7 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-3/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-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#8709]) +11 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-4/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@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#12967] / [i915#6228]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#9531]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/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_12451/shard-dg1-17/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#1769] / [i915#3555]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-7/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-dg1: NOTRUN -> [SKIP][139] ([i915#1769] / [i915#3555]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-12/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-glk: NOTRUN -> [SKIP][140] ([i915#1769]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk5/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#5286]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#4538] / [i915#5286]) +5 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#5286]) +12 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-3/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#5286]) +5 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-9/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#3638]) +4 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-3/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#3638]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#5190]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-5/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-mtlp: NOTRUN -> [SKIP][148] +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-2/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#4538] / [i915#5190]) +20 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-10/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#6187]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-5/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#4538]) +9 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#6095]) +175 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-4.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#12313]) +4 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-5/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][154] ([i915#12313]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-4/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#10307] / [i915#6095]) +116 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/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-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6095]) +74 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-5/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#12313]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-4/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#6095]) +105 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/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-dg2: NOTRUN -> [SKIP][159] ([i915#12805]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-3/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.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]) +18 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-4/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-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: [PASS][161] -> [INCOMPLETE][162] ([i915#12796]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-glk1/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk7/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#12313]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#6095]) +49 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1.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]) +4 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/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-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#3742]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#3742]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-3/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]) +4 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-3/igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3.html * igt at kms_chamelium_audio@hdmi-audio: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +22 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at kms_chamelium_audio@hdmi-audio.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][170] +45 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-12/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +8 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-8/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +12 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +5 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_chamelium_frames@dp-crc-single.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-5/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +9 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-14/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3555]) +9 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-3/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#7118] / [i915#9424]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-3/igt at kms_content_protection@atomic.html * igt at kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#9424]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/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]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-7/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3116]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-2/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#3116] / [i915#3299]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3299]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-7/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#9424]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-3/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#6944] / [i915#9424]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_content_protection@lic-type-1.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_12451/shard-rkl-7/igt at kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][186] ([i915#6944] / [i915#7116] / [i915#7118]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-5/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#7118] / [i915#9424]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at kms_content_protection@type1.html - shard-dg1: NOTRUN -> [SKIP][188] ([i915#7116] / [i915#9424]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#3555]) +5 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#3555]) +5 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#13049]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-1/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#13049]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-10/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_12451/shard-mtlp-6/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555]) +13 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#13049]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-10/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#13049]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_edge_walk@64x64-top-edge: - shard-rkl: NOTRUN -> [DMESG-WARN][197] ([i915#12917] / [i915#12964]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-7/igt at kms_cursor_edge_walk@64x64-top-edge.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#4103] / [i915#4213]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#4103]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@basic-flip-after-cursor-atomic: - shard-glk: NOTRUN -> [FAIL][200] ([i915#2346]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk8/igt at kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#13046] / [i915#5354]) +10 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-5/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#9809]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-4/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [PASS][203] -> [FAIL][204] ([i915#2346]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html - shard-mtlp: [PASS][205] -> [FAIL][206] ([i915#2346]) +1 other test fail [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-3/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-3/igt at kms_cursor_legacy@flip-vs-cursor-toggle.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_12451/shard-rkl-3/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][208] ([i915#4103]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-rkl: NOTRUN -> [SKIP][209] ([i915#4103]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/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-dg2: NOTRUN -> [SKIP][210] ([i915#4103] / [i915#4213]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-7/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-dg1: [PASS][211] -> [DMESG-WARN][212] ([i915#4423]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg1-13/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#9723]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-7/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg2: NOTRUN -> [SKIP][214] ([i915#9833]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-1/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#1257]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-3/igt at kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][216] ([i915#1257]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-2/igt at kms_dp_aux_dev.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#3840]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-2/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-formats: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#3840]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/igt at kms_dsc@dsc-with-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#3840] / [i915#9053]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-12/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#3955]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-4/igt at kms_fbcon_fbt@psr-suspend.html - shard-tglu: NOTRUN -> [SKIP][222] ([i915#3469]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-5/igt at kms_fbcon_fbt@psr-suspend.html - shard-dg2: NOTRUN -> [SKIP][223] ([i915#3469]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-5/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#4854]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-4/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#1839]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-3/igt at kms_feature_discovery@display-3x.html - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#1839]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_feature_discovery@display-3x.html - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#1839]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-1/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#1839]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-2/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#658]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-4/igt at kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][230] ([i915#658]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-12/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#658]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-6/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1: - shard-snb: [PASS][232] -> [FAIL][233] ([i915#11989]) +1 other test fail [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-snb1/igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-snb4/igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@2x-flip-vs-dpms: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#3637]) +5 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-4/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#8381]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-12/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][236] ([i915#12745] / [i915#4839]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk7/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: NOTRUN -> [INCOMPLETE][237] ([i915#4839]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk7/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#9934]) +14 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-2/igt at kms_flip@2x-modeset-vs-vblank-race.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#9934]) +9 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-7/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#3637]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-dg1: NOTRUN -> [SKIP][241] ([i915#9934]) +6 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#8381]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-5/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@flip-vs-fences at b-hdmi-a2: - shard-rkl: NOTRUN -> [DMESG-WARN][243] ([i915#12964]) +47 other tests dmesg-warn [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-3/igt at kms_flip@flip-vs-fences at b-hdmi-a2.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-snb: NOTRUN -> [FAIL][244] ([i915#11989]) +2 other tests fail [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-snb4/igt at kms_flip@plain-flip-ts-check-interruptible.html - shard-dg1: [PASS][245] -> [FAIL][246] ([i915#11989]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg1-18/igt at kms_flip@plain-flip-ts-check-interruptible.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1: - shard-tglu: [PASS][247] -> [FAIL][248] ([i915#11989]) +1 other test fail [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-tglu-8/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-2/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#2587] / [i915#2672]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-8/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#2672]) +4 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-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-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555] / [i915#5190]) +5 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#2672]) +9 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) +4 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-10/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-rkl: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555]) +4 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#3555]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][259] ([i915#2672] / [i915#3555]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/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-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#2587] / [i915#2672]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#8708]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-5/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#8708]) +36 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#5354]) +59 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-snb: [PASS][264] -> [SKIP][265] +5 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-snb2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][266] +54 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][267] ([i915#10056] / [i915#13353]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk1/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#3458]) +36 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-3/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-rkl: NOTRUN -> [SKIP][269] +33 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#1825]) +2 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][271] +90 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#1825]) +48 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#3023]) +40 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#10055]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-3/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#9766]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#3458]) +23 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#8708]) +21 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#12713]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-4/igt at kms_hdr@brightness-with-hdr.html - shard-dg1: NOTRUN -> [SKIP][280] ([i915#1187] / [i915#12713]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8228]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-5/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8228]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-6/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-suspend: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at kms_hdr@static-toggle-suspend.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_12451/shard-rkl-7/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#12388]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-3/igt at kms_joiner@basic-force-big-joiner.html - shard-dg2: [PASS][286] -> [SKIP][287] ([i915#12388]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg2-10/igt at kms_joiner@basic-force-big-joiner.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-4/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#12339]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-4/igt at kms_joiner@basic-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][289] ([i915#12339]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-5/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][290] ([i915#12339]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#4816]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-10/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][292] ([i915#1839]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-14/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-tglu: NOTRUN -> [SKIP][293] ([i915#1839]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][294] ([i915#12756] / [i915#13409] / [i915#13476]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/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][295] ([i915#12756]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk3/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a: - shard-rkl: [PASS][296] -> [DMESG-FAIL][297] ([i915#12964]) +1 other test dmesg-fail [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-2/igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-7/igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a.html * igt at kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8806]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-2/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#6953] / [i915#9423]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-5/igt at kms_plane_scaling@intel-max-src-size.html - shard-rkl: NOTRUN -> [SKIP][300] ([i915#6953]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-4/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#12247]) +13 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#12247]) +13 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-7/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#12247]) +8 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-6/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-upscale-factor-0-25-with-rotation at pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#12247]) +4 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/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][305] ([i915#12247] / [i915#6953]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at kms_plane_scaling@planes-downscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#12247] / [i915#6953]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-4/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-tglu: NOTRUN -> [SKIP][307] ([i915#12247] / [i915#6953]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-4/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 at pipe-a: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#12247]) +3 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-4/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-a.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#12247] / [i915#3555] / [i915#9423]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-3/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-d: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#12247]) +3 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-3/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-d.html * igt at kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#9812]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#12343]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#9812]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-6/igt at kms_pm_backlight@fade.html - shard-dg1: NOTRUN -> [SKIP][314] ([i915#5354]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at kms_pm_backlight@fade.html * igt at kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#5354]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#9685]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][317] ([i915#9685]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-10/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#3828]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-7/igt at kms_pm_dc@dc5-retention-flops.html - shard-rkl: NOTRUN -> [SKIP][319] ([i915#3828]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-4/igt at kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][320] ([i915#3828]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-12/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#5978]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-10/igt at kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [SKIP][322] ([i915#3361]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-1/igt at kms_pm_dc@dc6-dpms.html - shard-tglu-1: NOTRUN -> [FAIL][323] ([i915#9295]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][324] ([i915#3828]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-7/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][325] -> [SKIP][326] ([i915#9519]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg2-10/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-4/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][327] ([i915#9519]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-3/igt at kms_pm_rpm@modeset-non-lpsp.html - shard-dg2: NOTRUN -> [SKIP][328] ([i915#9519]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-4/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#9519]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#6524] / [i915#6805]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-7/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#6524]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-6/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][332] ([i915#11520]) +10 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-snb1/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-tglu-1: NOTRUN -> [SKIP][333] ([i915#11520]) +2 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][334] ([i915#11520]) +11 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#12316]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-5/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#11520]) +12 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-1/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][337] ([i915#11520]) +8 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-4/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#11520]) +15 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-10/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][339] ([i915#11520]) +9 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk5/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#9683]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-3/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][341] ([i915#9683]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-7/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#9683]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-7/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][343] ([i915#9683]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#9732]) +21 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-4/igt at kms_psr@fbc-psr-sprite-plane-move.html * igt at kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][345] +340 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk6/igt at kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt at kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#9688]) +3 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-7/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@psr-primary-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#1072] / [i915#9732]) +48 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-4/igt at kms_psr@psr-primary-mmap-cpu.html * igt at kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][348] ([i915#1072] / [i915#9732]) +21 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at kms_psr@psr-sprite-mmap-cpu.html * igt at kms_psr@psr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][349] ([i915#1072] / [i915#9732]) +33 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-6/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][350] ([i915#9732]) +15 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_psr@psr2-sprite-mmap-gtt.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#9685]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][352] ([i915#5289]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-3/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#5289]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#5289]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][355] ([i915#3555]) +2 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-3/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][356] ([i915#13179]) +1 other test abort [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-2/igt at kms_selftest@drm_framebuffer.html - shard-glk: NOTRUN -> [ABORT][357] ([i915#13179]) +1 other test abort [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk5/igt at kms_selftest@drm_framebuffer.html * igt at kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][358] ([IGT#160]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-7/igt at kms_sysfs_edid_timing.html - shard-dg1: NOTRUN -> [FAIL][359] ([IGT#160] / [i915#6493]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg1: NOTRUN -> [SKIP][360] ([i915#8623]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][361] ([i915#12276]) +1 other test incomplete [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk9/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html * igt at kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#11920]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at kms_vrr@lobf.html * igt at kms_vrr@max-min: - shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#9906]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at kms_vrr@max-min.html - shard-dg2: NOTRUN -> [SKIP][364] ([i915#9906]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-3/igt at kms_vrr@max-min.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][365] ([i915#9906]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-1/igt at kms_vrr@seamless-rr-switch-drrs.html - shard-tglu: NOTRUN -> [SKIP][366] ([i915#9906]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-8/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-dg1: NOTRUN -> [SKIP][367] ([i915#9906]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-12/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][368] ([i915#2437]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-4/igt at kms_writeback@writeback-check-output.html - shard-rkl: NOTRUN -> [SKIP][369] ([i915#2437]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][370] ([i915#2437] / [i915#9412]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-4/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][371] ([i915#2437] / [i915#9412]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-3/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_12451/shard-dg1-17/igt at kms_writeback@writeback-invalid-parameters.html - shard-tglu: NOTRUN -> [SKIP][373] ([i915#2437]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-5/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#2436]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#7387]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-3/igt at perf@global-sseu-config.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][376] ([i915#2434]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-3/igt at perf@mi-rpc.html * igt at perf_pmu@all-busy-idle-check-all: - shard-dg1: [PASS][377] -> [FAIL][378] ([i915#11943]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg1-12/igt at perf_pmu@all-busy-idle-check-all.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-17/igt at perf_pmu@all-busy-idle-check-all.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: NOTRUN -> [FAIL][379] ([i915#4349]) +4 other tests fail [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@busy-idle at vcs1: - shard-mtlp: [PASS][380] -> [FAIL][381] ([i915#4349]) +8 other tests fail [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-7/igt at perf_pmu@busy-idle at vcs1.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-8/igt at perf_pmu@busy-idle at vcs1.html * igt at perf_pmu@cpu-hotplug: - shard-dg1: NOTRUN -> [SKIP][382] ([i915#8850]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-12/igt at perf_pmu@cpu-hotplug.html - shard-tglu: NOTRUN -> [SKIP][383] ([i915#8850]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-10/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][384] ([i915#11823]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at perf_pmu@module-unload.html * igt at perf_pmu@most-busy-idle-check-all at rcs0: - shard-rkl: [PASS][385] -> [FAIL][386] ([i915#4349]) +1 other test fail [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-2/igt at perf_pmu@most-busy-idle-check-all at rcs0.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-7/igt at perf_pmu@most-busy-idle-check-all at rcs0.html * igt at perf_pmu@most-busy-idle-check-all at vcs0: - shard-mtlp: [PASS][387] -> [FAIL][388] ([i915#11943]) +7 other tests fail [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-3/igt at perf_pmu@most-busy-idle-check-all at vcs0.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-8/igt at perf_pmu@most-busy-idle-check-all at vcs0.html * igt at perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][389] ([i915#13356]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk4/igt at perf_pmu@rc6-suspend.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#8516]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-10/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu-1: NOTRUN -> [SKIP][391] ([i915#8516]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-1/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][392] ([i915#9351]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at prime_mmap@test_aperture_limit.html * igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][393] ([i915#9351]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-8/igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem.html * igt at prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][394] ([i915#3708] / [i915#4077]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-5/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][395] ([i915#3708]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][396] ([i915#3708] / [i915#4077]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-13/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][397] ([i915#3708]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-7/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][398] ([i915#3708]) +1 other test skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-10/igt at prime_vgem@fence-read-hang.html * igt at sriov_basic@bind-unbind-vf at vf-4: - shard-tglu: NOTRUN -> [FAIL][399] ([i915#12910]) +9 other tests fail [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-3/igt at sriov_basic@bind-unbind-vf at vf-4.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][400] ([i915#9917]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-7/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-dg1: NOTRUN -> [SKIP][401] ([i915#9917]) +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at sriov_basic@enable-vfs-autoprobe-on.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2: NOTRUN -> [SKIP][402] ([i915#9917]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-4/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at sriov_basic@enable-vfs-bind-unbind-each at numvfs-2: - shard-tglu-1: NOTRUN -> [FAIL][403] ([i915#12910]) +8 other tests fail [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/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][404] ([i915#4818]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-12/igt at tools_test@sysfs_l3_parity.html - shard-dg2: NOTRUN -> [SKIP][405] ([i915#4818]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-2/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at gem_eio@in-flight-suspend: - shard-rkl: [DMESG-WARN][406] ([i915#12964]) -> [PASS][407] +52 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-4/igt at gem_eio@in-flight-suspend.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@reset-stress: - shard-dg1: [FAIL][408] ([i915#12543] / [i915#5784]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg1-17/igt at gem_eio@reset-stress.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg1-18/igt at gem_eio@reset-stress.html * igt at gem_exec_balancer@full-late-pulse: - shard-mtlp: [FAIL][410] ([i915#13364]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-1/igt at gem_exec_balancer@full-late-pulse.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-2/igt at gem_exec_balancer@full-late-pulse.html * igt at gem_lmem_swapping@basic: - shard-dg2: [SKIP][412] -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg2-10/igt at gem_lmem_swapping@basic.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-10/igt at gem_lmem_swapping@basic.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: [INCOMPLETE][414] ([i915#12797]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-glk6/igt at i915_pm_rpm@system-suspend-execbuf.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-glk8/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-dg2: [FAIL][416] ([i915#10991] / [i915#12766]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg2-7/igt at kms_async_flips@alternate-sync-async-flip.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-5/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@alternate-sync-async-flip at pipe-c-hdmi-a-3: - shard-dg2: [FAIL][418] -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg2-7/igt at kms_async_flips@alternate-sync-async-flip at pipe-c-hdmi-a-3.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-dg2-5/igt at kms_async_flips@alternate-sync-async-flip at pipe-c-hdmi-a-3.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][420] ([i915#5138]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-6/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-vga1-hdmi-a1: - shard-snb: [FAIL][422] ([i915#11989]) -> [PASS][423] +5 other tests pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-snb7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-vga1-hdmi-a1.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-snb2/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-vga1-hdmi-a1.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1: - shard-tglu: [FAIL][424] ([i915#11989]) -> [PASS][425] +2 other tests pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-tglu-3/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-tglu-4/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1.html * igt at kms_flip@flip-vs-suspend: - shard-rkl: [DMESG-FAIL][426] ([i915#12964]) -> [PASS][427] +4 other tests pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-2/igt at kms_flip@flip-vs-suspend.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-rkl-5/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@plain-flip-fb-recreate at a-edp1: - shard-mtlp: [FAIL][428] ([i915#11989]) -> [PASS][429] +4 other tests pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-8/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/shard-mtlp-7/igt == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12451/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 18 11:13:28 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 18 Jan 2025 11:13:28 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fcreate=3A?= =?utf-8?q?_Check_negative_cases_for_exec=5Fqueue_create/destroy_ioctl?= In-Reply-To: <20250117205319.3359797-1-nakshtra.goyal@intel.com> References: <20250117205319.3359797-1-nakshtra.goyal@intel.com> Message-ID: <173719880836.1119764.2669598364801677230@b555e5b46a47> == Series Details == Series: tests/intel/xe_create: Check negative cases for exec_queue create/destroy ioctl URL : https://patchwork.freedesktop.org/series/143692/ State : failure == Summary == CI Bug Log - changes from XEIGT_8198_full -> XEIGTPW_12456_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with XEIGTPW_12456_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12456_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_12456_full: ### IGT changes ### #### Warnings #### * igt at kms_pm_dc@dc6-dpms: - shard-bmg: [FAIL][1] ([Intel XE#1430]) -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_pm_dc@dc6-dpms.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-5/igt at kms_pm_dc@dc6-dpms.html * igt at xe_sriov_auto_provisioning@exclusive-ranges: - shard-bmg: [SKIP][3] ([Intel XE#1130]) -> [SKIP][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_sriov_auto_provisioning@exclusive-ranges.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at xe_sriov_auto_provisioning@exclusive-ranges.html New tests --------- New tests have been introduced between XEIGT_8198_full and XEIGTPW_12456_full: ### New IGT tests (20) ### * igt at kms_atomic_interruptible@legacy-cursor at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [6.27] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.69] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ac-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.66] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ad-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.66] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at bc-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.63] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at bd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.63] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at cd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.65] s * igt at kms_hdr@static-toggle at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.93] s * igt at kms_sequence@get-idle at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.48] s * igt at kms_sequence@get-idle at pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.23] s * igt at kms_sequence@get-idle at pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.23] s * igt at kms_sequence@get-idle at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.22] s * igt at xe_create@exec-queue-create-invalid-reserved: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0] s * igt at xe_create@exec-queue-destroy-invalid-reserved: - Statuses : 1 pass(s) 2 skip(s) - Exec time: [0.0] s * igt at xe_create@invalid-exec-queue-id: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt at xe_create@invalid-extensions: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt at xe_create@invalid-flag: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0] s * igt at xe_create@invalid-num-placements: - Statuses : 1 pass(s) 1 skip(s) - Exec time: [0.0] s * igt at xe_create@invalid-pad: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0] s * igt at xe_create@invalid-width: - Statuses : 3 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12456_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getstats: - shard-dg2-set2: [PASS][5] -> [SKIP][6] ([Intel XE#2423]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at core_getstats.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at core_getstats.html * igt at core_getversion@basic: - shard-bmg: [PASS][7] -> [FAIL][8] ([Intel XE#3440]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at core_getversion@basic.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at core_getversion@basic.html * igt at core_hotunplug@hotrebind-lateclose: - shard-bmg: [PASS][9] -> [SKIP][10] ([Intel XE#1885]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at core_hotunplug@hotrebind-lateclose.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at core_hotunplug@hotrebind-lateclose.html - shard-dg2-set2: [PASS][11] -> [SKIP][12] ([Intel XE#1885]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at core_hotunplug@hotrebind-lateclose.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at core_hotunplug@hotrebind-lateclose.html * igt at kms_async_flips@alternate-sync-async-flip at pipe-a-dp-2: - shard-bmg: NOTRUN -> [DMESG-WARN][13] ([Intel XE#877]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-dp-2.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-8/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#316]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@x-tiled-addfb: - shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#2136]) +21 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_big_fb@x-tiled-addfb.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_big_fb@x-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-3/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_bw@connected-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_12456/shard-dg2-463/igt at kms_bw@connected-linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#2314] / [Intel XE#2894]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@linear-tiling-4-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1512]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-7/igt at kms_bw@linear-tiling-4-displays-2560x1440p.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-basic-y-tiled-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#787]) +13 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-463/igt at kms_ccs@crc-primary-basic-y-tiled-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +6 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-5/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [INCOMPLETE][27] ([Intel XE#3862]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - 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_8198/shard-dg2-436/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#3432]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-3/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs at pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2652] / [Intel XE#787]) +11 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-3/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs at pipe-c-dp-2.html * igt at kms_chamelium_color@degamma: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#306]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-5/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#373]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-434/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@dp-edid-resolution-list: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#373]) +4 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-8/igt at kms_chamelium_edid@dp-edid-resolution-list.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#307]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-3/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@srm at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][36] ([Intel XE#1178]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-8/igt at kms_content_protection@srm at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1424]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-6/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#308]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-434/igt at kms_cursor_crc@cursor-sliding-512x170.html - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2321]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-1/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#309]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-7/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#2291]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipb-toggle.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-dp-2: - shard-bmg: NOTRUN -> [FAIL][43] ([Intel XE#2141]) +1 other test fail [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-4/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-dp-2.html * igt at kms_feature_discovery@display-2x: - shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#2373]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_feature_discovery@display-2x.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#703]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-434/igt at kms_feature_discovery@display-3x.html * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1421]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-7/igt at kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][48] -> [FAIL][49] ([Intel XE#301] / [Intel XE#3321]) +3 other tests fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/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-wf_vblank-interruptible: - shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#2316]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_flip@2x-flip-vs-wf_vblank-interruptible.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#2423]) +107 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_flip@2x-nonexisting-fb.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: NOTRUN -> [FAIL][54] ([Intel XE#301]) +3 other tests fail [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: - shard-dg2-set2: [PASS][55] -> [FAIL][56] ([Intel XE#301]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#455]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2293] / [Intel XE#2380]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1401]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1397] / [Intel XE#1745]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-4/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-default-mode: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1397]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2380]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2293]) +6 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#651]) +5 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#651]) +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-3/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#656]) +17 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [PASS][68] -> [SKIP][69] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#2136]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#653]) +5 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt at kms_frontbuffer_tracking@psr-suspend: - shard-lnl: [PASS][72] -> [INCOMPLETE][73] ([Intel XE#2050]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-2/igt at kms_frontbuffer_tracking@psr-suspend.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-7/igt at kms_frontbuffer_tracking@psr-suspend.html * igt at kms_hdr@invalid-metadata-sizes: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1503]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-6/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#346]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-8/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][76] -> [SKIP][77] ([Intel XE#3012]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_joiner@invalid-modeset-force-big-joiner.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#2493]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-4/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4: - shard-dg2-set2: [PASS][79] -> [FAIL][80] ([Intel XE#361]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html * igt at kms_plane_scaling@plane-upscale-factor-0-25-with-rotation: - shard-dg2-set2: [PASS][81] -> [SKIP][82] ([Intel XE#2423] / [i915#2575]) +12 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20 at pipe-b: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#2763]) +7 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-5/igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2763]) +19 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][85] -> [FAIL][86] ([Intel XE#718]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_rpm@basic-rte: - shard-bmg: [PASS][87] -> [SKIP][88] ([Intel XE#2446]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_pm_rpm@basic-rte.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_pm_rpm@basic-rte.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][89] -> [SKIP][90] ([Intel XE#2446]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#1489]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/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-lnl: NOTRUN -> [SKIP][92] ([Intel XE#2893]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-6/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1128]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-5/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1406]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-1/igt at kms_psr@fbc-pr-cursor-plane-move.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-463/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#362]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-8/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1499]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-1/igt at kms_vrr@negative-basic.html * igt at xe_compute_preempt@compute-preempt-many at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1280] / [Intel XE#455]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at xe_compute_preempt@compute-preempt-many at engine-drm_xe_engine_class_compute.html * {igt at xe_create@exec-queue-destroy-invalid-reserved} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#1130]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at xe_create@exec-queue-destroy-invalid-reserved.html * {igt at xe_create@invalid-flag} (NEW): - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#1130]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at xe_create@invalid-flag.html * igt at xe_eudebug@basic-client: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2905]) +6 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-1/igt at xe_eudebug@basic-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2905]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-434/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#688]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-5/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1392]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-3/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_basic@no-exec-basic-defer-bind: - shard-dg2-set2: [PASS][105] -> [SKIP][106] ([Intel XE#1130]) +21 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_exec_basic@no-exec-basic-defer-bind.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at xe_exec_basic@no-exec-basic-defer-bind.html * igt at xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#288]) +4 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-463/igt at xe_exec_fault_mode@once-invalid-userptr-fault.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1192]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-5/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2229]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [PASS][110] -> [SKIP][111] ([Intel XE#1192]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at xe_live_ktest@xe_mocs.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at xe_live_ktest@xe_mocs.html * igt at xe_module_load@reload-no-display: - shard-bmg: [PASS][112] -> [FAIL][113] ([Intel XE#3546]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at xe_module_load@reload-no-display.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at xe_module_load@reload-no-display.html * igt at xe_oa@non-privileged-access-vaddr: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-434/igt at xe_oa@non-privileged-access-vaddr.html * igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][115] ([Intel XE#1173]) +1 other test fail [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-7/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@s3-multiple-execs: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#584]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-4/igt at xe_pm@s3-multiple-execs.html * igt at xe_pm@s4-d3hot-basic-exec: - shard-lnl: [PASS][118] -> [ABORT][119] ([Intel XE#1358] / [Intel XE#1607]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-5/igt at xe_pm@s4-d3hot-basic-exec.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-2/igt at xe_pm@s4-d3hot-basic-exec.html * igt at xe_query@multigpu-query-gt-list: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#944]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-463/igt at xe_query@multigpu-query-gt-list.html - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#944]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-8/igt at xe_query@multigpu-query-gt-list.html * igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][122] -> [SKIP][123] ([Intel XE#1130]) +230 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Possible fixes #### * igt at core_hotunplug@unbind-rebind: - shard-bmg: [SKIP][124] ([Intel XE#1885]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at core_hotunplug@unbind-rebind.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-8/igt at core_hotunplug@unbind-rebind.html * igt at core_setmaster@master-drop-set-shared-fd: - shard-bmg: [SKIP][126] ([Intel XE#3453]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at core_setmaster@master-drop-set-shared-fd.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at core_setmaster@master-drop-set-shared-fd.html * igt at fbdev@nullptr: - shard-bmg: [SKIP][128] ([Intel XE#2134]) -> [PASS][129] +1 other test pass [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at fbdev@nullptr.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at fbdev@nullptr.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: [FAIL][130] ([Intel XE#3908]) -> [PASS][131] +1 other test pass [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-8/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][132] ([Intel XE#2136]) -> [PASS][133] +23 other tests pass [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-5/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-8bpp-rotate-0: - shard-dg2-set2: [SKIP][134] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_big_fb@linear-8bpp-rotate-0.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_big_fb@linear-8bpp-rotate-0.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][136] ([Intel XE#2692] / [Intel XE#4010]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/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-b-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][138] ([Intel XE#4010]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-6.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-6.html * igt at kms_color@degamma at pipe-d-hdmi-a-3: - shard-bmg: [DMESG-WARN][140] ([Intel XE#877]) -> [PASS][141] +1 other test pass [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_color@degamma at pipe-d-hdmi-a-3.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-4/igt at kms_color@degamma at pipe-d-hdmi-a-3.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: [SKIP][142] ([Intel XE#2291]) -> [PASS][143] +1 other test pass [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][144] ([Intel XE#3070]) -> [PASS][145] [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_dp_linktrain_fallback@dp-fallback.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][146] ([Intel XE#2882]) -> [PASS][147] +1 other test pass [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-hdmi-a6-dp4.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-463/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-bmg: [SKIP][148] ([Intel XE#2316]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-8/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][150] ([Intel XE#886]) -> [PASS][151] +4 other tests pass [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-2/igt at kms_flip@flip-vs-absolute-wf_vblank.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-5/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a6: - shard-dg2-set2: [FAIL][152] ([Intel XE#301]) -> [PASS][153] +1 other test pass [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a6.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a6.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg2-set2: [SKIP][154] ([Intel XE#2136]) -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][156] ([Intel XE#361]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [SKIP][158] ([Intel XE#2446]) -> [PASS][159] +6 other tests pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_pm_rpm@basic-pci-d3-state.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_properties@connector-properties-legacy: - shard-bmg: [SKIP][160] ([Intel XE#2423]) -> [PASS][161] +101 other tests pass [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_properties@connector-properties-legacy.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_properties@connector-properties-legacy.html * igt at kms_sequence@get-idle: - shard-bmg: [SKIP][162] ([Intel XE#3007]) -> [PASS][163] +7 other tests pass [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_sequence@get-idle.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-5/igt at kms_sequence@get-idle.html - shard-dg2-set2: [SKIP][164] ([Intel XE#2423] / [i915#2575]) -> [PASS][165] +8 other tests pass [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_sequence@get-idle.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_sequence@get-idle.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-bmg: [SKIP][166] ([Intel XE#1435]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-4/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1: - shard-lnl: [FAIL][168] ([Intel XE#899]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-b-edp-1.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [FAIL][170] ([Intel XE#2159]) -> [PASS][171] +1 other test pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-5/igt at kms_vrr@cmrr at pipe-a-edp-1.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-5/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system: - shard-lnl: [INCOMPLETE][172] ([Intel XE#2771]) -> [PASS][173] +1 other test pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-7/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-lnl-8/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system.html * igt at xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [SKIP][174] ([Intel XE#1130]) -> [PASS][175] +270 other tests pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_exec_basic@many-bindexecqueue-rebind.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-5/igt at xe_exec_basic@many-bindexecqueue-rebind.html * igt at xe_live_ktest@xe_migrate: - shard-bmg: [SKIP][176] ([Intel XE#1192]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at xe_live_ktest@xe_migrate.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at xe_live_ktest@xe_migrate.html * igt at xe_module_load@many-reload: - shard-bmg: [FAIL][178] ([Intel XE#3546]) -> [PASS][179] +1 other test pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_module_load@many-reload.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-3/igt at xe_module_load@many-reload.html * igt at xe_vm@large-misaligned-binds-2097152: - shard-dg2-set2: [SKIP][180] ([Intel XE#1130]) -> [PASS][181] +12 other tests pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_vm@large-misaligned-binds-2097152.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at xe_vm@large-misaligned-binds-2097152.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][182] ([Intel XE#2423]) -> [SKIP][183] ([Intel XE#2233]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-5/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [SKIP][184] ([Intel XE#2423]) -> [DMESG-WARN][185] ([Intel XE#877]) +1 other test dmesg-warn [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][186] ([Intel XE#873]) -> [SKIP][187] ([Intel XE#2423]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_async_flips@invalid-async-flip.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-bmg: [SKIP][188] ([Intel XE#2423]) -> [SKIP][189] ([Intel XE#3768]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_async_flips@invalid-async-flip-atomic.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][190] ([Intel XE#2370]) -> [SKIP][191] ([Intel XE#2423]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: [SKIP][192] ([Intel XE#2327]) -> [SKIP][193] ([Intel XE#2136]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_big_fb@linear-32bpp-rotate-270.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: [SKIP][194] ([Intel XE#2136]) -> [SKIP][195] ([Intel XE#2327]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_big_fb@linear-8bpp-rotate-270.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-3/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2-set2: [SKIP][196] ([Intel XE#316]) -> [SKIP][197] ([Intel XE#2136]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_big_fb@x-tiled-16bpp-rotate-270.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_big_fb@x-tiled-16bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][198] ([Intel XE#2136]) -> [SKIP][199] ([Intel XE#1124]) +15 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb: - shard-bmg: [SKIP][200] ([Intel XE#2328]) -> [SKIP][201] ([Intel XE#2136]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_big_fb@y-tiled-addfb.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][202] ([Intel XE#2136]) -> [SKIP][203] ([Intel XE#610]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-5/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][204] ([Intel XE#1124]) -> [SKIP][205] ([Intel XE#2136]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][206] ([Intel XE#1124]) -> [SKIP][207] ([Intel XE#2136]) +11 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][208] ([Intel XE#367]) -> [SKIP][209] ([Intel XE#2423] / [i915#2575]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: [SKIP][210] ([Intel XE#2423]) -> [SKIP][211] ([Intel XE#2314] / [Intel XE#2894]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][212] ([Intel XE#2423]) -> [SKIP][213] ([Intel XE#367]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-4/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][214] ([Intel XE#367]) -> [SKIP][215] ([Intel XE#2423]) +4 other tests skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][216] ([Intel XE#2887]) -> [SKIP][217] ([Intel XE#2136]) +21 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-bmg: [SKIP][218] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][219] ([Intel XE#2136]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][220] ([Intel XE#2136]) -> [SKIP][221] ([Intel XE#2887]) +22 other tests skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc: - 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_8198/shard-dg2-435/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [SKIP][224] ([Intel XE#2136]) -> [INCOMPLETE][225] ([Intel XE#3862]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][226] ([Intel XE#3432]) -> [SKIP][227] ([Intel XE#2136]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: [SKIP][228] ([Intel XE#2136]) -> [SKIP][229] ([Intel XE#3432]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-bmg: [SKIP][230] ([Intel XE#2136]) -> [SKIP][231] ([Intel XE#2652] / [Intel XE#787]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-3/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][232] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][233] ([Intel XE#2136] / [Intel XE#2351]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][234] ([Intel XE#2724]) -> [SKIP][235] ([Intel XE#2136]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_cdclk@mode-transition-all-outputs.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][236] ([Intel XE#2325]) -> [SKIP][237] ([Intel XE#2423]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_chamelium_color@ctm-0-50.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][238] ([Intel XE#2423]) -> [SKIP][239] ([Intel XE#2325]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_chamelium_color@ctm-green-to-red.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-4/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-dg2-set2: [SKIP][240] ([Intel XE#373]) -> [SKIP][241] ([Intel XE#2423] / [i915#2575]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_chamelium_edid@dp-edid-stress-resolution-4k.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][242] ([Intel XE#2423]) -> [SKIP][243] ([Intel XE#2252]) +15 other tests skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_chamelium_hpd@common-hpd-after-suspend.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-4/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: [SKIP][244] ([Intel XE#2252]) -> [SKIP][245] ([Intel XE#2423]) +12 other tests skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-bmg: [SKIP][246] ([Intel XE#2423]) -> [SKIP][247] ([Intel XE#2390]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_content_protection@dp-mst-lic-type-1.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][248] ([Intel XE#2390]) -> [SKIP][249] ([Intel XE#2423]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_content_protection@dp-mst-type-0.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-bmg: [FAIL][250] ([Intel XE#1178]) -> [SKIP][251] ([Intel XE#2423]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_content_protection@legacy.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_content_protection@legacy.html * igt at kms_content_protection@srm: - shard-bmg: [SKIP][252] ([Intel XE#2423]) -> [FAIL][253] ([Intel XE#1178]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_content_protection@srm.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-8/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-bmg: [SKIP][254] ([Intel XE#2423]) -> [SKIP][255] ([Intel XE#2341]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_content_protection@type1.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-3/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-bmg: [SKIP][256] ([Intel XE#2341]) -> [SKIP][257] ([Intel XE#2423]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_content_protection@uevent.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][258] ([Intel XE#2320]) -> [SKIP][259] ([Intel XE#2423]) +5 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_cursor_crc@cursor-offscreen-128x42.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: [SKIP][260] ([Intel XE#2423]) -> [SKIP][261] ([Intel XE#2320]) +6 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-256x85.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][262] ([Intel XE#3007]) -> [SKIP][263] ([Intel XE#2423]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_cursor_crc@cursor-random-32x32.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_cursor_crc@cursor-random-32x32.html - shard-dg2-set2: [SKIP][264] ([Intel XE#2423] / [i915#2575]) -> [SKIP][265] ([Intel XE#455]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_cursor_crc@cursor-random-32x32.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-bmg: [SKIP][266] ([Intel XE#2423]) -> [SKIP][267] ([Intel XE#2321]) +3 other tests skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_crc@cursor-random-512x170.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-bmg: [SKIP][268] ([Intel XE#2423]) -> [SKIP][269] ([Intel XE#2291]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-bmg: [SKIP][270] ([Intel XE#2286]) -> [SKIP][271] ([Intel XE#2423]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: [SKIP][272] ([Intel XE#2423]) -> [SKIP][273] ([Intel XE#2286]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [SKIP][274] ([Intel XE#2136]) -> [FAIL][275] ([Intel XE#2141]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-4/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][276] ([Intel XE#1508]) -> [SKIP][277] ([Intel XE#2136]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_dsc@dsc-fractional-bpp: - shard-bmg: [SKIP][278] ([Intel XE#2136]) -> [SKIP][279] ([Intel XE#2244]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_dsc@dsc-fractional-bpp.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][280] ([Intel XE#2244]) -> [SKIP][281] ([Intel XE#2136]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][282] ([Intel XE#776]) -> [SKIP][283] ([Intel XE#2136]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_fbcon_fbt@psr-suspend.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][284] ([Intel XE#2423]) -> [SKIP][285] ([Intel XE#2372]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_feature_discovery@chamelium.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-8/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-bmg: [SKIP][286] ([Intel XE#2423]) -> [SKIP][287] ([Intel XE#1138]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_feature_discovery@display-4x.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][288] ([Intel XE#2423]) -> [SKIP][289] ([Intel XE#2375]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_feature_discovery@dp-mst.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-4/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-bmg: [SKIP][290] ([Intel XE#2374]) -> [SKIP][291] ([Intel XE#2423]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_feature_discovery@psr1.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_feature_discovery@psr1.html - shard-dg2-set2: [SKIP][292] ([Intel XE#1135]) -> [SKIP][293] ([Intel XE#2423] / [i915#2575]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_feature_discovery@psr1.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-bmg: [SKIP][294] ([Intel XE#2423]) -> [SKIP][295] ([Intel XE#2316]) +2 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: [SKIP][296] ([Intel XE#2316]) -> [SKIP][297] ([Intel XE#2423]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: [SKIP][298] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][299] ([Intel XE#2136]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-bmg: [SKIP][300] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][301] ([Intel XE#2136]) +2 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][302] ([Intel XE#2136]) -> [SKIP][303] ([Intel XE#2380]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-bmg: [SKIP][304] ([Intel XE#2136]) -> [SKIP][305] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-3/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-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][306] ([Intel XE#455]) -> [SKIP][307] ([Intel XE#2136]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: [SKIP][308] ([Intel XE#2136]) -> [SKIP][309] ([Intel XE#2311]) +37 other tests skip [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][310] ([Intel XE#2312]) -> [SKIP][311] ([Intel XE#2311]) +4 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][312] ([Intel XE#2136]) -> [SKIP][313] ([Intel XE#2312]) +17 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][314] ([Intel XE#2311]) -> [SKIP][315] ([Intel XE#2312]) +6 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][316] ([Intel XE#651]) -> [SKIP][317] ([Intel XE#2136] / [Intel XE#2351]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-suspend.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][318] ([Intel XE#2136]) -> [FAIL][319] ([Intel XE#2333]) +23 other tests fail [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][320] ([Intel XE#2333]) -> [SKIP][321] ([Intel XE#2136]) +19 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: - shard-bmg: [FAIL][322] ([Intel XE#2333]) -> [SKIP][323] ([Intel XE#2312]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][324] ([Intel XE#2312]) -> [FAIL][325] ([Intel XE#2333]) +1 other test fail [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][326] ([Intel XE#2136]) -> [SKIP][327] ([Intel XE#651]) +2 other tests skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][328] ([Intel XE#651]) -> [SKIP][329] ([Intel XE#2136]) +3 other tests skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][330] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][331] ([Intel XE#2311]) +2 other tests skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][332] ([Intel XE#2311]) -> [SKIP][333] ([Intel XE#2136]) +30 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: [SKIP][334] ([Intel XE#2352]) -> [SKIP][335] ([Intel XE#2136]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][336] ([Intel XE#2313]) -> [SKIP][337] ([Intel XE#2136]) +32 other tests skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][338] ([Intel XE#2312]) -> [SKIP][339] ([Intel XE#2313]) +6 other tests skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][340] ([Intel XE#2313]) -> [SKIP][341] ([Intel XE#2312]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][342] ([Intel XE#2136]) -> [SKIP][343] ([Intel XE#2313]) +36 other tests skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-bmg: [SKIP][344] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][345] ([Intel XE#2313]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html - shard-dg2-set2: [SKIP][346] ([Intel XE#2136]) -> [SKIP][347] ([Intel XE#653]) +2 other tests skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][348] ([Intel XE#2136]) -> [SKIP][349] ([Intel XE#2352]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][350] ([Intel XE#2312]) -> [SKIP][351] ([Intel XE#2136]) +11 other tests skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][352] ([Intel XE#653]) -> [SKIP][353] ([Intel XE#2136]) +6 other tests skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][354] ([Intel XE#2423]) -> [SKIP][355] ([Intel XE#2340]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_getfb@getfb2-accept-ccs.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][356] ([Intel XE#2934]) -> [SKIP][357] ([Intel XE#2136]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_joiner@basic-force-ultra-joiner.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][358] ([Intel XE#2136]) -> [SKIP][359] ([Intel XE#346]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_joiner@invalid-modeset-big-joiner.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: [SKIP][360] ([Intel XE#2136]) -> [SKIP][361] ([Intel XE#2934]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-bmg: [SKIP][362] ([Intel XE#2486]) -> [SKIP][363] ([Intel XE#2423]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_panel_fitting@atomic-fastset.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-bmg: [SKIP][364] ([Intel XE#2423]) -> [SKIP][365] ([Intel XE#2486]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_panel_fitting@legacy.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-3/igt at kms_panel_fitting@legacy.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][366] ([Intel XE#2423]) -> [SKIP][367] ([Intel XE#2393]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_plane_lowres@tiling-y.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_multiple@tiling-y: - shard-bmg: [SKIP][368] ([Intel XE#2493]) -> [SKIP][369] ([Intel XE#2423]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_plane_multiple@tiling-y.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][370] ([Intel XE#2423]) -> [SKIP][371] ([Intel XE#2763]) +4 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-5/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-bmg: [SKIP][372] ([Intel XE#2763]) -> [SKIP][373] ([Intel XE#2423]) +4 other tests skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt at kms_pm_backlight@bad-brightness: - shard-bmg: [SKIP][374] ([Intel XE#870]) -> [SKIP][375] ([Intel XE#2136]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_pm_backlight@bad-brightness.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][376] ([Intel XE#2136]) -> [SKIP][377] ([Intel XE#3309]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_pm_dc@dc5-retention-flops.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-3/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-bmg: [SKIP][378] ([Intel XE#2392]) -> [SKIP][379] ([Intel XE#2136]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_pm_dc@dc6-psr.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@modeset-lpsp: - shard-bmg: [SKIP][380] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][381] ([Intel XE#2446]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_pm_rpm@modeset-lpsp.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][382] ([Intel XE#1489]) -> [SKIP][383] ([Intel XE#2136]) +11 other tests skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/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-sf: - shard-dg2-set2: [SKIP][384] ([Intel XE#1489]) -> [SKIP][385] ([Intel XE#2136]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: [SKIP][386] ([Intel XE#2136]) -> [SKIP][387] ([Intel XE#1489]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-434/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html - shard-bmg: [SKIP][388] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][389] ([Intel XE#1489]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][390] ([Intel XE#2136]) -> [SKIP][391] ([Intel XE#1489]) +12 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-8/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][392] ([Intel XE#2136]) -> [SKIP][393] ([Intel XE#2387]) [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-3/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-nv12: - shard-bmg: [SKIP][394] ([Intel XE#2387]) -> [SKIP][395] ([Intel XE#2136]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_psr2_su@page_flip-nv12.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-pr-cursor-blt: - shard-bmg: [SKIP][396] ([Intel XE#2136]) -> [SKIP][397] ([Intel XE#2234] / [Intel XE#2850]) +25 other tests skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr@fbc-pr-cursor-blt.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_psr@fbc-pr-cursor-blt.html * igt at kms_psr@fbc-psr-primary-render: - shard-bmg: [SKIP][398] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][399] ([Intel XE#2234] / [Intel XE#2850]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_psr@fbc-psr-primary-render.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_psr@fbc-psr-primary-render.html - shard-dg2-set2: [SKIP][400] ([Intel XE#2136]) -> [SKIP][401] ([Intel XE#2850] / [Intel XE#929]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_psr@fbc-psr-primary-render.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-434/igt at kms_psr@fbc-psr-primary-render.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: [SKIP][402] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][403] ([Intel XE#2136]) +2 other tests skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: [SKIP][404] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][405] ([Intel XE#2136]) +23 other tests skip [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_psr@pr-sprite-plane-onoff.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][406] ([Intel XE#2136]) -> [SKIP][407] ([Intel XE#2414]) [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-4/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-rotation-270: - shard-bmg: [SKIP][408] ([Intel XE#2423]) -> [SKIP][409] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_rotation_crc@primary-rotation-270.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-rotation-90: - shard-bmg: [SKIP][410] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][411] ([Intel XE#2423]) +3 other tests skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_rotation_crc@primary-rotation-90.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][412] ([Intel XE#2423] / [i915#2575]) -> [SKIP][413] ([Intel XE#1127]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-dg2-set2: [SKIP][414] ([Intel XE#455]) -> [SKIP][415] ([Intel XE#2423] / [i915#2575]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_scaling_modes@scaling-mode-full-aspect.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][416] ([Intel XE#1435]) -> [SKIP][417] ([Intel XE#2423]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][418] ([Intel XE#1500]) -> [SKIP][419] ([Intel XE#362]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@flip-suspend: - shard-bmg: [SKIP][420] ([Intel XE#2423]) -> [SKIP][421] ([Intel XE#1499]) +2 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_vrr@flip-suspend.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-bmg: [SKIP][422] ([Intel XE#1499]) -> [SKIP][423] ([Intel XE#2423]) +1 other test skip [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_vrr@seamless-rr-switch-vrr.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][424] ([Intel XE#3007]) -> [SKIP][425] ([Intel XE#756]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_writeback@writeback-invalid-parameters.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-8/igt at kms_writeback@writeback-invalid-parameters.html - shard-dg2-set2: [SKIP][426] ([Intel XE#2423] / [i915#2575]) -> [SKIP][427] ([Intel XE#756]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_writeback@writeback-invalid-parameters.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-463/igt at kms_writeback@writeback-invalid-parameters.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][428] ([Intel XE#1130]) -> [SKIP][429] ([Intel XE#1280] / [Intel XE#455]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_compute_preempt@compute-preempt-many.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][430] ([Intel XE#1126]) -> [SKIP][431] ([Intel XE#1130]) [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at xe_copy_basic@mem-set-linear-0x3fff.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0x3fff.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][432] ([Intel XE#1130]) -> [SKIP][433] ([Intel XE#3889]) +1 other test skip [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-5/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][434] ([Intel XE#1130]) -> [SKIP][435] ([Intel XE#2905]) +13 other tests skip [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html - shard-dg2-set2: [SKIP][436] ([Intel XE#1130]) -> [SKIP][437] ([Intel XE#2905]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-463/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-bmg: [SKIP][438] ([Intel XE#3889]) -> [SKIP][439] ([Intel XE#1130]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug_online@breakpoint-many-sessions-single-tile: - shard-dg2-set2: [SKIP][440] ([Intel XE#2905]) -> [SKIP][441] ([Intel XE#1130]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at xe_eudebug_online@breakpoint-many-sessions-single-tile.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at xe_eudebug_online@breakpoint-many-sessions-single-tile.html * igt at xe_eudebug_online@single-step-one: - shard-bmg: [SKIP][442] ([Intel XE#2905]) -> [SKIP][443] ([Intel XE#1130]) +14 other tests skip [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at xe_eudebug_online@single-step-one.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at xe_eudebug_online@single-step-one.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][444] ([Intel XE#2322]) -> [SKIP][445] ([Intel XE#1130]) +16 other tests skip [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][446] ([Intel XE#1130]) -> [SKIP][447] ([Intel XE#2322]) +12 other tests skip [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_exec_basic@multigpu-once-null-rebind.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-4/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@once-userptr-invalidate: - shard-dg2-set2: [SKIP][448] ([Intel XE#288]) -> [SKIP][449] ([Intel XE#1130]) +2 other tests skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at xe_exec_fault_mode@once-userptr-invalidate.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at xe_exec_fault_mode@once-userptr-invalidate.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][450] ([Intel XE#2833]) -> [SKIP][451] ([Intel XE#1192]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at xe_live_ktest@xe_eudebug.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at xe_live_ktest@xe_eudebug.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][452] ([Intel XE#1130]) -> [SKIP][453] ([Intel XE#2459] / [Intel XE#2596]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_media_fill@media-fill.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at xe_media_fill@media-fill.html * igt at xe_mmap@small-bar: - shard-bmg: [SKIP][454] ([Intel XE#1130]) -> [SKIP][455] ([Intel XE#586]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_mmap@small-bar.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-2/igt at xe_mmap@small-bar.html * igt at xe_oa@enable-disable: - shard-dg2-set2: [SKIP][456] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][457] ([Intel XE#1130]) +1 other test skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_oa@enable-disable.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at xe_oa@enable-disable.html * igt at xe_oa@syncs-ufence-wait-cfg: - shard-dg2-set2: [SKIP][458] ([Intel XE#1130]) -> [SKIP][459] ([Intel XE#2541] / [Intel XE#3573]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_oa@syncs-ufence-wait-cfg.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-dg2-436/igt at xe_oa@syncs-ufence-wait-cfg.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][460] ([Intel XE#1420]) -> [SKIP][461] ([Intel XE#1130]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at xe_pat@pat-index-xehpc.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mocs: - shard-bmg: [SKIP][462] ([Intel XE#2284]) -> [SKIP][463] ([Intel XE#1130]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at xe_pm@d3cold-mocs.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-1/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: [SKIP][464] ([Intel XE#1130]) -> [SKIP][465] ([Intel XE#2284]) +4 other tests skip [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_pm@s2idle-d3cold-basic-exec.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-6/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_query@multigpu-query-config: - shard-bmg: [SKIP][466] ([Intel XE#944]) -> [SKIP][467] ([Intel XE#1130]) +3 other tests skip [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at xe_query@multigpu-query-config.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at xe_query@multigpu-query-config.html * igt at xe_query@multigpu-query-mem-usage: - shard-bmg: [SKIP][468] ([Intel XE#1130]) -> [SKIP][469] ([Intel XE#944]) +4 other tests skip [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_query@multigpu-query-mem-usage.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-3/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_wedged@wedged-mode-toggle: - shard-bmg: [ABORT][470] ([Intel XE#3084]) -> [SKIP][471] ([Intel XE#1130]) [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at xe_wedged@wedged-mode-toggle.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/shard-bmg-7/igt at xe_wedged@wedged-mode-toggle.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#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#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#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#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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [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#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [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#2771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2771 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [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#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010 [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#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [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#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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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_8198 -> IGTPW_12456 * Linux: xe-2508-9033a16532f74ae36c48d729d0855a6e189039df -> xe-2510-4fc988de9f5e17d19edb5fc0a0fbc15a8fc837f4 IGTPW_12456: 12456 IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2508-9033a16532f74ae36c48d729d0855a6e189039df: 9033a16532f74ae36c48d729d0855a6e189039df xe-2510-4fc988de9f5e17d19edb5fc0a0fbc15a8fc837f4: 4fc988de9f5e17d19edb5fc0a0fbc15a8fc837f4 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12456/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 18 13:21:01 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 18 Jan 2025 13:21:01 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/perf=5Fpmu=3A_Fix_?= =?utf-8?q?busy-double-start_for_GuC_backend?= In-Reply-To: <20250116225200.158728-1-umesh.nerlige.ramappa@intel.com> References: <20250116225200.158728-1-umesh.nerlige.ramappa@intel.com> Message-ID: <173720646146.1151079.13412972186721659609@b555e5b46a47> == Series Details == Series: tests/perf_pmu: Fix busy-double-start for GuC backend URL : https://patchwork.freedesktop.org/series/143637/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15972_full -> IGTPW_12452_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12452_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12452_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_12452/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12452_full: ### IGT changes ### #### Possible regressions #### * igt at kms_chamelium_color@ctm-limited-range: - shard-glk: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk9/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_pm_rpm@fences-dpms: - shard-rkl: [PASS][2] -> [SKIP][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-7/igt at kms_pm_rpm@fences-dpms.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-5/igt at kms_pm_rpm@fences-dpms.html * igt at kms_psr@psr2-primary-mmap-cpu: - shard-mtlp: [PASS][4] -> [FAIL][5] +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-mtlp-8/igt at kms_psr@psr2-primary-mmap-cpu.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-7/igt at kms_psr@psr2-primary-mmap-cpu.html Known issues ------------ Here are the changes found in IGTPW_12452_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-2/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@crc32: - shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#6230]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at api_intel_bb@crc32.html * igt at api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#8411]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-2/igt at api_intel_bb@object-reloc-keep-cache.html * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-13/igt at api_intel_bb@object-reloc-purge-cache.html * igt at device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-17/igt at device_reset@cold-reset-bound.html - shard-tglu: NOTRUN -> [SKIP][11] ([i915#11078]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-2/igt at device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][12] ([i915#11078]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][13] ([i915#11078]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-4/igt at device_reset@cold-reset-bound.html * igt at drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-2/igt at drm_fdinfo@all-busy-check-all.html * igt at drm_fdinfo@busy-idle at bcs0: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +17 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-10/igt at drm_fdinfo@busy-idle at bcs0.html * igt at drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#8414]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at drm_fdinfo@virtual-busy-hang.html * igt at gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#3936]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-8/igt at gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#3936]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-8/igt at gem_busy@semaphore.html * igt at gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-1/igt at gem_ccs@ctrl-surf-copy-new-ctx.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-18/igt at gem_ccs@ctrl-surf-copy-new-ctx.html - shard-tglu: NOTRUN -> [SKIP][22] ([i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-6/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_close_race@multigpu-basic-process: - shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#7697]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at gem_close_race@multigpu-basic-process.html * igt at gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-2/igt at gem_ctx_persistence@heartbeat-stop.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-snb7/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-5/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-14/igt at gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][29] ([i915#280]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-4/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@hibernate: - shard-tglu: [PASS][30] -> [ABORT][31] ([i915#10030] / [i915#7975] / [i915#8213]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-4/igt at gem_eio@hibernate.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-10/igt at gem_eio@hibernate.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][32] ([i915#13390]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk3/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@kms: - shard-dg1: NOTRUN -> [FAIL][33] ([i915#5784]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-17/igt at gem_eio@kms.html * igt at gem_eio@unwedge-stress: - shard-dg1: [PASS][34] -> [FAIL][35] ([i915#12714] / [i915#5784]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg1-18/igt at gem_eio@unwedge-stress.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-18/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4812]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at gem_exec_balancer@bonded-semaphore.html * igt at gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4771]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-10/igt at gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4771]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-13/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@noheartbeat: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#8555]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [SKIP][40] ([i915#4525]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-7/igt at gem_exec_balancer@parallel-ordering.html * igt at gem_exec_capture@capture-invisible: - shard-tglu: NOTRUN -> [SKIP][41] ([i915#6334]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-4/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-5/igt at gem_exec_fence@submit67.html * igt at gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-14/igt at gem_exec_flush@basic-batch-kernel-default-cmd.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-7/igt at gem_exec_flush@basic-uc-set-default.html - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3539]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-13/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-8/igt at gem_exec_flush@basic-wb-prw-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#5107]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-2/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +9 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-10/igt at gem_exec_reloc@basic-active.html * igt at gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-6/igt at gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt at gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +14 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at gem_exec_reloc@basic-write-gtt-active.html * igt at gem_exec_reloc@basic-write-gtt-noreloc: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#3281]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-1/igt at gem_exec_reloc@basic-write-gtt-noreloc.html * igt at gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-7/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][53] ([i915#7975] / [i915#8213]) +1 other test abort [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-1/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4860]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-1/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4860]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-18/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4860]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-6/igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt at gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][57] ([i915#2190]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk7/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613] / [i915#7582]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-3/igt at gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613] / [i915#7582]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-4/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#12193]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4565]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: NOTRUN -> [TIMEOUT][62] ([i915#5493]) +1 other test timeout [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-18/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][63] ([i915#4613]) +5 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk5/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-8/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_media_vme: - shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#284]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at gem_media_vme.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4077]) +16 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-2/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@coherency: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4077]) +14 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-13/igt at gem_mmap_gtt@coherency.html * igt at gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4077]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-6/igt at gem_mmap_gtt@cpuset-medium-copy.html * igt at gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4083]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at gem_mmap_wc@copy.html * igt at gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4083]) +6 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-13/igt at gem_mmap_wc@write-read.html * igt at gem_mmap_wc@write-wc-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4083]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-4/igt at gem_mmap_wc@write-wc-read-gtt.html * igt at gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) +8 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-5/igt at gem_partial_pwrite_pread@reads.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) +6 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-14/igt at gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][74] ([i915#2658]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-7/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-snb4/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4270]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-3/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4270]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-13/igt at gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt at gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8428]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-4/igt at gem_render_copy@linear-to-vebox-y-tiled.html * igt at gem_render_copy@y-tiled-ccs-to-linear: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#5190] / [i915#8428]) +9 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-1/igt at gem_render_copy@y-tiled-ccs-to-linear.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4079]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-18/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4079]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-5/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#3282]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-7/igt at gem_set_tiling_vs_pwrite.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4885]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-10/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4079]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-3/igt at gem_tiled_pread_basic.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][85] ([i915#13263] / [i915#13449]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-snb5/igt at gem_tiled_swapping@non-threaded.html * igt at gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4879]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at gem_unfence_active_buffers.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4880]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-2/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4880]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-18/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-8/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#3297]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-4/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#3297]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-17/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-2/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3297]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-3/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_workarounds@suspend-resume: - shard-glk: [PASS][95] -> [INCOMPLETE][96] ([i915#13356]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-glk6/igt at gem_workarounds@suspend-resume.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk2/igt at gem_workarounds@suspend-resume.html * igt at gen7_exec_parse@basic-allocation: - shard-mtlp: NOTRUN -> [SKIP][97] +5 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-5/igt at gen7_exec_parse@basic-allocation.html * igt at gen9_exec_parse@bb-chained: - shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#2527]) +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-14/igt at gen9_exec_parse@bb-start-cmd.html - shard-tglu: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-7/igt at gen9_exec_parse@bb-start-cmd.html - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#2856]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-1/igt at gen9_exec_parse@bb-start-cmd.html - shard-rkl: NOTRUN -> [SKIP][102] ([i915#2527]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-6/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#2856]) +6 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-5/igt at gen9_exec_parse@shadow-peek.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [ABORT][104] ([i915#9820]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-3/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#11681] / [i915#6621]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-13/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#11681] / [i915#6621]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@min-max-config-loaded: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#11681] / [i915#6621]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-3/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#11681]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-5/igt at i915_pm_rps@thresholds.html * igt at i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#4387]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-18/igt at i915_pm_sseu@full-enable.html * igt at i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#6245]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-10/igt at i915_query@hwconfig_table.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#6188]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-10/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_query@test-query-geometry-subslices: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#5723]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-9/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][113] ([i915#9311]) +1 other test dmesg-warn [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-snb1/igt at i915_selftest@mock.html - shard-glk: NOTRUN -> [DMESG-WARN][114] ([i915#1982] / [i915#9311]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk5/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][115] ([i915#9311]) +1 other test dmesg-warn [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at i915_selftest@mock at memory_region.html - shard-glk: NOTRUN -> [DMESG-WARN][116] ([i915#9311]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk5/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s3-without-i915: - shard-tglu-1: NOTRUN -> [INCOMPLETE][117] ([i915#7443]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at i915_suspend@basic-s3-without-i915.html * igt at intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#7707]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-5/igt at intel_hwmon@hwmon-read.html - shard-tglu: NOTRUN -> [SKIP][119] ([i915#7707]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-4/igt at intel_hwmon@hwmon-read.html - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#7707]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-4/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#4212]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-1/igt at kms_addfb_basic@basic-x-tiled-legacy.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#4215] / [i915#5190]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-3/igt at kms_addfb_basic@basic-y-tiled-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_12452/shard-dg1-17/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4212]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-3/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][125] ([i915#12454] / [i915#12712]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][126] ([i915#12761] / [i915#1982]) +1 other test incomplete [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk3/igt at kms_async_flips@async-flip-suspend-resume.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][127] ([i915#8709]) +15 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-18/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@crc: - shard-rkl: [PASS][128] -> [DMESG-WARN][129] ([i915#12964]) +39 other tests dmesg-warn [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-2/igt at kms_async_flips@crc.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-5/igt at kms_async_flips@crc.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#12967] / [i915#6228]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-10/igt at kms_async_flips@invalid-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#12967] / [i915#6228]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-8/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#9531]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-17/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][133] ([i915#1769]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk4/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][134] ([i915#1769] / [i915#3555]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-17/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1: - shard-mtlp: [PASS][135] -> [FAIL][136] ([i915#11808] / [i915#5956]) +1 other test fail [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-mtlp-4/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels at pipe-a-edp-1.html * igt at kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#5286]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-2/igt at kms_big_fb@4-tiled-addfb.html - shard-dg1: NOTRUN -> [SKIP][138] ([i915#5286]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#5286]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#4538] / [i915#5286]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-13/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: NOTRUN -> [SKIP][141] ([i915#5286]) +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-9/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#3638]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#3638]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-3/igt at kms_big_fb@x-tiled-8bpp-rotate-270.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_12452/shard-dg2-10/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][145] ([i915#4538] / [i915#5190]) +18 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/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-addfb: - shard-rkl: NOTRUN -> [SKIP][146] +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-2/igt at kms_big_fb@yf-tiled-addfb.html - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6187]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-6/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#4538]) +6 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-13/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#10307] / [i915#6095]) +116 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#6095]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-2/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-edp-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#6095]) +74 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-6/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][152] ([i915#6095]) +74 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/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-rotation-180-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#12313]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][154] ([i915#12313]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-2/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#12313]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#12805]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][157] ([i915#12805]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-17/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-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#6095]) +13 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/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 at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][159] ([i915#12796]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk6/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-dg2-rc-ccs-cc at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#6095]) +19 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#12313]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-5/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#6095]) +191 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-13/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 at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][164] +447 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk2/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc at pipe-c-hdmi-a-2.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#3742]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +6 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-14/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_color@ctm-0-50: - shard-tglu-1: NOTRUN -> [SKIP][167] +35 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +7 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-2/igt at kms_chamelium_edid@dp-edid-change-during-suspend.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +10 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-1/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_frames@hdmi-crc-fast: - shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_chamelium_frames@hdmi-crc-fast.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +3 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-5/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-4/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.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_12452/shard-rkl-1/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][174] ([i915#7173]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-10/igt at kms_content_protection@atomic-dpms at pipe-a-dp-4.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#3116] / [i915#3299]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-3/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3299]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-3/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#3299]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-17/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@lic-type-0: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#9424]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#7118] / [i915#9424]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-7/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#13049]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-3/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][181] ([i915#13049]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-7/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#3555]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-6/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#13049]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-13/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#8814]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-2/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#3555]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-5/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#13049]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-3/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-sliding-32x10: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#3555]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_cursor_crc@cursor-sliding-32x10.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#13046] / [i915#5354]) +8 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-8/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#9809]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-8/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: NOTRUN -> [FAIL][190] ([i915#2346]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-snb1/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#9067]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-10/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][192] ([i915#4103]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-6/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-dg2: NOTRUN -> [SKIP][193] ([i915#4103] / [i915#4213]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-dg1: NOTRUN -> [SKIP][194] ([i915#4103] / [i915#4213]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-13/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#9833]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-5/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#1257]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-7/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#12402]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-7/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][198] ([i915#12402]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-13/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#8812]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-8/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#3840]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-1/igt at kms_dsc@dsc-fractional-bpp-with-bpc.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_12452/shard-rkl-4/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_12452/shard-dg1-14/igt at kms_dsc@dsc-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#3469]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-7/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#3469]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-4/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#2065] / [i915#4854]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#1839]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-7/igt at kms_feature_discovery@display-3x.html - shard-dg1: NOTRUN -> [SKIP][207] ([i915#1839]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-13/igt at kms_feature_discovery@display-3x.html - shard-tglu: NOTRUN -> [SKIP][208] ([i915#1839]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-2/igt at kms_feature_discovery@display-3x.html - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#1839]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-1/igt at kms_feature_discovery@display-3x.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_12452/shard-tglu-4/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#658]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-1/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-dpms: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#3637]) +5 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-6/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3637]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-4/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#9934]) +2 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-3/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#3637]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_flip@2x-flip-vs-wf_vblank.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible at ab-vga1-hdmi-a1: - shard-snb: [PASS][216] -> [FAIL][217] ([i915#11989]) +1 other test fail [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-snb4/igt at kms_flip@2x-plain-flip-ts-check-interruptible at ab-vga1-hdmi-a1.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-snb4/igt at kms_flip@2x-plain-flip-ts-check-interruptible at ab-vga1-hdmi-a1.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#9934]) +7 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-3/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#9934]) +10 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@blocking-absolute-wf_vblank at a-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][220] ([i915#12964]) +15 other tests dmesg-warn [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-7/igt at kms_flip@blocking-absolute-wf_vblank at a-hdmi-a1.html * igt at kms_flip@blocking-wf_vblank: - shard-glk: NOTRUN -> [FAIL][221] ([i915#11989]) +1 other test fail [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk7/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#8381]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-17/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@plain-flip-ts-check: - shard-rkl: [PASS][223] -> [FAIL][224] ([i915#11989]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-2/igt at kms_flip@plain-flip-ts-check.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-1/igt at kms_flip@plain-flip-ts-check.html - shard-tglu: [PASS][225] -> [FAIL][226] ([i915#11989]) +3 other tests fail [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-3/igt at kms_flip@plain-flip-ts-check.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-6/igt at kms_flip@plain-flip-ts-check.html * igt at kms_flip@plain-flip-ts-check at a-edp1: - shard-mtlp: [PASS][227] -> [FAIL][228] ([i915#11989]) +1 other test fail [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-mtlp-4/igt at kms_flip@plain-flip-ts-check at a-edp1.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-6/igt at kms_flip@plain-flip-ts-check at a-edp1.html * igt at kms_flip@plain-flip-ts-check at a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][229] ([i915#11989]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-1/igt at kms_flip@plain-flip-ts-check at a-hdmi-a2.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#2672]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-2/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-yftile-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#2587] / [i915#2672]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-2/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-5/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#2672]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-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-32bpp-ytileccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#2587] / [i915#2672] / [i915#3555]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-8/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/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-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#8708]) +4 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-8/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [PASS][240] -> [FAIL][241] ([i915#6880]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#5354]) +42 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-snb: [PASS][243] -> [SKIP][244] +4 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-snb4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][245] ([i915#10056] / [i915#13353]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk4/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#10433] / [i915#3458]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#3023]) +10 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#8708]) +25 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#1825]) +7 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][250] +50 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#10055]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-10/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#8708]) +22 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][253] +76 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-9/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#1825]) +14 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-1/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#3458]) +31 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-10/igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#3458]) +25 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-18/igt at kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt at kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@brightness-with-hdr: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#1187] / [i915#12713]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-13/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-5/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#8228]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8228]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-2/igt at kms_hdr@static-toggle.html * igt at kms_joiner@basic-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#10656]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#12388]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-7/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#12339]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-5/igt at kms_joiner@basic-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][265] ([i915#12339]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-3/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#12388]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-14/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#12339]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-4/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#6301]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][269] +18 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-10/igt at kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][270] ([i915#13026]) +1 other test incomplete [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk8/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][271] ([i915#10647] / [i915#12169]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk9/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][272] ([i915#10647]) +1 other test fail [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk9/igt at kms_plane_alpha_blend@alpha-opaque-fb at pipe-a-hdmi-a-1.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#13046] / [i915#5354] / [i915#9423]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-7/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#6953] / [i915#9423]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-7/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#12247]) +17 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-17/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#12247]) +18 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-6/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#3555]) +2 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#12247] / [i915#6953]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-18/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][279] ([i915#12247] / [i915#6953]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-4/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#12247] / [i915#6953]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/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][281] ([i915#12247]) +3 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/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-1: NOTRUN -> [SKIP][282] ([i915#9812]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#9812]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-4/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#9685]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-14/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#9685]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-6/igt at kms_pm_dc@dc5-psr.html - shard-dg2: NOTRUN -> [SKIP][286] ([i915#9685]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#3828]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-2/igt at kms_pm_dc@dc5-retention-flops.html - shard-dg2: NOTRUN -> [SKIP][288] ([i915#3828]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at kms_pm_dc@dc5-retention-flops.html - shard-rkl: NOTRUN -> [SKIP][289] ([i915#3828]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-3/igt at kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][290] ([i915#3828]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-14/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#9340]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-3/igt at kms_pm_lpsp@kms-lpsp.html - shard-tglu: NOTRUN -> [SKIP][292] ([i915#3828]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-5/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg1: NOTRUN -> [SKIP][293] ([i915#9519]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-17/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#9519]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-2/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@drm-resources-equal: - shard-rkl: [PASS][295] -> [SKIP][296] ([i915#12916]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-1/igt at kms_pm_rpm@drm-resources-equal.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-1/igt at kms_pm_rpm@drm-resources-equal.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#9519]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-7/igt at kms_pm_rpm@modeset-lpsp.html - shard-rkl: [PASS][298] -> [SKIP][299] ([i915#9519]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-4/igt at kms_pm_rpm@modeset-lpsp.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-5/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_prime@basic-crc-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][300] ([i915#6524]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#6524] / [i915#6805]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#11520]) +9 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html - shard-tglu: NOTRUN -> [SKIP][303] ([i915#11520]) +7 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-9/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#11520]) +12 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-5/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#9808]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-6/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#12316]) +2 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-6/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf at pipe-b-edp-1.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#11520]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#11520]) +4 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-1/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-glk: NOTRUN -> [SKIP][309] ([i915#11520]) +13 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk7/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-snb: NOTRUN -> [SKIP][310] ([i915#11520]) +13 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-snb7/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#9683]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][312] ([i915#9683]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][313] ([i915#9683]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#1072] / [i915#9732]) +11 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-1/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-pr-sprite-blt: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#1072] / [i915#9732]) +39 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-10/igt at kms_psr@fbc-pr-sprite-blt.html * igt at kms_psr@fbc-pr-sprite-render: - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#9732]) +10 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_psr@fbc-pr-sprite-render.html * igt at kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#9688]) +3 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-7/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][318] ([i915#9732]) +20 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-6/igt at kms_psr@psr2-cursor-plane-onoff.html * igt at kms_psr@psr2-sprite-blt: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#1072] / [i915#9732]) +30 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-18/igt at kms_psr@psr2-sprite-blt.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#12755]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-4/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#12755] / [i915#5190]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#5289]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-3/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][323] ([i915#12755]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-3/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-none: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#3555]) +5 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-5/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][325] ([i915#13179]) +1 other test abort [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_selftest@drm_framebuffer.html - shard-glk: NOTRUN -> [ABORT][326] ([i915#13179]) +1 other test abort [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk4/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@basic: - shard-tglu: [PASS][327] -> [FAIL][328] ([i915#5465]) +2 other tests fail [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-3/igt at kms_setmode@basic.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-2/igt at kms_setmode@basic.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#8623]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-8/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][330] ([i915#12276]) +1 other test incomplete [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk1/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-2.html * igt at kms_vrr@lobf: - shard-dg1: NOTRUN -> [SKIP][331] ([i915#11920]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at kms_vrr@lobf.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#9906]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-5/igt at kms_vrr@seamless-rr-switch-drrs.html - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#8808] / [i915#9906]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-6/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#9906]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-fb-id: - shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#2437]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][336] ([i915#2437] / [i915#9412]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-18/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][337] ([i915#2437] / [i915#9412]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-3/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#2437]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-3/igt at kms_writeback@writeback-invalid-parameters.html - shard-dg2: NOTRUN -> [SKIP][339] ([i915#2437]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-7/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#2437] / [i915#9412]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-3/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#2434]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-8/igt at perf@mi-rpc.html - shard-dg1: NOTRUN -> [SKIP][342] ([i915#2434]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at perf@mi-rpc.html * igt at perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#2435]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-2/igt at perf@per-context-mode-unprivileged.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][344] +448 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-snb7/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@busy-double-start at vcs1: - shard-dg2: NOTRUN -> [FAIL][345] ([i915#4349]) +2 other tests fail [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-3/igt at perf_pmu@busy-double-start at vcs1.html * igt at perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#8850]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-8/igt at perf_pmu@cpu-hotplug.html - shard-tglu: NOTRUN -> [SKIP][347] ([i915#8850]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-2/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@event-wait: - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#8807]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-2/igt at perf_pmu@event-wait.html * igt at perf_pmu@event-wait at rcs0: - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#3555] / [i915#8807]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-2/igt at perf_pmu@event-wait at rcs0.html * igt at perf_pmu@most-busy-check-all: - shard-dg2: NOTRUN -> [FAIL][350] ([i915#11943]) +3 other tests fail [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at perf_pmu@most-busy-check-all.html - shard-rkl: [PASS][351] -> [FAIL][352] ([i915#4349]) +1 other test fail [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-5/igt at perf_pmu@most-busy-check-all.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-3/igt at perf_pmu@most-busy-check-all.html * igt at perf_pmu@most-busy-check-all at bcs0: - shard-mtlp: [PASS][353] -> [FAIL][354] ([i915#11943]) +3 other tests fail [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-mtlp-8/igt at perf_pmu@most-busy-check-all at bcs0.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-2/igt at perf_pmu@most-busy-check-all at bcs0.html * igt at perf_pmu@most-busy-check-all at rcs0: - shard-dg1: [PASS][355] -> [FAIL][356] ([i915#11943]) +5 other tests fail [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg1-18/igt at perf_pmu@most-busy-check-all at rcs0.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-14/igt at perf_pmu@most-busy-check-all at rcs0.html * igt at perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][357] ([i915#13356]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk7/igt at perf_pmu@rc6-suspend.html * igt at perf_pmu@render-node-busy at rcs0: - shard-mtlp: [PASS][358] -> [FAIL][359] ([i915#4349]) +9 other tests fail [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-mtlp-6/igt at perf_pmu@render-node-busy at rcs0.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-8/igt at perf_pmu@render-node-busy at rcs0.html * igt at prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][360] ([i915#9351]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at prime_mmap@test_aperture_limit.html * igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][361] ([i915#9351]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem.html * igt at prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#3708] / [i915#4077]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-2/igt at prime_vgem@basic-fence-mmap.html - shard-dg1: NOTRUN -> [SKIP][363] ([i915#3708] / [i915#4077]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-14/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#3291] / [i915#3708]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-5/igt at prime_vgem@basic-write.html * igt at prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#3708]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-1/igt at prime_vgem@fence-flip-hang.html * igt at sriov_basic@bind-unbind-vf at vf-4: - shard-tglu: NOTRUN -> [FAIL][366] ([i915#12910]) +9 other tests fail [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-2/igt at sriov_basic@bind-unbind-vf at vf-4.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][367] ([i915#12910]) +9 other tests fail [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-1/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][368] ([i915#9917]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at sriov_basic@enable-vfs-autoprobe-on.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg1: NOTRUN -> [SKIP][369] ([i915#9917]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-18/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at sw_sync@sync_multi_producer_single_consumer: - shard-rkl: [PASS][370] -> [DMESG-WARN][371] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-1/igt at sw_sync@sync_multi_producer_single_consumer.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-7/igt at sw_sync@sync_multi_producer_single_consumer.html #### Possible fixes #### * igt at gem_eio@in-flight-internal-immediate: - shard-mtlp: [ABORT][372] -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-mtlp-4/igt at gem_eio@in-flight-internal-immediate.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-3/igt at gem_eio@in-flight-internal-immediate.html * igt at gem_eio@in-flight-suspend: - shard-rkl: [DMESG-WARN][374] ([i915#12964]) -> [PASS][375] +44 other tests pass [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-3/igt at gem_eio@in-flight-suspend.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-5/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@kms: - shard-tglu: [DMESG-WARN][376] ([i915#13363]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-2/igt at gem_eio@kms.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-6/igt at gem_eio@kms.html * igt at gem_eio@reset-stress: - shard-dg1: [FAIL][378] ([i915#12543] / [i915#5784]) -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg1-17/igt at gem_eio@reset-stress.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-13/igt at gem_eio@reset-stress.html * igt at gem_exec_balancer@full-late-pulse: - shard-mtlp: [FAIL][380] ([i915#13364]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-mtlp-8/igt at gem_exec_balancer@full-late-pulse.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-6/igt at gem_exec_balancer@full-late-pulse.html * igt at gem_softpin@noreloc-s3: - shard-tglu: [ABORT][382] ([i915#12817]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-3/igt at gem_softpin@noreloc-s3.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-3/igt at gem_softpin@noreloc-s3.html * igt at i915_module_load@reload-with-fault-injection: - shard-glk: [ABORT][384] ([i915#9820]) -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-glk6/igt at i915_module_load@reload-with-fault-injection.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk9/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_suspend@debugfs-reader: - shard-rkl: [INCOMPLETE][386] ([i915#4817]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-5/igt at i915_suspend@debugfs-reader.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-2/igt at i915_suspend@debugfs-reader.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][388] ([i915#12796]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-glk9/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-glk6/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-snb: [SKIP][390] -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-snb5/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-snb4/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: [FAIL][392] ([i915#11989]) -> [PASS][393] +1 other test pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-snb2/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-snb5/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-rkl: [DMESG-FAIL][394] ([i915#12964]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-1/igt at kms_flip@flip-vs-suspend.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-4/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-mtlp: [FAIL][396] ([i915#11989]) -> [PASS][397] +1 other test pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-mtlp-2/igt at kms_flip@plain-flip-ts-check-interruptible.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-1/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip@wf_vblank-ts-check-interruptible at a-hdmi-a1: - shard-tglu: [FAIL][398] ([i915#11989]) -> [PASS][399] +4 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-5/igt at kms_flip@wf_vblank-ts-check-interruptible at a-hdmi-a1.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-9/igt at kms_flip@wf_vblank-ts-check-interruptible at a-hdmi-a1.html * igt at kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-rkl: [DMESG-WARN][400] ([i915#12917] / [i915#12964]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-5/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-2/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][402] ([i915#9295]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-8/igt at kms_pm_dc@dc6-dpms.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-3/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg2: [SKIP][404] ([i915#9519]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg2-5/igt at kms_pm_rpm@dpms-lpsp.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][406] ([i915#9519]) -> [PASS][407] +2 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-6/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_vblank@ts-continuation-suspend: - shard-rkl: [INCOMPLETE][408] -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-5/igt at kms_vblank@ts-continuation-suspend.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-7/igt at kms_vblank@ts-continuation-suspend.html * igt at perf_pmu@busy-double-start: - shard-mtlp: [FAIL][410] ([i915#4349]) -> [PASS][411] +2 other tests pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-mtlp-3/igt at perf_pmu@busy-double-start.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-7/igt at perf_pmu@busy-double-start.html #### Warnings #### * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][412] ([i915#9820]) -> [DMESG-WARN][413] ([i915#13475]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg1-12/igt at i915_module_load@reload-with-fault-injection.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-12/igt at i915_module_load@reload-with-fault-injection.html - shard-tglu: [ABORT][414] ([i915#10887] / [i915#12817] / [i915#9820]) -> [ABORT][415] ([i915#12817] / [i915#9820]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-9/igt at i915_module_load@reload-with-fault-injection.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-6/igt at i915_module_load@reload-with-fault-injection.html - shard-mtlp: [DMESG-WARN][416] ([i915#13475]) -> [ABORT][417] ([i915#10131] / [i915#10887] / [i915#13493] / [i915#9820]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-mtlp-5/igt at i915_module_load@reload-with-fault-injection.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-2/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rpm@gem-execbuf-stress: - shard-rkl: [SKIP][418] ([i915#13328]) -> [DMESG-WARN][419] ([i915#12964]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-6/igt at i915_pm_rpm@gem-execbuf-stress.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-5/igt at i915_pm_rpm@gem-execbuf-stress.html * igt at kms_content_protection@atomic-dpms: - shard-dg2: [SKIP][420] ([i915#7118] / [i915#9424]) -> [TIMEOUT][421] ([i915#7173]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg2-7/igt at kms_content_protection@atomic-dpms.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-10/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg1: [SKIP][422] ([i915#3299]) -> [SKIP][423] ([i915#3299] / [i915#4423]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg1-12/igt at kms_content_protection@dp-mst-lic-type-0.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-18/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][424] ([i915#3458]) -> [SKIP][425] ([i915#10433] / [i915#3458]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg2-7/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt at kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][426] ([i915#12713]) -> [SKIP][427] ([i915#1187] / [i915#12713]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-mtlp-6/igt at kms_hdr@brightness-with-hdr.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-mtlp-1/igt at kms_hdr@brightness-with-hdr.html - shard-tglu: [SKIP][428] ([i915#12713]) -> [SKIP][429] ([i915#1187] / [i915#12713]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-5/igt at kms_hdr@brightness-with-hdr.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-tglu-2/igt at kms_hdr@brightness-with-hdr.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][430] ([i915#4816]) -> [SKIP][431] ([i915#4070] / [i915#4816]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-2/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][432] ([i915#9340]) -> [SKIP][433] ([i915#3828]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-1/igt at kms_pm_lpsp@kms-lpsp.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-7/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][434] ([i915#12916]) -> [SKIP][435] ([i915#9519]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-4/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-rkl-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-dg1: [SKIP][436] ([i915#11520] / [i915#4423]) -> [SKIP][437] ([i915#11520]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg1-13/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/shard-dg1-17/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030 [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12452/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 18 13:46:53 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 18 Jan 2025 13:46:53 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Foa=3A_E?= =?utf-8?q?xtend_non-zero-reason_test?= In-Reply-To: <20250117005424.3038122-1-ashutosh.dixit@intel.com> References: <20250117005424.3038122-1-ashutosh.dixit@intel.com> Message-ID: <173720801328.1172550.12735180422805750683@b555e5b46a47> == Series Details == Series: tests/intel/xe_oa: Extend non-zero-reason test URL : https://patchwork.freedesktop.org/series/143640/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15972_full -> IGTPW_12453_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12453_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12453_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_12453/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12453_full: ### IGT changes ### #### Possible regressions #### * igt at gem_tiled_swapping@non-threaded: - shard-tglu: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-6/igt at gem_tiled_swapping@non-threaded.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-3/igt at gem_tiled_swapping@non-threaded.html Known issues ------------ Here are the changes found in IGTPW_12453_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-17/igt at api_intel_bb@blit-reloc-keep-cache.html * igt at api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-5/igt at api_intel_bb@object-reloc-keep-cache.html * igt at device_reset@cold-reset-bound: - shard-tglu-1: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at device_reset@cold-reset-bound.html - shard-dg1: NOTRUN -> [SKIP][6] ([i915#11078]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-17/igt at device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-5/igt at device_reset@cold-reset-bound.html * igt at device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-7/igt at drm_fdinfo@all-busy-check-all.html * igt at drm_fdinfo@virtual-busy-all: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-1/igt at drm_fdinfo@virtual-busy-all.html * igt at drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-13/igt at drm_fdinfo@virtual-busy-hang.html * igt at gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-13/igt at gem_basic@multigpu-create-close.html * igt at gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#3936]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-7/igt at gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3936]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-3/igt at gem_busy@semaphore.html * igt at gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-8/igt at gem_ccs@ctrl-surf-copy-new-ctx.html * igt at gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-7/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][18] -> [INCOMPLETE][19] ([i915#12392] / [i915#7297]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg2-7/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-5/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html * igt at gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-6/igt at gem_close_race@multigpu-basic-process.html * igt at gem_ctx_persistence@engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][21] ([i915#1099]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-snb5/igt at gem_ctx_persistence@engines-hostile-preempt.html * igt at gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-8/igt at gem_ctx_persistence@heartbeat-hang.html * igt at gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-7/igt at gem_ctx_sseu@invalid-sseu.html - shard-dg1: NOTRUN -> [SKIP][24] ([i915#280]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-18/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#280]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][26] ([i915#280]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-4/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][27] ([i915#13197] / [i915#13390]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk7/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][28] ([i915#8898]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-snb7/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@noheartbeat: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#8555]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-18/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel-contexts: - shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#4525]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at gem_exec_balancer@parallel-contexts.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-5/igt at gem_exec_balancer@parallel-keep-submit-fence.html - shard-tglu: NOTRUN -> [SKIP][32] ([i915#4525]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-9/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at gem_exec_fence@submit67.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-3/igt at gem_exec_flush@basic-uc-set-default.html - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/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][36] ([i915#3539] / [i915#4852]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-7/igt at gem_exec_flush@basic-wb-ro-before-default.html - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-18/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-7/igt at gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt at gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +8 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/igt at gem_exec_reloc@basic-gtt-read.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3281]) +16 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-17/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_reloc@basic-write-gtt-noreloc: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-1/igt at gem_exec_reloc@basic-write-gtt-noreloc.html * igt at gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4812]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-13/igt at gem_exec_schedule@preempt-queue.html * igt at gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][44] ([i915#7975] / [i915#8213]) +1 other test abort [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-3/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: [PASS][45] -> [ABORT][46] ([i915#7975] / [i915#8213]) +1 other test abort [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg1-12/igt at gem_exec_suspend@basic-s4-devices at lmem0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4860]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-17/igt at gem_fenced_exec_thrash@no-spare-fences-busy.html * igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4860]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-8/igt at gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt at gem_fenced_exec_thrash@too-many-fences: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4860]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at gem_fenced_exec_thrash@too-many-fences.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#12193]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4565]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0.html * igt at gem_lmem_swapping@massive-random: - shard-glk: NOTRUN -> [SKIP][52] ([i915#4613]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk2/igt at gem_lmem_swapping@massive-random.html - shard-rkl: NOTRUN -> [SKIP][53] ([i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-6/igt at gem_lmem_swapping@massive-random.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-tglu-1: NOTRUN -> [SKIP][54] ([i915#4613]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg1: NOTRUN -> [TIMEOUT][55] ([i915#5493]) +1 other test timeout [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-2/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#284]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/igt at gem_media_vme.html * igt at gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4083]) +5 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-14/igt at gem_mmap@bad-object.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4077]) +12 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@coherency: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4077]) +16 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-18/igt at gem_mmap_gtt@coherency.html * igt at gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4077]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-3/igt at gem_mmap_gtt@cpuset-medium-copy.html * igt at gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4083]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at gem_mmap_wc@copy.html * igt at gem_mmap_wc@write-wc-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4083]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-7/igt at gem_mmap_wc@write-wc-read-gtt.html * igt at gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-18/igt at gem_partial_pwrite_pread@reads-snoop.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-3/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][66] ([i915#2658]) +1 other test warn [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-snb4/igt at gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][67] ([i915#2658]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-4/igt at gem_pread@exhaustion.html * igt at gem_pxp@display-protected-crc: - shard-rkl: NOTRUN -> [TIMEOUT][68] ([i915#12917] / [i915#12964]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-5/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4270]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at gem_pxp@protected-raw-src-copy-not-readible.html * igt at gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4270]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-13/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt at gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#8428]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-7/igt at gem_render_copy@linear-to-vebox-y-tiled.html * igt at gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][72] +368 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk5/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][73] ([i915#5190] / [i915#8428]) +6 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-2/igt at gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4079]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-17/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3282]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-5/igt at gem_set_tiling_vs_pwrite.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4885]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4079]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-6/igt at gem_tiled_pread_basic.html - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4079]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at gem_tiled_pread_basic.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-8/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4880]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-14/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#4880]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-5/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#3297]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-3/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3297]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-18/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][84] ([i915#3297]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-5/igt at gem_userptr_blits@unsync-unmap-cycles.html - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3297]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-5/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gen7_exec_parse@basic-allocation: - shard-mtlp: NOTRUN -> [SKIP][86] +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-5/igt at gen7_exec_parse@basic-allocation.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#2527]) +6 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at gen9_exec_parse@bb-start-cmd.html - shard-tglu: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-9/igt at gen9_exec_parse@bb-start-cmd.html - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-4/igt at gen9_exec_parse@bb-start-cmd.html - shard-rkl: NOTRUN -> [SKIP][90] ([i915#2527]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-5/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#2856]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at gen9_exec_parse@shadow-peek.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#4881]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-8/igt at i915_fb_tiling.html * igt at i915_pm_freq_api@freq-reset-multiple: - shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#8399]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at i915_pm_freq_api@freq-reset-multiple.html * igt at i915_pm_rpm@reg-read-ioctl: - shard-rkl: [PASS][94] -> [SKIP][95] ([i915#13328]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-3/igt at i915_pm_rpm@reg-read-ioctl.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-5/igt at i915_pm_rpm@reg-read-ioctl.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#11681] / [i915#6621]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#11681] / [i915#6621]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-2/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@min-max-config-loaded: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#11681] / [i915#6621]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-2/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#6245]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-5/igt at i915_query@hwconfig_table.html * igt at i915_query@test-query-geometry-subslices: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#5723]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-2/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][101] ([i915#9311]) +1 other test dmesg-warn [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-snb7/igt at i915_selftest@mock.html - shard-glk: NOTRUN -> [DMESG-WARN][102] ([i915#1982] / [i915#9311]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk2/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-glk: NOTRUN -> [DMESG-WARN][103] ([i915#9311]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk2/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s3-without-i915: - shard-glk: NOTRUN -> [INCOMPLETE][104] ([i915#4817]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk8/igt at i915_suspend@basic-s3-without-i915.html * igt at intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#7707]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-7/igt at intel_hwmon@hwmon-read.html - shard-tglu: NOTRUN -> [SKIP][106] ([i915#7707]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-7/igt at intel_hwmon@hwmon-read.html - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#7707]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-7/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#4212]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at kms_addfb_basic@addfb25-x-tiled-legacy.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#4212]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-13/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#4212]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-7/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][111] ([i915#12454] / [i915#12712]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/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-hdmi-a-1-y-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#8709]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/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-atomic at pipe-a-hdmi-a-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#8709]) +7 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-14/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@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#12967] / [i915#6228]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-2/igt at kms_async_flips@invalid-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#12967] / [i915#6228]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-1/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-glk: [PASS][116] -> [FAIL][117] ([i915#12238]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-glk4/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk8/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt at kms_atomic_transition@modeset-transition-nonblocking-fencing at 2x-outputs: - shard-glk: [PASS][118] -> [FAIL][119] ([i915#11859]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-glk4/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing at 2x-outputs.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk8/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing at 2x-outputs.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [PASS][120] -> [FAIL][121] ([i915#11808]) +1 other test fail [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-9/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-4/igt at kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#1769] / [i915#3555]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#5286]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-4/igt at kms_big_fb@4-tiled-addfb.html - shard-dg1: NOTRUN -> [SKIP][124] ([i915#5286]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-13/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#5286]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][126] -> [FAIL][127] ([i915#5138]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-mtlp-3/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-8/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5286]) +4 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-17/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html - shard-tglu: NOTRUN -> [SKIP][129] ([i915#5286]) +5 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-5/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][130] ([i915#3638]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#3638]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-2/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5190]) +12 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6187]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-8/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538]) +6 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#12313]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-2/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6095]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-2/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-edp-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#6095]) +69 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-8/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][139] ([i915#6095]) +76 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/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-rotation-180-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#12313]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-4/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#12313]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-5/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#12805]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs at pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#10307] / [i915#6095]) +93 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#6095]) +49 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#12313]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-2/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][146] ([i915#12313]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#6095]) +174 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-13/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-3.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#3742]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-6/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][149] +47 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +8 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/igt at kms_chamelium_frames@hdmi-crc-fast.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-8/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-2/igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@vga-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +6 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at kms_chamelium_hpd@vga-hpd-fast.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +6 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-5/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#9979]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_color@deep-color.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#3116] / [i915#3299]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-10/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3299]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-1/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][159] ([i915#3299]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#3299]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-18/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@lic-type-0: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-17/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#7118]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-7/igt at kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][163] ([i915#7116]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-14/igt at kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][164] ([i915#6944] / [i915#7116] / [i915#7118]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-10/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#7118] / [i915#9424]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-2/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#3555]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-6/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#3555]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-5/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#13049]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_cursor_crc@cursor-random-512x170.html - shard-dg1: NOTRUN -> [SKIP][169] ([i915#13049]) +3 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/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][170] ([i915#8814]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-1/igt at kms_cursor_crc@cursor-rapid-movement-256x85.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3555]) +7 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#13049]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-7/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [PASS][173] -> [DMESG-WARN][174] ([i915#12917] / [i915#12964]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-5/igt at kms_cursor_crc@cursor-sliding-256x85.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-5/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][175] +7 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-4/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#13046] / [i915#5354]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-flip-before-cursor-varying-size: - shard-glk: [PASS][177] -> [FAIL][178] ([i915#2346]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-glk9/igt at kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk8/igt at kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#9809]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-5/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#4103]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-2/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-rkl: NOTRUN -> [SKIP][181] ([i915#4103]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-4/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-dg2: NOTRUN -> [SKIP][182] ([i915#4103] / [i915#4213]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-2/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#4103]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#4103] / [i915#4213]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-17/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][185] ([i915#2346]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk8/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#9833]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3555]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#1257]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-7/igt at kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][189] ([i915#1257]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-18/igt at kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][190] ([i915#1257]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-9/igt at kms_dp_aux_dev.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#3840]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-5/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#3840]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-1/igt at kms_dsc@dsc-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-1/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#3840] / [i915#9053]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-2/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#3469]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-2/igt at kms_fbcon_fbt@psr.html - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3469]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#3469]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-5/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#2065] / [i915#4854]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#1839]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-8/igt at kms_feature_discovery@display-3x.html - shard-tglu: NOTRUN -> [SKIP][201] ([i915#1839]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-8/igt at kms_feature_discovery@display-3x.html - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#1839]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-8/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#1839]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#658]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-6/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [FAIL][205] ([i915#11989]) +1 other test fail [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-snb7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@2x-flip-vs-dpms: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#3637]) +4 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-9/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3637]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-1/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#8381]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-18/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#9934]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-7/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#9934]) +8 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-3/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][211] ([i915#12745] / [i915#4839]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/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: NOTRUN -> [INCOMPLETE][212] ([i915#4839]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk9/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-plain-flip: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#3637]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#9934]) +6 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-17/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][215] ([i915#11989]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-5/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at a-hdmi-a2.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at c-hdmi-a1: - shard-tglu: [PASS][216] -> [FAIL][217] ([i915#11989]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-9/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at c-hdmi-a1.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-3/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at c-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check at b-hdmi-a2: - shard-rkl: NOTRUN -> [DMESG-WARN][218] ([i915#12964]) +9 other tests dmesg-warn [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-3/igt at kms_flip@plain-flip-ts-check at b-hdmi-a2.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#2672]) +5 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-5/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-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#2587] / [i915#2672]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-9/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555]) +5 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-4/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling at pipe-a-valid-mode: - shard-rkl: [PASS][222] -> [DMESG-WARN][223] ([i915#12964]) +61 other tests dmesg-warn [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling at pipe-a-valid-mode.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#2672]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-2/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-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#2587] / [i915#2672] / [i915#3555]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-17/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#2587] / [i915#2672]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-17/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#2672] / [i915#3555]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-8/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-13/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-2/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-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#8708]) +4 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-snb: [PASS][231] -> [SKIP][232] +4 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-snb2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-snb4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][233] ([i915#10056] / [i915#13353]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk3/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#10055]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-2/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#3458]) +26 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-18/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#8708]) +18 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#1825]) +6 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#3023]) +6 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-7/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#5439]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][240] +32 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][241] ([i915#8708]) +20 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#3458]) +17 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-8/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][243] +82 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#5354]) +30 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#1825]) +13 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#10433] / [i915#3458]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt at kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8228]) +3 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-14/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@brightness-with-hdr: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#12713]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-17/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8228]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-7/igt at kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8228]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-9/igt at kms_hdr@static-toggle.html * igt at kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#10656]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#12388]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-8/igt at kms_joiner@basic-force-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][253] ([i915#12388]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-8/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#12339]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-7/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_panel_fitting@legacy: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#6301]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-17/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][256] +13 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt at kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][257] ([i915#10647] / [i915#12169]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/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][258] ([i915#10647]) +1 other test fail [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk3/igt at kms_plane_alpha_blend@alpha-opaque-fb at pipe-a-hdmi-a-1.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#13046] / [i915#5354] / [i915#9423]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#12247]) +17 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#12247] / [i915#9423]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/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-tglu: NOTRUN -> [SKIP][262] ([i915#12247]) +18 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-5/igt at kms_plane_scaling@plane-downscale-factor-0-25-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][263] ([i915#12247]) +9 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_plane_scaling@plane-scaler-unity-scaling-with-rotation at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#12247] / [i915#6953] / [i915#9423]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][265] ([i915#12247] / [i915#6953]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-14/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][266] ([i915#12247] / [i915#6953]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-10/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][267] ([i915#12247]) +7 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-a.html * igt at kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#9812]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][269] ([i915#9685]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-10/igt at kms_pm_dc@dc5-psr.html - shard-dg2: NOTRUN -> [SKIP][270] ([i915#9685]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#3828]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-6/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#5978]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#9340]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at kms_pm_lpsp@kms-lpsp.html - shard-tglu: NOTRUN -> [SKIP][274] ([i915#3828]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-4/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#9519]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#9519]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-7/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][277] -> [SKIP][278] ([i915#9519]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-3/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-2/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-tglu: NOTRUN -> [SKIP][279] ([i915#9519]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-2/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#9519]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@pm-tiling: - shard-rkl: [PASS][281] -> [SKIP][282] ([i915#12916]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-6/igt at kms_pm_rpm@pm-tiling.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-6/igt at kms_pm_rpm@pm-tiling.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: [PASS][283] -> [INCOMPLETE][284] ([i915#10553]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-glk8/igt at kms_pm_rpm@system-suspend-modeset.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk4/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#11520]) +7 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-4/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][286] ([i915#11520]) +7 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk2/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-dg2: NOTRUN -> [SKIP][287] ([i915#11520]) +9 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#9808]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-5/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf at pipe-a-edp-1.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#12316]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-5/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf at pipe-b-edp-1.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#11520]) +3 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/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-update-sf: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#11520]) +2 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-2/igt at kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#11520]) +8 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/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][293] ([i915#11520]) +12 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-snb5/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#9683]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-3/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][295] ([i915#9683]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-14/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][296] ([i915#9683]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#9683]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-6/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#1072] / [i915#9732]) +10 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-5/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#9688]) +3 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-7/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@psr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#1072] / [i915#9732]) +22 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-8/igt at kms_psr@psr-cursor-mmap-cpu.html * igt at kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#9732]) +22 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-9/igt at kms_psr@psr2-cursor-plane-onoff.html * igt at kms_psr@psr2-primary-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#9732]) +9 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_psr@psr2-primary-mmap-cpu.html * igt at kms_psr@psr2-sprite-blt: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#1072] / [i915#9732]) +27 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-13/igt at kms_psr@psr2-sprite-blt.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][304] ([i915#9685]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-13/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#5190]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#12755]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][307] ([i915#13179]) +1 other test abort [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_selftest@drm_framebuffer.html - shard-glk: NOTRUN -> [ABORT][308] ([i915#13179]) +1 other test abort [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk6/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@basic-clone-single-crtc: - shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#3555]) +2 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_setmode@basic at pipe-a-vga-1-pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][310] ([i915#5465]) +3 other tests fail [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-snb1/igt at kms_setmode@basic at pipe-a-vga-1-pipe-b-hdmi-a-1.html * igt at kms_tiled_display@basic-test-pattern: - shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#8623]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-1/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#8623]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-6/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#9906]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-2/igt at kms_vrr@seamless-rr-switch-drrs.html - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#8808] / [i915#9906]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-1/igt at kms_vrr@seamless-rr-switch-drrs.html - shard-dg2: NOTRUN -> [SKIP][315] ([i915#9906]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-2/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#2437] / [i915#9412]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-2/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][317] ([i915#2437] / [i915#9412]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-17/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][318] ([i915#2437]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-4/igt at kms_writeback@writeback-invalid-parameters.html - shard-dg2: NOTRUN -> [SKIP][319] ([i915#2437]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@mi-rpc: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#2434]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-13/igt at perf@mi-rpc.html * igt at perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#2435]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-4/igt at perf@per-context-mode-unprivileged.html - shard-dg1: NOTRUN -> [SKIP][322] ([i915#2433]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-13/igt at perf@per-context-mode-unprivileged.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][323] +440 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-snb1/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#8850]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at perf_pmu@cpu-hotplug.html - shard-tglu: NOTRUN -> [SKIP][325] ([i915#8850]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-5/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@event-wait: - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#8807]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-8/igt at perf_pmu@event-wait.html * igt at perf_pmu@event-wait at rcs0: - shard-mtlp: NOTRUN -> [SKIP][327] ([i915#3555] / [i915#8807]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-8/igt at perf_pmu@event-wait at rcs0.html * igt at perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][328] ([i915#13356]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk1/igt at perf_pmu@rc6-suspend.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][329] ([i915#8516]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-18/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#3291] / [i915#3708]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-10/igt at prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][331] ([i915#3708]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-18/igt at prime_vgem@basic-write.html * igt at prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#3708]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-2/igt at prime_vgem@fence-flip-hang.html * igt at sriov_basic@bind-unbind-vf at vf-4: - shard-tglu: NOTRUN -> [FAIL][333] ([i915#12910]) +9 other tests fail [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-6/igt at sriov_basic@bind-unbind-vf at vf-4.html * igt at sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#9917]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-8/igt at sriov_basic@enable-vfs-bind-unbind-each.html * igt at tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][335] ([i915#4818]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-18/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at gem_eio@in-flight-internal-immediate: - shard-mtlp: [ABORT][336] -> [PASS][337] [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-mtlp-4/igt at gem_eio@in-flight-internal-immediate.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-3/igt at gem_eio@in-flight-internal-immediate.html * igt at gem_eio@kms: - shard-tglu: [DMESG-WARN][338] ([i915#13363]) -> [PASS][339] [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-2/igt at gem_eio@kms.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-5/igt at gem_eio@kms.html * igt at gem_eio@reset-stress: - shard-dg1: [FAIL][340] ([i915#12543] / [i915#5784]) -> [PASS][341] [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg1-17/igt at gem_eio@reset-stress.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at gem_eio@reset-stress.html * igt at gem_exec_balancer@full-late-pulse: - shard-mtlp: [FAIL][342] ([i915#13364]) -> [PASS][343] [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-mtlp-8/igt at gem_exec_balancer@full-late-pulse.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-2/igt at gem_exec_balancer@full-late-pulse.html - shard-dg1: [FAIL][344] ([i915#13364]) -> [PASS][345] [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg1-18/igt at gem_exec_balancer@full-late-pulse.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at gem_exec_balancer@full-late-pulse.html * igt at gen9_exec_parse@bb-large: - shard-glk: [ABORT][346] -> [PASS][347] [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-glk8/igt at gen9_exec_parse@bb-large.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk4/igt at gen9_exec_parse@bb-large.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][348] ([i915#10887] / [i915#12817] / [i915#9820]) -> [PASS][349] [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-9/igt at i915_module_load@reload-with-fault-injection.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-8/igt at i915_module_load@reload-with-fault-injection.html - shard-glk: [ABORT][350] ([i915#9820]) -> [PASS][351] [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-glk6/igt at i915_module_load@reload-with-fault-injection.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk2/igt at i915_module_load@reload-with-fault-injection.html * igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1: - shard-tglu: [FAIL][352] ([i915#11808]) -> [PASS][353] +1 other test pass [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-9/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-8/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2: [FAIL][354] ([i915#11989]) -> [PASS][355] [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg2-3/igt at kms_flip@flip-vs-blocking-wf-vblank.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1: - shard-tglu: [FAIL][356] ([i915#11989]) -> [PASS][357] +4 other tests pass [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-9/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-5/igt at kms_flip@flip-vs-blocking-wf-vblank at a-hdmi-a1.html * igt at kms_flip@flip-vs-suspend: - shard-rkl: [DMESG-FAIL][358] ([i915#12964]) -> [PASS][359] [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-1/igt at kms_flip@flip-vs-suspend.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-7/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-mtlp: [FAIL][360] ([i915#11989]) -> [PASS][361] +1 other test pass [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-mtlp-2/igt at kms_flip@plain-flip-ts-check-interruptible.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-8/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip_tiling@flip-change-tiling: - shard-rkl: [DMESG-WARN][362] ([i915#12917] / [i915#12964]) -> [PASS][363] +2 other tests pass [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-2/igt at kms_flip_tiling@flip-change-tiling.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-3/igt at kms_flip_tiling@flip-change-tiling.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt: - shard-snb: [SKIP][364] -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-snb1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_plane_alpha_blend@constant-alpha-mid: - shard-rkl: [DMESG-WARN][366] ([i915#12964]) -> [PASS][367] +38 other tests pass [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-7/igt at kms_plane_alpha_blend@constant-alpha-mid.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-4/igt at kms_plane_alpha_blend@constant-alpha-mid.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][368] ([i915#9295]) -> [PASS][369] [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-tglu-8/igt at kms_pm_dc@dc6-dpms.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-tglu-5/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][370] ([i915#12916]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-4/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-5/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][372] ([i915#9519]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-5/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html #### Warnings #### * igt at gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: [TIMEOUT][374] ([i915#12917] / [i915#12964]) -> [SKIP][375] ([i915#4270]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-1/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-5/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][376] ([i915#9820]) -> [DMESG-WARN][377] ([i915#13475]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg1-12/igt at i915_module_load@reload-with-fault-injection.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-13/igt at i915_module_load@reload-with-fault-injection.html - shard-mtlp: [DMESG-WARN][378] ([i915#13475]) -> [ABORT][379] ([i915#10131] / [i915#10887] / [i915#13493] / [i915#9820]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-mtlp-5/igt at i915_module_load@reload-with-fault-injection.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-mtlp-2/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_selftest@mock: - shard-rkl: [DMESG-WARN][380] ([i915#9311]) -> [DMESG-WARN][381] ([i915#12964] / [i915#9311]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-6/igt at i915_selftest@mock.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-6/igt at i915_selftest@mock.html * igt at kms_content_protection@uevent: - shard-snb: [INCOMPLETE][382] ([i915#8816]) -> [SKIP][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-snb7/igt at kms_content_protection@uevent.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-snb5/igt at kms_content_protection@uevent.html * igt at kms_flip@flip-vs-suspend: - shard-glk: [INCOMPLETE][384] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][385] ([i915#12745] / [i915#1982] / [i915#4839]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-glk5/igt at kms_flip@flip-vs-suspend.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk4/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-glk: [INCOMPLETE][386] ([i915#12745]) -> [INCOMPLETE][387] ([i915#12745] / [i915#1982]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-glk5/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-glk4/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg1: [SKIP][388] ([i915#2587] / [i915#2672] / [i915#3555] / [i915#4423]) -> [SKIP][389] ([i915#2587] / [i915#2672] / [i915#3555]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg1-13/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/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-dg1: [SKIP][390] ([i915#2587] / [i915#2672] / [i915#4423]) -> [SKIP][391] ([i915#2587] / [i915#2672]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg1-13/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling at pipe-a-valid-mode.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-12/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][392] ([i915#3458]) -> [SKIP][393] ([i915#10433] / [i915#3458]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg2-7/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt at kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][394] ([i915#9340]) -> [SKIP][395] ([i915#3828]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-rkl-1/igt at kms_pm_lpsp@kms-lpsp.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-rkl-2/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-dg1: [SKIP][396] ([i915#11520] / [i915#4423]) -> [SKIP][397] ([i915#11520]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15972/shard-dg1-13/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/shard-dg1-17/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [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#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12238]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12238 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [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#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13197 [i915#13328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13328 [i915#13353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13353 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#13364]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13364 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13475]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13475 [i915#13493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13493 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12453/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sat Jan 18 14:33:41 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sat, 18 Jan 2025 14:33:41 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EFull=3A_success_for_Add_igt=5Frunner=27s_cmdli?= =?utf-8?q?ne_to_results?= In-Reply-To: <20250117231751.429703-1-lucas.demarchi@intel.com> References: <20250117231751.429703-1-lucas.demarchi@intel.com> Message-ID: <173721082193.1172550.14716393843851363239@b555e5b46a47> == Series Details == Series: Add igt_runner's cmdline to results URL : https://patchwork.freedesktop.org/series/143699/ State : success == Summary == CI Bug Log - changes from XEIGT_8198_full -> XEIGTPW_12457_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between XEIGT_8198_full and XEIGTPW_12457_full: ### New IGT tests (12) ### * igt at kms_atomic_interruptible@legacy-cursor at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [6.31] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.69] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ac-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.67] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ad-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.65] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at bc-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.64] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at bd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.64] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at cd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.64] s * igt at kms_hdr@static-toggle at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.92] s * igt at kms_sequence@get-idle at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.47] s * igt at kms_sequence@get-idle at pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.23] s * igt at kms_sequence@get-idle at pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.23] s * igt at kms_sequence@get-idle at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.23] s Known issues ------------ Here are the changes found in XEIGTPW_12457_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotreplug: - shard-bmg: [PASS][1] -> [SKIP][2] ([Intel XE#1885]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at core_hotunplug@hotreplug.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at core_hotunplug@hotreplug.html * igt at core_setmaster@master-drop-set-root: - shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#3249]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at core_setmaster@master-drop-set-root.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@info: - shard-bmg: [PASS][5] -> [SKIP][6] ([Intel XE#2134]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at fbdev@info.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at fbdev@info.html * igt at kms_async_flips@alternate-sync-async-flip at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][7] ([Intel XE#827]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_async_flips@alternate-sync-async-flip at pipe-a-dp-2.html * igt at kms_atomic_interruptible@legacy-pageflip: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#2423] / [i915#2575]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_atomic_interruptible@legacy-pageflip.html * igt at kms_atomic_transition@plane-all-transition-nonblocking-fencing: - shard-dg2-set2: [PASS][9] -> [SKIP][10] ([Intel XE#2423] / [i915#2575]) +16 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_atomic_transition@plane-all-transition-nonblocking-fencing.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_atomic_transition@plane-all-transition-nonblocking-fencing.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-4/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg2-set2: [PASS][12] -> [SKIP][13] ([Intel XE#2136]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_big_fb@4-tiled-addfb-size-overflow.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#316]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@x-tiled-16bpp-rotate-0: - shard-bmg: [PASS][15] -> [SKIP][16] ([Intel XE#2136]) +23 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_big_fb@x-tiled-16bpp-rotate-0.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_big_fb@x-tiled-16bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-3/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1124]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_bw@connected-linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#367]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-436/igt at kms_bw@connected-linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#2314] / [Intel XE#2894]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@linear-tiling-4-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1512]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-1/igt at kms_bw@linear-tiling-4-displays-2560x1440p.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-basic-y-tiled-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +13 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_ccs@crc-primary-basic-y-tiled-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +6 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-c-hdmi-a-3: - shard-bmg: NOTRUN -> [INCOMPLETE][26] ([Intel XE#3862]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs at pipe-c-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#3432]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-1/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][28] -> [INCOMPLETE][29] ([Intel XE#1727] / [Intel XE#3124]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/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-b-hdmi-a-6: - shard-dg2-set2: [PASS][30] -> [INCOMPLETE][31] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-6.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-dp-4: - shard-dg2-set2: [PASS][32] -> [INCOMPLETE][33] ([Intel XE#1727] / [Intel XE#3113]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-dp-4.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/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_chamelium_color@ctm-negative: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#306]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-1/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#373]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@dp-edid-resolution-list: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#373]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-5/igt at kms_chamelium_edid@dp-edid-resolution-list.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#307]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-5/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][38] ([Intel XE#1188]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1424]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-7/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2321]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-1/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#308]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-434/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#309]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-8/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#2291]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipb-toggle.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-dp-2: - shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#2141]) +1 other test fail [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-dp-2.html * igt at kms_dp_aux_dev: - shard-dg2-set2: [PASS][46] -> [SKIP][47] ([Intel XE#2423]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_dp_aux_dev.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_dp_aux_dev.html * igt at kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#703]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-434/igt at kms_feature_discovery@display-3x.html * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1421]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-7/igt at kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt at kms_flip@2x-flip-vs-dpms at ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-WARN][50] ([Intel XE#877]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-5/igt at kms_flip@2x-flip-vs-dpms 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][51] -> [FAIL][52] ([Intel XE#301] / [Intel XE#3321]) +2 other tests fail [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#2423]) +122 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_flip@2x-nonexisting-fb.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@2x-plain-flip-interruptible: - shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#2316]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_flip@2x-plain-flip-interruptible.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_flip@2x-plain-flip-interruptible.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [PASS][57] -> [FAIL][58] ([Intel XE#886]) +2 other tests fail [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-8/igt at kms_flip@blocking-wf_vblank.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-2/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: NOTRUN -> [FAIL][59] ([Intel XE#301]) +2 other tests fail [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3: - shard-bmg: [PASS][60] -> [FAIL][61] ([Intel XE#3321]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a6: - shard-dg2-set2: [PASS][62] -> [FAIL][63] ([Intel XE#301]) +2 other tests fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a6.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a6.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#455]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-436/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2136]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1401]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1397] / [Intel XE#1745]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-4/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-default-mode: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1397]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2293]) +8 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-2p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#2136]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-2p-rte.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#651]) +5 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#651]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-4/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][74] -> [SKIP][75] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#656]) +18 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#653]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#2136] / [Intel XE#2351]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_hdr@invalid-metadata-sizes: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1503]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-4/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][80] -> [SKIP][81] ([Intel XE#3012]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_joiner@invalid-modeset-force-big-joiner.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#2493]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-3/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4: - shard-dg2-set2: [PASS][83] -> [FAIL][84] ([Intel XE#361]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2763]) +19 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/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-5-upscale-20x20 at pipe-b: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#2763]) +7 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-7/igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20 at pipe-b.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][87] -> [FAIL][88] ([Intel XE#718]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-7/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][89] ([Intel XE#1430]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-4/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: [PASS][90] -> [SKIP][91] ([Intel XE#2446]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_pm_rpm@basic-pci-d3-state.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_pm_rpm@basic-rte: - shard-bmg: [PASS][92] -> [SKIP][93] ([Intel XE#2446]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_pm_rpm@basic-rte.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_pm_rpm@basic-rte.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#1489]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-434/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-lnl: NOTRUN -> [SKIP][95] ([Intel XE#2893]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-8/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1128]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-1/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1406]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-7/igt at kms_psr@fbc-pr-cursor-plane-move.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-436/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_setmode@basic: - shard-bmg: [PASS][99] -> [FAIL][100] ([Intel XE#2883]) +2 other tests fail [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_setmode@basic.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_setmode@basic.html - shard-lnl: [PASS][101] -> [FAIL][102] ([Intel XE#2883]) +1 other test fail [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-3/igt at kms_setmode@basic.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-8/igt at kms_setmode@basic.html * igt at kms_setmode@basic at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][103] ([Intel XE#2883]) +3 other tests fail [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_setmode@basic at pipe-a-dp-2.html * igt at kms_setmode@basic at pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][104] -> [FAIL][105] ([Intel XE#2883]) +5 other tests fail [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_setmode@basic at pipe-a-hdmi-a-6.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_setmode@basic at pipe-a-hdmi-a-6.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#362]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-8/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1499]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-5/igt at kms_vrr@negative-basic.html * igt at xe_compute_preempt@compute-preempt-many at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1280] / [Intel XE#455]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at xe_compute_preempt@compute-preempt-many at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-client: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2905]) +5 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-1/igt at xe_eudebug@basic-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2905]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_evict@evict-large-cm: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#688]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-2/igt at xe_evict@evict-large-cm.html * igt at xe_exec_basic@many-execqueues-many-vm-basic: - shard-dg2-set2: [PASS][112] -> [SKIP][113] ([Intel XE#1130]) +29 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_exec_basic@many-execqueues-many-vm-basic.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at xe_exec_basic@many-execqueues-many-vm-basic.html * igt at xe_exec_basic@multigpu-no-exec-null-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#1130]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at xe_exec_basic@multigpu-no-exec-null-rebind.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1392]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-1/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#288]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-434/igt at xe_exec_fault_mode@once-invalid-userptr-fault.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1192]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-5/igt at xe_live_ktest@xe_bo.html - shard-bmg: [PASS][118] -> [SKIP][119] ([Intel XE#2229]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at xe_live_ktest@xe_bo.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at xe_live_ktest@xe_bo.html * igt at xe_oa@non-privileged-access-vaddr: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-434/igt at xe_oa@non-privileged-access-vaddr.html * igt at xe_pm@d3cold-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-6/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@s3-multiple-execs: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#584]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-1/igt at xe_pm@s3-multiple-execs.html * igt at xe_pm@s4-mocs: - shard-lnl: [PASS][123] -> [ABORT][124] ([Intel XE#1358] / [Intel XE#1794]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-4/igt at xe_pm@s4-mocs.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-2/igt at xe_pm@s4-mocs.html * igt at xe_query@multigpu-query-gt-list: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#944]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at xe_query@multigpu-query-gt-list.html - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#944]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-5/igt at xe_query@multigpu-query-gt-list.html * igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][127] -> [SKIP][128] ([Intel XE#1130]) +270 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Possible fixes #### * igt at core_getversion@all-cards: - shard-bmg: [FAIL][129] ([Intel XE#3249]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at core_getversion@all-cards.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at core_getversion@all-cards.html * igt at core_hotunplug@hotrebind: - shard-bmg: [SKIP][131] ([Intel XE#1885]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at core_hotunplug@hotrebind.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-5/igt at core_hotunplug@hotrebind.html * igt at core_setmaster@master-drop-set-shared-fd: - shard-bmg: [SKIP][133] ([Intel XE#3453]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at core_setmaster@master-drop-set-shared-fd.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-4/igt at core_setmaster@master-drop-set-shared-fd.html * igt at fbdev@eof: - shard-bmg: [SKIP][135] ([Intel XE#2134]) -> [PASS][136] +2 other tests pass [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at fbdev@eof.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at fbdev@eof.html * igt at kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][137] ([Intel XE#2423]) -> [PASS][138] +107 other tests pass [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_addfb_basic@bad-pitch-999.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at kms_addfb_basic@bad-pitch-999.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][139] ([Intel XE#3719]) -> [PASS][140] +3 other tests pass [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-6/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-7/igt at kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: [FAIL][141] ([Intel XE#3908]) -> [PASS][142] +1 other test pass [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-3/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [SKIP][143] ([Intel XE#2136]) -> [PASS][144] +27 other tests pass [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_big_fb@linear-16bpp-rotate-180.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_big_fb@linear-8bpp-rotate-0: - shard-bmg: [SKIP][145] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][146] [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_big_fb@linear-8bpp-rotate-0.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-2/igt at kms_big_fb@linear-8bpp-rotate-0.html - shard-dg2-set2: [SKIP][147] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][148] [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_big_fb@linear-8bpp-rotate-0.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_big_fb@linear-8bpp-rotate-0.html * igt at kms_color@degamma at pipe-d-hdmi-a-3: - shard-bmg: [DMESG-WARN][149] ([Intel XE#877]) -> [PASS][150] +2 other tests pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_color@degamma at pipe-d-hdmi-a-3.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_color@degamma at pipe-d-hdmi-a-3.html * igt at kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [SKIP][151] ([Intel XE#2291]) -> [PASS][152] +1 other test pass [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [FAIL][153] ([Intel XE#1475]) -> [PASS][154] [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-6/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-8/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][155] ([Intel XE#2882]) -> [PASS][156] +1 other test pass [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-hdmi-a6-dp4.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-436/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a6-dp4: - 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_8198/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a6-dp4.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a6-dp4.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][159] ([Intel XE#886]) -> [PASS][160] +4 other tests pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-2/igt at kms_flip@flip-vs-absolute-wf_vblank.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-6/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank at b-dp2: - shard-bmg: [FAIL][161] ([Intel XE#3321]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at b-dp2.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-5/igt at kms_flip@flip-vs-expired-vblank at b-dp2.html * igt at kms_flip@flip-vs-expired-vblank at c-dp4: - shard-dg2-set2: [FAIL][163] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg2-set2: [SKIP][165] ([Intel XE#2136]) -> [PASS][166] +1 other test pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][167] ([Intel XE#455]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_hdr@invalid-hdr.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_hdr@invalid-hdr.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][169] ([Intel XE#361]) -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-434/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html * igt at kms_pm_rpm@universal-planes-dpms: - shard-bmg: [SKIP][171] ([Intel XE#2446]) -> [PASS][172] +2 other tests pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_pm_rpm@universal-planes-dpms.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at kms_pm_rpm@universal-planes-dpms.html * igt at kms_sequence@get-idle: - shard-bmg: [SKIP][173] ([Intel XE#3007]) -> [PASS][174] +5 other tests pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_sequence@get-idle.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-5/igt at kms_sequence@get-idle.html - shard-dg2-set2: [SKIP][175] ([Intel XE#2423] / [i915#2575]) -> [PASS][176] +6 other tests pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_sequence@get-idle.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-436/igt at kms_sequence@get-idle.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-bmg: [SKIP][177] ([Intel XE#1435]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_setmode@invalid-clone-single-crtc.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_8198/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_12457/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system: - shard-lnl: [INCOMPLETE][181] ([Intel XE#2771]) -> [PASS][182] +1 other test pass [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-7/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-lnl-4/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system.html * igt at xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [SKIP][183] ([Intel XE#1130]) -> [PASS][184] +272 other tests pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_exec_basic@many-bindexecqueue-rebind.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at xe_exec_basic@many-bindexecqueue-rebind.html * igt at xe_live_ktest@xe_migrate: - shard-bmg: [SKIP][185] ([Intel XE#1192]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at xe_live_ktest@xe_migrate.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at xe_live_ktest@xe_migrate.html * igt at xe_module_load@reload: - shard-bmg: [FAIL][187] ([Intel XE#3546]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_module_load@reload.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-4/igt at xe_module_load@reload.html * igt at xe_vm@large-misaligned-binds-2097152: - shard-dg2-set2: [SKIP][189] ([Intel XE#1130]) -> [PASS][190] +9 other tests pass [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_vm@large-misaligned-binds-2097152.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at xe_vm@large-misaligned-binds-2097152.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][191] ([Intel XE#2423]) -> [SKIP][192] ([Intel XE#2233]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-4/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [SKIP][193] ([Intel XE#2423]) -> [FAIL][194] ([Intel XE#827]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][195] ([Intel XE#873]) -> [SKIP][196] ([Intel XE#2423]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_async_flips@invalid-async-flip.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][197] ([Intel XE#2423]) -> [SKIP][198] ([Intel XE#2385]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: [SKIP][199] ([Intel XE#2370]) -> [SKIP][200] ([Intel XE#2423]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][201] ([Intel XE#2327]) -> [SKIP][202] ([Intel XE#2136]) +6 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][203] ([Intel XE#2136]) -> [SKIP][204] ([Intel XE#2327]) +3 other tests skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-4/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][205] ([Intel XE#2136]) -> [SKIP][206] ([Intel XE#610]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][207] ([Intel XE#1124]) -> [SKIP][208] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-bmg: [SKIP][209] ([Intel XE#2136]) -> [SKIP][210] ([Intel XE#1124]) +13 other tests skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][211] ([Intel XE#1124]) -> [SKIP][212] ([Intel XE#2136]) +17 other tests skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][213] ([Intel XE#607]) -> [SKIP][214] ([Intel XE#2136]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: [SKIP][215] ([Intel XE#610]) -> [SKIP][216] ([Intel XE#2136]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][217] ([Intel XE#1124]) -> [SKIP][218] ([Intel XE#2136]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-bmg: [SKIP][219] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][220] ([Intel XE#2423]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][221] ([Intel XE#2423]) -> [SKIP][222] ([Intel XE#2314] / [Intel XE#2894]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-5/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: [SKIP][223] ([Intel XE#2423]) -> [SKIP][224] ([Intel XE#367]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-5/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][225] ([Intel XE#367]) -> [SKIP][226] ([Intel XE#2423]) +3 other tests skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html - shard-dg2-set2: [SKIP][227] ([Intel XE#367]) -> [SKIP][228] ([Intel XE#2423] / [i915#2575]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html * igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][229] ([Intel XE#2907]) -> [SKIP][230] ([Intel XE#2136]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][231] ([Intel XE#2136]) -> [SKIP][232] ([Intel XE#2887]) +19 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][233] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][234] ([Intel XE#2136]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [SKIP][235] ([Intel XE#2136]) -> [INCOMPLETE][236] ([Intel XE#3862]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-bmg: [SKIP][237] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][238] ([Intel XE#2136]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][239] ([Intel XE#3432]) -> [SKIP][240] ([Intel XE#2136]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][241] ([Intel XE#2136]) -> [SKIP][242] ([Intel XE#3432]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-4/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-bmg: [SKIP][243] ([Intel XE#2887]) -> [SKIP][244] ([Intel XE#2136]) +22 other tests skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][245] ([Intel XE#2692] / [Intel XE#4010]) -> [INCOMPLETE][246] ([Intel XE#1727]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][247] ([Intel XE#2724]) -> [SKIP][248] ([Intel XE#2136]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_cdclk@mode-transition.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@plane-scaling: - shard-bmg: [SKIP][249] ([Intel XE#2136]) -> [SKIP][250] ([Intel XE#2724]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cdclk@plane-scaling.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-5/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-bmg: [SKIP][251] ([Intel XE#2325]) -> [SKIP][252] ([Intel XE#2423]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_chamelium_color@ctm-blue-to-red.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-bmg: [SKIP][253] ([Intel XE#2423]) -> [SKIP][254] ([Intel XE#2325]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_chamelium_color@ctm-red-to-blue.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][255] ([Intel XE#2252]) -> [SKIP][256] ([Intel XE#2423]) +14 other tests skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@hdmi-mode-timings: - shard-dg2-set2: [SKIP][257] ([Intel XE#373]) -> [SKIP][258] ([Intel XE#2423] / [i915#2575]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_chamelium_edid@hdmi-mode-timings.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_chamelium_edid@hdmi-mode-timings.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][259] ([Intel XE#2423]) -> [SKIP][260] ([Intel XE#2252]) +14 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_chamelium_hpd@common-hpd-after-suspend.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_content_protection@atomic: - shard-bmg: [FAIL][261] ([Intel XE#1178]) -> [INCOMPLETE][262] ([Intel XE#2715]) +1 other test incomplete [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_content_protection@atomic.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at kms_content_protection@atomic.html * igt at kms_content_protection@atomic-dpms: - shard-bmg: [FAIL][263] ([Intel XE#1178]) -> [SKIP][264] ([Intel XE#2423]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_content_protection@atomic-dpms.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-bmg: [SKIP][265] ([Intel XE#2341]) -> [SKIP][266] ([Intel XE#2423]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_content_protection@content-type-change.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][267] ([Intel XE#2390]) -> [SKIP][268] ([Intel XE#2423]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_content_protection@dp-mst-type-1.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][269] ([Intel XE#2423]) -> [SKIP][270] ([Intel XE#2341]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_content_protection@mei-interface.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-bmg: [SKIP][271] ([Intel XE#2341]) -> [FAIL][272] ([Intel XE#1188]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_content_protection@uevent.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][273] ([Intel XE#2320]) -> [SKIP][274] ([Intel XE#2423]) +8 other tests skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_cursor_crc@cursor-offscreen-128x42.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][275] ([Intel XE#3007]) -> [SKIP][276] ([Intel XE#2320]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_cursor_crc@cursor-random-32x32.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_cursor_crc@cursor-random-32x32.html - shard-dg2-set2: [SKIP][277] ([Intel XE#2423] / [i915#2575]) -> [SKIP][278] ([Intel XE#455]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_cursor_crc@cursor-random-32x32.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: [SKIP][279] ([Intel XE#2423]) -> [SKIP][280] ([Intel XE#2320]) +4 other tests skip [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-256x85.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-4/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-bmg: [SKIP][281] ([Intel XE#2321]) -> [SKIP][282] ([Intel XE#2423]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_cursor_crc@cursor-sliding-512x170.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][283] ([Intel XE#2423]) -> [SKIP][284] ([Intel XE#2321]) +3 other tests skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x512.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-bmg: [SKIP][285] ([Intel XE#2291]) -> [SKIP][286] ([Intel XE#2423]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-bmg: [SKIP][287] ([Intel XE#2423]) -> [SKIP][288] ([Intel XE#2291]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [SKIP][289] ([Intel XE#2423]) -> [DMESG-WARN][290] ([Intel XE#877]) +2 other tests dmesg-warn [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-2/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: - shard-bmg: [SKIP][291] ([Intel XE#2423]) -> [SKIP][292] ([Intel XE#2286]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [SKIP][293] ([Intel XE#2136]) -> [FAIL][294] ([Intel XE#2141]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][295] ([Intel XE#2423]) -> [SKIP][296] ([Intel XE#2425]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_display_modes@extended-mode-basic.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][297] ([Intel XE#3070]) -> [SKIP][298] ([Intel XE#2136]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_dp_linktrain_fallback@dp-fallback.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_dsc@dsc-fractional-bpp: - shard-bmg: [SKIP][299] ([Intel XE#2136]) -> [SKIP][300] ([Intel XE#2244]) +3 other tests skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_dsc@dsc-fractional-bpp.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-5/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][301] ([Intel XE#776]) -> [SKIP][302] ([Intel XE#2136]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_fbcon_fbt@psr-suspend.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-3x: - shard-bmg: [SKIP][303] ([Intel XE#2373]) -> [SKIP][304] ([Intel XE#2423]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_feature_discovery@display-3x.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@psr2: - shard-bmg: [SKIP][305] ([Intel XE#2423]) -> [SKIP][306] ([Intel XE#2374]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_feature_discovery@psr2.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-4/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: [SKIP][307] ([Intel XE#2423]) -> [SKIP][308] ([Intel XE#2316]) +2 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_flip@2x-flip-vs-panning-vs-hang.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: [SKIP][309] ([Intel XE#2316]) -> [SKIP][310] ([Intel XE#2423]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: [SKIP][311] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][312] ([Intel XE#2136]) +7 other tests skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/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-dg2-set2: [SKIP][313] ([Intel XE#455]) -> [SKIP][314] ([Intel XE#2136] / [Intel XE#2351]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][315] ([Intel XE#2136]) -> [SKIP][316] ([Intel XE#2293] / [Intel XE#2380]) +8 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-2/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: [SKIP][317] ([Intel XE#2136]) -> [SKIP][318] ([Intel XE#2311]) +36 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][319] ([Intel XE#651]) -> [SKIP][320] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][321] ([Intel XE#2311]) -> [SKIP][322] ([Intel XE#2136]) +39 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][323] ([Intel XE#2312]) -> [SKIP][324] ([Intel XE#2311]) +5 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][325] ([Intel XE#2333]) -> [SKIP][326] ([Intel XE#2312]) +2 other tests skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-bmg: [SKIP][327] ([Intel XE#2312]) -> [FAIL][328] ([Intel XE#2333]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][329] ([Intel XE#2333]) -> [SKIP][330] ([Intel XE#2136]) +18 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][331] ([Intel XE#2136]) -> [FAIL][332] ([Intel XE#2333]) +23 other tests fail [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][333] ([Intel XE#2136]) -> [SKIP][334] ([Intel XE#651]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][335] ([Intel XE#651]) -> [SKIP][336] ([Intel XE#2136]) +2 other tests skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][337] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][338] ([Intel XE#2311]) +2 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][339] ([Intel XE#2136]) -> [SKIP][340] ([Intel XE#2312]) +13 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][341] ([Intel XE#2311]) -> [SKIP][342] ([Intel XE#2312]) +6 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: [SKIP][343] ([Intel XE#2352]) -> [SKIP][344] ([Intel XE#2136]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][345] ([Intel XE#653]) -> [SKIP][346] ([Intel XE#2136]) +5 other tests skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][347] ([Intel XE#653]) -> [SKIP][348] ([Intel XE#2136] / [Intel XE#2351]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][349] ([Intel XE#2136]) -> [SKIP][350] ([Intel XE#2313]) +38 other tests skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-bmg: [SKIP][351] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][352] ([Intel XE#2313]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html - shard-dg2-set2: [SKIP][353] ([Intel XE#2136]) -> [SKIP][354] ([Intel XE#653]) +2 other tests skip [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][355] ([Intel XE#2313]) -> [SKIP][356] ([Intel XE#2136]) +34 other tests skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][357] ([Intel XE#2313]) -> [SKIP][358] ([Intel XE#2312]) +5 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][359] ([Intel XE#2312]) -> [SKIP][360] ([Intel XE#2313]) +2 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][361] ([Intel XE#2312]) -> [SKIP][362] ([Intel XE#2136]) +15 other tests skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][363] ([Intel XE#2423]) -> [SKIP][364] ([Intel XE#3374] / [Intel XE#3544]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-2/igt at kms_hdr@brightness-with-hdr.html * igt at kms_joiner@basic-big-joiner: - shard-bmg: [SKIP][365] ([Intel XE#346]) -> [SKIP][366] ([Intel XE#2136]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_joiner@basic-big-joiner.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_joiner@basic-big-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][367] ([Intel XE#2501]) -> [SKIP][368] ([Intel XE#2423]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-bmg: [SKIP][369] ([Intel XE#2486]) -> [SKIP][370] ([Intel XE#2423]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_panel_fitting@atomic-fastset.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-bmg: [SKIP][371] ([Intel XE#2423]) -> [SKIP][372] ([Intel XE#2486]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_panel_fitting@legacy.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at kms_panel_fitting@legacy.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][373] ([Intel XE#2423]) -> [SKIP][374] ([Intel XE#2393]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_plane_lowres@tiling-y.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-4/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_scaling@invalid-parameters: - shard-bmg: [SKIP][375] ([Intel XE#3007]) -> [SKIP][376] ([Intel XE#2423]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_plane_scaling@invalid-parameters.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_plane_scaling@invalid-parameters.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][377] ([Intel XE#2423]) -> [SKIP][378] ([Intel XE#2763]) +4 other tests skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: [SKIP][379] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][380] ([Intel XE#2423] / [i915#2575]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-bmg: [SKIP][381] ([Intel XE#2763]) -> [SKIP][382] ([Intel XE#2423]) +4 other tests skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_pm_backlight@basic-brightness: - shard-bmg: [SKIP][383] ([Intel XE#870]) -> [SKIP][384] ([Intel XE#2136]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_pm_backlight@basic-brightness.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][385] ([Intel XE#2938]) -> [SKIP][386] ([Intel XE#2136]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_pm_backlight@brightness-with-dpms.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][387] ([Intel XE#2136]) -> [SKIP][388] ([Intel XE#870]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_pm_backlight@fade-with-dpms.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][389] ([Intel XE#2136]) -> [SKIP][390] ([Intel XE#2392]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_pm_dc@dc5-psr.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][391] ([Intel XE#2136]) -> [SKIP][392] ([Intel XE#3309]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_pm_dc@dc5-retention-flops.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: [FAIL][393] ([Intel XE#1430]) -> [SKIP][394] ([Intel XE#2136]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_pm_dc@dc6-dpms.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@modeset-lpsp: - shard-bmg: [SKIP][395] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][396] ([Intel XE#2446]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_pm_rpm@modeset-lpsp.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: [SKIP][397] ([Intel XE#2446]) -> [SKIP][398] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-2/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: [SKIP][399] ([Intel XE#2136]) -> [SKIP][400] ([Intel XE#1489]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-436/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html - shard-bmg: [SKIP][401] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][402] ([Intel XE#1489]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-4/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][403] ([Intel XE#1489]) -> [SKIP][404] ([Intel XE#2136]) +1 other test skip [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][405] ([Intel XE#2136]) -> [SKIP][406] ([Intel XE#1489]) +10 other tests skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/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-bmg: [SKIP][407] ([Intel XE#1489]) -> [SKIP][408] ([Intel XE#2136]) +9 other tests skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@page_flip-p010: - shard-bmg: [SKIP][409] ([Intel XE#2387]) -> [SKIP][410] ([Intel XE#2136]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_psr2_su@page_flip-p010.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-psr-primary-render: - shard-bmg: [SKIP][411] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][412] ([Intel XE#2136]) +3 other tests skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_psr@fbc-psr-primary-render.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_psr@fbc-psr-primary-render.html - shard-dg2-set2: [SKIP][413] ([Intel XE#2136]) -> [SKIP][414] ([Intel XE#2850] / [Intel XE#929]) [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_psr@fbc-psr-primary-render.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-434/igt at kms_psr@fbc-psr-primary-render.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-bmg: [SKIP][415] ([Intel XE#2136]) -> [SKIP][416] ([Intel XE#2234] / [Intel XE#2850]) +15 other tests skip [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr@fbc-psr2-cursor-blt.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: [SKIP][417] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][418] ([Intel XE#2136]) +15 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_psr@pr-sprite-plane-onoff.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_psr@pr-sprite-plane-onoff.html - shard-dg2-set2: [SKIP][419] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][420] ([Intel XE#2136] / [Intel XE#2351]) [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_psr@pr-sprite-plane-onoff.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr-basic: - shard-dg2-set2: [SKIP][421] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][422] ([Intel XE#2136]) +1 other test skip [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_psr@psr-basic.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_psr@psr-basic.html * igt at kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][423] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][424] ([Intel XE#2351]) [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_psr@psr-sprite-plane-onoff.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_psr@psr-sprite-plane-onoff.html * igt at kms_psr@psr2-primary-render: - shard-bmg: [SKIP][425] ([Intel XE#2136]) -> [SKIP][426] ([Intel XE#2234]) [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_psr@psr2-primary-render.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_psr@psr2-primary-render.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][427] ([Intel XE#2136]) -> [SKIP][428] ([Intel XE#2414]) +1 other test skip [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-rotation-270: - shard-bmg: [SKIP][429] ([Intel XE#2423]) -> [SKIP][430] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_rotation_crc@primary-rotation-270.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-rotation-90: - shard-bmg: [SKIP][431] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][432] ([Intel XE#2423]) +3 other tests skip [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_rotation_crc@primary-rotation-90.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][433] ([Intel XE#3007]) -> [SKIP][434] ([Intel XE#2330]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-dg2-set2: [SKIP][435] ([Intel XE#2423] / [i915#2575]) -> [SKIP][436] ([Intel XE#1127]) [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][437] ([Intel XE#3414]) -> [SKIP][438] ([Intel XE#2423] / [i915#2575]) [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: [SKIP][439] ([Intel XE#2423]) -> [SKIP][440] ([Intel XE#2330]) [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: [SKIP][441] ([Intel XE#2330]) -> [SKIP][442] ([Intel XE#2423]) [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][443] ([Intel XE#2413]) -> [SKIP][444] ([Intel XE#2423]) +2 other tests skip [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_scaling_modes@scaling-mode-center.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: [SKIP][445] ([Intel XE#2423]) -> [SKIP][446] ([Intel XE#2413]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-full-aspect.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-5/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][447] ([Intel XE#1435]) -> [SKIP][448] ([Intel XE#2423]) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][449] ([Intel XE#2426]) -> [SKIP][450] ([Intel XE#2423]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_tiled_display@basic-test-pattern.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [FAIL][451] ([Intel XE#1729]) -> [SKIP][452] ([Intel XE#362]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][453] ([Intel XE#1500]) -> [SKIP][454] ([Intel XE#362]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@flip-basic: - shard-dg2-set2: [SKIP][455] ([Intel XE#455]) -> [SKIP][456] ([Intel XE#2423] / [i915#2575]) [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_vrr@flip-basic.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at kms_vrr@flip-basic.html * igt at kms_vrr@lobf: - shard-bmg: [SKIP][457] ([Intel XE#2423]) -> [SKIP][458] ([Intel XE#2168]) +1 other test skip [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_vrr@lobf.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_vrr@lobf.html * igt at kms_vrr@max-min: - shard-bmg: [SKIP][459] ([Intel XE#2423]) -> [SKIP][460] ([Intel XE#1499]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_vrr@max-min.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-5/igt at kms_vrr@max-min.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-bmg: [SKIP][461] ([Intel XE#1499]) -> [SKIP][462] ([Intel XE#2423]) +1 other test skip [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_vrr@seamless-rr-switch-vrr.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-bmg: [SKIP][463] ([Intel XE#2423]) -> [SKIP][464] ([Intel XE#756]) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_writeback@writeback-fb-id-xrgb2101010.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][465] ([Intel XE#3007]) -> [SKIP][466] ([Intel XE#756]) [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_writeback@writeback-invalid-parameters.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: [SKIP][467] ([Intel XE#756]) -> [SKIP][468] ([Intel XE#2423]) +1 other test skip [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_writeback@writeback-pixel-formats.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at kms_writeback@writeback-pixel-formats.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][469] ([Intel XE#1130]) -> [SKIP][470] ([Intel XE#1280] / [Intel XE#455]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_compute_preempt@compute-preempt-many.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][471] ([Intel XE#1130]) -> [SKIP][472] ([Intel XE#2905]) +14 other tests skip [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html - shard-dg2-set2: [SKIP][473] ([Intel XE#1130]) -> [SKIP][474] ([Intel XE#2905]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: [SKIP][475] ([Intel XE#3889]) -> [SKIP][476] ([Intel XE#1130]) [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-bmg: [SKIP][477] ([Intel XE#1130]) -> [SKIP][478] ([Intel XE#3889]) [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug_online@breakpoint-many-sessions-tiles: - shard-dg2-set2: [SKIP][479] ([Intel XE#2905]) -> [SKIP][480] ([Intel XE#1130]) +1 other test skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at xe_eudebug_online@breakpoint-many-sessions-tiles.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at xe_eudebug_online@breakpoint-many-sessions-tiles.html * igt at xe_eudebug_online@single-step-one: - shard-bmg: [SKIP][481] ([Intel XE#2905]) -> [SKIP][482] ([Intel XE#1130]) +15 other tests skip [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at xe_eudebug_online@single-step-one.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at xe_eudebug_online@single-step-one.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind: - shard-bmg: [SKIP][483] ([Intel XE#2322]) -> [SKIP][484] ([Intel XE#1130]) +11 other tests skip [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html * igt at xe_exec_basic@multigpu-once-basic-defer-bind: - shard-bmg: [SKIP][485] ([Intel XE#1130]) -> [SKIP][486] ([Intel XE#2322]) +10 other tests skip [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_exec_basic@multigpu-once-basic-defer-bind.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-3/igt at xe_exec_basic@multigpu-once-basic-defer-bind.html * igt at xe_exec_fault_mode@many-basic: - shard-dg2-set2: [SKIP][487] ([Intel XE#288]) -> [SKIP][488] ([Intel XE#1130]) +5 other tests skip [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_exec_fault_mode@many-basic.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at xe_exec_fault_mode@many-basic.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][489] ([Intel XE#1130]) -> [SKIP][490] ([Intel XE#2459] / [Intel XE#2596]) [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_media_fill@media-fill.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-6/igt at xe_media_fill@media-fill.html * igt at xe_mmap@small-bar: - shard-bmg: [SKIP][491] ([Intel XE#1130]) -> [SKIP][492] ([Intel XE#586]) [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_mmap@small-bar.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at xe_mmap@small-bar.html * igt at xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: [SKIP][493] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][494] ([Intel XE#1130]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_oa@oa-unit-exclusive-stream-sample-oa.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt at xe_oa@syncs-ufence-wait-cfg: - shard-dg2-set2: [SKIP][495] ([Intel XE#1130]) -> [SKIP][496] ([Intel XE#2541] / [Intel XE#3573]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_oa@syncs-ufence-wait-cfg.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-434/igt at xe_oa@syncs-ufence-wait-cfg.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][497] ([Intel XE#2248]) -> [SKIP][498] ([Intel XE#1130]) +1 other test skip [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at xe_oa@unprivileged-single-ctx-counters.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][499] ([Intel XE#1420]) -> [SKIP][500] ([Intel XE#1130]) [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at xe_pat@pat-index-xehpc.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: [SKIP][501] ([Intel XE#2284]) -> [SKIP][502] ([Intel XE#1130]) [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at xe_pm@d3cold-mmap-system.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: [SKIP][503] ([Intel XE#1130]) -> [SKIP][504] ([Intel XE#2284]) +2 other tests skip [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_pm@s2idle-d3cold-basic-exec.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-5/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@vram-d3cold-threshold: - shard-bmg: [SKIP][505] ([Intel XE#1130]) -> [SKIP][506] ([Intel XE#579]) [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_pm@vram-d3cold-threshold.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-5/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][507] ([Intel XE#1130]) -> [SKIP][508] ([Intel XE#944]) +4 other tests skip [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_query@multigpu-query-invalid-cs-cycles.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-8/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][509] ([Intel XE#944]) -> [SKIP][510] ([Intel XE#1130]) +3 other tests skip [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at xe_query@multigpu-query-uc-fw-version-huc.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_sriov_auto_provisioning@exclusive-ranges: - shard-dg2-set2: [SKIP][511] -> [SKIP][512] ([Intel XE#1130]) [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at xe_sriov_auto_provisioning@exclusive-ranges.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-dg2-463/igt at xe_sriov_auto_provisioning@exclusive-ranges.html * igt at xe_sriov_flr@flr-each-isolation: - shard-bmg: [SKIP][513] ([Intel XE#3342]) -> [SKIP][514] ([Intel XE#1130]) [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at xe_sriov_flr@flr-each-isolation.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-1/igt at xe_sriov_flr@flr-each-isolation.html * igt at xe_wedged@wedged-mode-toggle: - shard-bmg: [ABORT][515] ([Intel XE#3084]) -> [SKIP][516] ([Intel XE#1130]) [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at xe_wedged@wedged-mode-toggle.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/shard-bmg-7/igt at xe_wedged@wedged-mode-toggle.html [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#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#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#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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#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#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [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#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [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#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [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#2771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2771 [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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [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#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010 [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#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [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#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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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_8198 -> IGTPW_12457 * Linux: xe-2508-9033a16532f74ae36c48d729d0855a6e189039df -> xe-2510-4fc988de9f5e17d19edb5fc0a0fbc15a8fc837f4 IGTPW_12457: 12457 IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2508-9033a16532f74ae36c48d729d0855a6e189039df: 9033a16532f74ae36c48d729d0855a6e189039df xe-2510-4fc988de9f5e17d19edb5fc0a0fbc15a8fc837f4: 4fc988de9f5e17d19edb5fc0a0fbc15a8fc837f4 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12457/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Sun Jan 19 12:38:47 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Sun, 19 Jan 2025 12:38:47 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/amdgpu/amd=5Fvrr?= =?utf-8?q?=5Frange=3A_Fix_panel_cannot_light_up_after_test_=28rev2=29?= In-Reply-To: <20250117100101.4282-1-chiahsuan.chung@amd.com> References: <20250117100101.4282-1-chiahsuan.chung@amd.com> Message-ID: <173729032790.1556956.10517397610832463146@b555e5b46a47> == Series Details == Series: tests/amdgpu/amd_vrr_range: Fix panel cannot light up after test (rev2) URL : https://patchwork.freedesktop.org/series/143059/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15974_full -> IGTPW_12455_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12455_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12455_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_12455/index.html Participating hosts (11 -> 12) ------------------------------ Additional (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12455_full: ### IGT changes ### #### Possible regressions #### * igt at gem_eio@in-flight-suspend: - shard-mtlp: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15974/shard-mtlp-7/igt at gem_eio@in-flight-suspend.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-4/igt at gem_eio@in-flight-suspend.html * igt at gem_tiled_swapping@non-threaded: - shard-rkl: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-1/igt at gem_tiled_swapping@non-threaded.html * igt at i915_pm_rps@reset: - shard-snb: [PASS][4] -> [DMESG-FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15974/shard-snb1/igt at i915_pm_rps@reset.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-snb5/igt at i915_pm_rps@reset.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-4/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html * igt at kms_cursor_crc@cursor-suspend: - shard-tglu: [PASS][7] -> [ABORT][8] +1 other test abort [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15974/shard-tglu-4/igt at kms_cursor_crc@cursor-suspend.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-10/igt at kms_cursor_crc@cursor-suspend.html Known issues ------------ Here are the changes found in IGTPW_12455_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8411]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-4/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#6230]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-14/igt at api_intel_bb@crc32.html * igt at debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#9318]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-6/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_12455/shard-tglu-1/igt at device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][13] ([i915#11078]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at device_reset@cold-reset-bound.html * igt at drm_fdinfo@busy-check-all at bcs0: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8414]) +25 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-17/igt at drm_fdinfo@busy-check-all at bcs0.html * igt at drm_fdinfo@busy-idle at bcs0: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +24 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-1/igt at drm_fdinfo@busy-idle at bcs0.html * igt at drm_fdinfo@busy at bcs0: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8414]) +6 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-7/igt at drm_fdinfo@busy at bcs0.html * igt at drm_fdinfo@isolation: - shard-rkl: [PASS][17] -> [DMESG-WARN][18] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15974/shard-rkl-3/igt at drm_fdinfo@isolation.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-2/igt at drm_fdinfo@isolation.html * igt at gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#7697]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at gem_basic@multigpu-create-close.html * igt at gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#3936]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-18/igt at gem_busy@semaphore.html * igt at gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-8/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-1/igt at gem_ccs@block-multicopy-inplace.html - shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#13008]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-5/igt at gem_ccs@large-ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][25] ([i915#13008]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-14/igt at gem_ccs@large-ctrl-surf-copy.html - shard-tglu: NOTRUN -> [SKIP][26] ([i915#13008]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-5/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#9323]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#7697]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-5/igt at gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][29] ([i915#7697]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-1/igt at gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#7697]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-12/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@create-ext-set-pat: - shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#8562]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][32] ([i915#1099]) +4 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-snb1/igt at gem_ctx_persistence@engines-hostile-preempt.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#8555]) +5 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-2/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#8555]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-18/igt at gem_ctx_persistence@heartbeat-stop.html * igt at gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#5882]) +7 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-5/igt at gem_ctx_persistence@saturated-hostile-nopreempt.html * igt at gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#280]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-4/igt at gem_ctx_sseu@invalid-args.html * igt at gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#280]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at gem_ctx_sseu@invalid-sseu.html - shard-tglu: NOTRUN -> [SKIP][38] ([i915#280]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-2/igt at gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#280]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-5/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-tglu-1: NOTRUN -> [SKIP][40] ([i915#280]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][41] ([i915#280]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-17/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@reset-stress: - shard-snb: NOTRUN -> [FAIL][42] ([i915#8898]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-snb2/igt at gem_eio@reset-stress.html * igt at gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4771]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-1/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4771]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/igt at gem_exec_balancer@bonded-sync.html * igt at gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#4525]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-7/igt at gem_exec_balancer@parallel.html - shard-tglu: NOTRUN -> [SKIP][46] ([i915#4525]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-10/igt at gem_exec_balancer@parallel.html * igt at gem_exec_capture@capture-invisible: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#6334]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-14/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4812]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-12/igt at gem_exec_fence@submit.html * igt at gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4812]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-8/igt at gem_exec_fence@submit3.html * igt at gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-1/igt at gem_exec_flush@basic-uc-prw-default.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-3/igt at gem_exec_flush@basic-wb-ro-before-default.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/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][53] ([i915#3281]) +20 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-8/igt at gem_exec_reloc@basic-active.html * igt at gem_exec_reloc@basic-concurrent0: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3281]) +9 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-12/igt at gem_exec_reloc@basic-concurrent0.html * igt at gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#3281]) +18 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-7/igt at gem_exec_reloc@basic-wc-read-noreloc.html * igt at gem_exec_schedule@reorder-wide: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-1/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-4/igt at gem_exec_schedule@semaphore-power.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4860]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-17/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4860]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-10/igt at gem_fenced_exec_thrash@2-spare-fences.html * igt at gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4860]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-1/igt at gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt at gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#2190]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-5/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613] / [i915#7582]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-2/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@parallel-multi: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#4613]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-4/igt at gem_lmem_swapping@parallel-multi.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613]) +6 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][65] ([i915#5493]) +1 other test timeout [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-2/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][66] ([i915#4613]) +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-glk5/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#4613]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#8289]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-5/igt at gem_media_fill@media-fill.html * igt at gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#284]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-8/igt at gem_media_vme.html * igt at gem_mmap@basic-small-bo: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4083]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-17/igt at gem_mmap@basic-small-bo.html * igt at gem_mmap_gtt@basic-read-write-distinct: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4077]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-4/igt at gem_mmap_gtt@basic-read-write-distinct.html * igt at gem_mmap_gtt@coherency: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4077]) +15 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-18/igt at gem_mmap_gtt@coherency.html * igt at gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4077]) +17 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at gem_mmap_gtt@fault-concurrent-x.html * igt at gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4083]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at gem_mmap_wc@bad-size.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3282]) +9 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3282]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-12/igt at gem_partial_pwrite_pread@writes-after-reads-display.html * igt at gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3282]) +11 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at gem_pwrite@basic-exhaustion.html - shard-snb: NOTRUN -> [WARN][78] ([i915#2658]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-snb5/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][79] ([i915#12964]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at gem_pxp@create-protected-buffer.html * igt at gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4270]) +8 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-8/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [TIMEOUT][81] ([i915#12917] / [i915#12964]) +7 other tests timeout [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-7/igt at gem_pxp@reject-modify-context-protection-on.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4270]) +5 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-18/igt at gem_pxp@reject-modify-context-protection-on.html * igt at gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3282]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-2/igt at gem_readwrite@read-bad-handle.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_12455/shard-mtlp-6/igt at gem_render_copy@yf-tiled-to-vebox-linear.html * igt at gem_render_copy@yf-tiled-to-vebox-x-tiled: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#5190] / [i915#8428]) +9 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-10/igt at gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#8411]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-1/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][87] ([i915#4079]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4885]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-17/igt at gem_softpin@evict-snoop.html * igt at gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4079]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-1/igt at gem_tiled_pread_pwrite.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][90] ([i915#13449]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-snb1/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#3323]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297]) +7 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-1/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3282] / [i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-8/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4880]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-5/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4880]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3297]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-5/igt at gem_userptr_blits@unsync-overlap.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#3297]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-7/igt at gem_userptr_blits@unsync-unmap-after-close.html - shard-dg1: NOTRUN -> [SKIP][98] ([i915#3297]) +5 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-17/igt at gem_userptr_blits@unsync-unmap-after-close.html - shard-tglu: NOTRUN -> [SKIP][99] ([i915#3297]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-10/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_workarounds@suspend-resume-context: - shard-rkl: [PASS][100] -> [DMESG-FAIL][101] ([i915#12964]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15974/shard-rkl-7/igt at gem_workarounds@suspend-resume-context.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at gem_workarounds@suspend-resume-context.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][102] +27 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#2527] / [i915#2856]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-8/igt at gen9_exec_parse@basic-rejected-ctx-param.html * igt at gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#2527]) +6 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-7/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-secure: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#2527] / [i915#2856]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at gen9_exec_parse@bb-secure.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#2527]) +4 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-14/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#2856]) +4 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at gen9_exec_parse@shadow-peek.html * igt at i915_module_load@reload-no-display: - shard-tglu-1: NOTRUN -> [DMESG-WARN][108] ([i915#13029]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at i915_module_load@reload-no-display.html * igt at i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#6412]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-8/igt at i915_module_load@resize-bar.html * igt at i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#8399]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at i915_pm_freq_api@freq-basic-api.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#6590]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-18/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: NOTRUN -> [SKIP][112] +36 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at i915_pm_rc6_residency@media-rc6-accuracy.html * igt at i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][113] ([i915#2681]) +1 other test warn [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-8/igt at i915_pm_rc6_residency@rc6-fence.html * igt at i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#11681] / [i915#6621]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-14/igt at i915_pm_rps@basic-api.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#11681] / [i915#6621]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-5/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#7984]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-6/igt at i915_power@sanity.html * igt at i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#6245]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-2/igt at i915_query@hwconfig_table.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#6188]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-2/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#5723]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-17/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][120] ([i915#9311]) +1 other test dmesg-warn [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-snb2/igt at i915_selftest@mock.html - shard-tglu: NOTRUN -> [DMESG-WARN][121] ([i915#9311]) +1 other test dmesg-warn [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-9/igt at i915_selftest@mock.html * igt at i915_suspend@fence-restore-untiled: - shard-glk: [PASS][122] -> [INCOMPLETE][123] ([i915#4817]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15974/shard-glk6/igt at i915_suspend@fence-restore-untiled.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-glk5/igt at i915_suspend@fence-restore-untiled.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4215] / [i915#5190]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-2/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#4212]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-17/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4212]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at kms_addfb_basic@framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@tile-pitch-mismatch: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#4212]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-6/igt at kms_addfb_basic@tile-pitch-mismatch.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-dg2: NOTRUN -> [FAIL][128] ([i915#13320]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-4/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-1-y-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#8709]) +7 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-1-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][130] ([i915#8709]) +7 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/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-b-hdmi-a-4-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_12455/shard-dg1-14/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-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#8709]) +11 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-1/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-3-4-mc-ccs.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_12455/shard-dg2-1/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][134] ([i915#1769]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-glk3/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-dg2: NOTRUN -> [SKIP][135] ([i915#1769] / [i915#3555]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-10/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-snb: NOTRUN -> [SKIP][136] ([i915#1769]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-snb1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][137] ([i915#1769] / [i915#3555]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-4/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-edp-1: - shard-mtlp: [PASS][138] -> [FAIL][139] ([i915#11808] / [i915#5956]) +1 other test fail [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15974/shard-mtlp-3/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-edp-1.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-4/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-edp-1.html * igt at kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#5286]) +11 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-1/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538] / [i915#5286]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/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-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#5286]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#5286]) +5 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-5/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#3638]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-18/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#3638]) +7 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-2/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5190]) +24 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-8/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][147] ([i915#4538]) +7 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#6095]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-5/igt at kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs at pipe-b-edp-1.html * igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#10307] / [i915#6095]) +154 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#6095]) +111 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/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-dg2: NOTRUN -> [SKIP][151] ([i915#12805]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][152] ([i915#12805]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-4/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][153] ([i915#12805]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-2/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][154] ([i915#6095]) +27 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/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 at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][155] ([i915#12796]) +2 other tests incomplete [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-glk1/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#6095]) +49 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs at pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#6095]) +49 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-3/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs at pipe-a-hdmi-a-1.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_12455/shard-dg2-4/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][159] ([i915#12313]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][160] ([i915#12313]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-18/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][161] ([i915#12313]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-9/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#6095]) +137 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-12/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-3.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/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: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#11616] / [i915#7213]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-3/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#7213]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-3/igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3.html * igt at kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#3742]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_audio@dp-audio-edid: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +17 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-1/igt at kms_chamelium_audio@dp-audio-edid.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +7 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][169] +6 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-6/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +13 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_hpd@dp-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +5 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +10 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-3/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-6/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#9979]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_color@deep-color.html * igt at kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#7118] / [i915#9424]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-8/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#6944] / [i915#9424]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-10/igt at kms_content_protection@content-type-change.html - shard-dg2: NOTRUN -> [SKIP][177] ([i915#9424]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-5/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#3116] / [i915#3299]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-3/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#3299]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-4/igt at kms_content_protection@dp-mst-lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3116]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-2/igt at kms_content_protection@dp-mst-lic-type-1.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_12455/shard-dg1-14/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-dg2: NOTRUN -> [TIMEOUT][182] ([i915#7173]) +1 other test timeout [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-10/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-snb: NOTRUN -> [INCOMPLETE][183] ([i915#8816]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-snb4/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#9424]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-7/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#6944] / [i915#7116] / [i915#7118]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-3/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#7118] / [i915#9424]) +3 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at kms_content_protection@type1.html - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#13049]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-10/igt at kms_cursor_crc@cursor-offscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][189] ([i915#13049]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-12/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#3555]) +8 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-7/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#3555]) +6 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-9/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-64x21: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#8814]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-3/igt at kms_cursor_crc@cursor-random-64x21.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#3555]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#13049]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-6/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#3555]) +10 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-4/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#13049]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at kms_cursor_crc@cursor-sliding-512x512.html - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#13049]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#13046] / [i915#5354]) +9 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/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-mtlp: NOTRUN -> [SKIP][199] ([i915#4213]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-8/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg2: NOTRUN -> [SKIP][200] ([i915#4103] / [i915#4213]) +2 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-5/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][201] ([i915#4103]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#9809]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-7/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][203] -> [FAIL][204] ([i915#2346]) +2 other tests fail [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15974/shard-glk5/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-glk3/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][205] ([i915#4103]) +3 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-2/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-dg1: NOTRUN -> [SKIP][206] ([i915#4103] / [i915#4213]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/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][207] ([i915#9833]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-8/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-rkl: NOTRUN -> [SKIP][208] ([i915#9723]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-4/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#9723]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#8588]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-5/igt at kms_display_modes@mst-extended-mode-negative.html - shard-dg1: NOTRUN -> [SKIP][211] ([i915#8588]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3804]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/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][213] ([i915#3804]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-1/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2.html * igt at kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#1257]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#12402]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-4/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#8812]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-2/igt at kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][217] ([i915#8812]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-12/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#3840]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-1/igt at kms_dsc@dsc-fractional-bpp.html - shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#3840]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#3840]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-10/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-4/igt at kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at kms_dsc@dsc-with-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#3840] / [i915#9053]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-8/igt at kms_dsc@dsc-with-output-formats-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#3840] / [i915#9053]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-14/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#3469]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-4/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#3469]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-12/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#4854]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at kms_feature_discovery@chamelium.html - shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#2065] / [i915#4854]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#1839]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#1839]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-1/igt at kms_feature_discovery@display-4x.html - shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#1839]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_feature_discovery@display-4x.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_12455/shard-tglu-10/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_12455/shard-dg1-17/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#658]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-1/igt at kms_feature_discovery@psr2.html * igt at kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#4881]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-10/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [FAIL][236] ([i915#11989]) +1 other test fail [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-snb4/igt at kms_flip@2x-blocking-wf_vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@2x-flip-vs-fences: - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#3637]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][238] ([i915#4839]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-glk4/igt at kms_flip@2x-flip-vs-suspend-interruptible at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#9934]) +9 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-5/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#3637]) +5 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-10/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#9934]) +9 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-14/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-dg2: NOTRUN -> [SKIP][242] ([i915#9934]) +16 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-10/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@blocking-wf_vblank: - shard-mtlp: NOTRUN -> [FAIL][243] ([i915#11989]) +1 other test fail [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-1/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#8381]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at kms_flip@flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][245] ([i915#8381]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-14/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-rkl: NOTRUN -> [DMESG-FAIL][246] ([i915#12964]) +3 other tests dmesg-fail [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-1/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][247] ([i915#12745] / [i915#4839]) +1 other test incomplete [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-glk9/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][248] ([i915#12745]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-glk9/igt at kms_flip@flip-vs-suspend-interruptible at a-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate: - shard-dg2: [PASS][249] -> [FAIL][250] ([i915#11989]) +2 other tests fail [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15974/shard-dg2-5/igt at kms_flip@plain-flip-fb-recreate.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-3/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1: - shard-tglu-1: NOTRUN -> [FAIL][251] ([i915#11989]) +2 other tests fail [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html * igt at kms_flip@wf_vblank-ts-check at b-edp1: - shard-mtlp: [PASS][252] -> [FAIL][253] ([i915#11989]) +3 other tests fail [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15974/shard-mtlp-8/igt at kms_flip@wf_vblank-ts-check at b-edp1.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-4/igt at kms_flip@wf_vblank-ts-check at b-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-14/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) +3 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/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-32bpp-yftileccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +4 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-5/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555] / [i915#8813]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#8813]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-1/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672]) +6 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-5/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-yftile-to-64bpp-yftile-upscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#2587] / [i915#2672]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-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-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#2587] / [i915#2672] / [i915#3555]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-12/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-tglu: NOTRUN -> [SKIP][262] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#3555] / [i915#5190]) +5 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#2672]) +8 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#2672] / [i915#3555]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#3555]) +9 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-4/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][267] ([i915#2672]) +9 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-4/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-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#2672] / [i915#3555]) +4 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#8708]) +40 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#8708]) +3 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][271] +55 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#5354]) +64 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][273] +44 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][274] +78 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-9/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#5439]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#10055]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#10433] / [i915#3458]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#8708]) +18 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/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-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#3023]) +42 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#3458]) +33 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-3/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#1825]) +4 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#4423]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#1825]) +75 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/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-dg1: NOTRUN -> [SKIP][284] ([i915#3458]) +19 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#6118]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-8/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@bpc-switch: - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-suspend: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-18/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@invalid-metadata-sizes: - shard-tglu: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-3/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at kms_hdr@static-toggle-dpms.html * igt at kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-5/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#10656]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#12388]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-8/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#10656] / [i915#13522]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-10/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#12339]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-7/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#10656]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][296] ([i915#10656]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-12/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#12394] / [i915#13522]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][298] ([i915#12394] / [i915#13522]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/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][299] ([i915#12339]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-8/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#4816]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-10/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#6301]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at kms_panel_fitting@atomic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#6301]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: NOTRUN -> [INCOMPLETE][303] ([i915#13476]) +1 other test incomplete [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-5/igt at kms_pipe_crc_basic@suspend-read-crc.html * igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-0: - shard-rkl: [PASS][304] -> [DMESG-WARN][305] ([i915#12964]) +36 other tests dmesg-warn [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15974/shard-rkl-7/igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-0.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-1/igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-0.html * igt at kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][306] ([i915#10647] / [i915#12177]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-glk5/igt at kms_plane_alpha_blend@alpha-transparent-fb.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][307] ([i915#10647] / [i915#12169]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/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][308] ([i915#10647]) +3 other tests fail [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-glk7/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#8806]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-10/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#8806]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#13046] / [i915#5354] / [i915#9423]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-8/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#6953] / [i915#9423]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-4/igt at kms_plane_scaling@intel-max-src-size.html - shard-rkl: NOTRUN -> [SKIP][313] ([i915#6953]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg1: NOTRUN -> [SKIP][314] ([i915#12247]) +18 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c: - shard-tglu: NOTRUN -> [SKIP][315] ([i915#12247]) +21 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#12247] / [i915#9423]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-2/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#12247] / [i915#6953]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-2/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-tglu-1: NOTRUN -> [SKIP][318] ([i915#12247]) +4 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/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 at pipe-b: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#12247]) +10 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-2/igt at kms_plane_scaling@planes-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#12247] / [i915#6953]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-2/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-dg1: NOTRUN -> [SKIP][321] ([i915#12247] / [i915#3555]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-18/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][322] ([i915#12247] / [i915#3555]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-4/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-dg2: NOTRUN -> [SKIP][323] ([i915#12247] / [i915#3555] / [i915#9423]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-3/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-d: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#12247]) +11 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-3/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-rkl: NOTRUN -> [DMESG-WARN][325] ([i915#12964]) +49 other tests dmesg-warn [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-5/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt at kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#5354]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-7/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#12343]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][328] ([i915#5354]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#9685]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at kms_pm_dc@dc3co-vpb-simulation.html - shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#9685]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#3828]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-2/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#9340]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-1/igt at kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][333] ([i915#9340]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-14/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][334] ([i915#8430]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-10/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: NOTRUN -> [SKIP][335] ([i915#9519]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#9519]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-2/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#9519]) +2 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-5/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#9519]) +3 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#9519]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#6524] / [i915#6805]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-2/igt at kms_prime@basic-crc-hybrid.html - shard-rkl: NOTRUN -> [SKIP][341] ([i915#6524]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-2/igt at kms_prime@basic-crc-hybrid.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][342] ([i915#11520]) +8 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-10/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][343] ([i915#11520]) +5 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-snb7/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#11520]) +15 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/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][345] ([i915#11520]) +14 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-7/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#12316]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-6/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][347] ([i915#11520]) +7 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][348] ([i915#11520]) +11 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-glk7/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][349] ([i915#11520]) +9 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-17/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#9683]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-2/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][351] ([i915#9683]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-6/igt at kms_psr2_su@page_flip-p010.html - shard-tglu: NOTRUN -> [SKIP][352] ([i915#9683]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-3/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][353] ([i915#9683]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][354] ([i915#9732]) +20 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-10/igt at kms_psr@fbc-psr-cursor-plane-onoff.html * igt at kms_psr@pr-cursor-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][355] ([i915#1072] / [i915#9732]) +23 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-12/igt at kms_psr@pr-cursor-mmap-gtt.html * igt at kms_psr@pr-sprite-render: - shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#9732]) +12 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_psr@pr-sprite-render.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#1072] / [i915#9732]) +41 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-1/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][358] ([i915#1072] / [i915#9732]) +46 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-1/igt at kms_psr@psr2-cursor-mmap-gtt.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][359] +352 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-glk2/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][360] ([i915#9685]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-14/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][361] ([i915#9685]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-8/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][362] ([i915#9685]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-4/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#5289]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#12755] / [i915#5190]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#5190]) +2 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][366] ([i915#5289]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-9/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][367] ([i915#5289]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][368] ([i915#5289]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-14/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][369] ([i915#12755]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-3/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#12755]) +4 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-10/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][371] ([i915#3555]) +6 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-14/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-none: - shard-mtlp: NOTRUN -> [SKIP][372] ([i915#3555] / [i915#5030] / [i915#9041]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-6/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][373] ([i915#5030]) +2 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-6/igt at kms_scaling_modes@scaling-mode-none at pipe-a-edp-1.html * igt at kms_scaling_modes@scaling-mode-none at pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][374] ([i915#5030] / [i915#9041]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-6/igt at kms_scaling_modes@scaling-mode-none at pipe-d-edp-1.html * igt at kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][375] ([i915#5465]) +2 other tests fail [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-snb1/igt at kms_setmode@basic.html - shard-tglu: [PASS][376] -> [FAIL][377] ([i915#5465]) +2 other tests fail [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15974/shard-tglu-3/igt at kms_setmode@basic.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-9/igt at kms_setmode@basic.html * igt at kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][378] ([IGT#160]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-4/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][379] ([i915#8623]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-5/igt at kms_tiled_display@basic-test-pattern.html - shard-glk: NOTRUN -> [FAIL][380] ([i915#10959]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-glk9/igt at kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][381] ([i915#8623]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-4/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][382] ([i915#8623]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-7/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][383] ([i915#8623]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-18/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][384] ([i915#9906]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-10/igt at kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][385] ([i915#9906]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-5/igt at kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][386] ([i915#9906]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-13/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][387] ([i915#3555] / [i915#8808]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-5/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][388] ([i915#11920]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-5/igt at kms_vrr@lobf.html - shard-tglu-1: NOTRUN -> [SKIP][389] ([i915#11920]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_vrr@lobf.html - shard-dg1: NOTRUN -> [SKIP][390] ([i915#11920]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-12/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-tglu-1: NOTRUN -> [SKIP][391] ([i915#3555] / [i915#9906]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][392] ([i915#2437]) +2 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-4/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][393] ([i915#2437] / [i915#9412]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-5/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][394] ([i915#2437]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-4/igt at kms_writeback@writeback-fb-id.html - shard-glk: NOTRUN -> [SKIP][395] ([i915#2437]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-glk8/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][396] ([i915#2437] / [i915#9412]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-4/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][397] ([i915#2437] / [i915#9412]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-3/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-pixel-formats: - shard-tglu-1: NOTRUN -> [SKIP][398] ([i915#2437] / [i915#9412]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-1/igt at kms_writeback@writeback-pixel-formats.html - shard-dg1: NOTRUN -> [SKIP][399] ([i915#2437] / [i915#9412]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-17/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][400] ([i915#7387]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-mtlp-1/igt at perf@global-sseu-config.html * igt at perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][401] ([i915#7387]) +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at perf@global-sseu-config-invalid.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][402] ([i915#2434]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-2/igt at perf@mi-rpc.html * igt at perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][403] ([i915#9100]) +1 other test fail [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-8/igt at perf@non-zero-reason.html * igt at perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][404] ([i915#2433]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-1/igt at perf@unprivileged-single-ctx-counters.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][405] +426 other tests skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-snb2/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: NOTRUN -> [FAIL][406] ([i915#4349]) +4 other tests fail [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@frequency at gt0: - shard-dg2: NOTRUN -> [FAIL][407] ([i915#12549] / [i915#6806]) +1 other test fail [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][408] ([i915#11823]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-10/igt at perf_pmu@module-unload.html * igt at prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][409] ([i915#3708]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-3/igt at prime_vgem@basic-fence-flip.html * igt at prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][410] ([i915#3708] / [i915#4077]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-7/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][411] ([i915#3708]) +3 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-12/igt at prime_vgem@fence-flip-hang.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][412] ([i915#9917]) +2 other tests skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-rkl-6/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2: NOTRUN -> [SKIP][413] ([i915#9917]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg2-2/igt at sriov_basic@enable-vfs-bind-unbind-each.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][414] ([i915#12910]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-tglu-8/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at syncobj_wait@invalid-reset-illegal-handle: - shard-dg1: [PASS][415] -> [DMESG-WARN][416] ([i915#4423]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15974/shard-dg1-13/igt at syncobj_wait@invalid-reset-illegal-handle.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/shard-dg1-17/igt at syncobj_wait@invalid-reset-illegal-handle.html #### Possible fixes #### * igt at gem_ccs@susp == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12455/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From mohammed.thasleem at intel.com Mon Jan 20 06:10:17 2025 From: mohammed.thasleem at intel.com (Mohammed Thasleem) Date: Mon, 20 Jan 2025 11:40:17 +0530 Subject: [PATCH v4 1/2] tests/intel/kms_frontbuffer_tracking: Skip fbc-* tests on BMG In-Reply-To: <20250109055652.405793-1-mohammed.thasleem@intel.com> References: <20250109055652.405793-1-mohammed.thasleem@intel.com> Message-ID: <20250120061017.34236-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. v4: Updated subject. (Kamil). Signed-off-by: Mohammed Thasleem --- tests/intel/kms_frontbuffer_tracking.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c index 3d833864a..21bbaf61e 100644 --- a/tests/intel/kms_frontbuffer_tracking.c +++ b/tests/intel/kms_frontbuffer_tracking.c @@ -2755,6 +2755,10 @@ static void prepare_subtest_data(const struct test_mode *t, static void prepare_subtest_screens(const struct test_mode *t) { + /* FBC disabled: Wa_16023588340 */ + igt_skip_on_f((IS_BATTLEMAGE(drm.devid) && t->feature == FEATURE_FBC), + "FBC isn't supported on BMG\n"); + if (t->pipes == PIPE_DUAL) enable_both_screens_and_wait(t); else @@ -2799,6 +2803,10 @@ static void prepare_subtest(const struct test_mode *t, */ static void rte_subtest(const struct test_mode *t) { + /* FBC disabled: Wa_16023588340 */ + igt_skip_on_f((IS_BATTLEMAGE(drm.devid) && t->feature == FEATURE_FBC), + "FBC isn't supported on BMG\n"); + prepare_subtest_data(t, NULL); unset_all_crtcs(); @@ -4294,6 +4302,10 @@ igt_main_args("", long_options, help_str, opt_handler, NULL) t.flip = -1; t.tiling = opt.tiling; + /* FBC disabled: Wa_16023588340 */ + igt_skip_on_f((IS_BATTLEMAGE(drm.devid) && t.feature == FEATURE_FBC), + "FBC isn't supported on BMG\n"); + for_each_pipe(&drm.display, pipe) { if (pipe == default_pipe) { igt_info("pipe-%s: FBC validated in other subtest\n", kmstest_pipe_name(pipe)); -- 2.34.1 From patchwork at emeril.freedesktop.org Mon Jan 20 06:18:04 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 06:18:04 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_series_starting_with_=5Bi-g?= =?utf-8?q?-t=2Cv3=2C1/1=5D_tests/intel/xe=5Feudebug=3A_refactor_exec-queue-?= =?utf-8?q?placements_test_=28rev2=29?= In-Reply-To: <20250117082055.154635-1-jan.sokolowski@intel.com> References: <20250117082055.154635-1-jan.sokolowski@intel.com> Message-ID: <173735388429.1953408.2307993923881865669@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test (rev2) URL : https://patchwork.freedesktop.org/series/143661/ State : success == Summary == CI Bug Log - changes from XEIGT_8198_BAT -> XEIGTPW_12458_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8198 -> IGTPW_12458 * Linux: xe-2508-9033a16532f74ae36c48d729d0855a6e189039df -> xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 IGTPW_12458: bd5959b642d1cc4f538f86b42f8d9b6ed962d764 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2508-9033a16532f74ae36c48d729d0855a6e189039df: 9033a16532f74ae36c48d729d0855a6e189039df xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2: aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 06:19:13 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 06:19:13 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_series_starting_with_=5Bi?= =?utf-8?q?-g-t=2Cv3=2C1/1=5D_tests/intel/xe=5Feudebug=3A_refactor_exec-queu?= =?utf-8?q?e-placements_test_=28rev2=29?= In-Reply-To: <20250117082055.154635-1-jan.sokolowski@intel.com> References: <20250117082055.154635-1-jan.sokolowski@intel.com> Message-ID: <173735395376.1953407.7275001141298728160@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test (rev2) URL : https://patchwork.freedesktop.org/series/143661/ State : success == Summary == CI Bug Log - changes from IGT_8198 -> IGTPW_12458 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/index.html Participating hosts (44 -> 40) ------------------------------ Missing (4): bat-apl-1 fi-kbl-guc fi-glk-j4005 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12458 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-mtlp-8/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/bat-mtlp-8/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_mocs: - bat-twl-1: [PASS][3] -> [ABORT][4] ([i915#12919]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-twl-1/igt at i915_selftest@live at gt_mocs.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/bat-twl-1/igt at i915_selftest@live at gt_mocs.html * igt at runner@aborted: - fi-pnv-d510: NOTRUN -> [FAIL][5] ([i915#13350]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/fi-pnv-d510/igt at runner@aborted.html #### Possible fixes #### * igt at i915_module_load@load: - {bat-mtlp-9}: [DMESG-WARN][6] ([i915#13494]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-mtlp-9/igt at i915_module_load@load.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/bat-mtlp-9/igt at i915_module_load@load.html * igt at i915_selftest@live at workarounds: - bat-arlh-3: [DMESG-FAIL][8] ([i915#12061]) -> [PASS][9] +1 other test pass [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arlh-3/igt at i915_selftest@live at workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/bat-arlh-3/igt at i915_selftest@live at workarounds.html - bat-arls-5: [DMESG-FAIL][10] ([i915#12061]) -> [PASS][11] +1 other test pass [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arls-5/igt at i915_selftest@live at workarounds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/bat-arls-5/igt at i915_selftest@live at workarounds.html - {bat-arls-6}: [DMESG-FAIL][12] ([i915#12061]) -> [PASS][13] +1 other test pass [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arls-6/igt at i915_selftest@live at workarounds.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/bat-arls-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#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8198 -> IGTPW_12458 * Linux: CI_DRM_15978 -> CI_DRM_15982 CI-20190529: 20190529 CI_DRM_15978: db09bf4e722f65089b91798e6d490d21b8dd8143 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15982: aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12458: bd5959b642d1cc4f538f86b42f8d9b6ed962d764 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From mohammed.thasleem at intel.com Mon Jan 20 06:53:42 2025 From: mohammed.thasleem at intel.com (Thasleem, Mohammed) Date: Mon, 20 Jan 2025 06:53:42 +0000 Subject: =?utf-8?B?UkU6IOKclyBpOTE1LkNJLkJBVDogZmFpbHVyZSBmb3Igc2VyaWVzIHN0YXJ0?= =?utf-8?B?aW5nIHdpdGggW3YzLDEvMl0gdGVzdHMvaW50ZWwva21zX2Zyb250YnVmZmVy?= =?utf-8?B?X3RyYWNraW5nOiBBZGQgc2tpcCBjb25kaXRpb24gZm9yIGJtZyBwbGF0Zm9y?= =?utf-8?Q?m?= In-Reply-To: <173641307990.1570160.15706937400613974498@b555e5b46a47> References: <20250109055652.405793-1-mohammed.thasleem@intel.com> <173641307990.1570160.15706937400613974498@b555e5b46a47> Message-ID: Hi, Below are expected skips with this patch: * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: * fi-tgl-1115g4: NOTRUN -> SKIP +206 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-rte: * bat-kbl-2: NOTRUN -> SKIP +160 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: * fi-ivb-3770: NOTRUN -> SKIP +275 other tests skip And all below regression/skips etc are not because of my IGT patch. It might be due to something else requesting for full run. Possible regressions: * igt at i915_selftest@live at objects: * bat-dg2-11: PASS -> ABORT * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu (NEW): * fi-ivb-3770: NOTRUN -> INCOMPLETE * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt: * fi-tgl-1115g4: NOTRUN -> SKIP +247 other tests skip * igt at kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: * bat-dg2-14: PASS -> INCOMPLETE +1 other test incomplete * igt at meta_test@fail-result (NEW): * bat-arlh-2: NOTRUN -> FAIL * igt at xe_module_load@load: * fi-ivb-3770: NOTRUN -> FAIL * fi-kbl-guc: NOTRUN -> FAIL +1 other test fail * fi-hsw-4770: NOTRUN -> FAIL * fi-ilk-650: NOTRUN -> FAIL * bat-mtlp-6: NOTRUN -> ABORT * fi-kbl-x1275: NOTRUN -> FAIL +1 other test fail * fi-blb-e6850: NOTRUN -> FAIL +1 other test fail * bat-kbl-2: NOTRUN -> FAIL * bat-dg1-6: NOTRUN -> DMESG-WARN skips: * igt at i915_pm_rpm: * Statuses : * Exec time: [None] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu: * Statuses : 1 incomplete(s) 6 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt: * Statuses : 6 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-pwrite: * Statuses : 6 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-cpu: * Statuses : 8 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-gtt: * Statuses : 8 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-pwrite: * Statuses : 8 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 8 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 8 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-pwrite: * Statuses : 8 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-cpu: * Statuses : 6 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-gtt: * Statuses : 6 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-pwrite: * Statuses : 6 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-farfromfence-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-cpu: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-pwrite: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-cpu: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-pwrite: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-indfb-fliptrack-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-shrfb-fliptrack-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-indfb-fliptrack-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-shrfb-fliptrack-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-farfromfence-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-cpu: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-pwrite: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-cpu: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-pwrite: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at meta_test@fail-result: * Statuses : 4 fail(s) Issues hit: * igt at i915_selftest@live: * bat-dg2-11: PASS -> ABORT (i915#12435 / i915#13172) * igt at i915_selftest@live at workarounds: * bat-arls-5: PASS -> DMESG-FAIL (i915#13393) * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt: * bat-arlh-2: NOTRUN -> SKIP (i915#11346) +719 other tests skip * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen: * fi-kbl-x1275: NOTRUN -> SKIP +719 other tests skip * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff: * fi-kbl-guc: NOTRUN -> SKIP +719 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: * fi-ilk-650: NOTRUN -> SKIP +285 other tests skip * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite: * fi-hsw-4770: NOTRUN -> SKIP +140 other tests skip * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: * fi-blb-e6850: NOTRUN -> SKIP +719 other tests skip * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: * bat-dg1-6: NOTRUN -> SKIP (i915#12311) +274 other tests skip Possible fixes * igt at i915_selftest@live at workarounds: * {bat-arls-6}: DMESG-FAIL (i915#13393) -> PASS * igt at kms_addfb_basic@basic-x-tiled-legacy: * bat-arlh-2: SKIP (i915#10200 / i915#11346 / i915#11666) -> PASS +1 other test pass * bat-dg1-6: SKIP (i915#12311 / i915#4212) -> PASS +1 other test pass Warnings * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: * bat-arlh-2: SKIP (i915#10200 / i915#11346 / i915#11666 / i915#12203) -> SKIP (i915#11346 / i915#12203) * Thanks, Mohammed Thasleem From: Patchwork Sent: Thursday, January 9, 2025 2:28 PM To: Thasleem, Mohammed Cc: igt-dev at lists.freedesktop.org Subject: ? i915.CI.BAT: failure for series starting with [v3,1/2] tests/intel/kms_frontbuffer_tracking: Add skip condition for bmg platform Patch Details Series: series starting with [v3,1/2] tests/intel/kms_frontbuffer_tracking: Add skip condition for bmg platform URL: https://patchwork.freedesktop.org/series/143304/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12412/index.html CI Bug Log - changes from IGT_8182 -> IGTPW_12412 Summary FAILURE Serious unknown changes coming with IGTPW_12412 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12412, 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_12412/index.html Participating hosts (38 -> 37) Missing (1): fi-snb-2520m Possible new issues Here are the unknown changes that may have been introduced in IGTPW_12412: IGT changes Possible regressions * igt at i915_selftest@live at objects: * bat-dg2-11: PASS -> ABORT * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu (NEW): * fi-ivb-3770: NOTRUN -> INCOMPLETE * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt: * fi-tgl-1115g4: NOTRUN -> SKIP +247 other tests skip * igt at kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: * bat-dg2-14: PASS -> INCOMPLETE +1 other test incomplete * igt at meta_test@fail-result (NEW): * bat-arlh-2: NOTRUN -> FAIL * igt at xe_module_load@load: * fi-ivb-3770: NOTRUN -> FAIL * fi-kbl-guc: NOTRUN -> FAIL +1 other test fail * fi-hsw-4770: NOTRUN -> FAIL * fi-ilk-650: NOTRUN -> FAIL * bat-mtlp-6: NOTRUN -> ABORT * fi-kbl-x1275: NOTRUN -> FAIL +1 other test fail * fi-blb-e6850: NOTRUN -> FAIL +1 other test fail * bat-kbl-2: NOTRUN -> FAIL * bat-dg1-6: NOTRUN -> DMESG-WARN New tests New tests have been introduced between IGT_8182 and IGTPW_12412: New IGT tests (104) * igt at i915_pm_rpm: * Statuses : * Exec time: [None] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu: * Statuses : 1 incomplete(s) 6 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt: * Statuses : 6 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-pwrite: * Statuses : 6 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-cpu: * Statuses : 8 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-gtt: * Statuses : 8 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-pwrite: * Statuses : 8 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 8 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 8 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-pwrite: * Statuses : 8 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-cpu: * Statuses : 6 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-gtt: * Statuses : 6 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-pwrite: * Statuses : 6 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-farfromfence-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-cpu: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-pwrite: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-cpu: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-pwrite: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-indfb-fliptrack-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-shrfb-fliptrack-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-indfb-fliptrack-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-cpu: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-gtt: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-pwrite: * Statuses : 5 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-shrfb-fliptrack-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-farfromfence-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-cpu: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-pwrite: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-cpu: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-gtt: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-pwrite: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt at meta_test@fail-result: * Statuses : 4 fail(s) * Exec time: [0.01, 0.04] s Known issues Here are the changes found in IGTPW_12412 that come from known issues: IGT changes Issues hit * igt at i915_selftest@live: * bat-dg2-11: PASS -> ABORT (i915#12435 / i915#13172) * igt at i915_selftest@live at workarounds: * bat-arls-5: PASS -> DMESG-FAIL (i915#13393) * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt: * bat-arlh-2: NOTRUN -> SKIP (i915#11346) +719 other tests skip * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen: * fi-kbl-x1275: NOTRUN -> SKIP +719 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: * fi-tgl-1115g4: NOTRUN -> SKIP +206 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-rte: * bat-kbl-2: NOTRUN -> SKIP +160 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: * fi-ivb-3770: NOTRUN -> SKIP +275 other tests skip * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff: * fi-kbl-guc: NOTRUN -> SKIP +719 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: * fi-ilk-650: NOTRUN -> SKIP +285 other tests skip * igt at kms_frontbuffer_tracking@pipe-fbc-rte: * fi-tgl-1115g4: NOTRUN -> SKIP (i915#9766) * bat-dg1-6: NOTRUN -> SKIP (i915#12311 / i915#4342) * igt at kms_frontbuffer_tracking@plane-fbc-rte: * fi-tgl-1115g4: NOTRUN -> SKIP (i915#10070) * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite: * fi-hsw-4770: NOTRUN -> SKIP +140 other tests skip * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: * fi-blb-e6850: NOTRUN -> SKIP +719 other tests skip * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: * bat-dg1-6: NOTRUN -> SKIP (i915#12311) +274 other tests skip Possible fixes * igt at i915_selftest@live at workarounds: * {bat-arls-6}: DMESG-FAIL (i915#13393) -> PASS * igt at kms_addfb_basic@basic-x-tiled-legacy: * bat-arlh-2: SKIP (i915#10200 / i915#11346 / i915#11666) -> PASS +1 other test pass * bat-dg1-6: SKIP (i915#12311 / i915#4212) -> PASS +1 other test pass Warnings * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: * bat-arlh-2: SKIP (i915#10200 / i915#11346 / i915#11666 / i915#12203) -> SKIP (i915#11346 / i915#12203) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_8182 -> IGTPW_12412 * Linux: CI_DRM_15924 -> CI_DRM_15927 CI-20190529: 20190529 CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15927: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12412: 12412 IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git -------------- next part -------------- An HTML attachment was scrubbed... URL: From mohammed.thasleem at intel.com Mon Jan 20 07:02:44 2025 From: mohammed.thasleem at intel.com (Thasleem, Mohammed) Date: Mon, 20 Jan 2025 07:02:44 +0000 Subject: =?utf-8?B?UkU6IOKclyBYZS5DSS5GdWxsOiBmYWlsdXJlIGZvciBzZXJpZXMgc3RhcnRp?= =?utf-8?B?bmcgd2l0aCBbdjMsMS8yXSB0ZXN0cy9pbnRlbC9rbXNfZnJvbnRidWZmZXJf?= =?utf-8?Q?tracking:_Add_skip_condition_for_bmg_platform?= In-Reply-To: <173658807385.2294495.6228774488215404246@b555e5b46a47> References: <20250109055652.405793-1-mohammed.thasleem@intel.com> <173658807385.2294495.6228774488215404246@b555e5b46a47> Message-ID: Hi , Below test only expected skips with my patch and rest trailing mail tests are not because of my patch. It might be due to something else requesting for full run. * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: * shard-bmg: FAIL (Intel XE#2333) -> SKIP (Intel XE#2136 / Intel XE#2231) * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: * shard-bmg: FAIL (Intel XE#2333) -> SKIP (Intel XE#2312) +3 other tests skip * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: * shard-bmg: NOTRUN -> SKIP +8 other tests skip * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: * shard-bmg: FAIL (Intel XE#2333) -> SKIP +67 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP * igt at kms_frontbuffer_tracking@fbc-2p-rte: * shard-bmg: SKIP (Intel XE#2312) -> SKIP +1 other test skip * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: * shard-bmg: INCOMPLETE (Intel XE#2050) -> SKIP * From: Patchwork Sent: Saturday, January 11, 2025 3:05 PM To: Thasleem, Mohammed Cc: igt-dev at lists.freedesktop.org Subject: ? Xe.CI.Full: failure for series starting with [v3,1/2] tests/intel/kms_frontbuffer_tracking: Add skip condition for bmg platform Patch Details Series: series starting with [v3,1/2] tests/intel/kms_frontbuffer_tracking: Add skip condition for bmg platform URL: https://patchwork.freedesktop.org/series/143304/ State: failure Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12412/index.html CI Bug Log - changes from XEIGT_8182_full -> XEIGTPW_12412_full Summary FAILURE Serious unknown changes coming with XEIGTPW_12412_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12412_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_12412_full: IGT changes Possible regressions * igt at kms_fbcon_fbt@fbc-suspend: * shard-lnl: PASS -> FAIL * igt at kms_hdr@static-toggle-suspend at pipe-a-dp-2: * shard-dg2-set2: NOTRUN -> ABORT +1 other test abort * igt at kms_plane_cursor@overlay at pipe-c-dp-2-size-64: * shard-bmg: NOTRUN -> INCOMPLETE +1 other test incomplete * igt at xe_sysfs_timeslice_duration@timeslice_duration_us-timeout at vcs: * shard-dg2-set2: PASS -> INCOMPLETE +1 other test incomplete Warnings * igt at xe_wedged@wedged-at-any-timeout: * shard-dg2-set2: SKIP (Intel XE#1130) -> FAIL Known issues Here are the changes found in XEIGTPW_12412_full that come from known issues: IGT changes Issues hit * igt at kms_async_flips@alternate-sync-async-flip-atomic: * shard-bmg: PASS -> FAIL (Intel XE#3701 / Intel XE#3718 / Intel XE#827) * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-d-dp-2: * shard-bmg: PASS -> FAIL (Intel XE#3746) * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: * shard-lnl: PASS -> FAIL (Intel XE#911) +3 other tests fail * igt at kms_async_flips@invalid-async-flip: * shard-bmg: NOTRUN -> SKIP (Intel XE#873) * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#873) * igt at kms_big_fb@4-tiled-8bpp-rotate-270: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#316) * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: * shard-lnl: NOTRUN -> SKIP (Intel XE#1407) +1 other test skip * igt at kms_big_fb@linear-8bpp-rotate-270: * shard-bmg: NOTRUN -> SKIP (Intel XE#2327) +4 other tests skip * 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@y-tiled-max-hw-stride-64bpp-rotate-180: * shard-lnl: NOTRUN -> SKIP (Intel XE#1124) +2 other tests skip * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: * shard-bmg: NOTRUN -> SKIP (Intel XE#1124) +8 other tests skip * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: * shard-bmg: NOTRUN -> SKIP (Intel XE#2314 / Intel XE#2894) * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2191) * igt at kms_bw@linear-tiling-2-displays-3840x2160p: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#367) +1 other test skip * shard-bmg: NOTRUN -> SKIP (Intel XE#367) * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: * shard-lnl: NOTRUN -> SKIP (Intel XE#2887) +6 other tests skip * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455 / Intel XE#787) +26 other tests skip * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs at pipe-b-edp-1: * shard-lnl: PASS -> INCOMPLETE (Intel XE#3862) +1 other test incomplete * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: * shard-bmg: NOTRUN -> SKIP (Intel XE#3432) +2 other tests skip * shard-lnl: NOTRUN -> SKIP (Intel XE#3432) * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-6: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#787) +153 other tests skip * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: * shard-bmg: NOTRUN -> SKIP (Intel XE#2887) +5 other tests skip * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-dp-4: * shard-dg2-set2: NOTRUN -> INCOMPLETE (Intel XE#3124) * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: * shard-dg2-set2: NOTRUN -> DMESG-WARN (Intel XE#1727) * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2907) * igt at kms_cdclk@mode-transition at pipe-a-dp-2: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#314) +3 other tests skip * 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-green-to-red: * shard-lnl: NOTRUN -> SKIP (Intel XE#306) * igt at kms_chamelium_color@ctm-limited-range: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#306) * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: * shard-bmg: NOTRUN -> SKIP (Intel XE#2252) +9 other tests skip * igt at kms_chamelium_frames@hdmi-crc-nonplanar-formats: * shard-lnl: NOTRUN -> SKIP (Intel XE#373) +4 other tests skip * igt at kms_chamelium_hpd@vga-hpd-without-ddc: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#373) +5 other tests skip * igt at kms_content_protection@atomic: * shard-bmg: NOTRUN -> FAIL (Intel XE#1178) +1 other test fail * igt at kms_content_protection@legacy at pipe-a-dp-2: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1178) +3 other tests fail * igt at kms_content_protection@uevent: * shard-lnl: NOTRUN -> SKIP (Intel XE#3278) * igt at kms_cursor_crc@cursor-offscreen-512x170: * shard-bmg: NOTRUN -> SKIP (Intel XE#2321) +1 other test skip * igt at kms_cursor_crc@cursor-random-max-size: * shard-lnl: NOTRUN -> SKIP (Intel XE#1424) +2 other tests skip * igt at kms_cursor_crc@cursor-rapid-movement-512x170: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#308) * igt at kms_cursor_crc@cursor-suspend: * shard-bmg: PASS -> INCOMPLETE (Intel XE#3878) * igt at kms_cursor_crc@cursor-suspend at pipe-d-dp-2: * shard-bmg: NOTRUN -> INCOMPLETE (Intel XE#3878) * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#323) +1 other test skip * shard-bmg: NOTRUN -> SKIP (Intel XE#2286) +1 other test skip * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: * shard-lnl: NOTRUN -> SKIP (Intel XE#309) * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: * shard-bmg: PASS -> SKIP (Intel XE#2291) +2 other tests skip * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: * shard-lnl: NOTRUN -> FAIL (Intel XE#1475) * igt at kms_dsc@dsc-with-output-formats-with-bpc: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455) +10 other tests skip * igt at kms_feature_discovery@psr2: * shard-bmg: NOTRUN -> SKIP (Intel XE#2374) * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1135) * igt at kms_flip@2x-blocking-absolute-wf_vblank: * shard-lnl: NOTRUN -> SKIP (Intel XE#1421) * igt at kms_flip@2x-flip-vs-dpms: * shard-bmg: PASS -> SKIP (Intel XE#2316) +4 other tests skip * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4: * shard-dg2-set2: PASS -> FAIL (Intel XE#3321) * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-dp2-hdmi-a3: * shard-bmg: PASS -> FAIL (Intel XE#3288 / Intel XE#3321) * 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-expired-vblank at ad-hdmi-a6-dp4: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#301) +3 other tests fail * igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1: * shard-lnl: PASS -> FAIL (Intel XE#886) +2 other tests fail * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling at pipe-a-default-mode: * shard-lnl: NOTRUN -> SKIP (Intel XE#1397) +2 other tests skip * igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: * shard-lnl: NOTRUN -> SKIP (Intel XE#1397 / Intel XE#1745) +2 other tests skip * igt at kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling: * shard-bmg: PASS -> SKIP (Intel XE#2136 / Intel XE#2231) +1 other test skip * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode: * shard-bmg: NOTRUN -> SKIP (Intel XE#2293) * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: * shard-lnl: NOTRUN -> SKIP (Intel XE#651) +6 other tests skip * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: * shard-bmg: NOTRUN -> SKIP (Intel XE#2311) +19 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: * shard-lnl: NOTRUN -> SKIP (Intel XE#656) +11 other tests skip * igt at kms_frontbuffer_tracking@fbcdrrs-2p-rte: * shard-bmg: NOTRUN -> SKIP (Intel XE#2312) +2 other tests skip * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#651) +9 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#653) +11 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-rte: * shard-bmg: NOTRUN -> SKIP (Intel XE#2136 / Intel XE#2231) * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#658) * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: * shard-bmg: NOTRUN -> SKIP (Intel XE#2313) +16 other tests skip * igt at kms_hdr@bpc-switch-suspend at pipe-a-hdmi-a-3: * shard-bmg: PASS -> INCOMPLETE (Intel XE#3966) +1 other test incomplete * igt at kms_hdr@brightness-with-hdr: * shard-bmg: NOTRUN -> SKIP (Intel XE#3544) * igt at kms_histogram@algo-basic: * shard-bmg: NOTRUN -> SKIP (Intel XE#3897) * igt at kms_histogram@algo-color: * shard-lnl: NOTRUN -> SKIP (Intel XE#3897) * igt at kms_joiner@invalid-modeset-big-joiner: * shard-bmg: NOTRUN -> SKIP (Intel XE#346) * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#346) * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: * shard-lnl: NOTRUN -> SKIP (Intel XE#356) * igt at kms_panel_fitting@legacy: * shard-bmg: NOTRUN -> SKIP (Intel XE#2486) * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#616) +4 other tests fail * igt at kms_plane_lowres@tiling-x at pipe-b-edp-1: * shard-lnl: NOTRUN -> SKIP (Intel XE#599) +3 other tests skip * igt at kms_plane_scaling@intel-max-src-size: * shard-lnl: NOTRUN -> SKIP (Intel XE#3307) * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2763) +2 other tests skip * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2763 / Intel XE#455) +1 other test skip * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format at pipe-c: * shard-lnl: NOTRUN -> SKIP (Intel XE#2763) +11 other tests skip * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c: * shard-bmg: NOTRUN -> SKIP (Intel XE#2763) +9 other tests skip * igt at kms_pm_dc@dc5-psr: * shard-bmg: NOTRUN -> SKIP (Intel XE#2392) * igt at kms_pm_dc@dc6-dpms: * shard-bmg: NOTRUN -> FAIL (Intel XE#1430) * igt at kms_pm_rpm@dpms-mode-unset-lpsp: * shard-bmg: NOTRUN -> SKIP (Intel XE#1439 / Intel XE#836) * igt at kms_pm_rpm@modeset-non-lpsp: * shard-lnl: NOTRUN -> SKIP (Intel XE#1439 / Intel XE#3141) * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: * shard-lnl: NOTRUN -> SKIP (Intel XE#2893) * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: * shard-bmg: NOTRUN -> SKIP (Intel XE#1489) +5 other tests skip * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1489) +4 other tests skip * igt at kms_psr2_su@page_flip-nv12: * shard-lnl: NOTRUN -> SKIP (Intel XE#1128) * igt at kms_psr@fbc-psr2-cursor-plane-onoff: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2850 / Intel XE#929) +6 other tests skip * igt at kms_psr@pr-primary-blt: * shard-lnl: NOTRUN -> SKIP (Intel XE#1406) +1 other test skip * igt at kms_psr@pr-sprite-plane-onoff: * shard-bmg: NOTRUN -> SKIP (Intel XE#2234 / Intel XE#2850) +10 other tests skip * igt at kms_psr@psr2-primary-render: * shard-bmg: NOTRUN -> SKIP (Intel XE#2234) * igt at kms_rotation_crc@multiplane-rotation: * shard-bmg: PASS -> SKIP (Intel XE#3007) +7 other tests skip * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: * shard-bmg: NOTRUN -> SKIP (Intel XE#2330) * igt at kms_rotation_crc@sprite-rotation-90: * shard-bmg: NOTRUN -> SKIP (Intel XE#3414 / Intel XE#3904) * igt at kms_setmode@basic-clone-single-crtc: * shard-bmg: NOTRUN -> SKIP (Intel XE#1435) * igt at kms_tiled_display@basic-test-pattern-with-chamelium: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1500) * igt at kms_vrr@flip-suspend: * shard-bmg: NOTRUN -> SKIP (Intel XE#1499) * igt at kms_vrr@max-min: * shard-lnl: PASS -> FAIL (Intel XE#1522) +1 other test fail * igt at kms_vrr@negative-basic: * shard-bmg: PASS -> SKIP (Intel XE#1499) * igt at kms_vrr@seamless-rr-switch-vrr: * shard-lnl: NOTRUN -> SKIP (Intel XE#1499) * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1091 / Intel XE#2849) * igt at xe_compute_preempt@compute-threadgroup-preempt at engine-drm_xe_engine_class_compute: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1280 / Intel XE#455) * igt at xe_eudebug@basic-vm-bind-metadata-discovery: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2905) +2 other tests skip * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: * shard-bmg: NOTRUN -> SKIP (Intel XE#3889) * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: * shard-lnl: NOTRUN -> SKIP (Intel XE#3889) * igt at xe_eudebug_online@interrupt-all-set-breakpoint: * shard-lnl: NOTRUN -> SKIP (Intel XE#2905) +2 other tests skip * igt at xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: * shard-bmg: NOTRUN -> SKIP (Intel XE#2905) +5 other tests skip * igt at xe_evict@evict-beng-mixed-many-threads-small: * shard-dg2-set2: PASS -> TIMEOUT (Intel XE#1473 / Intel XE#402) * shard-bmg: NOTRUN -> INCOMPLETE (Intel XE#1473) * igt at xe_evict@evict-beng-mixed-threads-large-multi-vm: * shard-lnl: NOTRUN -> SKIP (Intel XE#688) +4 other tests skip * igt at xe_evict@evict-mixed-many-threads-small: * shard-dg2-set2: PASS -> TIMEOUT (Intel XE#1473) * igt at xe_exec_balancer@many-parallel-userptr-invalidate: * shard-bmg: PASS -> SKIP (Intel XE#1130) +20 other tests skip * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr: * shard-dg2-set2: PASS -> SKIP (Intel XE#1392) +3 other tests skip * igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind: * shard-bmg: NOTRUN -> SKIP (Intel XE#2322) +4 other tests skip * igt at xe_exec_basic@multigpu-once-userptr: * shard-lnl: NOTRUN -> SKIP (Intel XE#1392) +1 other test skip * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#288) +10 other tests skip * igt at xe_gt_freq@freq_suspend: * shard-dg2-set2: PASS -> ABORT (Intel XE#2625) +2 other tests abort * igt at xe_live_ktest@xe_bo: * shard-bmg: NOTRUN -> SKIP (Intel XE#1192) * igt at xe_live_ktest@xe_mocs: * shard-lnl: NOTRUN -> SKIP (Intel XE#1192) * igt at xe_mmap@small-bar: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#512) * igt at xe_module_load@force-load: * shard-bmg: NOTRUN -> SKIP (Intel XE#2457) * igt at xe_module_load@load: * shard-bmg: (PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS) -> (PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, SKIP, PASS, PASS, PASS, PASS, PASS) (Intel XE#2457) * igt at xe_oa@disabled-read-error: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2541 / Intel XE#3573) +1 other test skip * igt at xe_oa@unprivileged-single-ctx-counters: * shard-bmg: NOTRUN -> SKIP (Intel XE#2248) * igt at xe_pat@pat-index-xehpc: * shard-bmg: NOTRUN -> SKIP (Intel XE#1420) * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2838 / Intel XE#979) * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1173) * igt at xe_pm@d3cold-mocs: * shard-lnl: NOTRUN -> SKIP (Intel XE#2284) * igt at xe_pm@s2idle-vm-bind-prefetch: * shard-dg2-set2: PASS -> ABORT (Intel XE#1358) * igt at xe_pm@s4-vm-bind-prefetch: * shard-lnl: PASS -> ABORT (Intel XE#1358 / Intel XE#1607 / Intel XE#1794) * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#944) * igt at xe_query@multigpu-query-topology-l3-bank-mask: * shard-lnl: NOTRUN -> SKIP (Intel XE#944) +1 other test skip * igt at xe_vm@munmap-style-unbind-userptr-inval-front: * shard-bmg: NOTRUN -> SKIP (Intel XE#1130) +1 other test skip * igt at xe_wedged@wedged-mode-toggle: * shard-bmg: PASS -> ABORT (Intel XE#3084) Possible fixes * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: * shard-lnl: FAIL (Intel XE#3719) -> PASS +3 other tests pass * igt at kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0: * shard-dg2-set2: SKIP (Intel XE#2136) -> PASS +2 other tests pass * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> PASS +1 other test pass * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: * shard-bmg: SKIP (Intel XE#2314 / Intel XE#2894) -> PASS * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: * shard-dg2-set2: INCOMPLETE (Intel XE#3862) -> PASS +1 other test pass * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-dp-4: * shard-dg2-set2: INCOMPLETE (Intel XE#3124) -> PASS * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6: * shard-dg2-set2: DMESG-WARN (Intel XE#1727 / Intel XE#3113) -> PASS * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: * shard-bmg: SKIP (Intel XE#2291) -> PASS +1 other test pass * igt at kms_cursor_legacy@cursora-vs-flipa-legacy: * shard-bmg: INCOMPLETE (Intel XE#3226) -> PASS * igt at kms_cursor_legacy@torture-bo at pipe-a: * shard-lnl: DMESG-WARN (Intel XE#877) -> PASS +1 other test pass * igt at kms_dither@fb-8bpc-vs-panel-6bpc: * shard-bmg: SKIP (Intel XE#1340) -> PASS * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: * shard-bmg: FAIL (Intel XE#3321) -> PASS +1 other test pass * igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3: * shard-bmg: FAIL (Intel XE#2882) -> PASS * igt at kms_flip@absolute-wf_vblank: * shard-lnl: INCOMPLETE (Intel XE#2049) -> PASS * igt at kms_flip@absolute-wf_vblank at b-edp1: * shard-lnl: INCOMPLETE -> PASS * igt at kms_flip@basic-flip-vs-wf_vblank: * shard-dg2-set2: FAIL (Intel XE#3098) -> PASS * igt at kms_flip@flip-vs-blocking-wf-vblank: * shard-dg2-set2: INCOMPLETE (Intel XE#3937) -> PASS * igt at kms_flip@flip-vs-expired-vblank-interruptible: * shard-bmg: FAIL (Intel XE#2882 / Intel XE#3288) -> PASS +1 other test pass * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp2: * shard-bmg: FAIL (Intel XE#3288) -> PASS * igt at kms_flip@flip-vs-expired-vblank at a-dp4: * shard-dg2-set2: FAIL (Intel XE#3321) -> PASS * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: * shard-dg2-set2: FAIL (Intel XE#301) -> PASS +3 other tests pass * igt at kms_flip@flip-vs-expired-vblank at d-dp4: * shard-dg2-set2: FAIL (Intel XE#301 / Intel XE#3321) -> PASS * igt at kms_flip@flip-vs-rmfb at d-hdmi-a3: * shard-bmg: INCOMPLETE -> PASS +3 other tests pass * igt at kms_flip@flip-vs-suspend-interruptible: * shard-bmg: INCOMPLETE (Intel XE#2597) -> PASS * shard-dg2-set2: INCOMPLETE (Intel XE#2049 / Intel XE#2597) -> PASS +1 other test pass * igt at kms_flip@flip-vs-suspend-interruptible at d-hdmi-a3: * shard-bmg: INCOMPLETE (Intel XE#2597 / Intel XE#2635) -> PASS * igt at kms_flip@flip-vs-suspend at c-dp4: * shard-dg2-set2: INCOMPLETE (Intel XE#2049) -> PASS * igt at kms_joiner@basic-force-big-joiner: * shard-bmg: SKIP (Intel XE#3012) -> PASS * igt at kms_lease@possible-crtcs-filtering: * shard-bmg: SKIP (Intel XE#3007) -> PASS +8 other tests pass * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> PASS +5 other tests pass * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: * shard-bmg: SKIP (Intel XE#2446) -> PASS * shard-dg2-set2: SKIP (Intel XE#2446) -> PASS * igt at kms_pm_rpm@system-suspend-modeset: * shard-bmg: DMESG-WARN -> PASS * igt at kms_setmode@invalid-clone-single-crtc-stealing: * shard-bmg: SKIP (Intel XE#1435) -> PASS * igt at xe_exec_basic@many-execqueues-userptr-invalidate-race: * shard-bmg: SKIP (Intel XE#1130) -> PASS +18 other tests pass * igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind: * shard-dg2-set2: SKIP (Intel XE#1392) -> PASS +1 other test pass * igt at xe_exec_basic@once-rebind: * shard-dg2-set2: SKIP (Intel XE#1130) -> PASS +11 other tests pass * igt at xe_live_ktest@xe_dma_buf: * shard-bmg: SKIP (Intel XE#1192) -> PASS * igt at xe_module_load@load: * shard-dg2-set2: (PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, SKIP, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS) (Intel XE#378) -> (PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS) Warnings * igt at kms_async_flips@invalid-async-flip-atomic: * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel XE#3768) * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#3768) * igt at kms_big_fb@y-tiled-16bpp-rotate-0: * shard-bmg: SKIP (Intel XE#1124) -> SKIP (Intel XE#2136 / Intel XE#2231) * igt at kms_big_fb@y-tiled-32bpp-rotate-180: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#1124) * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#1124) * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs: * shard-bmg: SKIP (Intel XE#2887) -> SKIP (Intel XE#2136 / Intel XE#2231) * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: * shard-dg2-set2: SKIP (Intel XE#2136 / Intel XE#2351) -> SKIP (Intel XE#455 / Intel XE#787) * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2887) +2 other tests skip * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#455 / Intel XE#787) +1 other test skip * igt at kms_chamelium_color@ctm-green-to-red: * shard-bmg: SKIP (Intel XE#2325) -> SKIP (Intel XE#3007) * igt at kms_chamelium_hpd@hdmi-hpd-after-hibernate: * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2252) +1 other test skip * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel XE#373) +1 other test skip * igt at kms_content_protection@atomic-dpms: * shard-bmg: FAIL (Intel XE#1178) -> SKIP (Intel XE#2341) * igt at kms_content_protection@mei-interface: * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2341) * igt at kms_cursor_crc@cursor-onscreen-128x42: * shard-bmg: SKIP (Intel XE#2320) -> SKIP (Intel XE#3007) * igt at kms_cursor_crc@cursor-rapid-movement-max-size: * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2320) +1 other test skip * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel XE#455) +1 other test skip * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: * shard-bmg: DMESG-WARN (Intel XE#877) -> SKIP (Intel XE#2291) * igt at kms_dsc@dsc-with-output-formats-with-bpc: * shard-bmg: SKIP (Intel XE#2244) -> SKIP (Intel XE#2136 / Intel XE#2231) * igt at kms_fbcon_fbt@fbc-suspend: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> FAIL (Intel XE#1695) * igt at kms_feature_discovery@chamelium: * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2372) * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel XE#701) * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: * shard-bmg: SKIP (Intel XE#2293 / Intel XE#2380) -> SKIP (Intel XE#2136 / Intel XE#2231) * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2293 / Intel XE#2380) * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#455) * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt: * shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#2312) +8 other tests skip * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2311) +3 other tests skip * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt: * shard-dg2-set2: SKIP (Intel XE#2136 / Intel XE#2351) -> SKIP (Intel XE#651) +2 other tests skip * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff: * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#651) * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc: * shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#2136 / Intel XE#2231) +1 other test skip * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2311) +4 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#653) +2 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: * shard-bmg: SKIP (Intel XE#2313) -> SKIP (Intel XE#2136 / Intel XE#2231) +3 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt: * shard-bmg: SKIP (Intel XE#2313) -> SKIP (Intel XE#2312) +11 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2313) +2 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2313) +4 other tests skip * shard-dg2-set2: SKIP (Intel XE#2136 / Intel XE#2351) -> SKIP (Intel XE#653) +1 other test skip * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: * shard-bmg: SKIP (Intel XE#1489) -> SKIP (Intel XE#2136 / Intel XE#2231) * igt at kms_psr2_su@frontbuffer-xrgb8888: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2387) * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#1122) * igt at kms_psr@fbc-pr-sprite-blt: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2234 / Intel XE#2850) * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#2850 / Intel XE#929) * igt at kms_psr@fbc-psr2-sprite-blt: * shard-bmg: SKIP (Intel XE#2234 / Intel XE#2850) -> SKIP (Intel XE#2136 / Intel XE#2231) * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#3414 / Intel XE#3904) * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel XE#3414) * igt at kms_writeback@writeback-check-output-xrgb2101010: * shard-bmg: SKIP (Intel XE#756) -> SKIP (Intel XE#3007) * igt at xe_compute_preempt@compute-threadgroup-preempt: * shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#1280 / Intel XE#455) * igt at xe_eudebug@basic-vm-bind-extended-discovery: * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#2905) +1 other test skip * igt at xe_evict@evict-beng-mixed-threads-large: * shard-bmg: TIMEOUT (Intel XE#1473) -> INCOMPLETE (Intel XE#1473) +1 other test incomplete * igt at xe_evict@evict-beng-threads-large: * shard-bmg: FAIL (Intel XE#1000) -> TIMEOUT (Intel XE#1473) * igt at xe_evict@evict-mixed-many-threads-large: * shard-bmg: INCOMPLETE (Intel XE#1473) -> TIMEOUT (Intel XE#1473) * igt at xe_evict@evict-mixed-many-threads-small: * shard-bmg: FAIL (Intel XE#1000) -> TIMEOUT (Intel XE#1473 / Intel XE#2472) +1 other test timeout * igt at xe_exec_basic@multigpu-no-exec-basic-defer-bind: * shard-bmg: SKIP (Intel XE#2322) -> SKIP (Intel XE#1130) * igt at xe_exec_basic@multigpu-once-null-rebind: * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#2322) * igt at xe_exec_fault_mode@many-execqueues-basic-imm: * shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#288) * igt at xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: * shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#2360) * igt at xe_live_ktest@xe_eudebug: * shard-bmg: SKIP (Intel XE#2833) -> SKIP (Intel XE#1192) * igt at xe_peer2peer@read: * shard-bmg: SKIP (Intel XE#2557) -> SKIP (Intel XE#2427) * shard-dg2-set2: SKIP (Intel XE#1061) -> FAIL (Intel XE#1173) * igt at xe_query@multigpu-query-uc-fw-version-huc: * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#944) * shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#944) Build changes * IGT: IGT_8182 -> IGTPW_12412 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a IGTPW_12412: 12412 IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2459-9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a -------------- next part -------------- An HTML attachment was scrubbed... URL: From mohammed.thasleem at intel.com Mon Jan 20 07:14:07 2025 From: mohammed.thasleem at intel.com (Mohammed Thasleem) Date: Mon, 20 Jan 2025 12:44:07 +0530 Subject: [PATCH i-g-t v4] tests/intel/kms_fbcon_fbt: Skip FBC testing on BMG platform In-Reply-To: <20241113110104.125403-1-mohammed.thasleem@intel.com> References: <20241113110104.125403-1-mohammed.thasleem@intel.com> Message-ID: <20250120071407.3434-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. v4: Update subject. (Kamil) Signed-off-by: Mohammed Thasleem Reviewed-by: 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 mohammed.thasleem at intel.com Mon Jan 20 07:19:38 2025 From: mohammed.thasleem at intel.com (Mohammed Thasleem) Date: Mon, 20 Jan 2025 12:49:38 +0530 Subject: [PATCH i-g-t v4] tests/intel/kms_dirtyfb: Skip FBC testing on BMG platform In-Reply-To: <20250103104335.61694-1-mohammed.thasleem@intel.com> References: <20250103104335.61694-1-mohammed.thasleem@intel.com> Message-ID: <20250120071938.5358-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. v4: Update subject. (Kamil) 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 4cbd1a2f9..f2bdd4546 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; @@ -364,6 +364,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)); @@ -381,6 +382,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 Mon Jan 20 08:06:56 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 08:06:56 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_series_starting_with_=5Bi-?= =?utf-8?q?g-t=2Cv3=2C1/1=5D_tests/intel/xe=5Feudebug=3A_refactor_exec-queue?= =?utf-8?q?-placements_test_=28rev2=29?= In-Reply-To: <20250117082055.154635-1-jan.sokolowski@intel.com> References: <20250117082055.154635-1-jan.sokolowski@intel.com> Message-ID: <173736041632.2030309.11456545425797117334@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test (rev2) URL : https://patchwork.freedesktop.org/series/143661/ State : failure == Summary == CI Bug Log - changes from XEIGT_8198_full -> XEIGTPW_12458_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12458_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12458_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_12458_full: ### IGT changes ### #### Possible regressions #### * igt at kms_async_flips@alternate-sync-async-flip: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_async_flips@alternate-sync-async-flip.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@async-flip-with-page-flip-events: - shard-bmg: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_async_flips@async-flip-with-page-flip-events.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-2/igt at kms_async_flips@async-flip-with-page-flip-events.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][5] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank at c-dp2: - shard-bmg: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at c-dp2.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at c-dp2.html * igt at kms_properties@connector-properties-atomic at pipe-a-dp-4: - shard-dg2-set2: [PASS][8] -> [FAIL][9] +1 other test fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_properties@connector-properties-atomic at pipe-a-dp-4.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at kms_properties@connector-properties-atomic at pipe-a-dp-4.html #### Warnings #### * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [SKIP][10] ([Intel XE#2423]) -> [FAIL][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at xe_sriov_auto_provisioning@exclusive-ranges: - shard-bmg: [SKIP][12] ([Intel XE#1130]) -> [SKIP][13] [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_sriov_auto_provisioning@exclusive-ranges.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at xe_sriov_auto_provisioning@exclusive-ranges.html New tests --------- New tests have been introduced between XEIGT_8198_full and XEIGTPW_12458_full: ### New IGT tests (11) ### * igt at kms_atomic_interruptible@legacy-cursor at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [6.28] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.85] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ac-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.83] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ad-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.66] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at bc-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.63] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at bd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.62] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at cd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.66] s * igt at kms_sequence@get-idle at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.47] s * igt at kms_sequence@get-idle at pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.24] s * igt at kms_sequence@get-idle at pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.23] s * igt at kms_sequence@get-idle at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.23] s Known issues ------------ Here are the changes found in XEIGTPW_12458_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getversion@basic: - shard-bmg: [PASS][14] -> [FAIL][15] ([Intel XE#3440]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at core_getversion@basic.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at core_getversion@basic.html * igt at core_hotunplug@hotreplug-lateclose: - shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#1885]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at core_hotunplug@hotreplug-lateclose.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at core_hotunplug@hotreplug-lateclose.html * igt at core_setmaster@master-drop-set-user: - shard-bmg: [PASS][18] -> [FAIL][19] ([Intel XE#3249]) +1 other test fail [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at core_setmaster@master-drop-set-user.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at core_setmaster@master-drop-set-user.html * igt at fbdev@info: - shard-dg2-set2: [PASS][20] -> [SKIP][21] ([Intel XE#2134]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at fbdev@info.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at fbdev@info.html * igt at fbdev@pan: - shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2134]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at fbdev@pan.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at fbdev@pan.html * igt at kms_async_flips@alternate-sync-async-flip at pipe-b-dp-2: - shard-bmg: NOTRUN -> [FAIL][24] ([Intel XE#827]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip at pipe-b-dp-2.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1407]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-5/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#316]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@linear-64bpp-rotate-180: - shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_big_fb@linear-64bpp-rotate-180.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_big_fb@linear-64bpp-rotate-180.html * igt at kms_big_fb@x-tiled-addfb: - shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#2136]) +24 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_big_fb@x-tiled-addfb.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_big_fb@x-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-3/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_bw@connected-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_12458/shard-dg2-436/igt at kms_bw@connected-linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-4-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1512]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-7/igt at kms_bw@linear-tiling-4-displays-2560x1440p.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs at pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs at pipe-b-dp-2.html * igt at kms_ccs@crc-primary-basic-y-tiled-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#787]) +13 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at kms_ccs@crc-primary-basic-y-tiled-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2887]) +5 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt at kms_chamelium_color@ctm-negative: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#306]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-8/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#373]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-3/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#307]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-8/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@srm at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][43] ([Intel XE#1178]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-2/igt at kms_content_protection@srm at pipe-a-dp-2.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][44] ([Intel XE#1188]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1424]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-7/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#2321]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-4/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#308]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#309]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-3/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-bmg: [PASS][49] -> [SKIP][50] ([Intel XE#2291]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipb-toggle.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-dp-2: - shard-bmg: NOTRUN -> [FAIL][51] ([Intel XE#2141]) +1 other test fail [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-dp-2.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#1340]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-3.html * igt at kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#703]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_feature_discovery@display-3x.html * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1421]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt at kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][55] -> [FAIL][56] ([Intel XE#301]) +3 other tests fail [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/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-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2316]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_flip@2x-flip-vs-rmfb-interruptible.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [PASS][59] -> [FAIL][60] ([Intel XE#886]) +2 other tests fail [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-8/igt at kms_flip@blocking-wf_vblank.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-4/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#2423] / [i915#2575]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank-interruptible.html - shard-lnl: [PASS][62] -> [FAIL][63] ([Intel XE#301]) +1 other test fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-2/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-3/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-expired-vblank at d-dp2: - shard-bmg: [PASS][64] -> [FAIL][65] ([Intel XE#3321]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at d-dp2.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at d-dp2.html * igt at kms_flip@flip-vs-panning-vs-hang: - shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#2423]) +107 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_flip@flip-vs-panning-vs-hang.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_flip@flip-vs-panning-vs-hang.html * igt at kms_flip@wf_vblank-ts-check-interruptible: - shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#2882]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_flip@wf_vblank-ts-check-interruptible.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_flip@wf_vblank-ts-check-interruptible.html * igt at kms_flip@wf_vblank-ts-check-interruptible at a-dp2: - shard-bmg: NOTRUN -> [FAIL][70] ([Intel XE#2882]) +2 other tests fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_flip@wf_vblank-ts-check-interruptible at a-dp2.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#455]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2293] / [Intel XE#2380]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1401]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2380]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2293]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#651]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#651]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-5/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#656]) +15 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][80] -> [SKIP][81] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2-set2: [PASS][82] -> [SKIP][83] ([Intel XE#2136]) +11 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#653]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt at kms_hdr@invalid-metadata-sizes: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1503]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-3/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#346]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-1/igt at kms_joiner@basic-big-joiner.html * igt at kms_lease@invalid-create-leases: - shard-dg2-set2: [PASS][87] -> [SKIP][88] ([Intel XE#2423] / [i915#2575]) +24 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_lease@invalid-create-leases.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_lease@invalid-create-leases.html * igt at kms_plane_cursor@viewport: - shard-dg2-set2: [PASS][89] -> [FAIL][90] ([Intel XE#616]) +1 other test fail [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_plane_cursor@viewport.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt at kms_plane_cursor@viewport.html * igt at kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#2493]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-7/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-bmg: [PASS][92] -> [SKIP][93] ([Intel XE#3007]) +6 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20 at pipe-b: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#2763]) +7 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-8/igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2763]) +15 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][96] ([Intel XE#1430]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-8/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@legacy-planes: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2446]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_pm_rpm@legacy-planes.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-bmg: [PASS][98] -> [SKIP][99] ([Intel XE#2446]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#1489]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/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-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2893]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1128]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-8/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1406]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-7/igt at kms_psr@fbc-pr-cursor-plane-move.html * igt at kms_psr@fbc-psr-basic: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_psr@fbc-psr-basic.html * igt at kms_psr@psr2-no-drrs at edp-1: - shard-lnl: [PASS][105] -> [FAIL][106] ([Intel XE#3924]) +1 other test fail [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-6/igt at kms_psr@psr2-no-drrs at edp-1.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt at kms_psr@psr2-no-drrs at edp-1.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#362]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-4/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1499]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-1/igt at kms_vrr@negative-basic.html * igt at xe_ccs@block-copy-compressed-inc-dimension: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#1130]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at xe_ccs@block-copy-compressed-inc-dimension.html * igt at xe_compute_preempt@compute-preempt-many at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#1280] / [Intel XE#455]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at xe_compute_preempt@compute-preempt-many at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-client: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2905]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-8/igt at xe_eudebug@basic-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2905]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_evict@evict-large-cm: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#688]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt at xe_evict@evict-large-cm.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1392]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-1/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_basic@once-userptr-invalidate-race: - shard-dg2-set2: [PASS][115] -> [SKIP][116] ([Intel XE#1130]) +59 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at xe_exec_basic@once-userptr-invalidate-race.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at xe_exec_basic@once-userptr-invalidate-race.html * igt at xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#288]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at xe_exec_fault_mode@once-invalid-userptr-fault.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1192]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-4/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][119] -> [SKIP][120] ([Intel XE#1192]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_live_ktest@xe_dma_buf.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2229]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at xe_live_ktest@xe_migrate at xe_validate_ccs_kunit.html * igt at xe_module_load@reload-no-display: - shard-bmg: [PASS][122] -> [FAIL][123] ([Intel XE#3546]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at xe_module_load@reload-no-display.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at xe_module_load@reload-no-display.html * igt at xe_oa@syncs-syncobj-wait-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2541] / [Intel XE#3573]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt at xe_oa@syncs-syncobj-wait-cfg.html * igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][125] ([Intel XE#1173]) +1 other test fail [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-5/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@s3-multiple-execs: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#584]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-4/igt at xe_pm@s3-multiple-execs.html * igt at xe_query@multigpu-query-gt-list: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#944]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt at xe_query@multigpu-query-gt-list.html - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#944]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-7/igt at xe_query@multigpu-query-gt-list.html * igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][130] -> [SKIP][131] ([Intel XE#1130]) +241 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Possible fixes #### * igt at core_getversion@all-cards: - shard-bmg: [FAIL][132] ([Intel XE#3249]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at core_getversion@all-cards.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at core_getversion@all-cards.html * igt at core_hotunplug@hotrebind: - shard-bmg: [SKIP][134] ([Intel XE#1885]) -> [PASS][135] +1 other test pass [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at core_hotunplug@hotrebind.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at core_hotunplug@hotrebind.html * igt at fbdev@nullptr: - shard-bmg: [SKIP][136] ([Intel XE#2134]) -> [PASS][137] +2 other tests pass [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at fbdev@nullptr.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-2/igt at fbdev@nullptr.html * igt at kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][138] ([Intel XE#2423]) -> [PASS][139] +104 other tests pass [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_addfb_basic@bad-pitch-999.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_addfb_basic@bad-pitch-999.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [FAIL][140] ([Intel XE#911]) -> [PASS][141] +3 other tests pass [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-3/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-1/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: [FAIL][142] ([Intel XE#3908]) -> [PASS][143] +1 other test pass [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][144] ([Intel XE#2136]) -> [PASS][145] +28 other tests pass [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-8bpp-rotate-0: - shard-dg2-set2: [SKIP][146] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][147] [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_big_fb@linear-8bpp-rotate-0.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at kms_big_fb@linear-8bpp-rotate-0.html * igt at kms_color@degamma at pipe-d-hdmi-a-3: - shard-bmg: [DMESG-WARN][148] ([Intel XE#877]) -> [PASS][149] +1 other test pass [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_color@degamma at pipe-d-hdmi-a-3.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_color@degamma at pipe-d-hdmi-a-3.html * igt at kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [SKIP][150] ([Intel XE#2291]) -> [PASS][151] [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-2/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [FAIL][152] ([Intel XE#1475]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-6/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_cursor_legacy@single-bo: - shard-bmg: [SKIP][154] ([Intel XE#3007]) -> [PASS][155] +2 other tests pass [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_cursor_legacy@single-bo.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_cursor_legacy@single-bo.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][156] ([Intel XE#2882]) -> [PASS][157] +1 other test pass [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-hdmi-a6-dp4.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_flip@2x-flip-vs-absolute-wf_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: [FAIL][158] ([Intel XE#301]) -> [PASS][159] +7 other tests pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: [SKIP][160] ([Intel XE#2316]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@flip-vs-expired-vblank at b-dp2: - shard-bmg: [FAIL][162] ([Intel XE#3321]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at b-dp2.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at b-dp2.html * igt at kms_flip@flip-vs-expired-vblank at c-dp4: - shard-dg2-set2: [FAIL][164] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][165] +1 other test pass [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [FAIL][166] ([Intel XE#886]) -> [PASS][167] +1 other test pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-2/igt at kms_flip@plain-flip-ts-check-interruptible.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg2-set2: [SKIP][168] ([Intel XE#2136]) -> [PASS][169] +1 other test pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][170] ([Intel XE#718]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-5/igt at kms_pm_dc@dc5-psr.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@i2c: - shard-bmg: [SKIP][172] ([Intel XE#2446]) -> [PASS][173] +3 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_pm_rpm@i2c.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt at kms_pm_rpm@i2c.html * igt at kms_sequence@get-idle: - shard-dg2-set2: [SKIP][174] ([Intel XE#2423] / [i915#2575]) -> [PASS][175] +8 other tests pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_sequence@get-idle.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at kms_sequence@get-idle.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-bmg: [SKIP][176] ([Intel XE#1435]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [FAIL][178] ([Intel XE#2159]) -> [PASS][179] +1 other test pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-5/igt at kms_vrr@cmrr at pipe-a-edp-1.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-5/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system: - shard-lnl: [INCOMPLETE][180] ([Intel XE#2771]) -> [PASS][181] +1 other test pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-7/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system.html * igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [SKIP][182] ([Intel XE#1130]) -> [PASS][183] +258 other tests pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt at xe_live_ktest@xe_migrate: - shard-bmg: [SKIP][184] ([Intel XE#1192]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at xe_live_ktest@xe_migrate.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at xe_live_ktest@xe_migrate.html * igt at xe_module_load@reload: - shard-bmg: [FAIL][186] ([Intel XE#3546]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_module_load@reload.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at xe_module_load@reload.html * igt at xe_vm@large-misaligned-binds-2097152: - shard-dg2-set2: [SKIP][188] ([Intel XE#1130]) -> [PASS][189] +10 other tests pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_vm@large-misaligned-binds-2097152.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt at xe_vm@large-misaligned-binds-2097152.html * igt at xe_wedged@wedged-mode-toggle: - shard-bmg: [ABORT][190] ([Intel XE#3084]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at xe_wedged@wedged-mode-toggle.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at xe_wedged@wedged-mode-toggle.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][192] ([Intel XE#2423]) -> [SKIP][193] ([Intel XE#2233]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [SKIP][194] ([Intel XE#2423]) -> [FAIL][195] ([Intel XE#827]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][196] ([Intel XE#2423]) -> [SKIP][197] ([Intel XE#2385]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][198] ([Intel XE#2370]) -> [SKIP][199] ([Intel XE#2423]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: [SKIP][200] ([Intel XE#2327]) -> [SKIP][201] ([Intel XE#2136]) +6 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_big_fb@linear-32bpp-rotate-270.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@x-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][202] ([Intel XE#2136]) -> [SKIP][203] ([Intel XE#2327]) +5 other tests skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_big_fb@x-tiled-32bpp-rotate-90.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_big_fb@x-tiled-32bpp-rotate-90.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][204] ([Intel XE#316]) -> [SKIP][205] ([Intel XE#2136]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-16bpp-rotate-180: - shard-bmg: [SKIP][206] ([Intel XE#1124]) -> [SKIP][207] ([Intel XE#2136]) +13 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_big_fb@y-tiled-16bpp-rotate-180.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_big_fb@y-tiled-16bpp-rotate-180.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][208] ([Intel XE#2136]) -> [SKIP][209] ([Intel XE#1124]) +13 other tests skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html - shard-dg2-set2: [SKIP][210] ([Intel XE#1124]) -> [SKIP][211] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][212] ([Intel XE#2136]) -> [SKIP][213] ([Intel XE#610]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-270: - 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_8198/shard-bmg-4/igt at kms_big_fb@yf-tiled-32bpp-rotate-270.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_big_fb@yf-tiled-32bpp-rotate-270.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_8198/shard-dg2-436/igt at kms_big_fb@yf-tiled-32bpp-rotate-270.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-bmg: [SKIP][218] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][219] ([Intel XE#2423]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][220] ([Intel XE#2423]) -> [SKIP][221] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html - shard-dg2-set2: [SKIP][222] ([Intel XE#2191]) -> [SKIP][223] ([Intel XE#2423] / [i915#2575]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: [SKIP][224] ([Intel XE#2423]) -> [SKIP][225] ([Intel XE#367]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: [SKIP][226] ([Intel XE#367]) -> [SKIP][227] ([Intel XE#2423] / [i915#2575]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][228] ([Intel XE#367]) -> [SKIP][229] ([Intel XE#2423]) +4 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][230] ([Intel XE#2887]) -> [SKIP][231] ([Intel XE#2136]) +17 other tests skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-bmg: [SKIP][232] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][233] ([Intel XE#2136]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs: - shard-dg2-set2: [SKIP][234] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][235] ([Intel XE#2136]) +4 other tests skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][236] ([Intel XE#2136]) -> [SKIP][237] ([Intel XE#2887]) +20 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][238] ([Intel XE#2887]) -> [SKIP][239] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html - shard-dg2-set2: [SKIP][240] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][241] ([Intel XE#2136] / [Intel XE#2351]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][242] ([Intel XE#3432]) -> [SKIP][243] ([Intel XE#2136]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][244] ([Intel XE#2136]) -> [SKIP][245] ([Intel XE#3432]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/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-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][246] ([Intel XE#2692] / [Intel XE#4010]) -> [SKIP][247] ([Intel XE#2136]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][248] ([Intel XE#2724]) -> [SKIP][249] ([Intel XE#2136]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_cdclk@mode-transition-all-outputs.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][250] ([Intel XE#2325]) -> [SKIP][251] ([Intel XE#2423]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_chamelium_color@ctm-0-50.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-dg2-set2: [SKIP][252] ([Intel XE#306]) -> [SKIP][253] ([Intel XE#2423] / [i915#2575]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_chamelium_color@ctm-green-to-red.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-bmg: [SKIP][254] ([Intel XE#2423]) -> [SKIP][255] ([Intel XE#2325]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_chamelium_color@ctm-red-to-blue.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-2/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-bmg: [SKIP][256] ([Intel XE#2252]) -> [SKIP][257] ([Intel XE#2423]) +13 other tests skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][258] ([Intel XE#2423]) -> [SKIP][259] ([Intel XE#2252]) +13 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_chamelium_hpd@common-hpd-after-suspend.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: [SKIP][260] ([Intel XE#2252]) -> [SKIP][261] ([Intel XE#3007]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][262] ([Intel XE#373]) -> [SKIP][263] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_chamelium_hpd@vga-hpd.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_chamelium_hpd@vga-hpd.html * igt at kms_content_protection@content-type-change: - shard-bmg: [SKIP][264] ([Intel XE#2341]) -> [SKIP][265] ([Intel XE#2423]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_content_protection@content-type-change.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][266] ([Intel XE#2390]) -> [SKIP][267] ([Intel XE#2423]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_content_protection@dp-mst-type-0.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-bmg: [FAIL][268] ([Intel XE#1178]) -> [SKIP][269] ([Intel XE#2423]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_content_protection@legacy.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_content_protection@legacy.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][270] ([Intel XE#2423]) -> [SKIP][271] ([Intel XE#2341]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_content_protection@mei-interface.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-bmg: [SKIP][272] ([Intel XE#2423]) -> [FAIL][273] ([Intel XE#1178]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_content_protection@srm.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-2/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-bmg: [SKIP][274] ([Intel XE#2341]) -> [FAIL][275] ([Intel XE#1188]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_content_protection@uevent.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: [SKIP][276] ([Intel XE#2423]) -> [SKIP][277] ([Intel XE#2320]) +6 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-256x85.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-dg2-set2: [SKIP][278] ([Intel XE#455]) -> [SKIP][279] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_cursor_crc@cursor-onscreen-32x32.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][280] ([Intel XE#3007]) -> [SKIP][281] ([Intel XE#2320]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_cursor_crc@cursor-random-32x32.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_cursor_crc@cursor-random-32x32.html - shard-dg2-set2: [SKIP][282] ([Intel XE#2423] / [i915#2575]) -> [SKIP][283] ([Intel XE#455]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_cursor_crc@cursor-random-32x32.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-bmg: [SKIP][284] ([Intel XE#2423]) -> [SKIP][285] ([Intel XE#2321]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_crc@cursor-random-512x170.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: [SKIP][286] ([Intel XE#2320]) -> [SKIP][287] ([Intel XE#2423]) +7 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-bmg: [SKIP][288] ([Intel XE#2321]) -> [SKIP][289] ([Intel XE#2423]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_cursor_crc@cursor-sliding-512x170.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][290] ([Intel XE#2423]) -> [SKIP][291] ([Intel XE#2291]) +3 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: [SKIP][292] ([Intel XE#2423]) -> [SKIP][293] ([Intel XE#2286]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg2-set2: [SKIP][294] ([Intel XE#323]) -> [SKIP][295] ([Intel XE#2423] / [i915#2575]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [SKIP][296] ([Intel XE#2423]) -> [DMESG-WARN][297] ([Intel XE#877]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [DMESG-WARN][298] ([Intel XE#877]) -> [SKIP][299] ([Intel XE#2423]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: [SKIP][300] ([Intel XE#2291]) -> [SKIP][301] ([Intel XE#2423]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: [SKIP][302] ([Intel XE#2286]) -> [SKIP][303] ([Intel XE#2423]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/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: [SKIP][304] ([Intel XE#2136]) -> [FAIL][305] ([Intel XE#2141]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][306] ([Intel XE#2423]) -> [SKIP][307] ([Intel XE#2323]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_display_modes@mst-extended-mode-negative.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][308] ([Intel XE#2423]) -> [SKIP][309] ([Intel XE#1340]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][310] ([Intel XE#3070]) -> [SKIP][311] ([Intel XE#2136]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_dp_linktrain_fallback@dp-fallback.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_dsc@dsc-fractional-bpp: - shard-bmg: [SKIP][312] ([Intel XE#2136]) -> [SKIP][313] ([Intel XE#2244]) +3 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_dsc@dsc-fractional-bpp.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-bmg: [SKIP][314] ([Intel XE#2244]) -> [SKIP][315] ([Intel XE#2136]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@fbc: - shard-bmg: [FAIL][316] ([Intel XE#1695]) -> [SKIP][317] ([Intel XE#2136]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_fbcon_fbt@fbc.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_fbcon_fbt@fbc.html * igt at kms_fbcon_fbt@psr: - shard-bmg: [SKIP][318] ([Intel XE#2136]) -> [SKIP][319] ([Intel XE#776]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_fbcon_fbt@psr.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][320] ([Intel XE#776]) -> [SKIP][321] ([Intel XE#2136]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_fbcon_fbt@psr-suspend.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][322] ([Intel XE#2423]) -> [SKIP][323] ([Intel XE#2372]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_feature_discovery@chamelium.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-bmg: [SKIP][324] ([Intel XE#2373]) -> [SKIP][325] ([Intel XE#2423]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_feature_discovery@display-3x.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@psr1: - shard-bmg: [SKIP][326] ([Intel XE#2374]) -> [SKIP][327] ([Intel XE#2423]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_feature_discovery@psr1.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-bmg: [SKIP][328] ([Intel XE#2423]) -> [SKIP][329] ([Intel XE#2374]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_feature_discovery@psr2.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_feature_discovery@psr2.html - shard-dg2-set2: [SKIP][330] ([Intel XE#1135]) -> [SKIP][331] ([Intel XE#2423] / [i915#2575]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_feature_discovery@psr2.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-bmg: [SKIP][332] ([Intel XE#2423]) -> [SKIP][333] ([Intel XE#3007]) +8 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: [SKIP][334] ([Intel XE#2423]) -> [SKIP][335] ([Intel XE#2316]) +3 other tests skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_flip@2x-modeset-vs-vblank-race.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_flip@2x-modeset-vs-vblank-race.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-bmg: [SKIP][336] ([Intel XE#2316]) -> [SKIP][337] ([Intel XE#2423]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-bmg: [SKIP][338] ([Intel XE#2423]) -> [FAIL][339] ([Intel XE#2882]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_flip@2x-plain-flip-ts-check.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-bmg: [SKIP][340] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][341] ([Intel XE#2136]) +6 other tests skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][342] ([Intel XE#2136]) -> [SKIP][343] ([Intel XE#2380]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][344] ([Intel XE#2136]) -> [SKIP][345] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2-set2: [SKIP][346] ([Intel XE#455]) -> [SKIP][347] ([Intel XE#2136]) +2 other tests skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html - shard-bmg: [SKIP][348] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][349] ([Intel XE#2136] / [Intel XE#2231]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: [SKIP][350] ([Intel XE#2136]) -> [SKIP][351] ([Intel XE#2311]) +38 other tests skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][352] ([Intel XE#2312]) -> [SKIP][353] ([Intel XE#2311]) +2 other tests skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][354] ([Intel XE#2311]) -> [SKIP][355] ([Intel XE#2312]) +6 other tests skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][356] ([Intel XE#2136]) -> [SKIP][357] ([Intel XE#2312]) +10 other tests skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [FAIL][358] ([Intel XE#2333]) -> [SKIP][359] ([Intel XE#2136]) +17 other tests skip [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][360] ([Intel XE#2333]) -> [SKIP][361] ([Intel XE#2312]) +4 other tests skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][362] ([Intel XE#2136]) -> [FAIL][363] ([Intel XE#2333]) +20 other tests fail [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][364] ([Intel XE#2136]) -> [SKIP][365] ([Intel XE#2136] / [Intel XE#2231]) +11 other tests skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][366] ([Intel XE#2312]) -> [FAIL][367] ([Intel XE#2333]) +1 other test fail [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-modesetfrombusy: - shard-bmg: [SKIP][368] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][369] ([Intel XE#2333]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-modesetfrombusy.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-modesetfrombusy.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][370] ([Intel XE#2136]) -> [SKIP][371] ([Intel XE#651]) +2 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html - shard-bmg: [SKIP][372] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][373] ([Intel XE#2311]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][374] ([Intel XE#651]) -> [SKIP][375] ([Intel XE#2136]) +5 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][376] ([Intel XE#651]) -> [SKIP][377] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][378] ([Intel XE#2311]) -> [SKIP][379] ([Intel XE#2136]) +31 other tests skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-suspend: - shard-bmg: [SKIP][380] ([Intel XE#2311]) -> [SKIP][381] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-suspend.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-suspend.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: [SKIP][382] ([Intel XE#2352]) -> [SKIP][383] ([Intel XE#2136]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][384] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][385] ([Intel XE#2313]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][386] ([Intel XE#2313]) -> [SKIP][387] ([Intel XE#2312]) +2 other tests skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][388] ([Intel XE#2312]) -> [SKIP][389] ([Intel XE#2313]) +7 other tests skip [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][390] ([Intel XE#653]) -> [SKIP][391] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][392] ([Intel XE#2313]) -> [SKIP][393] ([Intel XE#2136]) +34 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][394] ([Intel XE#2136]) -> [SKIP][395] ([Intel XE#2313]) +41 other tests skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-bmg: [SKIP][396] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][397] ([Intel XE#2136]) +4 other tests skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html - shard-dg2-set2: [SKIP][398] ([Intel XE#2136]) -> [SKIP][399] ([Intel XE#653]) +2 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][400] ([Intel XE#2136]) -> [SKIP][401] ([Intel XE#2352]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-bmg: [SKIP][402] ([Intel XE#2313]) -> [SKIP][403] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][404] ([Intel XE#2312]) -> [SKIP][405] ([Intel XE#2136]) +11 other tests skip [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][406] ([Intel XE#653]) -> [SKIP][407] ([Intel XE#2136]) +8 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-slowdraw.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][408] ([Intel XE#2423]) -> [SKIP][409] ([Intel XE#2502]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_getfb@getfb-reject-ccs.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][410] ([Intel XE#2423]) -> [SKIP][411] ([Intel XE#2340]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_getfb@getfb2-accept-ccs.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][412] ([Intel XE#2423]) -> [SKIP][413] ([Intel XE#3374] / [Intel XE#3544]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_hdr@brightness-with-hdr.html * igt at kms_joiner@basic-big-joiner: - shard-bmg: [SKIP][414] ([Intel XE#346]) -> [SKIP][415] ([Intel XE#2136]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_joiner@basic-big-joiner.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][416] ([Intel XE#2136]) -> [SKIP][417] ([Intel XE#346]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_joiner@invalid-modeset-big-joiner.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: [SKIP][418] ([Intel XE#346]) -> [SKIP][419] ([Intel XE#2136]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_joiner@invalid-modeset-big-joiner.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: [SKIP][420] ([Intel XE#2927]) -> [SKIP][421] ([Intel XE#2136]) [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_joiner@invalid-modeset-ultra-joiner.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][422] ([Intel XE#2423]) -> [SKIP][423] ([Intel XE#2493]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_plane_multiple@tiling-yf.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-2/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][424] ([Intel XE#361]) -> [SKIP][425] ([Intel XE#2423] / [i915#2575]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_plane_scaling@intel-max-src-size.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][426] ([Intel XE#2423]) -> [SKIP][427] ([Intel XE#2763]) +3 other tests skip [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-bmg: [SKIP][428] ([Intel XE#2763]) -> [SKIP][429] ([Intel XE#2423]) +4 other tests skip [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_pm_backlight@basic-brightness: - shard-bmg: [SKIP][430] ([Intel XE#870]) -> [SKIP][431] ([Intel XE#2136]) [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_pm_backlight@basic-brightness.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][432] ([Intel XE#2938]) -> [SKIP][433] ([Intel XE#2136]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_pm_backlight@brightness-with-dpms.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade: - shard-bmg: [SKIP][434] ([Intel XE#2136]) -> [SKIP][435] ([Intel XE#870]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_pm_backlight@fade.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][436] ([Intel XE#2136]) -> [SKIP][437] ([Intel XE#2392]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_pm_dc@dc5-psr.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][438] ([Intel XE#1129]) -> [SKIP][439] ([Intel XE#2136] / [Intel XE#2351]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_pm_dc@dc6-psr.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: [SKIP][440] ([Intel XE#2499]) -> [SKIP][441] ([Intel XE#2136]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_pm_lpsp@kms-lpsp.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: [SKIP][442] ([Intel XE#2446]) -> [SKIP][443] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: [SKIP][444] ([Intel XE#2136]) -> [SKIP][445] ([Intel XE#1489]) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html - shard-bmg: [SKIP][446] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][447] ([Intel XE#1489]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][448] ([Intel XE#1489]) -> [SKIP][449] ([Intel XE#2136]) +10 other tests skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][450] ([Intel XE#2136]) -> [SKIP][451] ([Intel XE#1489]) +12 other tests skip [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][452] ([Intel XE#1489]) -> [SKIP][453] ([Intel XE#2136]) +4 other tests skip [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][454] ([Intel XE#2136]) -> [SKIP][455] ([Intel XE#2387]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-nv12: - shard-bmg: [SKIP][456] ([Intel XE#2387]) -> [SKIP][457] ([Intel XE#2136]) [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_psr2_su@page_flip-nv12.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr-primary-render: - shard-bmg: [SKIP][458] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][459] ([Intel XE#2234] / [Intel XE#2850]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_psr@fbc-psr-primary-render.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_psr@fbc-psr-primary-render.html - shard-dg2-set2: [SKIP][460] ([Intel XE#2136]) -> [SKIP][461] ([Intel XE#2850] / [Intel XE#929]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_psr@fbc-psr-primary-render.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at kms_psr@fbc-psr-primary-render.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-bmg: [SKIP][462] ([Intel XE#2136]) -> [SKIP][463] ([Intel XE#2234] / [Intel XE#2850]) +20 other tests skip [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr@fbc-psr2-cursor-blt.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_psr@fbc-psr2-primary-page-flip: - shard-dg2-set2: [SKIP][464] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][465] ([Intel XE#2136] / [Intel XE#2351]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_psr@fbc-psr2-primary-page-flip.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_psr@fbc-psr2-primary-page-flip.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: [SKIP][466] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][467] ([Intel XE#2136]) +19 other tests skip [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_psr@psr-primary-page-flip.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr-primary-render: - shard-dg2-set2: [SKIP][468] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][469] ([Intel XE#2136]) +2 other tests skip [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_psr@psr-primary-render.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_psr@psr-primary-render.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][470] ([Intel XE#2136]) -> [SKIP][471] ([Intel XE#2414]) [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/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][472] ([Intel XE#2330]) -> [SKIP][473] ([Intel XE#2423]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][474] ([Intel XE#3007]) -> [SKIP][475] ([Intel XE#2330]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: [SKIP][476] ([Intel XE#2423]) -> [SKIP][477] ([Intel XE#2330]) [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: [SKIP][478] ([Intel XE#2330]) -> [SKIP][479] ([Intel XE#3007]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg2-set2: [SKIP][480] ([Intel XE#1127]) -> [SKIP][481] ([Intel XE#2423] / [i915#2575]) [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][482] ([Intel XE#2423]) -> [SKIP][483] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: [SKIP][484] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][485] ([Intel XE#2423]) +1 other test skip [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_sequence@get-idle: - shard-bmg: [SKIP][486] ([Intel XE#3007]) -> [SKIP][487] ([Intel XE#2423]) +5 other tests skip [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_sequence@get-idle.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_sequence@get-idle.html * igt at kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: [SKIP][488] ([Intel XE#1435]) -> [SKIP][489] ([Intel XE#2423]) +1 other test skip [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_setmode@invalid-clone-exclusive-crtc.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at kms_setmode@invalid-clone-exclusive-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][490] ([Intel XE#1729]) -> [SKIP][491] ([Intel XE#362]) [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@lobf: - shard-bmg: [SKIP][492] ([Intel XE#2423]) -> [SKIP][493] ([Intel XE#2168]) [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_vrr@lobf.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_vrr@lobf.html * igt at kms_vrr@max-min: - shard-bmg: [SKIP][494] ([Intel XE#2423]) -> [SKIP][495] ([Intel XE#1499]) +1 other test skip [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_vrr@max-min.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at kms_vrr@max-min.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][496] ([Intel XE#1499]) -> [SKIP][497] ([Intel XE#2423]) +2 other tests skip [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_vrr@seamless-rr-switch-drrs.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][498] ([Intel XE#3007]) -> [SKIP][499] ([Intel XE#756]) [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_writeback@writeback-invalid-parameters.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at kms_writeback@writeback-invalid-parameters.html - shard-dg2-set2: [SKIP][500] ([Intel XE#2423] / [i915#2575]) -> [SKIP][501] ([Intel XE#756]) [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_writeback@writeback-invalid-parameters.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg2-set2: [SKIP][502] ([Intel XE#756]) -> [SKIP][503] ([Intel XE#2423] / [i915#2575]) [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_writeback@writeback-pixel-formats.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: [SKIP][504] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][505] ([Intel XE#2423]) [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][506] ([Intel XE#1130]) -> [SKIP][507] ([Intel XE#1280] / [Intel XE#455]) [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_compute_preempt@compute-preempt-many.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][508] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][509] ([Intel XE#1130]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at xe_compute_preempt@compute-threadgroup-preempt.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at xe_compute_preempt@compute-threadgroup-preempt.html * igt at xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][510] ([Intel XE#2504]) -> [SKIP][511] ([Intel XE#1130]) [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at xe_create@multigpu-create-massive-size.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at xe_create@multigpu-create-massive-size.html * igt at xe_eudebug@basic-exec-queues: - shard-bmg: [SKIP][512] ([Intel XE#2905]) -> [SKIP][513] ([Intel XE#1130]) +15 other tests skip [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at xe_eudebug@basic-exec-queues.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][514] ([Intel XE#1130]) -> [SKIP][515] ([Intel XE#3889]) +1 other test skip [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at xe_eudebug@basic-vm-access-parameters-userptr.html - shard-dg2-set2: [SKIP][516] ([Intel XE#3889]) -> [SKIP][517] ([Intel XE#1130]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-dg2-set2: [SKIP][518] ([Intel XE#1130]) -> [SKIP][519] ([Intel XE#2905]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-bmg: [SKIP][520] ([Intel XE#3889]) -> [SKIP][521] ([Intel XE#1130]) [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug_online@preempt-breakpoint: - shard-dg2-set2: [SKIP][522] ([Intel XE#2905]) -> [SKIP][523] ([Intel XE#1130]) +3 other tests skip [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_eudebug_online@preempt-breakpoint.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at xe_eudebug_online@preempt-breakpoint.html * igt at xe_eudebug_online@single-step: - shard-bmg: [SKIP][524] ([Intel XE#1130]) -> [SKIP][525] ([Intel XE#2905]) +12 other tests skip [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_eudebug_online@single-step.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt at xe_eudebug_online@single-step.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][526] ([Intel XE#2322]) -> [SKIP][527] ([Intel XE#1130]) +15 other tests skip [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][528] ([Intel XE#1130]) -> [SKIP][529] ([Intel XE#2322]) +12 other tests skip [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_exec_basic@multigpu-once-null-rebind.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@once-bindexecqueue-rebind: - shard-dg2-set2: [SKIP][530] ([Intel XE#288]) -> [SKIP][531] ([Intel XE#1130]) +9 other tests skip [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at xe_exec_fault_mode@once-bindexecqueue-rebind.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at xe_exec_fault_mode@once-bindexecqueue-rebind.html * igt at xe_mmap@small-bar: - shard-bmg: [SKIP][532] ([Intel XE#1130]) -> [SKIP][533] ([Intel XE#586]) [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_mmap@small-bar.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at xe_mmap@small-bar.html * igt at xe_oa@invalid-create-userspace-config: - shard-dg2-set2: [SKIP][534] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][535] ([Intel XE#1130]) +2 other tests skip [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at xe_oa@invalid-create-userspace-config.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at xe_oa@invalid-create-userspace-config.html * igt at xe_oa@syncs-ufence-wait-cfg: - shard-dg2-set2: [SKIP][536] ([Intel XE#1130]) -> [SKIP][537] ([Intel XE#2541] / [Intel XE#3573]) [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_oa@syncs-ufence-wait-cfg.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt at xe_oa@syncs-ufence-wait-cfg.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][538] ([Intel XE#2248]) -> [SKIP][539] ([Intel XE#1130]) [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at xe_oa@unprivileged-single-ctx-counters.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][540] ([Intel XE#1420]) -> [SKIP][541] ([Intel XE#1130]) [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at xe_pat@pat-index-xehpc.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at xe_pat@pat-index-xehpc.html * igt at xe_pm@d3cold-mocs: - shard-bmg: [SKIP][542] ([Intel XE#2284]) -> [SKIP][543] ([Intel XE#1130]) +1 other test skip [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at xe_pm@d3cold-mocs.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@d3cold-multiple-execs: - shard-bmg: [SKIP][544] ([Intel XE#1130]) -> [SKIP][545] ([Intel XE#2284]) +2 other tests skip [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_pm@d3cold-multiple-execs.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt at xe_pm@d3cold-multiple-execs.html - shard-dg2-set2: [SKIP][546] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][547] ([Intel XE#1130]) [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at xe_pm@d3cold-multiple-execs.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at xe_pm@d3cold-multiple-execs.html * igt at xe_pm@vram-d3cold-threshold: - shard-bmg: [SKIP][548] ([Intel XE#1130]) -> [SKIP][549] ([Intel XE#579]) [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_pm@vram-d3cold-threshold.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-cs-cycles: - shard-bmg: [SKIP][550] ([Intel XE#1130]) -> [SKIP][551] ([Intel XE#944]) +2 other tests skip [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_query@multigpu-query-cs-cycles.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-engines: - shard-bmg: [SKIP][552] ([Intel XE#944]) -> [SKIP][553] ([Intel XE#1130]) [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at xe_query@multigpu-query-engines.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt at xe_query@multigpu-query-engines.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-dg2-set2: [SKIP][554] ([Intel XE#944]) -> [SKIP][555] ([Intel XE#1130]) [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at xe_query@multigpu-query-uc-fw-version-huc.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_sriov_flr@flr-each-isolation: - shard-bmg: [SKIP][556] ([Intel XE#3342]) -> [SKIP][557] ([Intel XE#1130]) [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at xe_sriov_flr@flr-each-isolation.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt at xe_sriov_flr@flr-each-isolation.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#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#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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#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#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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [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#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [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#2771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2771 [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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [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#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#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#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#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [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#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010 [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#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [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#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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [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#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_8198 -> IGTPW_12458 * Linux: xe-2508-9033a16532f74ae36c48d729d0855a6e189039df -> xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 IGTPW_12458: bd5959b642d1cc4f538f86b42f8d9b6ed962d764 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2508-9033a16532f74ae36c48d729d0855a6e189039df: 9033a16532f74ae36c48d729d0855a6e189039df xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2: aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 08:10:52 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 08:10:52 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EBAT=3A_failure_for_series_starting_with_=5Bv4?= =?utf-8?q?=2C1/2=5D_tests/intel/kms=5Ffrontbuffer=5Ftracking=3A_Skip_fbc-*_?= =?utf-8?q?tests_on_BMG_=28rev2=29?= In-Reply-To: <20250109055652.405793-1-mohammed.thasleem@intel.com> References: <20250109055652.405793-1-mohammed.thasleem@intel.com> Message-ID: <173736065226.2030316.11664335054606579423@b555e5b46a47> == Series Details == Series: series starting with [v4,1/2] tests/intel/kms_frontbuffer_tracking: Skip fbc-* tests on BMG (rev2) URL : https://patchwork.freedesktop.org/series/143304/ State : failure == Summary == CI Bug Log - changes from XEIGT_8198_BAT -> XEIGTPW_12459_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12459_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12459_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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12459_BAT: ### IGT changes ### #### Possible regressions #### * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - bat-dg2-oem2: NOTRUN -> [SKIP][1] +40 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-dg2-oem2/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - bat-bmg-1: NOTRUN -> [SKIP][2] +42 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-bmg-1/igt at kms_frontbuffer_tracking@fbc-tiling-4.html Known issues ------------ Here are the changes found in XEIGTPW_12459_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc: - bat-dg2-oem2: NOTRUN -> [SKIP][3] ([Intel XE#651]) +86 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-dg2-oem2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-modesetfrombusy: - bat-bmg-1: NOTRUN -> [SKIP][4] ([Intel XE#2311]) +86 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-bmg-1/igt at kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548]) +223 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-bmg-2/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - bat-lnl-2: NOTRUN -> [SKIP][6] ([Intel XE#2548]) +462 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-lnl-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render: - bat-lnl-1: NOTRUN -> [SKIP][7] ([Intel XE#651]) +73 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-lnl-1/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move: - bat-lnl-1: NOTRUN -> [SKIP][8] ([Intel XE#656]) +239 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-lnl-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - bat-dg2-oem2: NOTRUN -> [SKIP][9] ([Intel XE#658]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-dg2-oem2/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - bat-pvc-2: NOTRUN -> [SKIP][10] ([Intel XE#1024]) +432 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-pvc-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc: - bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#2548]) +238 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - bat-atsm-2: NOTRUN -> [SKIP][12] ([Intel XE#1024]) +432 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-atsm-2/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - bat-bmg-1: NOTRUN -> [SKIP][13] ([Intel XE#2352]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - bat-dg2-oem2: NOTRUN -> [SKIP][14] ([Intel XE#455]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-dg2-oem2/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - bat-bmg-1: NOTRUN -> [SKIP][15] ([Intel XE#2350]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-bmg-1/igt at kms_frontbuffer_tracking@plane-fbc-rte.html - bat-dg2-oem2: NOTRUN -> [SKIP][16] ([Intel XE#1158]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-dg2-oem2/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - bat-bmg-1: NOTRUN -> [SKIP][17] ([Intel XE#2313]) +86 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-bmg-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt: - bat-dg2-oem2: NOTRUN -> [SKIP][18] ([Intel XE#653]) +86 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-dg2-oem2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - bat-adlp-vf: NOTRUN -> [SKIP][19] ([Intel XE#2463]) +462 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-adlp-vf/igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - bat-atsm-2: NOTRUN -> [SKIP][20] ([Intel XE#1024] / [Intel XE#783]) +29 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-atsm-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt: - bat-bmg-1: NOTRUN -> [SKIP][21] ([Intel XE#2312]) +238 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - bat-dg2-oem2: NOTRUN -> [SKIP][22] ([Intel XE#656]) +239 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-dg2-oem2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - bat-pvc-2: NOTRUN -> [SKIP][23] ([Intel XE#1024] / [Intel XE#783]) +29 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/bat-pvc-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434 [Intel XE#2463]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2463 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [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#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783 Build changes ------------- * IGT: IGT_8198 -> IGTPW_12459 * Linux: xe-2508-9033a16532f74ae36c48d729d0855a6e189039df -> xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 IGTPW_12459: c33d54be70c2115e82190804df90d1bb83939b5d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2508-9033a16532f74ae36c48d729d0855a6e189039df: 9033a16532f74ae36c48d729d0855a6e189039df xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2: aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 08:12:04 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 08:12:04 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_series_starting_with_=5Bv?= =?utf-8?q?4=2C1/2=5D_tests/intel/kms=5Ffrontbuffer=5Ftracking=3A_Skip_fbc-*?= =?utf-8?q?_tests_on_BMG_=28rev2=29?= In-Reply-To: <20250109055652.405793-1-mohammed.thasleem@intel.com> References: <20250109055652.405793-1-mohammed.thasleem@intel.com> Message-ID: <173736072474.2030316.1159097210331151724@b555e5b46a47> == Series Details == Series: series starting with [v4,1/2] tests/intel/kms_frontbuffer_tracking: Skip fbc-* tests on BMG (rev2) URL : https://patchwork.freedesktop.org/series/143304/ State : failure == Summary == CI Bug Log - changes from IGT_8198 -> IGTPW_12459 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12459 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12459, 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_12459/index.html Participating hosts (44 -> 40) ------------------------------ Missing (4): bat-apl-1 fi-kbl-guc fi-glk-j4005 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12459: ### IGT changes ### #### Possible regressions #### * igt at i915_selftest@live: - fi-cfl-guc: [PASS][1] -> [ABORT][2] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/fi-cfl-guc/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-cfl-guc/igt at i915_selftest@live.html - fi-cfl-8700k: [PASS][3] -> [ABORT][4] +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/fi-cfl-8700k/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-cfl-8700k/igt at i915_selftest@live.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt: - fi-tgl-1115g4: NOTRUN -> [SKIP][5] +218 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite: - fi-ilk-650: NOTRUN -> [INCOMPLETE][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-ilk-650/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html * igt at meta_test@fail-result (NEW): - bat-arlh-2: NOTRUN -> [FAIL][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-arlh-2/igt at meta_test@fail-result.html * igt at xe_module_load@load: - fi-ivb-3770: NOTRUN -> [FAIL][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-ivb-3770/igt at xe_module_load@load.html - fi-hsw-4770: NOTRUN -> [FAIL][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-hsw-4770/igt at xe_module_load@load.html - fi-ilk-650: NOTRUN -> [FAIL][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-ilk-650/igt at xe_module_load@load.html - bat-mtlp-6: NOTRUN -> [ABORT][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-mtlp-6/igt at xe_module_load@load.html - fi-kbl-x1275: NOTRUN -> [FAIL][12] +1 other test fail [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-kbl-x1275/igt at xe_module_load@load.html - bat-kbl-2: NOTRUN -> [FAIL][13] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-kbl-2/igt at xe_module_load@load.html - bat-dg1-6: NOTRUN -> [DMESG-WARN][14] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-dg1-6/igt at xe_module_load@load.html New tests --------- New tests have been introduced between IGT_8198 and IGTPW_12459: ### New IGT tests (103) ### * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-farfromfence-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-indfb-fliptrack-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-shrfb-fliptrack-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-indfb-fliptrack-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-shrfb-fliptrack-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-farfromfence-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at meta_test@fail-result: - Statuses : 2 fail(s) - Exec time: [0.01, 0.02] s Known issues ------------ Here are the changes found in IGTPW_12459 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live at workarounds: - bat-mtlp-6: [PASS][15] -> [DMESG-FAIL][16] ([i915#12061]) +1 other test dmesg-fail [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-mtlp-6/igt at i915_selftest@live at workarounds.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt: - bat-arlh-2: NOTRUN -> [SKIP][17] ([i915#11346]) +719 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-arlh-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen: - fi-kbl-x1275: NOTRUN -> [SKIP][18] +719 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-kbl-x1275/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - bat-dg1-6: NOTRUN -> [SKIP][19] ([i915#12311]) +79 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-dg1-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - fi-ilk-650: NOTRUN -> [SKIP][20] +170 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-ilk-650/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - fi-tgl-1115g4: NOTRUN -> [SKIP][21] +138 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - bat-kbl-2: NOTRUN -> [SKIP][22] +104 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-kbl-2/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - fi-ivb-3770: NOTRUN -> [SKIP][23] +197 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-ivb-3770/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-rte: - fi-hsw-4770: NOTRUN -> [SKIP][24] +10 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-hsw-4770/igt at kms_frontbuffer_tracking@fbcpsr-2p-rte.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - fi-tgl-1115g4: NOTRUN -> [SKIP][25] ([i915#9766]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - bat-dg1-6: NOTRUN -> [SKIP][26] ([i915#12311] / [i915#4342]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-dg1-6/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - fi-tgl-1115g4: NOTRUN -> [SKIP][27] ([i915#10070]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@plane-fbc-rte.html #### Possible fixes #### * igt at i915_module_load@reload: - bat-atsm-1: [ABORT][28] ([i915#13292]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-atsm-1/igt at i915_module_load@reload.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-atsm-1/igt at i915_module_load@reload.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - bat-arlh-2: [SKIP][30] ([i915#10200] / [i915#11346] / [i915#11666]) -> [PASS][31] +1 other test pass [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arlh-2/igt at kms_addfb_basic@basic-x-tiled-legacy.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-arlh-2/igt at kms_addfb_basic@basic-x-tiled-legacy.html - bat-dg1-6: [SKIP][32] ([i915#12311] / [i915#4212]) -> [PASS][33] +1 other test pass [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-dg1-6/igt at kms_addfb_basic@basic-x-tiled-legacy.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-dg1-6/igt at kms_addfb_basic@basic-x-tiled-legacy.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-arlh-2: [SKIP][34] ([i915#10200] / [i915#11346] / [i915#11666] / [i915#12203]) -> [SKIP][35] ([i915#11346] / [i915#12203]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arlh-2/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-arlh-2/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10070 [i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#13292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13292 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8198 -> IGTPW_12459 * Linux: CI_DRM_15978 -> CI_DRM_15982 CI-20190529: 20190529 CI_DRM_15978: db09bf4e722f65089b91798e6d490d21b8dd8143 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15982: aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12459: c33d54be70c2115e82190804df90d1bb83939b5d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From satyanarayana.k.v.p at intel.com Mon Jan 20 08:34:08 2025 From: satyanarayana.k.v.p at intel.com (Satyanarayana K V P) Date: Mon, 20 Jan 2025 14:04:08 +0530 Subject: [PATCH i-g-t v2 0/2] tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv & xe_guc_mmio_send_recv Message-ID: <20250120083410.26904-1-satyanarayana.k.v.p@intel.com> Use the kernel fault injection infrastructure to test error handling of xe at probe time when executing xe_guc_mmio_send_recv() and at enabling of VFs stage when executing xe_guc_ct_send_recv(). Error can be injected using: igt at xe_fault_injection@inject-fault-probe-function-xe_guc_mmio_send_recv igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv Satyanarayana K V P (2): tests/intel/xe_fault_injection: Inject errors during xe_guc_mmio_send_recv tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv tests/intel/xe_fault_injection.c | 65 ++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) Cc: Matthew Brost Cc: Micha? Wajdeczko Cc: Francois Dugast -- 2.35.3 From satyanarayana.k.v.p at intel.com Mon Jan 20 08:34:09 2025 From: satyanarayana.k.v.p at intel.com (Satyanarayana K V P) Date: Mon, 20 Jan 2025 14:04:09 +0530 Subject: [PATCH i-g-t v2 1/2] tests/intel/xe_fault_injection: Inject errors during xe_guc_mmio_send_recv In-Reply-To: <20250120083410.26904-1-satyanarayana.k.v.p@intel.com> References: <20250120083410.26904-1-satyanarayana.k.v.p@intel.com> Message-ID: <20250120083410.26904-2-satyanarayana.k.v.p@intel.com> Use the kernel fault injection infrastructure to test error handling of xe at probe time when executing xe_guc_mmio_send_recv() so that more code paths are tested, such as error handling and unwinding. Error can be injected using: igt at xe_fault_injection@inject-fault-probe-function-xe_guc_mmio_send_recv v2: Sorted the entry xe_guc_mmio_send_recv in inject-fault-probe-function-* list Cc: Matthew Brost Cc: Micha? Wajdeczko Cc: Francois Dugast Signed-off-by: Satyanarayana K V P --- tests/intel/xe_fault_injection.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c index 7ae941367..3a0e2aa29 100644 --- a/tests/intel/xe_fault_injection.c +++ b/tests/intel/xe_fault_injection.c @@ -163,6 +163,7 @@ static void set_retval(const char function_name[], long long retval) * @xe_guc_ads_init: xe_guc_ads_init * @xe_guc_ct_init: xe_guc_ct_init * @xe_guc_log_init: xe_guc_log_init + * @xe_guc_mmio_send_recv: xe_guc_mmio_send_recv * @xe_guc_relay_init: xe_guc_relay_init * @xe_pm_init_early: xe_pm_init_early * @xe_sriov_init: xe_sriov_init @@ -294,6 +295,7 @@ igt_main { "xe_guc_ads_init" }, { "xe_guc_ct_init" }, { "xe_guc_log_init" }, + { "xe_guc_mmio_send_recv" }, { "xe_guc_relay_init" }, { "xe_pm_init_early" }, { "xe_sriov_init" }, -- 2.35.3 From satyanarayana.k.v.p at intel.com Mon Jan 20 08:34:10 2025 From: satyanarayana.k.v.p at intel.com (Satyanarayana K V P) Date: Mon, 20 Jan 2025 14:04:10 +0530 Subject: [PATCH i-g-t v2 2/2] tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv In-Reply-To: <20250120083410.26904-1-satyanarayana.k.v.p@intel.com> References: <20250120083410.26904-1-satyanarayana.k.v.p@intel.com> Message-ID: <20250120083410.26904-3-satyanarayana.k.v.p@intel.com> Use the kernel fault injection infrastructure to test error handling of xe at enabling of VFs stage when executing xe_guc_ct_send_recv() so that more code paths are tested, such as error handling and unwinding. Error can be injected using: igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv v2: Updated guc_fail_* to enable_vfs_* Added igt_skip_on(!igt_sriov_is_pf(fd)) to skip test when run without enabling sriov. Cc: Matthew Brost Cc: Micha? Wajdeczko Cc: Francois Dugast Signed-off-by: Satyanarayana K V P --- tests/intel/xe_fault_injection.c | 63 ++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c index 3a0e2aa29..56616ee17 100644 --- a/tests/intel/xe_fault_injection.c +++ b/tests/intel/xe_fault_injection.c @@ -19,12 +19,14 @@ #include "igt_sysfs.h" #include "lib/igt_syncobj.h" #include "lib/intel_pat.h" +#include "lib/igt_sriov_device.h" #include "xe/xe_ioctl.h" #include "xe/xe_query.h" #define INJECT_ERRNO -ENOMEM #define BO_ADDR 0x1a0000 #define BO_SIZE (1024*1024) +#define NUM_VFS 1 enum injection_list_action { INJECTION_LIST_ADD, @@ -281,6 +283,55 @@ vm_bind_fail(int fd, const char function_name[]) igt_assert_eq(simple_vm_bind(fd, vm), 0); } +static int sriov_enable_vfs(int fd, int num_vfs) +{ + int sysfs; + bool ret; + + sysfs = igt_sysfs_open(fd); + igt_assert_fd(sysfs); + + ret = __igt_sysfs_set_u32(sysfs, "device/sriov_numvfs", num_vfs); + close(sysfs); + + return ret; +} + +/** + * SUBTEST: guc-fail-%s + * Description: inject an error in function %arg[1] used when xe interacts with guc to make it fail + * Functionality: fault + * + * arg[1]: + * @xe_guc_ct_send_recv: xe_guc_ct_send_recv + */ + +static void +enable_vfs_fail(int fd, int num_vfs, const char function_name[]) +{ + bool autoprobe_en = 0; + + ignore_faults_in_dmesg(function_name); + injection_list_do(INJECTION_LIST_ADD, function_name); + set_retval(function_name, INJECT_ERRNO); + + autoprobe_en = igt_sriov_is_driver_autoprobe_enabled(fd); + + if (autoprobe_en) + igt_sriov_disable_driver_autoprobe(fd); + + /* igt_sriov_enable_vfs can't be used here as it is causing abort on any error. + * Since error in this test is expected, we have written our own static function here. + */ + sriov_enable_vfs(fd, num_vfs); + + igt_assert_eq(-errno, INJECT_ERRNO); + injection_list_do(INJECTION_LIST_REMOVE, function_name); + + if (autoprobe_en) + igt_sriov_enable_driver_autoprobe(fd); +} + igt_main { int fd; @@ -319,6 +370,10 @@ igt_main { "xe_vma_ops_alloc" }, { } }; + const struct section enable_vfs_fail_functions[] = { + { "xe_guc_ct_send_recv" }, + { } + }; igt_fixture { igt_require(fail_function_injection_enabled()); @@ -335,6 +390,14 @@ igt_main igt_subtest_f("vm-bind-fail-%s", s->name) vm_bind_fail(fd, s->name); + for (const struct section *s = enable_vfs_fail_functions; s->name; s++) + igt_subtest_f("enable-vfs-fail-%s", s->name) { + /* Skip the test if not running with SRIOV + */ + igt_skip_on(!igt_sriov_is_pf(fd)); + enable_vfs_fail(fd, NUM_VFS, s->name); + } + igt_fixture { xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_UNBIND); } -- 2.35.3 From patchwork at emeril.freedesktop.org Mon Jan 20 08:42:18 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 08:42:18 -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_=28rev5=29?= In-Reply-To: <20241113110104.125403-1-mohammed.thasleem@intel.com> References: <20241113110104.125403-1-mohammed.thasleem@intel.com> Message-ID: <173736253851.2030316.5622441368192084406@b555e5b46a47> == Series Details == Series: tests/intel/kms_fbcon_fbt: Add skip condition for bmg platform (rev5) URL : https://patchwork.freedesktop.org/series/141281/ State : success == Summary == CI Bug Log - changes from IGT_8198 -> IGTPW_12460 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/index.html Participating hosts (44 -> 40) ------------------------------ Missing (4): bat-apl-1 fi-kbl-guc fi-glk-j4005 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12460 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt at i915_selftest@live: - bat-twl-1: [ABORT][1] ([i915#12919] / [i915#13503]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-twl-1/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/bat-twl-1/igt at i915_selftest@live.html * igt at i915_selftest@live at execlists: - bat-twl-1: [ABORT][3] ([i915#13493]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-twl-1/igt at i915_selftest@live at execlists.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/bat-twl-1/igt at i915_selftest@live at execlists.html * igt at i915_selftest@live at workarounds: - bat-arlh-3: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arlh-3/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/bat-arlh-3/igt at i915_selftest@live at workarounds.html - bat-arls-5: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arls-5/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/bat-arls-5/igt at i915_selftest@live at workarounds.html - {bat-arls-6}: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arls-6/igt at i915_selftest@live at workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/bat-arls-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#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13493 [i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8198 -> IGTPW_12460 * Linux: CI_DRM_15978 -> CI_DRM_15982 CI-20190529: 20190529 CI_DRM_15978: db09bf4e722f65089b91798e6d490d21b8dd8143 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15982: aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12460: 783d10928eca7563a8811a3a3fa90b3d693b6916 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From francois.dugast at intel.com Mon Jan 20 08:52:10 2025 From: francois.dugast at intel.com (Francois Dugast) Date: Mon, 20 Jan 2025 09:52:10 +0100 Subject: [PATCH i-g-t v2 1/2] tests/intel/xe_fault_injection: Inject errors during xe_guc_mmio_send_recv In-Reply-To: <20250120083410.26904-2-satyanarayana.k.v.p@intel.com> References: <20250120083410.26904-1-satyanarayana.k.v.p@intel.com> <20250120083410.26904-2-satyanarayana.k.v.p@intel.com> Message-ID: On Mon, Jan 20, 2025 at 02:04:09PM +0530, Satyanarayana K V P wrote: > Use the kernel fault injection infrastructure to test error handling > of xe at probe time when executing xe_guc_mmio_send_recv() so that > more code paths are tested, such as error handling and unwinding. > > Error can be injected using: > igt at xe_fault_injection@inject-fault-probe-function-xe_guc_mmio_send_recv > > v2: Sorted the entry xe_guc_mmio_send_recv in inject-fault-probe-function-* list > > Cc: Matthew Brost > Cc: Micha? Wajdeczko > Cc: Francois Dugast > Signed-off-by: Satyanarayana K V P Reviewed-by: Francois Dugast > --- > tests/intel/xe_fault_injection.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c > index 7ae941367..3a0e2aa29 100644 > --- a/tests/intel/xe_fault_injection.c > +++ b/tests/intel/xe_fault_injection.c > @@ -163,6 +163,7 @@ static void set_retval(const char function_name[], long long retval) > * @xe_guc_ads_init: xe_guc_ads_init > * @xe_guc_ct_init: xe_guc_ct_init > * @xe_guc_log_init: xe_guc_log_init > + * @xe_guc_mmio_send_recv: xe_guc_mmio_send_recv > * @xe_guc_relay_init: xe_guc_relay_init > * @xe_pm_init_early: xe_pm_init_early > * @xe_sriov_init: xe_sriov_init > @@ -294,6 +295,7 @@ igt_main > { "xe_guc_ads_init" }, > { "xe_guc_ct_init" }, > { "xe_guc_log_init" }, > + { "xe_guc_mmio_send_recv" }, > { "xe_guc_relay_init" }, > { "xe_pm_init_early" }, > { "xe_sriov_init" }, > -- > 2.35.3 > From patchwork at emeril.freedesktop.org Mon Jan 20 09:11:26 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 09:11:26 -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_=28rev5=29?= In-Reply-To: <20241113110104.125403-1-mohammed.thasleem@intel.com> References: <20241113110104.125403-1-mohammed.thasleem@intel.com> Message-ID: <173736428654.2052710.8101881571967012591@b555e5b46a47> == Series Details == Series: tests/intel/kms_fbcon_fbt: Add skip condition for bmg platform (rev5) URL : https://patchwork.freedesktop.org/series/141281/ State : success == Summary == CI Bug Log - changes from XEIGT_8198_BAT -> XEIGTPW_12460_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8198 -> IGTPW_12460 * Linux: xe-2508-9033a16532f74ae36c48d729d0855a6e189039df -> xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 IGTPW_12460: 783d10928eca7563a8811a3a3fa90b3d693b6916 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2508-9033a16532f74ae36c48d729d0855a6e189039df: 9033a16532f74ae36c48d729d0855a6e189039df xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2: aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 09:42:17 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 09:42:17 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_series_starting_with_=5Bv4?= =?utf-8?q?=2C1/2=5D_tests/intel/kms=5Ffrontbuffer=5Ftracking=3A_Skip_fbc-*_?= =?utf-8?q?tests_on_BMG_=28rev2=29?= In-Reply-To: <20250109055652.405793-1-mohammed.thasleem@intel.com> References: <20250109055652.405793-1-mohammed.thasleem@intel.com> Message-ID: <173736613705.2052710.14379186037833387625@b555e5b46a47> == Series Details == Series: series starting with [v4,1/2] tests/intel/kms_frontbuffer_tracking: Skip fbc-* tests on BMG (rev2) URL : https://patchwork.freedesktop.org/series/143304/ State : failure == Summary == CI Bug Log - changes from XEIGT_8198_full -> XEIGTPW_12459_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with XEIGTPW_12459_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12459_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_12459_full: ### IGT changes ### #### Warnings #### * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [SKIP][1] ([Intel XE#2423]) -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [FAIL][3] ([Intel XE#2333]) -> [SKIP][4] +23 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][5] ([Intel XE#2312]) -> [SKIP][6] +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][7] ([Intel XE#2136]) -> [SKIP][8] +20 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-modesetfrombusy: - shard-bmg: [SKIP][9] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-modesetfrombusy.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-modesetfrombusy.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt at xe_sriov_auto_provisioning@fair-allocation}: - shard-bmg: [SKIP][11] ([Intel XE#1130]) -> [SKIP][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_sriov_auto_provisioning@fair-allocation.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-3/igt at xe_sriov_auto_provisioning@fair-allocation.html New tests --------- New tests have been introduced between XEIGT_8198_full and XEIGTPW_12459_full: ### New IGT tests (8) ### * igt at kms_atomic_interruptible@legacy-cursor at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [6.27] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.83] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ac-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.82] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ad-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.64] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at bc-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.63] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at bd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.62] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at cd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.64] s * igt at kms_hdr@invalid-hdr at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [1.42] s Known issues ------------ Here are the changes found in XEIGTPW_12459_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotreplug: - shard-bmg: [PASS][13] -> [SKIP][14] ([Intel XE#1885]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at core_hotunplug@hotreplug.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at core_hotunplug@hotreplug.html * igt at core_hotunplug@hotunplug-rescan: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1885]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at core_hotunplug@hotunplug-rescan.html * igt at core_setmaster@master-drop-set-user: - shard-bmg: [PASS][16] -> [FAIL][17] ([Intel XE#3249]) +1 other test fail [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at core_setmaster@master-drop-set-user.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at core_setmaster@master-drop-set-user.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-dp-2-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2550] / [Intel XE#3767]) +23 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-dp-2-4-rc-ccs-cc.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1407]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-5/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2-set2: [PASS][20] -> [SKIP][21] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@x-tiled-addfb: - shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2136]) +24 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_big_fb@x-tiled-addfb.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_big_fb@x-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-7/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-433/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_bw@connected-linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#367]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-433/igt at kms_bw@connected-linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-4-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1512]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-5/igt at kms_bw@linear-tiling-4-displays-2560x1440p.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#455] / [Intel XE#787]) +8 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc at pipe-d-dp-2.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-5/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#3432]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-6/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-a-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#787]) +55 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc at pipe-a-hdmi-a-2.html * igt at kms_chamelium_color@ctm-negative: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#306]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-2/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#373]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-436/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@dp-edid-resolution-list: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#373]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-8/igt at kms_chamelium_edid@dp-edid-resolution-list.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#307]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-1/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1424]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-5/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#308]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-434/igt at kms_cursor_crc@cursor-sliding-512x170.html - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2321]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-1/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#309]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-4/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-bmg: [PASS][40] -> [SKIP][41] ([Intel XE#2291]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipb-toggle.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy: - shard-dg2-set2: [PASS][42] -> [SKIP][43] ([i915#2575]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#1340]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-3.html * igt at kms_draw_crc@draw-method-render: - shard-bmg: [PASS][45] -> [SKIP][46] ([Intel XE#2136] / [Intel XE#2231]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_draw_crc@draw-method-render.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_draw_crc@draw-method-render.html * igt at kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#703]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-466/igt at kms_feature_discovery@display-3x.html * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1421]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-4/igt at kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-bmg: [PASS][49] -> [SKIP][50] ([Intel XE#2316]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a6-dp4: - shard-dg2-set2: [PASS][51] -> [FAIL][52] ([Intel XE#301]) +4 other tests fail [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a6-dp4.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][53] ([Intel XE#3321]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][54] -> [SKIP][55] ([Intel XE#2423]) +115 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_flip@2x-nonexisting-fb.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [PASS][56] -> [FAIL][57] ([Intel XE#886]) +2 other tests fail [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-8/igt at kms_flip@blocking-wf_vblank.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-5/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a3: - shard-bmg: [PASS][58] -> [FAIL][59] ([Intel XE#3321]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a3.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank at d-hdmi-a3.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [PASS][60] -> [ABORT][61] ([Intel XE#2625]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_flip@flip-vs-suspend-interruptible.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp2: - shard-dg2-set2: NOTRUN -> [ABORT][62] ([Intel XE#2625]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at kms_flip@flip-vs-suspend-interruptible at d-dp2.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#455]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-436/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2293] / [Intel XE#2380]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1401]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1397] / [Intel XE#1745]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-1/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-default-mode: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1397]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2293]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#651]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-4/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#651]) +6 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#656]) +15 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#653]) +4 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt at kms_hdr@static-toggle-suspend: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1503]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-5/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#346]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-4/igt at kms_joiner@basic-big-joiner.html * igt at kms_plane_multiple@tiling-none: - shard-bmg: [PASS][76] -> [SKIP][77] ([Intel XE#3007]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_plane_multiple@tiling-none.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_plane_multiple@tiling-none.html * igt at kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#2493]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-1/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4: - shard-dg2-set2: [PASS][79] -> [FAIL][80] ([Intel XE#361]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-463/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5 at pipe-a: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#2763]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-1/igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5 at pipe-a.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2763]) +19 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][83] -> [FAIL][84] ([Intel XE#718]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][85] ([Intel XE#1430]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-4/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@basic-rte: - shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#2446]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_pm_rpm@basic-rte.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_pm_rpm@basic-rte.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-dg2-set2: [PASS][88] -> [SKIP][89] ([Intel XE#2446]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_pm_rpm@modeset-non-lpsp.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#1489]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-434/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#2893]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-8/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1128]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-7/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1406]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-8/igt at kms_psr@fbc-pr-cursor-plane-move.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-434/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#362]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-1/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1499]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-7/igt at kms_vrr@negative-basic.html * igt at xe_compute_preempt@compute-preempt-many at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#1280] / [Intel XE#455]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-433/igt at xe_compute_preempt@compute-preempt-many at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-client: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#2905]) +5 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-8/igt at xe_eudebug@basic-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2905]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-436/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#688]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-7/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-dg2-set2: [PASS][101] -> [SKIP][102] ([Intel XE#1392]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1392]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-8/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#288]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-435/igt at xe_exec_fault_mode@once-invalid-userptr-fault.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1192]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-4/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-bmg: [PASS][106] -> [FAIL][107] ([Intel XE#1999]) +2 other tests fail [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_module_load@reload: - shard-dg2-set2: [PASS][108] -> [FAIL][109] ([Intel XE#3546]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at xe_module_load@reload.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-433/igt at xe_module_load@reload.html * igt at xe_oa@syncs-syncobj-wait-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2541] / [Intel XE#3573]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-463/igt at xe_oa@syncs-syncobj-wait-cfg.html * igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][111] ([Intel XE#1173]) +1 other test fail [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-463/igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-1/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@s3-d3hot-basic-exec: - shard-dg2-set2: [PASS][113] -> [ABORT][114] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at xe_pm@s3-d3hot-basic-exec.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at xe_pm@s3-d3hot-basic-exec.html * igt at xe_pm@s3-multiple-execs: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#584]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-1/igt at xe_pm@s3-multiple-execs.html * igt at xe_pm@s4-d3hot-basic-exec: - shard-lnl: [PASS][116] -> [ABORT][117] ([Intel XE#1358] / [Intel XE#1607]) +1 other test abort [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-5/igt at xe_pm@s4-d3hot-basic-exec.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-2/igt at xe_pm@s4-d3hot-basic-exec.html * igt at xe_query@multigpu-query-gt-list: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#944]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-8/igt at xe_query@multigpu-query-gt-list.html * igt at xe_spin_batch@spin-all: - shard-bmg: [PASS][119] -> [SKIP][120] ([Intel XE#1130]) +238 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at xe_spin_batch@spin-all.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at xe_spin_batch@spin-all.html * igt at xe_vm@large-userptr-misaligned-binds-2097152: - shard-dg2-set2: [PASS][121] -> [SKIP][122] ([Intel XE#1130]) +10 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at xe_vm@large-userptr-misaligned-binds-2097152.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at xe_vm@large-userptr-misaligned-binds-2097152.html #### Possible fixes #### * igt at core_getversion@all-cards: - shard-bmg: [FAIL][123] ([Intel XE#3249]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at core_getversion@all-cards.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at core_getversion@all-cards.html * igt at core_hotunplug@hotunbind-rebind: - shard-bmg: [SKIP][125] ([Intel XE#1885]) -> [PASS][126] +1 other test pass [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at core_hotunplug@hotunbind-rebind.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at core_hotunplug@hotunbind-rebind.html * igt at core_setmaster@master-drop-set-shared-fd: - shard-bmg: [SKIP][127] ([Intel XE#3453]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at core_setmaster@master-drop-set-shared-fd.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at core_setmaster@master-drop-set-shared-fd.html * igt at fbdev@nullptr: - shard-bmg: [SKIP][129] ([Intel XE#2134]) -> [PASS][130] +1 other test pass [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at fbdev@nullptr.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at fbdev@nullptr.html * igt at kms_atomic_interruptible@legacy-cursor: - shard-dg2-set2: [SKIP][131] ([Intel XE#2423] / [i915#2575]) -> [PASS][132] +6 other tests pass [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_atomic_interruptible@legacy-cursor.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-434/igt at kms_atomic_interruptible@legacy-cursor.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: [FAIL][133] ([Intel XE#3908]) -> [PASS][134] +1 other test pass [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [SKIP][135] ([Intel XE#2136]) -> [PASS][136] +25 other tests pass [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_big_fb@linear-16bpp-rotate-180.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_big_fb@linear-8bpp-rotate-0: - shard-dg2-set2: [SKIP][137] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_big_fb@linear-8bpp-rotate-0.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-433/igt at kms_big_fb@linear-8bpp-rotate-0.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][139] ([Intel XE#2692] / [Intel XE#4010]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-435/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-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][141] ([Intel XE#4010]) -> [PASS][142] [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-6.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-6.html * igt at kms_color@degamma at pipe-d-hdmi-a-3: - shard-bmg: [DMESG-WARN][143] ([Intel XE#877]) -> [PASS][144] +1 other test pass [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_color@degamma at pipe-d-hdmi-a-3.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-3/igt at kms_color@degamma at pipe-d-hdmi-a-3.html * igt at kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [SKIP][145] ([Intel XE#2291]) -> [PASS][146] +1 other test pass [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [FAIL][147] ([Intel XE#1475]) -> [PASS][148] [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-6/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-4/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_cursor_legacy@single-bo: - shard-bmg: [SKIP][149] ([Intel XE#3007]) -> [PASS][150] +3 other tests pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_cursor_legacy@single-bo.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-3/igt at kms_cursor_legacy@single-bo.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][151] ([Intel XE#3070]) -> [PASS][152] [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_dp_linktrain_fallback@dp-fallback.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][153] ([Intel XE#2882]) -> [PASS][154] +1 other test pass [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-hdmi-a6-dp4.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-436/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: [SKIP][155] ([Intel XE#2316]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-3/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][157] ([Intel XE#886]) -> [PASS][158] +4 other tests pass [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-2/igt at kms_flip@flip-vs-absolute-wf_vblank.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-6/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6: - shard-dg2-set2: [FAIL][159] ([Intel XE#301]) -> [PASS][160] [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank at d-dp4: - shard-dg2-set2: [FAIL][161] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg2-set2: [SKIP][163] ([Intel XE#2136]) -> [PASS][164] +1 other test pass [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-433/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][165] ([Intel XE#455]) -> [PASS][166] [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_hdr@invalid-hdr.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-466/igt at kms_hdr@invalid-hdr.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][167] ([Intel XE#361]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-463/igt at kms_plane_scaling@intel-max-src-size at pipe-a-hdmi-a-6.html * igt at kms_pm_rpm@modeset-stress-extra-wait: - shard-bmg: [SKIP][169] ([Intel XE#2446]) -> [PASS][170] +5 other tests pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_pm_rpm@modeset-stress-extra-wait.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_pm_rpm@modeset-stress-extra-wait.html * igt at kms_properties@connector-properties-legacy: - shard-bmg: [SKIP][171] ([Intel XE#2423]) -> [PASS][172] +128 other tests pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_properties@connector-properties-legacy.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_properties@connector-properties-legacy.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-bmg: [SKIP][173] ([Intel XE#1435]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [FAIL][175] ([Intel XE#2159]) -> [PASS][176] +1 other test pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-5/igt at kms_vrr@cmrr at pipe-a-edp-1.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-7/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system: - shard-lnl: [INCOMPLETE][177] ([Intel XE#2771]) -> [PASS][178] +1 other test pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-7/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-lnl-6/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system.html * igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [SKIP][179] ([Intel XE#1130]) -> [PASS][180] +288 other tests pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-2/igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt at xe_module_load@many-reload: - shard-bmg: [FAIL][181] ([Intel XE#3546]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_module_load@many-reload.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-2/igt at xe_module_load@many-reload.html * igt at xe_vm@large-misaligned-binds-2097152: - shard-dg2-set2: [SKIP][183] ([Intel XE#1130]) -> [PASS][184] +11 other tests pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_vm@large-misaligned-binds-2097152.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-435/igt at xe_vm@large-misaligned-binds-2097152.html * igt at xe_wedged@wedged-mode-toggle: - shard-bmg: [ABORT][185] ([Intel XE#3084]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at xe_wedged@wedged-mode-toggle.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-4/igt at xe_wedged@wedged-mode-toggle.html #### Warnings #### * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][187] ([Intel XE#2423]) -> [SKIP][188] ([Intel XE#2385]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][189] ([Intel XE#2370]) -> [SKIP][190] ([Intel XE#2423]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][191] ([Intel XE#2327]) -> [SKIP][192] ([Intel XE#2136]) +6 other tests skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [SKIP][193] ([Intel XE#2136]) -> [SKIP][194] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/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-90: - shard-bmg: [SKIP][195] ([Intel XE#2136]) -> [SKIP][196] ([Intel XE#2327]) +8 other tests skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_big_fb@x-tiled-32bpp-rotate-90.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_big_fb@x-tiled-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2-set2: [SKIP][197] ([Intel XE#1124]) -> [SKIP][198] ([Intel XE#2136] / [Intel XE#2231]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][199] ([Intel XE#2136]) -> [SKIP][200] ([Intel XE#1124]) +16 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb: - shard-bmg: [SKIP][201] ([Intel XE#2328]) -> [SKIP][202] ([Intel XE#2136]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_big_fb@y-tiled-addfb.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][203] ([Intel XE#1124]) -> [SKIP][204] ([Intel XE#2136]) +14 other tests skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-bmg: [SKIP][205] ([Intel XE#2136]) -> [SKIP][206] ([Intel XE#2328]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][207] ([Intel XE#607]) -> [SKIP][208] ([Intel XE#2136]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: [SKIP][209] ([Intel XE#610]) -> [SKIP][210] ([Intel XE#2136]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-bmg: [SKIP][211] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][212] ([Intel XE#2423]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][213] ([Intel XE#2423]) -> [SKIP][214] ([Intel XE#2314] / [Intel XE#2894]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-2160x1440p: - shard-bmg: [SKIP][215] ([Intel XE#367]) -> [SKIP][216] ([Intel XE#2423]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_bw@linear-tiling-1-displays-2160x1440p.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_bw@linear-tiling-1-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: [SKIP][217] ([Intel XE#367]) -> [SKIP][218] ([Intel XE#3007]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html - shard-dg2-set2: [SKIP][219] ([Intel XE#367]) -> [SKIP][220] ([i915#2575]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_bw@linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][221] ([Intel XE#2423]) -> [SKIP][222] ([Intel XE#367]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-4/igt at kms_bw@linear-tiling-4-displays-3840x2160p.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][223] ([Intel XE#2887]) -> [SKIP][224] ([Intel XE#2136]) +17 other tests skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][225] ([Intel XE#2136]) -> [SKIP][226] ([Intel XE#2887]) +24 other tests skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][227] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][228] ([Intel XE#2136]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][229] ([Intel XE#3432]) -> [SKIP][230] ([Intel XE#2136]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][231] ([Intel XE#3432]) -> [SKIP][232] ([Intel XE#2136] / [Intel XE#2231]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html - shard-dg2-set2: [SKIP][233] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][234] ([Intel XE#2136] / [Intel XE#2231]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][235] ([Intel XE#2136]) -> [SKIP][236] ([Intel XE#3432]) +2 other tests skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_cdclk@plane-scaling: - shard-bmg: [SKIP][237] ([Intel XE#2136]) -> [SKIP][238] ([Intel XE#2724]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cdclk@plane-scaling.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-2/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-bmg: [SKIP][239] ([Intel XE#2423]) -> [SKIP][240] ([Intel XE#2325]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_chamelium_color@ctm-red-to-blue.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_color@degamma: - shard-bmg: [SKIP][241] ([Intel XE#2325]) -> [SKIP][242] ([Intel XE#2423]) +4 other tests skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_chamelium_color@degamma.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][243] ([Intel XE#2252]) -> [SKIP][244] ([Intel XE#2423]) +14 other tests skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][245] ([Intel XE#2423]) -> [SKIP][246] ([Intel XE#2252]) +17 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_chamelium_hpd@common-hpd-after-suspend.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][247] ([Intel XE#2390]) -> [SKIP][248] ([Intel XE#2423]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_content_protection@dp-mst-type-1.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-bmg: [FAIL][249] ([Intel XE#1178]) -> [SKIP][250] ([Intel XE#2423]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_content_protection@legacy.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_content_protection@legacy.html * igt at kms_content_protection@srm: - shard-bmg: [SKIP][251] ([Intel XE#2423]) -> [SKIP][252] ([Intel XE#2341]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_content_protection@srm.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-bmg: [SKIP][253] ([Intel XE#2341]) -> [SKIP][254] ([Intel XE#2423]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_content_protection@uevent.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][255] ([Intel XE#2320]) -> [SKIP][256] ([Intel XE#2423]) +7 other tests skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_cursor_crc@cursor-offscreen-128x42.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: [SKIP][257] ([Intel XE#2423]) -> [SKIP][258] ([Intel XE#2320]) +6 other tests skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-256x85.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: [SKIP][259] ([Intel XE#2423]) -> [SKIP][260] ([Intel XE#3007]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_cursor_crc@cursor-offscreen-32x32.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_cursor_crc@cursor-offscreen-32x32.html - shard-dg2-set2: [SKIP][261] ([Intel XE#455]) -> [SKIP][262] ([i915#2575]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_cursor_crc@cursor-offscreen-32x32.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-random-128x42: - shard-bmg: [SKIP][263] ([Intel XE#2320]) -> [SKIP][264] ([Intel XE#3007]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_cursor_crc@cursor-random-128x42.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_cursor_crc@cursor-random-128x42.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][265] ([Intel XE#3007]) -> [SKIP][266] ([Intel XE#2320]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_cursor_crc@cursor-random-32x32.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_cursor_crc@cursor-random-32x32.html - shard-dg2-set2: [SKIP][267] ([Intel XE#2423] / [i915#2575]) -> [SKIP][268] ([Intel XE#455]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_cursor_crc@cursor-random-32x32.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-466/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-bmg: [SKIP][269] ([Intel XE#2321]) -> [SKIP][270] ([Intel XE#2423]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_cursor_crc@cursor-sliding-512x170.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][271] ([Intel XE#2423]) -> [SKIP][272] ([Intel XE#2321]) +3 other tests skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x512.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-bmg: [SKIP][273] ([Intel XE#2291]) -> [SKIP][274] ([Intel XE#2423]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-bmg: [SKIP][275] ([Intel XE#2423]) -> [SKIP][276] ([Intel XE#2286]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [SKIP][277] ([Intel XE#2423]) -> [DMESG-WARN][278] ([Intel XE#877]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [DMESG-WARN][279] ([Intel XE#877]) -> [SKIP][280] ([Intel XE#2423]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-bmg: [SKIP][281] ([Intel XE#2423]) -> [SKIP][282] ([Intel XE#2291]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipb-legacy.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][283] ([Intel XE#1508]) -> [SKIP][284] ([Intel XE#2136]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][285] ([Intel XE#2423]) -> [SKIP][286] ([Intel XE#2323]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_display_modes@mst-extended-mode-negative.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-2/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dsc@dsc-fractional-bpp: - shard-bmg: [SKIP][287] ([Intel XE#2136]) -> [SKIP][288] ([Intel XE#2244]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_dsc@dsc-fractional-bpp.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-2/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-bmg: [SKIP][289] ([Intel XE#2244]) -> [SKIP][290] ([Intel XE#2136]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@fbc: - shard-bmg: [FAIL][291] ([Intel XE#1695]) -> [SKIP][292] ([Intel XE#2136]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_fbcon_fbt@fbc.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_fbcon_fbt@fbc.html * igt at kms_fbcon_fbt@psr: - shard-bmg: [SKIP][293] ([Intel XE#2136]) -> [SKIP][294] ([Intel XE#776]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_fbcon_fbt@psr.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][295] ([Intel XE#2423]) -> [SKIP][296] ([Intel XE#2372]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_feature_discovery@chamelium.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-2/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-bmg: [SKIP][297] ([Intel XE#2423]) -> [SKIP][298] ([Intel XE#1138]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_feature_discovery@display-4x.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][299] ([Intel XE#2423]) -> [SKIP][300] ([Intel XE#2375]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_feature_discovery@dp-mst.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-4/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr2: - shard-bmg: [SKIP][301] ([Intel XE#2423]) -> [SKIP][302] ([Intel XE#2374]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_feature_discovery@psr2.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][303] ([Intel XE#301]) -> [SKIP][304] ([i915#2575]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-bmg: [SKIP][305] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][306] ([Intel XE#2136]) +2 other tests skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][307] ([Intel XE#2136]) -> [SKIP][308] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-bmg: [SKIP][309] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][310] ([Intel XE#2136]) +4 other tests skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][311] ([Intel XE#2312]) -> [SKIP][312] ([Intel XE#2311]) +7 other tests skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][313] ([Intel XE#2136]) -> [SKIP][314] ([Intel XE#2312]) +9 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][315] ([Intel XE#2136]) -> [SKIP][316] ([Intel XE#2311]) +34 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][317] ([Intel XE#2333]) -> [SKIP][318] ([Intel XE#2136]) +15 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][319] ([Intel XE#2333]) -> [SKIP][320] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [FAIL][321] ([Intel XE#2333]) -> [SKIP][322] ([Intel XE#2312]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][323] ([Intel XE#2312]) -> [SKIP][324] ([Intel XE#2136]) +8 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][325] ([Intel XE#2136]) -> [SKIP][326] ([Intel XE#651]) +2 other tests skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html - shard-bmg: [SKIP][327] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][328] ([Intel XE#2311]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][329] ([Intel XE#2311]) -> [SKIP][330] ([Intel XE#2312]) +5 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][331] ([Intel XE#2311]) -> [SKIP][332] ([Intel XE#2136]) +29 other tests skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: [SKIP][333] ([Intel XE#2313]) -> [SKIP][334] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][335] ([Intel XE#2313]) -> [SKIP][336] ([Intel XE#2136]) +31 other tests skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/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-onoff: - shard-bmg: [SKIP][337] ([Intel XE#2313]) -> [SKIP][338] ([Intel XE#2312]) +6 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][339] ([Intel XE#653]) -> [SKIP][340] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][341] ([Intel XE#2136]) -> [SKIP][342] ([Intel XE#2313]) +42 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-bmg: [SKIP][343] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][344] ([Intel XE#2313]) +2 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html - shard-dg2-set2: [SKIP][345] ([Intel XE#2136]) -> [SKIP][346] ([Intel XE#653]) +2 other tests skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][347] ([Intel XE#2136]) -> [SKIP][348] ([Intel XE#2352]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][349] ([Intel XE#2136]) -> [SKIP][350] ([Intel XE#2350]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][351] ([Intel XE#2312]) -> [SKIP][352] ([Intel XE#2313]) +5 other tests skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][353] ([Intel XE#2423]) -> [SKIP][354] ([Intel XE#2340]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_getfb@getfb2-accept-ccs.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][355] ([Intel XE#2423]) -> [SKIP][356] ([Intel XE#3374] / [Intel XE#3544]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-2/igt at kms_hdr@brightness-with-hdr.html * igt at kms_joiner@basic-ultra-joiner: - shard-bmg: [SKIP][357] ([Intel XE#2927]) -> [SKIP][358] ([Intel XE#2136]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_joiner@basic-ultra-joiner.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][359] ([Intel XE#2136]) -> [SKIP][360] ([Intel XE#346]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_joiner@invalid-modeset-big-joiner.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: [SKIP][361] ([Intel XE#2136]) -> [SKIP][362] ([Intel XE#2934]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-bmg: [SKIP][363] ([Intel XE#2486]) -> [SKIP][364] ([Intel XE#2423]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_panel_fitting@atomic-fastset.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_plane_lowres@tiling-yf: - shard-bmg: [SKIP][365] ([Intel XE#2423]) -> [SKIP][366] ([Intel XE#2393]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_plane_lowres@tiling-yf.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][367] ([Intel XE#2423]) -> [SKIP][368] ([Intel XE#2493]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_plane_multiple@tiling-yf.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-4/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][369] ([Intel XE#2423]) -> [SKIP][370] ([Intel XE#2571]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][371] ([Intel XE#2423]) -> [SKIP][372] ([Intel XE#2763]) +4 other tests skip [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-2/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][373] ([Intel XE#2763]) -> [SKIP][374] ([Intel XE#2423]) +4 other tests skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][375] ([Intel XE#2938]) -> [SKIP][376] ([Intel XE#2136]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_pm_backlight@brightness-with-dpms.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade: - shard-bmg: [SKIP][377] ([Intel XE#2136]) -> [SKIP][378] ([Intel XE#870]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_pm_backlight@fade.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-2/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: [SKIP][379] ([Intel XE#2391]) -> [SKIP][380] ([Intel XE#2136]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_pm_dc@dc3co-vpb-simulation.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][381] ([Intel XE#2136]) -> [SKIP][382] ([Intel XE#2392]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_pm_dc@dc5-psr.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][383] ([Intel XE#2136]) -> [SKIP][384] ([Intel XE#3309]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_pm_dc@dc5-retention-flops.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-2/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: [FAIL][385] ([Intel XE#1430]) -> [SKIP][386] ([Intel XE#2136]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_pm_dc@dc6-dpms.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][387] ([Intel XE#2446]) -> [SKIP][388] ([Intel XE#1439] / [Intel XE#836]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-4/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-bmg: [SKIP][389] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][390] ([Intel XE#2446]) +1 other test skip [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_pm_rpm@modeset-lpsp.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: [SKIP][391] ([Intel XE#2446]) -> [SKIP][392] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][393] ([Intel XE#1489]) -> [SKIP][394] ([Intel XE#2136]) +10 other tests skip [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: [SKIP][395] ([Intel XE#2136]) -> [SKIP][396] ([Intel XE#1489]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-436/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html - shard-bmg: [SKIP][397] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][398] ([Intel XE#1489]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][399] ([Intel XE#2136]) -> [SKIP][400] ([Intel XE#1489]) +12 other tests skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-p010: - shard-bmg: [SKIP][401] ([Intel XE#2387]) -> [SKIP][402] ([Intel XE#2136]) +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_psr2_su@page_flip-p010.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-psr-primary-render: - shard-bmg: [SKIP][403] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][404] ([Intel XE#2234] / [Intel XE#2850]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_psr@fbc-psr-primary-render.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-3/igt at kms_psr@fbc-psr-primary-render.html * igt at kms_psr@psr-basic: - shard-bmg: [SKIP][405] ([Intel XE#2136]) -> [SKIP][406] ([Intel XE#2234] / [Intel XE#2850]) +23 other tests skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr@psr-basic.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-4/igt at kms_psr@psr-basic.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: [SKIP][407] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][408] ([Intel XE#2136]) +19 other tests skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_psr@psr-primary-page-flip.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr@psr2-primary-render: - shard-bmg: [SKIP][409] ([Intel XE#2136]) -> [SKIP][410] ([Intel XE#2234]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_psr@psr2-primary-render.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_psr@psr2-primary-render.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][411] ([Intel XE#2136]) -> [SKIP][412] ([Intel XE#2414]) [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@bad-pixel-format: - shard-bmg: [SKIP][413] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][414] ([Intel XE#2423]) +2 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_rotation_crc@bad-pixel-format.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@primary-rotation-270: - shard-bmg: [SKIP][415] ([Intel XE#2423]) -> [SKIP][416] ([Intel XE#3414] / [Intel XE#3904]) +4 other tests skip [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_rotation_crc@primary-rotation-270.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][417] ([Intel XE#3007]) -> [SKIP][418] ([Intel XE#2330]) [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-dg2-set2: [SKIP][419] ([Intel XE#2423] / [i915#2575]) -> [SKIP][420] ([Intel XE#1127]) [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-463/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: [SKIP][421] ([Intel XE#2423]) -> [SKIP][422] ([Intel XE#2330]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-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-bmg: [SKIP][423] ([Intel XE#2330]) -> [SKIP][424] ([Intel XE#2423]) [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][425] ([Intel XE#2413]) -> [SKIP][426] ([Intel XE#2423]) +1 other test skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_scaling_modes@scaling-mode-center.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: [SKIP][427] ([Intel XE#2423]) -> [SKIP][428] ([Intel XE#2413]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-full-aspect.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_sequence@get-idle: - shard-dg2-set2: [SKIP][429] ([Intel XE#2423] / [i915#2575]) -> [SKIP][430] ([i915#2575]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_sequence@get-idle.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at kms_sequence@get-idle.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: [SKIP][431] ([Intel XE#1435]) -> [SKIP][432] ([Intel XE#2423]) +1 other test skip [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_setmode@basic-clone-single-crtc.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][433] ([Intel XE#2426]) -> [SKIP][434] ([Intel XE#2423]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_tiled_display@basic-test-pattern.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: [SKIP][435] ([Intel XE#2423]) -> [SKIP][436] ([Intel XE#2450]) [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_tv_load_detect@load-detect.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-2/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flip-suspend: - shard-bmg: [SKIP][437] ([Intel XE#2423]) -> [SKIP][438] ([Intel XE#1499]) +3 other tests skip [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_vrr@flip-suspend.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@lobf: - shard-bmg: [SKIP][439] ([Intel XE#2423]) -> [SKIP][440] ([Intel XE#2168]) [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_vrr@lobf.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-2/igt at kms_vrr@lobf.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][441] ([Intel XE#1499]) -> [SKIP][442] ([Intel XE#2423]) +3 other tests skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_vrr@seamless-rr-switch-drrs.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: [SKIP][443] ([Intel XE#756]) -> [SKIP][444] ([Intel XE#2423]) [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_writeback@writeback-check-output-xrgb2101010.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-bmg: [SKIP][445] ([Intel XE#2423]) -> [SKIP][446] ([Intel XE#756]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_writeback@writeback-fb-id-xrgb2101010.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-6/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][447] ([Intel XE#3007]) -> [SKIP][448] ([Intel XE#2423]) +4 other tests skip [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_writeback@writeback-invalid-parameters.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at kms_writeback@writeback-invalid-parameters.html - shard-dg2-set2: [SKIP][449] ([Intel XE#2423] / [i915#2575]) -> [SKIP][450] ([Intel XE#756]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_writeback@writeback-invalid-parameters.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-463/igt at kms_writeback@writeback-invalid-parameters.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: [SKIP][451] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][452] ([Intel XE#2423]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-7/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][453] ([Intel XE#1130]) -> [SKIP][454] ([Intel XE#1280] / [Intel XE#455]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_compute_preempt@compute-preempt-many.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-433/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][455] ([Intel XE#1130]) -> [SKIP][456] ([Intel XE#3889]) +1 other test skip [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][457] ([Intel XE#1130]) -> [SKIP][458] ([Intel XE#2905]) +20 other tests skip [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-bmg: [SKIP][459] ([Intel XE#3889]) -> [SKIP][460] ([Intel XE#1130]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug_online@interrupt-other-debuggable: - shard-dg2-set2: [SKIP][461] ([Intel XE#2905]) -> [SKIP][462] ([Intel XE#1130]) +1 other test skip [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_eudebug_online@interrupt-other-debuggable.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at xe_eudebug_online@interrupt-other-debuggable.html * igt at xe_eudebug_online@single-step-one: - shard-bmg: [SKIP][463] ([Intel XE#2905]) -> [SKIP][464] ([Intel XE#1130]) +20 other tests skip [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at xe_eudebug_online@single-step-one.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at xe_eudebug_online@single-step-one.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: [SKIP][465] ([Intel XE#2322]) -> [SKIP][466] ([Intel XE#1130]) +10 other tests skip [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][467] ([Intel XE#1130]) -> [SKIP][468] ([Intel XE#2322]) +8 other tests skip [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_exec_basic@multigpu-once-null-rebind.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-2/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@many-userptr-invalidate-imm: - shard-dg2-set2: [SKIP][469] ([Intel XE#288]) -> [SKIP][470] ([Intel XE#1130]) +1 other test skip [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_exec_fault_mode@many-userptr-invalidate-imm.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at xe_exec_fault_mode@many-userptr-invalidate-imm.html * igt at xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][471] ([Intel XE#255]) -> [SKIP][472] ([Intel XE#1130]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at xe_huc_copy@huc_copy.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-dg2-432/igt at xe_huc_copy@huc_copy.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][473] ([Intel XE#1130]) -> [SKIP][474] ([Intel XE#2459] / [Intel XE#2596]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_media_fill@media-fill.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at xe_media_fill@media-fill.html * igt at xe_oa@oa-tlb-invalidate: - shard-bmg: [SKIP][475] ([Intel XE#2248]) -> [SKIP][476] ([Intel XE#1130]) [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at xe_oa@oa-tlb-invalidate.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][477] ([Intel XE#1130]) -> [SKIP][478] ([Intel XE#2245]) [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_pat@pat-index-xelp.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-2/igt at xe_pat@pat-index-xelp.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: [SKIP][479] ([Intel XE#1130]) -> [SKIP][480] ([Intel XE#2284]) +2 other tests skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_pm@s2idle-d3cold-basic-exec.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-5/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@vram-d3cold-threshold: - shard-bmg: [SKIP][481] ([Intel XE#1130]) -> [SKIP][482] ([Intel XE#579]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_pm@vram-d3cold-threshold.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-8/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][483] ([Intel XE#1130]) -> [SKIP][484] ([Intel XE#944]) +4 other tests skip [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_query@multigpu-query-invalid-cs-cycles.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-3/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][485] ([Intel XE#944]) -> [SKIP][486] ([Intel XE#1130]) +4 other tests skip [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at xe_query@multigpu-query-uc-fw-version-huc.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at xe_query@multigpu-query-uc-fw-version-huc.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-bmg: [SKIP][487] ([Intel XE#3342]) -> [SKIP][488] ([Intel XE#1130]) [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at xe_sriov_flr@flr-vf1-clear.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/shard-bmg-1/igt at xe_sriov_flr@flr-vf1-clear.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [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#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#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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [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#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [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#2771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2771 [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#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [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#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010 [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#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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [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#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 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8198 -> IGTPW_12459 * Linux: xe-2508-9033a16532f74ae36c48d729d0855a6e189039df -> xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 IGTPW_12459: c33d54be70c2115e82190804df90d1bb83939b5d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2508-9033a16532f74ae36c48d729d0855a6e189039df: 9033a16532f74ae36c48d729d0855a6e189039df xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2: aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From chiahsuan.chung at amd.com Mon Jan 20 10:24:03 2025 From: chiahsuan.chung at amd.com (Tom Chung) Date: Mon, 20 Jan 2025 18:24:03 +0800 Subject: [PATCH i-g-t, v2] tests/amdgpu/amd_abm: Fix test failed on self-refresh panel Message-ID: <20250120102501.4164-1-chiahsuan.chung@amd.com> [Why] For self-refresh enabled eDP panel, it will have some delay before backlight take effect after set the abm and cause test failed. [How] Slightly reduce the brightness before test and do some page flip during the test can resolve this issue. Signed-off-by: Tom Chung --- v2: add back usleep(100000) in abm_gradual() tests/amdgpu/amd_abm.c | 101 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 97 insertions(+), 4 deletions(-) diff --git a/tests/amdgpu/amd_abm.c b/tests/amdgpu/amd_abm.c index e196b6ebc..07d2ae843 100644 --- a/tests/amdgpu/amd_abm.c +++ b/tests/amdgpu/amd_abm.c @@ -36,6 +36,7 @@ #define DEBUGFS_TARGET_BACKLIGHT_PWM "amdgpu_target_backlight_pwm" #define BACKLIGHT_PATH "/sys/class/backlight/amdgpu_bl0" #define PANEL_POWER_SAVINGS_PATH "/sys/class/drm/card0-%s/amdgpu/panel_power_savings" +#define MK_COLOR(r, g, b) ((0 << 24) | (r << 16) | (g << 8) | b) typedef struct data { igt_display_t display; @@ -47,15 +48,72 @@ typedef struct data { enum pipe pipe_id; int w, h; igt_fb_t ref_fb; + igt_fb_t ref_fb2; + uint32_t *fb_mem; } data_t; +static void fbmem_draw_smpte_pattern(uint32_t *fbmem, int width, int height) +{ + uint32_t x, y; + uint32_t colors_top[] = { + MK_COLOR(192, 192, 192), /* grey */ + MK_COLOR(192, 192, 0), /* yellow */ + MK_COLOR(0, 192, 192), /* cyan */ + MK_COLOR(0, 192, 0), /* green */ + MK_COLOR(192, 0, 192), /* magenta */ + MK_COLOR(192, 0, 0), /* red */ + MK_COLOR(0, 0, 192), /* blue */ + }; + uint32_t colors_middle[] = { + MK_COLOR(0, 0, 192), /* blue */ + MK_COLOR(19, 19, 19), /* black */ + MK_COLOR(192, 0, 192), /* magenta */ + MK_COLOR(19, 19, 19), /* black */ + MK_COLOR(0, 192, 192), /* cyan */ + MK_COLOR(19, 19, 19), /* black */ + MK_COLOR(192, 192, 192), /* grey */ + }; + uint32_t colors_bottom[] = { + MK_COLOR(0, 33, 76), /* in-phase */ + MK_COLOR(255, 255, 255), /* super white */ + MK_COLOR(50, 0, 106), /* quadrature */ + MK_COLOR(19, 19, 19), /* black */ + MK_COLOR(9, 9, 9), /* 3.5% */ + MK_COLOR(19, 19, 19), /* 7.5% */ + MK_COLOR(29, 29, 29), /* 11.5% */ + MK_COLOR(19, 19, 19), /* black */ + }; + + for (y = 0; y < height * 6 / 9; ++y) { + for (x = 0; x < width; ++x) + fbmem[x] = colors_top[x * 7 / width]; + fbmem += width; + } + + for (; y < height * 7 / 9; ++y) { + for (x = 0; x < width; ++x) + fbmem[x] = colors_middle[x * 7 / width]; + fbmem += width; + } + + for (; y < height; ++y) { + for (x = 0; x < width * 5 / 7; ++x) + fbmem[x] = colors_bottom[x * 4 / (width * 5 / 7)]; + for (; x < width * 6 / 7; ++x) + fbmem[x] = colors_bottom[(x - width * 5 / 7) * 3 / (width / 7) + 4]; + for (; x < width; ++x) + fbmem[x] = colors_bottom[7]; + fbmem += width; + } +} + /* Common test setup. */ static void test_init(data_t *data) { igt_display_t *display = &data->display; drmModeConnectorPtr conn; bool has_edp = false; - int i; + int i, fb_id; /* Skip test if no eDP connected. */ for (i = 0; i < display->n_outputs; i++) { @@ -92,9 +150,16 @@ static void test_init(data_t *data) data->h = data->mode->vdisplay; data->ref_fb.fb_id = 0; + data->ref_fb2.fb_id = 0; + fb_id = igt_create_fb(data->drm_fd, data->mode->hdisplay, data->mode->vdisplay, + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, &data->ref_fb); + igt_assert(fb_id); + + data->fb_mem = igt_fb_map_buffer(data->drm_fd, &data->ref_fb); + fbmem_draw_smpte_pattern(data->fb_mem, data->w, data->h); igt_create_color_fb(data->drm_fd, data->mode->hdisplay, - data->mode->vdisplay, DRM_FORMAT_XRGB8888, 0, 0.0, 0.6, 0.6, &data->ref_fb); + data->mode->vdisplay, DRM_FORMAT_XRGB8888, 0, 0.05, 0.05, 0.05, &data->ref_fb2); } /* Common test cleanup. */ @@ -105,8 +170,11 @@ static void test_fini(data_t *data) igt_display_reset(display); igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, 0); + igt_fb_unmap_buffer(&data->ref_fb, data->fb_mem); if (data->ref_fb.fb_id) igt_remove_fb(data->drm_fd, &data->ref_fb); + if (data->ref_fb2.fb_id) + igt_remove_fb(data->drm_fd, &data->ref_fb2); } @@ -217,6 +285,29 @@ static int backlight_read_max_brightness(int *result) return errno; } +static void page_flip(data_t *data, igt_output_t *output, uint32_t frame_num) +{ + int i, ret, frame_count; + igt_fb_t *flip_fb; + + if (!data || data->ref_fb.fb_id == 0 || data->ref_fb2.fb_id == 0) + igt_skip("Page flip failed.\n"); + + for (i = 0; i < 2; i++) { + if (i % 2 == 0) + flip_fb = &data->ref_fb2; + else + flip_fb = &data->ref_fb; + + for (frame_count = 0; frame_count <= frame_num; frame_count++) { + ret = drmModePageFlip(data->drm_fd, output->config.crtc->crtc_id, + flip_fb->fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL); + igt_require(ret == 0); + kmstest_wait_for_pageflip(data->drm_fd); + } + } +} + static void backlight_dpms_cycle(data_t *data) { int ret; @@ -332,7 +423,7 @@ static void abm_enabled(data_t *data) igt_assert_eq(ret, 0); set_abm_level(data, output, 0); - backlight_write_brightness(max_brightness); + backlight_write_brightness(max_brightness-max_brightness/10); usleep(100000); prev_pwm = read_target_backlight_pwm(data->drm_fd, output->name); pwm_without_abm = prev_pwm; @@ -340,6 +431,7 @@ static void abm_enabled(data_t *data) for (i = 1; i < 5; i++) { set_abm_level(data, output, i); usleep(100000); + page_flip(data, output, 10); pwm = read_target_backlight_pwm(data->drm_fd, output->name); igt_assert(pwm <= prev_pwm); igt_assert(pwm < pwm_without_abm); @@ -366,7 +458,7 @@ static void abm_gradual(data_t *data) igt_assert_eq(ret, 0); set_abm_level(data, output, 0); - backlight_write_brightness(max_brightness); + backlight_write_brightness(max_brightness-max_brightness/10); sleep(convergence_delay); prev_pwm = read_target_backlight_pwm(data->drm_fd, output->name); @@ -376,6 +468,7 @@ static void abm_gradual(data_t *data) set_abm_level(data, output, 4); for (i = 0; i < 10; i++) { usleep(100000); + page_flip(data, output, 10); pwm = read_current_backlight_pwm(data->drm_fd, output->name); if (pwm == prev_pwm) break; -- 2.43.0 From patchwork at emeril.freedesktop.org Mon Jan 20 10:59:19 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 10:59:19 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/intel/kms=5Fdirtyfb?= =?utf-8?q?=3A_Add_skip_condition_for_bmg_platform_=28rev5=29?= In-Reply-To: <20241113174118.158849-1-mohammed.thasleem@intel.com> References: <20241113174118.158849-1-mohammed.thasleem@intel.com> Message-ID: <173737075901.2101051.8418277931114270312@b555e5b46a47> == Series Details == Series: tests/intel/kms_dirtyfb: Add skip condition for bmg platform (rev5) URL : https://patchwork.freedesktop.org/series/141312/ State : success == Summary == CI Bug Log - changes from IGT_8199 -> IGTPW_12461 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/index.html Participating hosts (39 -> 41) ------------------------------ Additional (2): fi-bsw-nick fi-elk-e7500 Known issues ------------ Here are the changes found in IGTPW_12461 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at fbdev@info: - fi-bsw-nick: NOTRUN -> [SKIP][1] ([i915#1849]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/fi-bsw-nick/igt at fbdev@info.html * igt at gem_lmem_swapping@parallel-random-engines: - fi-bsw-nick: NOTRUN -> [SKIP][2] +43 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/fi-bsw-nick/igt at gem_lmem_swapping@parallel-random-engines.html * igt at i915_pm_rpm@module-reload: - bat-mtlp-8: [PASS][3] -> [INCOMPLETE][4] ([i915#13495]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-mtlp-8/igt at i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/bat-mtlp-8/igt at i915_pm_rpm@module-reload.html * igt at i915_selftest@live at late_gt_pm: - fi-cfl-8109u: [PASS][5] -> [DMESG-WARN][6] ([i915#11621]) +14 other tests dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/fi-cfl-8109u/igt at i915_selftest@live at late_gt_pm.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/fi-cfl-8109u/igt at i915_selftest@live at late_gt_pm.html * igt at i915_selftest@live at workarounds: - bat-mtlp-6: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/bat-mtlp-6/igt at i915_selftest@live at workarounds.html * igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1: - fi-elk-e7500: NOTRUN -> [SKIP][9] +24 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/fi-elk-e7500/igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-arls-6}: [DMESG-FAIL][10] ([i915#12061]) -> [PASS][11] +1 other test pass [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-arls-6/igt at i915_selftest@live at workarounds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/bat-arls-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#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13495]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13495 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8199 -> IGTPW_12461 CI-20190529: 20190529 CI_DRM_15983: 4d9c78b35c395ed49796502224f3a421b0ce65ef @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12461: 1a3de53b24a62a32ea7c968566bebcef81220c24 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 11:11:53 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 11:11:53 -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_=28rev5=29?= In-Reply-To: <20241113110104.125403-1-mohammed.thasleem@intel.com> References: <20241113110104.125403-1-mohammed.thasleem@intel.com> Message-ID: <173737151391.2101051.15076014259607409451@b555e5b46a47> == Series Details == Series: tests/intel/kms_fbcon_fbt: Add skip condition for bmg platform (rev5) URL : https://patchwork.freedesktop.org/series/141281/ State : failure == Summary == CI Bug Log - changes from XEIGT_8198_full -> XEIGTPW_12460_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12460_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12460_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_12460_full: ### IGT changes ### #### Possible regressions #### * igt at kms_atomic@atomic-plane-damage at pipe-a-dp-2: - shard-bmg: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-2/igt at kms_atomic@atomic-plane-damage at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-onscreen-256x256: - shard-bmg: [PASS][2] -> [INCOMPLETE][3] +1 other test incomplete [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_cursor_crc@cursor-onscreen-256x256.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_cursor_crc@cursor-onscreen-256x256.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-lnl: [PASS][7] -> [INCOMPLETE][8] +1 other test incomplete [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-1/igt at kms_flip@flip-vs-suspend-interruptible.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-7/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@flip-vs-suspend at c-dp4: - shard-dg2-set2: [PASS][9] -> [INCOMPLETE][10] +1 other test incomplete [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_flip@flip-vs-suspend at c-dp4.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-435/igt at kms_flip@flip-vs-suspend at c-dp4.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at b-hdmi-a6: - shard-dg2-set2: [PASS][11] -> [FAIL][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_flip@plain-flip-fb-recreate-interruptible at b-hdmi-a6.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-435/igt at kms_flip@plain-flip-fb-recreate-interruptible at b-hdmi-a6.html #### Warnings #### * igt at kms_atomic@atomic-plane-damage: - shard-bmg: [SKIP][13] ([Intel XE#2423]) -> [INCOMPLETE][14] [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_atomic@atomic-plane-damage.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-2/igt at kms_atomic@atomic-plane-damage.html * igt at kms_fbcon_fbt@fbc: - shard-bmg: [FAIL][15] ([Intel XE#1695]) -> [SKIP][16] [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_fbcon_fbt@fbc.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-2/igt at kms_fbcon_fbt@fbc.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [SKIP][17] ([Intel XE#2136]) -> [SKIP][18] [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_fbcon_fbt@fbc-suspend.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [SKIP][19] ([Intel XE#2423]) -> [FAIL][20] [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at xe_sriov_auto_provisioning@exclusive-ranges: - shard-bmg: [SKIP][21] ([Intel XE#1130]) -> [SKIP][22] [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_sriov_auto_provisioning@exclusive-ranges.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at xe_sriov_auto_provisioning@exclusive-ranges.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt at xe_sriov_auto_provisioning@fair-allocation}: - shard-bmg: [SKIP][23] ([Intel XE#1130]) -> [SKIP][24] [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_sriov_auto_provisioning@fair-allocation.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at xe_sriov_auto_provisioning@fair-allocation.html New tests --------- New tests have been introduced between XEIGT_8198_full and XEIGTPW_12460_full: ### New IGT tests (11) ### * igt at kms_atomic_interruptible@legacy-cursor at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [6.28] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.67] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ac-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.65] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ad-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.64] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at bc-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.63] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at bd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.81] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at cd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.63] s * igt at kms_sequence@get-idle at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.61] s * igt at kms_sequence@get-idle at pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.23] s * igt at kms_sequence@get-idle at pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.23] s * igt at kms_sequence@get-idle at pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.24] s Known issues ------------ Here are the changes found in XEIGTPW_12460_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotrebind-lateclose: - shard-bmg: [PASS][25] -> [SKIP][26] ([Intel XE#1885]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at core_hotunplug@hotrebind-lateclose.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at core_hotunplug@hotrebind-lateclose.html * igt at fbdev@info: - shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#2134]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at fbdev@info.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at fbdev@info.html * igt at intel_hwmon@hwmon-write: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2136]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at intel_hwmon@hwmon-write.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1407]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-6/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@linear-16bpp-rotate-0: - shard-dg2-set2: [PASS][31] -> [SKIP][32] ([Intel XE#2136]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_big_fb@linear-16bpp-rotate-0.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_big_fb@linear-16bpp-rotate-0.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#316]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-434/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1124]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-6/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1124]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-466/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_bw@connected-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_12460/shard-dg2-435/igt at kms_bw@connected-linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-4-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1512]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-7/igt at kms_bw@linear-tiling-4-displays-2560x1440p.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-434/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-basic-y-tiled-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#787]) +13 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-463/igt at kms_ccs@crc-primary-basic-y-tiled-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2887]) +5 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/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-d-hdmi-a-6: - shard-dg2-set2: [PASS][43] -> [INCOMPLETE][44] ([Intel XE#1727] / [Intel XE#3124]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-d-hdmi-a-6.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/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-4-tiled-dg2-rc-ccs-cc at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][45] ([Intel XE#3124]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs at pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs at pipe-c-dp-2.html * igt at kms_chamelium_color@ctm-negative: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#306]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-1/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#373]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-434/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@dp-edid-resolution-list: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#373]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-3/igt at kms_chamelium_edid@dp-edid-resolution-list.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#307]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-6/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@srm at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][51] ([Intel XE#1178]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_content_protection@srm at pipe-a-dp-2.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][52] ([Intel XE#1188]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1424]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-1/igt at kms_cursor_crc@cursor-random-max-size.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#308]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-463/igt at kms_cursor_crc@cursor-sliding-512x170.html - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#2321]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-8/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_edge_walk@256x256-top-bottom: - shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#3007]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_cursor_edge_walk@256x256-top-bottom.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_cursor_edge_walk@256x256-top-bottom.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#309]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-5/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#1340]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-3.html * igt at kms_draw_crc@draw-method-blt: - shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#2136]) +10 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_draw_crc@draw-method-blt.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_draw_crc@draw-method-blt.html * igt at kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#2423] / [i915#2575]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_feature_discovery@display-3x.html * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1421]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-8/igt at kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt at kms_flip@2x-flip-vs-modeset: - shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2316]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_flip@2x-flip-vs-modeset.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-suspend at ac-hdmi-a6-dp4: - shard-dg2-set2: [PASS][66] -> [INCOMPLETE][67] ([Intel XE#2597]) +2 other tests incomplete [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_flip@2x-flip-vs-suspend at ac-hdmi-a6-dp4.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-435/igt at kms_flip@2x-flip-vs-suspend at ac-hdmi-a6-dp4.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][68] -> [SKIP][69] ([Intel XE#2423]) +75 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_flip@2x-nonexisting-fb.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2: - shard-bmg: NOTRUN -> [FAIL][70] ([Intel XE#3321]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/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 a-hdmi-a3: - shard-bmg: [PASS][71] -> [FAIL][72] ([Intel XE#3321]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3.html * igt at kms_flip@flip-vs-expired-vblank at b-dp4: - shard-dg2-set2: [PASS][73] -> [FAIL][74] ([Intel XE#301] / [Intel XE#3321]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at b-dp4.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/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][75] -> [FAIL][76] ([Intel XE#301]) +6 other tests fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@plain-flip-fb-recreate-interruptible: - shard-dg2-set2: [PASS][77] -> [FAIL][78] ([Intel XE#2882]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_flip@plain-flip-fb-recreate-interruptible.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-435/igt at kms_flip@plain-flip-fb-recreate-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1: - shard-lnl: [PASS][79] -> [FAIL][80] ([Intel XE#886]) +5 other tests fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-6/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-7/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a6: - shard-dg2-set2: [PASS][81] -> [FAIL][82] ([Intel XE#886]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a6.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-435/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a6.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#455]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-463/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2293] / [Intel XE#2380]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1397] / [Intel XE#1745]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-5/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-default-mode: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1397]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2380]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling: - shard-bmg: [PASS][88] -> [SKIP][89] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-1/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-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1401]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-1/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-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2293]) +9 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#651]) +5 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#651]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-4/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#656]) +17 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][96] -> [SKIP][97] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#653]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt at kms_hdr@invalid-metadata-sizes: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1503]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-8/igt at kms_hdr@invalid-metadata-sizes.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_12460/shard-lnl-5/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][101] -> [SKIP][102] ([Intel XE#3012]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_joiner@invalid-modeset-force-big-joiner.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#2493]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-5/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@plane-upscale-factor-0-25-with-rotation: - shard-dg2-set2: [PASS][104] -> [SKIP][105] ([Intel XE#2423] / [i915#2575]) +14 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20 at pipe-b: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#2763]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-4/igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2763]) +19 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][108] -> [FAIL][109] ([Intel XE#718]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-2/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][110] ([Intel XE#1430]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-5/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@cursor: - shard-bmg: [PASS][111] -> [SKIP][112] ([Intel XE#2446]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_pm_rpm@cursor.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_pm_rpm@cursor.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg2-set2: [PASS][113] -> [SKIP][114] ([Intel XE#2446]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_pm_rpm@dpms-lpsp.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#1489]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-434/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-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2893]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-5/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1128]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-3/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1406]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-8/igt at kms_psr@fbc-pr-cursor-plane-move.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - 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_12460/shard-dg2-435/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#362]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-8/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1499]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-8/igt at kms_vrr@negative-basic.html * igt at xe_compute_preempt@compute-preempt-many at engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#1280] / [Intel XE#455]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-436/igt at xe_compute_preempt@compute-preempt-many at engine-drm_xe_engine_class_compute.html * igt at xe_eudebug@basic-client: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#2905]) +6 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-8/igt at xe_eudebug@basic-client.html * igt at xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2905]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-466/igt at xe_eudebug_online@interrupt-all-set-breakpoint.html * igt at xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: - shard-dg2-set2: [PASS][125] -> [SKIP][126] ([Intel XE#1130]) +28 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#688]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-5/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1392]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-1/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#288]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at xe_exec_fault_mode@once-invalid-userptr-fault.html * igt at xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1192]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-6/igt at xe_live_ktest@xe_bo.html * igt at xe_oa@non-privileged-access-vaddr: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-435/igt at xe_oa@non-privileged-access-vaddr.html * igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][132] ([Intel XE#1173]) +1 other test fail [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-463/igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-5/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@s2idle-exec-after: - shard-dg2-set2: [PASS][134] -> [ABORT][135] ([Intel XE#1358]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at xe_pm@s2idle-exec-after.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-466/igt at xe_pm@s2idle-exec-after.html * igt at xe_pm@s2idle-vm-bind-userptr: - shard-dg2-set2: [PASS][136] -> [ABORT][137] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at xe_pm@s2idle-vm-bind-userptr.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-466/igt at xe_pm@s2idle-vm-bind-userptr.html * igt at xe_pm@s3-multiple-execs: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#584]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-7/igt at xe_pm@s3-multiple-execs.html * igt at xe_query@multigpu-query-gt-list: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#944]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-463/igt at xe_query@multigpu-query-gt-list.html - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#944]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-2/igt at xe_query@multigpu-query-gt-list.html * igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][141] -> [SKIP][142] ([Intel XE#1130]) +160 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Possible fixes #### * igt at core_hotunplug@hotrebind: - shard-bmg: [SKIP][143] ([Intel XE#1885]) -> [PASS][144] +2 other tests pass [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at core_hotunplug@hotrebind.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-8/igt at core_hotunplug@hotrebind.html * igt at core_setmaster@master-drop-set-shared-fd: - shard-bmg: [SKIP][145] ([Intel XE#3453]) -> [PASS][146] [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at core_setmaster@master-drop-set-shared-fd.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-5/igt at core_setmaster@master-drop-set-shared-fd.html * igt at fbdev@eof: - shard-bmg: [SKIP][147] ([Intel XE#2134]) -> [PASS][148] +3 other tests pass [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at fbdev@eof.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at fbdev@eof.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: [FAIL][149] ([Intel XE#3908]) -> [PASS][150] +1 other test pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-4/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][151] ([Intel XE#2136]) -> [PASS][152] +29 other tests pass [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-8bpp-rotate-0: - shard-dg2-set2: [SKIP][153] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][154] [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_big_fb@linear-8bpp-rotate-0.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-435/igt at kms_big_fb@linear-8bpp-rotate-0.html * igt at kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [SKIP][155] ([Intel XE#2291]) -> [PASS][156] +1 other test pass [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-8/igt at kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [FAIL][157] ([Intel XE#1475]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-6/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-8/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][159] ([Intel XE#2882]) -> [PASS][160] +1 other test pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-hdmi-a6-dp4.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-436/igt at kms_flip@2x-flip-vs-absolute-wf_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: [FAIL][161] ([Intel XE#301]) -> [PASS][162] +6 other tests pass [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-bmg: [SKIP][163] ([Intel XE#2316]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][165] ([Intel XE#886]) -> [PASS][166] +2 other tests pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-2/igt at kms_flip@flip-vs-absolute-wf_vblank.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-5/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank at b-dp2: - shard-bmg: [FAIL][167] ([Intel XE#3321]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at b-dp2.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank at b-dp2.html * igt at kms_flip@flip-vs-expired-vblank at d-dp4: - shard-dg2-set2: [FAIL][169] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-bmg: [SKIP][171] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][172] +1 other test pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html - shard-dg2-set2: [SKIP][173] ([Intel XE#2136]) -> [PASS][174] +1 other test pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt at kms_pm_rpm@modeset-stress-extra-wait: - shard-bmg: [SKIP][175] ([Intel XE#2446]) -> [PASS][176] +5 other tests pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_pm_rpm@modeset-stress-extra-wait.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-5/igt at kms_pm_rpm@modeset-stress-extra-wait.html * igt at kms_properties@connector-properties-legacy: - shard-bmg: [SKIP][177] ([Intel XE#2423]) -> [PASS][178] +134 other tests pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_properties@connector-properties-legacy.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_properties@connector-properties-legacy.html * igt at kms_sequence@get-idle: - shard-bmg: [SKIP][179] ([Intel XE#3007]) -> [PASS][180] +6 other tests pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_sequence@get-idle.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_sequence@get-idle.html - shard-dg2-set2: [SKIP][181] ([Intel XE#2423] / [i915#2575]) -> [PASS][182] +6 other tests pass [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_sequence@get-idle.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_sequence@get-idle.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-bmg: [SKIP][183] ([Intel XE#1435]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-2/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_vrr@negative-basic: - shard-bmg: [SKIP][185] ([Intel XE#1499]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_vrr@negative-basic.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_vrr@negative-basic.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system: - shard-lnl: [INCOMPLETE][187] ([Intel XE#2771]) -> [PASS][188] +1 other test pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-7/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-lnl-1/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system.html * igt at xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [SKIP][189] ([Intel XE#1130]) -> [PASS][190] +347 other tests pass [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_exec_basic@many-bindexecqueue-rebind.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at xe_exec_basic@many-bindexecqueue-rebind.html * igt at xe_live_ktest@xe_migrate: - shard-bmg: [SKIP][191] ([Intel XE#1192]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at xe_live_ktest@xe_migrate.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at xe_live_ktest@xe_migrate.html * igt at xe_module_load@load: - shard-dg2-set2: ([SKIP][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], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218]) ([Intel XE#378]) -> ([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]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-463/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-466/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-434/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-466/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-466/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-466/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-435/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-435/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-434/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-435/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-435/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-434/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-436/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-434/igt at xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-436/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-436/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-436/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-434/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-463/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-463/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-463/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-463/igt at xe_module_load@load.html * igt at xe_module_load@many-reload: - shard-bmg: [FAIL][244] ([Intel XE#3546]) -> [PASS][245] +1 other test pass [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_module_load@many-reload.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-5/igt at xe_module_load@many-reload.html * igt at xe_vm@large-misaligned-binds-2097152: - shard-dg2-set2: [SKIP][246] ([Intel XE#1130]) -> [PASS][247] +9 other tests pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_vm@large-misaligned-binds-2097152.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-434/igt at xe_vm@large-misaligned-binds-2097152.html * igt at xe_wedged@wedged-mode-toggle: - shard-bmg: [ABORT][248] ([Intel XE#3084]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at xe_wedged@wedged-mode-toggle.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at xe_wedged@wedged-mode-toggle.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][250] ([Intel XE#2423]) -> [SKIP][251] ([Intel XE#2233]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-bmg: [SKIP][252] ([Intel XE#2423]) -> [SKIP][253] ([Intel XE#3768]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_async_flips@invalid-async-flip-atomic.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-5/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][254] ([Intel XE#2423]) -> [SKIP][255] ([Intel XE#2385]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-5/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: [SKIP][256] ([Intel XE#2370]) -> [SKIP][257] ([Intel XE#2423]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][258] ([Intel XE#2327]) -> [SKIP][259] ([Intel XE#2136] / [Intel XE#2231]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html - shard-dg2-set2: [SKIP][260] ([Intel XE#316]) -> [SKIP][261] ([Intel XE#2136] / [Intel XE#2351]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-bmg: [SKIP][262] ([Intel XE#2136]) -> [SKIP][263] ([Intel XE#2327]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_big_fb@linear-64bpp-rotate-90.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2-set2: [SKIP][264] ([Intel XE#316]) -> [SKIP][265] ([Intel XE#2136]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][266] ([Intel XE#1124]) -> [SKIP][267] ([Intel XE#2136] / [Intel XE#2231]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_big_fb@y-tiled-32bpp-rotate-0.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_big_fb@y-tiled-32bpp-rotate-0.html - shard-dg2-set2: [SKIP][268] ([Intel XE#1124]) -> [SKIP][269] ([Intel XE#2136] / [Intel XE#2351]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_big_fb@y-tiled-32bpp-rotate-0.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_big_fb@y-tiled-32bpp-rotate-0.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][270] ([Intel XE#2136]) -> [SKIP][271] ([Intel XE#1124]) +19 other tests skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][272] ([Intel XE#2136]) -> [SKIP][273] ([Intel XE#607]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][274] ([Intel XE#2136]) -> [SKIP][275] ([Intel XE#610]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-addfb: - shard-bmg: [SKIP][276] ([Intel XE#2136]) -> [SKIP][277] ([Intel XE#2328]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: [SKIP][278] ([Intel XE#610]) -> [SKIP][279] ([Intel XE#2136] / [Intel XE#2231]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-dg2-set2: [SKIP][280] ([Intel XE#610]) -> [SKIP][281] ([Intel XE#2136]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [SKIP][282] ([Intel XE#1124]) -> [SKIP][283] ([Intel XE#2136]) +10 other tests skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/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: [SKIP][284] ([Intel XE#2423]) -> [SKIP][285] ([Intel XE#2314] / [Intel XE#2894]) +3 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][286] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][287] ([Intel XE#2423]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: [SKIP][288] ([Intel XE#2191]) -> [SKIP][289] ([Intel XE#2423] / [i915#2575]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][290] ([Intel XE#2423]) -> [SKIP][291] ([Intel XE#367]) +4 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][292] ([Intel XE#367]) -> [SKIP][293] ([Intel XE#2423]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-3-displays-1920x1080p: - shard-dg2-set2: [SKIP][294] ([Intel XE#367]) -> [SKIP][295] ([Intel XE#2423] / [i915#2575]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_bw@linear-tiling-3-displays-1920x1080p.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_bw@linear-tiling-3-displays-1920x1080p.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][296] ([Intel XE#2887]) -> [SKIP][297] ([Intel XE#2136]) +11 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][298] ([Intel XE#2136]) -> [SKIP][299] ([Intel XE#2887]) +26 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][300] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][301] ([Intel XE#2136] / [Intel XE#2231]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html - shard-dg2-set2: [SKIP][302] ([Intel XE#2907]) -> [SKIP][303] ([Intel XE#2136]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [SKIP][304] ([Intel XE#2136]) -> [INCOMPLETE][305] ([Intel XE#3862]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][306] ([Intel XE#2136]) -> [SKIP][307] ([Intel XE#3432]) +2 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-bmg: [SKIP][308] ([Intel XE#3432]) -> [SKIP][309] ([Intel XE#2136]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs: - shard-bmg: [SKIP][310] ([Intel XE#2887]) -> [SKIP][311] ([Intel XE#2136] / [Intel XE#2231]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html - shard-dg2-set2: [SKIP][312] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][313] ([Intel XE#2136] / [Intel XE#2351]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][314] ([Intel XE#2692] / [Intel XE#4010]) -> [INCOMPLETE][315] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/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-b-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][316] ([Intel XE#4010]) -> [DMESG-WARN][317] ([Intel XE#1727] / [Intel XE#3113]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-6.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-434/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-bmg: [SKIP][318] ([Intel XE#2136]) -> [SKIP][319] ([Intel XE#2652] / [Intel XE#787]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][320] ([Intel XE#2724]) -> [SKIP][321] ([Intel XE#2136]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_cdclk@mode-transition.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_cdclk@mode-transition.html * igt at kms_cdclk@plane-scaling: - shard-bmg: [SKIP][322] ([Intel XE#2136]) -> [SKIP][323] ([Intel XE#2724]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cdclk@plane-scaling.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-bmg: [SKIP][324] ([Intel XE#2423]) -> [SKIP][325] ([Intel XE#2252]) +16 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_chamelium_audio@hdmi-audio-edid.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_color@ctm-0-25: - shard-bmg: [SKIP][326] ([Intel XE#2325]) -> [SKIP][327] ([Intel XE#2423]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_chamelium_color@ctm-0-25.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-dg2-set2: [SKIP][328] ([Intel XE#306]) -> [SKIP][329] ([Intel XE#2423] / [i915#2575]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_chamelium_color@ctm-green-to-red.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-bmg: [SKIP][330] ([Intel XE#2423]) -> [SKIP][331] ([Intel XE#2325]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_chamelium_color@ctm-red-to-blue.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-2/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_frames@dp-frame-dump: - shard-bmg: [SKIP][332] ([Intel XE#2252]) -> [SKIP][333] ([Intel XE#3007]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_chamelium_frames@dp-frame-dump.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_chamelium_frames@dp-frame-dump.html * igt at kms_chamelium_frames@hdmi-aspect-ratio: - shard-bmg: [SKIP][334] ([Intel XE#2252]) -> [SKIP][335] ([Intel XE#2423]) +8 other tests skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_chamelium_frames@hdmi-aspect-ratio.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_chamelium_frames@hdmi-aspect-ratio.html * igt at kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-dg2-set2: [SKIP][336] ([Intel XE#373]) -> [SKIP][337] ([Intel XE#2423] / [i915#2575]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_chamelium_hpd@hdmi-hpd-after-suspend.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt at kms_color@ctm-blue-to-red: - shard-bmg: [SKIP][338] ([Intel XE#2423]) -> [SKIP][339] ([Intel XE#3007]) +13 other tests skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_color@ctm-blue-to-red.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_color@ctm-blue-to-red.html * igt at kms_color@degamma: - shard-bmg: [DMESG-WARN][340] ([Intel XE#877]) -> [SKIP][341] ([Intel XE#2423]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_color@degamma.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_color@degamma.html * igt at kms_content_protection@atomic: - shard-bmg: [FAIL][342] ([Intel XE#1178]) -> [SKIP][343] ([Intel XE#2341]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_content_protection@atomic.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_content_protection@atomic.html * igt at kms_content_protection@content-type-change: - shard-bmg: [SKIP][344] ([Intel XE#2341]) -> [SKIP][345] ([Intel XE#2423]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at kms_content_protection@content-type-change.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-bmg: [SKIP][346] ([Intel XE#2390]) -> [SKIP][347] ([Intel XE#2423]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_content_protection@dp-mst-lic-type-0.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-bmg: [SKIP][348] ([Intel XE#2423]) -> [SKIP][349] ([Intel XE#2390]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_content_protection@dp-mst-lic-type-1.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-5/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@lic-type-0: - shard-dg2-set2: [FAIL][350] ([Intel XE#1178]) -> [SKIP][351] ([Intel XE#2423] / [i915#2575]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_content_protection@lic-type-0.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_content_protection@lic-type-0.html - shard-bmg: [FAIL][352] ([Intel XE#1178]) -> [SKIP][353] ([Intel XE#3007]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_content_protection@lic-type-0.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][354] ([Intel XE#2423]) -> [SKIP][355] ([Intel XE#2341]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_content_protection@mei-interface.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-bmg: [SKIP][356] ([Intel XE#2423]) -> [FAIL][357] ([Intel XE#1178]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_content_protection@srm.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-bmg: [SKIP][358] ([Intel XE#2341]) -> [FAIL][359] ([Intel XE#1188]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_content_protection@uevent.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: [SKIP][360] ([Intel XE#2321]) -> [SKIP][361] ([Intel XE#2423]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_cursor_crc@cursor-offscreen-512x170.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: [SKIP][362] ([Intel XE#2320]) -> [SKIP][363] ([Intel XE#2423]) +5 other tests skip [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_cursor_crc@cursor-onscreen-32x32.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][364] ([Intel XE#3007]) -> [SKIP][365] ([Intel XE#2320]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_cursor_crc@cursor-random-32x32.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-2/igt at kms_cursor_crc@cursor-random-32x32.html - shard-dg2-set2: [SKIP][366] ([Intel XE#2423] / [i915#2575]) -> [SKIP][367] ([Intel XE#455]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_cursor_crc@cursor-random-32x32.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-463/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: [SKIP][368] ([Intel XE#2423]) -> [SKIP][369] ([Intel XE#2320]) +7 other tests skip [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-256x85.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][370] ([Intel XE#2423]) -> [SKIP][371] ([Intel XE#2321]) +5 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x512.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-bmg: [SKIP][372] ([Intel XE#2286]) -> [SKIP][373] ([Intel XE#2423]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: [SKIP][374] ([Intel XE#2423]) -> [SKIP][375] ([Intel XE#2286]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-bmg: [SKIP][376] ([Intel XE#2423]) -> [SKIP][377] ([Intel XE#2291]) +2 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_cursor_legacy@cursora-vs-flipb-legacy.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [SKIP][378] ([Intel XE#2423]) -> [DMESG-WARN][379] ([Intel XE#877]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@single-bo: - shard-bmg: [SKIP][380] ([Intel XE#3007]) -> [SKIP][381] ([Intel XE#2423]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_cursor_legacy@single-bo.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_cursor_legacy@single-bo.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][382] ([Intel XE#2423]) -> [SKIP][383] ([Intel XE#1340]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][384] ([Intel XE#3070]) -> [SKIP][385] ([Intel XE#2136]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_dp_linktrain_fallback@dp-fallback.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_dsc@dsc-fractional-bpp: - shard-bmg: [SKIP][386] ([Intel XE#2136]) -> [SKIP][387] ([Intel XE#2244]) +2 other tests skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_dsc@dsc-fractional-bpp.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_fbcon_fbt@psr: - shard-bmg: [SKIP][388] ([Intel XE#2136]) -> [SKIP][389] ([Intel XE#776]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_fbcon_fbt@psr.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][390] ([Intel XE#2423]) -> [SKIP][391] ([Intel XE#2372]) [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_feature_discovery@chamelium.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-3x: - shard-bmg: [SKIP][392] ([Intel XE#2373]) -> [SKIP][393] ([Intel XE#3007]) [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_feature_discovery@display-3x.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-bmg: [SKIP][394] ([Intel XE#2423]) -> [SKIP][395] ([Intel XE#1138]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_feature_discovery@display-4x.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][396] ([Intel XE#2423]) -> [SKIP][397] ([Intel XE#2375]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_feature_discovery@dp-mst.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr2: - shard-bmg: [SKIP][398] ([Intel XE#2423]) -> [SKIP][399] ([Intel XE#2374]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_feature_discovery@psr2.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: [SKIP][400] ([Intel XE#2423]) -> [SKIP][401] ([Intel XE#2316]) +3 other tests skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_flip@2x-modeset-vs-vblank-race.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_flip@2x-modeset-vs-vblank-race.html * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: [SKIP][402] ([Intel XE#2316]) -> [SKIP][403] ([Intel XE#2423]) [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: [SKIP][404] ([Intel XE#2136]) -> [SKIP][405] ([Intel XE#2293] / [Intel XE#2380]) +8 other tests skip [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-5/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][406] ([Intel XE#2136]) -> [SKIP][407] ([Intel XE#2380]) [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: [SKIP][408] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][409] ([Intel XE#2136]) +2 other tests skip [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][410] ([Intel XE#2136]) -> [SKIP][411] ([Intel XE#2312]) +11 other tests skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][412] ([Intel XE#2312]) -> [SKIP][413] ([Intel XE#2311]) +7 other tests skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][414] ([Intel XE#651]) -> [SKIP][415] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][416] ([Intel XE#2136]) -> [SKIP][417] ([Intel XE#2311]) +49 other tests skip [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt: - shard-bmg: [SKIP][418] ([Intel XE#2311]) -> [SKIP][419] ([Intel XE#2136]) +24 other tests skip [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-bmg: [FAIL][420] ([Intel XE#2333]) -> [SKIP][421] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][422] ([Intel XE#2333]) -> [SKIP][423] ([Intel XE#2136]) +7 other tests skip [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][424] ([Intel XE#2312]) -> [FAIL][425] ([Intel XE#2333]) +2 other tests fail [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/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-onoff: - shard-bmg: [SKIP][426] ([Intel XE#2136]) -> [FAIL][427] ([Intel XE#2333]) +27 other tests fail [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-modesetfrombusy: - shard-bmg: [SKIP][428] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][429] ([Intel XE#2333]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-modesetfrombusy.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-modesetfrombusy.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][430] ([Intel XE#2311]) -> [SKIP][431] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][432] ([Intel XE#651]) -> [SKIP][433] ([Intel XE#2136]) +2 other tests skip [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][434] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][435] ([Intel XE#2311]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html - shard-dg2-set2: [SKIP][436] ([Intel XE#2136]) -> [SKIP][437] ([Intel XE#651]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][438] ([Intel XE#2311]) -> [SKIP][439] ([Intel XE#2312]) +4 other tests skip [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][440] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][441] ([Intel XE#2136]) +2 other tests skip [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][442] ([Intel XE#653]) -> [SKIP][443] ([Intel XE#2136]) +2 other tests skip [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][444] ([Intel XE#653]) -> [SKIP][445] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][446] ([Intel XE#2313]) -> [SKIP][447] ([Intel XE#2136]) +24 other tests skip [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: - shard-bmg: [SKIP][448] ([Intel XE#2313]) -> [SKIP][449] ([Intel XE#2312]) +1 other test skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][450] ([Intel XE#2136]) -> [SKIP][451] ([Intel XE#2136] / [Intel XE#2231]) +8 other tests skip [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][452] ([Intel XE#2312]) -> [SKIP][453] ([Intel XE#2313]) +6 other tests skip [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][454] ([Intel XE#2136]) -> [SKIP][455] ([Intel XE#2313]) +52 other tests skip [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-bmg: [SKIP][456] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][457] ([Intel XE#2313]) [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html - shard-dg2-set2: [SKIP][458] ([Intel XE#2136]) -> [SKIP][459] ([Intel XE#653]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][460] ([Intel XE#2136]) -> [SKIP][461] ([Intel XE#2352]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][462] ([Intel XE#2136]) -> [SKIP][463] ([Intel XE#2350]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][464] ([Intel XE#2312]) -> [SKIP][465] ([Intel XE#2136]) +4 other tests skip [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-suspend: - shard-dg2-set2: [SKIP][466] ([Intel XE#653]) -> [INCOMPLETE][467] ([Intel XE#2594]) [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-suspend.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-suspend.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][468] ([Intel XE#2423]) -> [SKIP][469] ([Intel XE#2340]) [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_getfb@getfb2-accept-ccs.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][470] ([Intel XE#2423]) -> [SKIP][471] ([Intel XE#3544]) [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_hdr@brightness-with-hdr.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_hdr@brightness-with-hdr.html * igt at kms_joiner@basic-ultra-joiner: - shard-bmg: [SKIP][472] ([Intel XE#2927]) -> [SKIP][473] ([Intel XE#2136]) +1 other test skip [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_joiner@basic-ultra-joiner.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][474] ([Intel XE#2136]) -> [SKIP][475] ([Intel XE#346]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_joiner@invalid-modeset-big-joiner.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-8/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: [SKIP][476] ([Intel XE#2136]) -> [SKIP][477] ([Intel XE#2934]) [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@legacy: - shard-bmg: [SKIP][478] ([Intel XE#2423]) -> [SKIP][479] ([Intel XE#2486]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_panel_fitting@legacy.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-5/igt at kms_panel_fitting@legacy.html * igt at kms_plane_lowres@tiling-yf: - shard-bmg: [SKIP][480] ([Intel XE#2423]) -> [SKIP][481] ([Intel XE#2393]) +1 other test skip [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_plane_lowres@tiling-yf.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][482] ([Intel XE#2423]) -> [SKIP][483] ([Intel XE#2493]) [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_plane_multiple@tiling-yf.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][484] ([Intel XE#2423]) -> [SKIP][485] ([Intel XE#2763]) +4 other tests skip [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-2/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][486] ([Intel XE#2763]) -> [SKIP][487] ([Intel XE#2423]) +2 other tests skip [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_backlight@fade: - shard-bmg: [SKIP][488] ([Intel XE#2136]) -> [SKIP][489] ([Intel XE#870]) +1 other test skip [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_pm_backlight@fade.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_pm_backlight@fade.html * igt at kms_pm_backlight@fade-with-suspend: - shard-bmg: [SKIP][490] ([Intel XE#870]) -> [SKIP][491] ([Intel XE#2136]) [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_pm_backlight@fade-with-suspend.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][492] ([Intel XE#2136]) -> [SKIP][493] ([Intel XE#2392]) [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_pm_dc@dc5-psr.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][494] ([Intel XE#2136]) -> [SKIP][495] ([Intel XE#3309]) [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_pm_dc@dc5-retention-flops.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: [FAIL][496] ([Intel XE#1430]) -> [SKIP][497] ([Intel XE#2136]) [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_pm_dc@dc6-dpms.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-lpsp: - shard-bmg: [SKIP][498] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][499] ([Intel XE#2446]) [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_pm_rpm@dpms-lpsp.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][500] ([Intel XE#2446]) -> [SKIP][501] ([Intel XE#1439] / [Intel XE#836]) [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: [SKIP][502] ([Intel XE#2136]) -> [SKIP][503] ([Intel XE#1489]) [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-466/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html - shard-bmg: [SKIP][504] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][505] ([Intel XE#1489]) [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_psr2_sf@pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][506] ([Intel XE#1489]) -> [SKIP][507] ([Intel XE#2136]) [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][508] ([Intel XE#2136]) -> [SKIP][509] ([Intel XE#1489]) +16 other tests skip [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-5/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-bmg: [SKIP][510] ([Intel XE#1489]) -> [SKIP][511] ([Intel XE#2136]) +7 other tests skip [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@page_flip-nv12: - shard-bmg: [SKIP][512] ([Intel XE#2387]) -> [SKIP][513] ([Intel XE#2136]) [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at kms_psr2_su@page_flip-nv12.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-bmg: [SKIP][514] ([Intel XE#2136]) -> [SKIP][515] ([Intel XE#2387]) +1 other test skip [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_psr2_su@page_flip-xrgb8888.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-blt: - shard-bmg: [SKIP][516] ([Intel XE#2136]) -> [SKIP][517] ([Intel XE#2234] / [Intel XE#2850]) +23 other tests skip [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr@fbc-pr-cursor-blt.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-8/igt at kms_psr@fbc-pr-cursor-blt.html * igt at kms_psr@fbc-psr-primary-render: - shard-bmg: [SKIP][518] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][519] ([Intel XE#2234] / [Intel XE#2850]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_psr@fbc-psr-primary-render.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_psr@fbc-psr-primary-render.html - shard-dg2-set2: [SKIP][520] ([Intel XE#2136]) -> [SKIP][521] ([Intel XE#2850] / [Intel XE#929]) [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_psr@fbc-psr-primary-render.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-436/igt at kms_psr@fbc-psr-primary-render.html * igt at kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: [SKIP][522] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][523] ([Intel XE#2136]) +8 other tests skip [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at kms_psr@fbc-psr2-cursor-plane-move.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_psr@fbc-psr2-cursor-plane-move.html * igt at kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][524] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][525] ([Intel XE#2136]) +1 other test skip [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_psr@fbc-psr2-sprite-plane-move.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_psr@fbc-psr2-sprite-plane-move.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-bmg: [SKIP][526] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][527] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_psr@pr-sprite-plane-onoff.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_psr@pr-sprite-plane-onoff.html - shard-dg2-set2: [SKIP][528] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][529] ([Intel XE#2136] / [Intel XE#2351]) [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_psr@pr-sprite-plane-onoff.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][530] ([Intel XE#2136]) -> [SKIP][531] ([Intel XE#2414]) +1 other test skip [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-5/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@bad-pixel-format: - shard-bmg: [SKIP][532] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][533] ([Intel XE#2423]) +1 other test skip [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_rotation_crc@bad-pixel-format.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][534] ([Intel XE#3007]) -> [SKIP][535] ([Intel XE#2330]) [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-4/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-dg2-set2: [SKIP][536] ([Intel XE#2423] / [i915#2575]) -> [SKIP][537] ([Intel XE#1127]) [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-466/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: [SKIP][538] ([Intel XE#2423]) -> [SKIP][539] ([Intel XE#3414] / [Intel XE#3904]) [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][540] ([Intel XE#2426]) -> [SKIP][541] ([Intel XE#2423]) +1 other test skip [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_tiled_display@basic-test-pattern.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][542] ([Intel XE#1500]) -> [SKIP][543] ([Intel XE#362]) [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: [SKIP][544] ([Intel XE#2423]) -> [SKIP][545] ([Intel XE#2450]) [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_tv_load_detect@load-detect.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@flip-suspend: - shard-bmg: [SKIP][546] ([Intel XE#2423]) -> [SKIP][547] ([Intel XE#1499]) +2 other tests skip [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_vrr@flip-suspend.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-2/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@flipline: - shard-dg2-set2: [SKIP][548] ([Intel XE#455]) -> [SKIP][549] ([Intel XE#2423] / [i915#2575]) [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at kms_vrr@flipline.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at kms_vrr@flipline.html - shard-bmg: [SKIP][550] ([Intel XE#1499]) -> [SKIP][551] ([Intel XE#3007]) [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at kms_vrr@flipline.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at kms_vrr@flipline.html * igt at kms_vrr@lobf: - shard-bmg: [SKIP][552] ([Intel XE#2423]) -> [SKIP][553] ([Intel XE#2168]) [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at kms_vrr@lobf.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_vrr@lobf.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][554] ([Intel XE#1499]) -> [SKIP][555] ([Intel XE#2423]) +1 other test skip [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at kms_vrr@seamless-rr-switch-virtual.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-bmg: [SKIP][556] ([Intel XE#2423]) -> [SKIP][557] ([Intel XE#756]) [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at kms_writeback@writeback-fb-id-xrgb2101010.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][558] ([Intel XE#3007]) -> [SKIP][559] ([Intel XE#756]) [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at kms_writeback@writeback-invalid-parameters.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-5/igt at kms_writeback@writeback-invalid-parameters.html - shard-dg2-set2: [SKIP][560] ([Intel XE#2423] / [i915#2575]) -> [SKIP][561] ([Intel XE#756]) [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at kms_writeback@writeback-invalid-parameters.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-434/igt at kms_writeback@writeback-invalid-parameters.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][562] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][563] ([Intel XE#2423]) +1 other test skip [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at sriov_basic@enable-vfs-autoprobe-off.html [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][564] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][565] ([Intel XE#1130]) [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at xe_compute_preempt@compute-preempt.html [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at xe_compute_preempt@compute-preempt.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][566] ([Intel XE#1130]) -> [SKIP][567] ([Intel XE#1280] / [Intel XE#455]) [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_compute_preempt@compute-preempt-many.html [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-436/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][568] ([Intel XE#2504]) -> [SKIP][569] ([Intel XE#1130]) [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at xe_create@multigpu-create-massive-size.html [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at xe_create@multigpu-create-massive-size.html * igt at xe_eudebug@basic-connect: - shard-dg2-set2: [SKIP][570] ([Intel XE#2905]) -> [SKIP][571] ([Intel XE#1130]) [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at xe_eudebug@basic-connect.html [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at xe_eudebug@basic-connect.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][572] ([Intel XE#1130]) -> [SKIP][573] ([Intel XE#3889]) +1 other test skip [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-2/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][574] ([Intel XE#1130]) -> [SKIP][575] ([Intel XE#2905]) +16 other tests skip [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-5/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html - shard-dg2-set2: [SKIP][576] ([Intel XE#1130]) -> [SKIP][577] ([Intel XE#2905]) [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: [SKIP][578] ([Intel XE#3889]) -> [SKIP][579] ([Intel XE#1130]) [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html - shard-bmg: [SKIP][580] ([Intel XE#3889]) -> [SKIP][581] ([Intel XE#1130]) [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram: - shard-bmg: [SKIP][582] ([Intel XE#2905]) -> [SKIP][583] ([Intel XE#1130]) +8 other tests skip [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind: - shard-bmg: [SKIP][584] ([Intel XE#2322]) -> [SKIP][585] ([Intel XE#1130]) +6 other tests skip [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][586] ([Intel XE#1130]) -> [SKIP][587] ([Intel XE#2322]) +10 other tests skip [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_exec_basic@multigpu-once-null-rebind.html [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: [SKIP][588] ([Intel XE#288]) -> [SKIP][589] ([Intel XE#1130]) +2 other tests skip [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_exec_fault_mode@once-bindexecqueue-imm.html [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at xe_exec_fault_mode@once-bindexecqueue-imm.html * igt at xe_mmap@small-bar: - shard-bmg: [SKIP][590] ([Intel XE#1130]) -> [SKIP][591] ([Intel XE#586]) [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_mmap@small-bar.html [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-1/igt at xe_mmap@small-bar.html * igt at xe_oa@invalid-map-oa-buffer: - shard-dg2-set2: [SKIP][592] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][593] ([Intel XE#1130]) [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt at xe_oa@invalid-map-oa-buffer.html [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at xe_oa@invalid-map-oa-buffer.html * igt at xe_oa@syncs-ufence-wait-cfg: - shard-dg2-set2: [SKIP][594] ([Intel XE#1130]) -> [SKIP][595] ([Intel XE#2541] / [Intel XE#3573]) [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_oa@syncs-ufence-wait-cfg.html [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-435/igt at xe_oa@syncs-ufence-wait-cfg.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][596] ([Intel XE#2248]) -> [SKIP][597] ([Intel XE#1130]) [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt at xe_oa@unprivileged-single-ctx-counters.html [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][598] ([Intel XE#1130]) -> [SKIP][599] ([Intel XE#2245]) [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_pat@pat-index-xelp.html [599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-5/igt at xe_pat@pat-index-xelp.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: [SKIP][600] ([Intel XE#1130]) -> [SKIP][601] ([Intel XE#2284]) +2 other tests skip [600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_pm@s2idle-d3cold-basic-exec.html [601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-8/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-bmg: [SKIP][602] ([Intel XE#2284]) -> [SKIP][603] ([Intel XE#1130]) [602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt at xe_pm@s3-d3cold-basic-exec.html [603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-3/igt at xe_pm@s3-d3cold-basic-exec.html - shard-dg2-set2: [SKIP][604] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][605] ([Intel XE#1130]) [604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt at xe_pm@s3-d3cold-basic-exec.html [605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-dg2-433/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_pm@vram-d3cold-threshold: - shard-bmg: [SKIP][606] ([Intel XE#1130]) -> [SKIP][607] ([Intel XE#579]) [606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt at xe_pm@vram-d3cold-threshold.html [607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-6/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-hwconfig: - shard-bmg: [SKIP][608] ([Intel XE#944]) -> [SKIP][609] ([Intel XE#1130]) +1 other test skip [608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt at xe_query@multigpu-query-hwconfig.html [609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-7/igt at xe_query@multigpu-query-hwconfig.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][610] ([Intel XE#1130]) -> [SKIP][611] ([Intel XE#944]) +4 other tests skip [610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt at xe_query@multigpu-query-invalid-cs-cycles.html [611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/shard-bmg-5/igt at xe_query@multigpu-query-invalid-cs-cycles.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [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#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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [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#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#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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [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#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [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#2771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2771 [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [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#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [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#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010 [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#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [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#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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [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#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 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8198 -> IGTPW_12460 * Linux: xe-2508-9033a16532f74ae36c48d729d0855a6e189039df -> xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 IGTPW_12460: 783d10928eca7563a8811a3a3fa90b3d693b6916 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2508-9033a16532f74ae36c48d729d0855a6e189039df: 9033a16532f74ae36c48d729d0855a6e189039df xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2: aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 11:38:37 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 11:38:37 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fcreate?= =?utf-8?q?=3A_Check_negative_cases_for_exec=5Fqueue_create/destroy_ioctl?= In-Reply-To: <20250117205319.3359797-1-nakshtra.goyal@intel.com> References: <20250117205319.3359797-1-nakshtra.goyal@intel.com> Message-ID: <173737311779.2106959.7579177971973210315@b555e5b46a47> == Series Details == Series: tests/intel/xe_create: Check negative cases for exec_queue create/destroy ioctl URL : https://patchwork.freedesktop.org/series/143692/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15979_full -> IGTPW_12456_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12456_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12456_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_12456/index.html Participating hosts (11 -> 12) ------------------------------ Additional (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12456_full: ### IGT changes ### #### Possible regressions #### * igt at i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-3/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-tglu: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-tglu-5/igt at i915_pm_rpm@system-suspend-execbuf.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-8/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at kms_atomic_transition@modeset-transition: - shard-tglu: [PASS][4] -> [INCOMPLETE][5] +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-tglu-8/igt at kms_atomic_transition@modeset-transition.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-8/igt at kms_atomic_transition@modeset-transition.html * igt at kms_setmode@basic: - shard-dg2: NOTRUN -> [FAIL][6] +1 other test fail [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-10/igt at kms_setmode@basic.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt at kms_cursor_crc@cursor-random-128x128: - {shard-dg2-9}: NOTRUN -> [INCOMPLETE][7] +1 other test incomplete [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-9/igt at kms_cursor_crc@cursor-random-128x128.html Known issues ------------ Here are the changes found in IGTPW_12456_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-7/igt at api_intel_bb@object-reloc-purge-cache.html * igt at device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at device_reset@cold-reset-bound.html * igt at drm_fdinfo@busy at vcs1: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +6 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/igt at drm_fdinfo@busy at vcs1.html * igt at drm_fdinfo@virtual-busy-all: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +10 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-3/igt at drm_fdinfo@virtual-busy-all.html * igt at gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-9/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-12/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-3/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#13008]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-1/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#9323]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-2/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-process: - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at gem_close_race@multigpu-basic-process.html * igt at gem_close_race@multigpu-basic-threads: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-3/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-set-pat: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#8562]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@file: - shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-snb1/igt at gem_ctx_persistence@file.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-5/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-14/igt at gem_ctx_persistence@heartbeat-many.html * igt at gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-6/igt at gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][24] ([i915#280]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-12/igt at gem_ctx_sseu@engines.html * igt at gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-3/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#280]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at gem_ctx_sseu@mmap-args.html - shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][28] ([i915#13390]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk1/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@kms: - shard-tglu: [PASS][29] -> [DMESG-WARN][30] ([i915#13363]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-tglu-5/igt at gem_eio@kms.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-5/igt at gem_eio@kms.html * igt at gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4771]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-pair: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#4771]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-18/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4812]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4036]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-12/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel-balancer: - shard-tglu: NOTRUN -> [SKIP][35] ([i915#4525]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-5/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-1/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][37] ([i915#4525]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at gem_exec_balancer@parallel-out-fence.html * igt at gem_exec_capture@capture-recoverable: - shard-tglu: NOTRUN -> [SKIP][38] ([i915#6344]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-2/igt at gem_exec_capture@capture-recoverable.html * igt at gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/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][40] ([i915#3539]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-13/igt at gem_exec_flush@basic-uc-set-default.html * igt at gem_exec_flush@basic-wb-ro-default: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-2/igt at gem_exec_flush@basic-wb-ro-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#5107]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-5/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +7 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-5/igt at gem_exec_reloc@basic-cpu-noreloc.html * igt at gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +11 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-4/igt at gem_exec_reloc@basic-wc-read-noreloc.html * igt at gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3281]) +8 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-12/igt at gem_exec_reloc@basic-write-gtt-active.html * igt at gem_exec_reloc@basic-write-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3281]) +15 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at gem_exec_reloc@basic-write-gtt-noreloc.html * igt at gem_exec_schedule@fairslice: - shard-rkl: [PASS][47] -> [DMESG-WARN][48] ([i915#12964]) +34 other tests dmesg-warn [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-rkl-1/igt at gem_exec_schedule@fairslice.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-4/igt at gem_exec_schedule@fairslice.html * igt at gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-8/igt at gem_exec_schedule@preempt-queue.html * igt at gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4812]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-18/igt at gem_exec_schedule@semaphore-power.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][51] ([i915#7975] / [i915#8213]) +1 other test abort [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-8/igt at gem_exec_suspend@basic-s4-devices.html - shard-rkl: NOTRUN -> [ABORT][52] ([i915#7975] / [i915#8213]) +2 other tests abort [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-7/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: NOTRUN -> [ABORT][53] ([i915#7975] / [i915#8213]) +1 other test abort [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_fenced_exec_thrash@2-spare-fences: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/igt at gem_fenced_exec_thrash@2-spare-fences.html * igt at gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-3/igt at gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613] / [i915#7582]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-1/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@massive: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#4613]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-10/igt at gem_lmem_swapping@massive.html * igt at gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-6/igt at gem_lmem_swapping@parallel-multi.html * igt at gem_lmem_swapping@parallel-random-engines: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4613]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-3/igt at gem_lmem_swapping@parallel-random-engines.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#12193]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@parallel-random-verify-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4565]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/igt at gem_lmem_swapping@parallel-random-verify-ccs at lmem0.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: [PASS][63] -> [TIMEOUT][64] ([i915#5493]) +1 other test timeout [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-dg2-2/igt at gem_lmem_swapping@smem-oom at lmem0.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-10/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][65] ([i915#4613]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk1/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8289]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-7/igt at gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][67] ([i915#8289]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-5/igt at gem_media_fill@media-fill.html * igt at gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4077]) +13 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-1/igt at gem_mmap_gtt@fault-concurrent-x.html * igt at gem_mmap_gtt@hang-busy: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4077]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-8/igt at gem_mmap_gtt@hang-busy.html * igt at gem_mmap_wc@copy: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4083]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-13/igt at gem_mmap_wc@copy.html * igt at gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4083]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-6/igt at gem_mmap_wc@write.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +5 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-1/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +7 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-8/igt at gem_partial_pwrite_pread@reads.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#3282]) +10 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-14/igt at gem_pread@exhaustion.html - shard-snb: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-snb7/igt at gem_pread@exhaustion.html * igt at gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3282]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-4/igt at gem_pread@snoop.html * igt at gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][77] ([i915#12964]) +1 other test timeout [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-5/igt at gem_pxp@create-protected-buffer.html * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4270]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-10/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]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-9/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: NOTRUN -> [TIMEOUT][80] ([i915#12917] / [i915#12964]) +3 other tests timeout [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-4/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-12/igt at gem_pxp@reject-modify-context-protection-off-3.html * igt at gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3282]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-7/igt at gem_readwrite@new-obj.html * igt at gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#8428]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-3/igt at gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt at gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#5190] / [i915#8428]) +6 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-7/igt at gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4079]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-5/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][86] ([i915#8411]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-1/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4079]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-13/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4077]) +10 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/igt at gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][89] ([i915#13263] / [i915#13449]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk9/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at gem_userptr_blits@create-destroy-unsync.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_12456/shard-glk1/igt at gem_userptr_blits@dmabuf-sync.html - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-2/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#3282] / [i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-4/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#3297]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-10/igt at gem_userptr_blits@invalid-mmap-offset-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4880]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-5/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-dg1: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4880]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-18/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@unsync-unmap: - shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#3297]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#3297]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-12/igt at gem_userptr_blits@unsync-unmap-cycles.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_15979/shard-glk9/igt at gem_workarounds@suspend-resume-fd.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk4/igt at gem_workarounds@suspend-resume-fd.html * igt at gen3_render_linear_blits: - shard-mtlp: NOTRUN -> [SKIP][101] +10 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-1/igt at gen3_render_linear_blits.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][102] +10 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#2856]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-4/igt at gen9_exec_parse@batch-zero-length.html * igt at gen9_exec_parse@bb-chained: - shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#2527] / [i915#2856]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-secure: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#2527] / [i915#2856]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-9/igt at gen9_exec_parse@bb-secure.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#2527]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-12/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#2527]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-4/igt at gen9_exec_parse@bb-start-out.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#2856]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-10/igt at gen9_exec_parse@unaligned-access.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#4881]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-5/igt at i915_fb_tiling.html * igt at i915_module_load@load: - shard-glk: ([PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134]) -> ([PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [DMESG-WARN][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158]) ([i915#118]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk6/igt at i915_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk2/igt at i915_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk9/igt at i915_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk4/igt at i915_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk3/igt at i915_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk8/igt at i915_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk4/igt at i915_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk8/igt at i915_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk7/igt at i915_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk2/igt at i915_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk5/igt at i915_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk4/igt at i915_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk6/igt at i915_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk8/igt at i915_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk7/igt at i915_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk1/igt at i915_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk9/igt at i915_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk3/igt at i915_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk9/igt at i915_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk5/igt at i915_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk6/igt at i915_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk6/igt at i915_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk1/igt at i915_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk2/igt at i915_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk3/igt at i915_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk1/igt at i915_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk9/igt at i915_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk5/igt at i915_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk9/igt at i915_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk6/igt at i915_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk5/igt at i915_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk1/igt at i915_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk4/igt at i915_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk6/igt at i915_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk9/igt at i915_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk4/igt at i915_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk1/igt at i915_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk7/igt at i915_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk3/igt at i915_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk8/igt at i915_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk2/igt at i915_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk7/igt at i915_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk7/igt at i915_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk3/igt at i915_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk8/igt at i915_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk2/igt at i915_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk2/igt at i915_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk7/igt at i915_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk5/igt at i915_module_load@load.html * igt at i915_module_load@reload-no-display: - shard-tglu-1: NOTRUN -> [DMESG-WARN][159] ([i915#13029]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at i915_module_load@reload-no-display.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][160] -> [DMESG-WARN][161] ([i915#10887] / [i915#13475]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-tglu-3/igt at i915_module_load@reload-with-fault-injection.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-6/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_api@freq-reset-multiple: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#8399]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-8/igt at i915_pm_freq_api@freq-reset-multiple.html * igt at i915_pm_rc6_residency@rc6-fence: - shard-tglu-1: NOTRUN -> [WARN][163] ([i915#2681]) +1 other test warn [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at i915_pm_rc6_residency@rc6-fence.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0: - shard-dg1: NOTRUN -> [FAIL][164] ([i915#12739] / [i915#3591]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-dg1: NOTRUN -> [FAIL][165] ([i915#3591]) +1 other test fail [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rpm@gem-idle: - shard-rkl: [PASS][166] -> [SKIP][167] ([i915#13328]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-rkl-7/igt at i915_pm_rpm@gem-idle.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-7/igt at i915_pm_rpm@gem-idle.html * igt at i915_pm_rpm@system-suspend: - shard-glk: [PASS][168] -> [INCOMPLETE][169] ([i915#12797]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk6/igt at i915_pm_rpm@system-suspend.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk6/igt at i915_pm_rpm@system-suspend.html * igt at i915_pm_rps@thresholds-idle-park: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#11681]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-2/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#4387]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-7/igt at i915_pm_sseu@full-enable.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#6188]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-6/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#5723]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-3/igt at i915_query@test-query-geometry-subslices.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#5723]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-12/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][175] ([i915#9311]) +1 other test dmesg-warn [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-snb5/igt at i915_selftest@mock.html * igt at i915_suspend@debugfs-reader: - shard-glk: [PASS][176] -> [INCOMPLETE][177] ([i915#4817]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk6/igt at i915_suspend@debugfs-reader.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk5/igt at i915_suspend@debugfs-reader.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [PASS][178] -> [INCOMPLETE][179] ([i915#4817]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-rkl-2/igt at i915_suspend@fence-restore-tiled2untiled.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-5/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at intel_hwmon@hwmon-write: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#7707]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-8/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#5190]) +4 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-10/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#4212]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-7/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#4212]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-10/igt at kms_addfb_basic@clobberred-modifier.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#12454] / [i915#12712]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-1/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-dg1: [PASS][185] -> [FAIL][186] ([i915#12518] / [i915#12766]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-dg1-13/igt at kms_async_flips@alternate-sync-async-flip.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-13/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@alternate-sync-async-flip at pipe-b-hdmi-a-3: - shard-dg1: [PASS][187] -> [FAIL][188] ([i915#12518]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-dg1-13/igt at kms_async_flips@alternate-sync-async-flip at pipe-b-hdmi-a-3.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-13/igt at kms_async_flips@alternate-sync-async-flip at pipe-b-hdmi-a-3.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][189] ([i915#12761]) +1 other test incomplete [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk5/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-dp-4-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#8709]) +11 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/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-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#8709]) +7 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/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-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#8709]) +15 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-18/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@invalid-async-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#12967]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3555]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-3/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg2: NOTRUN -> [SKIP][195] ([i915#9531]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-1/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#1769] / [i915#3555]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-10/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][197] ([i915#1769] / [i915#3555]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-5/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][198] ([i915#1769] / [i915#3555]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/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][199] ([i915#5286]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/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][200] ([i915#5286]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/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][201] ([i915#5286]) +7 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-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: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#4538] / [i915#5286]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-13/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#5286]) +4 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-10/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html - shard-mtlp: [PASS][204] -> [FAIL][205] ([i915#5138]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-mtlp-4/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-6/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3638]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-3/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#3638]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-12/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#4538] / [i915#5190]) +8 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-10/igt at kms_big_fb@y-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][209] +22 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-2/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#4538]) +7 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-18/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#6095]) +151 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-4.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#6095]) +59 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#10307] / [i915#6095]) +118 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-5/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#12313]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-6/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#6095]) +29 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-2/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc at pipe-b-edp-1.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][216] +292 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk2/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#12313]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/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][218] ([i915#6095]) +64 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-10/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-mtlp: NOTRUN -> [SKIP][219] ([i915#12313]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-2/igt at kms_ccs@crc-primary-rotation-180-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][220] ([i915#6095]) +102 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-5/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-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: [PASS][221] -> [INCOMPLETE][222] ([i915#12796]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk8/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk9/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#6095]) +9 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][224] ([i915#12796]) +1 other test incomplete [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk4/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#12313]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-12/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][226] ([i915#12313]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-7/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#3742]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#7213]) +3 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-5/igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3.html * igt at kms_chamelium_audio@hdmi-audio: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#11151] / [i915#7828]) +8 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-10/igt at kms_chamelium_audio@hdmi-audio.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][230] +42 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#11151] / [i915#7828]) +8 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-6/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#11151] / [i915#7828]) +10 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#11151] / [i915#7828]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-6/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#11151] / [i915#7828]) +5 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#11151] / [i915#7828]) +5 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-2/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#7118] / [i915#9424]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-7/igt at kms_content_protection@atomic-dpms.html - shard-rkl: NOTRUN -> [SKIP][237] ([i915#7118] / [i915#9424]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-4/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@atomic at pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][238] ([i915#7173]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-10/igt at kms_content_protection@atomic at pipe-a-dp-4.html * igt at kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#3116] / [i915#3299]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-4/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#3116] / [i915#3299]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#9424]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-7/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#9424]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-1/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@type1: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-3/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#13049]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-3/igt at kms_cursor_crc@cursor-offscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][246] ([i915#13049]) +2 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][247] ([i915#13049]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-1/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#13049]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-2/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-offscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#8814]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-4/igt at kms_cursor_crc@cursor-offscreen-64x21.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#13049]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-18/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#3555]) +7 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-1/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8814]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-1/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#3555]) +10 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#13046] / [i915#5354]) +6 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-3/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-snb: [PASS][255] -> [SKIP][256] +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-snb7/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-snb2/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#4213]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-5/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-tglu: NOTRUN -> [SKIP][258] +56 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-6/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][259] ([i915#2346]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk1/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [FAIL][260] ([i915#2346]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-9/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#4103] / [i915#4213]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#4103]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#4103]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][264] ([i915#12170]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-snb1/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][265] ([i915#11968]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-snb1/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#1769] / [i915#3555] / [i915#3804]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-3/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-tglu: NOTRUN -> [SKIP][267] ([i915#3804]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-3/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#8812]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-with-bpc: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#3840]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-13/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-formats: - shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#3840]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_dsc@dsc-with-formats.html * igt at kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#3840]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-2/igt at kms_dsc@dsc-with-output-formats.html - shard-tglu: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#3840]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-4/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#3469]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-7/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#4854]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-7/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#1839]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-1/igt at kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][276] ([i915#1839]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-3x: - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#1839]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#1839]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-2/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#658]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-2/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-fences: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#3637]) +4 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_flip@2x-flip-vs-fences.html - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#8381]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-8/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#8381]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-5/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#9934]) +9 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-7/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][284] ([i915#12745] / [i915#1982] / [i915#4839]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk7/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: NOTRUN -> [INCOMPLETE][285] ([i915#1982] / [i915#4839]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk7/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#3637]) +5 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-3/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#9934]) +7 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-5/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#9934]) +10 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-13/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-tglu: NOTRUN -> [SKIP][289] ([i915#3637]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-5/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [PASS][290] -> [DMESG-WARN][291] ([i915#12917] / [i915#12964]) +2 other tests dmesg-warn [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-rkl-7/igt at kms_flip@absolute-wf_vblank-interruptible.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-6/igt at kms_flip@absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg1: NOTRUN -> [DMESG-WARN][292] ([i915#4423]) +1 other test dmesg-warn [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-12/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at d-hdmi-a1: - shard-tglu: [PASS][293] -> [FAIL][294] ([i915#11989]) +4 other tests fail [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-tglu-6/igt at kms_flip@plain-flip-fb-recreate-interruptible at d-hdmi-a1.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-8/igt at kms_flip@plain-flip-fb-recreate-interruptible at d-hdmi-a1.html * igt at kms_flip@wf_vblank-ts-check-interruptible at a-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][295] ([i915#11989]) +1 other test fail [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-10/igt at kms_flip@wf_vblank-ts-check-interruptible at a-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#2672] / [i915#3555]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/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-4tile-to-64bpp-4tile-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#2672]) +3 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-4/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-linear-to-64bpp-linear-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8810]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-7/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#2672] / [i915#3555]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-1/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#2672]) +5 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#2672] / [i915#3555]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][304] ([i915#2672] / [i915#3555]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/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][305] ([i915#2587] / [i915#2672]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][306] ([i915#2587] / [i915#2672]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/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 at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][307] ([i915#2587] / [i915#2672]) +3 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-7/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: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#3555] / [i915#8813]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-6/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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#8810]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#2672] / [i915#3555]) +3 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt at kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#8708]) +7 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-4/igt at kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][313] +52 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#5354]) +36 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#1825]) +45 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#5439]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-1/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][317] ([i915#5439]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-3/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#10433] / [i915#3458]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#8708]) +26 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#8708]) +13 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/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-indfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#3458]) +16 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#3458]) +15 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#3023]) +18 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#1825]) +9 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-5/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][325] ([i915#3555] / [i915#8228]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-suspend: - shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#3555] / [i915#8228]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][327] ([i915#12713]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-3/igt at kms_hdr@brightness-with-hdr.html - shard-rkl: NOTRUN -> [SKIP][328] ([i915#12713]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-5/igt at kms_hdr@brightness-with-hdr.html - shard-dg1: NOTRUN -> [SKIP][329] ([i915#1187] / [i915#12713]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-13/igt at kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][330] ([i915#12713]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-5/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#3555] / [i915#8228]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-1/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-suspend: - shard-dg2: [PASS][332] -> [SKIP][333] ([i915#3555] / [i915#8228]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-dg2-10/igt at kms_hdr@static-toggle-suspend.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-7/igt at kms_hdr@static-toggle-suspend.html - shard-tglu: NOTRUN -> [SKIP][334] ([i915#3555] / [i915#8228]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-6/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#10656]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-4/igt at kms_joiner@basic-big-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#10656]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#12339]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-1/igt at kms_joiner@basic-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][338] ([i915#12339]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-5/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][339] ([i915#12388]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-3/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#10656] / [i915#13522]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#12394] / [i915#13522]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][342] ([i915#12394] / [i915#13522]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][343] ([i915#10656] / [i915#13522]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-1/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-mtlp: NOTRUN -> [SKIP][344] ([i915#12339]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-3/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#6301]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-3/igt at kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][346] ([i915#6301]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-14/igt at kms_panel_fitting@legacy.html * igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a: - shard-glk: [PASS][347] -> [INCOMPLETE][348] ([i915#13026]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk9/igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk8/igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][349] ([i915#10647] / [i915#12169]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk2/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][350] ([i915#10647]) +1 other test fail [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk2/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_lowres@tiling-yf: - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#3555]) +3 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#9809]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-2/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#12247] / [i915#9423]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-10/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-tglu: NOTRUN -> [SKIP][354] ([i915#12247]) +14 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-5/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-d: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#12247]) +7 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-10/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#12247]) +4 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-2/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][357] ([i915#12247]) +15 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-6/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][358] ([i915#12247] / [i915#6953]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-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-rkl: NOTRUN -> [SKIP][359] ([i915#12247] / [i915#3555]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-4/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][360] ([i915#12247] / [i915#6953]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/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-b: - shard-dg1: NOTRUN -> [SKIP][361] ([i915#12247]) +13 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#5354]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-3/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][363] ([i915#9812]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-4/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][364] ([i915#12343]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-5/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#9685]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [SKIP][366] ([i915#3361]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-1/igt at kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][367] ([i915#3361]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-18/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-tglu: NOTRUN -> [SKIP][368] ([i915#9685]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-4/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][369] -> [SKIP][370] ([i915#4281]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-tglu-2/igt at kms_pm_dc@dc9-dpms.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-8/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][371] ([i915#9340]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-17/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][372] ([i915#9519]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@i2c: - shard-glk: [PASS][373] -> [FAIL][374] ([i915#8717]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk6/igt at kms_pm_rpm@i2c.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk2/igt at kms_pm_rpm@i2c.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][375] ([i915#9519]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-12/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][376] ([i915#9519]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-mtlp: NOTRUN -> [SKIP][377] ([i915#9519]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-7/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][378] ([i915#6524] / [i915#6805]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-crc-vgem: - shard-dg1: NOTRUN -> [SKIP][379] ([i915#6524]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-18/igt at kms_prime@basic-crc-vgem.html * igt at kms_prime@basic-modeset-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][380] ([i915#6524]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][381] ([i915#6524]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-1/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][382] ([i915#6524]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-3/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][383] ([i915#11520]) +6 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-8/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][384] ([i915#11520]) +9 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk2/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][385] ([i915#12316]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-6/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][386] ([i915#11520]) +10 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-13/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-snb: NOTRUN -> [SKIP][387] ([i915#11520]) +6 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-snb5/igt at kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][388] ([i915#11520]) +8 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-7/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html - shard-rkl: NOTRUN -> [SKIP][389] ([i915#11520]) +7 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-4/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][390] ([i915#11520]) +5 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][391] ([i915#9683]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-2/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][392] ([i915#9683]) +1 other test skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-14/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][393] ([i915#9683]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at kms_psr2_su@page_flip-xrgb8888.html - shard-tglu-1: NOTRUN -> [SKIP][394] ([i915#9683]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-no-drrs: - shard-rkl: NOTRUN -> [SKIP][395] ([i915#1072] / [i915#9732]) +20 other tests skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-5/igt at kms_psr@fbc-pr-no-drrs.html * igt at kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][396] ([i915#9732]) +19 other tests skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-2/igt at kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt at kms_psr@fbc-psr2-sprite-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][397] ([i915#1072] / [i915#9732]) +28 other tests skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-3/igt at kms_psr@fbc-psr2-sprite-mmap-cpu.html * igt at kms_psr@pr-cursor-plane-move: - shard-mtlp: NOTRUN -> [SKIP][398] ([i915#9688]) +2 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-2/igt at kms_psr@pr-cursor-plane-move.html * igt at kms_psr@psr2-primary-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][399] ([i915#9732]) +13 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_psr@psr2-primary-mmap-cpu.html * igt at kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][400] ([i915#1072] / [i915#9732]) +27 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-18/igt at kms_psr@psr2-sprite-mmap-gtt.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][401] ([i915#9685]) +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-2/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@exhaust-fences: - shard-rkl: NOTRUN -> [DMESG-WARN][402] ([i915#12964]) +30 other tests dmesg-warn [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-6/igt at kms_rotation_crc@exhaust-fences.html * igt at kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][403] ([i915#12755]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][404] ([i915#12755] / [i915#5190]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][405] ([i915#5289]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][406] ([i915#5289]) +1 other test skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-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-mtlp: NOTRUN -> [SKIP][407] ([i915#12755]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][408] ([i915#3555]) +10 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-18/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][409] ([i915#13179]) +1 other test abort [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-10/igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free.html * igt at kms_setmode@basic-clone-single-crtc: - shard-tglu: NOTRUN -> [SKIP][410] ([i915#3555]) +1 other test skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-6/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][411] ([i915#3555] / [i915#8809]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-1/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][412] ([IGT#160]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-3/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][413] ([i915#8623]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-5/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][414] -> [INCOMPLETE][415] ([i915#12276]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk1/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk2/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html * igt at kms_vrr@max-min: - shard-mtlp: NOTRUN -> [SKIP][416] ([i915#8808] / [i915#9906]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-2/igt at kms_vrr@max-min.html * igt at kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][417] ([i915#3555] / [i915#9906]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-2/igt at kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][418] ([i915#3555] / [i915#9906]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-18/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][419] ([i915#9906]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-4/igt at kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][420] ([i915#9906]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-5/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][421] ([i915#2437] / [i915#9412]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-2/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][422] ([i915#2437]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-8/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-invalid-parameters: - shard-glk: NOTRUN -> [SKIP][423] ([i915#2437]) +1 other test skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-glk8/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][424] ([i915#2437] / [i915#9412]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-9/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][425] ([i915#2436]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-3/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][426] +400 other tests skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-snb5/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@busy-idle at vcs1: - shard-mtlp: [PASS][427] -> [FAIL][428] ([i915#4349]) +3 other tests fail [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-mtlp-8/igt at perf_pmu@busy-idle at vcs1.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-7/igt at perf_pmu@busy-idle at vcs1.html * igt at perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][429] ([i915#8850]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-3/igt at perf_pmu@cpu-hotplug.html - shard-dg1: NOTRUN -> [SKIP][430] ([i915#8850]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-12/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][431] ([i915#11823]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-7/igt at perf_pmu@module-unload.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][432] ([i915#8516]) +1 other test skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-8/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][433] ([i915#8516]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-7/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][434] ([i915#8516]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-tglu-2/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][435] ([i915#3291] / [i915#3708]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-2/igt at prime_vgem@basic-fence-read.html - shard-dg1: NOTRUN -> [SKIP][436] ([i915#3708]) +3 other tests skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-18/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][437] ([i915#3708] / [i915#4077]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-14/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][438] ([i915#3291] / [i915#3708]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg2-3/igt at prime_vgem@basic-write.html * igt at sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][439] ([i915#9917]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-rkl-6/igt at sriov_basic@enable-vfs-autoprobe-on.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg1: NOTRUN -> [SKIP][440] ([i915#9917]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-dg1-18/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at tools_test@sysfs_l3_parity: - shard-mtlp: NOTRUN -> [SKIP][441] ([i915#4818]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/shard-mtlp-4/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at gem_ctx_shared@exec-single-timeline at vcs0: - shard-rkl: [ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12456/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 11:47:53 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 11:47:53 -0000 Subject: =?utf-8?q?=E2=9C=97_GitLab=2EPipeline=3A_warning_for_tests/intel/xe=5Ffault?= =?utf-8?q?=5Finjection=3A_Inject_errors_during_xe=5Fguc=5Fct=5Fsend=5Frecv_?= =?utf-8?q?=26_xe=5Fguc=5Fmmio=5Fsend=5Frecv_=28rev2=29?= In-Reply-To: <20250120083410.26904-1-satyanarayana.k.v.p@intel.com> References: <20250120083410.26904-1-satyanarayana.k.v.p@intel.com> Message-ID: <173737367304.2106959.1785210466355863492@b555e5b46a47> == Series Details == Series: tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv & xe_guc_mmio_send_recv (rev2) URL : https://patchwork.freedesktop.org/series/142999/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1348708 for the overview. build:tests-debian-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69618899): ninja: build stopped: subcommand failed. ninja: Entering directory `build' [1/857] Generating version.h with a custom command. [2/8] Linking target runner/runner_test. [3/8] Linking target assembler/intel-gen4asm. [4/8] Generating i915_tests.html with a custom command. [5/8] Generating kms_tests.html with a custom command. [6/8] Generating xe_tests.rst with a custom command. FAILED: docs/testplan/xe_tests.rst /builds/gfx-ci/igt-ci-tags/scripts/igt_doc.py --config /builds/gfx-ci/igt-ci-tags/tests/intel/xe_test_config.json --rest docs/testplan/xe_tests.rst --check-testlist --igt-build-path /builds/gfx-ci/igt-ci-tags/build ERROR: Missing documentation for igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv ERROR: Unneeded documentation for igt at xe_fault_injection@guc-fail-xe_guc_ct_send_recv Please refer: docs/test_documentation.md for more details ninja: build stopped: subcommand failed. section_end:1737373453:step_script section_start:1737373453:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737373454:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-fedora has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69618894): ninja: build stopped: subcommand failed. ninja: Entering directory `build' [1/859] Generating version.h with a custom command. [2/7] Linking target runner/runner_test. [3/7] Generating intel-ci-tests with a custom command. [4/7] Generating i915_tests.html with a custom command. [5/7] Generating kms_tests.html with a custom command. [6/7] Generating xe_tests.rst with a custom command. FAILED: docs/testplan/xe_tests.rst /builds/gfx-ci/igt-ci-tags/scripts/igt_doc.py --config /builds/gfx-ci/igt-ci-tags/tests/intel/xe_test_config.json --rest docs/testplan/xe_tests.rst --check-testlist --igt-build-path /builds/gfx-ci/igt-ci-tags/build ERROR: Missing documentation for igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv ERROR: Unneeded documentation for igt at xe_fault_injection@guc-fail-xe_guc_ct_send_recv Please refer: docs/test_documentation.md for more details ninja: build stopped: subcommand failed. section_end:1737373454:step_script section_start:1737373454:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737373454:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-fedora-clang has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69618898): [1933/1936] Generating intel-ci-tests with a custom command. ninja: build stopped: subcommand failed. ninja: Entering directory `build' [1/859] Generating version.h with a custom command. [2/6] Generating kms_tests.html with a custom command. [3/6] Generating intel-ci-tests with a custom command. [4/6] Generating i915_tests.html with a custom command. [5/6] Generating xe_tests.rst with a custom command. FAILED: docs/testplan/xe_tests.rst /builds/gfx-ci/igt-ci-tags/scripts/igt_doc.py --config /builds/gfx-ci/igt-ci-tags/tests/intel/xe_test_config.json --rest docs/testplan/xe_tests.rst --check-testlist --igt-build-path /builds/gfx-ci/igt-ci-tags/build ERROR: Missing documentation for igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv ERROR: Unneeded documentation for igt at xe_fault_injection@guc-fail-xe_guc_ct_send_recv Please refer: docs/test_documentation.md for more details ninja: build stopped: subcommand failed. section_end:1737373481:step_script section_start:1737373481:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737373482:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-fedora-no-libdrm-nouveau has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69618897): [1760/1764] Compiling C object 'runner/527aa9f@@runner_test at exe/runner_tests.c.o'. ninja: build stopped: subcommand failed. ninja: Entering directory `build' [1/807] Generating version.h with a custom command. [2/7] Linking target runner/runner_test. [3/7] Generating i915_tests.html with a custom command. [4/7] Generating kms_tests.html with a custom command. [5/7] Generating xe_tests.rst with a custom command. FAILED: docs/testplan/xe_tests.rst /builds/gfx-ci/igt-ci-tags/scripts/igt_doc.py --config /builds/gfx-ci/igt-ci-tags/tests/intel/xe_test_config.json --rest docs/testplan/xe_tests.rst --check-testlist --igt-build-path /builds/gfx-ci/igt-ci-tags/build ERROR: Missing documentation for igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv ERROR: Unneeded documentation for igt at xe_fault_injection@guc-fail-xe_guc_ct_send_recv Please refer: docs/test_documentation.md for more details ninja: build stopped: subcommand failed. section_end:1737373424:step_script section_start:1737373424:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737373426:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-fedora-no-libunwind has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69618895): [1932/1936] Compiling C object 'runner/527aa9f@@runner_test at exe/runner_tests.c.o'. ninja: build stopped: subcommand failed. ninja: Entering directory `build' [1/859] Generating version.h with a custom command. [2/7] Linking target runner/runner_test. [3/7] Generating i915_tests.html with a custom command. [4/7] Generating intel-ci-tests with a custom command. [5/7] Generating xe_tests.rst with a custom command. FAILED: docs/testplan/xe_tests.rst /builds/gfx-ci/igt-ci-tags/scripts/igt_doc.py --config /builds/gfx-ci/igt-ci-tags/tests/intel/xe_test_config.json --rest docs/testplan/xe_tests.rst --check-testlist --igt-build-path /builds/gfx-ci/igt-ci-tags/build ERROR: Missing documentation for igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv ERROR: Unneeded documentation for igt at xe_fault_injection@guc-fail-xe_guc_ct_send_recv Please refer: docs/test_documentation.md for more details ninja: build stopped: subcommand failed. section_end:1737373423:step_script section_start:1737373423:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737373424:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-fedora-oldest-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69618896): [1933/1936] Generating intel-ci-tests with a custom command. ninja: build stopped: subcommand failed. ninja: Entering directory `build' [1/859] Generating version.h with a custom command. [2/6] Generating intel-ci-tests with a custom command. [3/6] Generating i915_tests.html with a custom command. [4/6] Generating kms_tests.html with a custom command. [5/6] Generating xe_tests.rst with a custom command. FAILED: docs/testplan/xe_tests.rst /builds/gfx-ci/igt-ci-tags/scripts/igt_doc.py --config /builds/gfx-ci/igt-ci-tags/tests/intel/xe_test_config.json --rest docs/testplan/xe_tests.rst --check-testlist --igt-build-path /builds/gfx-ci/igt-ci-tags/build ERROR: Missing documentation for igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv ERROR: Unneeded documentation for igt at xe_fault_injection@guc-fail-xe_guc_ct_send_recv Please refer: docs/test_documentation.md for more details ninja: build stopped: subcommand failed. section_end:1737373427:step_script section_start:1737373427:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737373428:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1348708 From patchwork at emeril.freedesktop.org Mon Jan 20 11:49:43 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 11:49:43 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/amdgpu/amd=5Fabm=3A?= =?utf-8?q?_Fix_test_failed_on_self-refresh_panel_=28rev2=29?= In-Reply-To: <20250120102501.4164-1-chiahsuan.chung@amd.com> References: <20250120102501.4164-1-chiahsuan.chung@amd.com> Message-ID: <173737378328.2101051.15137855225669326915@b555e5b46a47> == Series Details == Series: tests/amdgpu/amd_abm: Fix test failed on self-refresh panel (rev2) URL : https://patchwork.freedesktop.org/series/143552/ State : success == Summary == CI Bug Log - changes from IGT_8199 -> IGTPW_12463 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/index.html Participating hosts (39 -> 41) ------------------------------ Additional (2): fi-bsw-nick fi-elk-e7500 Known issues ------------ Here are the changes found in IGTPW_12463 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at fbdev@info: - fi-bsw-nick: NOTRUN -> [SKIP][1] ([i915#1849]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/fi-bsw-nick/igt at fbdev@info.html * igt at gem_lmem_swapping@parallel-random-engines: - fi-bsw-nick: NOTRUN -> [SKIP][2] +43 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/fi-bsw-nick/igt at gem_lmem_swapping@parallel-random-engines.html * igt at i915_selftest@live: - bat-twl-1: [PASS][3] -> [ABORT][4] ([i915#12919] / [i915#13503]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-twl-1/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/bat-twl-1/igt at i915_selftest@live.html * igt at i915_selftest@live at execlists: - bat-twl-1: [PASS][5] -> [ABORT][6] ([i915#13493]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-twl-1/igt at i915_selftest@live at execlists.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/bat-twl-1/igt at i915_selftest@live at execlists.html * igt at i915_selftest@live at late_gt_pm: - fi-cfl-8109u: [PASS][7] -> [DMESG-WARN][8] ([i915#11621]) +132 other tests dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/fi-cfl-8109u/igt at i915_selftest@live at late_gt_pm.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/fi-cfl-8109u/igt at i915_selftest@live at late_gt_pm.html * igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1: - fi-elk-e7500: NOTRUN -> [SKIP][9] +24 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/fi-elk-e7500/igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-arls-6}: [DMESG-FAIL][10] ([i915#12061]) -> [PASS][11] +1 other test pass [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-arls-6/igt at i915_selftest@live at workarounds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/bat-arls-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#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13493 [i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8199 -> IGTPW_12463 CI-20190529: 20190529 CI_DRM_15983: 4d9c78b35c395ed49796502224f3a421b0ce65ef @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12463: 32e9e493939482bacb200eb405244a214f28d3c5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From kamil.konieczny at linux.intel.com Mon Jan 20 11:56:59 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Mon, 20 Jan 2025 12:56:59 +0100 Subject: [PATCH v3] tests/intel: Enhance the wedged_mode sysfs support In-Reply-To: <20250113135103.947823-1-pravalika.gurram@intel.com> References: <20250113135103.947823-1-pravalika.gurram@intel.com> Message-ID: <20250120115659.gl477d2geibin76q@kamilkon-desk.igk.intel.com> Hi Pravalika, On 2025-01-13 at 19:21:03 +0530, Pravalika Gurram wrote: please add in subject a test name, also write what you did in a few words, so intestead of: tests/intel: Enhance the wedged_mode sysfs support better: tests/intel/xe_wedged: Add debugfs reading subtest > Added support to read the wedged_mode sysfs s/sysfs/debugfs/ Above could be changed at merge time, so you could leave that for now. One more nit below. > > Reviewed-by: Jonathan Cavitt > Signed-off-by: Pravalika Gurram > --- > tests/intel/xe_wedged.c | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > > diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c > index 613d571b4..844ab2809 100644 > --- a/tests/intel/xe_wedged.c > +++ b/tests/intel/xe_wedged.c > @@ -203,11 +203,16 @@ simple_hang(int fd, struct drm_xe_sync *sync) > * SUBTEST: wedged-mode-toggle > * Description: Test wedged.mode=1 after testing wedged.mode=2 > */ > +/** > + * SUBTEST: basic-wedged-read > + * Description: Read wedged debugfs > + */ > igt_main > { > struct drm_xe_engine_class_instance *hwe; > int fd; > char pci_slot[NAME_MAX]; > + char str[150]; This should go into subtest, not here, see below. > > igt_fixture { > fd = drm_open_driver(DRIVER_XE); > @@ -279,6 +284,13 @@ igt_main > igt_assert_eq(simple_ioctl(fd), 0); > } > > + igt_subtest_f("basic-wedged-read") { Add here: char str[150] = { 0 }; With this addressed Reviewed-by: Kamil Konieczny > + igt_require(igt_debugfs_exists(fd, "wedged_mode", O_RDONLY)); > + > + igt_debugfs_read(fd, "wedged_mode", str); > + igt_assert_f(str[0] != '\0', "Failed to read wedged_mode from debugfs!\n"); > + } > + > igt_fixture { > if (igt_debugfs_exists(fd, "fail_gt_reset/probability", O_RDWR)) { > igt_debugfs_write(fd, "fail_gt_reset/probability", "0"); > -- > 2.34.1 > From kamil.konieczny at linux.intel.com Mon Jan 20 12:06:33 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Mon, 20 Jan 2025 13:06:33 +0100 Subject: [PATCH v2] tests/xe_debugfs: Improve test_gt subtest In-Reply-To: <20250113134558.947544-1-pravalika.gurram@intel.com> References: <20250113134558.947544-1-pravalika.gurram@intel.com> Message-ID: <20250120120633.x2qoubgrks334zth@kamilkon-desk.igk.intel.com> Hi Pravalika, On 2025-01-13 at 19:15:58 +0530, Pravalika Gurram wrote: one nit about subject, it is now: [PATCH v2] tests/xe_debugfs: Improve test_gt subtest imho better: [PATCH v2] tests/intel/xe_debugfs: Improve gt subtest You could get list of subtest with --list option, for example ./xe_debugfs --list produces output: base gt forcewake There is no test_gt there as a subtest name. Btw this could be corrected at merge time. > Read the debugfs entries in the loop to improve the readability. > Added library function to check whether the debugfs is a directory or not. > > Signed-off-by: Pravalika Gurram LGTM Reviewed-by: Kamil Konieczny > --- > lib/igt_debugfs.c | 27 +++++++++++++ > lib/igt_debugfs.h | 1 + > tests/intel/xe_debugfs.c | 82 ++++++---------------------------------- > 3 files changed, 40 insertions(+), 70 deletions(-) > > diff --git a/lib/igt_debugfs.c b/lib/igt_debugfs.c > index f4f749e30..cd604e7c6 100644 > --- a/lib/igt_debugfs.c > +++ b/lib/igt_debugfs.c > @@ -376,6 +376,33 @@ igt_debugfs_gt_open(int device, unsigned int gt, const char *filename, int mode) > return ret; > } > > +/** > + * igt_debugfs_is_dir: > + * @drm_fd: fd of the device > + * @name: name of the debugfs node to check > + * @gt: gt instance number > + * > + * This helps to find the debugfs file is a directory or not > + * > + * Returns: > + * true if the debugfs is a directory > + */ > +bool igt_debugfs_is_dir(int drm_fd, const char *name, int gt_id) > +{ > + char path[128]; > + struct stat st; > + > + if (fstat(drm_fd, &st) != 0) > + return false; > + > + snprintf(path, sizeof(path), "/sys/kernel/debug/dri/%d/gt%d/%s", > + minor(st.st_rdev), gt_id, name); > + if (!stat(path, &st) && S_ISDIR(st.st_mode)) > + return true; > + > + return false; > +} > + > /** > * igt_debugfs_simple_read: > * @dir: fd of the debugfs directory > diff --git a/lib/igt_debugfs.h b/lib/igt_debugfs.h > index 3e6194ade..f4044d545 100644 > --- a/lib/igt_debugfs.h > +++ b/lib/igt_debugfs.h > @@ -39,6 +39,7 @@ int igt_debugfs_connector_dir(int device, char *conn_name, int mode); > int igt_debugfs_pipe_dir(int device, int pipe, int mode); > > int igt_debugfs_open(int fd, const char *filename, int mode); > +bool igt_debugfs_is_dir(int drm_fd, const char *name, int gt_id); > bool igt_debugfs_exists(int fd, const char *filename, int mode); > void __igt_debugfs_read(int fd, const char *filename, char *buf, int size); > void __igt_debugfs_write(int fd, const char *filename, const char *buf, int size); > diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c > index bcbb5036a..c653daae4 100644 > --- a/tests/intel/xe_debugfs.c > +++ b/tests/intel/xe_debugfs.c > @@ -180,77 +180,19 @@ test_gt(int fd, int gt_id) > // "guc_ct_selftest" > }; > > - sprintf(name, "gt%d/hw_engines", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/sa_info", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/steering", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/topology", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/pat", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/mocs", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/ggtt", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/register-save-restore", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/workarounds", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/default_lrc_rcs", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/default_lrc_ccs", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/default_lrc_bcs", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/default_lrc_vecs", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/default_lrc_vcs", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/hwconfig", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/uc/guc_info", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > - > - sprintf(name, "gt%d/uc/huc_info", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > + for (int i = 0; i < ARRAY_SIZE(expected_files); i++) { > + sprintf(name, "gt%d/%s", gt_id, expected_files[i]); > + igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > + if (igt_debugfs_is_dir(fd, expected_files[i], gt_id)) > + continue; > + igt_debugfs_dump(fd, name); > + } > > - sprintf(name, "gt%d/uc/guc_log", gt_id); > - igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > - igt_debugfs_dump(fd, name); > + for (int i = 0; i < ARRAY_SIZE(expected_files_uc); i++) { > + sprintf(name, "gt%d/uc/%s", gt_id, expected_files_uc[i]); > + igt_assert(igt_debugfs_exists(fd, name, O_RDONLY)); > + igt_debugfs_dump(fd, name); > + } > > sprintf(name, "/gt%d", gt_id); > validate_entries(fd, name, expected_files, ARRAY_SIZE(expected_files)); > -- > 2.34.1 > From satyanarayana.k.v.p at intel.com Mon Jan 20 12:28:33 2025 From: satyanarayana.k.v.p at intel.com (Satyanarayana K V P) Date: Mon, 20 Jan 2025 17:58:33 +0530 Subject: [PATCH i-g-t v3 0/2] tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv & xe_guc_mmio_send_recv Message-ID: <20250120122835.10511-1-satyanarayana.k.v.p@intel.com> Use the kernel fault injection infrastructure to test error handling of xe at probe time when executing xe_guc_mmio_send_recv() and at enabling of VFs stage when executing xe_guc_ct_send_recv(). Error can be injected using: igt at xe_fault_injection@inject-fault-probe-function-xe_guc_mmio_send_recv igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv Satyanarayana K V P (2): tests/intel/xe_fault_injection: Inject errors during xe_guc_mmio_send_recv tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv tests/intel/xe_fault_injection.c | 65 ++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) Cc: Matthew Brost Cc: Micha? Wajdeczko Cc: Francois Dugast -- 2.35.3 From satyanarayana.k.v.p at intel.com Mon Jan 20 12:28:34 2025 From: satyanarayana.k.v.p at intel.com (Satyanarayana K V P) Date: Mon, 20 Jan 2025 17:58:34 +0530 Subject: [PATCH i-g-t v3 1/2] tests/intel/xe_fault_injection: Inject errors during xe_guc_mmio_send_recv In-Reply-To: <20250120122835.10511-1-satyanarayana.k.v.p@intel.com> References: <20250120122835.10511-1-satyanarayana.k.v.p@intel.com> Message-ID: <20250120122835.10511-2-satyanarayana.k.v.p@intel.com> Use the kernel fault injection infrastructure to test error handling of xe at probe time when executing xe_guc_mmio_send_recv() so that more code paths are tested, such as error handling and unwinding. Error can be injected using: igt at xe_fault_injection@inject-fault-probe-function-xe_guc_mmio_send_recv v2: Sorted the entry xe_guc_mmio_send_recv in inject-fault-probe-function-* list Cc: Matthew Brost Cc: Micha? Wajdeczko Cc: Francois Dugast Signed-off-by: Satyanarayana K V P --- tests/intel/xe_fault_injection.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c index 7ae941367..3a0e2aa29 100644 --- a/tests/intel/xe_fault_injection.c +++ b/tests/intel/xe_fault_injection.c @@ -163,6 +163,7 @@ static void set_retval(const char function_name[], long long retval) * @xe_guc_ads_init: xe_guc_ads_init * @xe_guc_ct_init: xe_guc_ct_init * @xe_guc_log_init: xe_guc_log_init + * @xe_guc_mmio_send_recv: xe_guc_mmio_send_recv * @xe_guc_relay_init: xe_guc_relay_init * @xe_pm_init_early: xe_pm_init_early * @xe_sriov_init: xe_sriov_init @@ -294,6 +295,7 @@ igt_main { "xe_guc_ads_init" }, { "xe_guc_ct_init" }, { "xe_guc_log_init" }, + { "xe_guc_mmio_send_recv" }, { "xe_guc_relay_init" }, { "xe_pm_init_early" }, { "xe_sriov_init" }, -- 2.35.3 From satyanarayana.k.v.p at intel.com Mon Jan 20 12:28:35 2025 From: satyanarayana.k.v.p at intel.com (Satyanarayana K V P) Date: Mon, 20 Jan 2025 17:58:35 +0530 Subject: [PATCH i-g-t v3 2/2] tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv In-Reply-To: <20250120122835.10511-1-satyanarayana.k.v.p@intel.com> References: <20250120122835.10511-1-satyanarayana.k.v.p@intel.com> Message-ID: <20250120122835.10511-3-satyanarayana.k.v.p@intel.com> Use the kernel fault injection infrastructure to test error handling of xe at enabling of VFs stage when executing xe_guc_ct_send_recv() so that more code paths are tested, such as error handling and unwinding. Error can be injected using: igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv v2: Updated guc_fail_* to enable_vfs_* Added igt_skip_on(!igt_sriov_is_pf(fd)) to skip test when run without enabling sriov. v3: Fixed documentation build error ERROR: Missing documentation for igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv ERROR: Unneeded documentation for igt at xe_fault_injection@guc-fail-xe_guc_ct_send_recv Cc: Matthew Brost Cc: Micha? Wajdeczko Cc: Francois Dugast Signed-off-by: Satyanarayana K V P --- tests/intel/xe_fault_injection.c | 63 ++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c index 3a0e2aa29..81ecc1131 100644 --- a/tests/intel/xe_fault_injection.c +++ b/tests/intel/xe_fault_injection.c @@ -19,12 +19,14 @@ #include "igt_sysfs.h" #include "lib/igt_syncobj.h" #include "lib/intel_pat.h" +#include "lib/igt_sriov_device.h" #include "xe/xe_ioctl.h" #include "xe/xe_query.h" #define INJECT_ERRNO -ENOMEM #define BO_ADDR 0x1a0000 #define BO_SIZE (1024*1024) +#define NUM_VFS 1 enum injection_list_action { INJECTION_LIST_ADD, @@ -281,6 +283,55 @@ vm_bind_fail(int fd, const char function_name[]) igt_assert_eq(simple_vm_bind(fd, vm), 0); } +static int sriov_enable_vfs(int fd, int num_vfs) +{ + int sysfs; + bool ret; + + sysfs = igt_sysfs_open(fd); + igt_assert_fd(sysfs); + + ret = __igt_sysfs_set_u32(sysfs, "device/sriov_numvfs", num_vfs); + close(sysfs); + + return ret; +} + +/** + * SUBTEST: enable-vfs-fail-%s + * Description: inject an error in function %arg[1] used when xe interacts with guc to make it fail + * Functionality: fault + * + * arg[1]: + * @xe_guc_ct_send_recv: xe_guc_ct_send_recv + */ + +static void +enable_vfs_fail(int fd, int num_vfs, const char function_name[]) +{ + bool autoprobe_en = 0; + + ignore_faults_in_dmesg(function_name); + injection_list_do(INJECTION_LIST_ADD, function_name); + set_retval(function_name, INJECT_ERRNO); + + autoprobe_en = igt_sriov_is_driver_autoprobe_enabled(fd); + + if (autoprobe_en) + igt_sriov_disable_driver_autoprobe(fd); + + /* igt_sriov_enable_vfs can't be used here as it is causing abort on any error. + * Since error in this test is expected, we have written our own static function here. + */ + sriov_enable_vfs(fd, num_vfs); + + igt_assert_eq(-errno, INJECT_ERRNO); + injection_list_do(INJECTION_LIST_REMOVE, function_name); + + if (autoprobe_en) + igt_sriov_enable_driver_autoprobe(fd); +} + igt_main { int fd; @@ -319,6 +370,10 @@ igt_main { "xe_vma_ops_alloc" }, { } }; + const struct section enable_vfs_fail_functions[] = { + { "xe_guc_ct_send_recv" }, + { } + }; igt_fixture { igt_require(fail_function_injection_enabled()); @@ -335,6 +390,14 @@ igt_main igt_subtest_f("vm-bind-fail-%s", s->name) vm_bind_fail(fd, s->name); + for (const struct section *s = enable_vfs_fail_functions; s->name; s++) + igt_subtest_f("enable-vfs-fail-%s", s->name) { + /* Skip the test if not running with SRIOV + */ + igt_skip_on(!igt_sriov_is_pf(fd)); + enable_vfs_fail(fd, NUM_VFS, s->name); + } + igt_fixture { xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_UNBIND); } -- 2.35.3 From kamil.konieczny at linux.intel.com Mon Jan 20 12:49:51 2025 From: kamil.konieczny at linux.intel.com (Kamil Konieczny) Date: Mon, 20 Jan 2025 13:49:51 +0100 Subject: [PATCH i-g-t 1/2] lib/xe/xe_util: introduce helper for enabling ccs mode In-Reply-To: <2208c434-10f1-4fb3-ba89-1f7bcfd8d03a@intel.com> References: <20241216131137.50945-1-dominik.grzegorzek@intel.com> <2208c434-10f1-4fb3-ba89-1f7bcfd8d03a@intel.com> Message-ID: <20250120124951.bujiuec4bwo4rsrb@kamilkon-desk.igk.intel.com> Hi Manszewski,, On 2025-01-17 at 14:18:53 +0100, Manszewski, Christoph wrote: > On 17.01.2025 14:07, Manszewski, Christoph wrote: > > Hi Dominik, > > > > On 16.12.2024 14:11, Dominik Grzegorzek wrote: > > > From: Andrzej Hajda > > > > > > Multiple tests will require enabled ccs mode. Add special helper to > > > avoid code duplication. > > > > > > Signed-off-by: Andrzej Hajda > > > --- > > > ? lib/xe/xe_util.c | 31 +++++++++++++++++++++++++++++++ > > > ? lib/xe/xe_util.h |? 1 + > > > ? 2 files changed, 32 insertions(+) > > > > > > diff --git a/lib/xe/xe_util.c b/lib/xe/xe_util.c > > > index 9482819c2..f7ae19f08 100644 > > > --- a/lib/xe/xe_util.c > > > +++ b/lib/xe/xe_util.c > > > @@ -302,3 +302,34 @@ int xe_gt_count_engines_by_class(int fd, int > > > gt, int class) > > > ????? return n; > > > ? } > > > + > > > +/** > > > + * xe_sysfs_enable_ccs_mode: > > > + * @fd: pointer to xe drm fd, can reopened multiple times > > > + * > > > + * Enables ccs_mode on all GTs, it must succeed for at least one GT. > > > + * Since function requires the driver to be closed during ccs_mode > > > change > > > + * @fd will be closed then re-opened. > > > + */ > > > +void xe_sysfs_enable_ccs_mode(int *fd) > > > +{ > > > +??? int gt, gt_fd, num_slices, ccs_mode, num_gt, enabled_count = 0; > > > + > > > +??? num_gt = xe_number_gt(*fd); > > > + > > > +??? for (gt = 0; gt < num_gt; gt++) { > > > +??????? gt_fd = xe_sysfs_gt_open(*fd, gt); > > > +??????? drm_close_driver(*fd); > > > > Why not outside the loop? imho this is a valid question, why not collect all gt_fd and use them later, so drm_close_driver/open_driver will be called only once? Second concern is that this lib function assumes a caller have only one open drm fd, this also needs to be documented. > > Nevermind > > > > > Thanks, > > Christoph > > > > > + > > > +??????? if (!igt_debug_on(igt_sysfs_scanf(gt_fd, "num_cslices", > > > "%u", &num_slices) <= 0) && > > > +??????????? !igt_debug_on(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", > > > num_slices) <= 0) && > > > +??????????? !igt_debug_on(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", > > > &ccs_mode) <= 0) && > > > +??????????? !igt_debug_on(num_slices != ccs_mode)) > > > +??????????? enabled_count++; > > > +??????? close(gt_fd); > > > +??????? *fd = drm_open_driver(DRIVER_XE); > > > +??? } > > > + > > > +??? if (!enabled_count) > > > +??????? igt_require_f(0, "Cannot enable ccs mode for any GT\n"); > > Unless I am missing something (again): > igt_require_f(enabled_count, "Cannot enable ccs mode for any GT\n")? And this one is also tricky, it was ok in a test but in library imho it should be avoided. Why not returning bitfield with bits sets for each gt with ccs enabled? So in case of no css just return zero and igt_require will be called in a test, not in a lib. Also it should have a counterpart with _disable() Regards, Kamil > > Reviewed-by: Chritoph Manszewski > > > > +} > > > diff --git a/lib/xe/xe_util.h b/lib/xe/xe_util.h > > > index b9fbfc5cd..a82c44a2a 100644 > > > --- a/lib/xe/xe_util.h > > > +++ b/lib/xe/xe_util.h > > > @@ -53,5 +53,6 @@ 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); > > > +void xe_sysfs_enable_ccs_mode(int *fd); > > > ? #endif /* XE_UTIL_H */ From pravalika.gurram at intel.com Mon Jan 20 13:09:27 2025 From: pravalika.gurram at intel.com (Pravalika Gurram) Date: Mon, 20 Jan 2025 18:39:27 +0530 Subject: [PATCH v3] tests/intel/xe_wedged: Read wedged_mode debugfs Message-ID: <20250120130927.65919-1-pravalika.gurram@intel.com> Added support to read the wedged_mode debugfs Reviewed-by: Jonathan Cavitt Reviewed-by: Kamil Konieczny Signed-off-by: Pravalika Gurram --- tests/intel/xe_wedged.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c index 613d571b4..22ff75367 100644 --- a/tests/intel/xe_wedged.c +++ b/tests/intel/xe_wedged.c @@ -203,6 +203,10 @@ simple_hang(int fd, struct drm_xe_sync *sync) * SUBTEST: wedged-mode-toggle * Description: Test wedged.mode=1 after testing wedged.mode=2 */ +/** + * SUBTEST: basic-wedged-read + * Description: Read wedged_mode debugfs + */ igt_main { struct drm_xe_engine_class_instance *hwe; @@ -279,6 +283,15 @@ igt_main igt_assert_eq(simple_ioctl(fd), 0); } + igt_subtest_f("basic-wedged-read") { + char str[150] = {0}; + + igt_require(igt_debugfs_exists(fd, "wedged_mode", O_RDONLY)); + + igt_debugfs_read(fd, "wedged_mode", str); + igt_assert_f(str[0] != '\0', "Failed to read wedged_mode from debugfs!\n"); + } + igt_fixture { if (igt_debugfs_exists(fd, "fail_gt_reset/probability", O_RDWR)) { igt_debugfs_write(fd, "fail_gt_reset/probability", "0"); -- 2.34.1 From patchwork at emeril.freedesktop.org Mon Jan 20 13:02:07 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 13:02:07 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_Add_igt=5Frunner=27s_cmd?= =?utf-8?q?line_to_results?= In-Reply-To: <20250117231751.429703-1-lucas.demarchi@intel.com> References: <20250117231751.429703-1-lucas.demarchi@intel.com> Message-ID: <173737812786.2142905.3132973771382777643@b555e5b46a47> == Series Details == Series: Add igt_runner's cmdline to results URL : https://patchwork.freedesktop.org/series/143699/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15979_full -> IGTPW_12457_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12457_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12457_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_12457/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_12457_full: ### IGT changes ### #### Possible regressions #### * igt at perf_pmu@rc6 at runtime-pm-gt0: - shard-rkl: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-3/igt at perf_pmu@rc6 at runtime-pm-gt0.html Known issues ------------ Here are the changes found in IGTPW_12457_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][2] ([i915#8411]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-4/igt at api_intel_bb@object-reloc-keep-cache.html * igt at api_intel_bb@object-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-3/igt at api_intel_bb@object-reloc-purge-cache.html * igt at device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#11078]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at device_reset@cold-reset-bound.html * igt at drm_fdinfo@busy at vcs1: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#8414]) +6 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-17/igt at drm_fdinfo@busy at vcs1.html * igt at drm_fdinfo@isolation: - shard-rkl: [PASS][6] -> [DMESG-WARN][7] ([i915#12917] / [i915#12964]) +2 other tests dmesg-warn [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-rkl-7/igt at drm_fdinfo@isolation.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-7/igt at drm_fdinfo@isolation.html * igt at drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at drm_fdinfo@virtual-busy-idle-all.html * igt at gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-3/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-1/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][11] ([i915#9323]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-6/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-5/igt at gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#7697]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-2/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][14] ([i915#12353]) +1 other test incomplete [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk6/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8555]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#8555]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-12/igt at gem_ctx_persistence@heartbeat-many.html * igt at gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][17] ([i915#1099]) +5 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-snb1/igt at gem_ctx_persistence@smoketest.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#280]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-8/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_12457/shard-tglu-3/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][21] ([i915#13390]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk2/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@unwedge-stress: - shard-dg1: [PASS][22] -> [FAIL][23] ([i915#12714] / [i915#5784]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-dg1-17/igt at gem_eio@unwedge-stress.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-13/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4812]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-7/igt at gem_exec_balancer@bonded-false-hang.html * igt at gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4771]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-3/igt at gem_exec_balancer@bonded-pair.html - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4771]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-5/igt at gem_exec_balancer@bonded-pair.html - shard-dg1: NOTRUN -> [SKIP][27] ([i915#4771]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-12/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4036]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-8/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel-balancer: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#4525]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-4/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-2/igt at gem_exec_balancer@parallel-bb-first.html - shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#4525]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_capture@capture-invisible: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#6334]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-10/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture-recoverable: - shard-tglu: NOTRUN -> [SKIP][33] ([i915#6344]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-10/igt at gem_exec_capture@capture-recoverable.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4812]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-13/igt at gem_exec_fence@submit.html * igt at gem_exec_flush@basic-uc-ro-default: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/igt at gem_exec_flush@basic-uc-ro-default.html * igt at gem_exec_flush@basic-uc-set-default: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/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][37] ([i915#3539] / [i915#4852]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-2/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_nop@basic-sequential: - shard-rkl: [PASS][38] -> [DMESG-WARN][39] ([i915#12964]) +41 other tests dmesg-warn [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-rkl-7/igt at gem_exec_nop@basic-sequential.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-4/igt at gem_exec_nop@basic-sequential.html * igt at gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +7 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-8/igt at gem_exec_reloc@basic-cpu-noreloc.html * igt at gem_exec_reloc@basic-gtt-read-active: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +16 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-8/igt at gem_exec_reloc@basic-gtt-read-active.html * igt at gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +8 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-4/igt at gem_exec_reloc@basic-wc-read-noreloc.html * igt at gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) +12 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-12/igt at gem_exec_reloc@basic-write-gtt-active.html * igt at gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-10/igt at gem_exec_schedule@preempt-queue.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][45] ([i915#7975] / [i915#8213]) +1 other test abort [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-2/igt at gem_exec_suspend@basic-s4-devices.html - shard-rkl: NOTRUN -> [ABORT][46] ([i915#7975] / [i915#8213]) +1 other test abort [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-2/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fenced_exec_thrash@2-spare-fences: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4860]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-17/igt at gem_fenced_exec_thrash@2-spare-fences.html * igt at gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#2190]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#4613] / [i915#7582]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-4/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#4613]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-5/igt at gem_lmem_swapping@parallel-multi.html * igt at gem_lmem_swapping@parallel-random: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-4/igt at gem_lmem_swapping@parallel-random.html * igt at gem_lmem_swapping@parallel-random-engines: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4613]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-4/igt at gem_lmem_swapping@parallel-random-engines.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#12193]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@parallel-random-verify-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4565]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/igt at gem_lmem_swapping@parallel-random-verify-ccs at lmem0.html * igt at gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][55] ([i915#4613]) +5 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk3/igt at gem_lmem_swapping@random.html - shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at gem_lmem_swapping@random.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: [PASS][57] -> [TIMEOUT][58] ([i915#5493]) +1 other test timeout [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-dg2-2/igt at gem_lmem_swapping@smem-oom at lmem0.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-3/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#8289]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-7/igt at gem_media_fill@media-fill.html * igt at gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-7/igt at gem_mmap@short-mmap.html * igt at gem_mmap_gtt@hang-busy: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4077]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-8/igt at gem_mmap_gtt@hang-busy.html * igt at gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4083]) +6 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-7/igt at gem_mmap_wc@close.html * igt at gem_mmap_wc@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4083]) +5 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-13/igt at gem_mmap_wc@fault-concurrent.html * igt at gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-3/igt at gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#3282]) +8 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-17/igt at gem_pread@exhaustion.html * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4270]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-3/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt at gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][67] ([i915#12964]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-7/igt at gem_pxp@fail-invalid-protected-context.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#13398]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-8/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-12/igt at gem_pxp@reject-modify-context-protection-off-3.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: NOTRUN -> [TIMEOUT][70] ([i915#12917] / [i915#12964]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-1/igt at gem_pxp@verify-pxp-stale-ctx-execution.html * igt at gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3282]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-8/igt at gem_readwrite@new-obj.html - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-2/igt at gem_readwrite@new-obj.html * igt at gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#8428]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-1/igt at gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt at gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#5190] / [i915#8428]) +8 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-4/igt at gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt at gem_render_tiled_blits@basic: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4079]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-4/igt at gem_render_tiled_blits@basic.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4079]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4885]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-3/igt at gem_softpin@evict-snoop-interruptible.html * igt at gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4077]) +17 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-4/igt at gem_tiled_partial_pwrite_pread@writes.html * igt at gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4079]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-13/igt at gem_tiled_pread_pwrite.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][80] ([i915#13263] / [i915#13449]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk5/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-3/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-2/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#3297]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-7/igt at gem_userptr_blits@invalid-mmap-offset-unsync.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4880]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-10/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-13/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gem_workarounds@suspend-resume-context: - shard-glk: NOTRUN -> [INCOMPLETE][87] ([i915#13356]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk8/igt at gem_workarounds@suspend-resume-context.html * igt at gen3_render_linear_blits: - shard-mtlp: NOTRUN -> [SKIP][88] +13 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-7/igt at gen3_render_linear_blits.html * igt at gen9_exec_parse@allowed-all: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-1/igt at gen9_exec_parse@allowed-all.html * igt at gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#2856]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-8/igt at gen9_exec_parse@batch-zero-length.html * igt at gen9_exec_parse@bb-large: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at gen9_exec_parse@bb-large.html * igt at gen9_exec_parse@bb-oversize: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#2527]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-secure: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-3/igt at gen9_exec_parse@bb-secure.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-3/igt at gen9_exec_parse@unaligned-access.html * igt at i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4881]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-10/igt at i915_fb_tiling.html - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4881]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-13/igt at i915_fb_tiling.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][97] -> [ABORT][98] ([i915#12817] / [i915#9820]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-tglu-3/igt at i915_module_load@reload-with-fault-injection.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-10/igt at i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [ABORT][99] ([i915#9820]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-7/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_api@freq-reset-multiple: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#8399]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-10/igt at i915_pm_freq_api@freq-reset-multiple.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-dg1: NOTRUN -> [FAIL][101] ([i915#3591]) +1 other test fail [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#11681] / [i915#6621]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-5/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@thresholds-idle-park: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#11681]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-6/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#11681]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at i915_pm_rps@thresholds-park.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6188]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-4/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#5723]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-12/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [PASS][107] -> [DMESG-FAIL][108] ([i915#12061]) +1 other test dmesg-fail [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-mtlp-7/igt at i915_selftest@live at workarounds.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-2/igt at i915_selftest@live at workarounds.html * igt at i915_selftest@mock at memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][109] ([i915#9311]) +1 other test dmesg-warn [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-3/igt at i915_selftest@mock at memory_region.html - shard-rkl: NOTRUN -> [DMESG-WARN][110] ([i915#9311]) +1 other test dmesg-warn [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-4/igt at i915_selftest@mock at memory_region.html - shard-dg1: NOTRUN -> [DMESG-WARN][111] ([i915#9311]) +1 other test dmesg-warn [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-17/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][112] -> [INCOMPLETE][113] ([i915#4817]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-rkl-7/igt at i915_suspend@basic-s3-without-i915.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-3/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@debugfs-reader: - shard-glk: [PASS][114] -> [INCOMPLETE][115] ([i915#4817]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk6/igt at i915_suspend@debugfs-reader.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk3/igt at i915_suspend@debugfs-reader.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][116] ([i915#4817]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk2/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at intel_hwmon@hwmon-write: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#7707]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-1/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#5190]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-4/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#4215] / [i915#5190]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-10/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@bo-too-small-due-to-tiling: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#4212]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-4/igt at kms_addfb_basic@bo-too-small-due-to-tiling.html * igt at kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#4212]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-7/igt at kms_addfb_basic@clobberred-modifier.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#12454] / [i915#12712]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-3/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][123] ([i915#8709]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/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_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#3555]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][125] ([i915#9531]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-17/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#1769] / [i915#3555]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][127] ([i915#1769] / [i915#3555]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-4/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#1769] / [i915#3555]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-13/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-snb: NOTRUN -> [SKIP][129] ([i915#1769]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-snb5/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: [PASS][130] -> [FAIL][131] ([i915#11808]) +1 other test fail [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-tglu-8/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-8/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-1.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5286]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#5286]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-13/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#5286]) +6 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-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-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#5286]) +5 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-10/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][136] +14 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#3638]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-7/igt at kms_big_fb@y-tiled-8bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][138] ([i915#3638]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-13/igt at kms_big_fb@y-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5190]) +17 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/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-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#4538]) +6 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-17/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#6095]) +120 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-4/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#12313]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-7/igt at kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6095]) +29 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-7/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc at pipe-b-edp-1.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][144] +391 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk2/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2.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_12457/shard-tglu-6/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]) +59 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/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-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#12313]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#6095]) +19 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-1.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-8/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-4: - shard-dg1: [PASS][150] -> [DMESG-WARN][151] ([i915#4423]) +3 other tests dmesg-warn [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-dg1-18/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-4.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-17/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-4.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#6095]) +13 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#12313]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-13/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#6095]) +75 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-4/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#12313]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-8/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#6095]) +161 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-12/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-3.html * igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#7213]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-3/igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-3.html * igt at kms_chamelium_audio@hdmi-audio: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +10 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-7/igt at kms_chamelium_audio@hdmi-audio.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +8 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-1/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +11 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-17/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-3/igt at kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +5 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-5/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#3116] / [i915#3299]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-10/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#7118] / [i915#9424]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-3/igt at kms_content_protection@legacy.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#7116] / [i915#9424]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-12/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#9424]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#7118]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-4/igt at kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][169] ([i915#7116]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-18/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#7118] / [i915#9424]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at kms_content_protection@type1.html - shard-tglu: NOTRUN -> [SKIP][171] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-2/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#13049]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-9/igt at kms_cursor_crc@cursor-offscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][173] ([i915#13049]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-4/igt at kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][174] ([i915#13049]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-7/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#13049]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-5/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-offscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#8814]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-4/igt at kms_cursor_crc@cursor-offscreen-64x21.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#3555]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-7/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#13049]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_cursor_crc@cursor-random-512x170.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#13049]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-18/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3555]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-5/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8814]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-1/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555]) +5 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-5/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-snb: [PASS][183] -> [SKIP][184] +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-snb7/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-snb7/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#4213]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-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-tglu: NOTRUN -> [SKIP][186] ([i915#4103]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#4103]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg1: NOTRUN -> [SKIP][188] ([i915#4103] / [i915#4213]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-17/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][189] +17 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-4/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#9809]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-2/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-tglu: NOTRUN -> [SKIP][191] +58 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-3/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#13046] / [i915#5354]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.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_12457/shard-glk8/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][194] -> [FAIL][195] ([i915#2346]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk3/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk5/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-mtlp: [PASS][196] -> [FAIL][197] ([i915#2346]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-mtlp-4/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-2/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-dg2: NOTRUN -> [SKIP][198] ([i915#4103] / [i915#4213]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-5/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#9723]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][200] ([i915#12170]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][201] ([i915#11968]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#1769] / [i915#3555] / [i915#3804]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-4/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-tglu: NOTRUN -> [SKIP][203] ([i915#3804]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-4/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1.html * igt at kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#1257]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][205] ([i915#1257]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-5/igt at kms_dp_aux_dev.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#3840]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-17/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3840]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-8/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-formats: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#3840]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-12/igt at kms_dsc@dsc-with-formats.html * igt at kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#3840]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-4/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#3469]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-6/igt at kms_fbcon_fbt@psr-suspend.html - shard-dg2: NOTRUN -> [SKIP][211] ([i915#3469]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-10/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-2x: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#1839]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-12/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-4x: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#1839]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-7/igt at kms_feature_discovery@display-4x.html - shard-dg2: NOTRUN -> [SKIP][214] ([i915#1839]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-3/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#658]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][216] ([i915#658]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-2/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#9934]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-4/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#8381]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-6/igt at kms_flip@2x-flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][219] ([i915#8381]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][220] ([i915#12745] / [i915#1982] / [i915#4839]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk8/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: NOTRUN -> [INCOMPLETE][221] ([i915#1982] / [i915#4839]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk8/igt at kms_flip@2x-flip-vs-suspend at ab-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3637]) +5 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-1/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#3637]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#9934]) +11 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/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-dg2: NOTRUN -> [SKIP][225] ([i915#9934]) +10 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-8/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html - shard-tglu: NOTRUN -> [SKIP][226] ([i915#3637]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-3/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg1: NOTRUN -> [DMESG-WARN][227] ([i915#4423]) +2 other tests dmesg-warn [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-13/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@wf_vblank-ts-check-interruptible at a-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][228] ([i915#12964]) +15 other tests dmesg-warn [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-4/igt at kms_flip@wf_vblank-ts-check-interruptible at a-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#2672] / [i915#3555]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-5/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#2672] / [i915#3555]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-5/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-rkl: NOTRUN -> [SKIP][231] ([i915#2672]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-5/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-ytile-to-32bpp-ytileccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#2587] / [i915#2672] / [i915#3555]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling 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_12457/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#2672]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/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-dg1: NOTRUN -> [SKIP][238] ([i915#2587] / [i915#2672]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/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 at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#2587] / [i915#2672]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-3/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: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8813]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-4/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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#8810]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8810] / [i915#8813]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8810]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: [PASS][244] -> [FAIL][245] ([i915#6880]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [FAIL][246] ([i915#6880]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#8708]) +7 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-8/igt at kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][248] +35 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][249] ([i915#10056] / [i915#13353]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk3/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#5439]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-5/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#10055]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#3458]) +19 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#8708]) +17 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#1825]) +25 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-1/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-render: - shard-dg1: NOTRUN -> [SKIP][255] +51 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#5354]) +42 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#9766]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#3458]) +18 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#3023]) +16 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#10433] / [i915#3458]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#8708]) +22 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-5/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#1825]) +12 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8228]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-17/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8228]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-5/igt at kms_hdr@bpc-switch-suspend.html * igt at kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#1187] / [i915#12713]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-1/igt at kms_hdr@brightness-with-hdr.html - shard-rkl: NOTRUN -> [SKIP][266] ([i915#12713]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-1/igt at kms_hdr@brightness-with-hdr.html - shard-dg1: NOTRUN -> [SKIP][267] ([i915#12713]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-12/igt at kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][268] ([i915#12713]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-4/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-1/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8228]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-3/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#10656]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-4/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#12388]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#12388]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-7/igt at kms_joiner@invalid-modeset-force-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][274] ([i915#12388]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-9/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#10656] / [i915#13522]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-10/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][276] ([i915#12394] / [i915#13522]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#10656] / [i915#13522]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-7/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#12339]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-6/igt at kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][279] ([i915#12339]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#6301]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#6301]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-5/igt at kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][282] ([i915#6301]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-3/igt at kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][283] ([i915#6301]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-12/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1: - shard-glk: [PASS][284] -> [INCOMPLETE][285] ([i915#12756]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk2/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk6/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a: - shard-glk: [PASS][286] -> [INCOMPLETE][287] ([i915#13026]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk9/igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk7/igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][288] ([i915#10647] / [i915#12169]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk2/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][289] ([i915#10647]) +1 other test fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk2/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8821]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-3/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#13046] / [i915#5354] / [i915#9423]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-3/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#6953] / [i915#9423]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-4/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#12247] / [i915#9423]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-2/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#12247]) +13 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#12247]) +14 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation at pipe-c.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c: - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#12247]) +4 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-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][297] ([i915#12247]) +13 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-4/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-1: NOTRUN -> [SKIP][298] ([i915#12247] / [i915#6953]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#12247] / [i915#6953]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-5/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][300] ([i915#12247] / [i915#3555] / [i915#9423]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-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-d: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#12247]) +7 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-d.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#12247] / [i915#6953]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-18/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-b: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#12247]) +18 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-18/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][304] ([i915#5354]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#9812]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-3/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#12343]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-2/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#9685]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-4/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#3828]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-7/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#5978]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-tglu: NOTRUN -> [SKIP][310] ([i915#9685]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-10/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#9340]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#8430]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][313] -> [SKIP][314] ([i915#12916]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-rkl-6/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-7/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#9519]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#4077]) +9 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-17/igt at kms_pm_rpm@fences.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#9519]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-3/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#9519]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-1/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_prime@basic-crc-vgem: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#6524]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/igt at kms_prime@basic-crc-vgem.html * igt at kms_prime@basic-modeset-hybrid: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#6524]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-4/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#6524]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-2/igt at kms_prime@d3hot.html - shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#6524]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/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][323] ([i915#11520]) +6 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-10/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-glk: NOTRUN -> [SKIP][324] ([i915#11520]) +12 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk2/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-sf: - shard-dg1: NOTRUN -> [SKIP][325] ([i915#11520]) +8 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-12/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][326] ([i915#11520]) +4 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-3/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][327] ([i915#12316]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-8/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-snb: NOTRUN -> [SKIP][328] ([i915#11520]) +10 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-snb7/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-tglu-1: NOTRUN -> [SKIP][329] ([i915#11520]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#11520]) +12 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#9683]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#9683]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-5/igt at kms_psr2_su@page_flip-p010.html - shard-dg1: NOTRUN -> [SKIP][333] ([i915#9683]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-17/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#9683]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-3/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#9732]) +7 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_psr@fbc-pr-sprite-plane-onoff.html * igt at kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#9732]) +18 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-6/igt at kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt at kms_psr@pr-cursor-plane-move: - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#9688]) +6 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-7/igt at kms_psr@pr-cursor-plane-move.html * igt at kms_psr@psr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][338] ([i915#1072] / [i915#9732]) +26 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-12/igt at kms_psr@psr-cursor-plane-onoff.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#1072] / [i915#9732]) +27 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-2/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#1072] / [i915#9732]) +19 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-4/igt at kms_psr@psr2-cursor-mmap-gtt.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#9685]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-3/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][342] ([i915#5289]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-17/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][343] ([i915#12755] / [i915#5190]) +2 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][344] ([i915#5289]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-tglu-1: NOTRUN -> [SKIP][345] ([i915#5289]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-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-mtlp: NOTRUN -> [SKIP][346] ([i915#12755]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#12755]) +2 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-7/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][348] ([i915#3555]) +13 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-12/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-none: - shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#3555]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][350] ([i915#13179]) +1 other test abort [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk6/igt at kms_selftest@drm_framebuffer.html * igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][351] ([i915#13179]) +1 other test abort [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-5/igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#3555] / [i915#8809]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-2/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: [PASS][353] -> [DMESG-FAIL][354] ([i915#12964]) +1 other test dmesg-fail [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-rkl-5/igt at kms_vblank@ts-continuation-dpms-suspend.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-1/igt at kms_vblank@ts-continuation-dpms-suspend.html * igt at kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][355] ([i915#9906]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-7/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@max-min: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#8808] / [i915#9906]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-4/igt at kms_vrr@max-min.html * igt at kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#3555] / [i915#9906]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-4/igt at kms_vrr@negative-basic.html - shard-rkl: NOTRUN -> [SKIP][358] ([i915#3555] / [i915#9906]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-7/igt at kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][359] ([i915#3555] / [i915#9906]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-18/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][360] ([i915#9906]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-2/igt at kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][361] ([i915#9906]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-2/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#2437]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-5/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-invalid-parameters: - shard-glk: NOTRUN -> [SKIP][363] ([i915#2437]) +2 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk1/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][364] ([i915#2437] / [i915#9412]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-4/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#2436]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-1/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#7387]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-3/igt at perf@global-sseu-config-invalid.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][367] +380 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-snb2/igt at perf_pmu@busy-accuracy-98.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_12457/shard-dg2-1/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][369] ([i915#11823]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-3/igt at perf_pmu@module-unload.html * igt at perf_pmu@most-busy-check-all: - shard-rkl: [PASS][370] -> [FAIL][371] ([i915#4349]) +1 other test fail [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-rkl-3/igt at perf_pmu@most-busy-check-all.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-7/igt at perf_pmu@most-busy-check-all.html * igt at perf_pmu@rc6: - shard-rkl: NOTRUN -> [DMESG-FAIL][372] ([i915#12964]) +1 other test dmesg-fail [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-3/igt at perf_pmu@rc6.html * igt at perf_pmu@rc6-all-gts: - shard-tglu-1: NOTRUN -> [SKIP][373] ([i915#8516]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-1/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][374] ([i915#8516]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-3/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][375] ([i915#8516]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-8/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][376] ([i915#3708]) +3 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-14/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][377] ([i915#3708] / [i915#4077]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-12/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][378] ([i915#3291] / [i915#3708]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-1/igt at prime_vgem@basic-read.html * igt at prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][379] ([i915#3708]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg2-10/igt at prime_vgem@fence-flip-hang.html * igt at sriov_basic@bind-unbind-vf at vf-4: - shard-tglu: NOTRUN -> [FAIL][380] ([i915#12910]) +9 other tests fail [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-5/igt at sriov_basic@bind-unbind-vf at vf-4.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_12457/shard-tglu-1/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg1: NOTRUN -> [SKIP][382] ([i915#9917]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-18/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at tools_test@sysfs_l3_parity: - shard-mtlp: NOTRUN -> [SKIP][383] ([i915#4818]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-7/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at gem_eio@context-create: - shard-mtlp: [ABORT][384] -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-mtlp-4/igt at gem_eio@context-create.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-8/igt at gem_eio@context-create.html * igt at gem_exec_big@single: - shard-tglu: [ABORT][386] ([i915#11713]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-tglu-4/igt at gem_exec_big@single.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-5/igt at gem_exec_big@single.html * igt at gem_exec_parallel@engines: - shard-rkl: [DMESG-WARN][388] ([i915#12964]) -> [PASS][389] +27 other tests pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-rkl-1/igt at gem_exec_parallel@engines.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-1/igt at gem_exec_parallel@engines.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [ABORT][390] ([i915#10729]) -> [PASS][391] +1 other test pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-mtlp-5/igt at gem_mmap_offset@clear-via-pagefault.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-3/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_softpin@noreloc-s3: - shard-glk: [INCOMPLETE][392] ([i915#13306]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk3/igt at gem_softpin@noreloc-s3.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk2/igt at gem_softpin@noreloc-s3.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: [DMESG-WARN][394] ([i915#12964] / [i915#13475]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-rkl-3/igt at i915_module_load@reload-with-fault-injection.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-4/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-rkl: [SKIP][396] -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-rkl-4/igt at i915_pm_rpm@system-suspend-execbuf.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-2/igt at i915_pm_rpm@system-suspend-execbuf.html - shard-glk: [INCOMPLETE][398] ([i915#12797]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk8/igt at i915_pm_rpm@system-suspend-execbuf.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk8/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-rkl: [DMESG-FAIL][400] ([i915#12964]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-rkl-4/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-5/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][402] ([i915#2346]) -> [PASS][403] +1 other test pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk8/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk4/igt at kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1: - shard-snb: [FAIL][404] ([i915#11989]) -> [PASS][405] +3 other tests pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-snb7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-snb2/igt at kms_flip@2x-flip-vs-absolute-wf_vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-mtlp: [FAIL][406] ([i915#11989]) -> [PASS][407] +1 other test pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-mtlp-2/igt at kms_flip@flip-vs-absolute-wf_vblank.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-8/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][408] ([i915#9295]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-tglu-7/igt at kms_pm_dc@dc6-dpms.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-tglu-5/igt at kms_pm_dc@dc6-dpms.html * igt at perf_pmu@busy-idle at ccs0: - shard-mtlp: [FAIL][410] ([i915#4349]) -> [PASS][411] +2 other tests pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-mtlp-8/igt at perf_pmu@busy-idle at ccs0.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-4/igt at perf_pmu@busy-idle at ccs0.html * igt at perf_pmu@busy-idle at vecs0: - shard-dg1: [FAIL][412] ([i915#4349]) -> [PASS][413] +1 other test pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-dg1-13/igt at perf_pmu@busy-idle at vecs0.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-13/igt at perf_pmu@busy-idle at vecs0.html * igt at perf_pmu@most-busy-idle-check-all at rcs0: - shard-mtlp: [FAIL][414] ([i915#11943]) -> [PASS][415] +1 other test pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-mtlp-5/igt at perf_pmu@most-busy-idle-check-all at rcs0.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-mtlp-4/igt at perf_pmu@most-busy-idle-check-all at rcs0.html * igt at perf_pmu@rc6-suspend: - shard-glk: [INCOMPLETE][416] ([i915#13356]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-glk5/igt at perf_pmu@rc6-suspend.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-glk7/igt at perf_pmu@rc6-suspend.html * igt at syncobj_timeline@multi-wait-all-available-submitted: - shard-dg1: [DMESG-WARN][418] ([i915#4423]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-dg1-13/igt at syncobj_timeline@multi-wait-all-available-submitted.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-dg1-18/igt at syncobj_timeline@multi-wait-all-available-submitted.html #### Warnings #### * igt at gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: [TIMEOUT][420] ([i915#12917] / [i915#12964]) -> [SKIP][421] ([i915#4270]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-rkl-3/igt at gem_pxp@reject-modify-context-protection-off-1.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/shard-rkl-5/igt at gem_pxp@reject-modify-context-protection-off-1.html * igt at gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-rkl: [SKIP][422] ([i915#4270]) -> [TIMEOUT][423] ([i915#12917] / [i915#12964]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15979/shard-rkl-1/igt at gem_pxp@verify-p == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12457/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From dominik.grzegorzek at intel.com Mon Jan 20 13:13:37 2025 From: dominik.grzegorzek at intel.com (Dominik Grzegorzek) Date: Mon, 20 Jan 2025 14:13:37 +0100 Subject: [PATCH i-g-t 1/2] lib/xe_eudebug: Fix 32b compilation warnings/errors Message-ID: <20250120131338.131713-1-dominik.grzegorzek@intel.com> Fix instances casting using proper from_user_pointer macro and correct all debug prints which were causing compilation warnings on 32b archs. Signed-off-by: Dominik Grzegorzek --- lib/xe/xe_eudebug.c | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/lib/xe/xe_eudebug.c b/lib/xe/xe_eudebug.c index 24062e399..19bec2d25 100644 --- a/lib/xe/xe_eudebug.c +++ b/lib/xe/xe_eudebug.c @@ -324,14 +324,14 @@ static uint64_t __wait_token(int pipe[2], const uint64_t token, int timeout_ms) ret = safe_pipe_read(pipe, &in, sizeof(in), timeout_ms); igt_assert_f(ret > 0, - "Pipe read timeout waiting for token '%s:(%ld)'\n", + "Pipe read timeout waiting for token '%s:(%" PRId64 ")'\n", token_to_str(token), token); igt_assert_eq(in, token); ret = safe_pipe_read(pipe, &in, sizeof(in), timeout_ms); igt_assert_f(ret > 0, - "Pipe read timeout waiting for token value '%s:(%ld)'\n", + "Pipe read timeout waiting for token value '%s:(%" PRId64 ")'\n", token_to_str(token), token); return in; @@ -828,7 +828,8 @@ xe_eudebug_event_log_find_seqno(struct xe_eudebug_event_log *l, uint64_t seqno) xe_eudebug_for_each_event(e, l) { if (e->seqno == seqno) { if (found) { - igt_warn("Found multiple events with the same seqno %lu\n", seqno); + igt_warn("Found multiple events with the same seqno %" PRIu64 "\n", + seqno); xe_eudebug_event_log_print(l, false); igt_assert(!found); } @@ -1238,7 +1239,7 @@ int xe_eudebug_debugger_attach(struct xe_eudebug_debugger *d, d->p_client[0] = c->p_in[0]; d->p_client[1] = c->p_in[1]; - igt_debug("debugger connected to %lu\n", d->target_pid); + igt_debug("debugger connected to %" PRIu64 "\n", d->target_pid); return 0; } @@ -1391,11 +1392,11 @@ void xe_eudebug_debugger_wait_stage(struct xe_eudebug_session *s, uint64_t stage { u64 stage_in; - igt_debug("debugger xe client fd: %d pausing for stage %lu\n", s->debugger->master_fd, + igt_debug("debugger xe client fd: %d pausing for stage %" PRIu64 "\n", s->debugger->master_fd, stage); stage_in = wait_from_client(s->client, DEBUGGER_STAGE); - igt_debug("debugger xe client fd: %d stage %lu, expected %lu, stage\n", + igt_debug("debugger xe client fd: %d stage %" PRIu64 ", expected %" PRIu64 ", stage\n", s->debugger->master_fd, stage_in, stage); igt_assert_eq(stage_in, stage); @@ -1584,14 +1585,15 @@ void xe_eudebug_client_wait_stage(struct xe_eudebug_client *c, uint64_t stage) u64 stage_in; if (c->done) { - igt_warn("client: %d already done before %lu\n", c->pid, stage); + igt_warn("client: %d already done before %" PRIu64 "\n", c->pid, stage); return; } - igt_debug("client: %d pausing for stage %lu\n", c->pid, stage); + igt_debug("client: %d pausing for stage %" PRIu64 "\n", c->pid, stage); stage_in = client_wait_token(c, CLIENT_STAGE); - igt_debug("client: %d stage %lu, expected %lu, stage\n", c->pid, stage_in, stage); + igt_debug("client: %d stage %" PRIu64 ", expected %" PRIu64 ", stage\n", c->pid, + stage_in, stage); igt_assert_eq(stage_in, stage); } @@ -1949,7 +1951,7 @@ uint32_t xe_eudebug_client_exec_queue_create(struct xe_eudebug_client *c, int fd igt_assert(c); igt_assert(create); - instances = (struct drm_xe_engine_class_instance *)(create->instances); + instances = from_user_pointer(create->instances); class = instances[0].engine_class; igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, create), 0); @@ -1988,6 +1990,7 @@ uint32_t xe_eudebug_client_exec_queue_create(struct xe_eudebug_client *c, int fd void xe_eudebug_client_exec_queue_destroy(struct xe_eudebug_client *c, int fd, struct drm_xe_exec_queue_create *create) { + struct drm_xe_engine_class_instance *instances; struct drm_xe_exec_queue_destroy destroy = {}; struct drm_xe_ext_set_property *ext; bool send = false; @@ -1997,7 +2000,8 @@ void xe_eudebug_client_exec_queue_destroy(struct xe_eudebug_client *c, int fd, igt_assert(create); destroy.exec_queue_id = create->exec_queue_id; - class = ((struct drm_xe_engine_class_instance *)(create->instances))[0].engine_class; + instances = from_user_pointer(create->instances); + class = instances[0].engine_class; for (ext = from_user_pointer(create->extensions); ext; ext = from_user_pointer(ext->base.next_extension)) -- 2.34.1 From dominik.grzegorzek at intel.com Mon Jan 20 13:13:38 2025 From: dominik.grzegorzek at intel.com (Dominik Grzegorzek) Date: Mon, 20 Jan 2025 14:13:38 +0100 Subject: [PATCH i-g-t 2/2] tests/intel/xe_eudebug_online: Fix 32b compilation warnings/errors In-Reply-To: <20250120131338.131713-1-dominik.grzegorzek@intel.com> References: <20250120131338.131713-1-dominik.grzegorzek@intel.com> Message-ID: <20250120131338.131713-2-dominik.grzegorzek@intel.com> Fix metadata allocation so it is properly sized on 32b and correct all debug prints which were causing compilation warnings. Signed-off-by: Dominik Grzegorzek --- tests/intel/xe_eudebug_online.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c index f532387af..41a01c02f 100644 --- a/tests/intel/xe_eudebug_online.c +++ b/tests/intel/xe_eudebug_online.c @@ -569,7 +569,7 @@ static void get_aips_offset_table(struct online_debug_data *data, int threads) igt_debug("AIPs offset table:\n"); for (int i = 0; i < threads; i++) - igt_debug("%lx\n", data->aips_offset_table[i]); + igt_debug("%" PRIx64 "\n", data->aips_offset_table[i]); } static int get_stepped_threads_count(struct online_debug_data *data, int threads) @@ -1063,8 +1063,8 @@ static void run_online_client(struct xe_eudebug_client *c) uint32_t *ptr; int fd, vm_flags; - metadata[0] = calloc(2, sizeof(*metadata)); - metadata[1] = calloc(2, sizeof(*metadata)); + metadata[0] = calloc(2, sizeof(**metadata)); + metadata[1] = calloc(2, sizeof(**metadata)); igt_assert(metadata[0]); igt_assert(metadata[1]); @@ -2328,11 +2328,11 @@ static void test_many_sessions_on_tiles(int fd, bool multi_tile) if (multi_tile) igt_assert_f(diff < WORKLOAD_DELAY_US, - "Expected to execute workloads concurrently. Actual delay: %lu ms\n", + "Expected to execute workloads concurrently. Actual delay: %" PRIu64 " ms\n", diff); else igt_assert_f(diff >= WORKLOAD_DELAY_US, - "Expected a serialization of workloads. Actual delay: %lu ms\n", + "Expected a serialization of workloads. Actual delay: %" PRIu64 " ms\n", diff); } -- 2.34.1 From patchwork at emeril.freedesktop.org Mon Jan 20 13:36:30 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 13:36:30 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Ffault=5F?= =?utf-8?q?injection=3A_Inject_errors_during_xe=5Fguc=5Fct=5Fsend=5Frecv_=26?= =?utf-8?q?_xe=5Fguc=5Fmmio=5Fsend=5Frecv_=28rev3=29?= In-Reply-To: <20250120122835.10511-1-satyanarayana.k.v.p@intel.com> References: <20250120122835.10511-1-satyanarayana.k.v.p@intel.com> Message-ID: <173738019006.2142905.806004931387450398@b555e5b46a47> == Series Details == Series: tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv & xe_guc_mmio_send_recv (rev3) URL : https://patchwork.freedesktop.org/series/142999/ State : success == Summary == CI Bug Log - changes from IGT_8199 -> IGTPW_12464 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/index.html Participating hosts (39 -> 41) ------------------------------ Additional (2): fi-bsw-nick fi-elk-e7500 Known issues ------------ Here are the changes found in IGTPW_12464 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at fbdev@info: - fi-bsw-nick: NOTRUN -> [SKIP][1] ([i915#1849]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/fi-bsw-nick/igt at fbdev@info.html * igt at gem_lmem_swapping@parallel-random-engines: - fi-bsw-nick: NOTRUN -> [SKIP][2] +43 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/fi-bsw-nick/igt at gem_lmem_swapping@parallel-random-engines.html * igt at i915_selftest@live: - bat-twl-1: [PASS][3] -> [ABORT][4] ([i915#12919] / [i915#13503]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-twl-1/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/bat-twl-1/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_pm: - bat-twl-1: [PASS][5] -> [ABORT][6] ([i915#12919]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-twl-1/igt at i915_selftest@live at gt_pm.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/bat-twl-1/igt at i915_selftest@live at gt_pm.html * igt at i915_selftest@live at workarounds: - bat-mtlp-6: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/bat-mtlp-6/igt at i915_selftest@live at workarounds.html * igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1: - fi-elk-e7500: NOTRUN -> [SKIP][9] +24 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/fi-elk-e7500/igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1.html * igt at runner@aborted: - fi-pnv-d510: NOTRUN -> [FAIL][10] ([i915#13350]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/fi-pnv-d510/igt at runner@aborted.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-arls-6}: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-arls-6/igt at i915_selftest@live at workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/bat-arls-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#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350 [i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8199 -> IGTPW_12464 CI-20190529: 20190529 CI_DRM_15983: 4d9c78b35c395ed49796502224f3a421b0ce65ef @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12464: 2e5f5276b2df47e037ce89c51e4435e88d086f91 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From peter.senna at linux.intel.com Mon Jan 20 13:39:16 2025 From: peter.senna at linux.intel.com (Peter Senna Tschudin) Date: Mon, 20 Jan 2025 14:39:16 +0100 Subject: RFC: Do we want a new igt_write() function? Message-ID: <64b1ae2e-e096-4da5-8233-2669bbd816be@linux.intel.com> Dear List, I find myself wanting to repeat some small variation of a write function that retries on recoverable errors and that aborts on unrecoverable errors. Is the idea of an igt_write() function a welcome addition to lib/igt_core? Something like: #define MAX_WRITE_RETRIES 5 /** * igt_write - Writes the buffer to the file descriptor retrying when possible. * @fd: The file descriptor to write to. * @buf: Pointer to the data to write. * @count: Total number of bytes to write. * * Returns the total number of bytes written on success, or -1 on failure. */ ssize_t igt_write(int fd, const void *buf, size_t count) { const char *ptr = buf; size_t remaining = count; ssize_t written; int retries = 0; while (remaining > 0) { written = write(fd, ptr, remaining); if (written > 0) { ptr += written; remaining -= written; } else if (written == -1) { if (errno == EINTR || errno == EAGAIN) { /* Retry for recoverable errors */ if (++retries > MAX_WRITE_RETRIES) { igt_err("igt_write: Exceeded retry limit\n"); return -1; } continue; } else { /* Log unrecoverable error */ igt_err("igt_write: unrecoverable write error"); return -1; } } } return count; } Thanks, Peter From francois.dugast at intel.com Mon Jan 20 13:41:06 2025 From: francois.dugast at intel.com (Francois Dugast) Date: Mon, 20 Jan 2025 14:41:06 +0100 Subject: [PATCH i-g-t v2 2/2] tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv In-Reply-To: <20250120083410.26904-3-satyanarayana.k.v.p@intel.com> References: <20250120083410.26904-1-satyanarayana.k.v.p@intel.com> <20250120083410.26904-3-satyanarayana.k.v.p@intel.com> Message-ID: On Mon, Jan 20, 2025 at 02:04:10PM +0530, Satyanarayana K V P wrote: > Use the kernel fault injection infrastructure to test error handling > of xe at enabling of VFs stage when executing xe_guc_ct_send_recv() > so that more code paths are tested, such as error handling and unwinding. > > Error can be injected using: > igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv > > v2: Updated guc_fail_* to enable_vfs_* > Added igt_skip_on(!igt_sriov_is_pf(fd)) to skip test when run without > enabling sriov. > > Cc: Matthew Brost > Cc: Micha? Wajdeczko > Cc: Francois Dugast > Signed-off-by: Satyanarayana K V P > --- > tests/intel/xe_fault_injection.c | 63 ++++++++++++++++++++++++++++++++ > 1 file changed, 63 insertions(+) > > diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c > index 3a0e2aa29..56616ee17 100644 > --- a/tests/intel/xe_fault_injection.c > +++ b/tests/intel/xe_fault_injection.c > @@ -19,12 +19,14 @@ > #include "igt_sysfs.h" > #include "lib/igt_syncobj.h" > #include "lib/intel_pat.h" > +#include "lib/igt_sriov_device.h" > #include "xe/xe_ioctl.h" > #include "xe/xe_query.h" > > #define INJECT_ERRNO -ENOMEM > #define BO_ADDR 0x1a0000 > #define BO_SIZE (1024*1024) > +#define NUM_VFS 1 > > enum injection_list_action { > INJECTION_LIST_ADD, > @@ -281,6 +283,55 @@ vm_bind_fail(int fd, const char function_name[]) > igt_assert_eq(simple_vm_bind(fd, vm), 0); > } > > +static int sriov_enable_vfs(int fd, int num_vfs) > +{ > + int sysfs; > + bool ret; > + > + sysfs = igt_sysfs_open(fd); > + igt_assert_fd(sysfs); > + > + ret = __igt_sysfs_set_u32(sysfs, "device/sriov_numvfs", num_vfs); > + close(sysfs); > + > + return ret; > +} > + > +/** > + * SUBTEST: guc-fail-%s Hi, The test name must be updated in the documentation as well: ERROR: Missing documentation for igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv ERROR: Unneeded documentation for igt at xe_fault_injection@guc-fail-xe_guc_ct_send_recv > + * Description: inject an error in function %arg[1] used when xe interacts with guc to make it fail > + * Functionality: fault > + * > + * arg[1]: > + * @xe_guc_ct_send_recv: xe_guc_ct_send_recv > + */ > + > +static void > +enable_vfs_fail(int fd, int num_vfs, const char function_name[]) > +{ > + bool autoprobe_en = 0; > + > + ignore_faults_in_dmesg(function_name); > + injection_list_do(INJECTION_LIST_ADD, function_name); > + set_retval(function_name, INJECT_ERRNO); > + > + autoprobe_en = igt_sriov_is_driver_autoprobe_enabled(fd); > + > + if (autoprobe_en) > + igt_sriov_disable_driver_autoprobe(fd); > + > + /* igt_sriov_enable_vfs can't be used here as it is causing abort on any error. > + * Since error in this test is expected, we have written our own static function here. > + */ > + sriov_enable_vfs(fd, num_vfs); > + > + igt_assert_eq(-errno, INJECT_ERRNO); > + injection_list_do(INJECTION_LIST_REMOVE, function_name); > + > + if (autoprobe_en) > + igt_sriov_enable_driver_autoprobe(fd); > +} > + > igt_main > { > int fd; > @@ -319,6 +370,10 @@ igt_main > { "xe_vma_ops_alloc" }, > { } > }; > + const struct section enable_vfs_fail_functions[] = { > + { "xe_guc_ct_send_recv" }, > + { } > + }; > > igt_fixture { > igt_require(fail_function_injection_enabled()); > @@ -335,6 +390,14 @@ igt_main > igt_subtest_f("vm-bind-fail-%s", s->name) > vm_bind_fail(fd, s->name); > > + for (const struct section *s = enable_vfs_fail_functions; s->name; s++) > + igt_subtest_f("enable-vfs-fail-%s", s->name) { > + /* Skip the test if not running with SRIOV > + */ Is there an accidental newline between the extra white space after "SRIOV" and "*/" on a new line? > + igt_skip_on(!igt_sriov_is_pf(fd)); > + enable_vfs_fail(fd, NUM_VFS, s->name); > + } > + > igt_fixture { > xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_UNBIND); > } > -- > 2.35.3 > From patchwork at emeril.freedesktop.org Mon Jan 20 13:42:29 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 13:42:29 -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_=28rev5=29?= In-Reply-To: <20241113174118.158849-1-mohammed.thasleem@intel.com> References: <20241113174118.158849-1-mohammed.thasleem@intel.com> Message-ID: <173738054948.2142905.5489368013161395589@b555e5b46a47> == Series Details == Series: tests/intel/kms_dirtyfb: Add skip condition for bmg platform (rev5) URL : https://patchwork.freedesktop.org/series/141312/ State : success == Summary == CI Bug Log - changes from XEIGT_8199_BAT -> XEIGTPW_12461_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8199 -> IGTPW_12461 IGTPW_12461: 1a3de53b24a62a32ea7c968566bebcef81220c24 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From satyanarayana.k.v.p at intel.com Mon Jan 20 13:43:35 2025 From: satyanarayana.k.v.p at intel.com (K V P, Satyanarayana) Date: Mon, 20 Jan 2025 13:43:35 +0000 Subject: [PATCH i-g-t v2 2/2] tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv In-Reply-To: References: <20250120083410.26904-1-satyanarayana.k.v.p@intel.com> <20250120083410.26904-3-satyanarayana.k.v.p@intel.com> Message-ID: > -----Original Message----- > From: Dugast, Francois > Sent: Monday, January 20, 2025 7:11 PM > To: K V P, Satyanarayana > Cc: igt-dev at lists.freedesktop.org; Brost, Matthew > ; Wajdeczko, Michal > > Subject: Re: [PATCH i-g-t v2 2/2] tests/intel/xe_fault_injection: Inject errors > during xe_guc_ct_send_recv > > On Mon, Jan 20, 2025 at 02:04:10PM +0530, Satyanarayana K V P wrote: > > Use the kernel fault injection infrastructure to test error handling > > of xe at enabling of VFs stage when executing xe_guc_ct_send_recv() > > so that more code paths are tested, such as error handling and unwinding. > > > > Error can be injected using: > > igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv > > > > v2: Updated guc_fail_* to enable_vfs_* > > Added igt_skip_on(!igt_sriov_is_pf(fd)) to skip test when run without > > enabling sriov. > > > > Cc: Matthew Brost > > Cc: Micha? Wajdeczko > > Cc: Francois Dugast > > Signed-off-by: Satyanarayana K V P > > --- > > tests/intel/xe_fault_injection.c | 63 > ++++++++++++++++++++++++++++++++ > > 1 file changed, 63 insertions(+) > > > > diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c > > index 3a0e2aa29..56616ee17 100644 > > --- a/tests/intel/xe_fault_injection.c > > +++ b/tests/intel/xe_fault_injection.c > > @@ -19,12 +19,14 @@ > > #include "igt_sysfs.h" > > #include "lib/igt_syncobj.h" > > #include "lib/intel_pat.h" > > +#include "lib/igt_sriov_device.h" > > #include "xe/xe_ioctl.h" > > #include "xe/xe_query.h" > > > > #define INJECT_ERRNO -ENOMEM > > #define BO_ADDR 0x1a0000 > > #define BO_SIZE (1024*1024) > > +#define NUM_VFS 1 > > > > enum injection_list_action { > > INJECTION_LIST_ADD, > > @@ -281,6 +283,55 @@ vm_bind_fail(int fd, const char function_name[]) > > igt_assert_eq(simple_vm_bind(fd, vm), 0); > > } > > > > +static int sriov_enable_vfs(int fd, int num_vfs) > > +{ > > + int sysfs; > > + bool ret; > > + > > + sysfs = igt_sysfs_open(fd); > > + igt_assert_fd(sysfs); > > + > > + ret = __igt_sysfs_set_u32(sysfs, "device/sriov_numvfs", num_vfs); > > + close(sysfs); > > + > > + return ret; > > +} > > + > > +/** > > + * SUBTEST: guc-fail-%s > > Hi, > > The test name must be updated in the documentation as well: > > ERROR: Missing documentation for igt at xe_fault_injection@enable-vfs-fail- > xe_guc_ct_send_recv > ERROR: Unneeded documentation for igt at xe_fault_injection@guc-fail- > xe_guc_ct_send_recv > Updated and pushed V3 patch. > > + * Description: inject an error in function %arg[1] used when xe interacts > with guc to make it fail > > + * Functionality: fault > > + * > > + * arg[1]: > > + * @xe_guc_ct_send_recv: xe_guc_ct_send_recv > > + */ > > + > > +static void > > +enable_vfs_fail(int fd, int num_vfs, const char function_name[]) > > +{ > > + bool autoprobe_en = 0; > > + > > + ignore_faults_in_dmesg(function_name); > > + injection_list_do(INJECTION_LIST_ADD, function_name); > > + set_retval(function_name, INJECT_ERRNO); > > + > > + autoprobe_en = igt_sriov_is_driver_autoprobe_enabled(fd); > > + > > + if (autoprobe_en) > > + igt_sriov_disable_driver_autoprobe(fd); > > + > > + /* igt_sriov_enable_vfs can't be used here as it is causing abort on any > error. > > + * Since error in this test is expected, we have written our own static > function here. > > + */ > > + sriov_enable_vfs(fd, num_vfs); > > + > > + igt_assert_eq(-errno, INJECT_ERRNO); > > + injection_list_do(INJECTION_LIST_REMOVE, function_name); > > + > > + if (autoprobe_en) > > + igt_sriov_enable_driver_autoprobe(fd); > > +} > > + > > igt_main > > { > > int fd; > > @@ -319,6 +370,10 @@ igt_main > > { "xe_vma_ops_alloc" }, > > { } > > }; > > + const struct section enable_vfs_fail_functions[] = { > > + { "xe_guc_ct_send_recv" }, > > + { } > > + }; > > > > igt_fixture { > > igt_require(fail_function_injection_enabled()); > > @@ -335,6 +390,14 @@ igt_main > > igt_subtest_f("vm-bind-fail-%s", s->name) > > vm_bind_fail(fd, s->name); > > > > + for (const struct section *s = enable_vfs_fail_functions; s->name; s++) > > + igt_subtest_f("enable-vfs-fail-%s", s->name) { > > + /* Skip the test if not running with SRIOV > > + */ > > Is there an accidental newline between the extra white space after "SRIOV" > and "*/" on a new line? > Was just trying to follow syntax guidelines. Intentionally added */ in the new line. > > + igt_skip_on(!igt_sriov_is_pf(fd)); > > + enable_vfs_fail(fd, NUM_VFS, s->name); > > + } > > + > > igt_fixture { > > xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_UNBIND); > > } > > -- > > 2.35.3 > > From patchwork at emeril.freedesktop.org Mon Jan 20 14:05:43 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 14:05:43 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/xe=5Fdebugfs=3A_Imp?= =?utf-8?q?rove_test=5Fgt_subtest_=28rev3=29?= In-Reply-To: <20250113134558.947544-1-pravalika.gurram@intel.com> References: <20250113134558.947544-1-pravalika.gurram@intel.com> Message-ID: <173738194302.2142905.10003800637766790459@b555e5b46a47> == Series Details == Series: tests/xe_debugfs: Improve test_gt subtest (rev3) URL : https://patchwork.freedesktop.org/series/143322/ State : success == Summary == CI Bug Log - changes from IGT_8199 -> IGTPW_12465 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/index.html Participating hosts (39 -> 41) ------------------------------ Additional (2): fi-bsw-nick fi-elk-e7500 Known issues ------------ Here are the changes found in IGTPW_12465 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at fbdev@info: - fi-bsw-nick: NOTRUN -> [SKIP][1] ([i915#1849]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/fi-bsw-nick/igt at fbdev@info.html * igt at gem_lmem_swapping@parallel-random-engines: - fi-bsw-nick: NOTRUN -> [SKIP][2] +43 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/fi-bsw-nick/igt at gem_lmem_swapping@parallel-random-engines.html * igt at i915_selftest@live: - bat-mtlp-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-mtlp-8/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/bat-mtlp-8/igt at i915_selftest@live.html - bat-arlh-2: [PASS][5] -> [INCOMPLETE][6] ([i915#12445]) +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-arlh-2/igt at i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/bat-arlh-2/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-arlh-3: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-arlh-3/igt at i915_selftest@live at workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/bat-arlh-3/igt at i915_selftest@live at workarounds.html * igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1: - fi-elk-e7500: NOTRUN -> [SKIP][9] +24 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/fi-elk-e7500/igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-arls-6}: [DMESG-FAIL][10] ([i915#12061]) -> [PASS][11] +1 other test pass [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-arls-6/igt at i915_selftest@live at workarounds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/bat-arls-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#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8199 -> IGTPW_12465 CI-20190529: 20190529 CI_DRM_15983: 4d9c78b35c395ed49796502224f3a421b0ce65ef @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12465: a3d9071615dfadb57fe53d45063cad775f4817d2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 14:07:23 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 14:07:23 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/amdgpu/amd=5Fabm=3A_F?= =?utf-8?q?ix_test_failed_on_self-refresh_panel_=28rev2=29?= In-Reply-To: <20250120102501.4164-1-chiahsuan.chung@amd.com> References: <20250120102501.4164-1-chiahsuan.chung@amd.com> Message-ID: <173738204377.2163325.14614722600424729370@b555e5b46a47> == Series Details == Series: tests/amdgpu/amd_abm: Fix test failed on self-refresh panel (rev2) URL : https://patchwork.freedesktop.org/series/143552/ State : success == Summary == CI Bug Log - changes from XEIGT_8199_BAT -> XEIGTPW_12463_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8199 -> IGTPW_12463 IGTPW_12463: 32e9e493939482bacb200eb405244a214f28d3c5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 14:28:09 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 14:28:09 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Ffault=5Fin?= =?utf-8?q?jection=3A_Inject_errors_during_xe=5Fguc=5Fct=5Fsend=5Frecv_=26_x?= =?utf-8?q?e=5Fguc=5Fmmio=5Fsend=5Frecv_=28rev3=29?= In-Reply-To: <20250120122835.10511-1-satyanarayana.k.v.p@intel.com> References: <20250120122835.10511-1-satyanarayana.k.v.p@intel.com> Message-ID: <173738328984.2163325.5123361557116785514@b555e5b46a47> == Series Details == Series: tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv & xe_guc_mmio_send_recv (rev3) URL : https://patchwork.freedesktop.org/series/142999/ State : success == Summary == CI Bug Log - changes from XEIGT_8199_BAT -> XEIGTPW_12464_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12464_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3970] / [Intel XE#4078]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-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_8199/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html * igt at xe_vm@munmap-style-unbind-end: - bat-adlp-vf: [PASS][5] -> [DMESG-WARN][6] ([Intel XE#4078]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/bat-adlp-vf/igt at xe_vm@munmap-style-unbind-end.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/bat-adlp-vf/igt at xe_vm@munmap-style-unbind-end.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][7] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][8] ([Intel XE#1192]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8199 -> IGTPW_12464 IGTPW_12464: 2e5f5276b2df47e037ce89c51e4435e88d086f91 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 14:53:07 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 14:53:07 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fwedged?= =?utf-8?q?=3A_Read_wedged=5Fmode_debugfs?= In-Reply-To: <20250120130927.65919-1-pravalika.gurram@intel.com> References: <20250120130927.65919-1-pravalika.gurram@intel.com> Message-ID: <173738478771.2194288.7151142239448704406@b555e5b46a47> == Series Details == Series: tests/intel/xe_wedged: Read wedged_mode debugfs URL : https://patchwork.freedesktop.org/series/143729/ State : success == Summary == CI Bug Log - changes from IGT_8199 -> IGTPW_12466 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/index.html Participating hosts (39 -> 41) ------------------------------ Additional (2): fi-bsw-nick fi-elk-e7500 Known issues ------------ Here are the changes found in IGTPW_12466 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at fbdev@info: - fi-bsw-nick: NOTRUN -> [SKIP][1] ([i915#1849]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/fi-bsw-nick/igt at fbdev@info.html * igt at gem_lmem_swapping@parallel-random-engines: - fi-bsw-nick: NOTRUN -> [SKIP][2] +43 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/fi-bsw-nick/igt at gem_lmem_swapping@parallel-random-engines.html * igt at i915_selftest@live: - bat-adlp-11: [PASS][3] -> [INCOMPLETE][4] ([i915#12445]) +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-adlp-11/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/bat-adlp-11/igt at i915_selftest@live.html * igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1: - fi-elk-e7500: NOTRUN -> [SKIP][5] +24 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/fi-elk-e7500/igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-arls-6}: [DMESG-FAIL][6] ([i915#12061]) -> [PASS][7] +1 other test pass [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-arls-6/igt at i915_selftest@live at workarounds.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/bat-arls-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#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8199 -> IGTPW_12466 CI-20190529: 20190529 CI_DRM_15983: 4d9c78b35c395ed49796502224f3a421b0ce65ef @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12466: 74352c1724e435b3e56862d0873c3dfb8de15aa8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 14:55:27 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 14:55:27 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/xe=5Fdebugfs=3A_Impro?= =?utf-8?q?ve_test=5Fgt_subtest_=28rev3=29?= In-Reply-To: <20250113134558.947544-1-pravalika.gurram@intel.com> References: <20250113134558.947544-1-pravalika.gurram@intel.com> Message-ID: <173738492702.2194288.14235884992689195311@b555e5b46a47> == Series Details == Series: tests/xe_debugfs: Improve test_gt subtest (rev3) URL : https://patchwork.freedesktop.org/series/143322/ State : success == Summary == CI Bug Log - changes from XEIGT_8199_BAT -> XEIGTPW_12465_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12465_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [PASS][1] -> [DMESG-FAIL][2] ([Intel XE#4078]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078 Build changes ------------- * IGT: IGT_8199 -> IGTPW_12465 IGTPW_12465: a3d9071615dfadb57fe53d45063cad775f4817d2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 15:22:20 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 15:22:20 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_series_starting_with_=5Bi?= =?utf-8?q?-g-t=2C1/2=5D_lib/xe=5Feudebug=3A_Fix_32b_compilation_warnings/er?= =?utf-8?q?rors?= In-Reply-To: <20250120131338.131713-1-dominik.grzegorzek@intel.com> References: <20250120131338.131713-1-dominik.grzegorzek@intel.com> Message-ID: <173738654097.2194288.587786459888247938@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,1/2] lib/xe_eudebug: Fix 32b compilation warnings/errors URL : https://patchwork.freedesktop.org/series/143730/ State : success == Summary == CI Bug Log - changes from IGT_8199 -> IGTPW_12467 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/index.html Participating hosts (39 -> 41) ------------------------------ Additional (2): fi-bsw-nick fi-elk-e7500 Known issues ------------ Here are the changes found in IGTPW_12467 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at fbdev@info: - fi-bsw-nick: NOTRUN -> [SKIP][1] ([i915#1849]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/fi-bsw-nick/igt at fbdev@info.html * igt at gem_lmem_swapping@parallel-random-engines: - fi-bsw-nick: NOTRUN -> [SKIP][2] +43 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/fi-bsw-nick/igt at gem_lmem_swapping@parallel-random-engines.html * igt at i915_selftest@live at workarounds: - bat-arls-5: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-arls-5/igt at i915_selftest@live at workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/bat-arls-5/igt at i915_selftest@live at workarounds.html - bat-mtlp-6: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/bat-mtlp-6/igt at i915_selftest@live at workarounds.html * igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1: - fi-elk-e7500: NOTRUN -> [SKIP][7] +24 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/fi-elk-e7500/igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1.html #### Possible fixes #### * igt at i915_selftest@live at workarounds: - {bat-arls-6}: [DMESG-FAIL][8] ([i915#12061]) -> [PASS][9] +1 other test pass [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-arls-6/igt at i915_selftest@live at workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/bat-arls-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#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8199 -> IGTPW_12467 CI-20190529: 20190529 CI_DRM_15983: 4d9c78b35c395ed49796502224f3a421b0ce65ef @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12467: 594d0d229b8c967c61efb5a47a98b60f7925ff29 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 15:33:54 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 15:33:54 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel/kms=5Fjoiner?= =?utf-8?q?=3A_switch_modeset_from_uj_to_bj_and_vice-versa?= In-Reply-To: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> References: <20250110042752.32846-1-santhosh.reddy.guddati@intel.com> Message-ID: <173738723485.2213030.1779848353933233080@b555e5b46a47> == Series Details == Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa URL : https://patchwork.freedesktop.org/series/143367/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15940_full -> IGTPW_12423_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12423_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12423_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_12423/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_12423_full: ### IGT changes ### #### Possible regressions #### * igt at i915_pm_rps@reset: - shard-snb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-snb7/igt at i915_pm_rps@reset.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at i915_pm_rps@reset.html New tests --------- New tests have been introduced between CI_DRM_15940_full and IGTPW_12423_full: ### New IGT tests (1) ### * igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner: - Statuses : 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_12423_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at api_intel_bb@object-reloc-keep-cache.html * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at api_intel_bb@object-reloc-purge-cache.html * igt at debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#9318]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at debugfs_test@basic-hwmon.html - shard-tglu: NOTRUN -> [SKIP][6] ([i915#9318]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-7/igt at debugfs_test@basic-hwmon.html * igt at device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at device_reset@unbind-cold-reset-rebind.html - shard-tglu-1: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-hang at rcs0: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +6 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at drm_fdinfo@busy-hang at rcs0.html * igt at drm_fdinfo@most-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +12 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at drm_fdinfo@most-busy-check-all.html * igt at drm_fdinfo@most-busy-idle-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +35 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at drm_fdinfo@most-busy-idle-check-all at vecs1.html * igt at gem_basic@multigpu-create-close: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][17] ([i915#7297]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][18] ([i915#9323]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][19] ([i915#12392] / [i915#7297]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at gem_ccs@suspend-resume at xmajor-compressed-compfmt0-smem-lmem0.html * igt at gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#7697]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at gem_close_race@multigpu-basic-process.html * igt at gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][22] ([i915#13427]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][23] ([i915#12353]) +1 other test incomplete [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk2/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][24] ([i915#1099]) +11 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at gem_ctx_persistence@engines-mixed-process.html * igt at gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at gem_ctx_persistence@heartbeat-close.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][29] ([i915#13197] / [i915#13390]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk7/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@kms: - shard-dg2: [PASS][30] -> [FAIL][31] ([i915#5784]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg2-4/igt at gem_eio@kms.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/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_12423/shard-snb2/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4771]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-pair: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@parallel-balancer: - shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#4525]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at gem_exec_balancer@parallel-balancer.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_capture@capture-invisible: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#6334]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4812]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at gem_exec_fence@submit.html - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4812]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at gem_exec_fence@submit.html - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at gem_exec_fence@submit.html * igt at gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#5107]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-7/igt at gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][44] ([i915#5107]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_exec_params@rsvd2-dirt.html * igt at gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +20 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_exec_reloc@basic-active.html * igt at gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at gem_exec_reloc@basic-wc-cpu-noreloc.html * igt at gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +6 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at gem_exec_reloc@basic-write-read.html * igt at gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at gem_exec_schedule@preempt-queue-chain.html * igt at gem_exec_schedule@reorder-wide: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_suspend@basic-s0 at smem: - shard-dg2: [PASS][50] -> [INCOMPLETE][51] ([i915#11441] / [i915#13304]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg2-1/igt at gem_exec_suspend@basic-s0 at smem.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at gem_exec_suspend@basic-s0 at smem.html - shard-rkl: [PASS][52] -> [INCOMPLETE][53] ([i915#13304]) +1 other test incomplete [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-2/igt at gem_exec_suspend@basic-s0 at smem.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at gem_exec_suspend@basic-s0 at smem.html * igt at gem_fence_thrash@bo-write-verify-x: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at gem_fence_thrash@bo-write-verify-x.html - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-5/igt at gem_fence_thrash@bo-write-verify-x.html * igt at gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4860]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at gem_fence_thrash@bo-write-verify-y.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_12423/shard-rkl-4/igt at gem_huc_copy@huc-copy.html - shard-tglu: NOTRUN -> [SKIP][58] ([i915#2190]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-4/igt at gem_lmem_swapping@heavy-random.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4613]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#4613]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@parallel-random: - shard-glk: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk7/igt at gem_lmem_swapping@parallel-random.html * igt at gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at gem_lmem_swapping@parallel-random-verify.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][64] ([i915#5493]) +1 other test timeout [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#12193]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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][66] ([i915#4565]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at gem_lmem_swapping@verify-random-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_12423/shard-rkl-1/igt at gem_media_vme.html * igt at gem_mmap@basic-small-bo: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4083]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at gem_mmap@basic-small-bo.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) +20 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4083]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at gem_mmap_wc@read.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4083]) +7 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3282]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at gem_partial_pwrite_pread@reads-snoop.html * igt at gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at gem_pread@snoop.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3282]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-4/igt at gem_pread@snoop.html * igt at gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4270]) +8 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@hw-rejects-pxp-context: - shard-rkl: NOTRUN -> [TIMEOUT][76] ([i915#12917] / [i915#12964]) +2 other tests timeout [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-6/igt at gem_pxp@hw-rejects-pxp-context.html - shard-tglu: NOTRUN -> [SKIP][77] ([i915#13398]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-9/igt at gem_pxp@hw-rejects-pxp-context.html - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#13398]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at gem_pxp@hw-rejects-pxp-context.html * igt at gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: NOTRUN -> [TIMEOUT][79] ([i915#12964]) +1 other test timeout [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at gem_pxp@regular-baseline-src-copy-readible.html * igt at gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at gem_pxp@verify-pxp-stale-ctx-execution.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#5190] / [i915#8428]) +9 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8428]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt at gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4079]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gem_render_tiled_blits@basic.html * igt at gem_tiled_partial_pwrite_pread@writes: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#3282]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at gem_tiled_partial_pwrite_pread@writes.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4077]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at gem_tiled_partial_pwrite_pread@writes.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][86] ([i915#13449]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at gem_userptr_blits@access-control.html - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at gem_userptr_blits@access-control.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][90] ([i915#3323]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk7/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@unsync-unmap: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at gem_userptr_blits@unsync-unmap.html - shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-4/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][94] +705 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb2/igt at gem_vm_create@invalid-create.html * igt at gem_workarounds@suspend-resume-fd: - shard-glk: NOTRUN -> [INCOMPLETE][95] ([i915#13356]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk8/igt at gem_workarounds@suspend-resume-fd.html * igt at gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#2856]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at gen9_exec_parse@basic-rejected-ctx-param.html * igt at gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#2527]) +5 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#2527]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#2856]) +6 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at gen9_exec_parse@bb-start-param.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-6/igt at gen9_exec_parse@unaligned-jump.html * igt at i915_module_load@reload-with-fault-injection: - shard-glk: NOTRUN -> [ABORT][102] ([i915#9820]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk1/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#6412]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at i915_module_load@resize-bar.html * igt at i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#8399]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at i915_pm_freq_api@freq-reset.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#6590]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at i915_pm_freq_mult@media-freq at gt0.html - shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#6590]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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][107] ([i915#12942]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#11681] / [i915#6621]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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][109] ([i915#11681] / [i915#6621]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#11681]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at i915_pm_rps@thresholds-park.html * igt at i915_pm_rps@waitboost: - shard-dg1: [PASS][111] -> [FAIL][112] ([i915#13511]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg1-13/igt at i915_pm_rps@waitboost.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at i915_pm_rps@waitboost.html * igt at i915_power@sanity: - shard-mtlp: [PASS][113] -> [SKIP][114] ([i915#7984]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-mtlp-1/igt at i915_power@sanity.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at i915_power@sanity.html * igt at i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#6245]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][116] ([i915#6245]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at i915_query@hwconfig_table.html * igt at i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#5723]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at i915_query@test-query-geometry-subslices.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_12423/shard-tglu-1/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s2idle-without-i915: - shard-snb: [PASS][119] -> [ABORT][120] ([i915#11703]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-snb5/igt at i915_suspend@basic-s2idle-without-i915.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at i915_suspend@basic-s2idle-without-i915.html * igt at i915_suspend@basic-s3-without-i915: - shard-glk: [PASS][121] -> [INCOMPLETE][122] ([i915#4817]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-glk4/igt at i915_suspend@basic-s3-without-i915.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk4/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][123] ([i915#4817]) +1 other test incomplete [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk3/igt at i915_suspend@forcewake.html * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4212]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4215] / [i915#5190]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#12454] / [i915#12712]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt at kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4212]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_addfb_basic@tile-pitch-mismatch.html - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#4212]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at kms_addfb_basic@tile-pitch-mismatch.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-3-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_12423/shard-dg2-3/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-d-hdmi-a-3-4-mc-ccs.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#1769] / [i915#3555]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/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: NOTRUN -> [SKIP][131] ([i915#1769] / [i915#3555]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-9/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5286]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-17/igt at kms_big_fb@4-tiled-8bpp-rotate-270.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#5286]) +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@4-tiled-addfb: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#5286]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#5286]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-6/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-64bpp-rotate-0: - shard-mtlp: [PASS][136] -> [FAIL][137] ([i915#5138]) +1 other test fail [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-mtlp-8/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#3638]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/igt at kms_big_fb@linear-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#3638]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_big_fb@x-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][140] +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-1/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#4538] / [i915#5190]) +15 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#4538]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6187]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#10307] / [i915#6095]) +158 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#12313]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/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][146] ([i915#6095]) +164 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/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-y-tiled-gen12-rc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6095]) +14 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs at pipe-c-edp-1.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#12313]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][149] +457 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk3/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-dg2-mc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#6095]) +79 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#6095]) +8 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][153] ([i915#12796]) +1 other test incomplete [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk4/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.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][154] ([i915#6095]) +49 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-dg2: NOTRUN -> [SKIP][155] ([i915#12313]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6095]) +69 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][157] ([i915#12964]) +30 other tests dmesg-warn [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-1.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#11616] / [i915#7213]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3742]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at kms_cdclk@plane-scaling.html * igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#4087]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at kms_cdclk@plane-scaling at pipe-b-hdmi-a-3.html * igt at kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][161] +18 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_edid@hdmi-edid-read: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at kms_chamelium_edid@hdmi-edid-read.html * igt at kms_chamelium_frames@hdmi-crc-single: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +9 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/igt at kms_chamelium_frames@hdmi-crc-single.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +15 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +8 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +5 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +8 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-9/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt at kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at kms_content_protection@atomic.html * igt at kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#9424]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3116]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_content_protection@dp-mst-type-1.html - shard-tglu: NOTRUN -> [SKIP][171] ([i915#3116] / [i915#3299]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3299]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_content_protection@dp-mst-type-1.html - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3299]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@srm: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#7116]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#6944] / [i915#9424]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at kms_content_protection@uevent.html - shard-dg2: NOTRUN -> [SKIP][176] ([i915#7118] / [i915#9424]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][177] ([i915#7118] / [i915#9424]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-6/igt at kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][178] ([i915#7116] / [i915#9424]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#13049]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#13049]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][181] ([i915#13049]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at kms_cursor_crc@cursor-onscreen-512x170.html - shard-tglu: NOTRUN -> [SKIP][182] ([i915#13049]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#13049]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#3555]) +5 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-max-size.html * igt at kms_cursor_crc@cursor-random-64x64: - shard-dg1: [PASS][185] -> [DMESG-WARN][186] ([i915#4423]) +1 other test dmesg-warn [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg1-12/igt at kms_cursor_crc@cursor-random-64x64.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_cursor_crc@cursor-random-64x64.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#3555]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#9809]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-7/igt at kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#13046] / [i915#5354]) +6 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: NOTRUN -> [SKIP][190] +22 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#9067]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#9067]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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][193] ([i915#4103]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][194] ([i915#12170]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][195] ([i915#11968]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl at a-hdmi-a-1.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#9723]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg2: NOTRUN -> [SKIP][197] ([i915#9833]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#1257]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#1257]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][200] ([i915#1257]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at kms_dp_aux_dev.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#8812]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3840] / [i915#9688]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3840]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#3840]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3840]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#3840]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3840]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_dsc@dsc-with-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3840] / [i915#9053]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_dsc@dsc-with-output-formats-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3840] / [i915#9053]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-9/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#3469]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-2x: - shard-snb: [PASS][211] -> [SKIP][212] [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-snb2/igt at kms_feature_discovery@display-2x.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#1839]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#1839]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#658]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-6/igt at kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][216] ([i915#658]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#658]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at bc-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [FAIL][218] ([i915#11989]) +1 other test fail [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk9/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at bc-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#9934]) +11 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [FAIL][220] ([i915#11989]) +3 other tests fail [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#8381]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_flip@2x-flip-vs-fences.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3637]) +3 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#9934]) +7 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_flip@2x-plain-flip.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#3637]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#9934]) +6 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#3637]) +5 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-6/igt at kms_flip@2x-plain-flip-ts-check-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-vga1: - shard-snb: [PASS][227] -> [FAIL][228] ([i915#11989]) +1 other test fail [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-snb2/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-vga1.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-vga1.html * igt at kms_flip@plain-flip-fb-recreate at d-hdmi-a1: - shard-tglu: [PASS][229] -> [FAIL][230] ([i915#11989]) +11 other tests fail [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-tglu-4/igt at kms_flip@plain-flip-fb-recreate at d-hdmi-a1.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_flip@plain-flip-fb-recreate at d-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#2672]) +4 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/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-4tile-to-64bpp-4tile-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#2587] / [i915#2672]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/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-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555]) +2 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-upscaling: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672] / [i915#3555]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#8813]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555] / [i915#5190]) +5 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#3555]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-tglu-1: NOTRUN -> [SKIP][240] ([i915#2587] / [i915#2672]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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][241] ([i915#2587] / [i915#2672]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555]) +4 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-ytile-to-32bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#2672]) +9 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/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-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][245] ([i915#6880]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#5354]) +58 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][247] ([i915#10056] / [i915#13353]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk7/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbc-tiling-linear: - shard-dg2: [PASS][248] -> [FAIL][249] ([i915#6880]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg2-4/igt at kms_frontbuffer_tracking@fbc-tiling-linear.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_frontbuffer_tracking@fbc-tiling-linear.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_12423/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#10433] / [i915#3458]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#3458]) +17 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#3023]) +27 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][254] +26 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#8708]) +29 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#8708]) +8 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#5439]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#3458]) +29 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#1825]) +5 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#1825]) +41 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][261] +52 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][262] +46 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#6118]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8228]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-7/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-swap: - shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_hdr@static-toggle.html - shard-dg1: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8228]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-4/igt at kms_hdr@static-toggle.html * igt at kms_histogram@algo-basic: - shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#13389]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_histogram@algo-basic.html * igt at kms_histogram@global-basic: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#13388]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_histogram@global-basic.html - shard-dg1: NOTRUN -> [SKIP][272] ([i915#13388]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_histogram@global-basic.html * igt at kms_histogram@global-color: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#13388]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at kms_histogram@global-color.html * igt at kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#10656]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#10656]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][276] ([i915#10656]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#10656]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner (NEW): - shard-dg1: NOTRUN -> [SKIP][278] ([i915#13522]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][279] ([i915#13522]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-2/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#13522]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-8/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][281] ([i915#13522]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][282] ([i915#13522]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt at kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#6301]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#6301]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_panel_fitting@legacy.html * igt at kms_plane@plane-panning-bottom-right-suspend at pipe-b: - shard-glk: NOTRUN -> [INCOMPLETE][285] ([i915#13026]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk3/igt at kms_plane@plane-panning-bottom-right-suspend at pipe-b.html * igt at kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][286] ([i915#3555]) +9 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_plane_lowres@tiling-4.html - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_plane_lowres@tiling-4.html * igt at kms_plane_lowres@tiling-4 at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#11614] / [i915#3582]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_plane_lowres@tiling-4 at pipe-b-edp-1.html * igt at kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#3555]) +7 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_plane_multiple@tiling-yf.html - shard-dg1: NOTRUN -> [SKIP][290] ([i915#3555]) +6 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_plane_multiple@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8806]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-7/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#6953] / [i915#9423]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_plane_scaling@intel-max-src-size.html - shard-rkl: NOTRUN -> [SKIP][293] ([i915#6953]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#12247] / [i915#9423]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#12247]) +4 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#12247]) +4 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-4/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#12247] / [i915#6953]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/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-tglu-1: NOTRUN -> [SKIP][298] ([i915#12247]) +18 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d.html - shard-dg1: NOTRUN -> [SKIP][299] ([i915#12247]) +9 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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-dg2: NOTRUN -> [SKIP][300] ([i915#12247] / [i915#6953] / [i915#9423]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][301] ([i915#12247] / [i915#6953]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/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][302] ([i915#12247]) +7 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-a.html - shard-rkl: NOTRUN -> [SKIP][303] ([i915#12247]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-a.html * igt at kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#5354]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#13441]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-1/igt at kms_pm_dc@dc5-dpms-negative.html * igt at kms_pm_dc@dc5-retention-flops: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#3828]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-6/igt at kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][307] ([i915#3828]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-8/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#9685]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_pm_dc@dc6-psr.html - shard-rkl: NOTRUN -> [SKIP][309] ([i915#9685]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#8430]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@cursor-dpms: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#12916]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at kms_pm_rpm@cursor-dpms.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#9519]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-7/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#9519]) +2 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_pm_rpm@modeset-non-lpsp-stress.html - shard-rkl: NOTRUN -> [SKIP][314] ([i915#9519]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html - shard-mtlp: NOTRUN -> [SKIP][315] ([i915#9519]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-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][316] -> [SKIP][317] ([i915#9519]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-3/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][318] ([i915#10553]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk4/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#6524] / [i915#6805]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#6524]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#6524]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#11520]) +5 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-7/igt at kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#12316]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/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][324] ([i915#11520]) +3 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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][325] ([i915#11520]) +10 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-snb: NOTRUN -> [SKIP][326] ([i915#11520]) +21 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][327] ([i915#11520]) +15 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk9/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][328] ([i915#11520]) +5 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#11520]) +11 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr@pr-cursor-blt: - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#9688]) +6 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-5/igt at kms_psr@pr-cursor-blt.html * igt at kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#1072] / [i915#9732]) +31 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-5/igt at kms_psr@psr-cursor-render.html * igt at kms_psr@psr-primary-render: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#9732]) +19 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-9/igt at kms_psr@psr-primary-render.html * igt at kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#1072] / [i915#9732]) +25 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at kms_psr@psr-sprite-plane-move.html * igt at kms_psr@psr2-cursor-render: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#9732]) +13 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_psr@psr2-cursor-render.html * igt at kms_psr@psr2-sprite-blt: - shard-dg1: NOTRUN -> [SKIP][335] ([i915#1072] / [i915#9732]) +18 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-14/igt at kms_psr@psr2-sprite-blt.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#9685]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/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][337] ([i915#9685]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-3/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][338] ([i915#5289]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#12755]) +2 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_rotation_crc@primary-rotation-270.html - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#12755]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-1/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#5190]) +6 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#5289]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-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-rkl: NOTRUN -> [SKIP][343] ([i915#5289]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_selftest@drm_framebuffer: - shard-tglu: NOTRUN -> [ABORT][344] ([i915#13179]) +1 other test abort [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-10/igt at kms_selftest@drm_framebuffer.html * igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][345] ([i915#13179]) +1 other test abort [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-4/igt at kms_selftest@drm_framebuffer at drm_test_framebuffer_free.html * igt at kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][346] ([i915#5465]) +4 other tests fail [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at kms_setmode@basic.html * igt at kms_vblank@query-forked-hang: - shard-rkl: [PASS][347] -> [DMESG-WARN][348] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-4/igt at kms_vblank@query-forked-hang.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_vblank@query-forked-hang.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][349] ([i915#12276]) +1 other test incomplete [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk6/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#9906]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#11920]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][352] ([i915#3555] / [i915#9906]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-17/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#9906]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#2437]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_writeback@writeback-check-output.html - shard-rkl: NOTRUN -> [SKIP][355] ([i915#2437]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_writeback@writeback-check-output.html - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#2437]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-4/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#2437] / [i915#9412]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#2437]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#2437] / [i915#9412]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][360] ([i915#2437]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][361] ([i915#2437]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk7/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#2436]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#2434]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-3/igt at perf@mi-rpc.html * igt at perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][364] ([i915#9100]) +1 other test fail [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at perf@non-zero-reason.html * igt at perf@polling at 0-rcs0: - shard-rkl: [PASS][365] -> [DMESG-WARN][366] ([i915#12964]) +52 other tests dmesg-warn [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-2/igt at perf@polling at 0-rcs0.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at perf@polling at 0-rcs0.html * igt at perf_pmu@all-busy-idle-check-all: - shard-dg2: [PASS][367] -> [FAIL][368] ([i915#11943]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg2-4/igt at perf_pmu@all-busy-idle-check-all.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at perf_pmu@all-busy-idle-check-all.html - shard-dg1: NOTRUN -> [FAIL][369] ([i915#11943]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at perf_pmu@all-busy-idle-check-all.html * igt at perf_pmu@busy-hang: - shard-dg1: [PASS][370] -> [FAIL][371] ([i915#4349]) +1 other test fail [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg1-18/igt at perf_pmu@busy-hang.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at perf_pmu@busy-hang.html * igt at perf_pmu@busy-hang at rcs0: - shard-mtlp: [PASS][372] -> [FAIL][373] ([i915#4349]) +2 other tests fail [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-mtlp-8/igt at perf_pmu@busy-hang at rcs0.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at perf_pmu@busy-hang at rcs0.html * igt at perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#8850]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][375] ([i915#8850]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][376] ([i915#11823]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-8/igt at perf_pmu@module-unload.html * igt at perf_pmu@most-busy-idle-check-all at rcs0: - shard-mtlp: [PASS][377] -> [FAIL][378] ([i915#11943]) +2 other tests fail [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-mtlp-5/igt at perf_pmu@most-busy-idle-check-all at rcs0.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at perf_pmu@most-busy-idle-check-all at rcs0.html * igt at prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][379] ([i915#3708] / [i915#4077]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][380] ([i915#3708] / [i915#4077]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][381] ([i915#3708]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-12/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][382] ([i915#3708]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-1/igt at prime_vgem@fence-read-hang.html * igt at prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][383] ([i915#3708]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-7/igt at prime_vgem@fence-write-hang.html - shard-rkl: NOTRUN -> [SKIP][384] ([i915#3708]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at prime_vgem@fence-write-hang.html #### Possible fixes #### * igt at gem_ctx_isolation@preservation-s3: - shard-dg1: [DMESG-WARN][385] ([i915#4423]) -> [PASS][386] +2 other tests pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg1-18/igt at gem_ctx_isolation@preservation-s3.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at gem_ctx_isolation@preservation-s3.html * igt at gem_exec_suspend@basic-s4-devices: - shard-tglu: [ABORT][387] ([i915#7975] / [i915#8213]) -> [PASS][388] +1 other test pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-tglu-10/igt at gem_exec_suspend@basic-s4-devices.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-6/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fence_thrash@bo-write-verify-threaded-none: - shard-rkl: [DMESG-WARN][389] ([i915#12964]) -> [PASS][390] +26 other tests pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-7/igt at gem_fence_thrash@bo-write-verify-threaded-none.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at gem_fence_thrash@bo-write-verify-threaded-none.html * igt at gem_softpin@noreloc-s3: - shard-glk: [INCOMPLETE][391] ([i915#13306]) -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-glk8/igt at gem_softpin@noreloc-s3.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk2/igt at gem_softpin@noreloc-s3.html * igt at gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][393] ([i915#12941]) -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-tglu-2/igt at gem_tiled_swapping@non-threaded.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-10/igt at gem_tiled_swapping@non-threaded.html * igt at i915_module_load@reload-with-fault-injection: - shard-snb: [ABORT][395] ([i915#9820]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-snb5/igt at i915_module_load@reload-with-fault-injection.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb7/igt at i915_module_load@reload-with-fault-injection.html - shard-dg1: [ABORT][397] ([i915#9820]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg1-12/igt at i915_module_load@reload-with-fault-injection.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-13/igt at i915_module_load@reload-with-fault-injection.html - shard-tglu: [ABORT][399] ([i915#10887] / [i915#12817] / [i915#9820]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-tglu-7/igt at i915_module_load@reload-with-fault-injection.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-7/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: [INCOMPLETE][401] ([i915#12797]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-glk4/igt at i915_pm_rpm@system-suspend-execbuf.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk1/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-snb: [FAIL][403] ([i915#11989]) -> [PASS][404] +1 other test pass [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-snb2/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1: - shard-mtlp: [FAIL][405] ([i915#11989]) -> [PASS][406] +2 other tests pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-mtlp-8/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-3/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-snb: [SKIP][407] -> [PASS][408] +1 other test pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a: - shard-glk: [INCOMPLETE][409] ([i915#13026]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-glk6/igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk3/igt at kms_plane@plane-panning-bottom-right-suspend at pipe-a.html * igt at kms_plane_cursor@viewport: - shard-rkl: [DMESG-WARN][411] ([i915#12917] / [i915#12964]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-2/igt at kms_plane_cursor@viewport.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at kms_plane_cursor@viewport.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][413] ([i915#9295]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-tglu-8/igt at kms_pm_dc@dc6-dpms.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-tglu-10/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][415] ([i915#9519]) -> [PASS][416] [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-3/igt at kms_pm_rpm@dpms-lpsp.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at kms_pm_rpm@dpms-lpsp.html * igt at perf_pmu@most-busy-idle-check-all at rcs0: - shard-rkl: [FAIL][417] ([i915#4349]) -> [PASS][418] +1 other test pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-3/igt at perf_pmu@most-busy-idle-check-all at rcs0.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-7/igt at perf_pmu@most-busy-idle-check-all at rcs0.html #### Warnings #### * igt at gem_pxp@fail-invalid-protected-context: - shard-rkl: [SKIP][419] ([i915#4270]) -> [TIMEOUT][420] ([i915#12964]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-2/igt at gem_pxp@fail-invalid-protected-context.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-5/igt at gem_pxp@fail-invalid-protected-context.html * igt at gem_pxp@protected-raw-src-copy-not-readible: - shard-rkl: [TIMEOUT][421] ([i915#12917] / [i915#12964]) -> [SKIP][422] ([i915#4270]) +2 other tests skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-3/igt at gem_pxp@protected-raw-src-copy-not-readible.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-4/igt at gem_pxp@protected-raw-src-copy-not-readible.html * igt at gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: [SKIP][423] ([i915#4270]) -> [TIMEOUT][424] ([i915#12917] / [i915#12964]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-4/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-2/igt at gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt at i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][425] ([i915#10131] / [i915#9820]) -> [ABORT][426] ([i915#10131] / [i915#10887] / [i915#13493] / [i915#9820]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-mtlp-8/igt at i915_module_load@reload-with-fault-injection.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-mtlp-2/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_selftest@mock: - shard-glk: [DMESG-WARN][427] ([i915#9311]) -> [DMESG-WARN][428] ([i915#1982] / [i915#9311]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-glk3/igt at i915_selftest@mock.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-glk5/igt at i915_selftest@mock.html * igt at kms_content_protection@mei-interface: - shard-dg1: [SKIP][429] ([i915#9433]) -> [SKIP][430] ([i915#9424]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg1-13/igt at kms_content_protection@mei-interface.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg1-18/igt at kms_content_protection@mei-interface.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][431] ([i915#10433] / [i915#3458]) -> [SKIP][432] ([i915#3458]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-dg2-11/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt at kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][433] ([i915#4281]) -> [SKIP][434] ([i915#3361]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15940/shard-rkl-5/igt at kms_pm_dc@dc9-dpms.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/shard-rkl-3/igt at kms_pm_dc@dc9-dpms.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kerne == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12423/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 15:36:58 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 15:36:58 -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_=28rev5=29?= In-Reply-To: <20241113174118.158849-1-mohammed.thasleem@intel.com> References: <20241113174118.158849-1-mohammed.thasleem@intel.com> Message-ID: <173738741842.2213036.15430206624604111478@b555e5b46a47> == Series Details == Series: tests/intel/kms_dirtyfb: Add skip condition for bmg platform (rev5) URL : https://patchwork.freedesktop.org/series/141312/ State : failure == Summary == CI Bug Log - changes from XEIGT_8199_full -> XEIGTPW_12461_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12461_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12461_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_12461_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@dpms-vs-vblank-race-interruptible at c-edp1: - shard-lnl: [PASS][1] -> [DMESG-WARN][2] +16 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-8/igt at kms_flip@dpms-vs-vblank-race-interruptible at c-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-8/igt at kms_flip@dpms-vs-vblank-race-interruptible at c-edp1.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [DMESG-WARN][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-8/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt at kms_psr@psr2-cursor-blt at edp-1: - shard-lnl: [PASS][4] -> [FAIL][5] +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-8/igt at kms_psr@psr2-cursor-blt at edp-1.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-1/igt at kms_psr@psr2-cursor-blt at edp-1.html * igt at xe_exec_threads@threads-hang-rebind: - shard-dg2-set2: [PASS][6] -> [DMESG-WARN][7] +1 other test dmesg-warn [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_threads@threads-hang-rebind.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-435/igt at xe_exec_threads@threads-hang-rebind.html #### Warnings #### * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [FAIL][8] ([Intel XE#2141]) -> [SKIP][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-4/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][10] -> [INCOMPLETE][11] +1 other test incomplete [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html New tests --------- New tests have been introduced between XEIGT_8199_full and XEIGTPW_12461_full: ### New IGT tests (1) ### * igt at kms_atomic_interruptible@legacy-cursor at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [6.29] s Known issues ------------ Here are the changes found in XEIGTPW_12461_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getversion@basic: - shard-bmg: [PASS][12] -> [FAIL][13] ([Intel XE#3440]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at core_getversion@basic.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at core_getversion@basic.html * igt at core_setmaster@master-drop-set-user: - shard-bmg: [PASS][14] -> [FAIL][15] ([Intel XE#3249]) +1 other test fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at core_setmaster@master-drop-set-user.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at core_setmaster@master-drop-set-user.html * igt at fbdev@unaligned-write: - shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#2134]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at fbdev@unaligned-write.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at fbdev@unaligned-write.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1125]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-6/igt at intel_hwmon@hwmon-write.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][19] -> [FAIL][20] ([Intel XE#827]) +1 other test fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: NOTRUN -> [FAIL][21] ([Intel XE#3719]) +3 other tests fail [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/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-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#3767]) +23 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-463/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_big_fb@linear-64bpp-rotate-0: - shard-lnl: NOTRUN -> [DMESG-WARN][23] ([Intel XE#1725]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-1/igt at kms_big_fb@linear-64bpp-rotate-0.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#316]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1407]) +4 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-5/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2136]) +23 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +9 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-433/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#607]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/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: NOTRUN -> [SKIP][30] ([Intel XE#610]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-1/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#367]) +8 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-435/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2191]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-2/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2191]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-436/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1512]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-3/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#455] / [Intel XE#787]) +31 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-434/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +8 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-3/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#787]) +153 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-433/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#3432]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-6/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#2907]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3.html * igt at kms_cdclk@mode-transition at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#314]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at kms_cdclk@mode-transition at pipe-d-dp-4.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#306]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-4/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_edid@hdmi-mode-timings: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#373]) +8 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-433/igt at kms_chamelium_edid@hdmi-mode-timings.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#373]) +5 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-6/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_content_protection@atomic at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][46] ([Intel XE#1178]) +2 other tests fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-1/igt at kms_content_protection@atomic at pipe-a-dp-2.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#307]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-1/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][48] ([Intel XE#1178]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at kms_content_protection@legacy at pipe-a-dp-4.html * igt at kms_content_protection@type1: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#3278]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-4/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][50] ([Intel XE#1188]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-1/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#308]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-sliding-128x42: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1424]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-5/igt at kms_cursor_crc@cursor-sliding-128x42.html * igt at kms_cursor_crc@cursor-suspend: - shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#2423]) +88 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_cursor_crc@cursor-suspend.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_cursor_crc@cursor-suspend.html - shard-lnl: [PASS][55] -> [INCOMPLETE][56] ([Intel XE#1616]) +1 other test incomplete [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-2/igt at kms_cursor_crc@cursor-suspend.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-7/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2291]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][59] -> [DMESG-WARN][60] ([Intel XE#877]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-4/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-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#323]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#323]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-5/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][63] ([Intel XE#3383]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-4/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@extended-mode-basic at pipe-b-hdmi-a-3-pipe-c-dp-2: - shard-bmg: NOTRUN -> [DMESG-WARN][64] ([Intel XE#877]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-2/igt at kms_display_modes@extended-mode-basic at pipe-b-hdmi-a-3-pipe-c-dp-2.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#1340]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_dither@fb-8bpc-vs-panel-6bpc.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#701]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-436/igt at kms_feature_discovery@chamelium.html - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#701]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-8/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#702]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-6/igt at kms_feature_discovery@display-2x.html * igt at kms_flip@2x-flip-vs-dpms: - shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#2316]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_flip@2x-flip-vs-dpms.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][72] ([Intel XE#301] / [Intel XE#3321]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/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: NOTRUN -> [FAIL][73] ([Intel XE#301]) +2 other tests fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-modeset: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1421]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-8/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: - shard-dg2-set2: [PASS][75] -> [FAIL][76] ([Intel XE#301]) +2 other tests fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: NOTRUN -> [ABORT][77] ([Intel XE#2625]) +1 other test abort [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-432/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2293]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1401]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-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]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1397] / [Intel XE#1745]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/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][82] ([Intel XE#1397]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/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-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2380]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#455]) +8 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-433/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#651]) +7 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#651]) +25 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#656]) +24 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#658]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#653]) +21 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][90] ([Intel XE#616]) +2 other tests fail [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-463/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#309]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#2763]) +11 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/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-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/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][94] ([Intel XE#2763]) +8 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-434/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2763]) +11 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-4/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a.html * igt at kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#870]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-435/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2938]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-433/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1129]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-433/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@i2c: - shard-bmg: [PASS][99] -> [SKIP][100] ([Intel XE#2446]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_pm_rpm@i2c.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_pm_rpm@i2c.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#1489]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-433/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#2893]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-7/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#1122]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-434/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1406]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-1/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-433/igt at kms_psr@psr-dpms.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#3414]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-434/igt at kms_rotation_crc@primary-rotation-90.html - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-5/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1435]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-1/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#362]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-1/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2168]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-436/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#756]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-1/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#756]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-433/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1091] / [Intel XE#2849]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_ccs@suspend-resume: - shard-bmg: [PASS][114] -> [INCOMPLETE][115] ([Intel XE#3918]) +1 other test incomplete [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_ccs@suspend-resume.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-5/igt at xe_ccs@suspend-resume.html * igt at xe_drm_fdinfo@utilization-single-full-load: - shard-lnl: NOTRUN -> [DMESG-WARN][116] ([Intel XE#3876]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-8/igt at xe_drm_fdinfo@utilization-single-full-load.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#3889]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-436/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#3889]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-6/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug_online@preempt-breakpoint: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#2905]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-5/igt at xe_eudebug_online@preempt-breakpoint.html * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#688]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-2/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt at xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [PASS][121] -> [SKIP][122] ([Intel XE#1130]) +190 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at xe_exec_basic@many-bindexecqueue-rebind.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at xe_exec_basic@many-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1392]) +5 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-2/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-once-null: - shard-dg2-set2: [PASS][124] -> [SKIP][125] ([Intel XE#1392]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_exec_basic@multigpu-once-null.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-432/igt at xe_exec_basic@multigpu-once-null.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#288]) +20 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-433/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2905]) +7 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-436/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][128] -> [SKIP][129] ([Intel XE#1192]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at xe_live_ktest@xe_dma_buf.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-2/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][130] ([Intel XE#1999]) +2 other tests fail [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#4045]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-8/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#512]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-432/igt at xe_mmap@small-bar.html * igt at xe_module_load@reload: - shard-dg2-set2: [PASS][133] -> [FAIL][134] ([Intel XE#3546]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_module_load@reload.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-432/igt at xe_module_load@reload.html - shard-bmg: [PASS][135] -> [FAIL][136] ([Intel XE#3546]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at xe_module_load@reload.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at xe_module_load@reload.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#977]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-432/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2838] / [Intel XE#979]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-463/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][140] ([Intel XE#1173]) +2 other tests fail [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-463/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_peer2peer@write: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1061]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-5/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#2284] / [Intel XE#366]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-6/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@s3-multiple-execs: - shard-dg2-set2: NOTRUN -> [ABORT][143] ([Intel XE#1358] / [Intel XE#1794]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-432/igt at xe_pm@s3-multiple-execs.html * igt at xe_pm@s3-vm-bind-prefetch: - shard-dg2-set2: [PASS][144] -> [ABORT][145] ([Intel XE#1358] / [Intel XE#1794]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at xe_pm@s3-vm-bind-prefetch.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-432/igt at xe_pm@s3-vm-bind-prefetch.html * igt at xe_pm@s3-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#584]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-6/igt at xe_pm@s3-vm-bind-unbind-all.html * igt at xe_pm@s4-mocs: - shard-lnl: [PASS][147] -> [ABORT][148] ([Intel XE#1358] / [Intel XE#1794]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-4/igt at xe_pm@s4-mocs.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-2/igt at xe_pm@s4-mocs.html * igt at xe_pm@s4-multiple-execs: - shard-lnl: [PASS][149] -> [ABORT][150] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at xe_pm@s4-multiple-execs.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-2/igt at xe_pm@s4-multiple-execs.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#579]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-432/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#944]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-463/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#944]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-1/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_vm@munmap-style-unbind-many-end: - shard-dg2-set2: [PASS][154] -> [SKIP][155] ([Intel XE#1130]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_vm@munmap-style-unbind-many-end.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-436/igt at xe_vm@munmap-style-unbind-many-end.html #### Possible fixes #### * igt at core_hotunplug@hotrebind: - shard-bmg: [SKIP][156] ([Intel XE#1885]) -> [PASS][157] +2 other tests pass [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at core_hotunplug@hotrebind.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-5/igt at core_hotunplug@hotrebind.html * igt at core_setmaster@master-drop-set-root: - shard-bmg: [FAIL][158] ([Intel XE#3249]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at core_setmaster@master-drop-set-root.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-1/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@pan: - shard-bmg: [SKIP][160] ([Intel XE#2134]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at fbdev@pan.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at fbdev@pan.html * igt at kms_addfb_basic@unused-pitches: - shard-dg2-set2: [SKIP][162] ([Intel XE#2423] / [i915#2575]) -> [PASS][163] +18 other tests pass [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_addfb_basic@unused-pitches.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at kms_addfb_basic@unused-pitches.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [SKIP][164] ([Intel XE#2136]) -> [PASS][165] +20 other tests pass [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@linear-16bpp-rotate-180.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][166] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][167] +1 other test pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-2/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [SKIP][168] ([Intel XE#2136]) -> [PASS][169] +5 other tests pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-433/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [DMESG-WARN][170] ([Intel XE#1727]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-432/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [SKIP][172] ([Intel XE#2291]) -> [PASS][173] +2 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-5/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_draw_crc@fill-fb: - shard-dg2-set2: [SKIP][174] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_draw_crc@fill-fb.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-434/igt at kms_draw_crc@fill-fb.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][176] ([Intel XE#301]) -> [PASS][177] +4 other tests pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-435/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [SKIP][178] ([Intel XE#2316]) -> [PASS][179] +2 other tests pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip@2x-flip-vs-suspend-interruptible.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-5/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][180] ([Intel XE#886]) -> [PASS][181] +4 other tests pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_flip@blocking-wf_vblank.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-6/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@plain-flip-fb-recreate: - shard-bmg: [FAIL][182] ([Intel XE#2882]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_flip@plain-flip-fb-recreate.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-dg2-set2: [ABORT][184] ([Intel XE#2625]) -> [PASS][185] +1 other test pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_plane@plane-panning-bottom-right-suspend.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_cursor@viewport: - shard-dg2-set2: [FAIL][186] ([Intel XE#616]) -> [PASS][187] +1 other test pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_plane_cursor@viewport.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at kms_plane_cursor@viewport.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][188] ([Intel XE#2571]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-2/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-bmg: [SKIP][190] ([Intel XE#3007]) -> [PASS][191] +14 other tests pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][192] ([Intel XE#718]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-7/igt at kms_pm_dc@dc5-psr.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-4/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [SKIP][194] ([Intel XE#2446]) -> [PASS][195] +3 other tests pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@basic-pci-d3-state.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-8/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_properties@connector-properties-legacy: - shard-bmg: [SKIP][196] ([Intel XE#2423]) -> [PASS][197] +85 other tests pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_properties@connector-properties-legacy.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-5/igt at kms_properties@connector-properties-legacy.html * igt at kms_psr@psr2-primary-render: - shard-lnl: [FAIL][198] -> [PASS][199] +1 other test pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_psr@psr2-primary-render.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-lnl-3/igt at kms_psr@psr2-primary-render.html * igt at xe_exec_balancer@twice-virtual-basic: - shard-dg2-set2: [SKIP][200] ([Intel XE#1130]) -> [PASS][201] +31 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_balancer@twice-virtual-basic.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-463/igt at xe_exec_balancer@twice-virtual-basic.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-dg2-set2: [SKIP][202] ([Intel XE#1392]) -> [PASS][203] +4 other tests pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-bmg: [FAIL][204] ([Intel XE#1999]) -> [PASS][205] +2 other tests pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-4/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [ABORT][206] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][207] +1 other test pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-435/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_vm@bind-no-array-conflict: - shard-bmg: [SKIP][208] ([Intel XE#1130]) -> [PASS][209] +209 other tests pass [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at xe_vm@bind-no-array-conflict.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at xe_vm@bind-no-array-conflict.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][210] ([Intel XE#2423]) -> [SKIP][211] ([Intel XE#873]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_async_flips@invalid-async-flip.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-8/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: [SKIP][212] ([Intel XE#2370]) -> [SKIP][213] ([Intel XE#2423]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: [SKIP][214] ([Intel XE#2136]) -> [SKIP][215] ([Intel XE#316]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@linear-16bpp-rotate-270.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-432/igt at kms_big_fb@linear-16bpp-rotate-270.html - shard-bmg: [SKIP][216] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][217] ([Intel XE#2327]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@linear-16bpp-rotate-270.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-8/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: [SKIP][218] ([Intel XE#2136]) -> [SKIP][219] ([Intel XE#2327]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@linear-32bpp-rotate-90.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-4/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@linear-64bpp-rotate-270: - shard-bmg: [SKIP][220] ([Intel XE#2136]) -> [SKIP][221] ([Intel XE#2136] / [Intel XE#2231]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@linear-64bpp-rotate-270.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-5/igt at kms_big_fb@linear-64bpp-rotate-270.html - shard-dg2-set2: [SKIP][222] ([Intel XE#316]) -> [SKIP][223] ([Intel XE#2136] / [Intel XE#2351]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_big_fb@linear-64bpp-rotate-270.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-436/igt at kms_big_fb@linear-64bpp-rotate-270.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-bmg: [SKIP][224] ([Intel XE#2327]) -> [SKIP][225] ([Intel XE#2136]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_big_fb@linear-64bpp-rotate-90.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: [SKIP][226] ([Intel XE#1124]) -> [SKIP][227] ([Intel XE#2136]) +10 other tests skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][228] ([Intel XE#2136]) -> [SKIP][229] ([Intel XE#1124]) +11 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][230] ([Intel XE#2136]) -> [SKIP][231] ([Intel XE#607]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][232] ([Intel XE#610]) -> [SKIP][233] ([Intel XE#2136]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/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][234] ([Intel XE#2136]) -> [SKIP][235] ([Intel XE#1124]) +3 other tests skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-433/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][236] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][237] ([Intel XE#1124]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-addfb: - shard-bmg: [SKIP][238] ([Intel XE#2136]) -> [SKIP][239] ([Intel XE#2328]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-8/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][240] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][241] ([Intel XE#2423]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][242] ([Intel XE#2423]) -> [SKIP][243] ([Intel XE#2314] / [Intel XE#2894]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][244] ([Intel XE#2423]) -> [SKIP][245] ([Intel XE#367]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-8/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: [SKIP][246] ([Intel XE#367]) -> [SKIP][247] ([Intel XE#2423]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][248] ([Intel XE#2423] / [i915#2575]) -> [SKIP][249] ([Intel XE#367]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-435/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][250] ([Intel XE#2887]) -> [SKIP][251] ([Intel XE#2136]) +13 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][252] ([Intel XE#2136]) -> [SKIP][253] ([Intel XE#2887]) +14 other tests skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-bmg: [SKIP][254] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][255] ([Intel XE#2136]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs: - shard-dg2-set2: [SKIP][256] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][257] ([Intel XE#455] / [Intel XE#787]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-436/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][258] ([Intel XE#2136]) -> [SKIP][259] ([Intel XE#3432]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: [SKIP][260] ([Intel XE#3432]) -> [SKIP][261] ([Intel XE#2136]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][262] ([Intel XE#2136]) -> [SKIP][263] ([Intel XE#2652] / [Intel XE#787]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/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: - shard-bmg: [SKIP][264] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][265] ([Intel XE#2887]) +3 other tests skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-2/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-ccs: - shard-dg2-set2: [SKIP][266] ([Intel XE#2136]) -> [SKIP][267] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-434/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][268] ([Intel XE#2136]) -> [SKIP][269] ([Intel XE#2724]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cdclk@mode-transition.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at kms_cdclk@mode-transition.html * igt at kms_chamelium_color@ctm-0-25: - shard-bmg: [SKIP][270] ([Intel XE#2325]) -> [SKIP][271] ([Intel XE#2423]) +2 other tests skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_chamelium_color@ctm-0-25.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_color@ctm-negative: - shard-bmg: [SKIP][272] ([Intel XE#2423]) -> [SKIP][273] ([Intel XE#2325]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_color@ctm-negative.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-1/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][274] ([Intel XE#2423]) -> [SKIP][275] ([Intel XE#2252]) +12 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: [SKIP][276] ([Intel XE#3007]) -> [SKIP][277] ([Intel XE#2252]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_chamelium_hpd@dp-hpd-storm.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-1/igt at kms_chamelium_hpd@dp-hpd-storm.html - shard-dg2-set2: [SKIP][278] ([Intel XE#2423] / [i915#2575]) -> [SKIP][279] ([Intel XE#373]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_chamelium_hpd@dp-hpd-storm.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_chamelium_hpd@hdmi-hpd-fast: - shard-bmg: [SKIP][280] ([Intel XE#2252]) -> [SKIP][281] ([Intel XE#2423]) +9 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-fast.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_chamelium_hpd@hdmi-hpd-fast.html * igt at kms_content_protection@atomic: - shard-bmg: [SKIP][282] ([Intel XE#2341]) -> [FAIL][283] ([Intel XE#1178]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_content_protection@atomic.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-1/igt at kms_content_protection@atomic.html * igt at kms_content_protection@content-type-change: - shard-bmg: [SKIP][284] ([Intel XE#3007]) -> [SKIP][285] ([Intel XE#2341]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_content_protection@content-type-change.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-2/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][286] ([Intel XE#2423]) -> [SKIP][287] ([Intel XE#2390]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@dp-mst-type-0.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-bmg: [SKIP][288] ([Intel XE#2423]) -> [FAIL][289] ([Intel XE#1178]) +1 other test fail [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@legacy.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-1/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-1: - shard-bmg: [SKIP][290] ([Intel XE#2341]) -> [SKIP][291] ([Intel XE#2423]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_content_protection@lic-type-1.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@uevent: - shard-bmg: [SKIP][292] ([Intel XE#2423]) -> [FAIL][293] ([Intel XE#1188]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@uevent.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: [SKIP][294] ([Intel XE#2320]) -> [SKIP][295] ([Intel XE#2423]) +4 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_cursor_crc@cursor-offscreen-32x32.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: [SKIP][296] ([Intel XE#2423]) -> [SKIP][297] ([Intel XE#2320]) +4 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-onscreen-32x32.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-4/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-bmg: [SKIP][298] ([Intel XE#2321]) -> [SKIP][299] ([Intel XE#2423]) +2 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_crc@cursor-onscreen-512x170.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-bmg: [SKIP][300] ([Intel XE#3007]) -> [SKIP][301] ([Intel XE#2320]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_cursor_crc@cursor-random-32x10.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-5/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_crc@cursor-size-hints: - shard-bmg: [SKIP][302] ([Intel XE#3007]) -> [SKIP][303] ([Intel XE#2423]) +7 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_cursor_crc@cursor-size-hints.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_cursor_crc@cursor-size-hints.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][304] ([Intel XE#2423]) -> [SKIP][305] ([Intel XE#2321]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x512.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-8/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-bmg: [SKIP][306] ([Intel XE#2291]) -> [SKIP][307] ([Intel XE#2423]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][308] ([Intel XE#877]) -> [SKIP][309] ([Intel XE#2423]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-bmg: [SKIP][310] ([Intel XE#2423]) -> [SKIP][311] ([Intel XE#2286]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][312] ([Intel XE#2425]) -> [DMESG-WARN][313] ([Intel XE#877]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-2/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][314] ([Intel XE#2423]) -> [SKIP][315] ([Intel XE#2323]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_display_modes@mst-extended-mode-negative.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-8/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dsc@dsc-basic: - shard-bmg: [SKIP][316] ([Intel XE#2136]) -> [SKIP][317] ([Intel XE#2244]) +2 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_dsc@dsc-basic.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-8/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: [SKIP][318] ([Intel XE#2244]) -> [SKIP][319] ([Intel XE#2136]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_dsc@dsc-with-output-formats.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][320] ([Intel XE#2136]) -> [SKIP][321] ([Intel XE#455]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][322] ([Intel XE#2136]) -> [SKIP][323] ([Intel XE#776]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_fbcon_fbt@psr-suspend.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-4x: - shard-bmg: [SKIP][324] ([Intel XE#1138]) -> [SKIP][325] ([Intel XE#2423]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_feature_discovery@display-4x.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][326] ([Intel XE#2423]) -> [SKIP][327] ([Intel XE#2375]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_feature_discovery@dp-mst.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr2: - shard-bmg: [SKIP][328] ([Intel XE#2374]) -> [SKIP][329] ([Intel XE#2423]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_feature_discovery@psr2.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][330] -> [SKIP][331] ([Intel XE#2423]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-bmg: [SKIP][332] ([Intel XE#2316]) -> [SKIP][333] ([Intel XE#2423]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-interruptible.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@2x-plain-flip: - shard-bmg: [SKIP][334] ([Intel XE#2423]) -> [SKIP][335] ([Intel XE#2316]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip@2x-plain-flip.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_flip@2x-plain-flip.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: [SKIP][336] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][337] ([Intel XE#2136]) +4 other tests skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][338] ([Intel XE#2136]) -> [SKIP][339] ([Intel XE#2380]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][340] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][341] ([Intel XE#2293] / [Intel XE#2380]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/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-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][342] ([Intel XE#2136]) -> [SKIP][343] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][344] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][345] ([Intel XE#651]) +2 other tests skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][346] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][347] ([Intel XE#2311]) +4 other tests skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html - shard-dg2-set2: [SKIP][348] ([Intel XE#2136]) -> [SKIP][349] ([Intel XE#651]) +3 other tests skip [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-432/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][350] ([Intel XE#2311]) -> [SKIP][351] ([Intel XE#2136]) +27 other tests skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][352] ([Intel XE#2312]) -> [SKIP][353] ([Intel XE#2311]) +5 other tests skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt: - shard-bmg: [SKIP][354] ([Intel XE#2136]) -> [SKIP][355] ([Intel XE#2311]) +29 other tests skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [FAIL][356] ([Intel XE#2333]) -> [SKIP][357] ([Intel XE#2136]) +13 other tests skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][358] ([Intel XE#2136]) -> [FAIL][359] ([Intel XE#2333]) +6 other tests fail [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][360] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][361] ([Intel XE#2333]) +3 other tests fail [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][362] ([Intel XE#2312]) -> [FAIL][363] ([Intel XE#2333]) +1 other test fail [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][364] ([Intel XE#2136]) -> [SKIP][365] ([Intel XE#2312]) +7 other tests skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][366] ([Intel XE#2312]) -> [SKIP][367] ([Intel XE#2136]) +3 other tests skip [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][368] ([Intel XE#2333]) -> [SKIP][369] ([Intel XE#2312]) +2 other tests skip [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][370] ([Intel XE#2311]) -> [SKIP][371] ([Intel XE#2312]) +7 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: [SKIP][372] ([Intel XE#2352]) -> [SKIP][373] ([Intel XE#2136]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][374] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][375] ([Intel XE#2313]) +3 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: [SKIP][376] ([Intel XE#2136]) -> [SKIP][377] ([Intel XE#653]) +3 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][378] ([Intel XE#2313]) -> [SKIP][379] ([Intel XE#2312]) +4 other tests skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][380] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][381] ([Intel XE#2352]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-dg2-set2: [SKIP][382] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][383] ([Intel XE#658]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][384] ([Intel XE#2350]) -> [SKIP][385] ([Intel XE#2136]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][386] ([Intel XE#2136]) -> [SKIP][387] ([Intel XE#2313]) +29 other tests skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][388] ([Intel XE#2312]) -> [SKIP][389] ([Intel XE#2313]) +7 other tests skip [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][390] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][391] ([Intel XE#653]) +2 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][392] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][393] ([Intel XE#2136]) +7 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-bmg: [SKIP][394] ([Intel XE#2313]) -> [SKIP][395] ([Intel XE#2136]) +30 other tests skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][396] ([Intel XE#2423]) -> [SKIP][397] ([Intel XE#2340]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_getfb@getfb2-accept-ccs.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][398] ([Intel XE#2423] / [i915#2575]) -> [SKIP][399] ([Intel XE#455]) +3 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_hdr@invalid-hdr.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-435/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: [SKIP][400] ([Intel XE#2927]) -> [SKIP][401] ([Intel XE#2136]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_joiner@invalid-modeset-ultra-joiner.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][402] ([Intel XE#2423]) -> [SKIP][403] ([Intel XE#2501]) [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@atomic-fastset: - shard-bmg: [SKIP][404] ([Intel XE#2486]) -> [SKIP][405] ([Intel XE#2423]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_panel_fitting@atomic-fastset.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_panel_fitting@atomic-fastset.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][406] ([Intel XE#2423]) -> [SKIP][407] ([Intel XE#2393]) [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_lowres@tiling-y.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-5/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_lowres@tiling-yf: - shard-bmg: [SKIP][408] ([Intel XE#2393]) -> [SKIP][409] ([Intel XE#2423]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_plane_lowres@tiling-yf.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-y: - shard-bmg: [SKIP][410] ([Intel XE#2423]) -> [SKIP][411] ([Intel XE#2493]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_multiple@tiling-y.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][412] ([Intel XE#2423]) -> [SKIP][413] ([Intel XE#2763]) +2 other tests skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-5/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_backlight@basic-brightness: - shard-bmg: [SKIP][414] ([Intel XE#870]) -> [SKIP][415] ([Intel XE#2136]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_pm_backlight@basic-brightness.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][416] ([Intel XE#2136]) -> [SKIP][417] ([Intel XE#870]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_backlight@fade-with-dpms.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-8/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][418] ([Intel XE#3309]) -> [SKIP][419] ([Intel XE#2136]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_pm_dc@dc5-retention-flops.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: [SKIP][420] ([Intel XE#2446]) -> [SKIP][421] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-1/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][422] ([Intel XE#2136]) -> [SKIP][423] ([Intel XE#1489]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-436/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html - shard-bmg: [SKIP][424] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][425] ([Intel XE#1489]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][426] ([Intel XE#1489]) -> [SKIP][427] ([Intel XE#2136]) +7 other tests skip [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-bmg: [SKIP][428] ([Intel XE#2136]) -> [SKIP][429] ([Intel XE#1489]) +8 other tests skip [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-8/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr@fbc-psr-suspend: - shard-bmg: [SKIP][430] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][431] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr@fbc-psr-suspend.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_psr@fbc-psr-suspend.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-bmg: [SKIP][432] ([Intel XE#2136]) -> [SKIP][433] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr@fbc-psr2-cursor-blt.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-8/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: [SKIP][434] ([Intel XE#2136]) -> [SKIP][435] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-436/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@pr-cursor-render: - shard-bmg: [SKIP][436] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][437] ([Intel XE#2136] / [Intel XE#2231]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_psr@pr-cursor-render.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-5/igt at kms_psr@pr-cursor-render.html - shard-dg2-set2: [SKIP][438] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][439] ([Intel XE#2136]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_psr@pr-cursor-render.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-436/igt at kms_psr@pr-cursor-render.html * igt at kms_psr@psr-basic: - shard-bmg: [SKIP][440] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][441] ([Intel XE#2136]) +12 other tests skip [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_psr@psr-basic.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_psr@psr-basic.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][442] ([Intel XE#2136]) -> [SKIP][443] ([Intel XE#2414]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][444] ([Intel XE#2330]) -> [SKIP][445] ([Intel XE#2423]) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][446] ([Intel XE#2423] / [i915#2575]) -> [SKIP][447] ([Intel XE#3414]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-436/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-bmg: [SKIP][448] ([Intel XE#3007]) -> [SKIP][449] ([Intel XE#3414] / [Intel XE#3904]) [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: [SKIP][450] ([Intel XE#2423]) -> [SKIP][451] ([Intel XE#2330]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: [SKIP][452] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][453] ([Intel XE#2423]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][454] ([Intel XE#2423]) -> [SKIP][455] ([Intel XE#2413]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-center.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-none: - shard-bmg: [SKIP][456] ([Intel XE#2413]) -> [SKIP][457] ([Intel XE#2423]) +1 other test skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_scaling_modes@scaling-mode-none.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][458] ([Intel XE#362]) -> [SKIP][459] ([Intel XE#1500]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-436/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_tv_load_detect@load-detect: - shard-bmg: [SKIP][460] ([Intel XE#2450]) -> [SKIP][461] ([Intel XE#2423]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_tv_load_detect@load-detect.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@cmrr: - shard-bmg: [SKIP][462] ([Intel XE#2423]) -> [SKIP][463] ([Intel XE#2168]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_vrr@cmrr.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at kms_vrr@cmrr.html * igt at kms_vrr@flip-basic-fastset: - shard-bmg: [SKIP][464] ([Intel XE#2423]) -> [SKIP][465] ([Intel XE#1499]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_vrr@flip-basic-fastset.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-1/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@flip-suspend: - shard-bmg: [SKIP][466] ([Intel XE#1499]) -> [SKIP][467] ([Intel XE#2423]) [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_vrr@flip-suspend.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][468] ([Intel XE#3007]) -> [SKIP][469] ([Intel XE#1499]) [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_vrr@seamless-rr-switch-drrs.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-2/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: [SKIP][470] ([Intel XE#756]) -> [SKIP][471] ([Intel XE#2423]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_writeback@writeback-check-output-xrgb2101010.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-bmg: [SKIP][472] ([Intel XE#2423]) -> [SKIP][473] ([Intel XE#756]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_writeback@writeback-fb-id.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at kms_writeback@writeback-fb-id.html * igt at xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][474] ([Intel XE#1130]) -> [SKIP][475] ([Intel XE#1126]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0x369.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-463/igt at xe_copy_basic@mem-set-linear-0x369.html * igt at xe_eudebug@basic-read-event: - shard-bmg: [SKIP][476] ([Intel XE#1130]) -> [SKIP][477] ([Intel XE#2905]) +15 other tests skip [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_eudebug@basic-read-event.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-8/igt at xe_eudebug@basic-read-event.html * igt at xe_eudebug@sysfs-toggle: - shard-dg2-set2: [SKIP][478] ([Intel XE#1130]) -> [SKIP][479] ([Intel XE#2905]) +2 other tests skip [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_eudebug@sysfs-toggle.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-432/igt at xe_eudebug@sysfs-toggle.html * igt at xe_eudebug_online@single-step: - shard-bmg: [SKIP][480] ([Intel XE#2905]) -> [SKIP][481] ([Intel XE#1130]) +10 other tests skip [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_eudebug_online@single-step.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at xe_eudebug_online@single-step.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap: - shard-bmg: [SKIP][482] ([Intel XE#2322]) -> [SKIP][483] ([Intel XE#1130]) +9 other tests skip [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-5/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][484] ([Intel XE#1130]) -> [SKIP][485] ([Intel XE#2322]) +12 other tests skip [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-1/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@many-execqueues-rebind: - shard-dg2-set2: [SKIP][486] ([Intel XE#1130]) -> [SKIP][487] ([Intel XE#288]) +4 other tests skip [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_fault_mode@many-execqueues-rebind.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-434/igt at xe_exec_fault_mode@many-execqueues-rebind.html * igt at xe_oa@oa-regs-whitelisted: - shard-dg2-set2: [SKIP][488] ([Intel XE#1130]) -> [SKIP][489] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_oa@oa-regs-whitelisted.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-434/igt at xe_oa@oa-regs-whitelisted.html * igt at xe_oa@oa-tlb-invalidate: - shard-bmg: [SKIP][490] ([Intel XE#2248]) -> [SKIP][491] ([Intel XE#1130]) [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at xe_oa@oa-tlb-invalidate.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][492] ([Intel XE#1130]) -> [SKIP][493] ([Intel XE#2248]) [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_oa@unprivileged-single-ctx-counters.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-6/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][494] ([Intel XE#1420]) -> [SKIP][495] ([Intel XE#1130]) [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_pat@pat-index-xehpc.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@read: - shard-dg2-set2: [SKIP][496] ([Intel XE#1061]) -> [FAIL][497] ([Intel XE#1173]) [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_peer2peer@read.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-463/igt at xe_peer2peer@read.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: [SKIP][498] ([Intel XE#1130]) -> [SKIP][499] ([Intel XE#2284]) +1 other test skip [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_pm@d3cold-mmap-system.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-3/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@d3cold-mmap-vram: - shard-bmg: [SKIP][500] ([Intel XE#2284]) -> [SKIP][501] ([Intel XE#1130]) [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_pm@d3cold-mmap-vram.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@s2idle-d3hot-basic-exec: - shard-dg2-set2: [SKIP][502] ([Intel XE#1130]) -> [ABORT][503] ([Intel XE#1358]) [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_pm@s2idle-d3hot-basic-exec.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-432/igt at xe_pm@s2idle-d3hot-basic-exec.html * igt at xe_query@multigpu-query-cs-cycles: - shard-bmg: [SKIP][504] ([Intel XE#944]) -> [SKIP][505] ([Intel XE#1130]) +1 other test skip [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_query@multigpu-query-cs-cycles.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-7/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-invalid-extension: - shard-bmg: [SKIP][506] ([Intel XE#1130]) -> [SKIP][507] ([Intel XE#944]) +3 other tests skip [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_query@multigpu-query-invalid-extension.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-bmg-8/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][508] ([Intel XE#1130]) -> [SKIP][509] ([Intel XE#944]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-guc.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/shard-dg2-466/igt at xe_query@multigpu-query-uc-fw-version-guc.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [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#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [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#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [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#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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#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#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#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [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#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [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#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#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#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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_8199 -> IGTPW_12461 IGTPW_12461: 1a3de53b24a62a32ea7c968566bebcef81220c24 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From francois.dugast at intel.com Mon Jan 20 15:37:47 2025 From: francois.dugast at intel.com (Francois Dugast) Date: Mon, 20 Jan 2025 16:37:47 +0100 Subject: [PATCH i-g-t v3 2/2] tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv In-Reply-To: <20250120122835.10511-3-satyanarayana.k.v.p@intel.com> References: <20250120122835.10511-1-satyanarayana.k.v.p@intel.com> <20250120122835.10511-3-satyanarayana.k.v.p@intel.com> Message-ID: On Mon, Jan 20, 2025 at 05:58:35PM +0530, Satyanarayana K V P wrote: > Use the kernel fault injection infrastructure to test error handling > of xe at enabling of VFs stage when executing xe_guc_ct_send_recv() > so that more code paths are tested, such as error handling and unwinding. > > Error can be injected using: > igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv > > v2: Updated guc_fail_* to enable_vfs_* > Added igt_skip_on(!igt_sriov_is_pf(fd)) to skip test when run without > enabling sriov. > > v3: Fixed documentation build error > ERROR: Missing documentation for igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv > ERROR: Unneeded documentation for igt at xe_fault_injection@guc-fail-xe_guc_ct_send_recv > > Cc: Matthew Brost > Cc: Micha? Wajdeczko > Cc: Francois Dugast > Signed-off-by: Satyanarayana K V P Reviewed-by: Francois Dugast > --- > tests/intel/xe_fault_injection.c | 63 ++++++++++++++++++++++++++++++++ > 1 file changed, 63 insertions(+) > > diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c > index 3a0e2aa29..81ecc1131 100644 > --- a/tests/intel/xe_fault_injection.c > +++ b/tests/intel/xe_fault_injection.c > @@ -19,12 +19,14 @@ > #include "igt_sysfs.h" > #include "lib/igt_syncobj.h" > #include "lib/intel_pat.h" > +#include "lib/igt_sriov_device.h" > #include "xe/xe_ioctl.h" > #include "xe/xe_query.h" > > #define INJECT_ERRNO -ENOMEM > #define BO_ADDR 0x1a0000 > #define BO_SIZE (1024*1024) > +#define NUM_VFS 1 > > enum injection_list_action { > INJECTION_LIST_ADD, > @@ -281,6 +283,55 @@ vm_bind_fail(int fd, const char function_name[]) > igt_assert_eq(simple_vm_bind(fd, vm), 0); > } > > +static int sriov_enable_vfs(int fd, int num_vfs) > +{ > + int sysfs; > + bool ret; > + > + sysfs = igt_sysfs_open(fd); > + igt_assert_fd(sysfs); > + > + ret = __igt_sysfs_set_u32(sysfs, "device/sriov_numvfs", num_vfs); > + close(sysfs); > + > + return ret; > +} > + > +/** > + * SUBTEST: enable-vfs-fail-%s > + * Description: inject an error in function %arg[1] used when xe interacts with guc to make it fail > + * Functionality: fault > + * > + * arg[1]: > + * @xe_guc_ct_send_recv: xe_guc_ct_send_recv > + */ > + > +static void > +enable_vfs_fail(int fd, int num_vfs, const char function_name[]) > +{ > + bool autoprobe_en = 0; > + > + ignore_faults_in_dmesg(function_name); > + injection_list_do(INJECTION_LIST_ADD, function_name); > + set_retval(function_name, INJECT_ERRNO); > + > + autoprobe_en = igt_sriov_is_driver_autoprobe_enabled(fd); > + > + if (autoprobe_en) > + igt_sriov_disable_driver_autoprobe(fd); > + > + /* igt_sriov_enable_vfs can't be used here as it is causing abort on any error. > + * Since error in this test is expected, we have written our own static function here. > + */ > + sriov_enable_vfs(fd, num_vfs); > + > + igt_assert_eq(-errno, INJECT_ERRNO); > + injection_list_do(INJECTION_LIST_REMOVE, function_name); > + > + if (autoprobe_en) > + igt_sriov_enable_driver_autoprobe(fd); > +} > + > igt_main > { > int fd; > @@ -319,6 +370,10 @@ igt_main > { "xe_vma_ops_alloc" }, > { } > }; > + const struct section enable_vfs_fail_functions[] = { > + { "xe_guc_ct_send_recv" }, > + { } > + }; > > igt_fixture { > igt_require(fail_function_injection_enabled()); > @@ -335,6 +390,14 @@ igt_main > igt_subtest_f("vm-bind-fail-%s", s->name) > vm_bind_fail(fd, s->name); > > + for (const struct section *s = enable_vfs_fail_functions; s->name; s++) > + igt_subtest_f("enable-vfs-fail-%s", s->name) { > + /* Skip the test if not running with SRIOV > + */ > + igt_skip_on(!igt_sriov_is_pf(fd)); > + enable_vfs_fail(fd, NUM_VFS, s->name); > + } > + > igt_fixture { > xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_UNBIND); > } > -- > 2.35.3 > From patchwork at emeril.freedesktop.org Mon Jan 20 15:41:56 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 15:41:56 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/intel/xe=5Fwedged=3A_?= =?utf-8?q?Read_wedged=5Fmode_debugfs?= In-Reply-To: <20250120130927.65919-1-pravalika.gurram@intel.com> References: <20250120130927.65919-1-pravalika.gurram@intel.com> Message-ID: <173738771614.2215080.3460264826966651183@b555e5b46a47> == Series Details == Series: tests/intel/xe_wedged: Read wedged_mode debugfs URL : https://patchwork.freedesktop.org/series/143729/ State : success == Summary == CI Bug Log - changes from XEIGT_8199_BAT -> XEIGTPW_12466_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12466_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_8199/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html * igt at xe_vm@shared-pde-page: - bat-adlp-vf: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#3970] / [Intel XE#4078]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/bat-adlp-vf/igt at xe_vm@shared-pde-page.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/bat-adlp-vf/igt at xe_vm@shared-pde-page.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_8199/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8199 -> IGTPW_12466 IGTPW_12466: 74352c1724e435b3e56862d0873c3dfb8de15aa8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 16:00:52 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 16:00:52 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_series_starting_with_=5B?= =?utf-8?q?i-g-t=2Cv3=2C1/1=5D_tests/intel/xe=5Feudebug=3A_refactor_exec-que?= =?utf-8?q?ue-placements_test_=28rev2=29?= In-Reply-To: <20250117082055.154635-1-jan.sokolowski@intel.com> References: <20250117082055.154635-1-jan.sokolowski@intel.com> Message-ID: <173738885298.2215080.13465852408783976198@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test (rev2) URL : https://patchwork.freedesktop.org/series/143661/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15982_full -> IGTPW_12458_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12458_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12458_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_12458/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12458_full: ### IGT changes ### #### Possible regressions #### * igt at debugfs_test@read_all_entries: - shard-mtlp: [PASS][1] -> [ABORT][2] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-5/igt at debugfs_test@read_all_entries.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-6/igt at debugfs_test@read_all_entries.html * igt at gem_exec_balancer@individual: - shard-dg1: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-12/igt at gem_exec_balancer@individual.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt at gem_exec_balancer@individual.html - shard-mtlp: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-2/igt at gem_exec_balancer@individual.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-2/igt at gem_exec_balancer@individual.html * igt at gem_exec_schedule@preemptive-hang: - shard-dg1: [PASS][7] -> [INCOMPLETE][8] +3 other tests incomplete [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-12/igt at gem_exec_schedule@preemptive-hang.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at gem_exec_schedule@preemptive-hang.html * igt at gem_ppgtt@blt-vs-render-ctx0: - shard-tglu: [PASS][9] -> [INCOMPLETE][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-tglu-7/igt at gem_ppgtt@blt-vs-render-ctx0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-4/igt at gem_ppgtt@blt-vs-render-ctx0.html * igt at i915_pm_rpm@debugfs-read: - shard-rkl: NOTRUN -> [SKIP][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt at i915_pm_rpm@debugfs-read.html * igt at i915_pm_rps@reset: - shard-snb: [PASS][12] -> [DMESG-FAIL][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-snb1/igt at i915_pm_rps@reset.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb1/igt at i915_pm_rps@reset.html * igt at kms_flip@blocking-wf_vblank at b-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][14] +1 other test fail [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at kms_flip@blocking-wf_vblank at b-hdmi-a4.html * igt at kms_pm_rpm@fences-dpms: - shard-rkl: [PASS][15] -> [SKIP][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-4/igt at kms_pm_rpm@fences-dpms.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt at kms_pm_rpm@fences-dpms.html Known issues ------------ Here are the changes found in IGTPW_12458_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@crc32: - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#6230]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at api_intel_bb@crc32.html * igt at api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8411]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt at api_intel_bb@object-reloc-purge-cache.html * igt at debugfs_test@basic-hwmon: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#9318]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at debugfs_test@basic-hwmon.html * igt at device_reset@unbind-cold-reset-rebind: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#11078]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-idle at vcs1: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8414]) +18 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt at drm_fdinfo@busy-idle at vcs1.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8414]) +26 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#7697]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt at gem_basic@multigpu-create-close.html - shard-dg2: NOTRUN -> [SKIP][24] ([i915#7697]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#9323]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt at gem_ccs@ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#9323]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at gem_ccs@suspend-resume.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][27] ([i915#12353]) +1 other test incomplete [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk9/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#8555]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at gem_ctx_persistence@heartbeat-stop.html * igt at gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][29] ([i915#1099]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb7/igt at gem_ctx_persistence@processes.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#280]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_ctx_sseu@mmap-args: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at gem_ctx_sseu@mmap-args.html * igt at gem_eio@hibernate: - shard-tglu: [PASS][32] -> [ABORT][33] ([i915#10030] / [i915#7975] / [i915#8213]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-tglu-3/igt at gem_eio@hibernate.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-10/igt at gem_eio@hibernate.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][34] ([i915#13197] / [i915#13390]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk6/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@wait-wedge-10ms: - shard-mtlp: [PASS][35] -> [ABORT][36] ([i915#13193]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-8/igt at gem_eio@wait-wedge-10ms.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-4/igt at gem_eio@wait-wedge-10ms.html * igt at gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4771]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4771]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-2/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4036]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#8555]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][41] ([i915#4525]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at gem_exec_balancer@parallel.html * igt at gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#4525]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_capture@capture-invisible: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#6334]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-7/igt at gem_exec_capture@capture-invisible.html - shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#6334]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at gem_exec_capture@capture-invisible.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][45] ([i915#11965]) +2 other tests fail [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt at gem_exec_fence@submit67.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt at gem_exec_flush@basic-wb-rw-default.html * igt at gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +19 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at gem_exec_reloc@basic-active.html * igt at gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +9 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt at gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt at gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-7/igt at gem_exec_reloc@basic-cpu-noreloc.html * igt at gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3281]) +10 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at gem_exec_reloc@basic-wc-gtt-noreloc.html * igt at gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4812]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt at gem_exec_schedule@semaphore-power.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_12458/shard-rkl-7/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at gem_fence_thrash@bo-write-verify-threaded-none.html * igt at gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4860]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt at gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt at gem_lmem_swapping@heavy-multi: - shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at gem_lmem_swapping@heavy-multi.html * igt at gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-6/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk5/igt at gem_lmem_swapping@heavy-verify-multi-ccs.html * igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4565]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0.html * igt at gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt at gem_lmem_swapping@parallel-multi.html * igt at gem_lmem_swapping@parallel-random-engines: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-8/igt at gem_lmem_swapping@parallel-random-engines.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#12193]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][65] ([i915#5493]) +1 other test timeout [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-7/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4083]) +7 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at gem_mmap@bad-object.html * igt at gem_mmap_gtt@cpuset-big-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4077]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-4/igt at gem_mmap_gtt@cpuset-big-copy-odd.html * igt at gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4077]) +19 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-7/igt at gem_mmap_gtt@fault-concurrent-x.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][69] -> [ABORT][70] ([i915#10729]) +1 other test abort [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-7/igt at gem_mmap_offset@clear-via-pagefault.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-5/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4083]) +7 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-2/igt at gem_mmap_wc@copy.html * igt at gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4083]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-7/igt at gem_mmap_wc@write.html * igt at gem_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) +8 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at gem_partial_pwrite_pread@writes-after-reads.html * igt at gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3282]) +9 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt at gem_partial_pwrite_pread@writes-after-reads-display.html * igt at gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb1/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3282]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt at gem_pwrite@basic-self.html * igt at gem_pxp@create-valid-protected-context: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4270]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at gem_pxp@create-valid-protected-context.html * igt at gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4270]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-2/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][79] ([i915#12917] / [i915#12964]) +1 other test timeout [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-5/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html * igt at gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3282]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-3/igt at gem_readwrite@new-obj.html * igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#5190] / [i915#8428]) +9 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt at gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8428]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-5/igt at gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#8411]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#4079]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt at gem_set_tiling_vs_blt@untiled-to-tiled.html * igt at gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4077]) +13 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt at gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4079]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at gem_tiled_pread_basic.html * igt at gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][87] ([i915#13263] / [i915#13449]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb4/igt at gem_tiled_swapping@non-threaded.html - shard-glk: NOTRUN -> [ABORT][88] ([i915#13263] / [i915#13449]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk3/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at gem_userptr_blits@coherency-unsync.html - shard-rkl: NOTRUN -> [SKIP][90] ([i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt at gem_userptr_blits@coherency-unsync.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-4/igt at gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#3323]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4880]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt at gem_userptr_blits@map-fixed-invalidate.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_12458/shard-dg1-12/igt at gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt at gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3281] / [i915#3297]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-3/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4958]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#3297]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-4/igt at gem_userptr_blits@unsync-unmap-cycles.html * igt at gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-5/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@bb-large: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at gen9_exec_parse@bb-large.html * igt at gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#2527]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt at gen9_exec_parse@bb-oversize.html - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#2856]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-3/igt at gen9_exec_parse@bb-oversize.html * igt at gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#2527]) +6 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#2856]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-3/igt at gen9_exec_parse@shadow-peek.html * igt at i915_module_load@load: - shard-dg1: ([PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123]) -> ([PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [DMESG-WARN][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142]) ([i915#4423]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-18/igt at i915_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-12/igt at i915_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-14/igt at i915_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-14/igt at i915_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-13/igt at i915_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-13/igt at i915_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-12/igt at i915_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-17/igt at i915_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-18/igt at i915_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-14/igt at i915_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-18/igt at i915_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-17/igt at i915_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-12/igt at i915_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-13/igt at i915_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-14/igt at i915_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-18/igt at i915_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-17/igt at i915_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-17/igt at i915_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-13/igt at i915_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt at i915_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at i915_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at i915_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at i915_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at i915_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at i915_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt at i915_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at i915_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at i915_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt at i915_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at i915_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at i915_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at i915_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at i915_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt at i915_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at i915_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at i915_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt at i915_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt at i915_module_load@load.html * igt at i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#8399]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-3/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#6590]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#11681] / [i915#6621]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#7984]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt at i915_power@sanity.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#6188]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_selftest@mock at memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][148] ([i915#9311]) +1 other test dmesg-warn [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s2idle-without-i915: - shard-rkl: NOTRUN -> [DMESG-WARN][149] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-5/igt at i915_suspend@basic-s2idle-without-i915.html * igt at i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][150] ([i915#7443]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-5/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][151] ([i915#4817]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk7/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#7707]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at intel_hwmon@hwmon-read.html * igt at intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#7707]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt at intel_hwmon@hwmon-write.html - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#7707]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-6/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#4212]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#4215]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-rkl: NOTRUN -> [FAIL][157] ([i915#10991] / [i915#13320] / [i915#13335]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt at kms_async_flips@alternate-sync-async-flip-atomic.html * igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][158] ([i915#10991] / [i915#13335]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-a-hdmi-a-1.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-rkl: NOTRUN -> [DMESG-FAIL][159] ([i915#12964]) +1 other test dmesg-fail [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt at kms_async_flips@async-flip-suspend-resume.html - shard-glk: NOTRUN -> [INCOMPLETE][160] ([i915#12761]) +1 other test incomplete [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk4/igt at kms_async_flips@async-flip-suspend-resume.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][161] ([i915#8709]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/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-atomic at pipe-c-hdmi-a-1-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#8709]) +11 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-c-hdmi-a-1-4-rc-ccs-cc.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#12967] / [i915#6228]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#12967]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-2/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg2: NOTRUN -> [SKIP][166] ([i915#9531]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][167] ([i915#9531]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][168] ([i915#9531]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/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][169] ([i915#1769]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk4/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#4423] / [i915#4538] / [i915#5286]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at kms_big_fb@4-tiled-16bpp-rotate-0.html * igt at kms_big_fb@4-tiled-64bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#5286]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at kms_big_fb@4-tiled-64bpp-rotate-0.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#4538] / [i915#5286]) +8 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#5286]) +5 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#5286]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#5286]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-6/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#3638]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#3638]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt at kms_big_fb@y-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#5190]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#4538]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#4538] / [i915#5190]) +19 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][181] +39 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-6/igt at kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#6095]) +147 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-4.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][183] +401 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk1/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc at pipe-c-hdmi-a-2.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#12313]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#6095]) +9 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-2/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs at pipe-c-edp-1.html * igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs at pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#10307] / [i915#6095]) +127 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt at kms_ccs@ccs-on-another-bo-yf-tiled-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#6095]) +24 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-4/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#12313]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-4/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#6095]) +68 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-2.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#12805]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: [PASS][191] -> [INCOMPLETE][192] ([i915#12796]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk8/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk2/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#6095]) +18 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/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-primary-suspend-yf-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][194] ([i915#12796]) +1 other test incomplete [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk6/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#12313]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#12313]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#12313]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#6095]) +24 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#12313]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#3742]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_audio@dp-audio-edid: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#11151] / [i915#7828]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-8/igt at kms_chamelium_audio@dp-audio-edid.html * igt at kms_chamelium_audio@hdmi-audio: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#11151] / [i915#7828]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at kms_chamelium_audio@hdmi-audio.html * igt at kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][204] +45 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-limited-range: - shard-mtlp: NOTRUN -> [SKIP][205] +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-1/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][206] +15 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#11151] / [i915#7828]) +11 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#11151] / [i915#7828]) +10 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at kms_chamelium_frames@dp-crc-single.html * igt at kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#11151] / [i915#7828]) +7 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt at kms_chamelium_frames@vga-frame-dump.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#11151] / [i915#7828]) +4 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-3/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#7116] / [i915#9424]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at kms_content_protection@atomic.html * igt at kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#7118] / [i915#9424]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-7/igt at kms_content_protection@atomic-dpms.html - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@atomic at pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][214] ([i915#7173]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-10/igt at kms_content_protection@atomic at pipe-a-dp-4.html * igt at kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#6944] / [i915#9424]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-10/igt at kms_content_protection@content-type-change.html - shard-rkl: NOTRUN -> [SKIP][216] ([i915#9424]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3299]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-2/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#3116] / [i915#3299]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-8/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#3299]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#9424]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#7116]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at kms_content_protection@srm.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#3555]) +12 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#13049]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-256x85: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#8814]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-7/igt at kms_cursor_crc@cursor-onscreen-256x85.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#3555]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#13049]) +4 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#3555]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-6/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#13049]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-7/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#13049]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-random-64x64: - shard-dg1: [PASS][230] -> [DMESG-WARN][231] ([i915#4423]) +1 other test dmesg-warn [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-14/igt at kms_cursor_crc@cursor-random-64x64.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at kms_cursor_crc@cursor-random-64x64.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8814]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-3/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#13049]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][234] ([i915#12358] / [i915#7882]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk4/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][235] ([i915#12358]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk4/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-snb: [PASS][236] -> [SKIP][237] +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-snb7/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb7/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#4103] / [i915#4213]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][239] ([i915#4103]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#13046] / [i915#5354]) +7 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][241] +35 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][242] -> [FAIL][243] ([i915#2346]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk1/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk6/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][244] ([i915#9067]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][245] ([i915#9067]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#9723]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#3555]) +5 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#8588]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-7/igt at kms_display_modes@mst-extended-mode-negative.html - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#8588]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/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][250] ([i915#3804]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2.html * igt at kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#3555]) +8 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at kms_dither@fb-8bpc-vs-panel-8bpc.html * igt at kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#1257]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [PASS][253] -> [SKIP][254] ([i915#12402]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg2-10/igt at kms_dp_linktrain_fallback@dp-fallback.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#3840] / [i915#9688]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][256] ([i915#3840]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-8/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#3840]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-10/igt at kms_dsc@dsc-with-formats.html * igt at kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#3840]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#3840] / [i915#9053]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#4854]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#1839]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt at kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][262] ([i915#1839]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#9337]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt at kms_feature_discovery@dp-mst.html * igt at kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#4881]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-3/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#9934]) +9 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt at kms_flip@2x-flip-vs-dpms.html - shard-dg1: NOTRUN -> [SKIP][266] ([i915#9934]) +7 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#9934]) +15 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#3637]) +4 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3637]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-2/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#3637]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-10/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-snb: NOTRUN -> [FAIL][271] ([i915#11989]) +1 other test fail [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb5/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@basic-flip-vs-dpms at b-hdmi-a2: - shard-rkl: NOTRUN -> [DMESG-WARN][272] ([i915#12964]) +18 other tests dmesg-warn [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt at kms_flip@basic-flip-vs-dpms at b-hdmi-a2.html * igt at kms_flip@blocking-wf_vblank: - shard-dg1: [PASS][273] -> [FAIL][274] ([i915#11989]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-13/igt at kms_flip@blocking-wf_vblank.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@blocking-wf_vblank at c-hdmi-a3: - shard-dg2: [PASS][275] -> [FAIL][276] ([i915#11989]) +3 other tests fail [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg2-5/igt at kms_flip@blocking-wf_vblank at c-hdmi-a3.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-3/igt at kms_flip@blocking-wf_vblank at c-hdmi-a3.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [FAIL][277] ([i915#11989]) +1 other test fail [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-blocking-wf-vblank: - shard-rkl: NOTRUN -> [FAIL][278] ([i915#11989]) +2 other tests fail [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-5/igt at kms_flip@flip-vs-blocking-wf-vblank.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#8381]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@wf_vblank-ts-check at a-edp1: - shard-mtlp: [PASS][280] -> [FAIL][281] ([i915#11989]) +5 other tests fail [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-6/igt at kms_flip@wf_vblank-ts-check at a-edp1.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-8/igt at kms_flip@wf_vblank-ts-check at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#2672] / [i915#3555]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#2587] / [i915#2672]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#2672] / [i915#3555]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling at pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#2587] / [i915#2672]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/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-downscaling: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#2672] / [i915#3555]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#2672]) +6 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-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-32bpp-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#2672] / [i915#3555]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/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-rkl: NOTRUN -> [SKIP][289] ([i915#2672]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-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-xtile-to-16bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8810] / [i915#8813]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8810]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/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-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#8708]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-3/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#5354]) +46 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#3458]) +26 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#3023]) +26 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#8708]) +23 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#3458]) +14 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#8708]) +25 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#1825]) +4 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-3/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#1825]) +33 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt at kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#6118]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8228]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#12713]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-2/igt at kms_hdr@brightness-with-hdr.html - shard-dg2: NOTRUN -> [SKIP][305] ([i915#12713]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt at kms_hdr@brightness-with-hdr.html - shard-dg1: NOTRUN -> [SKIP][306] ([i915#12713]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][307] ([i915#12713]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-8/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#3555] / [i915#8228]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-8/igt at kms_hdr@static-swap.html - shard-rkl: NOTRUN -> [SKIP][309] ([i915#3555] / [i915#8228]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#8228]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-3/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#12388]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#12394] / [i915#13522]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][313] ([i915#12394] / [i915#13522]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#10656] / [i915#13522]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-3/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#12339]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-3/igt at kms_joiner@invalid-modeset-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][316] ([i915#12339]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#6301]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at kms_panel_fitting@legacy.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][318] ([i915#13026]) +1 other test incomplete [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk3/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][319] ([i915#10647] / [i915#12169]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk1/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][320] ([i915#10647]) +1 other test fail [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk1/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#3555] / [i915#8821]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#13046] / [i915#5354] / [i915#9423]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#6953]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][324] ([i915#8292]) +1 other test fail [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-10/igt at kms_plane_scaling@intel-max-src-size at pipe-a-dp-4.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c: - shard-tglu: NOTRUN -> [SKIP][325] ([i915#12247]) +13 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/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-downscale-factor-0-75-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#12247]) +5 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#12247] / [i915#9423]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/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-1: NOTRUN -> [SKIP][328] ([i915#12247]) +9 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/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-dg1: NOTRUN -> [SKIP][329] ([i915#12247] / [i915#6953]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/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-c: - shard-dg1: NOTRUN -> [SKIP][330] ([i915#12247]) +8 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#12247] / [i915#6953] / [i915#9423]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][332] ([i915#12247] / [i915#6953]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-3/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-d: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#12247]) +7 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d.html * igt at kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#5354]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt at kms_pm_backlight@bad-brightness.html - shard-dg1: NOTRUN -> [SKIP][335] ([i915#5354]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#12343]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-6/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#9685]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#5978]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-10/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#9685]) +2 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu: NOTRUN -> [SKIP][340] ([i915#4281]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-8/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][341] ([i915#9340]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#9519]) +2 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@i2c: - shard-glk: NOTRUN -> [FAIL][343] ([i915#8717]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk7/igt at kms_pm_rpm@i2c.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][344] ([i915#9519]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#12916]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-5/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#9519]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-8/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][347] ([i915#10553]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk1/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][348] ([i915#6524] / [i915#6805]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at kms_prime@basic-crc-hybrid.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#11520]) +14 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-2/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-rkl: NOTRUN -> [SKIP][350] ([i915#11520]) +10 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-5/igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][351] ([i915#11520]) +10 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk5/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#12316]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-1/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#11520]) +4 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][354] ([i915#11520]) +4 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-10/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][355] ([i915#11520]) +9 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-snb: NOTRUN -> [SKIP][356] ([i915#11520]) +7 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb1/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#9683]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][358] ([i915#9683]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#9683]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-3/igt at kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][360] ([i915#9683]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +27 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt at kms_psr@fbc-pr-primary-mmap-gtt.html * igt at kms_psr@fbc-psr2-primary-blt: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#1072] / [i915#9732]) +23 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt at kms_psr@fbc-psr2-primary-blt.html * igt at kms_psr@pr-cursor-plane-move: - shard-mtlp: NOTRUN -> [SKIP][363] ([i915#9688]) +3 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-2/igt at kms_psr@pr-cursor-plane-move.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][364] ([i915#9732]) +9 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][365] ([i915#9732]) +12 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-7/igt at kms_psr@psr-cursor-plane-onoff.html * igt at kms_psr@psr2-primary-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][366] ([i915#1072] / [i915#9732]) +23 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at kms_psr@psr2-primary-mmap-cpu.html * igt at kms_rotation_crc@bad-pixel-format: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#12755]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-2/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][368] ([i915#5289]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][369] ([i915#5289]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#12755] / [i915#5190]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][371] ([i915#5289]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][372] ([i915#13179]) +1 other test abort [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk8/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][373] ([i915#5465]) +2 other tests fail [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb4/igt at kms_setmode@basic.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][374] ([i915#3555] / [i915#8809]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-1/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-rkl: NOTRUN -> [SKIP][375] ([i915#8623]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vblank@query-forked-hang: - shard-rkl: [PASS][376] -> [DMESG-WARN][377] ([i915#12917] / [i915#12964]) +2 other tests dmesg-warn [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-6/igt at kms_vblank@query-forked-hang.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt at kms_vblank@query-forked-hang.html * igt at kms_vblank@query-forked at pipe-a-hdmi-a-1: - shard-rkl: [PASS][378] -> [DMESG-WARN][379] ([i915#12964]) +21 other tests dmesg-warn [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-2/igt at kms_vblank@query-forked at pipe-a-hdmi-a-1.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt at kms_vblank@query-forked at pipe-a-hdmi-a-1.html * igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1: - shard-glk: [PASS][380] -> [INCOMPLETE][381] ([i915#12276]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk2/igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk9/igt at kms_vblank@ts-continuation-suspend at pipe-a-hdmi-a-1.html * igt at kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][382] ([i915#9906]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-4/igt at kms_vrr@flip-basic-fastset.html - shard-dg2: NOTRUN -> [SKIP][383] ([i915#9906]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-10/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@max-min: - shard-rkl: NOTRUN -> [SKIP][384] ([i915#9906]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt at kms_vrr@max-min.html * igt at kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][385] ([i915#3555] / [i915#9906]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt at kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][386] ([i915#3555] / [i915#9906]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-dg1: NOTRUN -> [SKIP][387] ([i915#9906]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-dg1: NOTRUN -> [SKIP][388] ([i915#2437]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][389] ([i915#2437]) +1 other test skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk2/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#2437]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#2437] / [i915#9412]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][392] ([i915#2437] / [i915#9412]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at perf@gen12-group-concurrent-oa-buffer-read: - shard-tglu: [PASS][393] -> [FAIL][394] ([i915#10538]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-tglu-7/igt at perf@gen12-group-concurrent-oa-buffer-read.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-4/igt at perf@gen12-group-concurrent-oa-buffer-read.html * igt at perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][395] ([i915#7387]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-2/igt at perf@global-sseu-config-invalid.html * igt at perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][396] ([i915#2434]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at perf@mi-rpc.html * igt at perf_pmu@busy-accuracy-2 at vcs1: - shard-mtlp: [PASS][397] -> [FAIL][398] ([i915#4349]) +1 other test fail [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-8/igt at perf_pmu@busy-accuracy-2 at vcs1.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-7/igt at perf_pmu@busy-accuracy-2 at vcs1.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][399] +337 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb2/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: NOTRUN -> [FAIL][400] ([i915#4349]) +4 other tests fail [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@cpu-hotplug: - shard-dg1: NOTRUN -> [SKIP][401] ([i915#8850]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@frequency at gt0: - shard-dg1: NOTRUN -> [FAIL][402] ([i915#12549] / [i915#6806]) +1 other test fail [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@most-busy-idle-check-all at bcs0: - shard-dg1: [PASS][403] -> [FAIL][404] ([i915#11943]) +4 other tests fail [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-14/igt at perf_pmu@most-busy-idle-check-all at bcs0.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at perf_pmu@most-busy-idle-check-all at bcs0.html * igt at perf_pmu@most-busy-idle-check-all at rcs0: - shard-rkl: [PASS][405] -> [FAIL][406] ([i915#4349]) +1 other test fail [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-3/igt at perf_pmu@most-busy-idle-check-all at rcs0.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt at perf_pmu@most-busy-idle-check-all at rcs0.html * igt at perf_pmu@most-busy-idle-check-all at vcs0: - shard-mtlp: [PASS][407] -> [FAIL][408] ([i915#11943]) +3 other tests fail [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-5/igt at perf_pmu@most-busy-idle-check-all at vcs0.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-3/igt at perf_pmu@most-busy-idle-check-all at vcs0.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][409] ([i915#8516]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][410] ([i915#3291] / [i915#3708]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt at prime_vgem@basic-fence-read.html - shard-dg1: NOTRUN -> [SKIP][411] ([i915#3708]) +2 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt at prime_vgem@basic-fence-read.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][412] ([i915#9917]) +1 other test skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg1: NOTRUN -> [SKIP][413] ([i915#9917]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-5: - shard-tglu-1: NOTRUN -> [FAIL][414] ([i915#12910]) +9 other tests fail [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt at sriov_basic@enable-vfs-autoprobe-on at numvfs-5.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][415] ([i915#12910]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-5/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][416] +17 other tests skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at core_setmaster@master-drop-set-shared-fd: - shard-tglu: [ABORT][417] -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-tglu-2/igt at core_setmaster@master-drop-set-shared-fd.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-3/igt at core_setmaster@master-drop-set-shared-fd.html * igt at gem_exec_balancer@full-late-pulse: - shard-mtlp: [FAIL][419] ([i915#13364]) -> [PASS][420] [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-3/igt at gem_exec_balancer@full-late-pulse.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-5/igt at gem_exec_balancer@full-late-pulse.html * igt at gem_exec_parallel@engines: - shard-rkl: [DMESG-WARN][421] ([i915#12964]) -> [PASS][422] +30 other tests pass [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-2/igt at gem_exec_parallel@engines.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt at gem_exec_parallel@engines.html * igt at gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][423] -> [PASS][424] [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-tglu-2/igt at gem_tiled_swapping@non-threaded.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-2/igt at gem_tiled_swapping@non-threaded.html * igt at i915_module_load@load: - shard-glk: ([PASS][425], [PASS][426], [PASS][427], [PASS][428], [PASS][429], [PASS][430], [DMESG-WARN][431], [PASS][432], [PASS][433], [PASS][434], [PASS][435], [DMESG-WARN][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]) ([i915#118]) -> ([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], [PASS][466], [PASS][467], [PASS][468], [PASS][469], [PASS][470], [PASS][471], [PASS][472], [PASS][473]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk7/igt at i915_module_load@load.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk1/igt at i915_module_load@load.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk2/igt at i915_module_load@load.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk9/igt at i915_module_load@load.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk3/igt at i915_module_load@load.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk5/igt at i915_module_load@load.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk5/igt at i915_module_load@load.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk6/igt at i915_module_load@load.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk4/igt at i915_module_load@load.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk4/igt at i915_module_load@load.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk7/igt at i915_module_load@load.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk5/igt at i915_module_load@load.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk5/igt at i915_module_load@load.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk8/igt at i915_module_load@load.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk2/igt at i915_module_load@load.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk4/igt at i915_module_load@load.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk3/igt at i915_module_load@load.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk1/igt at i915_module_load@load.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk6/igt at i915_module_load@load.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk3/igt at i915_module_load@load.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk8/igt at i915_module_load@load.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk2/igt at i915_module_load@load.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk9/igt at i915_module_load@load.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk1/igt at i915_module_load@load.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk5/igt at i915_module_load@load.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk1/igt at i915_module_load@load.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk4/igt at i915_module_load@load.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk5/igt at i915_module_load@load.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk1/igt at i915_module_load@load.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IG == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 16:04:26 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 16:04:26 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_series_starting_with_=5Bi-g?= =?utf-8?q?-t=2C1/2=5D_lib/xe=5Feudebug=3A_Fix_32b_compilation_warnings/erro?= =?utf-8?q?rs?= In-Reply-To: <20250120131338.131713-1-dominik.grzegorzek@intel.com> References: <20250120131338.131713-1-dominik.grzegorzek@intel.com> Message-ID: <173738906675.2215080.4919627310155284346@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,1/2] lib/xe_eudebug: Fix 32b compilation warnings/errors URL : https://patchwork.freedesktop.org/series/143730/ State : success == Summary == CI Bug Log - changes from XEIGT_8199_BAT -> XEIGTPW_12467_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8199 -> IGTPW_12467 IGTPW_12467: 594d0d229b8c967c61efb5a47a98b60f7925ff29 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 16:12:08 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 16:12:08 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/amdgpu/amd=5Fabm=3A_?= =?utf-8?q?Fix_test_failed_on_self-refresh_panel_=28rev2=29?= In-Reply-To: <20250120102501.4164-1-chiahsuan.chung@amd.com> References: <20250120102501.4164-1-chiahsuan.chung@amd.com> Message-ID: <173738952863.2215080.6339216648537107191@b555e5b46a47> == Series Details == Series: tests/amdgpu/amd_abm: Fix test failed on self-refresh panel (rev2) URL : https://patchwork.freedesktop.org/series/143552/ State : failure == Summary == CI Bug Log - changes from XEIGT_8199_full -> XEIGTPW_12463_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12463_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12463_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_12463_full: ### IGT changes ### #### Possible regressions #### * igt at kms_async_flips@test-time-stamp: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_async_flips@test-time-stamp.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-2/igt at kms_async_flips@test-time-stamp.html * igt at kms_flip@2x-flip-vs-wf_vblank at cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] +3 other tests incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_flip@2x-flip-vs-wf_vblank at cd-hdmi-a6-dp4.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-434/igt at kms_flip@2x-flip-vs-wf_vblank at cd-hdmi-a6-dp4.html * igt at kms_flip@wf_vblank-ts-check at a-dp2: - shard-bmg: NOTRUN -> [FAIL][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-4/igt at kms_flip@wf_vblank-ts-check at a-dp2.html New tests --------- New tests have been introduced between XEIGT_8199_full and XEIGTPW_12463_full: ### New IGT tests (2) ### * igt at kms_atomic_interruptible@legacy-cursor at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [6.30] s * igt at kms_hdr@invalid-hdr at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [1.45] s Known issues ------------ Here are the changes found in XEIGTPW_12463_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@unplug-rescan: - shard-bmg: [PASS][6] -> [SKIP][7] ([Intel XE#1885]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at core_hotunplug@unplug-rescan.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at core_hotunplug@unplug-rescan.html * igt at core_setmaster@master-drop-set-shared-fd: - shard-bmg: [PASS][8] -> [SKIP][9] ([Intel XE#3453]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at core_setmaster@master-drop-set-shared-fd.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at core_setmaster@master-drop-set-shared-fd.html * igt at fbdev@nullptr: - shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#2134]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at fbdev@nullptr.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at fbdev@nullptr.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1125]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-7/igt at intel_hwmon@hwmon-write.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#3767]) +23 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-463/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#2136]) +19 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-64bpp-rotate-0: - shard-lnl: NOTRUN -> [DMESG-WARN][16] ([Intel XE#1725]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-6/igt at kms_big_fb@linear-64bpp-rotate-0.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-434/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1407]) +5 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-5/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +10 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#607]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/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: NOTRUN -> [SKIP][21] ([Intel XE#610]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-466/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1428]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-1/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +6 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-2/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#367]) +6 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2191]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-6/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#2191]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-434/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2887]) +9 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-1/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#3432]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-1/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2907]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-466/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#787]) +174 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/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 at pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][32] -> [DMESG-WARN][33] ([Intel XE#1727] / [Intel XE#3113]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-hdmi-a-6.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-433/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-ccs at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#455] / [Intel XE#787]) +33 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at kms_ccs@random-ccs-data-y-tiled-ccs at pipe-d-dp-2.html * igt at kms_cdclk@mode-transition at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#314]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at kms_cdclk@mode-transition at pipe-d-dp-4.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#306]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-8/igt at kms_chamelium_color@ctm-blue-to-red.html - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#306]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-463/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_edid@hdmi-mode-timings: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#373]) +9 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-463/igt at kms_chamelium_edid@hdmi-mode-timings.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#373]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-4/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][40] ([Intel XE#1178]) +1 other test fail [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at kms_content_protection@atomic-dpms at pipe-a-dp-2.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#307]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/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-2: - shard-bmg: NOTRUN -> [FAIL][42] ([Intel XE#1178]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-8/igt at kms_content_protection@lic-type-0 at pipe-a-dp-2.html * igt at kms_content_protection@type1: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#3278]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-3/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][44] ([Intel XE#1188]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at kms_content_protection@uevent at pipe-a-dp-2.html - shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#1188]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-5/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1424]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-1/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#308]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2321]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-5/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-suspend: - shard-bmg: [PASS][49] -> [SKIP][50] ([Intel XE#2423]) +84 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_cursor_crc@cursor-suspend.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][51] -> [DMESG-WARN][52] ([Intel XE#877]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#2291]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipb-toggle.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][55] -> [FAIL][56] ([Intel XE#1475]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-3/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-6/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-lnl: NOTRUN -> [SKIP][57] ([Intel XE#323]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@single-bo at pipe-c: - shard-bmg: NOTRUN -> [INCOMPLETE][58] ([Intel XE#3226]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-5/igt at kms_cursor_legacy@single-bo at pipe-c.html * igt at kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#3383]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-5/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dp_aux_dev: - shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#3009]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_dp_aux_dev.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#3070]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_dp_linktrain_fallback@dp-fallback.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#702]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-1/igt at kms_feature_discovery@display-2x.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [PASS][65] -> [FAIL][66] ([Intel XE#301]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][67] ([Intel XE#301] / [Intel XE#3321]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-463/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 at ac-dp2-hdmi-a3: - shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#3321]) +3 other tests fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-modeset: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1421]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-2/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#2316]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@2x-nonexisting-fb.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@2x-plain-flip-ts-check at ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][73] -> [FAIL][74] ([Intel XE#2882]) +2 other tests fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_flip@2x-plain-flip-ts-check at ab-hdmi-a6-dp4.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/igt at kms_flip@2x-plain-flip-ts-check at ab-hdmi-a6-dp4.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2: - shard-dg2-set2: NOTRUN -> [FAIL][75] ([Intel XE#301]) +8 other tests fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2.html * igt at kms_flip@plain-flip-ts-check: - shard-lnl: NOTRUN -> [FAIL][76] ([Intel XE#3149] / [Intel XE#886]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-7/igt at kms_flip@plain-flip-ts-check.html * igt at kms_flip@plain-flip-ts-check at c-edp1: - shard-lnl: NOTRUN -> [FAIL][77] ([Intel XE#886]) +2 other tests fail [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-7/igt at kms_flip@plain-flip-ts-check at c-edp1.html * igt at kms_flip@wf_vblank-ts-check-interruptible: - shard-dg2-set2: [PASS][78] -> [SKIP][79] ([Intel XE#2423] / [i915#2575]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_flip@wf_vblank-ts-check-interruptible.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at kms_flip@wf_vblank-ts-check-interruptible.html * igt at kms_flip@wf_vblank-ts-check at b-dp2: - shard-bmg: NOTRUN -> [FAIL][80] ([Intel XE#2882]) +1 other test fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-4/igt at kms_flip@wf_vblank-ts-check at b-dp2.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2293]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-1/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-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1401]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1401] / [Intel XE#1745]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-6/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1397] / [Intel XE#1745]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/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][85] ([Intel XE#1397]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/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-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2380]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#455]) +9 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#651]) +23 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#656]) +24 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#651]) +6 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-7/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#658]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#653]) +19 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][93] -> [SKIP][94] ([Intel XE#3012]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_joiner@invalid-modeset-force-big-joiner.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][95] ([Intel XE#616]) +2 other tests fail [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#309]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@intel-max-src-size: - shard-bmg: [PASS][97] -> [SKIP][98] ([Intel XE#2685] / [Intel XE#3307]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_plane_scaling@intel-max-src-size.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-4/igt at kms_plane_scaling@intel-max-src-size.html - shard-dg2-set2: [PASS][99] -> [SKIP][100] ([Intel XE#455]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_plane_scaling@intel-max-src-size.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-466/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2763]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/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-modifiers at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#2763]) +7 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/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-upscale-20x20-downscale-factor-0-75 at pipe-a: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2763]) +11 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-3/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a.html * igt at kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#870]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-463/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2938]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1129]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-434/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@i2c: - shard-bmg: [PASS][108] -> [SKIP][109] ([Intel XE#2446]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_pm_rpm@i2c.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_pm_rpm@i2c.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1439] / [Intel XE#3141]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#1489]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#2893]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-1/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1406]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-3/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at kms_psr@psr-dpms.html * igt at kms_rotation_crc@primary-rotation-90: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-5/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#3414]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1435]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-5/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#362]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-4/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][119] -> [FAIL][120] ([Intel XE#2159]) +1 other test fail [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-1/igt at kms_vrr@cmrr at pipe-a-edp-1.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-4/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flipline: - shard-lnl: [PASS][121] -> [FAIL][122] ([Intel XE#1522]) +1 other test fail [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-8/igt at kms_vrr@flipline.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-8/igt at kms_vrr@flipline.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2168]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-466/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#756]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-1/igt at kms_writeback@writeback-check-output-xrgb2101010.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_12463/shard-dg2-432/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#3889]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#3889]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-6/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#2905]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-1/igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#688]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-1/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1392]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-dg2-set2: [PASS][131] -> [SKIP][132] ([Intel XE#1392]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#1392]) +5 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-8/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#288]) +20 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-434/igt at xe_exec_fault_mode@once-invalid-userptr-fault.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2905]) +8 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-433/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_exec_threads@threads-cm-shared-vm-basic: - shard-dg2-set2: [PASS][136] -> [SKIP][137] ([Intel XE#1130]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_threads@threads-cm-shared-vm-basic.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at xe_exec_threads@threads-cm-shared-vm-basic.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [PASS][138] -> [SKIP][139] ([Intel XE#2229]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at xe_live_ktest@xe_bo.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][140] -> [SKIP][141] ([Intel XE#1192]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at xe_live_ktest@xe_dma_buf.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-2/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][142] ([Intel XE#1999]) +2 other tests fail [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-466/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#4045]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-5/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#512]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-463/igt at xe_mmap@small-bar.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-463/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#977]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-463/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2838] / [Intel XE#979]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-433/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][148] ([Intel XE#1173]) +2 other tests fail [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-433/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_peer2peer@write: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#1061]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-8/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#2284] / [Intel XE#366]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at xe_pm@d3cold-mmap-vram.html - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#2284] / [Intel XE#366]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-2/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1948]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-4/igt at xe_pm@d3hot-mmap-vram.html * igt at xe_pm@s2idle-mocs: - shard-dg2-set2: [PASS][153] -> [ABORT][154] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_pm@s2idle-mocs.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at xe_pm@s2idle-mocs.html * igt at xe_pm@s3-basic-exec: - shard-dg2-set2: [PASS][155] -> [ABORT][156] ([Intel XE#1358]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_pm@s3-basic-exec.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s3-mocs: - shard-dg2-set2: NOTRUN -> [ABORT][157] ([Intel XE#1358] / [Intel XE#1794]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at xe_pm@s3-mocs.html * igt at xe_pm@s3-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#584]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-4/igt at xe_pm@s3-vm-bind-unbind-all.html * igt at xe_pm@s4-vm-bind-prefetch: - shard-lnl: NOTRUN -> [ABORT][159] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-2/igt at xe_pm@s4-vm-bind-prefetch.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#579]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-463/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-config: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#944]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-4/igt at xe_query@multigpu-query-config.html * igt at xe_spin_batch@spin-all: - shard-bmg: [PASS][162] -> [SKIP][163] ([Intel XE#1130]) +205 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at xe_spin_batch@spin-all.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at xe_spin_batch@spin-all.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#3342]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@large-misaligned-binds-2097152: - shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#1130]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at xe_vm@large-misaligned-binds-2097152.html #### Possible fixes #### * igt at core_hotunplug@hotrebind: - shard-bmg: [SKIP][166] ([Intel XE#1885]) -> [PASS][167] +2 other tests pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at core_hotunplug@hotrebind.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-4/igt at core_hotunplug@hotrebind.html * igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][168] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-8/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@x-tiled-16bpp-rotate-0: - shard-bmg: [SKIP][170] ([Intel XE#2136]) -> [PASS][171] +19 other tests pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@x-tiled-16bpp-rotate-0.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-5/igt at kms_big_fb@x-tiled-16bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][172] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-1/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [SKIP][174] ([Intel XE#2136]) -> [PASS][175] +4 other tests pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-463/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][176] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/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-c-dp-4: - shard-dg2-set2: [INCOMPLETE][178] ([Intel XE#3124]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-dp-4.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][180] ([Intel XE#1727]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: [SKIP][182] ([Intel XE#2291]) -> [PASS][183] +2 other tests pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][184] ([Intel XE#2425]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-8/igt at kms_display_modes@extended-mode-basic.html * igt at kms_draw_crc@fill-fb: - shard-dg2-set2: [SKIP][186] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_draw_crc@fill-fb.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-433/igt at kms_draw_crc@fill-fb.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][188] ([Intel XE#301]) -> [PASS][189] +3 other tests pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/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-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][190] ([Intel XE#3321]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [SKIP][192] ([Intel XE#2316]) -> [PASS][193] +1 other test pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip@2x-flip-vs-suspend-interruptible.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-2/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][194] ([Intel XE#886]) -> [PASS][195] +4 other tests pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_flip@blocking-wf_vblank.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-7/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@plain-flip-fb-recreate: - shard-bmg: [FAIL][196] ([Intel XE#2882]) -> [PASS][197] +1 other test pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_flip@plain-flip-fb-recreate.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-4/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][198] ([Intel XE#2423] / [i915#2575]) -> [PASS][199] +19 other tests pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_hdr@invalid-hdr.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-466/igt at kms_hdr@invalid-hdr.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][200] ([Intel XE#2571]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-1/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-bmg: [SKIP][202] ([Intel XE#3007]) -> [PASS][203] +17 other tests pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-1/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [SKIP][204] ([Intel XE#2446]) -> [PASS][205] +3 other tests pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@basic-pci-d3-state.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-8/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_pm_rpm@legacy-planes: - shard-dg2-set2: [SKIP][206] ([Intel XE#2446]) -> [PASS][207] [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_pm_rpm@legacy-planes.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at kms_pm_rpm@legacy-planes.html * igt at kms_properties@connector-properties-legacy: - shard-bmg: [SKIP][208] ([Intel XE#2423]) -> [PASS][209] +87 other tests pass [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_properties@connector-properties-legacy.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-2/igt at kms_properties@connector-properties-legacy.html * igt at kms_psr@psr2-primary-render: - shard-lnl: [FAIL][210] -> [PASS][211] +1 other test pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_psr@psr2-primary-render.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-lnl-1/igt at kms_psr@psr2-primary-render.html * igt at kms_rmfb@close-fd: - shard-dg2-set2: [INCOMPLETE][212] -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_rmfb@close-fd.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at kms_rmfb@close-fd.html * igt at xe_exec_balancer@twice-virtual-basic: - shard-dg2-set2: [SKIP][214] ([Intel XE#1130]) -> [PASS][215] +27 other tests pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_balancer@twice-virtual-basic.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-434/igt at xe_exec_balancer@twice-virtual-basic.html * igt at xe_exec_basic@multigpu-no-exec-basic: - shard-dg2-set2: [SKIP][216] ([Intel XE#1392]) -> [PASS][217] +3 other tests pass [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-basic.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-433/igt at xe_exec_basic@multigpu-no-exec-basic.html * igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate: - shard-bmg: [SKIP][218] ([Intel XE#1130]) -> [PASS][219] +234 other tests pass [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-1/igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-bmg: [FAIL][220] ([Intel XE#1999]) -> [PASS][221] +2 other tests pass [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-1/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_module_load@load: - shard-dg2-set2: ([SKIP][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], [PASS][245], [PASS][246], [PASS][247]) ([Intel XE#378]) -> ([PASS][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], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at xe_module_load@load.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-466/igt at xe_module_load@load.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-466/igt at xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-466/igt at xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at xe_module_load@load.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-463/igt at xe_module_load@load.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-463/igt at xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-463/igt at xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-463/igt at xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/igt at xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/igt at xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/igt at xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/igt at xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-433/igt at xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-433/igt at xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-433/igt at xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-434/igt at xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-434/igt at xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-434/igt at xe_module_load@load.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [ABORT][273] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][274] +1 other test pass [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at xe_pm@s2idle-vm-bind-unbind-all.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][275] ([Intel XE#2423]) -> [SKIP][276] ([Intel XE#873]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_async_flips@invalid-async-flip.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-8/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-bmg: [SKIP][277] ([Intel XE#3768]) -> [SKIP][278] ([Intel XE#2423]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: [SKIP][279] ([Intel XE#2370]) -> [SKIP][280] ([Intel XE#2423]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: [SKIP][281] ([Intel XE#2136]) -> [SKIP][282] ([Intel XE#2327]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@linear-32bpp-rotate-90.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@x-tiled-16bpp-rotate-90: - shard-bmg: [SKIP][283] ([Intel XE#2327]) -> [SKIP][284] ([Intel XE#2136]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][285] ([Intel XE#2136]) -> [SKIP][286] ([Intel XE#607]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-3/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg2-set2: [SKIP][287] ([Intel XE#2136]) -> [SKIP][288] ([Intel XE#1124]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-433/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][289] ([Intel XE#2136]) -> [SKIP][290] ([Intel XE#1124]) +8 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-bmg: [SKIP][291] ([Intel XE#2136]) -> [SKIP][292] ([Intel XE#2328]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-2/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: [SKIP][293] ([Intel XE#1124]) -> [SKIP][294] ([Intel XE#2136]) +10 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][295] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][296] ([Intel XE#1124]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-3/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][297] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][298] ([Intel XE#2423]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][299] ([Intel XE#2423]) -> [SKIP][300] ([Intel XE#367]) +2 other tests skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][301] ([Intel XE#3007]) -> [SKIP][302] ([Intel XE#367]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-3/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html - shard-dg2-set2: [SKIP][303] ([Intel XE#2423] / [i915#2575]) -> [SKIP][304] ([Intel XE#367]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-434/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][305] ([Intel XE#367]) -> [SKIP][306] ([Intel XE#2423]) +4 other tests skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][307] ([Intel XE#2136]) -> [SKIP][308] ([Intel XE#2887]) +16 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-8/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@bad-rotation-90-yf-tiled-ccs: - shard-dg2-set2: [SKIP][309] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][310] ([Intel XE#2136]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_ccs@bad-rotation-90-yf-tiled-ccs.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at kms_ccs@bad-rotation-90-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-bmg: [SKIP][311] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][312] ([Intel XE#2136]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs: - shard-dg2-set2: [SKIP][313] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][314] ([Intel XE#455] / [Intel XE#787]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][315] ([Intel XE#3432]) -> [SKIP][316] ([Intel XE#2136]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][317] ([Intel XE#2136]) -> [SKIP][318] ([Intel XE#3432]) +3 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][319] ([Intel XE#2136]) -> [SKIP][320] ([Intel XE#2652] / [Intel XE#787]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/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: - shard-bmg: [SKIP][321] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][322] ([Intel XE#2887]) +4 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-3/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][323] ([Intel XE#2887]) -> [SKIP][324] ([Intel XE#2136]) +13 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html - shard-dg2-set2: [DMESG-WARN][325] ([Intel XE#1727]) -> [INCOMPLETE][326] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-433/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: [DMESG-WARN][327] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113]) -> [INCOMPLETE][328] ([Intel XE#3124]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-4.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-433/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-y-tiled-ccs: - shard-dg2-set2: [SKIP][329] ([Intel XE#2136]) -> [SKIP][330] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html * igt at kms_cdclk@plane-scaling: - shard-bmg: [SKIP][331] ([Intel XE#2724]) -> [SKIP][332] ([Intel XE#2136]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_cdclk@plane-scaling.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-bmg: [SKIP][333] ([Intel XE#2252]) -> [SKIP][334] ([Intel XE#2423]) +9 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_chamelium_audio@hdmi-audio-edid.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-bmg: [SKIP][335] ([Intel XE#2423]) -> [SKIP][336] ([Intel XE#2325]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_color@ctm-red-to-blue.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][337] ([Intel XE#2423]) -> [SKIP][338] ([Intel XE#2252]) +12 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_frames@dp-frame-dump: - shard-dg2-set2: [SKIP][339] ([Intel XE#2423] / [i915#2575]) -> [SKIP][340] ([Intel XE#373]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_chamelium_frames@dp-frame-dump.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at kms_chamelium_frames@dp-frame-dump.html * igt at kms_content_protection@atomic: - shard-bmg: [SKIP][341] ([Intel XE#2341]) -> [SKIP][342] ([Intel XE#2423]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_content_protection@atomic.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_content_protection@atomic.html * igt at kms_content_protection@content-type-change: - shard-bmg: [SKIP][343] ([Intel XE#3007]) -> [SKIP][344] ([Intel XE#2423]) +6 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_content_protection@content-type-change.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][345] ([Intel XE#2423]) -> [SKIP][346] ([Intel XE#2390]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@dp-mst-type-0.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-4/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][347] ([Intel XE#2390]) -> [SKIP][348] ([Intel XE#2423]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_content_protection@dp-mst-type-1.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-bmg: [SKIP][349] ([Intel XE#2423]) -> [FAIL][350] ([Intel XE#1178]) +1 other test fail [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@legacy.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-4/igt at kms_content_protection@legacy.html * igt at kms_content_protection@uevent: - shard-bmg: [SKIP][351] ([Intel XE#2423]) -> [FAIL][352] ([Intel XE#1188]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@uevent.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-5/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][353] ([Intel XE#2320]) -> [SKIP][354] ([Intel XE#2423]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_cursor_crc@cursor-offscreen-128x42.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: [SKIP][355] ([Intel XE#2423]) -> [SKIP][356] ([Intel XE#2320]) +3 other tests skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-onscreen-32x32.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-8/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-dg2-set2: [SKIP][357] ([Intel XE#2423] / [i915#2575]) -> [SKIP][358] ([Intel XE#455]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_cursor_crc@cursor-random-32x10.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at kms_cursor_crc@cursor-random-32x10.html - shard-bmg: [SKIP][359] ([Intel XE#3007]) -> [SKIP][360] ([Intel XE#2320]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_cursor_crc@cursor-random-32x10.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-1/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-bmg: [SKIP][361] ([Intel XE#2423]) -> [SKIP][362] ([Intel XE#2321]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-random-512x170.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-8/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-bmg: [SKIP][363] ([Intel XE#2321]) -> [SKIP][364] ([Intel XE#2423]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_cursor_crc@cursor-random-512x512.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-bmg: [SKIP][365] ([Intel XE#2286]) -> [SKIP][366] ([Intel XE#2423]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][367] ([Intel XE#877]) -> [SKIP][368] ([Intel XE#2423]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-bmg: [SKIP][369] ([Intel XE#2423]) -> [SKIP][370] ([Intel XE#2286]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_cursor_legacy@single-bo: - shard-bmg: [SKIP][371] ([Intel XE#2423]) -> [INCOMPLETE][372] ([Intel XE#3226]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_legacy@single-bo.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-5/igt at kms_cursor_legacy@single-bo.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][373] ([Intel XE#1508]) -> [SKIP][374] ([Intel XE#2136]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][375] ([Intel XE#2423]) -> [SKIP][376] ([Intel XE#2323]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_display_modes@mst-extended-mode-negative.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-4/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-bmg: [SKIP][377] ([Intel XE#2136]) -> [SKIP][378] ([Intel XE#2244]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_dsc@dsc-with-bpc-formats.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-8/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: [SKIP][379] ([Intel XE#2244]) -> [SKIP][380] ([Intel XE#2136]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_dsc@dsc-with-output-formats.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][381] ([Intel XE#2136]) -> [SKIP][382] ([Intel XE#455]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at kms_dsc@dsc-with-output-formats-with-bpc.html - shard-bmg: [SKIP][383] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][384] ([Intel XE#2244]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-1/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-bmg: [SKIP][385] ([Intel XE#776]) -> [SKIP][386] ([Intel XE#2136]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_fbcon_fbt@psr.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][387] ([Intel XE#2136]) -> [SKIP][388] ([Intel XE#776]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_fbcon_fbt@psr-suspend.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-5/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-3x: - shard-bmg: [SKIP][389] ([Intel XE#2373]) -> [SKIP][390] ([Intel XE#2423]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_feature_discovery@display-3x.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][391] ([Intel XE#2423]) -> [SKIP][392] ([Intel XE#2375]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_feature_discovery@dp-mst.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-5/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-bmg: [SKIP][393] ([Intel XE#2374]) -> [SKIP][394] ([Intel XE#2423]) +1 other test skip [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_feature_discovery@psr1.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-bmg: [SKIP][395] ([Intel XE#2316]) -> [SKIP][396] ([Intel XE#2423]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-interruptible.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@wf_vblank-ts-check: - shard-bmg: [SKIP][397] ([Intel XE#2423]) -> [FAIL][398] ([Intel XE#2882]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip@wf_vblank-ts-check.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-4/igt at kms_flip@wf_vblank-ts-check.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-bmg: [SKIP][399] ([Intel XE#2136]) -> [SKIP][400] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-bmg: [SKIP][401] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][402] ([Intel XE#2136]) +2 other tests skip [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][403] ([Intel XE#2136]) -> [SKIP][404] ([Intel XE#2380]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: [SKIP][405] ([Intel XE#2136]) -> [SKIP][406] ([Intel XE#2311]) +26 other tests skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][407] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][408] ([Intel XE#651]) +2 other tests skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][409] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][410] ([Intel XE#2311]) +3 other tests skip [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][411] ([Intel XE#2311]) -> [SKIP][412] ([Intel XE#2136]) +22 other tests skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][413] ([Intel XE#2136]) -> [SKIP][414] ([Intel XE#651]) [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][415] ([Intel XE#2312]) -> [SKIP][416] ([Intel XE#2136]) +5 other tests skip [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][417] ([Intel XE#2312]) -> [SKIP][418] ([Intel XE#2311]) +4 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [FAIL][419] ([Intel XE#2333]) -> [SKIP][420] ([Intel XE#2136]) +19 other tests skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][421] ([Intel XE#2136]) -> [FAIL][422] ([Intel XE#2333]) +12 other tests fail [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [FAIL][423] ([Intel XE#2333]) -> [SKIP][424] ([Intel XE#2312]) [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][425] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][426] ([Intel XE#2333]) +3 other tests fail [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][427] ([Intel XE#2312]) -> [FAIL][428] ([Intel XE#2333]) +3 other tests fail [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][429] ([Intel XE#2311]) -> [SKIP][430] ([Intel XE#2312]) +7 other tests skip [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][431] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][432] ([Intel XE#2313]) +5 other tests skip [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][433] ([Intel XE#2313]) -> [SKIP][434] ([Intel XE#2136]) +25 other tests skip [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: [SKIP][435] ([Intel XE#2136]) -> [SKIP][436] ([Intel XE#653]) +3 other tests skip [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][437] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][438] ([Intel XE#2136]) +9 other tests skip [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-bmg: [SKIP][439] ([Intel XE#2313]) -> [SKIP][440] ([Intel XE#2312]) +5 other tests skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][441] ([Intel XE#2136]) -> [SKIP][442] ([Intel XE#2312]) +5 other tests skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][443] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][444] ([Intel XE#2352]) [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][445] ([Intel XE#2136]) -> [SKIP][446] ([Intel XE#2313]) +29 other tests skip [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][447] ([Intel XE#2312]) -> [SKIP][448] ([Intel XE#2313]) +7 other tests skip [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-3/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][449] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][450] ([Intel XE#653]) +2 other tests skip [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][451] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][452] ([Intel XE#2312]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][453] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][454] ([Intel XE#2423]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_hdr@brightness-with-hdr.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [SKIP][455] ([Intel XE#3007]) -> [SKIP][456] ([Intel XE#1503]) [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_hdr@invalid-hdr.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-1/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][457] ([Intel XE#2136]) -> [SKIP][458] ([Intel XE#2934]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_joiner@basic-force-ultra-joiner.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-4/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][459] ([Intel XE#346]) -> [SKIP][460] ([Intel XE#2136]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_joiner@invalid-modeset-big-joiner.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_panel_fitting@legacy: - shard-bmg: [SKIP][461] ([Intel XE#2486]) -> [SKIP][462] ([Intel XE#2423]) +1 other test skip [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_panel_fitting@legacy.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_panel_fitting@legacy.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][463] ([Intel XE#2423]) -> [SKIP][464] ([Intel XE#2493]) +1 other test skip [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_multiple@tiling-yf.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-8/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][465] ([Intel XE#2763]) -> [SKIP][466] ([Intel XE#2423]) +2 other tests skip [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][467] ([Intel XE#2423]) -> [SKIP][468] ([Intel XE#2763]) +2 other tests skip [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_backlight@bad-brightness: - shard-bmg: [SKIP][469] ([Intel XE#870]) -> [SKIP][470] ([Intel XE#2136]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_pm_backlight@bad-brightness.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][471] ([Intel XE#2938]) -> [SKIP][472] ([Intel XE#2136]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_pm_backlight@brightness-with-dpms.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: [SKIP][473] ([Intel XE#2391]) -> [SKIP][474] ([Intel XE#2136]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_pm_dc@dc3co-vpb-simulation.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][475] ([Intel XE#2392]) -> [SKIP][476] ([Intel XE#2136]) [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_pm_dc@dc5-psr.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][477] ([Intel XE#3309]) -> [SKIP][478] ([Intel XE#2136]) [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_pm_dc@dc5-retention-flops.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: [SKIP][479] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][480] ([Intel XE#2446]) [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_pm_rpm@modeset-lpsp-stress.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: [SKIP][481] ([Intel XE#2446]) -> [SKIP][482] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][483] ([Intel XE#2136]) -> [SKIP][484] ([Intel XE#1489]) +10 other tests skip [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-1/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-dg2-set2: [SKIP][485] ([Intel XE#1489]) -> [SKIP][486] ([Intel XE#2136]) [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-435/igt at kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][487] ([Intel XE#1489]) -> [SKIP][488] ([Intel XE#2136]) +8 other tests skip [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][489] ([Intel XE#2136]) -> [SKIP][490] ([Intel XE#1489]) +1 other test skip [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html - shard-bmg: [SKIP][491] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][492] ([Intel XE#1489]) +1 other test skip [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-1/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][493] ([Intel XE#2387]) -> [SKIP][494] ([Intel XE#2136]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-psr-suspend: - shard-dg2-set2: [SKIP][495] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][496] ([Intel XE#2850] / [Intel XE#929]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@fbc-psr-suspend.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-434/igt at kms_psr@fbc-psr-suspend.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-bmg: [SKIP][497] ([Intel XE#2136]) -> [SKIP][498] ([Intel XE#2234] / [Intel XE#2850]) +13 other tests skip [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr@fbc-psr2-cursor-blt.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: [SKIP][499] ([Intel XE#2136]) -> [SKIP][500] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html - shard-bmg: [SKIP][501] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][502] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-5/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@psr-primary-page-flip: - shard-bmg: [SKIP][503] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][504] ([Intel XE#2136]) +13 other tests skip [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_psr@psr-primary-page-flip.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_psr@psr-primary-page-flip.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][505] ([Intel XE#2136]) -> [SKIP][506] ([Intel XE#2414]) [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@bad-pixel-format: - shard-bmg: [SKIP][507] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][508] ([Intel XE#2423]) +3 other tests skip [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_rotation_crc@bad-pixel-format.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-bmg: [SKIP][509] ([Intel XE#2423]) -> [SKIP][510] ([Intel XE#2330]) [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-4/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][511] ([Intel XE#2330]) -> [SKIP][512] ([Intel XE#2423]) [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][513] ([Intel XE#2423] / [i915#2575]) -> [SKIP][514] ([Intel XE#3414]) [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-bmg: [SKIP][515] ([Intel XE#3007]) -> [SKIP][516] ([Intel XE#3414] / [Intel XE#3904]) [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][517] ([Intel XE#2423]) -> [SKIP][518] ([Intel XE#2413]) [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-center.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][519] ([Intel XE#362]) -> [SKIP][520] ([Intel XE#1500]) [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-434/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@flip-suspend: - shard-bmg: [SKIP][521] ([Intel XE#1499]) -> [SKIP][522] ([Intel XE#2423]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_vrr@flip-suspend.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][523] ([Intel XE#2423]) -> [SKIP][524] ([Intel XE#1499]) +1 other test skip [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-virtual.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-check-output: - shard-bmg: [SKIP][525] ([Intel XE#756]) -> [SKIP][526] ([Intel XE#2423]) [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_writeback@writeback-check-output.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][527] ([Intel XE#2423]) -> [SKIP][528] ([Intel XE#756]) [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_writeback@writeback-invalid-parameters.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-1/igt at kms_writeback@writeback-invalid-parameters.html * igt at xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][529] ([Intel XE#1130]) -> [SKIP][530] ([Intel XE#1126]) [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0x369.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/igt at xe_copy_basic@mem-set-linear-0x369.html * igt at xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][531] ([Intel XE#1130]) -> [SKIP][532] ([Intel XE#2504]) [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_create@multigpu-create-massive-size.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-3/igt at xe_create@multigpu-create-massive-size.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][533] ([Intel XE#3889]) -> [SKIP][534] ([Intel XE#1130]) [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-bmg: [SKIP][535] ([Intel XE#1130]) -> [SKIP][536] ([Intel XE#3889]) [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-5/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@sysfs-toggle: - shard-dg2-set2: [SKIP][537] ([Intel XE#1130]) -> [SKIP][538] ([Intel XE#2905]) +2 other tests skip [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_eudebug@sysfs-toggle.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/igt at xe_eudebug@sysfs-toggle.html * igt at xe_eudebug_online@breakpoint-many-sessions-tiles: - shard-bmg: [SKIP][539] ([Intel XE#1130]) -> [SKIP][540] ([Intel XE#2905]) +14 other tests skip [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_eudebug_online@breakpoint-many-sessions-tiles.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-4/igt at xe_eudebug_online@breakpoint-many-sessions-tiles.html * igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-vram: - shard-bmg: [SKIP][541] ([Intel XE#2905]) -> [SKIP][542] ([Intel XE#1130]) +8 other tests skip [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-bmg: [SKIP][543] ([Intel XE#2322]) -> [SKIP][544] ([Intel XE#1130]) +9 other tests skip [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][545] ([Intel XE#1130]) -> [SKIP][546] ([Intel XE#2322]) +12 other tests skip [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-4/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@once-userptr-invalidate-race-imm: - shard-dg2-set2: [SKIP][547] ([Intel XE#1130]) -> [SKIP][548] ([Intel XE#288]) +4 other tests skip [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_fault_mode@once-userptr-invalidate-race-imm.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-432/igt at xe_exec_fault_mode@once-userptr-invalidate-race-imm.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][549] ([Intel XE#2459] / [Intel XE#2596]) -> [SKIP][550] ([Intel XE#1130]) [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_media_fill@media-fill.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at xe_media_fill@media-fill.html * igt at xe_oa@oa-regs-whitelisted: - shard-dg2-set2: [SKIP][551] ([Intel XE#1130]) -> [SKIP][552] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_oa@oa-regs-whitelisted.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-466/igt at xe_oa@oa-regs-whitelisted.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][553] ([Intel XE#1130]) -> [SKIP][554] ([Intel XE#2248]) [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_oa@unprivileged-single-ctx-counters.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][555] ([Intel XE#1130]) -> [SKIP][556] ([Intel XE#2245]) [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_pat@pat-index-xelp.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-2/igt at xe_pat@pat-index-xelp.html * igt at xe_pat@pat-index-xelpg: - shard-bmg: [SKIP][557] ([Intel XE#2236]) -> [SKIP][558] ([Intel XE#1130]) [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_pat@pat-index-xelpg.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@read: - shard-dg2-set2: [SKIP][559] ([Intel XE#1061]) -> [FAIL][560] ([Intel XE#1173]) [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_peer2peer@read.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-433/igt at xe_peer2peer@read.html * igt at xe_pm@d3cold-basic-exec: - shard-bmg: [SKIP][561] ([Intel XE#1130]) -> [SKIP][562] ([Intel XE#2284]) [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_pm@d3cold-basic-exec.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-6/igt at xe_pm@d3cold-basic-exec.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-bmg: [SKIP][563] ([Intel XE#2284]) -> [SKIP][564] ([Intel XE#1130]) [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at xe_pm@s3-d3cold-basic-exec.html [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][565] ([Intel XE#944]) -> [SKIP][566] ([Intel XE#1130]) +1 other test skip [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_query@multigpu-query-invalid-cs-cycles.html [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_query@multigpu-query-invalid-extension: - shard-bmg: [SKIP][567] ([Intel XE#1130]) -> [SKIP][568] ([Intel XE#944]) +4 other tests skip [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_query@multigpu-query-invalid-extension.html [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-4/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][569] ([Intel XE#1130]) -> [SKIP][570] ([Intel XE#944]) [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-guc.html [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-dg2-436/igt at xe_query@multigpu-query-uc-fw-version-guc.html * igt at xe_sriov_flr@flr-each-isolation: - shard-bmg: [SKIP][571] ([Intel XE#3342]) -> [SKIP][572] ([Intel XE#1130]) [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at xe_sriov_flr@flr-each-isolation.html [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/shard-bmg-7/igt at xe_sriov_flr@flr-each-isolation.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [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#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#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#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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [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#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [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#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#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#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [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#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#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#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#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [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#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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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_8199 -> IGTPW_12463 IGTPW_12463: 32e9e493939482bacb200eb405244a214f28d3c5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12463/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From sunpeng.li at amd.com Mon Jan 20 16:20:51 2025 From: sunpeng.li at amd.com (Leo Li) Date: Mon, 20 Jan 2025 11:20:51 -0500 Subject: [PATCH i-g-t,v2] tests/amdgpu/amd_vrr_range: Fix panel cannot light up after test In-Reply-To: <20250117100101.4282-1-chiahsuan.chung@amd.com> References: <20250117100101.4282-1-chiahsuan.chung@amd.com> Message-ID: <56b39a53-6b47-479a-ab39-990c91161f38@amd.com> On 2025-01-17 04:59, Tom Chung wrote: > [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 Reviewed-by: Leo Li Thanks! > --- > v2: Move igt_amd_trigger_hotplug() to non-VRR sink only > > tests/amdgpu/amd_vrr_range.c | 140 +++++++++++++++++++++++++++-------- > 1 file changed, 110 insertions(+), 30 deletions(-) > > diff --git a/tests/amdgpu/amd_vrr_range.c b/tests/amdgpu/amd_vrr_range.c > index 79db6f9c4..9d2462e5e 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; > @@ -273,25 +347,38 @@ static void test_freesync_parsing_base(data_t *data, uint32_t test_flags) > edid = (const struct edid *)edid_database[j].edid; > expected_range = edid_database[j].range; > > - /* eDP allow read edid for each display detection */ > - if (output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP) > - igt_amd_allow_edp_hotplug_detect(data->fd, output->name, true); > + if (has_vrr(output)) { > + /* A VRR sink, just parsing range from EDID directly */ > > - /* force to use hard coded VRR EDID */ > - kmstest_force_edid(data->fd, output->config.connector, edid); > + 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 { > + /* A non-VRR sink. Override a golden EDID */ > + /* eDP allow read edid for each display detection */ > + if (output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP) > + igt_amd_allow_edp_hotplug_detect(data->fd, output->name, true); > > - /* undo EDID override. re-parse EDID of display */ > - kmstest_force_edid(data->fd, output->config.connector, NULL); > + /* force to use hard coded VRR EDID */ > + kmstest_force_edid(data->fd, output->config.connector, edid); > > - igt_amd_trigger_hotplug(data->fd, output->name); > + trigger_edid_parse(data, output, test_flags); > > - /* eDP dis-allow read edid for each display detection */ > - if (output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP) > - igt_amd_allow_edp_hotplug_detect(data->fd, output->name, false); > + 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); > + > + /* eDP dis-allow read edid for each display detection */ > + if (output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP) > + igt_amd_allow_edp_hotplug_detect(data->fd, output->name, false); > + } > > test_conn_cnt++; > > @@ -317,20 +404,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; From patchwork at emeril.freedesktop.org Mon Jan 20 16:43:23 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 16:43:23 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Ffault=5Fi?= =?utf-8?q?njection=3A_Inject_errors_during_xe=5Fguc=5Fct=5Fsend=5Frecv_=26_?= =?utf-8?q?xe=5Fguc=5Fmmio=5Fsend=5Frecv_=28rev3=29?= In-Reply-To: <20250120122835.10511-1-satyanarayana.k.v.p@intel.com> References: <20250120122835.10511-1-satyanarayana.k.v.p@intel.com> Message-ID: <173739140336.2231713.17763284618693899234@b555e5b46a47> == Series Details == Series: tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv & xe_guc_mmio_send_recv (rev3) URL : https://patchwork.freedesktop.org/series/142999/ State : failure == Summary == CI Bug Log - changes from XEIGT_8199_full -> XEIGTPW_12464_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12464_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12464_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_12464_full: ### IGT changes ### #### Possible regressions #### * igt at core_setmaster@master-drop-set-user: - shard-bmg: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at core_setmaster@master-drop-set-user.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at core_setmaster@master-drop-set-user.html * igt at kms_flip@flip-vs-suspend at c-dp4: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_flip@flip-vs-suspend at c-dp4.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-435/igt at kms_flip@flip-vs-suspend at c-dp4.html * igt at xe_drm_fdinfo@utilization-others-idle: - shard-lnl: NOTRUN -> [INCOMPLETE][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-8/igt at xe_drm_fdinfo@utilization-others-idle.html * igt at xe_exec_reset@close-fd-no-exec: - shard-lnl: [PASS][6] -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-7/igt at xe_exec_reset@close-fd-no-exec.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-5/igt at xe_exec_reset@close-fd-no-exec.html * {igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv} (NEW): - shard-bmg: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv.html - shard-dg2-set2: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv.html - shard-lnl: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-1/igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv.html * igt at xe_fault_injection@inject-fault-probe-function-xe_guc_mmio_send_recv (NEW): - shard-bmg: NOTRUN -> [FAIL][11] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-2/igt at xe_fault_injection@inject-fault-probe-function-xe_guc_mmio_send_recv.html - shard-lnl: NOTRUN -> [FAIL][12] [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-2/igt at xe_fault_injection@inject-fault-probe-function-xe_guc_mmio_send_recv.html New tests --------- New tests have been introduced between XEIGT_8199_full and XEIGTPW_12464_full: ### New IGT tests (4) ### * igt at kms_atomic_interruptible@legacy-cursor at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [6.27] s * igt at kms_hdr@invalid-hdr at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [1.30] s * igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_fault_injection@inject-fault-probe-function-xe_guc_mmio_send_recv: - Statuses : 2 fail(s) - Exec time: [0.01, 0.02] s Known issues ------------ Here are the changes found in XEIGTPW_12464_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotreplug: - shard-bmg: [PASS][13] -> [SKIP][14] ([Intel XE#1885]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at core_hotunplug@hotreplug.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at core_hotunplug@hotreplug.html * igt at core_setmaster@master-drop-set-user: - shard-dg2-set2: [PASS][15] -> [FAIL][16] ([Intel XE#3249]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at core_setmaster@master-drop-set-user.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at core_setmaster@master-drop-set-user.html * igt at fbdev@nullptr: - shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2134]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at fbdev@nullptr.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at fbdev@nullptr.html - shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#2134]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at fbdev@nullptr.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at fbdev@nullptr.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1125]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-8/igt at intel_hwmon@hwmon-write.html * igt at kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][22] -> [FAIL][23] ([Intel XE#827]) +1 other test fail [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_async_flips@alternate-sync-async-flip.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-2/igt at kms_async_flips@alternate-sync-async-flip.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: NOTRUN -> [FAIL][24] ([Intel XE#3719]) +3 other tests fail [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/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-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#3767]) +23 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-433/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-edp-1: - shard-lnl: [PASS][26] -> [FAIL][27] ([Intel XE#3908]) +1 other test fail [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-7/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-edp-1.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-8/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-edp-1.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [PASS][28] -> [SKIP][29] ([Intel XE#2136]) +20 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@linear-16bpp-rotate-0: - shard-dg2-set2: [PASS][30] -> [SKIP][31] ([Intel XE#2136]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@linear-16bpp-rotate-0.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_big_fb@linear-16bpp-rotate-0.html * igt at kms_big_fb@linear-64bpp-rotate-0: - shard-lnl: NOTRUN -> [DMESG-WARN][32] ([Intel XE#1725]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-7/igt at kms_big_fb@linear-64bpp-rotate-0.html * igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [PASS][33] -> [SKIP][34] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@x-tiled-8bpp-rotate-180: - shard-dg2-set2: [PASS][35] -> [INCOMPLETE][36] ([Intel XE#3225]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_big_fb@x-tiled-8bpp-rotate-180.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/igt at kms_big_fb@x-tiled-8bpp-rotate-180.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#316]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-433/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1407]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-8/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#2136]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1124]) +5 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-433/igt at kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#607]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/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: NOTRUN -> [SKIP][42] ([Intel XE#610]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-433/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1428]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-8/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1124]) +5 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-7/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#2423] / [i915#2575]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#2191]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-4/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#2191]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#367]) +7 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1512]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-4/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#455] / [Intel XE#787]) +26 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-433/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2887]) +8 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-1/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#3432]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-8/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#2907]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-436/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#787]) +139 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-434/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-dp-4.html * igt at kms_cdclk@mode-transition at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#314]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-433/igt at kms_cdclk@mode-transition at pipe-d-dp-4.html * igt at kms_cdclk@plane-scaling at pipe-b-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1152]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-432/igt at kms_cdclk@plane-scaling at pipe-b-dp-2.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#306]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-7/igt at kms_chamelium_color@ctm-blue-to-red.html - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#306]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-434/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#373]) +6 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-433/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#373]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-4/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#307]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/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-2: - shard-bmg: NOTRUN -> [FAIL][62] ([Intel XE#1178]) +1 other test fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-4/igt at kms_content_protection@lic-type-0 at pipe-a-dp-2.html * igt at kms_content_protection@type1: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#3278]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-8/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1424]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-7/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#308]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#3007]) +7 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [PASS][68] -> [SKIP][69] ([Intel XE#2291]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/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-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#323]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-432/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#323]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-2/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][72] ([Intel XE#3383]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-5/igt at kms_display_modes@extended-mode-basic.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#701]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-434/igt at kms_feature_discovery@chamelium.html - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#701]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-5/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#702]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-1/igt at kms_feature_discovery@display-2x.html - shard-bmg: [PASS][76] -> [SKIP][77] ([Intel XE#2373]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_feature_discovery@display-2x.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_feature_discovery@display-2x.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3: - shard-bmg: [PASS][78] -> [FAIL][79] ([Intel XE#3321]) +2 other tests fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-2/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 bc-hdmi-a2-dp2: - shard-dg2-set2: [PASS][80] -> [FAIL][81] ([Intel XE#301]) +6 other tests fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a2-dp2.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-432/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a2-dp2.html * igt at kms_flip@2x-flip-vs-modeset: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1421]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-4/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][83] -> [SKIP][84] ([Intel XE#2423]) +85 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb-recreate.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [PASS][85] -> [SKIP][86] ([Intel XE#2316]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@absolute-wf_vblank: - shard-dg2-set2: [PASS][87] -> [SKIP][88] ([Intel XE#2423] / [i915#2575]) +12 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_flip@absolute-wf_vblank.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_flip@absolute-wf_vblank.html * igt at kms_flip@flip-vs-blocking-wf-vblank 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_8199/shard-lnl-3/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-8/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [PASS][91] -> [INCOMPLETE][92] ([Intel XE#2597]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_flip@flip-vs-suspend.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-435/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [PASS][93] -> [INCOMPLETE][94] ([Intel XE#2597]) +3 other tests incomplete [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-2/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a3: - shard-bmg: [PASS][95] -> [FAIL][96] ([Intel XE#2882]) +1 other test fail [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a3.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a3.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2293]) +4 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1401]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1401] / [Intel XE#1745]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1397] / [Intel XE#1745]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/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][101] ([Intel XE#1397]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/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-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2380]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#455]) +10 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-435/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#651]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#651]) +17 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#656]) +23 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#658]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2136] / [Intel XE#2351]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#653]) +17 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#309]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-2/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-factor-0-25 at pipe-c: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2763]) +7 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-3/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/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][114] ([Intel XE#2763]) +5 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-435/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#870]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-434/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2938]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-434/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-dpms-negative: - shard-bmg: [PASS][117] -> [SKIP][118] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_pm_dc@dc5-dpms-negative.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_pm_dc@dc5-dpms-negative.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1129]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-436/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@cursor: - shard-bmg: [PASS][120] -> [SKIP][121] ([Intel XE#2446]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_pm_rpm@cursor.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_pm_rpm@cursor.html - shard-dg2-set2: [PASS][122] -> [SKIP][123] ([Intel XE#2446]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_pm_rpm@cursor.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_pm_rpm@cursor.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1439] / [Intel XE#3141]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-8/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1489]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1122]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1406]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-6/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2850] / [Intel XE#929]) +11 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/igt at kms_psr@psr-dpms.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#3414]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-432/igt at kms_rotation_crc@primary-rotation-90.html - 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_12464/shard-lnl-4/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1435]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-2/igt at kms_setmode@invalid-clone-single-crtc.html - shard-bmg: [PASS][132] -> [SKIP][133] ([Intel XE#1435]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_setmode@invalid-clone-single-crtc.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_sysfs_edid_timing: - shard-dg2-set2: [PASS][134] -> [FAIL][135] ([Intel XE#1174]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_sysfs_edid_timing.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-433/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#362]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-2/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [PASS][137] -> [ABORT][138] ([Intel XE#2625] / [Intel XE#4057]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_vblank@ts-continuation-suspend.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][139] ([Intel XE#2625] / [Intel XE#4057]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2168]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-432/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#756]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-4/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#756]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-433/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#3889]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-434/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#3889]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-2/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug_online@preempt-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#2905]) +4 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-434/igt at xe_eudebug_online@preempt-breakpoint.html - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#2905]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-5/igt at xe_eudebug_online@preempt-breakpoint.html * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#688]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-6/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [PASS][148] -> [SKIP][149] ([Intel XE#1392]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1392]) +5 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-4/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_exec_basic@twice-bindexecqueue-userptr-invalidate: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#1130]) +4 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at xe_exec_basic@twice-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#288]) +14 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][153] ([Intel XE#1999]) +2 other tests fail [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-436/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#4045]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-2/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#512]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-432/igt at xe_mmap@small-bar.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#2541] / [Intel XE#3573]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-436/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#977]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/igt at xe_pat@pat-index-xe2.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][158] ([Intel XE#1173]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_peer2peer@write: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1061]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-8/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#2284] / [Intel XE#366]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-433/igt at xe_pm@d3cold-mmap-vram.html - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#2284] / [Intel XE#366]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-7/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#1948]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-5/igt at xe_pm@d3hot-mmap-vram.html * igt at xe_pm@s3-basic-exec: - shard-dg2-set2: [PASS][163] -> [ABORT][164] ([Intel XE#1358]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_pm@s3-basic-exec.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-432/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s3-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#584]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-4/igt at xe_pm@s3-vm-bind-unbind-all.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-dg2-set2: [PASS][166] -> [ABORT][167] ([Intel XE#1358] / [Intel XE#1794]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at xe_pm@s4-vm-bind-unbind-all.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-432/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#579]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#944]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#944]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-1/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_query@query-gt-list: - shard-bmg: [PASS][171] -> [SKIP][172] ([Intel XE#1130]) +219 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_query@query-gt-list.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at xe_query@query-gt-list.html * igt at xe_vm@munmap-style-unbind-many-either-side-partial: - shard-dg2-set2: [PASS][173] -> [SKIP][174] ([Intel XE#1130]) +13 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_vm@munmap-style-unbind-many-either-side-partial.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at xe_vm@munmap-style-unbind-many-either-side-partial.html #### Possible fixes #### * igt at core_hotunplug@hotrebind: - shard-bmg: [SKIP][175] ([Intel XE#1885]) -> [PASS][176] +1 other test pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at core_hotunplug@hotrebind.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-5/igt at core_hotunplug@hotrebind.html * igt at core_setmaster@master-drop-set-root: - shard-bmg: [FAIL][177] ([Intel XE#3249]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at core_setmaster@master-drop-set-root.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-3/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@pan: - shard-bmg: [SKIP][179] ([Intel XE#2134]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at fbdev@pan.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-1/igt at fbdev@pan.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [SKIP][181] ([Intel XE#2136]) -> [PASS][182] +16 other tests pass [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@linear-16bpp-rotate-180.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][183] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][184] +1 other test pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-5/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [SKIP][185] ([Intel XE#2136]) -> [PASS][186] +5 other tests pass [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-433/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [DMESG-WARN][187] ([Intel XE#1727]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-432/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [SKIP][189] ([Intel XE#2291]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-1/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-bmg: [SKIP][191] ([Intel XE#2423]) -> [PASS][192] +68 other tests pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][193] ([Intel XE#2425]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-2/igt at kms_display_modes@extended-mode-basic.html * igt at kms_draw_crc@fill-fb: - shard-dg2-set2: [SKIP][195] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_draw_crc@fill-fb.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-434/igt at kms_draw_crc@fill-fb.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][197] -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/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][199] ([Intel XE#3321]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-bmg: [SKIP][201] ([Intel XE#2316]) -> [PASS][202] +1 other test pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-interruptible.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-1/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][203] ([Intel XE#886]) -> [PASS][204] +4 other tests pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_flip@blocking-wf_vblank.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-7/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4: - shard-dg2-set2: [FAIL][205] ([Intel XE#301]) -> [PASS][206] +3 other tests pass [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at d-dp4.html * igt at kms_flip@plain-flip-fb-recreate: - shard-bmg: [FAIL][207] ([Intel XE#2882]) -> [PASS][208] +1 other test pass [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_flip@plain-flip-fb-recreate.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-5/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][209] ([Intel XE#2423] / [i915#2575]) -> [PASS][210] +16 other tests pass [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_hdr@invalid-hdr.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/igt at kms_hdr@invalid-hdr.html * igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-bmg: [SKIP][211] ([Intel XE#3007]) -> [PASS][212] +14 other tests pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][213] ([Intel XE#718]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-3/igt at kms_pm_dc@dc5-dpms.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-5/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_rpm@legacy-planes: - shard-dg2-set2: [SKIP][215] ([Intel XE#2446]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_pm_rpm@legacy-planes.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/igt at kms_pm_rpm@legacy-planes.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-bmg: [SKIP][217] ([Intel XE#2446]) -> [PASS][218] +2 other tests pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_psr@psr2-primary-render: - shard-lnl: [FAIL][219] -> [PASS][220] +1 other test pass [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_psr@psr2-primary-render.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-8/igt at kms_psr@psr2-primary-render.html * igt at kms_rmfb@close-fd at pipe-d-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][221] -> [PASS][222] +1 other test pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_rmfb@close-fd at pipe-d-hdmi-a-6.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-436/igt at kms_rmfb@close-fd at pipe-d-hdmi-a-6.html * igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1: - shard-lnl: [FAIL][223] ([Intel XE#899]) -> [PASS][224] +1 other test pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-a-edp-1.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-dg2-set2: [SKIP][225] ([Intel XE#1392]) -> [PASS][226] +3 other tests pass [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html * igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate: - shard-bmg: [SKIP][227] ([Intel XE#1130]) -> [PASS][228] +210 other tests pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-3/igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [ABORT][229] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][230] +1 other test pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_prime_self_import@basic-with_fd_dup: - shard-dg2-set2: [SKIP][231] ([Intel XE#1130]) -> [PASS][232] +23 other tests pass [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_prime_self_import@basic-with_fd_dup.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-435/igt at xe_prime_self_import@basic-with_fd_dup.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][233] ([Intel XE#2233]) -> [SKIP][234] ([Intel XE#2423]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][235] ([Intel XE#2423]) -> [SKIP][236] ([Intel XE#873]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_async_flips@invalid-async-flip.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-3/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][237] ([Intel XE#2423]) -> [SKIP][238] ([Intel XE#2370]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: [SKIP][239] ([Intel XE#2136]) -> [SKIP][240] ([Intel XE#316]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@linear-16bpp-rotate-270.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-434/igt at kms_big_fb@linear-16bpp-rotate-270.html - shard-bmg: [SKIP][241] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][242] ([Intel XE#2327]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@linear-16bpp-rotate-270.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-1/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: [SKIP][243] ([Intel XE#2327]) -> [SKIP][244] ([Intel XE#2136]) +6 other tests skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_big_fb@linear-32bpp-rotate-270.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: [SKIP][245] ([Intel XE#2136]) -> [SKIP][246] ([Intel XE#2327]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@linear-32bpp-rotate-90.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: [SKIP][247] ([Intel XE#1124]) -> [SKIP][248] ([Intel XE#2136]) +9 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][249] ([Intel XE#2136]) -> [SKIP][250] ([Intel XE#607]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][251] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][252] ([Intel XE#1124]) +3 other tests skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html - shard-dg2-set2: [SKIP][253] ([Intel XE#2136]) -> [SKIP][254] ([Intel XE#1124]) +2 other tests skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][255] ([Intel XE#2136]) -> [SKIP][256] ([Intel XE#1124]) +10 other tests skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [SKIP][257] ([Intel XE#1124]) -> [SKIP][258] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg2-set2: [SKIP][259] ([Intel XE#1124]) -> [SKIP][260] ([Intel XE#2136]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/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-2-displays-2160x1440p: - shard-bmg: [SKIP][261] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][262] ([Intel XE#3007]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-bmg: [SKIP][263] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][264] ([Intel XE#2423]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][265] ([Intel XE#2423]) -> [SKIP][266] ([Intel XE#367]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][267] ([Intel XE#2423] / [i915#2575]) -> [SKIP][268] ([Intel XE#367]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-435/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-3-displays-1920x1080p: - shard-bmg: [SKIP][269] ([Intel XE#367]) -> [SKIP][270] ([Intel XE#2423]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_bw@linear-tiling-3-displays-1920x1080p.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_bw@linear-tiling-3-displays-1920x1080p.html * igt at kms_ccs@bad-rotation-90-y-tiled-ccs: - shard-dg2-set2: [SKIP][271] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][272] ([Intel XE#2136]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@bad-rotation-90-y-tiled-ccs.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_ccs@bad-rotation-90-y-tiled-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][273] ([Intel XE#2136]) -> [SKIP][274] ([Intel XE#2887]) +17 other tests skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][275] ([Intel XE#2887]) -> [SKIP][276] ([Intel XE#2136]) +15 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][277] ([Intel XE#2887]) -> [SKIP][278] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs: - shard-dg2-set2: [SKIP][279] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][280] ([Intel XE#455] / [Intel XE#787]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][281] ([Intel XE#2136]) -> [SKIP][282] ([Intel XE#3432]) +3 other tests skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: [SKIP][283] ([Intel XE#3432]) -> [SKIP][284] ([Intel XE#2136]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][285] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][286] ([Intel XE#2887]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][287] ([Intel XE#1727] / [Intel XE#3124]) -> [SKIP][288] ([Intel XE#2136]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/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-ccs: - shard-dg2-set2: [SKIP][289] ([Intel XE#2136]) -> [SKIP][290] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][291] ([Intel XE#2136]) -> [SKIP][292] ([Intel XE#2724]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cdclk@mode-transition.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-1/igt at kms_cdclk@mode-transition.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-bmg: [SKIP][293] ([Intel XE#2252]) -> [SKIP][294] ([Intel XE#3007]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_chamelium_audio@hdmi-audio-edid.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_chamelium_audio@hdmi-audio-edid.html - shard-dg2-set2: [SKIP][295] ([Intel XE#373]) -> [SKIP][296] ([Intel XE#2423] / [i915#2575]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_chamelium_audio@hdmi-audio-edid.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][297] ([Intel XE#2325]) -> [SKIP][298] ([Intel XE#2423]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_chamelium_color@ctm-0-50.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-bmg: [SKIP][299] ([Intel XE#2423]) -> [SKIP][300] ([Intel XE#2325]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_color@ctm-red-to-blue.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_edid@dp-edid-resolution-list: - shard-bmg: [SKIP][301] ([Intel XE#2423]) -> [SKIP][302] ([Intel XE#2252]) +10 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_edid@dp-edid-resolution-list.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_chamelium_edid@dp-edid-resolution-list.html * igt at kms_chamelium_frames@hdmi-crc-single: - shard-bmg: [SKIP][303] ([Intel XE#2252]) -> [SKIP][304] ([Intel XE#2423]) +9 other tests skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_chamelium_frames@hdmi-crc-single.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_chamelium_frames@hdmi-crc-single.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: [SKIP][305] ([Intel XE#3007]) -> [SKIP][306] ([Intel XE#2252]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_chamelium_hpd@dp-hpd-storm.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_chamelium_hpd@dp-hpd-storm.html - shard-dg2-set2: [SKIP][307] ([Intel XE#2423] / [i915#2575]) -> [SKIP][308] ([Intel XE#373]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_chamelium_hpd@dp-hpd-storm.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_content_protection@atomic: - shard-bmg: [SKIP][309] ([Intel XE#2341]) -> [SKIP][310] ([Intel XE#2423]) +2 other tests skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_content_protection@atomic.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_content_protection@atomic.html * igt at kms_content_protection@atomic-dpms: - shard-bmg: [FAIL][311] ([Intel XE#1178]) -> [SKIP][312] ([Intel XE#2341]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_content_protection@atomic-dpms.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-bmg: [SKIP][313] ([Intel XE#3007]) -> [SKIP][314] ([Intel XE#2341]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_content_protection@content-type-change.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-bmg: [SKIP][315] ([Intel XE#2423]) -> [SKIP][316] ([Intel XE#2390]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@dp-mst-lic-type-0.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-5/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-0: - shard-dg2-set2: [SKIP][317] ([Intel XE#307]) -> [SKIP][318] ([Intel XE#2423] / [i915#2575]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_content_protection@dp-mst-type-0.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][319] ([Intel XE#2390]) -> [SKIP][320] ([Intel XE#2423]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_content_protection@dp-mst-type-1.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-bmg: [SKIP][321] ([Intel XE#2423]) -> [FAIL][322] ([Intel XE#1178]) +1 other test fail [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@legacy.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-5/igt at kms_content_protection@legacy.html * igt at kms_content_protection@uevent: - shard-bmg: [SKIP][323] ([Intel XE#2423]) -> [SKIP][324] ([Intel XE#2341]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@uevent.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: [SKIP][325] ([Intel XE#2321]) -> [SKIP][326] ([Intel XE#2423]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_cursor_crc@cursor-offscreen-512x170.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: [SKIP][327] ([Intel XE#2423]) -> [SKIP][328] ([Intel XE#2320]) +4 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-onscreen-32x32.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-5/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-dg2-set2: [SKIP][329] ([Intel XE#2423] / [i915#2575]) -> [SKIP][330] ([Intel XE#455]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_cursor_crc@cursor-random-32x10.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_cursor_crc@cursor-random-32x10.html - shard-bmg: [SKIP][331] ([Intel XE#3007]) -> [SKIP][332] ([Intel XE#2320]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_cursor_crc@cursor-random-32x10.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: [SKIP][333] ([Intel XE#2320]) -> [SKIP][334] ([Intel XE#2423]) +6 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_cursor_crc@cursor-sliding-256x85.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][335] ([Intel XE#2423]) -> [SKIP][336] ([Intel XE#2321]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x512.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-1/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: [SKIP][337] ([Intel XE#2286]) -> [SKIP][338] ([Intel XE#2423]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: [SKIP][339] ([Intel XE#2291]) -> [SKIP][340] ([Intel XE#2423]) +2 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-bmg: [SKIP][341] ([Intel XE#2423]) -> [SKIP][342] ([Intel XE#2286]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-5/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: [SKIP][343] ([Intel XE#2136]) -> [SKIP][344] ([Intel XE#1508]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-2/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][345] ([Intel XE#2423]) -> [SKIP][346] ([Intel XE#2323]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_display_modes@mst-extended-mode-negative.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-1/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dsc@dsc-basic: - shard-bmg: [SKIP][347] ([Intel XE#2136]) -> [SKIP][348] ([Intel XE#2244]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_dsc@dsc-basic.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-2/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-with-formats: - shard-bmg: [SKIP][349] ([Intel XE#2244]) -> [SKIP][350] ([Intel XE#2136]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_dsc@dsc-with-formats.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_dsc@dsc-with-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][351] ([Intel XE#2136]) -> [SKIP][352] ([Intel XE#455]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-433/igt at kms_dsc@dsc-with-output-formats-with-bpc.html - shard-bmg: [SKIP][353] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][354] ([Intel XE#2244]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-1/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][355] ([Intel XE#2136]) -> [SKIP][356] ([Intel XE#776]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_fbcon_fbt@psr-suspend.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-3x: - shard-bmg: [SKIP][357] ([Intel XE#2373]) -> [SKIP][358] ([Intel XE#2423]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_feature_discovery@display-3x.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@display-4x: - shard-bmg: [SKIP][359] ([Intel XE#1138]) -> [SKIP][360] ([Intel XE#2423]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_feature_discovery@display-4x.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][361] ([Intel XE#2423]) -> [SKIP][362] ([Intel XE#2375]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_feature_discovery@dp-mst.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-1/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr2: - shard-bmg: [SKIP][363] ([Intel XE#2374]) -> [SKIP][364] ([Intel XE#2423]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_feature_discovery@psr2.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-modeset: - shard-bmg: [SKIP][365] ([Intel XE#2316]) -> [SKIP][366] ([Intel XE#3007]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip@2x-flip-vs-modeset.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-suspend: - shard-bmg: [SKIP][367] ([Intel XE#2423]) -> [SKIP][368] ([Intel XE#2316]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_flip@2x-flip-vs-suspend.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: [SKIP][369] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][370] ([Intel XE#2136] / [Intel XE#2231]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-dg2-set2: [SKIP][371] ([Intel XE#455]) -> [SKIP][372] ([Intel XE#2136] / [Intel XE#2351]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][373] ([Intel XE#2136]) -> [SKIP][374] ([Intel XE#2380]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: [SKIP][375] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][376] ([Intel XE#2136]) +3 other tests skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/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-upscaling: - shard-bmg: [SKIP][377] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][378] ([Intel XE#2293] / [Intel XE#2380]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][379] ([Intel XE#2136]) -> [SKIP][380] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-1/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: [SKIP][381] ([Intel XE#2136]) -> [SKIP][382] ([Intel XE#2311]) +25 other tests skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][383] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][384] ([Intel XE#2311]) +3 other tests skip [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][385] ([Intel XE#2136]) -> [SKIP][386] ([Intel XE#2312]) +6 other tests skip [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][387] ([Intel XE#2312]) -> [SKIP][388] ([Intel XE#2311]) +5 other tests skip [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][389] ([Intel XE#2136]) -> [SKIP][390] ([Intel XE#2136] / [Intel XE#2231]) +6 other tests skip [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][391] ([Intel XE#2311]) -> [SKIP][392] ([Intel XE#2312]) +10 other tests skip [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][393] ([Intel XE#2312]) -> [SKIP][394] ([Intel XE#2136]) +5 other tests skip [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-dg2-set2: [SKIP][395] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][396] ([Intel XE#651]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][397] ([Intel XE#2136]) -> [FAIL][398] ([Intel XE#2333]) +11 other tests fail [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][399] ([Intel XE#2333]) -> [SKIP][400] ([Intel XE#2136] / [Intel XE#2231]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [FAIL][401] ([Intel XE#2333]) -> [SKIP][402] ([Intel XE#2136]) +17 other tests skip [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [FAIL][403] ([Intel XE#2333]) -> [SKIP][404] ([Intel XE#2312]) +1 other test skip [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][405] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][406] ([Intel XE#2136]) +9 other tests skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][407] ([Intel XE#2312]) -> [FAIL][408] ([Intel XE#2333]) +2 other tests fail [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][409] ([Intel XE#2312]) -> [SKIP][410] ([Intel XE#2136] / [Intel XE#2231]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: [SKIP][411] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][412] ([Intel XE#2333]) +1 other test fail [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][413] ([Intel XE#658]) -> [SKIP][414] ([Intel XE#2136] / [Intel XE#2351]) [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-tiling-y.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-tiling-y.html - shard-bmg: [SKIP][415] ([Intel XE#2352]) -> [SKIP][416] ([Intel XE#2136] / [Intel XE#2231]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-tiling-y.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][417] ([Intel XE#2311]) -> [SKIP][418] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][419] ([Intel XE#651]) -> [SKIP][420] ([Intel XE#2136]) +3 other tests skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy: - shard-dg2-set2: [SKIP][421] ([Intel XE#2136]) -> [SKIP][422] ([Intel XE#651]) +2 other tests skip [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy.html * igt at kms_frontbuffer_tracking@fbcdrrs-suspend: - shard-bmg: [SKIP][423] ([Intel XE#2311]) -> [SKIP][424] ([Intel XE#2136]) +27 other tests skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-suspend.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-suspend.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][425] ([Intel XE#2313]) -> [SKIP][426] ([Intel XE#2136]) +27 other tests skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][427] ([Intel XE#2136]) -> [SKIP][428] ([Intel XE#653]) +1 other test skip [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][429] ([Intel XE#2313]) -> [SKIP][430] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html - shard-dg2-set2: [SKIP][431] ([Intel XE#653]) -> [SKIP][432] ([Intel XE#2136] / [Intel XE#2351]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][433] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][434] ([Intel XE#2352]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-dg2-set2: [SKIP][435] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][436] ([Intel XE#658]) [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][437] ([Intel XE#653]) -> [SKIP][438] ([Intel XE#2136]) [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][439] ([Intel XE#2136]) -> [SKIP][440] ([Intel XE#2313]) +29 other tests skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][441] ([Intel XE#2312]) -> [SKIP][442] ([Intel XE#2313]) +5 other tests skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][443] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][444] ([Intel XE#653]) +1 other test skip [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][445] ([Intel XE#2313]) -> [SKIP][446] ([Intel XE#2312]) +9 other tests skip [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][447] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][448] ([Intel XE#2313]) +4 other tests skip [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][449] ([Intel XE#2502]) -> [SKIP][450] ([Intel XE#2423]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_getfb@getfb-reject-ccs.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][451] ([Intel XE#2423]) -> [SKIP][452] ([Intel XE#2340]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_getfb@getfb2-accept-ccs.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-3/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][453] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][454] ([Intel XE#2423]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_hdr@brightness-with-hdr.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_hdr@brightness-with-hdr.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][455] ([Intel XE#2136]) -> [SKIP][456] ([Intel XE#2934]) [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_joiner@basic-force-ultra-joiner.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-2/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][457] ([Intel XE#2423]) -> [SKIP][458] ([Intel XE#2393]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_lowres@tiling-y.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-5/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][459] ([Intel XE#2423]) -> [SKIP][460] ([Intel XE#2493]) +1 other test skip [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_multiple@tiling-yf.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-1/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][461] ([Intel XE#2571]) -> [SKIP][462] ([Intel XE#2423]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-bmg: [SKIP][463] ([Intel XE#2763]) -> [SKIP][464] ([Intel XE#2423]) +2 other tests skip [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][465] ([Intel XE#2423]) -> [SKIP][466] ([Intel XE#2763]) +1 other test skip [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][467] ([Intel XE#2136]) -> [SKIP][468] ([Intel XE#870]) [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_backlight@fade-with-dpms.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-5/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@deep-pkgc: - shard-bmg: [SKIP][469] ([Intel XE#2505]) -> [SKIP][470] ([Intel XE#2136]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_pm_dc@deep-pkgc.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_pm_dc@deep-pkgc.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: [SKIP][471] ([Intel XE#2446]) -> [SKIP][472] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-4/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_properties@connector-properties-legacy: - shard-bmg: [SKIP][473] ([Intel XE#2423]) -> [SKIP][474] ([Intel XE#3007]) +5 other tests skip [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_properties@connector-properties-legacy.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_properties@connector-properties-legacy.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][475] ([Intel XE#2136]) -> [SKIP][476] ([Intel XE#1489]) +9 other tests skip [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-3/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][477] ([Intel XE#1489]) -> [SKIP][478] ([Intel XE#2136]) +1 other test skip [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][479] ([Intel XE#2136]) -> [SKIP][480] ([Intel XE#1489]) +1 other test skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html - shard-bmg: [SKIP][481] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][482] ([Intel XE#1489]) +1 other test skip [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][483] ([Intel XE#1489]) -> [SKIP][484] ([Intel XE#2136]) +9 other tests skip [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_su@page_flip-p010: - shard-bmg: [SKIP][485] ([Intel XE#2387]) -> [SKIP][486] ([Intel XE#2136]) [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr2_su@page_flip-p010.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-cursor-blt: - shard-bmg: [SKIP][487] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][488] ([Intel XE#2136]) +13 other tests skip [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_psr@fbc-pr-cursor-blt.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_psr@fbc-pr-cursor-blt.html * igt at kms_psr@fbc-psr-suspend: - shard-dg2-set2: [SKIP][489] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][490] ([Intel XE#2850] / [Intel XE#929]) [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@fbc-psr-suspend.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-433/igt at kms_psr@fbc-psr-suspend.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-bmg: [SKIP][491] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][492] ([Intel XE#2234] / [Intel XE#2850]) [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-2/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@pr-no-drrs: - shard-dg2-set2: [SKIP][493] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][494] ([Intel XE#2136]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_psr@pr-no-drrs.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at kms_psr@pr-no-drrs.html * igt at kms_psr@psr2-cursor-plane-onoff: - shard-dg2-set2: [SKIP][495] ([Intel XE#2136]) -> [SKIP][496] ([Intel XE#2850] / [Intel XE#929]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@psr2-cursor-plane-onoff.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-436/igt at kms_psr@psr2-cursor-plane-onoff.html * igt at kms_psr@psr2-primary-render: - shard-bmg: [SKIP][497] ([Intel XE#2234]) -> [SKIP][498] ([Intel XE#2136]) [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_psr@psr2-primary-render.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_psr@psr2-primary-render.html * igt at kms_psr@psr2-sprite-blt: - shard-bmg: [SKIP][499] ([Intel XE#2136]) -> [SKIP][500] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr@psr2-sprite-blt.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-4/igt at kms_psr@psr2-sprite-blt.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][501] ([Intel XE#2136]) -> [SKIP][502] ([Intel XE#2414]) [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-bmg: [SKIP][503] ([Intel XE#2423]) -> [SKIP][504] ([Intel XE#2330]) [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][505] ([Intel XE#2330]) -> [SKIP][506] ([Intel XE#2423]) [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][507] ([Intel XE#2423] / [i915#2575]) -> [SKIP][508] ([Intel XE#3414]) [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-434/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-bmg: [SKIP][509] ([Intel XE#3007]) -> [SKIP][510] ([Intel XE#3414] / [Intel XE#3904]) [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: [SKIP][511] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][512] ([Intel XE#2423]) +1 other test skip [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][513] ([Intel XE#2423]) -> [SKIP][514] ([Intel XE#2413]) [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-center.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][515] ([Intel XE#362]) -> [SKIP][516] ([Intel XE#1500]) [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-433/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@ts-continuation-modeset-rpm: - shard-bmg: [SKIP][517] ([Intel XE#3007]) -> [SKIP][518] ([Intel XE#2423]) +6 other tests skip [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_vblank@ts-continuation-modeset-rpm.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_vblank@ts-continuation-modeset-rpm.html * igt at kms_vrr@cmrr: - shard-bmg: [SKIP][519] ([Intel XE#2423]) -> [SKIP][520] ([Intel XE#2168]) [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_vrr@cmrr.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_vrr@cmrr.html * igt at kms_vrr@flipline: - shard-bmg: [SKIP][521] ([Intel XE#1499]) -> [SKIP][522] ([Intel XE#2423]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_vrr@flipline.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_vrr@flipline.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][523] ([Intel XE#3007]) -> [SKIP][524] ([Intel XE#1499]) [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_vrr@seamless-rr-switch-drrs.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-1/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][525] ([Intel XE#2423]) -> [SKIP][526] ([Intel XE#1499]) +1 other test skip [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-virtual.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-check-output: - shard-bmg: [SKIP][527] ([Intel XE#756]) -> [SKIP][528] ([Intel XE#2423]) [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_writeback@writeback-check-output.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][529] ([Intel XE#2423]) -> [SKIP][530] ([Intel XE#756]) +1 other test skip [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_writeback@writeback-invalid-parameters.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at kms_writeback@writeback-invalid-parameters.html * igt at xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][531] ([Intel XE#1130]) -> [SKIP][532] ([Intel XE#1126]) [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0x369.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0x369.html * igt at xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][533] ([Intel XE#1130]) -> [SKIP][534] ([Intel XE#2504]) [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_create@multigpu-create-massive-size.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-6/igt at xe_create@multigpu-create-massive-size.html * igt at xe_eudebug@attach-debug-metadata: - shard-dg2-set2: [SKIP][535] ([Intel XE#2905]) -> [SKIP][536] ([Intel XE#1130]) [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at xe_eudebug@attach-debug-metadata.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at xe_eudebug@attach-debug-metadata.html * igt at xe_eudebug@basic-exec-queues: - shard-bmg: [SKIP][537] ([Intel XE#2905]) -> [SKIP][538] ([Intel XE#1130]) +9 other tests skip [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_eudebug@basic-exec-queues.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at xe_eudebug@basic-exec-queues.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][539] ([Intel XE#1130]) -> [SKIP][540] ([Intel XE#2905]) +14 other tests skip [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-bmg: [SKIP][541] ([Intel XE#1130]) -> [SKIP][542] ([Intel XE#3889]) [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: [SKIP][543] ([Intel XE#3889]) -> [SKIP][544] ([Intel XE#1130]) +1 other test skip [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-dg2-set2: [SKIP][545] ([Intel XE#3889]) -> [SKIP][546] ([Intel XE#1130]) [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt at xe_eudebug@sysfs-toggle: - shard-dg2-set2: [SKIP][547] ([Intel XE#1130]) -> [SKIP][548] ([Intel XE#2905]) +2 other tests skip [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_eudebug@sysfs-toggle.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-436/igt at xe_eudebug@sysfs-toggle.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind: - shard-bmg: [SKIP][549] ([Intel XE#2322]) -> [SKIP][550] ([Intel XE#1130]) +10 other tests skip [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][551] ([Intel XE#1130]) -> [SKIP][552] ([Intel XE#2322]) +11 other tests skip [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_exec_basic@multigpu-once-null-rebind.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-2/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@many-execqueues-rebind: - shard-dg2-set2: [SKIP][553] ([Intel XE#1130]) -> [SKIP][554] ([Intel XE#288]) +4 other tests skip [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_fault_mode@many-execqueues-rebind.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at xe_exec_fault_mode@many-execqueues-rebind.html * igt at xe_exec_fault_mode@once-invalid-fault: - shard-dg2-set2: [SKIP][555] ([Intel XE#288]) -> [SKIP][556] ([Intel XE#1130]) +2 other tests skip [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at xe_exec_fault_mode@once-invalid-fault.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at xe_exec_fault_mode@once-invalid-fault.html * igt at xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: [SKIP][557] ([Intel XE#2360]) -> [SKIP][558] ([Intel XE#1130]) [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][559] ([Intel XE#2459] / [Intel XE#2596]) -> [SKIP][560] ([Intel XE#1130]) [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_media_fill@media-fill.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at xe_media_fill@media-fill.html * igt at xe_oa@oa-regs-whitelisted: - shard-dg2-set2: [SKIP][561] ([Intel XE#1130]) -> [SKIP][562] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_oa@oa-regs-whitelisted.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-434/igt at xe_oa@oa-regs-whitelisted.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][563] ([Intel XE#1130]) -> [SKIP][564] ([Intel XE#2248]) [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_oa@unprivileged-single-ctx-counters.html [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-5/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][565] ([Intel XE#1130]) -> [SKIP][566] ([Intel XE#2245]) [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_pat@pat-index-xelp.html [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at xe_pat@pat-index-xelp.html * igt at xe_peer2peer@read: - shard-dg2-set2: [SKIP][567] ([Intel XE#1061]) -> [FAIL][568] ([Intel XE#1173]) [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_peer2peer@read.html [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/igt at xe_peer2peer@read.html * igt at xe_pm@d3cold-mocs: - shard-bmg: [SKIP][569] ([Intel XE#1130]) -> [SKIP][570] ([Intel XE#2284]) +2 other tests skip [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_pm@d3cold-mocs.html [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-5/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-bmg: [SKIP][571] ([Intel XE#2284]) -> [SKIP][572] ([Intel XE#1130]) +1 other test skip [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at xe_pm@s3-d3cold-basic-exec.html [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_query@multigpu-query-gt-list: - shard-bmg: [SKIP][573] ([Intel XE#944]) -> [SKIP][574] ([Intel XE#1130]) +2 other tests skip [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at xe_query@multigpu-query-gt-list.html [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-7/igt at xe_query@multigpu-query-gt-list.html * igt at xe_query@multigpu-query-invalid-extension: - shard-bmg: [SKIP][575] ([Intel XE#1130]) -> [SKIP][576] ([Intel XE#944]) +5 other tests skip [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_query@multigpu-query-invalid-extension.html [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][577] ([Intel XE#1130]) -> [SKIP][578] ([Intel XE#944]) [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-guc.html [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-463/igt at xe_query@multigpu-query-uc-fw-version-guc.html * igt at xe_sriov_auto_provisioning@exclusive-ranges: - shard-bmg: [SKIP][579] -> [SKIP][580] ([Intel XE#1130]) [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at xe_sriov_auto_provisioning@exclusive-ranges.html [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-bmg-8/igt at xe_sriov_auto_provisioning@exclusive-ranges.html - shard-dg2-set2: [SKIP][581] -> [SKIP][582] ([Intel XE#1130]) [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_sriov_auto_provisioning@exclusive-ranges.html [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/shard-dg2-466/igt at xe_sriov_auto_provisioning@exclusive-ranges.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [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#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1174 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [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#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#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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [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#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#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#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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [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#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#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#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#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#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [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#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#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [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#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4057]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4057 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [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#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8199 -> IGTPW_12464 IGTPW_12464: 2e5f5276b2df47e037ce89c51e4435e88d086f91 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12464/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From george.zhang at amd.com Mon Jan 20 17:10:14 2025 From: george.zhang at amd.com (george.zhang at amd.com) Date: Mon, 20 Jan 2025 12:10:14 -0500 Subject: [PATCH] tests/kms_addfb_basic: Fix addfb25_tests to not require intel Message-ID: <20250120171021.1029868-1-george.zhang@amd.com> From: George Zhang This test does not require running on intel devices, so move it under the display_require. It was accidentally moved under the igt_require_intel fixture when it was meant to be moved under the igt_display_require. Fixes: 109d23b91a30 ("tests/kms_addfb_basic: fix x-tiled tests for case when there is no x-tile) Signed-off-by: George Zhang --- tests/kms_addfb_basic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c index 3ba87117b..30ca8b016 100644 --- a/tests/kms_addfb_basic.c +++ b/tests/kms_addfb_basic.c @@ -1022,11 +1022,11 @@ igt_main size_tests(fd); + addfb25_tests(fd); + igt_fixture igt_require_intel(fd); - addfb25_tests(fd); - addfb25_ytile(fd); addfb25_4tile(fd); -- 2.43.0 From patchwork at emeril.freedesktop.org Mon Jan 20 17:16:31 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 17:16:31 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/xe=5Fdebugfs=3A_Impr?= =?utf-8?q?ove_test=5Fgt_subtest_=28rev3=29?= In-Reply-To: <20250113134558.947544-1-pravalika.gurram@intel.com> References: <20250113134558.947544-1-pravalika.gurram@intel.com> Message-ID: <173739339160.2233545.621232790157951355@b555e5b46a47> == Series Details == Series: tests/xe_debugfs: Improve test_gt subtest (rev3) URL : https://patchwork.freedesktop.org/series/143322/ State : failure == Summary == CI Bug Log - changes from XEIGT_8199_full -> XEIGTPW_12465_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12465_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12465_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_12465_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@flip-vs-suspend-interruptible at b-edp1: - shard-lnl: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-7/igt at kms_flip@flip-vs-suspend-interruptible at b-edp1.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html * igt at kms_flip@flip-vs-suspend at d-dp4: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_flip@flip-vs-suspend at d-dp4.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at kms_flip@flip-vs-suspend at d-dp4.html * igt at kms_pm_rpm@cursor: - shard-lnl: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-4/igt at kms_pm_rpm@cursor.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-4/igt at kms_pm_rpm@cursor.html Known issues ------------ Here are the changes found in XEIGTPW_12465_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotunbind-rebind: - shard-bmg: [PASS][7] -> [SKIP][8] ([Intel XE#1885]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at core_hotunplug@hotunbind-rebind.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at core_hotunplug@hotunbind-rebind.html * igt at core_setmaster@master-drop-set-user: - shard-bmg: [PASS][9] -> [FAIL][10] ([Intel XE#3249]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at core_setmaster@master-drop-set-user.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at core_setmaster@master-drop-set-user.html * igt at fbdev@info: - shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#2134]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at fbdev@info.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at fbdev@info.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1125]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-3/igt at intel_hwmon@hwmon-write.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: NOTRUN -> [FAIL][14] ([Intel XE#3719]) +3 other tests fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/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-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#3767]) +23 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_atomic_interruptible@legacy-cursor: - shard-bmg: [PASS][16] -> [INCOMPLETE][17] ([Intel XE#4116]) +1 other test incomplete [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_atomic_interruptible@legacy-cursor.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-5/igt at kms_atomic_interruptible@legacy-cursor.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-bmg: [PASS][18] -> [SKIP][19] ([Intel XE#2136]) +15 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@linear-64bpp-rotate-0: - shard-lnl: NOTRUN -> [DMESG-WARN][20] ([Intel XE#1725]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-1/igt at kms_big_fb@linear-64bpp-rotate-0.html * igt at kms_big_fb@x-tiled-8bpp-rotate-180: - shard-dg2-set2: [PASS][21] -> [SKIP][22] ([Intel XE#2136] / [Intel XE#2351]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_big_fb@x-tiled-8bpp-rotate-180.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_big_fb@x-tiled-8bpp-rotate-180.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#316]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1407]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-1/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +6 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#607]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-463/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: NOTRUN -> [SKIP][27] ([Intel XE#610]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-433/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1428]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-4/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-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_12465/shard-lnl-3/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#367]) +4 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-435/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2191]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-3/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [PASS][32] -> [SKIP][33] ([Intel XE#2314] / [Intel XE#2894]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2191]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1512]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-6/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#2887]) +10 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-1/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#787]) +118 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#3862]) +1 other test incomplete [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][40] -> [ABORT][41] ([Intel XE#2625]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][42] ([Intel XE#2625]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-d-dp-2.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#2907]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4: - shard-dg2-set2: [PASS][45] -> [INCOMPLETE][46] ([Intel XE#3124]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][47] -> [DMESG-WARN][48] ([Intel XE#1727]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-hdmi-a-6.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#455] / [Intel XE#787]) +25 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-433/igt at kms_ccs@random-ccs-data-yf-tiled-ccs at pipe-d-dp-4.html * igt at kms_cdclk@mode-transition at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#314]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-436/igt at kms_cdclk@mode-transition at pipe-d-dp-4.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#306]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-6/igt at kms_chamelium_color@ctm-blue-to-red.html - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#306]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#373]) +7 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-433/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#373]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-7/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][55] ([Intel XE#1178]) +2 other tests fail [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_content_protection@atomic at pipe-a-dp-2.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#307]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-6/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][57] ([Intel XE#1178]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_content_protection@legacy at pipe-a-dp-4.html * igt at kms_content_protection@type1: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#3278]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-1/igt at kms_content_protection@type1.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#308]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2321]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-1/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-sliding-128x42: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1424]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-1/igt at kms_cursor_crc@cursor-sliding-128x42.html * igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-bmg: [PASS][62] -> [INCOMPLETE][63] ([Intel XE#3226]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-1/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@cursor-vs-flip-atomic-transitions: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][64] ([Intel XE#2594] / [Intel XE#3226]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-433/igt at kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#323]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#323]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-8/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][67] ([Intel XE#3383]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-1/igt at kms_display_modes@extended-mode-basic.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#701]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-463/igt at kms_feature_discovery@chamelium.html - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#701]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-3/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#702]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-7/igt at kms_feature_discovery@display-2x.html - shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#2373]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_feature_discovery@display-2x.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_feature_discovery@display-2x.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][73] ([Intel XE#301]) +4 other tests fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][74] ([Intel XE#301] / [Intel XE#3321]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-463/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-modeset: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1421]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-6/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][76] -> [SKIP][77] ([Intel XE#2316]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@2x-nonexisting-fb.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_flip@2x-nonexisting-fb.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#886]) +1 other test fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-1/igt at kms_flip@flip-vs-absolute-wf_vblank.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-8/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: - shard-dg2-set2: [PASS][80] -> [FAIL][81] ([Intel XE#301]) +3 other tests fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4.html * igt at kms_flip@flip-vs-suspend: - shard-dg2-set2: [PASS][82] -> [INCOMPLETE][83] ([Intel XE#2597]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_flip@flip-vs-suspend.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][84] ([Intel XE#2597]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-436/igt at kms_flip@flip-vs-suspend-interruptible.html - shard-lnl: NOTRUN -> [FAIL][85] ([Intel XE#4120]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-7/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1401]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2293]) +4 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/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-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1397] / [Intel XE#1745]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-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-default-mode: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1397]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-7/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-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2380]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#651]) +7 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-4/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [PASS][93] -> [SKIP][94] ([Intel XE#2136]) +4 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#656]) +24 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#651]) +18 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/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-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2136] / [Intel XE#2351]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#653]) +20 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_lease@invalid-create-leases: - shard-dg2-set2: [PASS][99] -> [SKIP][100] ([Intel XE#2423] / [i915#2575]) +17 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_lease@invalid-create-leases.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_lease@invalid-create-leases.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#309]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-4/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#2763]) +7 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/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-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_12465/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_12465/shard-dg2-435/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2763]) +11 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-4/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a.html * igt at kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#870]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-463/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2938]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-433/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1129]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-435/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@basic-rte: - shard-bmg: [PASS][109] -> [SKIP][110] ([Intel XE#2446]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_pm_rpm@basic-rte.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_pm_rpm@basic-rte.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-dg2-set2: [PASS][111] -> [SKIP][112] ([Intel XE#2446]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_pm_rpm@dpms-non-lpsp.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1439] / [Intel XE#3141]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-7/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#1489]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-436/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#2893]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-3/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt at kms_psr@fbc-psr2-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at kms_psr@fbc-psr2-dpms.html * igt at kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2136]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_psr@fbc-psr2-sprite-plane-move.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1406]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-2/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_rotation_crc@primary-rotation-90: - 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_12465/shard-lnl-6/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#3414]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-436/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_scaling_modes@scaling-mode-full: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#455]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_sequence@get-idle: - shard-bmg: [PASS][122] -> [SKIP][123] ([Intel XE#2423]) +79 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_sequence@get-idle.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_sequence@get-idle.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1435]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-1/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#362]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-1/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [PASS][126] -> [ABORT][127] ([Intel XE#2625] / [Intel XE#4057]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_vblank@ts-continuation-suspend.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][128] ([Intel XE#2625] / [Intel XE#4057]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2.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_8199/shard-lnl-1/igt at kms_vrr@cmrr at pipe-a-edp-1.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-1/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@flip-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_vrr@flip-dpms.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2168]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#756]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-3/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1091] / [Intel XE#2849]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#3889]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-6/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug_online@preempt-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2905]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at xe_eudebug_online@preempt-breakpoint.html - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#2905]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-1/igt at xe_eudebug_online@preempt-breakpoint.html * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#688]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-8/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt at xe_exec_basic@multigpu-once-basic: - shard-dg2-set2: [PASS][139] -> [SKIP][140] ([Intel XE#1392]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at xe_exec_basic@multigpu-once-basic.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at xe_exec_basic@multigpu-once-basic.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1392]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-5/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#1392]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt at xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#288]) +20 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at xe_exec_fault_mode@once-invalid-userptr-fault.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [PASS][144] -> [SKIP][145] ([Intel XE#1192]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at xe_live_ktest@xe_bo.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][146] ([Intel XE#1999]) +2 other tests fail [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#1130]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at xe_mmap@pci-membarrier-bad-pagesize.html - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#4045]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-3/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#977]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-435/igt at xe_pat@pat-index-xe2.html * igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][151] ([Intel XE#1173]) +1 other test fail [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2284] / [Intel XE#366]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at xe_pm@d3cold-mmap-vram.html - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2284] / [Intel XE#366]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-5/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1948]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-7/igt at xe_pm@d3hot-mmap-vram.html * igt at xe_pm@s3-basic-exec: - shard-dg2-set2: [PASS][155] -> [ABORT][156] ([Intel XE#1358]) +1 other test abort [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_pm@s3-basic-exec.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at xe_pm@s3-basic-exec.html * igt at xe_pm@s3-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#584]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-3/igt at xe_pm@s3-vm-bind-unbind-all.html * igt at xe_pm@s4-d3hot-basic-exec: - shard-dg2-set2: NOTRUN -> [ABORT][158] ([Intel XE#1358]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at xe_pm@s4-d3hot-basic-exec.html * igt at xe_pm@s4-mocs: - shard-lnl: [PASS][159] -> [ABORT][160] ([Intel XE#1358] / [Intel XE#1794]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-4/igt at xe_pm@s4-mocs.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-2/igt at xe_pm@s4-mocs.html * igt at xe_pm@s4-vm-bind-prefetch: - shard-lnl: NOTRUN -> [ABORT][161] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-2/igt at xe_pm@s4-vm-bind-prefetch.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_12465/shard-dg2-434/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#944]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-433/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#944]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-5/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#3342]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-435/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][166] -> [SKIP][167] ([Intel XE#1130]) +190 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html * igt at xe_vm@munmap-style-unbind-many-either-side-partial: - shard-dg2-set2: [PASS][168] -> [SKIP][169] ([Intel XE#1130]) +28 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_vm@munmap-style-unbind-many-either-side-partial.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at xe_vm@munmap-style-unbind-many-either-side-partial.html #### Possible fixes #### * igt at core_hotunplug@hotrebind: - shard-bmg: [SKIP][170] ([Intel XE#1885]) -> [PASS][171] +1 other test pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at core_hotunplug@hotrebind.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-4/igt at core_hotunplug@hotrebind.html * igt at core_setmaster@master-drop-set-root: - shard-bmg: [FAIL][172] ([Intel XE#3249]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at core_setmaster@master-drop-set-root.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-1/igt at core_setmaster@master-drop-set-root.html * igt at kms_addfb_basic@unused-pitches: - shard-dg2-set2: [SKIP][174] ([Intel XE#2423] / [i915#2575]) -> [PASS][175] +14 other tests pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_addfb_basic@unused-pitches.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-436/igt at kms_addfb_basic@unused-pitches.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [SKIP][176] ([Intel XE#2136]) -> [PASS][177] +19 other tests pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@linear-16bpp-rotate-180.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-4/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][178] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][179] +1 other test pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-5/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][180] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-2/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [SKIP][182] ([Intel XE#2136]) -> [PASS][183] +4 other tests pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-463/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [DMESG-WARN][184] ([Intel XE#1727]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/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-d-dp-4: - shard-dg2-set2: [DMESG-WARN][186] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-4.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-bmg: [SKIP][188] ([Intel XE#2291]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-5/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][190] ([Intel XE#877]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][192] ([Intel XE#2425]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-4/igt at kms_display_modes@extended-mode-basic.html * igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][194] ([Intel XE#301]) -> [PASS][195] +2 other tests pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a6-dp4.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank at bc-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-bmg: [SKIP][196] ([Intel XE#2316]) -> [PASS][197] +2 other tests pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-interruptible.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-5/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@plain-flip-fb-recreate: - shard-bmg: [FAIL][198] ([Intel XE#2882]) -> [PASS][199] +1 other test pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_flip@plain-flip-fb-recreate.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_flip@plain-flip-fb-recreate at a-edp1: - shard-lnl: [FAIL][200] ([Intel XE#886]) -> [PASS][201] +1 other test pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-8/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-5/igt at kms_flip@plain-flip-fb-recreate at a-edp1.html * igt at kms_plane_cursor@viewport: - shard-dg2-set2: [FAIL][202] ([Intel XE#616]) -> [PASS][203] +1 other test pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_plane_cursor@viewport.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-435/igt at kms_plane_cursor@viewport.html * igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-bmg: [SKIP][204] ([Intel XE#3007]) -> [PASS][205] +15 other tests pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-1/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [SKIP][206] ([Intel XE#2446]) -> [PASS][207] +4 other tests pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@basic-pci-d3-state.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_pm_rpm@legacy-planes: - shard-dg2-set2: [SKIP][208] ([Intel XE#2446]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_pm_rpm@legacy-planes.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at kms_pm_rpm@legacy-planes.html * igt at kms_properties@connector-properties-legacy: - shard-bmg: [SKIP][210] ([Intel XE#2423]) -> [PASS][211] +78 other tests pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_properties@connector-properties-legacy.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_properties@connector-properties-legacy.html * igt at kms_psr@psr2-primary-render: - shard-lnl: [FAIL][212] -> [PASS][213] +1 other test pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_psr@psr2-primary-render.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-8/igt at kms_psr@psr2-primary-render.html * igt at kms_rmfb@close-fd at pipe-d-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][214] -> [PASS][215] +1 other test pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_rmfb@close-fd at pipe-d-hdmi-a-6.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-433/igt at kms_rmfb@close-fd at pipe-d-hdmi-a-6.html * igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1: - shard-lnl: [FAIL][216] ([Intel XE#899]) -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-lnl-7/igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1.html * igt at xe_exec_balancer@twice-virtual-basic: - shard-dg2-set2: [SKIP][218] ([Intel XE#1130]) -> [PASS][219] +28 other tests pass [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_balancer@twice-virtual-basic.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-435/igt at xe_exec_balancer@twice-virtual-basic.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-dg2-set2: [SKIP][220] ([Intel XE#1392]) -> [PASS][221] +3 other tests pass [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-435/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html * igt at xe_pm@s2idle-vm-bind-userptr: - shard-dg2-set2: [ABORT][222] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-userptr.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-433/igt at xe_pm@s2idle-vm-bind-userptr.html * igt at xe_vm@bind-no-array-conflict: - shard-bmg: [SKIP][224] ([Intel XE#1130]) -> [PASS][225] +217 other tests pass [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at xe_vm@bind-no-array-conflict.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-5/igt at xe_vm@bind-no-array-conflict.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][226] ([Intel XE#2423]) -> [SKIP][227] ([Intel XE#873]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_async_flips@invalid-async-flip.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-5/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][228] ([Intel XE#2423]) -> [SKIP][229] ([Intel XE#2370]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][230] ([Intel XE#2136]) -> [SKIP][231] ([Intel XE#2327]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_big_fb@4-tiled-32bpp-rotate-270.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: [SKIP][232] ([Intel XE#2136]) -> [SKIP][233] ([Intel XE#316]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@linear-16bpp-rotate-270.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-463/igt at kms_big_fb@linear-16bpp-rotate-270.html - shard-bmg: [SKIP][234] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][235] ([Intel XE#2327]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@linear-16bpp-rotate-270.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][236] ([Intel XE#2327]) -> [SKIP][237] ([Intel XE#2136]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: [SKIP][238] ([Intel XE#1124]) -> [SKIP][239] ([Intel XE#2136]) +8 other tests skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html * igt at kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][240] ([Intel XE#1124]) -> [SKIP][241] ([Intel XE#2136]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_big_fb@y-tiled-8bpp-rotate-90.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_big_fb@y-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb: - shard-bmg: [SKIP][242] ([Intel XE#2328]) -> [SKIP][243] ([Intel XE#2136]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_big_fb@y-tiled-addfb.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][244] ([Intel XE#2136]) -> [SKIP][245] ([Intel XE#607]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-4/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][246] ([Intel XE#2136]) -> [SKIP][247] ([Intel XE#1124]) +3 other tests skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-463/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][248] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][249] ([Intel XE#1124]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-3/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][250] ([Intel XE#2136]) -> [SKIP][251] ([Intel XE#1124]) +10 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-1/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-bmg: [SKIP][252] ([Intel XE#2136]) -> [SKIP][253] ([Intel XE#2328]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-2/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][254] ([Intel XE#1124]) -> [SKIP][255] ([Intel XE#2136] / [Intel XE#2351]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_bw@linear-tiling-2-displays-1920x1080p: - shard-dg2-set2: [SKIP][256] ([Intel XE#367]) -> [SKIP][257] ([Intel XE#2423] / [i915#2575]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][258] ([Intel XE#3007]) -> [SKIP][259] ([Intel XE#367]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html - shard-dg2-set2: [SKIP][260] ([Intel XE#2423] / [i915#2575]) -> [SKIP][261] ([Intel XE#367]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-463/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][262] ([Intel XE#367]) -> [SKIP][263] ([Intel XE#2423]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_bw@linear-tiling-2-displays-2560x1440p.html * igt at kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][264] ([Intel XE#2423]) -> [SKIP][265] ([Intel XE#367]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_bw@linear-tiling-4-displays-2160x1440p.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][266] ([Intel XE#2887]) -> [SKIP][267] ([Intel XE#2136]) +15 other tests skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][268] ([Intel XE#2136]) -> [SKIP][269] ([Intel XE#2887]) +18 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-4/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs: - shard-bmg: [SKIP][270] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][271] ([Intel XE#2887]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-2/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html - shard-dg2-set2: [SKIP][272] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][273] ([Intel XE#455] / [Intel XE#787]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-433/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-bmg: [SKIP][274] ([Intel XE#2136]) -> [SKIP][275] ([Intel XE#3432]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: [SKIP][276] ([Intel XE#3432]) -> [SKIP][277] ([Intel XE#2136]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][278] ([Intel XE#2136]) -> [SKIP][279] ([Intel XE#2652] / [Intel XE#787]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/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: - shard-dg2-set2: [SKIP][280] ([Intel XE#2136]) -> [SKIP][281] ([Intel XE#455] / [Intel XE#787]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][282] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][283] ([Intel XE#2136]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-bmg: [SKIP][284] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][285] ([Intel XE#2136]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][286] ([Intel XE#2136]) -> [SKIP][287] ([Intel XE#2724]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cdclk@mode-transition.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-5/igt at kms_cdclk@mode-transition.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-bmg: [SKIP][288] ([Intel XE#2423]) -> [SKIP][289] ([Intel XE#2325]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_color@ctm-red-to-blue.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-2/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_color@degamma: - shard-bmg: [SKIP][290] ([Intel XE#2325]) -> [SKIP][291] ([Intel XE#2423]) +2 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_chamelium_color@degamma.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][292] ([Intel XE#2423]) -> [SKIP][293] ([Intel XE#2252]) +11 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-4/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-bmg: [SKIP][294] ([Intel XE#2252]) -> [SKIP][295] ([Intel XE#2423]) +8 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_frames@dp-frame-dump: - shard-bmg: [SKIP][296] ([Intel XE#3007]) -> [SKIP][297] ([Intel XE#2252]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_chamelium_frames@dp-frame-dump.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-4/igt at kms_chamelium_frames@dp-frame-dump.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-dg2-set2: [SKIP][298] ([Intel XE#2423] / [i915#2575]) -> [SKIP][299] ([Intel XE#373]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_chamelium_hpd@dp-hpd-storm.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg2-set2: [SKIP][300] ([Intel XE#373]) -> [SKIP][301] ([Intel XE#2423] / [i915#2575]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt at kms_content_protection@atomic: - shard-bmg: [SKIP][302] ([Intel XE#2341]) -> [FAIL][303] ([Intel XE#1178]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_content_protection@atomic.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][304] ([Intel XE#2423]) -> [SKIP][305] ([Intel XE#2390]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@dp-mst-type-0.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-4/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-bmg: [SKIP][306] ([Intel XE#2423]) -> [FAIL][307] ([Intel XE#1178]) +1 other test fail [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@legacy.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-1/igt at kms_content_protection@legacy.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][308] ([Intel XE#2341]) -> [SKIP][309] ([Intel XE#2423]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_content_protection@mei-interface.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-bmg: [SKIP][310] ([Intel XE#2423]) -> [SKIP][311] ([Intel XE#2341]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@uevent.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-bmg: [SKIP][312] ([Intel XE#2321]) -> [SKIP][313] ([Intel XE#2423]) +2 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_crc@cursor-onscreen-512x170.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-bmg: [SKIP][314] ([Intel XE#3007]) -> [SKIP][315] ([Intel XE#2320]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_cursor_crc@cursor-random-32x10.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_crc@cursor-random-64x21: - shard-bmg: [SKIP][316] ([Intel XE#2320]) -> [SKIP][317] ([Intel XE#2423]) +3 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_cursor_crc@cursor-random-64x21.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_cursor_crc@cursor-random-64x21.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: [SKIP][318] ([Intel XE#2423]) -> [SKIP][319] ([Intel XE#2320]) +5 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][320] ([Intel XE#2423]) -> [SKIP][321] ([Intel XE#2321]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x512.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-3/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: [SKIP][322] ([Intel XE#2291]) -> [SKIP][323] ([Intel XE#2423]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: [SKIP][324] ([Intel XE#2286]) -> [SKIP][325] ([Intel XE#2423]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-bmg: [SKIP][326] ([Intel XE#2423]) -> [SKIP][327] ([Intel XE#2286]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-2/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: [SKIP][328] ([Intel XE#2136]) -> [SKIP][329] ([Intel XE#1508]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dsc@dsc-basic: - shard-bmg: [SKIP][330] ([Intel XE#2136]) -> [SKIP][331] ([Intel XE#2244]) +2 other tests skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_dsc@dsc-basic.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-2/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-bmg: [SKIP][332] ([Intel XE#2244]) -> [SKIP][333] ([Intel XE#2136]) +2 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_dsc@dsc-fractional-bpp.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][334] ([Intel XE#2136]) -> [SKIP][335] ([Intel XE#455]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-463/igt at kms_dsc@dsc-with-output-formats-with-bpc.html - shard-bmg: [SKIP][336] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][337] ([Intel XE#2244]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_feature_discovery@display-3x: - shard-bmg: [SKIP][338] ([Intel XE#2373]) -> [SKIP][339] ([Intel XE#2423]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_feature_discovery@display-3x.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][340] ([Intel XE#2423]) -> [SKIP][341] ([Intel XE#2375]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_feature_discovery@dp-mst.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][342] -> [SKIP][343] ([Intel XE#2316]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: [SKIP][344] ([Intel XE#2423]) -> [SKIP][345] ([Intel XE#2316]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip@2x-flip-vs-panning-vs-hang.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [SKIP][346] ([Intel XE#2316]) -> [SKIP][347] ([Intel XE#2423]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip@2x-flip-vs-suspend-interruptible.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: [SKIP][348] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][349] ([Intel XE#2136]) +5 other tests skip [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html - shard-dg2-set2: [SKIP][350] ([Intel XE#455]) -> [SKIP][351] ([Intel XE#2136]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][352] ([Intel XE#2136]) -> [SKIP][353] ([Intel XE#2380]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][354] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][355] ([Intel XE#2293] / [Intel XE#2380]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/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-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][356] ([Intel XE#2136]) -> [SKIP][357] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][358] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][359] ([Intel XE#2311]) +4 other tests skip [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html - shard-dg2-set2: [SKIP][360] ([Intel XE#2136]) -> [SKIP][361] ([Intel XE#651]) +2 other tests skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][362] ([Intel XE#2312]) -> [SKIP][363] ([Intel XE#2311]) +6 other tests skip [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][364] ([Intel XE#2311]) -> [SKIP][365] ([Intel XE#2312]) +7 other tests skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][366] ([Intel XE#651]) -> [SKIP][367] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][368] ([Intel XE#2312]) -> [SKIP][369] ([Intel XE#2136]) +3 other tests skip [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt: - shard-bmg: [SKIP][370] ([Intel XE#2136]) -> [SKIP][371] ([Intel XE#2311]) +30 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-dg2-set2: [SKIP][372] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][373] ([Intel XE#651]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][374] ([Intel XE#2136]) -> [FAIL][375] ([Intel XE#2333]) +10 other tests fail [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [FAIL][376] ([Intel XE#2333]) -> [SKIP][377] ([Intel XE#2136]) +12 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-rte.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [FAIL][378] ([Intel XE#2333]) -> [SKIP][379] ([Intel XE#2312]) +2 other tests skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][380] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][381] ([Intel XE#2136]) +13 other tests skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][382] ([Intel XE#2136]) -> [SKIP][383] ([Intel XE#2312]) +7 other tests skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][384] ([Intel XE#2312]) -> [FAIL][385] ([Intel XE#2333]) +3 other tests fail [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: [SKIP][386] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][387] ([Intel XE#2333]) +1 other test fail [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][388] ([Intel XE#651]) -> [SKIP][389] ([Intel XE#2136]) +3 other tests skip [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][390] ([Intel XE#2311]) -> [SKIP][391] ([Intel XE#2136]) +31 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: [SKIP][392] ([Intel XE#2352]) -> [SKIP][393] ([Intel XE#2136]) +1 other test skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][394] ([Intel XE#653]) -> [SKIP][395] ([Intel XE#2136]) +4 other tests skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][396] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][397] ([Intel XE#2313]) +3 other tests skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][398] ([Intel XE#653]) -> [SKIP][399] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][400] ([Intel XE#2136]) -> [SKIP][401] ([Intel XE#653]) +2 other tests skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][402] ([Intel XE#2313]) -> [SKIP][403] ([Intel XE#2136]) +26 other tests skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][404] ([Intel XE#2313]) -> [SKIP][405] ([Intel XE#2312]) +9 other tests skip [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][406] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][407] ([Intel XE#2352]) [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-dg2-set2: [SKIP][408] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][409] ([Intel XE#658]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][410] ([Intel XE#2136]) -> [SKIP][411] ([Intel XE#2313]) +29 other tests skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][412] ([Intel XE#2312]) -> [SKIP][413] ([Intel XE#2313]) +9 other tests skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][414] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][415] ([Intel XE#2312]) +1 other test skip [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][416] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][417] ([Intel XE#653]) +1 other test skip [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][418] ([Intel XE#2502]) -> [SKIP][419] ([Intel XE#2423]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_getfb@getfb-reject-ccs.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][420] ([Intel XE#2423] / [i915#2575]) -> [SKIP][421] ([Intel XE#455]) +3 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_hdr@invalid-hdr.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-435/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][422] ([Intel XE#346]) -> [SKIP][423] ([Intel XE#2136]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_joiner@invalid-modeset-big-joiner.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: [SKIP][424] ([Intel XE#2934]) -> [SKIP][425] ([Intel XE#2136]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: [SKIP][426] ([Intel XE#2927]) -> [SKIP][427] ([Intel XE#2136]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_joiner@invalid-modeset-ultra-joiner.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][428] ([Intel XE#2423]) -> [SKIP][429] ([Intel XE#2501]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-4/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-bmg: [SKIP][430] ([Intel XE#2486]) -> [SKIP][431] ([Intel XE#2423]) +1 other test skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_panel_fitting@legacy.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_panel_fitting@legacy.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-dg2-set2: [ABORT][432] ([Intel XE#2625]) -> [SKIP][433] ([Intel XE#2423] / [i915#2575]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_plane@plane-panning-bottom-right-suspend.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][434] ([Intel XE#2423]) -> [SKIP][435] ([Intel XE#2393]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_lowres@tiling-y.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_lowres@tiling-yf: - shard-bmg: [SKIP][436] ([Intel XE#2393]) -> [SKIP][437] ([Intel XE#2423]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_plane_lowres@tiling-yf.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-none: - shard-bmg: [SKIP][438] ([Intel XE#3007]) -> [SKIP][439] ([Intel XE#2423]) +7 other tests skip [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_plane_multiple@tiling-none.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_plane_multiple@tiling-none.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][440] ([Intel XE#2423]) -> [SKIP][441] ([Intel XE#2493]) +1 other test skip [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_multiple@tiling-yf.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: [SKIP][442] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][443] ([Intel XE#2423] / [i915#2575]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][444] ([Intel XE#2423]) -> [SKIP][445] ([Intel XE#2763]) +2 other tests skip [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-3/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-bmg: [SKIP][446] ([Intel XE#2763]) -> [SKIP][447] ([Intel XE#2423]) +3 other tests skip [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt at kms_pm_backlight@fade: - shard-bmg: [SKIP][448] ([Intel XE#870]) -> [SKIP][449] ([Intel XE#2136]) +1 other test skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_pm_backlight@fade.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_pm_backlight@fade.html * igt at kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][450] ([Intel XE#2136]) -> [SKIP][451] ([Intel XE#870]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_backlight@fade-with-dpms.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: [SKIP][452] ([Intel XE#2499]) -> [SKIP][453] ([Intel XE#2136]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_pm_lpsp@kms-lpsp.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][454] ([Intel XE#2446]) -> [SKIP][455] ([Intel XE#1439] / [Intel XE#836]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-bmg: [SKIP][456] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][457] ([Intel XE#2446]) +1 other test skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_pm_rpm@modeset-lpsp.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: [SKIP][458] ([Intel XE#2446]) -> [SKIP][459] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-2/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][460] ([Intel XE#1489]) -> [SKIP][461] ([Intel XE#2136]) +2 other tests skip [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][462] ([Intel XE#1489]) -> [SKIP][463] ([Intel XE#2136]) +6 other tests skip [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][464] ([Intel XE#2136]) -> [SKIP][465] ([Intel XE#1489]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][466] ([Intel XE#2136]) -> [SKIP][467] ([Intel XE#1489]) +12 other tests skip [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-2/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][468] ([Intel XE#2387]) -> [SKIP][469] ([Intel XE#2136]) [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-blt: - shard-bmg: [SKIP][470] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][471] ([Intel XE#2136]) +15 other tests skip [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_psr@fbc-pr-cursor-blt.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_psr@fbc-pr-cursor-blt.html * igt at kms_psr@fbc-psr-suspend: - shard-dg2-set2: [SKIP][472] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][473] ([Intel XE#2850] / [Intel XE#929]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@fbc-psr-suspend.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-434/igt at kms_psr@fbc-psr-suspend.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: [SKIP][474] ([Intel XE#2136]) -> [SKIP][475] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@pr-suspend: - shard-dg2-set2: [SKIP][476] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][477] ([Intel XE#2136]) +1 other test skip [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_psr@pr-suspend.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_psr@pr-suspend.html * igt at kms_psr@psr2-cursor-plane-onoff: - shard-bmg: [SKIP][478] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][479] ([Intel XE#2234] / [Intel XE#2850]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr@psr2-cursor-plane-onoff.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_psr@psr2-cursor-plane-onoff.html * igt at kms_psr@psr2-primary-render: - shard-bmg: [SKIP][480] ([Intel XE#2234]) -> [SKIP][481] ([Intel XE#2136]) [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_psr@psr2-primary-render.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_psr@psr2-primary-render.html * igt at kms_psr@psr2-sprite-blt: - shard-bmg: [SKIP][482] ([Intel XE#2136]) -> [SKIP][483] ([Intel XE#2234] / [Intel XE#2850]) +14 other tests skip [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr@psr2-sprite-blt.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-4/igt at kms_psr@psr2-sprite-blt.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][484] ([Intel XE#2136]) -> [SKIP][485] ([Intel XE#2414]) [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-4/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][486] ([Intel XE#2330]) -> [SKIP][487] ([Intel XE#2423]) [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][488] ([Intel XE#2423] / [i915#2575]) -> [SKIP][489] ([Intel XE#3414]) [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-bmg: [SKIP][490] ([Intel XE#3007]) -> [SKIP][491] ([Intel XE#3414] / [Intel XE#3904]) [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: [SKIP][492] ([Intel XE#2423]) -> [SKIP][493] ([Intel XE#2330]) +1 other test skip [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][494] ([Intel XE#2423]) -> [SKIP][495] ([Intel XE#2413]) [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-center.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: [SKIP][496] ([Intel XE#1435]) -> [SKIP][497] ([Intel XE#2423]) +1 other test skip [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_setmode@basic-clone-single-crtc.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_vrr@cmrr: - shard-bmg: [SKIP][498] ([Intel XE#2423]) -> [SKIP][499] ([Intel XE#2168]) [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_vrr@cmrr.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-2/igt at kms_vrr@cmrr.html * igt at kms_vrr@lobf: - shard-bmg: [SKIP][500] ([Intel XE#2168]) -> [SKIP][501] ([Intel XE#2423]) [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_vrr@lobf.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_vrr@lobf.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][502] ([Intel XE#3007]) -> [SKIP][503] ([Intel XE#1499]) [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_vrr@seamless-rr-switch-drrs.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][504] ([Intel XE#2423]) -> [SKIP][505] ([Intel XE#1499]) +1 other test skip [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-virtual.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-bmg: [SKIP][506] ([Intel XE#1499]) -> [SKIP][507] ([Intel XE#2423]) +2 other tests skip [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_vrr@seamless-rr-switch-vrr.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-fb-id: - shard-bmg: [SKIP][508] ([Intel XE#2423]) -> [SKIP][509] ([Intel XE#756]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_writeback@writeback-fb-id.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-5/igt at kms_writeback@writeback-fb-id.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: [SKIP][510] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][511] ([Intel XE#2423]) [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][512] ([Intel XE#1130]) -> [SKIP][513] ([Intel XE#2504]) [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_create@multigpu-create-massive-size.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-5/igt at xe_create@multigpu-create-massive-size.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][514] ([Intel XE#3889]) -> [SKIP][515] ([Intel XE#1130]) [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][516] ([Intel XE#1130]) -> [SKIP][517] ([Intel XE#2905]) +13 other tests skip [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-bmg: [SKIP][518] ([Intel XE#1130]) -> [SKIP][519] ([Intel XE#3889]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@sysfs-toggle: - shard-dg2-set2: [SKIP][520] ([Intel XE#1130]) -> [SKIP][521] ([Intel XE#2905]) +1 other test skip [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_eudebug@sysfs-toggle.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-463/igt at xe_eudebug@sysfs-toggle.html * igt at xe_eudebug_online@single-step: - shard-bmg: [SKIP][522] ([Intel XE#2905]) -> [SKIP][523] ([Intel XE#1130]) +9 other tests skip [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_eudebug_online@single-step.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at xe_eudebug_online@single-step.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: [SKIP][524] ([Intel XE#2322]) -> [SKIP][525] ([Intel XE#1130]) +6 other tests skip [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][526] ([Intel XE#1130]) -> [SKIP][527] ([Intel XE#2322]) +9 other tests skip [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@many-execqueues-rebind: - shard-dg2-set2: [SKIP][528] ([Intel XE#1130]) -> [SKIP][529] ([Intel XE#288]) +4 other tests skip [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_fault_mode@many-execqueues-rebind.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-436/igt at xe_exec_fault_mode@many-execqueues-rebind.html * igt at xe_exec_fault_mode@once-rebind: - shard-dg2-set2: [SKIP][530] ([Intel XE#288]) -> [SKIP][531] ([Intel XE#1130]) +6 other tests skip [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at xe_exec_fault_mode@once-rebind.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at xe_exec_fault_mode@once-rebind.html * igt at xe_exec_sip_eudebug@breakpoint-writesip-twice: - shard-dg2-set2: [SKIP][532] ([Intel XE#2905]) -> [SKIP][533] ([Intel XE#1130]) +2 other tests skip [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_exec_sip_eudebug@breakpoint-writesip-twice.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at xe_exec_sip_eudebug@breakpoint-writesip-twice.html * igt at xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][534] ([Intel XE#2833]) -> [SKIP][535] ([Intel XE#1192]) [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at xe_live_ktest@xe_eudebug.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-2/igt at xe_live_ktest@xe_eudebug.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][536] ([Intel XE#2459] / [Intel XE#2596]) -> [SKIP][537] ([Intel XE#1130]) [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_media_fill@media-fill.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at xe_media_fill@media-fill.html * igt at xe_mmap@small-bar: - shard-bmg: [SKIP][538] ([Intel XE#586]) -> [SKIP][539] ([Intel XE#1130]) [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_mmap@small-bar.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at xe_mmap@small-bar.html * igt at xe_oa@non-privileged-map-oa-buffer: - shard-dg2-set2: [SKIP][540] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][541] ([Intel XE#1130]) +1 other test skip [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_oa@non-privileged-map-oa-buffer.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at xe_oa@non-privileged-map-oa-buffer.html * igt at xe_oa@oa-regs-whitelisted: - shard-dg2-set2: [SKIP][542] ([Intel XE#1130]) -> [SKIP][543] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_oa@oa-regs-whitelisted.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-432/igt at xe_oa@oa-regs-whitelisted.html * igt at xe_oa@oa-tlb-invalidate: - shard-bmg: [SKIP][544] ([Intel XE#2248]) -> [SKIP][545] ([Intel XE#1130]) [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at xe_oa@oa-tlb-invalidate.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][546] ([Intel XE#1130]) -> [SKIP][547] ([Intel XE#2248]) [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_oa@unprivileged-single-ctx-counters.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-8/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][548] ([Intel XE#1130]) -> [SKIP][549] ([Intel XE#2245]) [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_pat@pat-index-xelp.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-1/igt at xe_pat@pat-index-xelp.html * igt at xe_pm@d3cold-mocs: - shard-bmg: [SKIP][550] ([Intel XE#1130]) -> [SKIP][551] ([Intel XE#2284]) +1 other test skip [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_pm@d3cold-mocs.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-6/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: [SKIP][552] ([Intel XE#2284]) -> [SKIP][553] ([Intel XE#1130]) +1 other test skip [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at xe_pm@s2idle-d3cold-basic-exec.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at xe_pm@s2idle-d3cold-basic-exec.html - shard-dg2-set2: [SKIP][554] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][555] ([Intel XE#1130]) [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at xe_pm@s2idle-d3cold-basic-exec.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@vram-d3cold-threshold: - shard-bmg: [SKIP][556] ([Intel XE#579]) -> [SKIP][557] ([Intel XE#1130]) [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_pm@vram-d3cold-threshold.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-7/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-config: - shard-bmg: [SKIP][558] ([Intel XE#1130]) -> [SKIP][559] ([Intel XE#944]) +2 other tests skip [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_query@multigpu-query-config.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-bmg-4/igt at xe_query@multigpu-query-config.html * igt at xe_query@multigpu-query-topology-l3-bank-mask: - shard-dg2-set2: [SKIP][560] ([Intel XE#944]) -> [SKIP][561] ([Intel XE#1130]) [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_query@multigpu-query-topology-l3-bank-mask.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/shard-dg2-466/igt at xe_query@multigpu-query-topology-l3-bank-mask.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [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#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#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#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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [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#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [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#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [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#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#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#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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4057]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4057 [Intel XE#4116]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4116 [Intel XE#4120]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4120 [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#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [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#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#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8199 -> IGTPW_12465 IGTPW_12465: a3d9071615dfadb57fe53d45063cad775f4817d2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12465/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From George.Zhang at amd.com Mon Jan 20 17:22:10 2025 From: George.Zhang at amd.com (Zhang, George) Date: Mon, 20 Jan 2025 17:22:10 +0000 Subject: [PATCH] tests/kms_addfb_basic: Fix addfb25_tests to not require intel In-Reply-To: <20250120171021.1029868-1-george.zhang@amd.com> References: <20250120171021.1029868-1-george.zhang@amd.com> Message-ID: [AMD Official Use Only - AMD Internal Distribution Only] > From: Zhang, George > Sent: Monday, January 20, 2025 12:10 PM > To: igt-dev at lists.freedesktop.org > Cc: juha-pekka.heikkila at intel.com; Clinton.A.Taylor at intel.com; Zhang, George > > Subject: [PATCH] tests/kms_addfb_basic: Fix addfb25_tests to not require intel > > From: George Zhang > > This test does not require running on intel devices, so move it under the > display_require. > > It was accidentally moved under the igt_require_intel fixture when it was meant to > be moved under the igt_display_require. > > Fixes: 109d23b91a30 ("tests/kms_addfb_basic: fix x-tiled tests for case when there > is no x-tile) > > Signed-off-by: George Zhang Cc: Juha-pekka Heikkila Cc: Clint Taylor Add Cc since I forgot > --- > tests/kms_addfb_basic.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c index > 3ba87117b..30ca8b016 100644 > --- a/tests/kms_addfb_basic.c > +++ b/tests/kms_addfb_basic.c > @@ -1022,11 +1022,11 @@ igt_main > > size_tests(fd); > > + addfb25_tests(fd); > + > igt_fixture > igt_require_intel(fd); > > - addfb25_tests(fd); > - > addfb25_ytile(fd); > > addfb25_4tile(fd); > -- > 2.43.0 From juhapekka.heikkila at gmail.com Mon Jan 20 17:50:11 2025 From: juhapekka.heikkila at gmail.com (=?UTF-8?Q?Juha=2DPekka_Heikkil=C3=A4?=) Date: Mon, 20 Jan 2025 19:50:11 +0200 Subject: [PATCH] tests/kms_addfb_basic: Fix addfb25_tests to not require intel In-Reply-To: <20250120171021.1029868-1-george.zhang@amd.com> References: <20250120171021.1029868-1-george.zhang@amd.com> Message-ID: Reviewed-by: Juha-Pekka Heikkila On Mon, Jan 20, 2025 at 7:10?PM wrote: > > From: George Zhang > > This test does not require running on intel devices, so move it under > the display_require. > > It was accidentally moved under the igt_require_intel fixture when > it was meant to be moved under the igt_display_require. > > Fixes: 109d23b91a30 ("tests/kms_addfb_basic: fix x-tiled tests for case when there is no x-tile) > > Signed-off-by: George Zhang > --- > tests/kms_addfb_basic.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c > index 3ba87117b..30ca8b016 100644 > --- a/tests/kms_addfb_basic.c > +++ b/tests/kms_addfb_basic.c > @@ -1022,11 +1022,11 @@ igt_main > > size_tests(fd); > > + addfb25_tests(fd); > + > igt_fixture > igt_require_intel(fd); > > - addfb25_tests(fd); > - > addfb25_ytile(fd); > > addfb25_4tile(fd); > -- > 2.43.0 > From mohammed.thasleem at intel.com Mon Jan 20 18:10:25 2025 From: mohammed.thasleem at intel.com (Thasleem, Mohammed) Date: Mon, 20 Jan 2025 18:10:25 +0000 Subject: =?utf-8?B?UkU6IOKclyBYZS5DSS5GdWxsOiBmYWlsdXJlIGZvciB0ZXN0cy9pbnRlbC9r?= =?utf-8?B?bXNfZmJjb25fZmJ0OiBBZGQgc2tpcCBjb25kaXRpb24gZm9yIGJtZyBwbGF0?= =?utf-8?Q?form_(rev5)?= In-Reply-To: <173737151391.2101051.15076014259607409451@b555e5b46a47> References: <20241113110104.125403-1-mohammed.thasleem@intel.com> <173737151391.2101051.15076014259607409451@b555e5b46a47> Message-ID: Hi, Reported changes have nothing to do with the changes except below test skips. Could you please re-report the results. Skip on BMG expected for igt at kms_fbcon_fbt@fbc-.* igt at kms_fbcon_fbt@fbc-suspend: shard-bmg: SKIP (Intel XE#2136) -> SKIP igt at kms_fbcon_fbt@fbc: shard-bmg: FAIL (Intel XE#1695) -> SKIP From: Patchwork Sent: Monday, January 20, 2025 4:42 PM To: Thasleem, Mohammed Cc: igt-dev at lists.freedesktop.org Subject: ? Xe.CI.Full: failure for tests/intel/kms_fbcon_fbt: Add skip condition for bmg platform (rev5) Patch Details Series: tests/intel/kms_fbcon_fbt: Add skip condition for bmg platform (rev5) URL: https://patchwork.freedesktop.org/series/141281/ State: failure Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12460/index.html CI Bug Log - changes from XEIGT_8198_full -> XEIGTPW_12460_full Summary FAILURE Serious unknown changes coming with XEIGTPW_12460_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12460_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_12460_full: IGT changes Possible regressions * igt at kms_atomic@atomic-plane-damage at pipe-a-dp-2: * shard-bmg: NOTRUN -> INCOMPLETE +1 other test incomplete * igt at kms_cursor_crc@cursor-onscreen-256x256: * shard-bmg: PASS -> INCOMPLETE +1 other test incomplete * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: * shard-bmg: NOTRUN -> FAIL * igt at kms_flip@flip-vs-expired-vblank-interruptible: * shard-bmg: PASS -> FAIL * igt at kms_flip@flip-vs-suspend-interruptible: * shard-lnl: PASS -> INCOMPLETE +1 other test incomplete * igt at kms_flip@flip-vs-suspend at c-dp4: * shard-dg2-set2: PASS -> INCOMPLETE +1 other test incomplete * igt at kms_flip@plain-flip-fb-recreate-interruptible at b-hdmi-a6: * shard-dg2-set2: PASS -> FAIL Warnings * igt at kms_atomic@atomic-plane-damage: * shard-bmg: SKIP (Intel XE#2423) -> INCOMPLETE * igt at kms_fbcon_fbt@fbc: * shard-bmg: FAIL (Intel XE#1695) -> SKIP * igt at kms_fbcon_fbt@fbc-suspend: * shard-bmg: SKIP (Intel XE#2136) -> SKIP * igt at kms_flip@2x-flip-vs-expired-vblank: * shard-bmg: SKIP (Intel XE#2423) -> FAIL * igt at xe_sriov_auto_provisioning@exclusive-ranges: * shard-bmg: SKIP (Intel XE#1130) -> SKIP Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt at xe_sriov_auto_provisioning@fair-allocation}: * shard-bmg: SKIP (Intel XE#1130) -> SKIP New tests New tests have been introduced between XEIGT_8198_full and XEIGTPW_12460_full: New IGT tests (11) * igt at kms_atomic_interruptible@legacy-cursor at pipe-a-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [6.28] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-hdmi-a6-dp4: * Statuses : 1 pass(s) * Exec time: [5.67] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ac-hdmi-a6-dp4: * Statuses : 1 pass(s) * Exec time: [5.65] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ad-hdmi-a6-dp4: * Statuses : 1 pass(s) * Exec time: [5.64] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at bc-hdmi-a6-dp4: * Statuses : 1 pass(s) * Exec time: [5.63] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at bd-hdmi-a6-dp4: * Statuses : 1 pass(s) * Exec time: [5.81] s * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at cd-hdmi-a6-dp4: * Statuses : 1 pass(s) * Exec time: [5.63] s * igt at kms_sequence@get-idle at pipe-a-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [2.61] s * igt at kms_sequence@get-idle at pipe-b-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [2.23] s * igt at kms_sequence@get-idle at pipe-c-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [2.23] s * igt at kms_sequence@get-idle at pipe-d-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [2.24] s Known issues Here are the changes found in XEIGTPW_12460_full that come from known issues: IGT changes Issues hit * igt at core_hotunplug@hotrebind-lateclose: * shard-bmg: PASS -> SKIP (Intel XE#1885) * igt at fbdev@info: * shard-bmg: PASS -> SKIP (Intel XE#2134) +1 other test skip * igt at intel_hwmon@hwmon-write: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2136) * igt at kms_big_fb@4-tiled-32bpp-rotate-90: * shard-lnl: NOTRUN -> SKIP (Intel XE#1407) +3 other tests skip * igt at kms_big_fb@linear-16bpp-rotate-0: * shard-dg2-set2: PASS -> SKIP (Intel XE#2136) +3 other tests skip * igt at kms_big_fb@linear-32bpp-rotate-270: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#316) * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: * shard-lnl: NOTRUN -> SKIP (Intel XE#1124) +3 other tests skip * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1124) +1 other test skip * igt at kms_bw@connected-linear-tiling-1-displays-1920x1080p: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#367) * igt at kms_bw@linear-tiling-4-displays-2560x1440p: * shard-lnl: NOTRUN -> SKIP (Intel XE#1512) * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-dp-4: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455 / Intel XE#787) +3 other tests skip * igt at kms_ccs@crc-primary-basic-y-tiled-ccs at pipe-b-hdmi-a-6: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#787) +13 other tests skip * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: * shard-lnl: NOTRUN -> SKIP (Intel XE#2887) +5 other tests skip * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: * shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#1727 / Intel XE#3124 / Intel XE#4010) * igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-d-hdmi-a-6: * shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#1727 / Intel XE#3124) * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-dp-4: * shard-dg2-set2: NOTRUN -> INCOMPLETE (Intel XE#3124) * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs at pipe-c-dp-2: * shard-bmg: NOTRUN -> SKIP (Intel XE#2652 / Intel XE#787) +7 other tests skip * igt at kms_chamelium_color@ctm-negative: * shard-lnl: NOTRUN -> SKIP (Intel XE#306) +1 other test skip * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#373) +2 other tests skip * igt at kms_chamelium_edid@dp-edid-resolution-list: * shard-lnl: NOTRUN -> SKIP (Intel XE#373) +3 other tests skip * igt at kms_content_protection@dp-mst-type-0: * shard-lnl: NOTRUN -> SKIP (Intel XE#307) * igt at kms_content_protection@srm at pipe-a-dp-2: * shard-bmg: NOTRUN -> FAIL (Intel XE#1178) * igt at kms_content_protection@uevent at pipe-a-dp-2: * shard-bmg: NOTRUN -> FAIL (Intel XE#1188) * igt at kms_cursor_crc@cursor-random-max-size: * shard-lnl: NOTRUN -> SKIP (Intel XE#1424) * igt at kms_cursor_crc@cursor-sliding-512x170: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#308) * shard-lnl: NOTRUN -> SKIP (Intel XE#2321) +1 other test skip * igt at kms_cursor_edge_walk@256x256-top-bottom: * shard-bmg: PASS -> SKIP (Intel XE#3007) +4 other tests skip * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: * shard-lnl: NOTRUN -> SKIP (Intel XE#309) * igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-3: * shard-bmg: NOTRUN -> SKIP (Intel XE#1340) * igt at kms_draw_crc@draw-method-blt: * shard-bmg: PASS -> SKIP (Intel XE#2136) +10 other tests skip * igt at kms_feature_discovery@display-3x: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2423 / i915#2575) * igt at kms_flip@2x-dpms-vs-vblank-race-interruptible: * shard-lnl: NOTRUN -> SKIP (Intel XE#1421) * igt at kms_flip@2x-flip-vs-modeset: * shard-bmg: PASS -> SKIP (Intel XE#2316) * igt at kms_flip@2x-flip-vs-suspend at ac-hdmi-a6-dp4: * shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#2597) +2 other tests incomplete * igt at kms_flip@2x-nonexisting-fb: * shard-bmg: PASS -> SKIP (Intel XE#2423) +75 other tests skip * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp2: * shard-bmg: NOTRUN -> FAIL (Intel XE#3321) * igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a3: * shard-bmg: PASS -> FAIL (Intel XE#3321) * igt at kms_flip@flip-vs-expired-vblank at b-dp4: * shard-dg2-set2: PASS -> FAIL (Intel XE#301 / Intel XE#3321) * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: * shard-dg2-set2: PASS -> FAIL (Intel XE#301) +6 other tests fail * igt at kms_flip@plain-flip-fb-recreate-interruptible: * shard-dg2-set2: PASS -> FAIL (Intel XE#2882) * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-edp1: * shard-lnl: PASS -> FAIL (Intel XE#886) +5 other tests fail * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a6: * shard-dg2-set2: PASS -> FAIL (Intel XE#886) * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455) +3 other tests skip * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: * shard-bmg: NOTRUN -> SKIP (Intel XE#2293 / Intel XE#2380) * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: * shard-lnl: NOTRUN -> SKIP (Intel XE#1397 / Intel XE#1745) * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling at pipe-a-default-mode: * shard-lnl: NOTRUN -> SKIP (Intel XE#1397) * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: * shard-bmg: NOTRUN -> SKIP (Intel XE#2380) * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling: * shard-bmg: PASS -> SKIP (Intel XE#2136 / Intel XE#2231) +4 other tests skip * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: * shard-lnl: NOTRUN -> SKIP (Intel XE#1401 / Intel XE#1745) +1 other test skip * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling at pipe-a-default-mode: * shard-lnl: NOTRUN -> SKIP (Intel XE#1401) +1 other test skip * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling at pipe-a-valid-mode: * shard-bmg: NOTRUN -> SKIP (Intel XE#2293) +9 other tests skip * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#651) +5 other tests skip * igt at kms_frontbuffer_tracking@drrs-suspend: * shard-lnl: NOTRUN -> SKIP (Intel XE#651) +4 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: * shard-lnl: NOTRUN -> SKIP (Intel XE#656) +17 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: * shard-dg2-set2: PASS -> SKIP (Intel XE#2136 / Intel XE#2351) +3 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-slowdraw: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#653) +3 other tests skip * igt at kms_hdr@invalid-metadata-sizes: * shard-lnl: NOTRUN -> SKIP (Intel XE#1503) +1 other test skip * igt at kms_joiner@basic-big-joiner: * shard-lnl: NOTRUN -> SKIP (Intel XE#346) * igt at kms_joiner@invalid-modeset-force-big-joiner: * shard-bmg: PASS -> SKIP (Intel XE#3012) * igt at kms_plane_multiple@tiling-y: * shard-lnl: NOTRUN -> SKIP (Intel XE#2493) * igt at kms_plane_scaling@plane-upscale-factor-0-25-with-rotation: * shard-dg2-set2: PASS -> SKIP (Intel XE#2423 / i915#2575) +14 other tests skip * igt at kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20 at pipe-b: * shard-lnl: NOTRUN -> SKIP (Intel XE#2763) +3 other tests skip * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-b: * shard-bmg: NOTRUN -> SKIP (Intel XE#2763) +19 other tests skip * igt at kms_pm_dc@dc5-dpms: * shard-lnl: PASS -> FAIL (Intel XE#718) * igt at kms_pm_dc@dc6-psr: * shard-lnl: NOTRUN -> FAIL (Intel XE#1430) * igt at kms_pm_rpm@cursor: * shard-bmg: PASS -> SKIP (Intel XE#2446) * igt at kms_pm_rpm@dpms-lpsp: * shard-dg2-set2: PASS -> SKIP (Intel XE#2446) * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1489) +1 other test skip * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: * shard-lnl: NOTRUN -> SKIP (Intel XE#2893) +3 other tests skip * igt at kms_psr2_su@page_flip-nv12: * shard-lnl: NOTRUN -> SKIP (Intel XE#1128) * igt at kms_psr@fbc-pr-cursor-plane-move: * shard-lnl: NOTRUN -> SKIP (Intel XE#1406) +2 other tests skip * igt at kms_psr@fbc-pr-cursor-plane-onoff: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2850 / Intel XE#929) +1 other test skip * igt at kms_tiled_display@basic-test-pattern-with-chamelium: * shard-lnl: NOTRUN -> SKIP (Intel XE#362) * igt at kms_vrr@negative-basic: * shard-lnl: NOTRUN -> SKIP (Intel XE#1499) * igt at xe_compute_preempt@compute-preempt-many at engine-drm_xe_engine_class_compute: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1280 / Intel XE#455) * igt at xe_eudebug@basic-client: * shard-lnl: NOTRUN -> SKIP (Intel XE#2905) +6 other tests skip * igt at xe_eudebug_online@interrupt-all-set-breakpoint: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2905) +2 other tests skip * igt at xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: * shard-dg2-set2: PASS -> SKIP (Intel XE#1130) +28 other tests skip * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: * shard-lnl: NOTRUN -> SKIP (Intel XE#688) * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race: * shard-lnl: NOTRUN -> SKIP (Intel XE#1392) +2 other tests skip * igt at xe_exec_fault_mode@once-invalid-userptr-fault: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#288) +2 other tests skip * igt at xe_live_ktest@xe_bo: * shard-lnl: NOTRUN -> SKIP (Intel XE#1192) +1 other test skip * igt at xe_oa@non-privileged-access-vaddr: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2541 / Intel XE#3573) +1 other test skip * igt at xe_peer2peer@write at write-gpua-vram01-gpub-system-p2p: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1173) +1 other test fail * igt at xe_pm@d3cold-mmap-vram: * shard-lnl: NOTRUN -> SKIP (Intel XE#2284 / Intel XE#366) +2 other tests skip * igt at xe_pm@s2idle-exec-after: * shard-dg2-set2: PASS -> ABORT (Intel XE#1358) * igt at xe_pm@s2idle-vm-bind-userptr: * shard-dg2-set2: PASS -> ABORT (Intel XE#1358 / Intel XE#1794) +1 other test abort * igt at xe_pm@s3-multiple-execs: * shard-lnl: NOTRUN -> SKIP (Intel XE#584) * igt at xe_query@multigpu-query-gt-list: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#944) * shard-lnl: NOTRUN -> SKIP (Intel XE#944) * igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: * shard-bmg: PASS -> SKIP (Intel XE#1130) +160 other tests skip Possible fixes * igt at core_hotunplug@hotrebind: * shard-bmg: SKIP (Intel XE#1885) -> PASS +2 other tests pass * igt at core_setmaster@master-drop-set-shared-fd: * shard-bmg: SKIP (Intel XE#3453) -> PASS * igt at fbdev@eof: * shard-bmg: SKIP (Intel XE#2134) -> PASS +3 other tests pass * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: * shard-lnl: FAIL (Intel XE#3908) -> PASS +1 other test pass * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: * shard-bmg: SKIP (Intel XE#2136) -> PASS +29 other tests pass * igt at kms_big_fb@linear-8bpp-rotate-0: * shard-dg2-set2: SKIP (Intel XE#2136 / Intel XE#2351) -> PASS * igt at kms_cursor_legacy@cursora-vs-flipb-varying-size: * shard-bmg: SKIP (Intel XE#2291) -> PASS +1 other test pass * igt at kms_cursor_legacy@flip-vs-cursor-toggle: * shard-lnl: FAIL (Intel XE#1475) -> PASS * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-hdmi-a6-dp4: * shard-dg2-set2: FAIL (Intel XE#2882) -> PASS +1 other test pass * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4: * shard-dg2-set2: FAIL (Intel XE#301) -> PASS +6 other tests pass * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: * shard-bmg: SKIP (Intel XE#2316) -> PASS * igt at kms_flip@flip-vs-absolute-wf_vblank: * shard-lnl: FAIL (Intel XE#886) -> PASS +2 other tests pass * igt at kms_flip@flip-vs-expired-vblank at b-dp2: * shard-bmg: FAIL (Intel XE#3321) -> PASS * igt at kms_flip@flip-vs-expired-vblank at d-dp4: * shard-dg2-set2: FAIL (Intel XE#301 / Intel XE#3321) -> PASS * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> PASS +1 other test pass * shard-dg2-set2: SKIP (Intel XE#2136) -> PASS +1 other test pass * igt at kms_pm_rpm@modeset-stress-extra-wait: * shard-bmg: SKIP (Intel XE#2446) -> PASS +5 other tests pass * igt at kms_properties@connector-properties-legacy: * shard-bmg: SKIP (Intel XE#2423) -> PASS +134 other tests pass * igt at kms_sequence@get-idle: * shard-bmg: SKIP (Intel XE#3007) -> PASS +6 other tests pass * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> PASS +6 other tests pass * igt at kms_setmode@invalid-clone-single-crtc: * shard-bmg: SKIP (Intel XE#1435) -> PASS * igt at kms_vrr@negative-basic: * shard-bmg: SKIP (Intel XE#1499) -> PASS * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-system-system: * shard-lnl: INCOMPLETE (Intel XE#2771) -> PASS +1 other test pass * igt at xe_exec_basic@many-bindexecqueue-rebind: * shard-bmg: SKIP (Intel XE#1130) -> PASS +347 other tests pass * igt at xe_live_ktest@xe_migrate: * shard-bmg: SKIP (Intel XE#1192) -> PASS * igt at xe_module_load@load: * shard-dg2-set2: (SKIP, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS) (Intel XE#378) -> (PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS) * igt at xe_module_load@many-reload: * shard-bmg: FAIL (Intel XE#3546) -> PASS +1 other test pass * igt at xe_vm@large-misaligned-binds-2097152: * shard-dg2-set2: SKIP (Intel XE#1130) -> PASS +9 other tests pass * igt at xe_wedged@wedged-mode-toggle: * shard-bmg: ABORT (Intel XE#3084) -> PASS Warnings * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2233) * igt at kms_async_flips@invalid-async-flip-atomic: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#3768) * igt at kms_atomic@plane-primary-overlay-mutable-zpos: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2385) * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: * shard-bmg: SKIP (Intel XE#2370) -> SKIP (Intel XE#2423) * igt at kms_big_fb@4-tiled-32bpp-rotate-90: * shard-bmg: SKIP (Intel XE#2327) -> SKIP (Intel XE#2136 / Intel XE#2231) * shard-dg2-set2: SKIP (Intel XE#316) -> SKIP (Intel XE#2136 / Intel XE#2351) * igt at kms_big_fb@linear-64bpp-rotate-90: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2327) +3 other tests skip * igt at kms_big_fb@x-tiled-32bpp-rotate-270: * shard-dg2-set2: SKIP (Intel XE#316) -> SKIP (Intel XE#2136) * igt at kms_big_fb@y-tiled-32bpp-rotate-0: * shard-bmg: SKIP (Intel XE#1124) -> SKIP (Intel XE#2136 / Intel XE#2231) * shard-dg2-set2: SKIP (Intel XE#1124) -> SKIP (Intel XE#2136 / Intel XE#2351) * igt at kms_big_fb@y-tiled-64bpp-rotate-90: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#1124) +19 other tests skip * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#607) * igt at kms_big_fb@y-tiled-addfb-size-overflow: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#610) * igt at kms_big_fb@yf-tiled-addfb: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2328) * igt at kms_big_fb@yf-tiled-addfb-size-overflow: * shard-bmg: SKIP (Intel XE#610) -> SKIP (Intel XE#2136 / Intel XE#2231) * shard-dg2-set2: SKIP (Intel XE#610) -> SKIP (Intel XE#2136) * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: * shard-bmg: SKIP (Intel XE#1124) -> SKIP (Intel XE#2136) +10 other tests skip * igt at kms_bw@connected-linear-tiling-3-displays-2560x1440p: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2314 / Intel XE#2894) +3 other tests skip * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: * shard-bmg: SKIP (Intel XE#2314 / Intel XE#2894) -> SKIP (Intel XE#2423) * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: * shard-dg2-set2: SKIP (Intel XE#2191) -> SKIP (Intel XE#2423 / i915#2575) * igt at kms_bw@linear-tiling-1-displays-2560x1440p: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#367) +4 other tests skip * igt at kms_bw@linear-tiling-2-displays-2160x1440p: * shard-bmg: SKIP (Intel XE#367) -> SKIP (Intel XE#2423) * igt at kms_bw@linear-tiling-3-displays-1920x1080p: * shard-dg2-set2: SKIP (Intel XE#367) -> SKIP (Intel XE#2423 / i915#2575) * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: * shard-bmg: SKIP (Intel XE#2887) -> SKIP (Intel XE#2136) +11 other tests skip * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2887) +26 other tests skip * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: * shard-bmg: SKIP (Intel XE#2652 / Intel XE#787) -> SKIP (Intel XE#2136 / Intel XE#2231) * shard-dg2-set2: SKIP (Intel XE#2907) -> SKIP (Intel XE#2136) * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: * shard-bmg: SKIP (Intel XE#2136) -> INCOMPLETE (Intel XE#3862) * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#3432) +2 other tests skip * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: * shard-bmg: SKIP (Intel XE#3432) -> SKIP (Intel XE#2136) * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs: * shard-bmg: SKIP (Intel XE#2887) -> SKIP (Intel XE#2136 / Intel XE#2231) * shard-dg2-set2: SKIP (Intel XE#455 / Intel XE#787) -> SKIP (Intel XE#2136 / Intel XE#2351) * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: * shard-dg2-set2: INCOMPLETE (Intel XE#2692 / Intel XE#4010) -> INCOMPLETE (Intel XE#1727 / Intel XE#3124 / Intel XE#4010) * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-6: * shard-dg2-set2: INCOMPLETE (Intel XE#4010) -> DMESG-WARN (Intel XE#1727 / Intel XE#3113) * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2652 / Intel XE#787) * igt at kms_cdclk@mode-transition: * shard-bmg: SKIP (Intel XE#2724) -> SKIP (Intel XE#2136) * igt at kms_cdclk@plane-scaling: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2724) * igt at kms_chamelium_audio@hdmi-audio-edid: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2252) +16 other tests skip * igt at kms_chamelium_color@ctm-0-25: * shard-bmg: SKIP (Intel XE#2325) -> SKIP (Intel XE#2423) +1 other test skip * igt at kms_chamelium_color@ctm-green-to-red: * shard-dg2-set2: SKIP (Intel XE#306) -> SKIP (Intel XE#2423 / i915#2575) * igt at kms_chamelium_color@ctm-red-to-blue: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2325) +1 other test skip * igt at kms_chamelium_frames@dp-frame-dump: * shard-bmg: SKIP (Intel XE#2252) -> SKIP (Intel XE#3007) * igt at kms_chamelium_frames@hdmi-aspect-ratio: * shard-bmg: SKIP (Intel XE#2252) -> SKIP (Intel XE#2423) +8 other tests skip * igt at kms_chamelium_hpd@hdmi-hpd-after-suspend: * shard-dg2-set2: SKIP (Intel XE#373) -> SKIP (Intel XE#2423 / i915#2575) +1 other test skip * igt at kms_color@ctm-blue-to-red: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#3007) +13 other tests skip * igt at kms_color@degamma: * shard-bmg: DMESG-WARN (Intel XE#877) -> SKIP (Intel XE#2423) * igt at kms_content_protection@atomic: * shard-bmg: FAIL (Intel XE#1178) -> SKIP (Intel XE#2341) * igt at kms_content_protection@content-type-change: * shard-bmg: SKIP (Intel XE#2341) -> SKIP (Intel XE#2423) * igt at kms_content_protection@dp-mst-lic-type-0: * shard-bmg: SKIP (Intel XE#2390) -> SKIP (Intel XE#2423) * igt at kms_content_protection@dp-mst-lic-type-1: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2390) * igt at kms_content_protection@lic-type-0: * shard-dg2-set2: FAIL (Intel XE#1178) -> SKIP (Intel XE#2423 / i915#2575) * shard-bmg: FAIL (Intel XE#1178) -> SKIP (Intel XE#3007) * igt at kms_content_protection@mei-interface: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2341) +1 other test skip * igt at kms_content_protection@srm: * shard-bmg: SKIP (Intel XE#2423) -> FAIL (Intel XE#1178) * igt at kms_content_protection@uevent: * shard-bmg: SKIP (Intel XE#2341) -> FAIL (Intel XE#1188) * igt at kms_cursor_crc@cursor-offscreen-512x170: * shard-bmg: SKIP (Intel XE#2321) -> SKIP (Intel XE#2423) +1 other test skip * igt at kms_cursor_crc@cursor-onscreen-32x32: * shard-bmg: SKIP (Intel XE#2320) -> SKIP (Intel XE#2423) +5 other tests skip * igt at kms_cursor_crc@cursor-random-32x32: * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2320) * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel XE#455) * igt at kms_cursor_crc@cursor-sliding-256x85: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2320) +7 other tests skip * igt at kms_cursor_crc@cursor-sliding-512x512: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2321) +5 other tests skip * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: * shard-bmg: SKIP (Intel XE#2286) -> SKIP (Intel XE#2423) * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2286) +1 other test skip * igt at kms_cursor_legacy@cursora-vs-flipb-legacy: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2291) +2 other tests skip * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: * shard-bmg: SKIP (Intel XE#2423) -> DMESG-WARN (Intel XE#877) * igt at kms_cursor_legacy@single-bo: * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2423) * igt at kms_dither@fb-8bpc-vs-panel-6bpc: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#1340) * igt at kms_dp_linktrain_fallback@dp-fallback: * shard-bmg: SKIP (Intel XE#3070) -> SKIP (Intel XE#2136) * igt at kms_dsc@dsc-fractional-bpp: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2244) +2 other tests skip * igt at kms_fbcon_fbt@psr: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#776) * igt at kms_feature_discovery@chamelium: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2372) * igt at kms_feature_discovery@display-3x: * shard-bmg: SKIP (Intel XE#2373) -> SKIP (Intel XE#3007) * igt at kms_feature_discovery@display-4x: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#1138) * igt at kms_feature_discovery@dp-mst: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2375) * igt at kms_feature_discovery@psr2: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2374) * igt at kms_flip@2x-modeset-vs-vblank-race: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2316) +3 other tests skip * igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: * shard-bmg: SKIP (Intel XE#2316) -> SKIP (Intel XE#2423) * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2293 / Intel XE#2380) +8 other tests skip * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2380) * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: * shard-bmg: SKIP (Intel XE#2293 / Intel XE#2380) -> SKIP (Intel XE#2136) +2 other tests skip * igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2312) +11 other tests skip * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt: * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2311) +7 other tests skip * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt: * shard-dg2-set2: SKIP (Intel XE#651) -> SKIP (Intel XE#2136 / Intel XE#2351) +2 other tests skip * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2311) +49 other tests skip * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt: * shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#2136) +24 other tests skip * igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: * shard-bmg: FAIL (Intel XE#2333) -> SKIP (Intel XE#2136 / Intel XE#2231) +3 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: * shard-bmg: FAIL (Intel XE#2333) -> SKIP (Intel XE#2136) +7 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: * shard-bmg: SKIP (Intel XE#2312) -> FAIL (Intel XE#2333) +2 other tests fail * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: * shard-bmg: SKIP (Intel XE#2136) -> FAIL (Intel XE#2333) +27 other tests fail * igt at kms_frontbuffer_tracking@fbc-modesetfrombusy: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> FAIL (Intel XE#2333) * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc: * shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#2136 / Intel XE#2231) +4 other tests skip * shard-dg2-set2: SKIP (Intel XE#651) -> SKIP (Intel XE#2136) +2 other tests skip * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2311) +1 other test skip * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#651) * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt: * shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#2312) +4 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2136) +2 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt: * shard-dg2-set2: SKIP (Intel XE#653) -> SKIP (Intel XE#2136) +2 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt: * shard-dg2-set2: SKIP (Intel XE#653) -> SKIP (Intel XE#2136 / Intel XE#2351) +1 other test skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: * shard-bmg: SKIP (Intel XE#2313) -> SKIP (Intel XE#2136) +24 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: * shard-bmg: SKIP (Intel XE#2313) -> SKIP (Intel XE#2312) +1 other test skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2136 / Intel XE#2231) +8 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2313) +6 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2313) +52 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2313) * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#653) * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2352) * igt at kms_frontbuffer_tracking@plane-fbc-rte: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2350) * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2136) +4 other tests skip * igt at kms_frontbuffer_tracking@psr-suspend: * shard-dg2-set2: SKIP (Intel XE#653) -> INCOMPLETE (Intel XE#2594) * igt at kms_getfb@getfb2-accept-ccs: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2340) * igt at kms_hdr@brightness-with-hdr: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#3544) * igt at kms_joiner@basic-ultra-joiner: * shard-bmg: SKIP (Intel XE#2927) -> SKIP (Intel XE#2136) +1 other test skip * igt at kms_joiner@invalid-modeset-big-joiner: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#346) * igt at kms_joiner@invalid-modeset-force-ultra-joiner: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2934) * igt at kms_panel_fitting@legacy: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2486) * igt at kms_plane_lowres@tiling-yf: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2393) +1 other test skip * igt at kms_plane_multiple@tiling-yf: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2493) * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2763) +4 other tests skip * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: * shard-bmg: SKIP (Intel XE#2763) -> SKIP (Intel XE#2423) +2 other tests skip * igt at kms_pm_backlight@fade: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#870) +1 other test skip * igt at kms_pm_backlight@fade-with-suspend: * shard-bmg: SKIP (Intel XE#870) -> SKIP (Intel XE#2136) * igt at kms_pm_dc@dc5-psr: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2392) * igt at kms_pm_dc@dc5-retention-flops: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#3309) * igt at kms_pm_dc@dc6-dpms: * shard-bmg: FAIL (Intel XE#1430) -> SKIP (Intel XE#2136) * igt at kms_pm_rpm@dpms-lpsp: * shard-bmg: SKIP (Intel XE#1439 / Intel XE#3141 / Intel XE#836) -> SKIP (Intel XE#2446) * igt at kms_pm_rpm@dpms-mode-unset-lpsp: * shard-bmg: SKIP (Intel XE#2446) -> SKIP (Intel XE#1439 / Intel XE#836) * igt at kms_psr2_sf@pr-cursor-plane-update-sf: * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#1489) * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#1489) * igt at kms_psr2_sf@pr-overlay-plane-update-continuous-sf: * shard-dg2-set2: SKIP (Intel XE#1489) -> SKIP (Intel XE#2136) * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#1489) +16 other tests skip * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: * shard-bmg: SKIP (Intel XE#1489) -> SKIP (Intel XE#2136) +7 other tests skip * igt at kms_psr2_su@page_flip-nv12: * shard-bmg: SKIP (Intel XE#2387) -> SKIP (Intel XE#2136) * igt at kms_psr2_su@page_flip-xrgb8888: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2387) +1 other test skip * igt at kms_psr@fbc-pr-cursor-blt: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2234 / Intel XE#2850) +23 other tests skip * igt at kms_psr@fbc-psr-primary-render: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2234 / Intel XE#2850) * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#2850 / Intel XE#929) * igt at kms_psr@fbc-psr2-cursor-plane-move: * shard-bmg: SKIP (Intel XE#2234 / Intel XE#2850) -> SKIP (Intel XE#2136) +8 other tests skip * igt at kms_psr@fbc-psr2-sprite-plane-move: * shard-dg2-set2: SKIP (Intel XE#2850 / Intel XE#929) -> SKIP (Intel XE#2136) +1 other test skip * igt at kms_psr@pr-sprite-plane-onoff: * shard-bmg: SKIP (Intel XE#2234 / Intel XE#2850) -> SKIP (Intel XE#2136 / Intel XE#2231) +1 other test skip * shard-dg2-set2: SKIP (Intel XE#2850 / Intel XE#929) -> SKIP (Intel XE#2136 / Intel XE#2351) * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2414) +1 other test skip * igt at kms_rotation_crc@bad-pixel-format: * shard-bmg: SKIP (Intel XE#3414 / Intel XE#3904) -> SKIP (Intel XE#2423) +1 other test skip * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2330) * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel XE#1127) * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#3414 / Intel XE#3904) * igt at kms_tiled_display@basic-test-pattern: * shard-bmg: SKIP (Intel XE#2426) -> SKIP (Intel XE#2423) +1 other test skip * igt at kms_tiled_display@basic-test-pattern-with-chamelium: * shard-dg2-set2: SKIP (Intel XE#1500) -> SKIP (Intel XE#362) * igt at kms_tv_load_detect@load-detect: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2450) * igt at kms_vrr@flip-suspend: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#1499) +2 other tests skip * igt at kms_vrr@flipline: * shard-dg2-set2: SKIP (Intel XE#455) -> SKIP (Intel XE#2423 / i915#2575) * shard-bmg: SKIP (Intel XE#1499) -> SKIP (Intel XE#3007) * igt at kms_vrr@lobf: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2168) * igt at kms_vrr@seamless-rr-switch-virtual: * shard-bmg: SKIP (Intel XE#1499) -> SKIP (Intel XE#2423) +1 other test skip * igt at kms_writeback@writeback-fb-id-xrgb2101010: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#756) * igt at kms_writeback@writeback-invalid-parameters: * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#756) * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel XE#756) * igt at sriov_basic@enable-vfs-autoprobe-off: * shard-bmg: SKIP (Intel XE#1091 / Intel XE#2849) -> SKIP (Intel XE#2423) +1 other test skip * igt at xe_compute_preempt@compute-preempt: * shard-dg2-set2: SKIP (Intel XE#1280 / Intel XE#455) -> SKIP (Intel XE#1130) * igt at xe_compute_preempt@compute-preempt-many: * shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#1280 / Intel XE#455) * igt at xe_create@multigpu-create-massive-size: * shard-bmg: SKIP (Intel XE#2504) -> SKIP (Intel XE#1130) * igt at xe_eudebug@basic-connect: * shard-dg2-set2: SKIP (Intel XE#2905) -> SKIP (Intel XE#1130) * igt at xe_eudebug@basic-vm-access-parameters-userptr: * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#3889) +1 other test skip * igt at xe_eudebug@basic-vm-bind-metadata-discovery: * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#2905) +16 other tests skip * shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#2905) * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: * shard-dg2-set2: SKIP (Intel XE#3889) -> SKIP (Intel XE#1130) * shard-bmg: SKIP (Intel XE#3889) -> SKIP (Intel XE#1130) * igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram: * shard-bmg: SKIP (Intel XE#2905) -> SKIP (Intel XE#1130) +8 other tests skip * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind: * shard-bmg: SKIP (Intel XE#2322) -> SKIP (Intel XE#1130) +6 other tests skip * igt at xe_exec_basic@multigpu-once-null-rebind: * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#2322) +10 other tests skip * igt at xe_exec_fault_mode@once-bindexecqueue-imm: * shard-dg2-set2: SKIP (Intel XE#288) -> SKIP (Intel XE#1130) +2 other tests skip * igt at xe_mmap@small-bar: * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#586) * igt at xe_oa@invalid-map-oa-buffer: * shard-dg2-set2: SKIP (Intel XE#2541 / Intel XE#3573) -> SKIP (Intel XE#1130) * igt at xe_oa@syncs-ufence-wait-cfg: * shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#2541 / Intel XE#3573) * igt at xe_oa@unprivileged-single-ctx-counters: * shard-bmg: SKIP (Intel XE#2248) -> SKIP (Intel XE#1130) * igt at xe_pat@pat-index-xelp: * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#2245) * igt at xe_pm@s2idle-d3cold-basic-exec: * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#2284) +2 other tests skip * igt at xe_pm@s3-d3cold-basic-exec: * shard-bmg: SKIP (Intel XE#2284) -> SKIP (Intel XE#1130) * shard-dg2-set2: SKIP (Intel XE#2284 / Intel XE#366) -> SKIP (Intel XE#1130) * igt at xe_pm@vram-d3cold-threshold: * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#579) * igt at xe_query@multigpu-query-hwconfig: * shard-bmg: SKIP (Intel XE#944) -> SKIP (Intel XE#1130) +1 other test skip * igt at xe_query@multigpu-query-invalid-cs-cycles: * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#944) +4 other tests skip {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * IGT: IGT_8198 -> IGTPW_12460 * Linux: xe-2508-9033a16532f74ae36c48d729d0855a6e189039df -> xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 IGTPW_12460: 783d10928eca7563a8811a3a3fa90b3d693b6916 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2508-9033a16532f74ae36c48d729d0855a6e189039df: 9033a16532f74ae36c48d729d0855a6e189039df xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2: aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From mohammed.thasleem at intel.com Mon Jan 20 18:17:26 2025 From: mohammed.thasleem at intel.com (Thasleem, Mohammed) Date: Mon, 20 Jan 2025 18:17:26 +0000 Subject: =?utf-8?B?UkU6IOKclyBYZS5DSS5GdWxsOiBmYWlsdXJlIGZvciB0ZXN0cy9pbnRlbC9r?= =?utf-8?B?bXNfZGlydHlmYjogQWRkIHNraXAgY29uZGl0aW9uIGZvciBibWcgcGxhdGZv?= =?utf-8?Q?rm_(rev5)?= In-Reply-To: <173738741842.2213036.15430206624604111478@b555e5b46a47> References: <20241113174118.158849-1-mohammed.thasleem@intel.com> <173738741842.2213036.15430206624604111478@b555e5b46a47> Message-ID: Hi, Reported changes have nothing to do with the changes except below test skip. Could you please re-report the results. Skip on BMG expected for igt at kms_dirtyfb@fbc-* igt at kms_dirtyfb@fbc-dirtyfb-ioctl: shard-bmg: FAIL (Intel XE#2141) -> SKIP From: Patchwork Sent: Monday, January 20, 2025 9:07 PM To: Thasleem, Mohammed Cc: igt-dev at lists.freedesktop.org Subject: ? Xe.CI.Full: failure for tests/intel/kms_dirtyfb: Add skip condition for bmg platform (rev5) Patch Details Series: tests/intel/kms_dirtyfb: Add skip condition for bmg platform (rev5) URL: https://patchwork.freedesktop.org/series/141312/ State: failure Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12461/index.html CI Bug Log - changes from XEIGT_8199_full -> XEIGTPW_12461_full Summary FAILURE Serious unknown changes coming with XEIGTPW_12461_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12461_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_12461_full: IGT changes Possible regressions * igt at kms_flip@dpms-vs-vblank-race-interruptible at c-edp1: * shard-lnl: PASS -> DMESG-WARN +16 other tests dmesg-warn * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc: * shard-lnl: NOTRUN -> DMESG-WARN * igt at kms_psr@psr2-cursor-blt at edp-1: * shard-lnl: PASS -> FAIL +1 other test fail * igt at xe_exec_threads@threads-hang-rebind: * shard-dg2-set2: PASS -> DMESG-WARN +1 other test dmesg-warn Warnings * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: * shard-bmg: FAIL (Intel XE#2141) -> SKIP * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: * shard-bmg: FAIL -> INCOMPLETE +1 other test incomplete New tests New tests have been introduced between XEIGT_8199_full and XEIGTPW_12461_full: New IGT tests (1) * igt at kms_atomic_interruptible@legacy-cursor at pipe-a-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [6.29] s Known issues Here are the changes found in XEIGTPW_12461_full that come from known issues: IGT changes Issues hit * igt at core_getversion@basic: * shard-bmg: PASS -> FAIL (Intel XE#3440) * igt at core_setmaster@master-drop-set-user: * shard-bmg: PASS -> FAIL (Intel XE#3249) +1 other test fail * igt at fbdev@unaligned-write: * shard-bmg: PASS -> SKIP (Intel XE#2134) +1 other test skip * igt at intel_hwmon@hwmon-write: * shard-lnl: NOTRUN -> SKIP (Intel XE#1125) * igt at kms_async_flips@alternate-sync-async-flip: * shard-bmg: PASS -> FAIL (Intel XE#827) +1 other test fail * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: * shard-lnl: NOTRUN -> FAIL (Intel XE#3719) +3 other tests fail * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-6-4-mc-ccs: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#3767) +23 other tests skip * igt at kms_big_fb@linear-64bpp-rotate-0: * shard-lnl: NOTRUN -> DMESG-WARN (Intel XE#1725) * igt at kms_big_fb@x-tiled-8bpp-rotate-270: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#316) +3 other tests skip * shard-lnl: NOTRUN -> SKIP (Intel XE#1407) +4 other tests skip * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0: * shard-bmg: PASS -> SKIP (Intel XE#2136) +23 other tests skip * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1124) +9 other tests skip * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#607) * igt at kms_big_fb@yf-tiled-addfb-size-overflow: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#610) * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: * shard-lnl: NOTRUN -> SKIP (Intel XE#1124) +4 other tests skip * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#367) +8 other tests skip * shard-lnl: NOTRUN -> SKIP (Intel XE#2191) +1 other test skip * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2191) * igt at kms_bw@linear-tiling-4-displays-1920x1080p: * shard-lnl: NOTRUN -> SKIP (Intel XE#1512) * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455 / Intel XE#787) +31 other tests skip * shard-lnl: NOTRUN -> SKIP (Intel XE#2887) +8 other tests skip * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#787) +153 other tests skip * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: * shard-lnl: NOTRUN -> SKIP (Intel XE#3432) * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2907) +1 other test skip * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3: * shard-bmg: NOTRUN -> SKIP (Intel XE#2652 / Intel XE#787) +3 other tests skip * igt at kms_cdclk@mode-transition at pipe-d-dp-4: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#314) +3 other tests skip * igt at kms_chamelium_color@ctm-blue-to-red: * shard-lnl: NOTRUN -> SKIP (Intel XE#306) +1 other test skip * igt at kms_chamelium_edid@hdmi-mode-timings: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#373) +8 other tests skip * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: * shard-lnl: NOTRUN -> SKIP (Intel XE#373) +5 other tests skip * igt at kms_content_protection@atomic at pipe-a-dp-2: * shard-bmg: NOTRUN -> FAIL (Intel XE#1178) +2 other tests fail * igt at kms_content_protection@dp-mst-type-0: * shard-lnl: NOTRUN -> SKIP (Intel XE#307) +1 other test skip * igt at kms_content_protection@legacy at pipe-a-dp-4: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1178) * igt at kms_content_protection@type1: * shard-lnl: NOTRUN -> SKIP (Intel XE#3278) * igt at kms_content_protection@uevent at pipe-a-dp-2: * shard-bmg: NOTRUN -> FAIL (Intel XE#1188) * igt at kms_cursor_crc@cursor-offscreen-512x512: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#308) +2 other tests skip * igt at kms_cursor_crc@cursor-sliding-128x42: * shard-lnl: NOTRUN -> SKIP (Intel XE#1424) +2 other tests skip * igt at kms_cursor_crc@cursor-suspend: * shard-bmg: PASS -> SKIP (Intel XE#2423) +88 other tests skip * shard-lnl: PASS -> INCOMPLETE (Intel XE#1616) +1 other test incomplete * igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy: * shard-bmg: PASS -> SKIP (Intel XE#2291) * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: * shard-bmg: PASS -> DMESG-WARN (Intel XE#877) * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#323) * shard-lnl: NOTRUN -> SKIP (Intel XE#323) +1 other test skip * igt at kms_display_modes@extended-mode-basic: * shard-lnl: NOTRUN -> SKIP (Intel XE#3383) * igt at kms_display_modes@extended-mode-basic at pipe-b-hdmi-a-3-pipe-c-dp-2: * shard-bmg: NOTRUN -> DMESG-WARN (Intel XE#877) * igt at kms_dither@fb-8bpc-vs-panel-6bpc: * shard-bmg: PASS -> SKIP (Intel XE#1340) * igt at kms_feature_discovery@chamelium: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#701) * shard-lnl: NOTRUN -> SKIP (Intel XE#701) * igt at kms_feature_discovery@display-2x: * shard-lnl: NOTRUN -> SKIP (Intel XE#702) * igt at kms_flip@2x-flip-vs-dpms: * shard-bmg: PASS -> SKIP (Intel XE#2316) +1 other test skip * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bd-hdmi-a6-dp4: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#301 / Intel XE#3321) * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#301) +2 other tests fail * igt at kms_flip@2x-flip-vs-modeset: * shard-lnl: NOTRUN -> SKIP (Intel XE#1421) * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-dp4: * shard-dg2-set2: PASS -> FAIL (Intel XE#301) +2 other tests fail * igt at kms_flip@flip-vs-suspend-interruptible: * shard-dg2-set2: NOTRUN -> ABORT (Intel XE#2625) +1 other test abort * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling at pipe-a-valid-mode: * shard-bmg: NOTRUN -> SKIP (Intel XE#2293) +4 other tests skip * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode: * shard-lnl: NOTRUN -> SKIP (Intel XE#1401) +3 other tests skip * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: * shard-lnl: NOTRUN -> SKIP (Intel XE#1401 / Intel XE#1745) +3 other tests skip * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: * shard-lnl: NOTRUN -> SKIP (Intel XE#1397 / Intel XE#1745) * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling at pipe-a-default-mode: * shard-lnl: NOTRUN -> SKIP (Intel XE#1397) * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: * shard-bmg: NOTRUN -> SKIP (Intel XE#2380) * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455) +8 other tests skip * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: * shard-lnl: NOTRUN -> SKIP (Intel XE#651) +7 other tests skip * igt at kms_frontbuffer_tracking@drrs-suspend: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#651) +25 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: * shard-lnl: NOTRUN -> SKIP (Intel XE#656) +24 other tests skip * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#658) * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#653) +21 other tests skip * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#616) +2 other tests fail * igt at kms_plane_scaling@2x-scaler-multi-pipe: * shard-lnl: NOTRUN -> SKIP (Intel XE#309) +3 other tests skip * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: * shard-lnl: NOTRUN -> SKIP (Intel XE#2763) +11 other tests skip * igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 at pipe-d: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2763 / Intel XE#455) +5 other tests skip * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2763) +8 other tests skip * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a: * shard-bmg: NOTRUN -> SKIP (Intel XE#2763) +11 other tests skip * igt at kms_pm_backlight@basic-brightness: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#870) * igt at kms_pm_backlight@brightness-with-dpms: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2938) * igt at kms_pm_dc@dc5-psr: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1129) * igt at kms_pm_rpm@i2c: * shard-bmg: PASS -> SKIP (Intel XE#2446) +3 other tests skip * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1489) +1 other test skip * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: * shard-lnl: NOTRUN -> SKIP (Intel XE#2893) * igt at kms_psr2_su@page_flip-nv12: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1122) * igt at kms_psr@pr-sprite-plane-onoff: * shard-lnl: NOTRUN -> SKIP (Intel XE#1406) +3 other tests skip * igt at kms_psr@psr-dpms: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2850 / Intel XE#929) +14 other tests skip * igt at kms_rotation_crc@primary-rotation-90: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#3414) +1 other test skip * shard-lnl: NOTRUN -> SKIP (Intel XE#3414 / Intel XE#3904) +1 other test skip * igt at kms_setmode@invalid-clone-single-crtc: * shard-lnl: NOTRUN -> SKIP (Intel XE#1435) * igt at kms_tiled_display@basic-test-pattern: * shard-lnl: NOTRUN -> SKIP (Intel XE#362) * igt at kms_vrr@lobf: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2168) * igt at kms_writeback@writeback-check-output-xrgb2101010: * shard-lnl: NOTRUN -> SKIP (Intel XE#756) * igt at kms_writeback@writeback-fb-id-xrgb2101010: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#756) * igt at sriov_basic@enable-vfs-autoprobe-off: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1091 / Intel XE#2849) * igt at xe_ccs@suspend-resume: * shard-bmg: PASS -> INCOMPLETE (Intel XE#3918) +1 other test incomplete * igt at xe_drm_fdinfo@utilization-single-full-load: * shard-lnl: NOTRUN -> DMESG-WARN (Intel XE#3876) * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#3889) +1 other test skip * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: * shard-lnl: NOTRUN -> SKIP (Intel XE#3889) +1 other test skip * igt at xe_eudebug_online@preempt-breakpoint: * shard-lnl: NOTRUN -> SKIP (Intel XE#2905) +3 other tests skip * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: * shard-lnl: NOTRUN -> SKIP (Intel XE#688) +2 other tests skip * igt at xe_exec_basic@many-bindexecqueue-rebind: * shard-bmg: PASS -> SKIP (Intel XE#1130) +190 other tests skip * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: * shard-lnl: NOTRUN -> SKIP (Intel XE#1392) +5 other tests skip * igt at xe_exec_basic@multigpu-once-null: * shard-dg2-set2: PASS -> SKIP (Intel XE#1392) +1 other test skip * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#288) +20 other tests skip * igt at xe_exec_sip_eudebug@breakpoint-writesip: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2905) +7 other tests skip * igt at xe_live_ktest@xe_dma_buf: * shard-bmg: PASS -> SKIP (Intel XE#1192) +1 other test skip * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1999) +2 other tests fail * igt at xe_mmap@pci-membarrier-bad-pagesize: * shard-lnl: NOTRUN -> SKIP (Intel XE#4045) +1 other test skip * igt at xe_mmap@small-bar: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#512) * igt at xe_module_load@reload: * shard-dg2-set2: PASS -> FAIL (Intel XE#3546) * shard-bmg: PASS -> FAIL (Intel XE#3546) * igt at xe_oa@whitelisted-registers-userspace-config: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2541 / Intel XE#3573) +4 other tests skip * igt at xe_pat@pat-index-xe2: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#977) * igt at xe_pat@pat-index-xehpc: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2838 / Intel XE#979) * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1173) +2 other tests fail * igt at xe_peer2peer@write: * shard-lnl: NOTRUN -> SKIP (Intel XE#1061) * igt at xe_pm@d3cold-mmap-vram: * shard-lnl: NOTRUN -> SKIP (Intel XE#2284 / Intel XE#366) * igt at xe_pm@s3-multiple-execs: * shard-dg2-set2: NOTRUN -> ABORT (Intel XE#1358 / Intel XE#1794) * igt at xe_pm@s3-vm-bind-prefetch: * shard-dg2-set2: PASS -> ABORT (Intel XE#1358 / Intel XE#1794) * igt at xe_pm@s3-vm-bind-unbind-all: * shard-lnl: NOTRUN -> SKIP (Intel XE#584) * igt at xe_pm@s4-mocs: * shard-lnl: PASS -> ABORT (Intel XE#1358 / Intel XE#1794) * igt at xe_pm@s4-multiple-execs: * shard-lnl: PASS -> ABORT (Intel XE#1358 / Intel XE#1607 / Intel XE#1794) * igt at xe_pm@vram-d3cold-threshold: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#579) * igt at xe_query@multigpu-query-cs-cycles: * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#944) * igt at xe_query@multigpu-query-invalid-cs-cycles: * shard-lnl: NOTRUN -> SKIP (Intel XE#944) +1 other test skip * igt at xe_vm@munmap-style-unbind-many-end: * shard-dg2-set2: PASS -> SKIP (Intel XE#1130) +1 other test skip Possible fixes * igt at core_hotunplug@hotrebind: * shard-bmg: SKIP (Intel XE#1885) -> PASS +2 other tests pass * igt at core_setmaster@master-drop-set-root: * shard-bmg: FAIL (Intel XE#3249) -> PASS * igt at fbdev@pan: * shard-bmg: SKIP (Intel XE#2134) -> PASS * igt at kms_addfb_basic@unused-pitches: * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> PASS +18 other tests pass * igt at kms_big_fb@linear-16bpp-rotate-180: * shard-bmg: SKIP (Intel XE#2136) -> PASS +20 other tests pass * igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> PASS +1 other test pass * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: * shard-dg2-set2: SKIP (Intel XE#2136) -> PASS +5 other tests pass * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: * shard-dg2-set2: DMESG-WARN (Intel XE#1727) -> PASS * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: * shard-bmg: SKIP (Intel XE#2291) -> PASS +2 other tests pass * igt at kms_draw_crc@fill-fb: * shard-dg2-set2: SKIP (Intel XE#2136 / Intel XE#2351) -> PASS * igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4: * shard-dg2-set2: FAIL (Intel XE#301) -> PASS +4 other tests pass * igt at kms_flip@2x-flip-vs-suspend-interruptible: * shard-bmg: SKIP (Intel XE#2316) -> PASS +2 other tests pass * igt at kms_flip@blocking-wf_vblank: * shard-lnl: FAIL (Intel XE#886) -> PASS +4 other tests pass * igt at kms_flip@plain-flip-fb-recreate: * shard-bmg: FAIL (Intel XE#2882) -> PASS * igt at kms_plane@plane-panning-bottom-right-suspend: * shard-dg2-set2: ABORT (Intel XE#2625) -> PASS +1 other test pass * igt at kms_plane_cursor@viewport: * shard-dg2-set2: FAIL (Intel XE#616) -> 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-modifiers: * shard-bmg: SKIP (Intel XE#3007) -> PASS +14 other tests pass * igt at kms_pm_dc@dc5-psr: * shard-lnl: FAIL (Intel XE#718) -> PASS * igt at kms_pm_rpm@basic-pci-d3-state: * shard-bmg: SKIP (Intel XE#2446) -> PASS +3 other tests pass * igt at kms_properties@connector-properties-legacy: * shard-bmg: SKIP (Intel XE#2423) -> PASS +85 other tests pass * igt at kms_psr@psr2-primary-render: * shard-lnl: FAIL -> PASS +1 other test pass * igt at xe_exec_balancer@twice-virtual-basic: * shard-dg2-set2: SKIP (Intel XE#1130) -> PASS +31 other tests pass * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: * shard-dg2-set2: SKIP (Intel XE#1392) -> PASS +4 other tests pass * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: * shard-bmg: FAIL (Intel XE#1999) -> PASS +2 other tests pass * igt at xe_pm@s2idle-vm-bind-unbind-all: * shard-dg2-set2: ABORT (Intel XE#1358 / Intel XE#1794) -> PASS +1 other test pass * igt at xe_vm@bind-no-array-conflict: * shard-bmg: SKIP (Intel XE#1130) -> PASS +209 other tests pass Warnings * igt at kms_async_flips@invalid-async-flip: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#873) * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: * shard-bmg: SKIP (Intel XE#2370) -> SKIP (Intel XE#2423) * igt at kms_big_fb@linear-16bpp-rotate-270: * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#316) * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2327) * igt at kms_big_fb@linear-32bpp-rotate-90: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2327) +1 other test skip * igt at kms_big_fb@linear-64bpp-rotate-270: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2136 / Intel XE#2231) * shard-dg2-set2: SKIP (Intel XE#316) -> SKIP (Intel XE#2136 / Intel XE#2351) * igt at kms_big_fb@linear-64bpp-rotate-90: * shard-bmg: SKIP (Intel XE#2327) -> SKIP (Intel XE#2136) +3 other tests skip * igt at kms_big_fb@y-tiled-16bpp-rotate-0: * shard-bmg: SKIP (Intel XE#1124) -> SKIP (Intel XE#2136) +10 other tests skip * igt at kms_big_fb@y-tiled-64bpp-rotate-90: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#1124) +11 other tests skip * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#607) * igt at kms_big_fb@y-tiled-addfb-size-overflow: * shard-bmg: SKIP (Intel XE#610) -> SKIP (Intel XE#2136) * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#1124) +3 other tests skip * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#1124) +2 other tests skip * igt at kms_big_fb@yf-tiled-addfb: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2328) * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: * shard-bmg: SKIP (Intel XE#2314 / Intel XE#2894) -> SKIP (Intel XE#2423) +2 other tests skip * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2314 / Intel XE#2894) * igt at kms_bw@linear-tiling-1-displays-2560x1440p: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#367) +2 other tests skip * igt at kms_bw@linear-tiling-2-displays-1920x1080p: * shard-bmg: SKIP (Intel XE#367) -> SKIP (Intel XE#2423) +1 other test skip * igt at kms_bw@linear-tiling-2-displays-2160x1440p: * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel XE#367) * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: * shard-bmg: SKIP (Intel XE#2887) -> SKIP (Intel XE#2136) +13 other tests skip * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2887) +14 other tests skip * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: * shard-bmg: SKIP (Intel XE#2652 / Intel XE#787) -> SKIP (Intel XE#2136) +1 other test skip * igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs: * shard-dg2-set2: SKIP (Intel XE#2136 / Intel XE#2351) -> SKIP (Intel XE#455 / Intel XE#787) * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#3432) +2 other tests skip * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: * shard-bmg: SKIP (Intel XE#3432) -> SKIP (Intel XE#2136) +2 other tests skip * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2652 / Intel XE#787) * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2887) +3 other tests skip * igt at kms_ccs@random-ccs-data-y-tiled-ccs: * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#455 / Intel XE#787) +2 other tests skip * igt at kms_cdclk@mode-transition: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2724) * igt at kms_chamelium_color@ctm-0-25: * shard-bmg: SKIP (Intel XE#2325) -> SKIP (Intel XE#2423) +2 other tests skip * igt at kms_chamelium_color@ctm-negative: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2325) * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2252) +12 other tests skip * igt at kms_chamelium_hpd@dp-hpd-storm: * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2252) +1 other test skip * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel XE#373) +1 other test skip * igt at kms_chamelium_hpd@hdmi-hpd-fast: * shard-bmg: SKIP (Intel XE#2252) -> SKIP (Intel XE#2423) +9 other tests skip * igt at kms_content_protection@atomic: * shard-bmg: SKIP (Intel XE#2341) -> FAIL (Intel XE#1178) * igt at kms_content_protection@content-type-change: * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2341) * igt at kms_content_protection@dp-mst-type-0: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2390) * igt at kms_content_protection@legacy: * shard-bmg: SKIP (Intel XE#2423) -> FAIL (Intel XE#1178) +1 other test fail * igt at kms_content_protection@lic-type-1: * shard-bmg: SKIP (Intel XE#2341) -> SKIP (Intel XE#2423) * igt at kms_content_protection@uevent: * shard-bmg: SKIP (Intel XE#2423) -> FAIL (Intel XE#1188) * igt at kms_cursor_crc@cursor-offscreen-32x32: * shard-bmg: SKIP (Intel XE#2320) -> SKIP (Intel XE#2423) +4 other tests skip * igt at kms_cursor_crc@cursor-onscreen-32x32: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2320) +4 other tests skip * igt at kms_cursor_crc@cursor-onscreen-512x170: * shard-bmg: SKIP (Intel XE#2321) -> SKIP (Intel XE#2423) +2 other tests skip * igt at kms_cursor_crc@cursor-random-32x10: * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2320) * igt at kms_cursor_crc@cursor-size-hints: * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2423) +7 other tests skip * igt at kms_cursor_crc@cursor-sliding-512x512: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2321) +1 other test skip * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: * shard-bmg: SKIP (Intel XE#2291) -> SKIP (Intel XE#2423) * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: * shard-bmg: DMESG-WARN (Intel XE#877) -> SKIP (Intel XE#2423) * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2286) * igt at kms_display_modes@extended-mode-basic: * shard-bmg: SKIP (Intel XE#2425) -> DMESG-WARN (Intel XE#877) * igt at kms_display_modes@mst-extended-mode-negative: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2323) * igt at kms_dsc@dsc-basic: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2244) +2 other tests skip * igt at kms_dsc@dsc-with-output-formats: * shard-bmg: SKIP (Intel XE#2244) -> SKIP (Intel XE#2136) * igt at kms_dsc@dsc-with-output-formats-with-bpc: * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#455) +1 other test skip * igt at kms_fbcon_fbt@psr-suspend: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#776) * igt at kms_feature_discovery@display-4x: * shard-bmg: SKIP (Intel XE#1138) -> SKIP (Intel XE#2423) * igt at kms_feature_discovery@dp-mst: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2375) * igt at kms_feature_discovery@psr2: * shard-bmg: SKIP (Intel XE#2374) -> SKIP (Intel XE#2423) * igt at kms_flip@2x-flip-vs-expired-vblank: * shard-bmg: FAIL -> SKIP (Intel XE#2423) * igt at kms_flip@2x-flip-vs-panning-interruptible: * shard-bmg: SKIP (Intel XE#2316) -> SKIP (Intel XE#2423) * igt at kms_flip@2x-plain-flip: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2316) +1 other test skip * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: * shard-bmg: SKIP (Intel XE#2293 / Intel XE#2380) -> SKIP (Intel XE#2136) +4 other tests skip * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2380) * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2293 / Intel XE#2380) * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2293 / Intel XE#2380) +3 other tests skip * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: * shard-dg2-set2: SKIP (Intel XE#2136 / Intel XE#2351) -> SKIP (Intel XE#651) +2 other tests skip * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2311) +4 other tests skip * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#651) +3 other tests skip * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: * shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#2136) +27 other tests skip * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2311) +5 other tests skip * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2311) +29 other tests skip * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: * shard-bmg: FAIL (Intel XE#2333) -> SKIP (Intel XE#2136) +13 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: * shard-bmg: SKIP (Intel XE#2136) -> FAIL (Intel XE#2333) +6 other tests fail * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> FAIL (Intel XE#2333) +3 other tests fail * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: * shard-bmg: SKIP (Intel XE#2312) -> FAIL (Intel XE#2333) +1 other test fail * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2312) +7 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2136) +3 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: * shard-bmg: FAIL (Intel XE#2333) -> SKIP (Intel XE#2312) +2 other tests skip * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt: * shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#2312) +7 other tests skip * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: * shard-bmg: SKIP (Intel XE#2352) -> SKIP (Intel XE#2136) * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2313) +3 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#653) +3 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: * shard-bmg: SKIP (Intel XE#2313) -> SKIP (Intel XE#2312) +4 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2352) * shard-dg2-set2: SKIP (Intel XE#2136 / Intel XE#2351) -> SKIP (Intel XE#658) * igt at kms_frontbuffer_tracking@plane-fbc-rte: * shard-bmg: SKIP (Intel XE#2350) -> SKIP (Intel XE#2136) * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2313) +29 other tests skip * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2313) +7 other tests skip * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: * shard-dg2-set2: SKIP (Intel XE#2136 / Intel XE#2351) -> SKIP (Intel XE#653) +2 other tests skip * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2136) +7 other tests skip * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: * shard-bmg: SKIP (Intel XE#2313) -> SKIP (Intel XE#2136) +30 other tests skip * igt at kms_getfb@getfb2-accept-ccs: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2340) * igt at kms_hdr@invalid-hdr: * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel XE#455) +3 other tests skip * igt at kms_joiner@invalid-modeset-ultra-joiner: * shard-bmg: SKIP (Intel XE#2927) -> SKIP (Intel XE#2136) * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2501) * igt at kms_panel_fitting@atomic-fastset: * shard-bmg: SKIP (Intel XE#2486) -> SKIP (Intel XE#2423) * igt at kms_plane_lowres@tiling-y: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2393) * igt at kms_plane_lowres@tiling-yf: * shard-bmg: SKIP (Intel XE#2393) -> SKIP (Intel XE#2423) * igt at kms_plane_multiple@tiling-y: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2493) * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2763) +2 other tests skip * igt at kms_pm_backlight@basic-brightness: * shard-bmg: SKIP (Intel XE#870) -> SKIP (Intel XE#2136) * igt at kms_pm_backlight@fade-with-dpms: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#870) * igt at kms_pm_dc@dc5-retention-flops: * shard-bmg: SKIP (Intel XE#3309) -> SKIP (Intel XE#2136) * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: * shard-bmg: SKIP (Intel XE#2446) -> SKIP (Intel XE#1439 / Intel XE#3141 / Intel XE#836) * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#1489) * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#1489) * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: * shard-bmg: SKIP (Intel XE#1489) -> SKIP (Intel XE#2136) +7 other tests skip * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#1489) +8 other tests skip * igt at kms_psr@fbc-psr-suspend: * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel XE#2234 / Intel XE#2850) +2 other tests skip * igt at kms_psr@fbc-psr2-cursor-blt: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2234 / Intel XE#2850) +11 other tests skip * igt at kms_psr@fbc-psr2-sprite-plane-onoff: * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#2850 / Intel XE#929) +1 other test skip * igt at kms_psr@pr-cursor-render: * shard-bmg: SKIP (Intel XE#2234 / Intel XE#2850) -> SKIP (Intel XE#2136 / Intel XE#2231) * shard-dg2-set2: SKIP (Intel XE#2850 / Intel XE#929) -> SKIP (Intel XE#2136) * igt at kms_psr@psr-basic: * shard-bmg: SKIP (Intel XE#2234 / Intel XE#2850) -> SKIP (Intel XE#2136) +12 other tests skip * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: * shard-bmg: SKIP (Intel XE#2136) -> SKIP (Intel XE#2414) * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: * shard-bmg: SKIP (Intel XE#2330) -> SKIP (Intel XE#2423) * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel XE#3414) * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#3414 / Intel XE#3904) * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2330) * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: * shard-bmg: SKIP (Intel XE#3414 / Intel XE#3904) -> SKIP (Intel XE#2423) * igt at kms_scaling_modes@scaling-mode-center: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2413) * igt at kms_scaling_modes@scaling-mode-none: * shard-bmg: SKIP (Intel XE#2413) -> SKIP (Intel XE#2423) +1 other test skip * igt at kms_tiled_display@basic-test-pattern-with-chamelium: * shard-dg2-set2: SKIP (Intel XE#362) -> SKIP (Intel XE#1500) * igt at kms_tv_load_detect@load-detect: * shard-bmg: SKIP (Intel XE#2450) -> SKIP (Intel XE#2423) * igt at kms_vrr@cmrr: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#2168) * igt at kms_vrr@flip-basic-fastset: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#1499) * igt at kms_vrr@flip-suspend: * shard-bmg: SKIP (Intel XE#1499) -> SKIP (Intel XE#2423) * igt at kms_vrr@seamless-rr-switch-drrs: * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#1499) * igt at kms_writeback@writeback-check-output-xrgb2101010: * shard-bmg: SKIP (Intel XE#756) -> SKIP (Intel XE#2423) +1 other test skip * igt at kms_writeback@writeback-fb-id: * shard-bmg: SKIP (Intel XE#2423) -> SKIP (Intel XE#756) * igt at xe_copy_basic@mem-set-linear-0x369: * shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#1126) * igt at xe_eudebug@basic-read-event: * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#2905) +15 other tests skip * igt at xe_eudebug@sysfs-toggle: * shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#2905) +2 other tests skip * igt at xe_eudebug_online@single-step: * shard-bmg: SKIP (Intel XE#2905) -> SKIP (Intel XE#1130) +10 other tests skip * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap: * shard-bmg: SKIP (Intel XE#2322) -> SKIP (Intel XE#1130) +9 other tests skip * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#2322) +12 other tests skip * igt at xe_exec_fault_mode@many-execqueues-rebind: * shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#288) +4 other tests skip * igt at xe_oa@oa-regs-whitelisted: * shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#2541 / Intel XE#3573) +1 other test skip * igt at xe_oa@oa-tlb-invalidate: * shard-bmg: SKIP (Intel XE#2248) -> SKIP (Intel XE#1130) * igt at xe_oa@unprivileged-single-ctx-counters: * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#2248) * igt at xe_pat@pat-index-xehpc: * shard-bmg: SKIP (Intel XE#1420) -> SKIP (Intel XE#1130) * igt at xe_peer2peer@read: * shard-dg2-set2: SKIP (Intel XE#1061) -> FAIL (Intel XE#1173) * igt at xe_pm@d3cold-mmap-system: * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#2284) +1 other test skip * igt at xe_pm@d3cold-mmap-vram: * shard-bmg: SKIP (Intel XE#2284) -> SKIP (Intel XE#1130) * igt at xe_pm@s2idle-d3hot-basic-exec: * shard-dg2-set2: SKIP (Intel XE#1130) -> ABORT (Intel XE#1358) * igt at xe_query@multigpu-query-cs-cycles: * shard-bmg: SKIP (Intel XE#944) -> SKIP (Intel XE#1130) +1 other test skip * igt at xe_query@multigpu-query-invalid-extension: * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#944) +3 other tests skip * igt at xe_query@multigpu-query-uc-fw-version-guc: * shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#944) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * IGT: IGT_8199 -> IGTPW_12461 IGTPW_12461: 1a3de53b24a62a32ea7c968566bebcef81220c24 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef -------------- next part -------------- An HTML attachment was scrubbed... URL: From mohammed.thasleem at intel.com Mon Jan 20 18:22:05 2025 From: mohammed.thasleem at intel.com (Thasleem, Mohammed) Date: Mon, 20 Jan 2025 18:22:05 +0000 Subject: =?utf-8?B?UkU6IOKclyBpOTE1LkNJLkJBVDogZmFpbHVyZSBmb3Igc2VyaWVzIHN0YXJ0?= =?utf-8?B?aW5nIHdpdGggW3Y0LDEvMl0gdGVzdHMvaW50ZWwva21zX2Zyb250YnVmZmVy?= =?utf-8?Q?=5Ftracking:_Skip_fbc-*_tests_on_BMG_(rev2)?= In-Reply-To: <173736072474.2030316.1159097210331151724@b555e5b46a47> References: <20250109055652.405793-1-mohammed.thasleem@intel.com> <173736072474.2030316.1159097210331151724@b555e5b46a47> Message-ID: Hi, Reported changes have nothing to do with the changes except below test skips. Could you please re-report the results. Skip on BMG expected for igt at kms_frontbuffer_tracking@fbc-.* From: Patchwork Sent: Monday, January 20, 2025 1:42 PM To: Thasleem, Mohammed Cc: igt-dev at lists.freedesktop.org Subject: ? i915.CI.BAT: failure for series starting with [v4,1/2] tests/intel/kms_frontbuffer_tracking: Skip fbc-* tests on BMG (rev2) Patch Details Series: series starting with [v4,1/2] tests/intel/kms_frontbuffer_tracking: Skip fbc-* tests on BMG (rev2) URL: https://patchwork.freedesktop.org/series/143304/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/index.html CI Bug Log - changes from IGT_8198 -> IGTPW_12459 Summary FAILURE Serious unknown changes coming with IGTPW_12459 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12459, 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_12459/index.html Participating hosts (44 -> 40) Missing (4): bat-apl-1 fi-kbl-guc fi-glk-j4005 fi-snb-2520m Possible new issues Here are the unknown changes that may have been introduced in IGTPW_12459: IGT changes Possible regressions * igt at i915_selftest@live: * fi-cfl-guc: PASS -> ABORT +1 other test abort * fi-cfl-8700k: PASS -> ABORT +1 other test abort * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt: * fi-tgl-1115g4: NOTRUN -> SKIP +218 other tests skip * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite: * fi-ilk-650: NOTRUN -> INCOMPLETE * igt at meta_test@fail-result (NEW): * bat-arlh-2: NOTRUN -> FAIL * igt at xe_module_load@load: * fi-ivb-3770: NOTRUN -> FAIL * fi-hsw-4770: NOTRUN -> FAIL * fi-ilk-650: NOTRUN -> FAIL * bat-mtlp-6: NOTRUN -> ABORT * fi-kbl-x1275: NOTRUN -> FAIL +1 other test fail * bat-kbl-2: NOTRUN -> FAIL * bat-dg1-6: NOTRUN -> DMESG-WARN New tests New tests have been introduced between IGT_8198 and IGTPW_12459: New IGT tests (103) * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-farfromfence-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-cpu: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-pwrite: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-cpu: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-pwrite: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-indfb-fliptrack-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-pwrite: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-cpu: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-pwrite: * Statuses : 3 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-shrfb-fliptrack-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-indfb-fliptrack-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-cpu: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-pwrite: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-cpu: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-pwrite: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-pwrite: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-cpu: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-pwrite: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-cpu: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-pwrite: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-cpu: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-pwrite: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-pwrite: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-cpu: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-pwrite: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-shrfb-fliptrack-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-farfromfence-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-cpu: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-pwrite: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-cpu: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-gtt: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-pwrite: * Statuses : 2 skip(s) * Exec time: [0.0] s * igt at meta_test@fail-result: * Statuses : 2 fail(s) * Exec time: [0.01, 0.02] s Known issues Here are the changes found in IGTPW_12459 that come from known issues: IGT changes Issues hit * igt at i915_selftest@live at workarounds: * bat-mtlp-6: PASS -> DMESG-FAIL (i915#12061) +1 other test dmesg-fail * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt: * bat-arlh-2: NOTRUN -> SKIP (i915#11346) +719 other tests skip * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen: * fi-kbl-x1275: NOTRUN -> SKIP +719 other tests skip * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: * bat-dg1-6: NOTRUN -> SKIP (i915#12311) +79 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: * fi-ilk-650: NOTRUN -> SKIP +170 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: * fi-tgl-1115g4: NOTRUN -> SKIP +138 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-rte: * bat-kbl-2: NOTRUN -> SKIP +104 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: * fi-ivb-3770: NOTRUN -> SKIP +197 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-rte: * fi-hsw-4770: NOTRUN -> SKIP +10 other tests skip * igt at kms_frontbuffer_tracking@pipe-fbc-rte: * fi-tgl-1115g4: NOTRUN -> SKIP (i915#9766) * bat-dg1-6: NOTRUN -> SKIP (i915#12311 / i915#4342) * igt at kms_frontbuffer_tracking@plane-fbc-rte: * fi-tgl-1115g4: NOTRUN -> SKIP (i915#10070) Possible fixes * igt at i915_module_load@reload: * bat-atsm-1: ABORT (i915#13292) -> PASS * igt at kms_addfb_basic@basic-x-tiled-legacy: * bat-arlh-2: SKIP (i915#10200 / i915#11346 / i915#11666) -> PASS +1 other test pass * bat-dg1-6: SKIP (i915#12311 / i915#4212) -> PASS +1 other test pass Warnings * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: * bat-arlh-2: SKIP (i915#10200 / i915#11346 / i915#11666 / i915#12203) -> SKIP (i915#11346 / i915#12203) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_8198 -> IGTPW_12459 * Linux: CI_DRM_15978 -> CI_DRM_15982 CI-20190529: 20190529 CI_DRM_15978: db09bf4e722f65089b91798e6d490d21b8dd8143 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15982: aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12459: c33d54be70c2115e82190804df90d1bb83939b5d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git -------------- next part -------------- An HTML attachment was scrubbed... URL: From mohammed.thasleem at intel.com Mon Jan 20 18:22:18 2025 From: mohammed.thasleem at intel.com (Thasleem, Mohammed) Date: Mon, 20 Jan 2025 18:22:18 +0000 Subject: =?utf-8?B?UkU6IOKclyBYZS5DSS5CQVQ6IGZhaWx1cmUgZm9yIHNlcmllcyBzdGFydGlu?= =?utf-8?B?ZyB3aXRoIFt2NCwxLzJdIHRlc3RzL2ludGVsL2ttc19mcm9udGJ1ZmZlcl90?= =?utf-8?Q?racking:_Skip_fbc-*_tests_on_BMG_(rev2)?= In-Reply-To: <173736065226.2030316.11664335054606579423@b555e5b46a47> References: <20250109055652.405793-1-mohammed.thasleem@intel.com> <173736065226.2030316.11664335054606579423@b555e5b46a47> Message-ID: Hi, Reported changes have nothing to do with the changes except below test skips. Could you please re-report the results. Skip on BMG expected for igt at kms_frontbuffer_tracking@fbc-.* From: Patchwork Sent: Monday, January 20, 2025 1:41 PM To: Thasleem, Mohammed Cc: igt-dev at lists.freedesktop.org Subject: ? Xe.CI.BAT: failure for series starting with [v4,1/2] tests/intel/kms_frontbuffer_tracking: Skip fbc-* tests on BMG (rev2) Patch Details Series: series starting with [v4,1/2] tests/intel/kms_frontbuffer_tracking: Skip fbc-* tests on BMG (rev2) URL: https://patchwork.freedesktop.org/series/143304/ State: failure Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12459/index.html CI Bug Log - changes from XEIGT_8198_BAT -> XEIGTPW_12459_BAT Summary FAILURE Serious unknown changes coming with XEIGTPW_12459_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12459_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 (8 -> 8) No changes in participating hosts Possible new issues Here are the unknown changes that may have been introduced in XEIGTPW_12459_BAT: IGT changes Possible regressions * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: * bat-dg2-oem2: NOTRUN -> SKIP +40 other tests skip * igt at kms_frontbuffer_tracking@fbc-tiling-4: * bat-bmg-1: NOTRUN -> SKIP +42 other tests skip Known issues Here are the changes found in XEIGTPW_12459_BAT that come from known issues: IGT changes Issues hit * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc: * bat-dg2-oem2: NOTRUN -> SKIP (Intel XE#651) +86 other tests skip * igt at kms_frontbuffer_tracking@drrs-modesetfrombusy: * bat-bmg-1: NOTRUN -> SKIP (Intel XE#2311) +86 other tests skip * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: * bat-bmg-2: NOTRUN -> SKIP (Intel XE#2434 / Intel XE#2548) +223 other tests skip * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: * bat-lnl-2: NOTRUN -> SKIP (Intel XE#2548) +462 other tests skip * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render: * bat-lnl-1: NOTRUN -> SKIP (Intel XE#651) +73 other tests skip * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move: * bat-lnl-1: NOTRUN -> SKIP (Intel XE#656) +239 other tests skip * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: * bat-dg2-oem2: NOTRUN -> SKIP (Intel XE#658) +2 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: * bat-pvc-2: NOTRUN -> SKIP (Intel XE#1024) +432 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc: * bat-bmg-2: NOTRUN -> SKIP (Intel XE#2548) +238 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: * bat-atsm-2: NOTRUN -> SKIP (Intel XE#1024) +432 other tests skip * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: * bat-bmg-1: NOTRUN -> SKIP (Intel XE#2352) +2 other tests skip * igt at kms_frontbuffer_tracking@pipe-fbc-rte: * bat-dg2-oem2: NOTRUN -> SKIP (Intel XE#455) * igt at kms_frontbuffer_tracking@plane-fbc-rte: * bat-bmg-1: NOTRUN -> SKIP (Intel XE#2350) * bat-dg2-oem2: NOTRUN -> SKIP (Intel XE#1158) * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: * bat-bmg-1: NOTRUN -> SKIP (Intel XE#2313) +86 other tests skip * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt: * bat-dg2-oem2: NOTRUN -> SKIP (Intel XE#653) +86 other tests skip * igt at kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: * bat-adlp-vf: NOTRUN -> SKIP (Intel XE#2463) +462 other tests skip * igt at kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: * bat-atsm-2: NOTRUN -> SKIP (Intel XE#1024 / Intel XE#783) +29 other tests skip * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt: * bat-bmg-1: NOTRUN -> SKIP (Intel XE#2312) +238 other tests skip * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: * bat-dg2-oem2: NOTRUN -> SKIP (Intel XE#656) +239 other tests skip * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: * bat-pvc-2: NOTRUN -> SKIP (Intel XE#1024 / Intel XE#783) +29 other tests skip Build changes * IGT: IGT_8198 -> IGTPW_12459 * Linux: xe-2508-9033a16532f74ae36c48d729d0855a6e189039df -> xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 IGTPW_12459: c33d54be70c2115e82190804df90d1bb83939b5d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2508-9033a16532f74ae36c48d729d0855a6e189039df: 9033a16532f74ae36c48d729d0855a6e189039df xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2: aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 18:40:01 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 18:40:01 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fwedged=3A?= =?utf-8?q?_Read_wedged=5Fmode_debugfs?= In-Reply-To: <20250120130927.65919-1-pravalika.gurram@intel.com> References: <20250120130927.65919-1-pravalika.gurram@intel.com> Message-ID: <173739840151.2260231.8953904847526789698@b555e5b46a47> == Series Details == Series: tests/intel/xe_wedged: Read wedged_mode debugfs URL : https://patchwork.freedesktop.org/series/143729/ State : failure == Summary == CI Bug Log - changes from XEIGT_8199_full -> XEIGTPW_12466_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12466_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12466_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_12466_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@flip-vs-modeset-vs-hang at a-dp4: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_flip@flip-vs-modeset-vs-hang at a-dp4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at kms_flip@flip-vs-modeset-vs-hang at a-dp4.html * igt at kms_flip@modeset-vs-vblank-race at a-dp2: - shard-bmg: [PASS][3] -> [FAIL][4] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@modeset-vs-vblank-race at a-dp2.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_flip@modeset-vs-vblank-race at a-dp2.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-lnl: [PASS][5] -> [FAIL][6] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-1/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-1/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_vblank@query-busy-hang: - shard-dg2-set2: [PASS][7] -> [FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_vblank@query-busy-hang.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at kms_vblank@query-busy-hang.html * igt at kms_vblank@query-busy-hang at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][9] +1 other test fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at kms_vblank@query-busy-hang at pipe-d-dp-4.html New tests --------- New tests have been introduced between XEIGT_8199_full and XEIGTPW_12466_full: ### New IGT tests (2) ### * igt at kms_atomic_interruptible@legacy-cursor at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [6.27] s * igt at xe_wedged@basic-wedged-read: - Statuses : 3 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12466_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotrebind-lateclose: - shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#1885]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at core_hotunplug@hotrebind-lateclose.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at core_hotunplug@hotrebind-lateclose.html * igt at core_setmaster@master-drop-set-shared-fd: - shard-bmg: [PASS][12] -> [SKIP][13] ([Intel XE#3453]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at core_setmaster@master-drop-set-shared-fd.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at core_setmaster@master-drop-set-shared-fd.html * igt at fbdev@nullptr: - shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#2134]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at fbdev@nullptr.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at fbdev@nullptr.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1125]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-1/igt at intel_hwmon@hwmon-write.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: NOTRUN -> [FAIL][17] ([Intel XE#3719]) +3 other tests fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-4/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-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#3767]) +23 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-edp-1: - shard-lnl: [PASS][19] -> [FAIL][20] ([Intel XE#3908]) +1 other test fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-7/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-edp-1.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-8/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-edp-1.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2136]) +4 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@linear-64bpp-rotate-0: - shard-lnl: NOTRUN -> [DMESG-WARN][24] ([Intel XE#1725]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-5/igt at kms_big_fb@linear-64bpp-rotate-0.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#316]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-435/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1407]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-6/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#2136]) +21 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +8 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-432/igt at kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#607]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-463/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1428]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-6/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +6 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-1/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2191]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-6/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2191]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#367]) +6 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-466/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1512]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-1/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +8 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-1/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#787]) +160 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#3432]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-6/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#2907]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-434/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 at pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-c-hdmi-a-6.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-435/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-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][43] -> [INCOMPLETE][44] ([Intel XE#3113]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-a-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-y-tiled-ccs at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#455] / [Intel XE#787]) +32 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-432/igt at kms_ccs@random-ccs-data-y-tiled-ccs at pipe-d-dp-2.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#306]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-6/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#373]) +9 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-434/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#373]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-8/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#307]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-1/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][50] ([Intel XE#1178]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_content_protection@legacy at pipe-a-dp-2.html * igt at kms_content_protection@legacy 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_12466/shard-dg2-463/igt at kms_content_protection@legacy at pipe-a-dp-4.html * igt at kms_content_protection@type1: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#3278]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-3/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][53] ([Intel XE#1188]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-3/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#308]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-435/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-sliding-128x42: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1424]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-3/igt at kms_cursor_crc@cursor-sliding-128x42.html * igt at kms_cursor_crc@cursor-suspend: - shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2423]) +83 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_cursor_crc@cursor-suspend.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#2291]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][61] -> [DMESG-WARN][62] ([Intel XE#877]) +2 other tests dmesg-warn [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-3/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][63] -> [FAIL][64] ([Intel XE#1475]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-3/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/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-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#323]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#323]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-8/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][67] ([Intel XE#3383]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-6/igt at kms_display_modes@extended-mode-basic.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#701]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at kms_feature_discovery@chamelium.html - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#701]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-5/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#702]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-8/igt at kms_feature_discovery@display-2x.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_8199/shard-bmg-3/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_12466/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at ac-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-modeset: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1421]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-6/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#2316]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_flip@2x-wf_vblank-ts-check.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp4: - shard-dg2-set2: [PASS][76] -> [FAIL][77] ([Intel XE#301]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp4.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at b-dp4.html * igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][78] ([Intel XE#301]) +2 other tests fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at b-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank at d-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][79] ([Intel XE#301] / [Intel XE#3321]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at d-dp4.html * igt at kms_flip@flip-vs-modeset-vs-hang: - shard-dg2-set2: [PASS][80] -> [INCOMPLETE][81] ([Intel XE#2049]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_flip@flip-vs-modeset-vs-hang.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at kms_flip@flip-vs-modeset-vs-hang.html * igt at kms_flip@flip-vs-suspend: - shard-bmg: [PASS][82] -> [INCOMPLETE][83] ([Intel XE#2597]) +1 other test incomplete [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@flip-vs-suspend.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-1/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@modeset-vs-vblank-race: - shard-bmg: [PASS][84] -> [FAIL][85] ([Intel XE#3098]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@modeset-vs-vblank-race.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_flip@modeset-vs-vblank-race.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2293]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-4/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-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1401]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-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]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2380]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#455]) +8 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-432/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#651]) +23 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#2136]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#656]) +25 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-dg2-set2: [PASS][95] -> [SKIP][96] ([Intel XE#2136] / [Intel XE#2351]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#651]) +4 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-8/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2136] / [Intel XE#2351]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#658]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#653]) +25 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_lease@invalid-create-leases: - shard-dg2-set2: [PASS][101] -> [SKIP][102] ([Intel XE#2423] / [i915#2575]) +6 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_lease@invalid-create-leases.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_lease@invalid-create-leases.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][103] ([Intel XE#616]) +2 other tests fail [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-435/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#309]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-8/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#2763]) +7 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/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-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/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-downscale-factor-0-5-unity-scaling: - shard-bmg: [PASS][107] -> [SKIP][108] ([Intel XE#3007]) +6 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2763]) +8 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-466/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2763]) +11 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-5/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a.html * igt at kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#870]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-432/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2938]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-435/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-bmg: [PASS][113] -> [SKIP][114] ([Intel XE#2446]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1439] / [Intel XE#3141]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-5/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#1489]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-434/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#1122]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-434/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1406]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-5/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_psr@psr-dpms.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#3414]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at kms_rotation_crc@primary-rotation-90.html - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-5/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1435]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-8/igt at kms_setmode@invalid-clone-single-crtc.html - shard-bmg: [PASS][123] -> [SKIP][124] ([Intel XE#1435]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_setmode@invalid-clone-single-crtc.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#362]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-8/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@flipline: - shard-lnl: [PASS][126] -> [FAIL][127] ([Intel XE#1522]) +1 other test fail [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-8/igt at kms_vrr@flipline.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-5/igt at kms_vrr@flipline.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#756]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-6/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#756]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-466/igt at kms_writeback@writeback-fb-id-xrgb2101010.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_12466/shard-dg2-434/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#3889]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#3889]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-6/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug_online@preempt-breakpoint: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2905]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-5/igt at xe_eudebug_online@preempt-breakpoint.html * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#688]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-3/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt at xe_exec_balancer@many-virtual-userptr-invalidate-race: - shard-dg2-set2: [PASS][135] -> [SKIP][136] ([Intel XE#1130]) +11 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_exec_balancer@many-virtual-userptr-invalidate-race.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at xe_exec_balancer@many-virtual-userptr-invalidate-race.html * igt at xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [PASS][137] -> [SKIP][138] ([Intel XE#1130]) +197 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at xe_exec_basic@many-bindexecqueue-rebind.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at xe_exec_basic@many-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind: - shard-dg2-set2: [PASS][139] -> [SKIP][140] ([Intel XE#1392]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1392]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-4/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#288]) +19 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#2905]) +8 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-435/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][144] ([Intel XE#1999]) +2 other tests fail [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#4045]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-5/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#1130]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#2838] / [Intel XE#979]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-434/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][149] ([Intel XE#1173]) +2 other tests fail [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-466/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_peer2peer@write: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1061]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-1/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#2284] / [Intel XE#366]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at xe_pm@d3cold-mmap-vram.html - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#2284] / [Intel XE#366]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-4/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1948]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-3/igt at xe_pm@d3hot-mmap-vram.html * igt at xe_pm@s3-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#584]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-1/igt at xe_pm@s3-vm-bind-unbind-all.html * igt at xe_pm@s4-exec-after: - shard-lnl: NOTRUN -> [ABORT][155] ([Intel XE#1358] / [Intel XE#1607]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-2/igt at xe_pm@s4-exec-after.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#579]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-config: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#944]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-6/igt at xe_query@multigpu-query-config.html * igt at xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#944]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-466/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#3342]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt at core_hotunplug@hotrebind: - shard-bmg: [SKIP][160] ([Intel XE#1885]) -> [PASS][161] +2 other tests pass [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at core_hotunplug@hotrebind.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at core_hotunplug@hotrebind.html * igt at core_setmaster@master-drop-set-root: - shard-bmg: [FAIL][162] ([Intel XE#3249]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at core_setmaster@master-drop-set-root.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-4/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@pan: - shard-bmg: [SKIP][164] ([Intel XE#2134]) -> [PASS][165] +1 other test pass [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at fbdev@pan.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-5/igt at fbdev@pan.html * igt at kms_addfb_basic@unused-pitches: - shard-dg2-set2: [SKIP][166] ([Intel XE#2423] / [i915#2575]) -> [PASS][167] +16 other tests pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_addfb_basic@unused-pitches.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-466/igt at kms_addfb_basic@unused-pitches.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [SKIP][168] ([Intel XE#2136]) -> [PASS][169] +14 other tests pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@linear-16bpp-rotate-180.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][170] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][171] +1 other test pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [SKIP][172] ([Intel XE#2291]) -> [PASS][173] +3 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-4/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][174] ([Intel XE#2425]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-1/igt at kms_display_modes@extended-mode-basic.html * igt at kms_draw_crc@fill-fb: - shard-dg2-set2: [SKIP][176] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_draw_crc@fill-fb.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at kms_draw_crc@fill-fb.html * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-bmg: [SKIP][178] ([Intel XE#2316]) -> [PASS][179] +1 other test pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][180] -> [PASS][181] +1 other test pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at ab-dp2-hdmi-a3.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/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 ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][182] ([Intel XE#301]) -> [PASS][183] +6 other tests pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][184] ([Intel XE#3321]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][186] ([Intel XE#886]) -> [PASS][187] +4 other tests pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_flip@blocking-wf_vblank.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-3/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@flip-vs-panning-vs-hang: - shard-bmg: [SKIP][188] ([Intel XE#2423]) -> [PASS][189] +65 other tests pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip@flip-vs-panning-vs-hang.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-3/igt at kms_flip@flip-vs-panning-vs-hang.html * igt at kms_flip@plain-flip-fb-recreate: - shard-bmg: [FAIL][190] ([Intel XE#2882]) -> [PASS][191] +1 other test pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_flip@plain-flip-fb-recreate.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][192] ([Intel XE#2136]) -> [PASS][193] +3 other tests pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_plane_cursor@viewport: - shard-dg2-set2: [FAIL][194] ([Intel XE#616]) -> [PASS][195] +1 other test pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_plane_cursor@viewport.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-466/igt at kms_plane_cursor@viewport.html * igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-bmg: [SKIP][196] ([Intel XE#3007]) -> [PASS][197] +16 other tests pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-4/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt at kms_pm_rpm@legacy-planes: - shard-dg2-set2: [SKIP][198] ([Intel XE#2446]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_pm_rpm@legacy-planes.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-435/igt at kms_pm_rpm@legacy-planes.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-bmg: [SKIP][200] ([Intel XE#2446]) -> [PASS][201] +2 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_psr@psr2-primary-render: - shard-lnl: [FAIL][202] -> [PASS][203] +1 other test pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_psr@psr2-primary-render.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-3/igt at kms_psr@psr2-primary-render.html * igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1: - shard-lnl: [FAIL][204] ([Intel XE#899]) -> [PASS][205] +1 other test pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-8/igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-lnl-5/igt at kms_universal_plane@cursor-fb-leak at pipe-c-edp-1.html * igt at xe_exec_balancer@twice-virtual-basic: - shard-dg2-set2: [SKIP][206] ([Intel XE#1130]) -> [PASS][207] +29 other tests pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_balancer@twice-virtual-basic.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-435/igt at xe_exec_balancer@twice-virtual-basic.html * igt at xe_exec_basic@multigpu-no-exec-basic: - shard-dg2-set2: [SKIP][208] ([Intel XE#1392]) -> [PASS][209] +1 other test pass [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-basic.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-435/igt at xe_exec_basic@multigpu-no-exec-basic.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-bmg: [FAIL][210] ([Intel XE#1999]) -> [PASS][211] +2 other tests pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-4/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [ABORT][212] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][213] +1 other test pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_vm@bind-no-array-conflict: - shard-bmg: [SKIP][214] ([Intel XE#1130]) -> [PASS][215] +203 other tests pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at xe_vm@bind-no-array-conflict.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at xe_vm@bind-no-array-conflict.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][216] ([Intel XE#2233]) -> [SKIP][217] ([Intel XE#2423]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][218] ([Intel XE#2423]) -> [SKIP][219] ([Intel XE#873]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_async_flips@invalid-async-flip.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-bmg: [SKIP][220] ([Intel XE#3768]) -> [SKIP][221] ([Intel XE#2423]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][222] ([Intel XE#2385]) -> [SKIP][223] ([Intel XE#3007]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: [SKIP][224] ([Intel XE#2136]) -> [SKIP][225] ([Intel XE#316]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@linear-16bpp-rotate-270.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-435/igt at kms_big_fb@linear-16bpp-rotate-270.html - shard-bmg: [SKIP][226] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][227] ([Intel XE#2327]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@linear-16bpp-rotate-270.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: [SKIP][228] ([Intel XE#2136]) -> [SKIP][229] ([Intel XE#2327]) +3 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@linear-32bpp-rotate-90.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-5/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-bmg: [SKIP][230] ([Intel XE#2327]) -> [SKIP][231] ([Intel XE#2136] / [Intel XE#2231]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_big_fb@linear-64bpp-rotate-90.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@linear-8bpp-rotate-90: - shard-bmg: [SKIP][232] ([Intel XE#2327]) -> [SKIP][233] ([Intel XE#2136]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_big_fb@linear-8bpp-rotate-90.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_big_fb@linear-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: [SKIP][234] ([Intel XE#1124]) -> [SKIP][235] ([Intel XE#2136]) +10 other tests skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_big_fb@y-tiled-16bpp-rotate-0.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][236] ([Intel XE#2136]) -> [SKIP][237] ([Intel XE#607]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][238] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][239] ([Intel XE#1124]) +3 other tests skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-4/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html - shard-dg2-set2: [SKIP][240] ([Intel XE#2136]) -> [SKIP][241] ([Intel XE#1124]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-466/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][242] ([Intel XE#2136]) -> [SKIP][243] ([Intel XE#1124]) +10 other tests skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][244] ([Intel XE#1124]) -> [SKIP][245] ([Intel XE#2136]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_big_fb@yf-tiled-8bpp-rotate-270.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_big_fb@yf-tiled-8bpp-rotate-270.html - shard-bmg: [SKIP][246] ([Intel XE#1124]) -> [SKIP][247] ([Intel XE#2136] / [Intel XE#2231]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_big_fb@yf-tiled-8bpp-rotate-270.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: [SKIP][248] ([Intel XE#367]) -> [SKIP][249] ([Intel XE#2423] / [i915#2575]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-bmg: [SKIP][250] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][251] ([Intel XE#2423]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][252] ([Intel XE#2423]) -> [SKIP][253] ([Intel XE#367]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-5/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][254] ([Intel XE#3007]) -> [SKIP][255] ([Intel XE#367]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-4/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html - shard-dg2-set2: [SKIP][256] ([Intel XE#2423] / [i915#2575]) -> [SKIP][257] ([Intel XE#367]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-3-displays-1920x1080p: - shard-bmg: [SKIP][258] ([Intel XE#367]) -> [SKIP][259] ([Intel XE#2423]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_bw@linear-tiling-3-displays-1920x1080p.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_bw@linear-tiling-3-displays-1920x1080p.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][260] ([Intel XE#2136]) -> [SKIP][261] ([Intel XE#2887]) +16 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-3/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][262] ([Intel XE#2887]) -> [SKIP][263] ([Intel XE#2136]) +12 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-bmg: [SKIP][264] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][265] ([Intel XE#2136]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs: - shard-dg2-set2: [SKIP][266] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][267] ([Intel XE#455] / [Intel XE#787]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-434/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][268] ([Intel XE#3432]) -> [SKIP][269] ([Intel XE#2136]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-bmg: [SKIP][270] ([Intel XE#2136]) -> [SKIP][271] ([Intel XE#3432]) +2 other tests skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][272] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][273] ([Intel XE#2887]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][274] ([Intel XE#2887]) -> [SKIP][275] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][276] ([Intel XE#1727] / [Intel XE#3124]) -> [INCOMPLETE][277] ([Intel XE#1727] / [Intel XE#2692]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/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-cc: - shard-dg2-set2: [DMESG-WARN][278] ([Intel XE#1727]) -> [INCOMPLETE][279] ([Intel XE#1727] / [Intel XE#3124]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-y-tiled-ccs: - shard-dg2-set2: [SKIP][280] ([Intel XE#2136]) -> [SKIP][281] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-432/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][282] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][283] ([Intel XE#2136]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][284] ([Intel XE#2136]) -> [SKIP][285] ([Intel XE#2724]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cdclk@mode-transition.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at kms_cdclk@mode-transition.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][286] ([Intel XE#2325]) -> [SKIP][287] ([Intel XE#2423]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_chamelium_color@ctm-green-to-red.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-negative: - shard-bmg: [SKIP][288] ([Intel XE#2423]) -> [SKIP][289] ([Intel XE#2325]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_color@ctm-negative.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_edid@dp-mode-timings: - shard-bmg: [SKIP][290] ([Intel XE#2252]) -> [SKIP][291] ([Intel XE#3007]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_chamelium_edid@dp-mode-timings.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_chamelium_edid@dp-mode-timings.html - shard-dg2-set2: [SKIP][292] ([Intel XE#373]) -> [SKIP][293] ([Intel XE#2423] / [i915#2575]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_chamelium_edid@dp-mode-timings.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_chamelium_edid@dp-mode-timings.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-bmg: [SKIP][294] ([Intel XE#2252]) -> [SKIP][295] ([Intel XE#2423]) +10 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: [SKIP][296] ([Intel XE#3007]) -> [SKIP][297] ([Intel XE#2252]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_chamelium_hpd@dp-hpd-storm.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-storm.html - shard-dg2-set2: [SKIP][298] ([Intel XE#2423] / [i915#2575]) -> [SKIP][299] ([Intel XE#373]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_chamelium_hpd@dp-hpd-storm.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-435/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_chamelium_hpd@dp-hpd-storm-disable: - shard-bmg: [SKIP][300] ([Intel XE#2423]) -> [SKIP][301] ([Intel XE#3007]) +4 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_chamelium_hpd@dp-hpd-storm-disable.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: [SKIP][302] ([Intel XE#2423]) -> [SKIP][303] ([Intel XE#2252]) +11 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_content_protection@content-type-change: - shard-bmg: [SKIP][304] ([Intel XE#3007]) -> [SKIP][305] ([Intel XE#2341]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_content_protection@content-type-change.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-5/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][306] ([Intel XE#2423]) -> [SKIP][307] ([Intel XE#2390]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@dp-mst-type-0.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-5/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-bmg: [SKIP][308] ([Intel XE#2423]) -> [FAIL][309] ([Intel XE#1178]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@legacy.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_content_protection@legacy.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][310] ([Intel XE#2341]) -> [SKIP][311] ([Intel XE#2423]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_content_protection@mei-interface.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-bmg: [FAIL][312] ([Intel XE#1178]) -> [SKIP][313] ([Intel XE#3007]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_content_protection@srm.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_content_protection@srm.html - shard-dg2-set2: [FAIL][314] ([Intel XE#1178]) -> [SKIP][315] ([Intel XE#2423] / [i915#2575]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_content_protection@srm.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-bmg: [SKIP][316] ([Intel XE#2423]) -> [FAIL][317] ([Intel XE#1188]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@uevent.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-3/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][318] ([Intel XE#2320]) -> [SKIP][319] ([Intel XE#2423]) +5 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_cursor_crc@cursor-offscreen-128x42.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-bmg: [SKIP][320] ([Intel XE#3007]) -> [SKIP][321] ([Intel XE#2320]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_cursor_crc@cursor-random-32x10.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-5/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-bmg: [SKIP][322] ([Intel XE#2321]) -> [SKIP][323] ([Intel XE#2423]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_cursor_crc@cursor-random-512x512.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: [SKIP][324] ([Intel XE#2423]) -> [SKIP][325] ([Intel XE#2320]) +5 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-rapid-movement-512x170: - shard-bmg: [SKIP][326] ([Intel XE#2321]) -> [SKIP][327] ([Intel XE#3007]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_cursor_crc@cursor-rapid-movement-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][328] ([Intel XE#2423]) -> [SKIP][329] ([Intel XE#2321]) +2 other tests skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x512.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-5/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: [SKIP][330] ([Intel XE#2286]) -> [SKIP][331] ([Intel XE#2423]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: [SKIP][332] ([Intel XE#323]) -> [SKIP][333] ([Intel XE#2423] / [i915#2575]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/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-bmg: [SKIP][334] ([Intel XE#2423]) -> [SKIP][335] ([Intel XE#2286]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: [SKIP][336] ([Intel XE#2136]) -> [SKIP][337] ([Intel XE#1508]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [FAIL][338] ([Intel XE#2141]) -> [SKIP][339] ([Intel XE#2136]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][340] ([Intel XE#1508]) -> [SKIP][341] ([Intel XE#2136]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][342] ([Intel XE#2423]) -> [SKIP][343] ([Intel XE#2323]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_display_modes@mst-extended-mode-negative.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dsc@dsc-basic: - shard-dg2-set2: [SKIP][344] ([Intel XE#455]) -> [SKIP][345] ([Intel XE#2351]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_dsc@dsc-basic.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-bmg: [SKIP][346] ([Intel XE#2136]) -> [SKIP][347] ([Intel XE#2244]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_dsc@dsc-with-bpc-formats.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-1/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-formats: - shard-bmg: [SKIP][348] ([Intel XE#2244]) -> [SKIP][349] ([Intel XE#2136]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_dsc@dsc-with-formats.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_dsc@dsc-with-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][350] ([Intel XE#2136]) -> [SKIP][351] ([Intel XE#455]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at kms_dsc@dsc-with-output-formats-with-bpc.html - shard-bmg: [SKIP][352] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][353] ([Intel XE#2244]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-3/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-bmg: [SKIP][354] ([Intel XE#776]) -> [SKIP][355] ([Intel XE#2136]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_fbcon_fbt@psr.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][356] ([Intel XE#2136]) -> [SKIP][357] ([Intel XE#776]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_fbcon_fbt@psr-suspend.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-4x: - shard-bmg: [SKIP][358] ([Intel XE#1138]) -> [SKIP][359] ([Intel XE#2423]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_feature_discovery@display-4x.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr1: - shard-bmg: [SKIP][360] ([Intel XE#2374]) -> [SKIP][361] ([Intel XE#2423]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_feature_discovery@psr1.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][362] -> [SKIP][363] ([Intel XE#2316]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-bmg: [SKIP][364] ([Intel XE#2316]) -> [SKIP][365] ([Intel XE#2423]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-interruptible.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: [SKIP][366] ([Intel XE#2423]) -> [SKIP][367] ([Intel XE#2316]) +3 other tests skip [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip@2x-modeset-vs-vblank-race.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at kms_flip@2x-modeset-vs-vblank-race.html * igt at kms_flip_event_leak@basic: - shard-bmg: [SKIP][368] ([Intel XE#3007]) -> [SKIP][369] ([Intel XE#2423]) +4 other tests skip [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip_event_leak@basic.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_flip_event_leak@basic.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-bmg: [SKIP][370] ([Intel XE#2136]) -> [SKIP][371] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-4/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: [SKIP][372] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][373] ([Intel XE#2136]) +5 other tests skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][374] ([Intel XE#2136]) -> [SKIP][375] ([Intel XE#2380]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][376] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][377] ([Intel XE#2293] / [Intel XE#2380]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/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: [SKIP][378] ([Intel XE#2136]) -> [SKIP][379] ([Intel XE#2311]) +29 other tests skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][380] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][381] ([Intel XE#651]) +2 other tests skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][382] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][383] ([Intel XE#2311]) +4 other tests skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html - shard-dg2-set2: [SKIP][384] ([Intel XE#2136]) -> [SKIP][385] ([Intel XE#651]) +3 other tests skip [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][386] ([Intel XE#2312]) -> [SKIP][387] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html - shard-dg2-set2: [SKIP][388] ([Intel XE#651]) -> [SKIP][389] ([Intel XE#2136]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][390] ([Intel XE#2136]) -> [SKIP][391] ([Intel XE#2312]) +2 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][392] ([Intel XE#2311]) -> [SKIP][393] ([Intel XE#2136]) +27 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][394] ([Intel XE#2312]) -> [SKIP][395] ([Intel XE#2136]) +4 other tests skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][396] ([Intel XE#2311]) -> [SKIP][397] ([Intel XE#2312]) +3 other tests skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][398] ([Intel XE#2312]) -> [SKIP][399] ([Intel XE#2311]) +2 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-bmg: [FAIL][400] ([Intel XE#2333]) -> [SKIP][401] ([Intel XE#2136] / [Intel XE#2231]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][402] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][403] ([Intel XE#2333]) [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [FAIL][404] ([Intel XE#2333]) -> [SKIP][405] ([Intel XE#2136]) +14 other tests skip [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [FAIL][406] ([Intel XE#2333]) -> [SKIP][407] ([Intel XE#2312]) +3 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][408] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][409] ([Intel XE#2312]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][410] ([Intel XE#2136]) -> [SKIP][411] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][412] ([Intel XE#2312]) -> [FAIL][413] ([Intel XE#2333]) +4 other tests fail [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move: - shard-bmg: [SKIP][414] ([Intel XE#2136]) -> [FAIL][415] ([Intel XE#2333]) +9 other tests fail [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-wc: - shard-bmg: [SKIP][416] ([Intel XE#2311]) -> [SKIP][417] ([Intel XE#2136] / [Intel XE#2231]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-wc.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: [SKIP][418] ([Intel XE#2352]) -> [SKIP][419] ([Intel XE#2136]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][420] ([Intel XE#2313]) -> [SKIP][421] ([Intel XE#2136]) +23 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][422] ([Intel XE#2312]) -> [SKIP][423] ([Intel XE#2313]) +6 other tests skip [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][424] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][425] ([Intel XE#2313]) +4 other tests skip [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][426] ([Intel XE#2136]) -> [SKIP][427] ([Intel XE#653]) +2 other tests skip [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][428] ([Intel XE#2313]) -> [SKIP][429] ([Intel XE#2312]) +3 other tests skip [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][430] ([Intel XE#653]) -> [SKIP][431] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: [SKIP][432] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][433] ([Intel XE#658]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-434/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render: - shard-bmg: [SKIP][434] ([Intel XE#2313]) -> [SKIP][435] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][436] ([Intel XE#2136]) -> [SKIP][437] ([Intel XE#2313]) +28 other tests skip [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][438] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][439] ([Intel XE#653]) +1 other test skip [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][440] ([Intel XE#653]) -> [SKIP][441] ([Intel XE#2136]) +1 other test skip [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][442] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][443] ([Intel XE#2136]) +8 other tests skip [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][444] ([Intel XE#2502]) -> [SKIP][445] ([Intel XE#2423]) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_getfb@getfb-reject-ccs.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][446] ([Intel XE#2423]) -> [SKIP][447] ([Intel XE#2340]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_getfb@getfb2-accept-ccs.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@brightness-with-hdr: - shard-dg2-set2: [SKIP][448] ([Intel XE#455]) -> [SKIP][449] ([Intel XE#2423] / [i915#2575]) +1 other test skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_hdr@brightness-with-hdr.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_hdr@brightness-with-hdr.html - shard-bmg: [SKIP][450] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][451] ([Intel XE#3007]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_hdr@brightness-with-hdr.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][452] ([Intel XE#2423] / [i915#2575]) -> [SKIP][453] ([Intel XE#455]) +2 other tests skip [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_hdr@invalid-hdr.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-434/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][454] ([Intel XE#2136]) -> [SKIP][455] ([Intel XE#2934]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_joiner@basic-force-ultra-joiner.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-bmg: [SKIP][456] ([Intel XE#2927]) -> [SKIP][457] ([Intel XE#2136]) [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_joiner@basic-ultra-joiner.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][458] ([Intel XE#2423]) -> [SKIP][459] ([Intel XE#2501]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][460] ([Intel XE#2423]) -> [SKIP][461] ([Intel XE#2393]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_lowres@tiling-y.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-4/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_multiple@tiling-y: - shard-bmg: [SKIP][462] ([Intel XE#2423]) -> [SKIP][463] ([Intel XE#2493]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_multiple@tiling-y.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-bmg: [SKIP][464] ([Intel XE#2763]) -> [SKIP][465] ([Intel XE#2423]) +1 other test skip [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][466] ([Intel XE#2423]) -> [SKIP][467] ([Intel XE#2763]) +2 other tests skip [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][468] ([Intel XE#2136]) -> [SKIP][469] ([Intel XE#870]) [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_backlight@fade-with-dpms.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][470] ([Intel XE#870]) -> [SKIP][471] ([Intel XE#2136]) [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_pm_backlight@fade-with-suspend.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_pm_backlight@fade-with-suspend.html - shard-bmg: [SKIP][472] ([Intel XE#870]) -> [SKIP][473] ([Intel XE#2136] / [Intel XE#2231]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_pm_backlight@fade-with-suspend.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][474] ([Intel XE#2392]) -> [SKIP][475] ([Intel XE#2136] / [Intel XE#2231]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_pm_dc@dc5-psr.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-psr: - shard-bmg: [SKIP][476] ([Intel XE#2392]) -> [SKIP][477] ([Intel XE#2136]) [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_pm_dc@dc6-psr.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][478] ([Intel XE#2446]) -> [SKIP][479] ([Intel XE#1439] / [Intel XE#836]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-bmg: [SKIP][480] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][481] ([Intel XE#2446]) [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_pm_rpm@modeset-lpsp.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: [SKIP][482] ([Intel XE#2446]) -> [SKIP][483] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][484] ([Intel XE#2136]) -> [SKIP][485] ([Intel XE#1489]) +11 other tests skip [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][486] ([Intel XE#1489]) -> [SKIP][487] ([Intel XE#2136]) +8 other tests skip [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][488] ([Intel XE#1489]) -> [SKIP][489] ([Intel XE#2136] / [Intel XE#2231]) [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][490] ([Intel XE#2136]) -> [SKIP][491] ([Intel XE#1489]) [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html - shard-bmg: [SKIP][492] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][493] ([Intel XE#1489]) [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][494] ([Intel XE#2387]) -> [SKIP][495] ([Intel XE#2136]) [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-basic: - shard-bmg: [SKIP][496] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][497] ([Intel XE#2136] / [Intel XE#2231]) [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_psr@fbc-pr-basic.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_psr@fbc-pr-basic.html * igt at kms_psr@fbc-psr-sprite-blt: - shard-dg2-set2: [SKIP][498] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][499] ([Intel XE#2136]) +1 other test skip [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@fbc-psr-sprite-blt.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_psr@fbc-psr-sprite-blt.html * igt at kms_psr@fbc-psr-suspend: - shard-dg2-set2: [SKIP][500] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][501] ([Intel XE#2850] / [Intel XE#929]) [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@fbc-psr-suspend.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-466/igt at kms_psr@fbc-psr-suspend.html * igt at kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: [SKIP][502] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][503] ([Intel XE#2136]) +17 other tests skip [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_psr@fbc-psr2-cursor-plane-move.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_psr@fbc-psr2-cursor-plane-move.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: [SKIP][504] ([Intel XE#2136]) -> [SKIP][505] ([Intel XE#2850] / [Intel XE#929]) [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-463/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html - shard-bmg: [SKIP][506] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][507] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@psr2-suspend: - shard-bmg: [SKIP][508] ([Intel XE#2136]) -> [SKIP][509] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr@psr2-suspend.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-5/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][510] ([Intel XE#2136]) -> [SKIP][511] ([Intel XE#2414]) [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@bad-pixel-format: - shard-bmg: [SKIP][512] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][513] ([Intel XE#3007]) [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_rotation_crc@bad-pixel-format.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_rotation_crc@bad-pixel-format.html - shard-dg2-set2: [SKIP][514] ([Intel XE#3414]) -> [SKIP][515] ([Intel XE#2423] / [i915#2575]) [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_rotation_crc@bad-pixel-format.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@bad-tiling: - shard-bmg: [SKIP][516] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][517] ([Intel XE#2423]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_rotation_crc@bad-tiling.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-bmg: [SKIP][518] ([Intel XE#2423]) -> [SKIP][519] ([Intel XE#2330]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][520] ([Intel XE#2330]) -> [SKIP][521] ([Intel XE#2423]) [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][522] ([Intel XE#2423] / [i915#2575]) -> [SKIP][523] ([Intel XE#3414]) [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-bmg: [SKIP][524] ([Intel XE#3007]) -> [SKIP][525] ([Intel XE#3414] / [Intel XE#3904]) [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][526] ([Intel XE#2423]) -> [SKIP][527] ([Intel XE#2413]) [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-center.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-none: - shard-bmg: [SKIP][528] ([Intel XE#2413]) -> [SKIP][529] ([Intel XE#2423]) [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_scaling_modes@scaling-mode-none.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][530] ([Intel XE#2426]) -> [SKIP][531] ([Intel XE#2423]) [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_tiled_display@basic-test-pattern.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][532] ([Intel XE#362]) -> [SKIP][533] ([Intel XE#1500]) [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-432/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@cmrr: - shard-dg2-set2: [SKIP][534] ([Intel XE#2168]) -> [SKIP][535] ([Intel XE#2423] / [i915#2575]) [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_vrr@cmrr.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at kms_vrr@cmrr.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][536] ([Intel XE#3007]) -> [SKIP][537] ([Intel XE#1499]) [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_vrr@seamless-rr-switch-drrs.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-2/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][538] ([Intel XE#2423]) -> [SKIP][539] ([Intel XE#756]) [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_writeback@writeback-invalid-parameters.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-5/igt at kms_writeback@writeback-invalid-parameters.html * igt at xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][540] ([Intel XE#1130]) -> [SKIP][541] ([Intel XE#1126]) [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0x369.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-433/igt at xe_copy_basic@mem-set-linear-0x369.html * igt at xe_eudebug@basic-vm-bind: - shard-dg2-set2: [SKIP][542] ([Intel XE#2905]) -> [SKIP][543] ([Intel XE#1130]) [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at xe_eudebug@basic-vm-bind.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at xe_eudebug@basic-vm-bind.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-bmg: [SKIP][544] ([Intel XE#1130]) -> [SKIP][545] ([Intel XE#3889]) [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-6/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@discovery-empty: - shard-bmg: [SKIP][546] ([Intel XE#2905]) -> [SKIP][547] ([Intel XE#1130]) +12 other tests skip [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_eudebug@discovery-empty.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at xe_eudebug@discovery-empty.html * igt at xe_eudebug@sysfs-toggle: - shard-dg2-set2: [SKIP][548] ([Intel XE#1130]) -> [SKIP][549] ([Intel XE#2905]) +1 other test skip [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_eudebug@sysfs-toggle.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-463/igt at xe_eudebug@sysfs-toggle.html * igt at xe_eudebug_online@breakpoint-many-sessions-tiles: - shard-bmg: [SKIP][550] ([Intel XE#1130]) -> [SKIP][551] ([Intel XE#2905]) +8 other tests skip [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_eudebug_online@breakpoint-many-sessions-tiles.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-5/igt at xe_eudebug_online@breakpoint-many-sessions-tiles.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: [SKIP][552] ([Intel XE#2322]) -> [SKIP][553] ([Intel XE#1130]) +10 other tests skip [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race: - shard-bmg: [SKIP][554] ([Intel XE#1130]) -> [SKIP][555] ([Intel XE#2322]) +9 other tests skip [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-no-exec-userptr: - shard-dg2-set2: [SKIP][556] ([Intel XE#1392]) -> [SKIP][557] ([Intel XE#1130]) [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-userptr.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at xe_exec_basic@multigpu-no-exec-userptr.html * igt at xe_exec_basic@multigpu-once-null-defer-mmap: - shard-dg2-set2: [SKIP][558] ([Intel XE#1130]) -> [SKIP][559] ([Intel XE#1392]) [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_basic@multigpu-once-null-defer-mmap.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-432/igt at xe_exec_basic@multigpu-once-null-defer-mmap.html * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch: - shard-dg2-set2: [SKIP][560] ([Intel XE#288]) -> [SKIP][561] ([Intel XE#1130]) [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html * igt at xe_exec_fault_mode@once-userptr-invalidate-race-imm: - shard-dg2-set2: [SKIP][562] ([Intel XE#1130]) -> [SKIP][563] ([Intel XE#288]) +4 other tests skip [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_fault_mode@once-userptr-invalidate-race-imm.html [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-434/igt at xe_exec_fault_mode@once-userptr-invalidate-race-imm.html * igt at xe_oa@invalid-oa-format-id: - shard-dg2-set2: [SKIP][564] ([Intel XE#1130]) -> [SKIP][565] ([Intel XE#2541] / [Intel XE#3573]) [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_oa@invalid-oa-format-id.html [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-466/igt at xe_oa@invalid-oa-format-id.html * igt at xe_oa@non-privileged-access-vaddr: - shard-dg2-set2: [SKIP][566] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][567] ([Intel XE#1130]) +1 other test skip [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at xe_oa@non-privileged-access-vaddr.html [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-436/igt at xe_oa@non-privileged-access-vaddr.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][568] ([Intel XE#1420]) -> [SKIP][569] ([Intel XE#1130]) [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_pat@pat-index-xehpc.html [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][570] ([Intel XE#1130]) -> [SKIP][571] ([Intel XE#2245]) [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_pat@pat-index-xelp.html [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-4/igt at xe_pat@pat-index-xelp.html * igt at xe_pat@pat-index-xelpg: - shard-bmg: [SKIP][572] ([Intel XE#2236]) -> [SKIP][573] ([Intel XE#1130]) [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_pat@pat-index-xelpg.html [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@read: - shard-dg2-set2: [SKIP][574] ([Intel XE#1061]) -> [FAIL][575] ([Intel XE#1173]) [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_peer2peer@read.html [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-466/igt at xe_peer2peer@read.html * igt at xe_pm@d3cold-basic-exec: - shard-bmg: [SKIP][576] ([Intel XE#1130]) -> [SKIP][577] ([Intel XE#2284]) [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_pm@d3cold-basic-exec.html [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-8/igt at xe_pm@d3cold-basic-exec.html * igt at xe_pm@s3-d3cold-basic-exec: - shard-bmg: [SKIP][578] ([Intel XE#2284]) -> [SKIP][579] ([Intel XE#1130]) [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at xe_pm@s3-d3cold-basic-exec.html [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-7/igt at xe_pm@s3-d3cold-basic-exec.html * igt at xe_query@multigpu-query-config: - shard-bmg: [SKIP][580] ([Intel XE#1130]) -> [SKIP][581] ([Intel XE#944]) +3 other tests skip [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_query@multigpu-query-config.html [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-bmg-3/igt at xe_query@multigpu-query-config.html * igt at xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][582] ([Intel XE#1130]) -> [SKIP][583] ([Intel XE#944]) [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-guc.html [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/shard-dg2-434/igt at xe_query@multigpu-query-uc-fw-version-guc.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [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#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#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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [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#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#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#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#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [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#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [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#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [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#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#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [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#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [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#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [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#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#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#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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 [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_8199 -> IGTPW_12466 IGTPW_12466: 74352c1724e435b3e56862d0873c3dfb8de15aa8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12466/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 19:04:38 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 19:04:38 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_series_starting_with_=5Bi-?= =?utf-8?q?g-t=2C1/2=5D_lib/xe=5Feudebug=3A_Fix_32b_compilation_warnings/err?= =?utf-8?q?ors?= In-Reply-To: <20250120131338.131713-1-dominik.grzegorzek@intel.com> References: <20250120131338.131713-1-dominik.grzegorzek@intel.com> Message-ID: <173739987857.2268529.5862345914084306616@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,1/2] lib/xe_eudebug: Fix 32b compilation warnings/errors URL : https://patchwork.freedesktop.org/series/143730/ State : failure == Summary == CI Bug Log - changes from XEIGT_8199_full -> XEIGTPW_12467_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12467_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12467_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_12467_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-suspend-interruptible at d-dp4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-434/igt at kms_flip@flip-vs-suspend-interruptible at d-dp4.html * igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: [PASS][4] -> [ABORT][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-433/igt at xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html #### Warnings #### * igt at kms_content_protection@srm at pipe-a-dp-4: - shard-dg2-set2: [FAIL][6] ([Intel XE#1178]) -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_content_protection@srm at pipe-a-dp-4.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-436/igt at kms_content_protection@srm at pipe-a-dp-4.html New tests --------- New tests have been introduced between XEIGT_8199_full and XEIGTPW_12467_full: ### New IGT tests (1) ### * igt at kms_atomic_interruptible@legacy-cursor at pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [6.27] s Known issues ------------ Here are the changes found in XEIGTPW_12467_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getversion@basic: - shard-bmg: [PASS][8] -> [FAIL][9] ([Intel XE#3440]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at core_getversion@basic.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at core_getversion@basic.html * igt at core_hotunplug@hotreplug: - shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#1885]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at core_hotunplug@hotreplug.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at core_hotunplug@hotreplug.html * igt at core_setmaster@master-drop-set-user: - shard-bmg: [PASS][12] -> [FAIL][13] ([Intel XE#3249]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at core_setmaster@master-drop-set-user.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at core_setmaster@master-drop-set-user.html * igt at fbdev@info: - shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#2134]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at fbdev@info.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at fbdev@info.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1125]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-3/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@bad-pitch-999: - shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2423]) +91 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_addfb_basic@bad-pitch-999.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_addfb_basic@bad-pitch-999.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#3767]) +23 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_big_fb@linear-64bpp-rotate-0: - shard-lnl: NOTRUN -> [DMESG-WARN][20] ([Intel XE#1725]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-1/igt at kms_big_fb@linear-64bpp-rotate-0.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#316]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-466/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1407]) +5 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-3/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2136]) +24 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +7 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-434/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#607]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/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-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1428]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-1/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +6 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-6/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#367]) +6 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2191]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-3/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2191]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1512]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-8/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#455] / [Intel XE#787]) +25 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +9 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-4/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#787]) +132 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4: - shard-dg2-set2: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#3862]) +1 other test incomplete [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-433/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs at pipe-d-dp-4.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#3432]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-3/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#2907]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-434/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2652] / [Intel XE#787]) +11 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#306]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-4/igt at kms_chamelium_color@ctm-blue-to-red.html - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#306]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_edid@hdmi-mode-timings: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#373]) +7 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-436/igt at kms_chamelium_edid@hdmi-mode-timings.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#373]) +5 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-1/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#307]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-6/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][46] ([Intel XE#1178]) +1 other test fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at kms_content_protection@lic-type-0 at pipe-a-dp-2.html * igt at kms_content_protection@type1: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#3278]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-7/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][48] ([Intel XE#1188]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-432/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#308]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#2321]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-3/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-256x256: - shard-dg2-set2: [PASS][51] -> [SKIP][52] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_cursor_crc@cursor-rapid-movement-256x256.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_cursor_crc@cursor-rapid-movement-256x256.html * igt at kms_cursor_crc@cursor-sliding-128x42: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1424]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-3/igt at kms_cursor_crc@cursor-sliding-128x42.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][54] -> [DMESG-WARN][55] ([Intel XE#877]) +1 other test dmesg-warn [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-4/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-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#323]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#323]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-3/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][58] ([Intel XE#3383]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-6/igt at kms_display_modes@extended-mode-basic.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#701]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_feature_discovery@chamelium.html - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#701]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-4/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#702]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-5/igt at kms_feature_discovery@display-2x.html * igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3: - shard-bmg: [PASS][62] -> [FAIL][63] ([Intel XE#3321]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank at cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][64] -> [FAIL][65] ([Intel XE#301]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at cd-hdmi-a6-dp4.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-modeset: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1421]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-3/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][67] ([Intel XE#301]) +2 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6.html * igt at kms_flip@flip-vs-expired-vblank at c-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][68] ([Intel XE#301] / [Intel XE#3321]) +2 other tests fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-436/igt at kms_flip@flip-vs-expired-vblank at c-dp4.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][69] ([Intel XE#2597]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-434/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2293]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1401]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-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]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1397] / [Intel XE#1745]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-3/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][74] ([Intel XE#1397]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-3/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-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2380]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#455]) +9 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#651]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-4/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#651]) +19 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#656]) +26 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#653]) +13 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#309]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#2763]) +11 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/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-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/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][84] ([Intel XE#2763]) +8 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-432/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2763]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#2938]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-433/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1129]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-bmg: [PASS][88] -> [SKIP][89] ([Intel XE#2446]) +5 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#1489]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#2893]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-5/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#1122]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-432/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1406]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-3/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2850] / [Intel XE#929]) +12 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-466/igt at kms_psr@psr-dpms.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#3414]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-466/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@sprite-rotation-90: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#3414] / [Intel XE#3904]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-7/igt at kms_rotation_crc@sprite-rotation-90.html * igt at kms_sequence@get-busy: - shard-bmg: [PASS][97] -> [SKIP][98] ([Intel XE#3007]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_sequence@get-busy.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at kms_sequence@get-busy.html * igt at kms_setmode@basic at pipe-b-edp-1: - shard-lnl: [PASS][99] -> [FAIL][100] ([Intel XE#2883]) +2 other tests fail [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-5/igt at kms_setmode@basic at pipe-b-edp-1.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1435]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-8/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#362]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-8/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2168]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-436/igt at kms_vrr@lobf.html * igt at kms_vrr@max-min: - shard-lnl: [PASS][104] -> [FAIL][105] ([Intel XE#1522]) +1 other test fail [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-8/igt at kms_vrr@max-min.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-5/igt at kms_vrr@max-min.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#756]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-1/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#756]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#3889]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#3889]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-3/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug_online@preempt-breakpoint: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#2905]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-6/igt at xe_eudebug_online@preempt-breakpoint.html * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#688]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-5/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt at xe_exec_basic@many-basic-defer-mmap: - shard-bmg: [PASS][112] -> [SKIP][113] ([Intel XE#1130]) +216 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at xe_exec_basic@many-basic-defer-mmap.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at xe_exec_basic@many-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1392]) +5 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-3/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-once-bindexecqueue: - shard-dg2-set2: [PASS][115] -> [SKIP][116] ([Intel XE#1392]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_basic@multigpu-once-bindexecqueue.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-432/igt at xe_exec_basic@multigpu-once-bindexecqueue.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#288]) +17 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2905]) +6 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_gt_freq@freq_suspend: - shard-dg2-set2: [PASS][119] -> [ABORT][120] ([Intel XE#2625]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at xe_gt_freq@freq_suspend.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-432/igt at xe_gt_freq@freq_suspend.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [PASS][121] -> [SKIP][122] ([Intel XE#2229]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at xe_live_ktest@xe_bo.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at xe_live_ktest@xe_bo.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#4045]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-4/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#512]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-466/igt at xe_mmap@small-bar.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-466/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2838] / [Intel XE#979]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@write: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1061]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-8/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2284] / [Intel XE#366]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at xe_pm@d3cold-mmap-vram.html - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#2284] / [Intel XE#366]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-4/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3hot-mmap-vram: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][130] ([Intel XE#1358]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-466/igt at xe_pm@d3hot-mmap-vram.html * igt at xe_pm@s2idle-basic-exec: - shard-dg2-set2: [PASS][131] -> [ABORT][132] ([Intel XE#1358]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at xe_pm@s2idle-basic-exec.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-436/igt at xe_pm@s2idle-basic-exec.html * igt at xe_pm@s3-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#584]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-1/igt at xe_pm@s3-vm-bind-unbind-all.html * igt at xe_pm@s4-basic-exec: - shard-lnl: [PASS][134] -> [ABORT][135] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-5/igt at xe_pm@s4-basic-exec.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-2/igt at xe_pm@s4-basic-exec.html * igt at xe_pm@s4-exec-after: - shard-dg2-set2: NOTRUN -> [ABORT][136] ([Intel XE#1358]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-432/igt at xe_pm@s4-exec-after.html * igt at xe_pm@s4-mocs: - shard-lnl: [PASS][137] -> [ABORT][138] ([Intel XE#1358] / [Intel XE#1794]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-4/igt at xe_pm@s4-mocs.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-2/igt at xe_pm@s4-mocs.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#579]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#944]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#944]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-7/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#3342]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-436/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_vm@munmap-style-unbind-userptr-one-partial: - shard-dg2-set2: [PASS][143] -> [SKIP][144] ([Intel XE#1130]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_vm@munmap-style-unbind-userptr-one-partial.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at xe_vm@munmap-style-unbind-userptr-one-partial.html #### Possible fixes #### * igt at core_hotunplug@hotrebind: - shard-bmg: [SKIP][145] ([Intel XE#1885]) -> [PASS][146] +1 other test pass [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at core_hotunplug@hotrebind.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/igt at core_hotunplug@hotrebind.html * igt at fbdev@pan: - shard-bmg: [SKIP][147] ([Intel XE#2134]) -> [PASS][148] +1 other test pass [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at fbdev@pan.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-2/igt at fbdev@pan.html * igt at kms_addfb_basic@unused-pitches: - shard-dg2-set2: [SKIP][149] ([Intel XE#2423] / [i915#2575]) -> [PASS][150] +12 other tests pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_addfb_basic@unused-pitches.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-433/igt at kms_addfb_basic@unused-pitches.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [SKIP][151] ([Intel XE#2136]) -> [PASS][152] +21 other tests pass [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@linear-16bpp-rotate-180.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][153] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][154] +1 other test pass [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][155] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [SKIP][157] ([Intel XE#2136]) -> [PASS][158] +3 other tests pass [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][159] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][160] [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/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-c-dp-4: - shard-dg2-set2: [INCOMPLETE][161] ([Intel XE#3124]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-dp-4.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][163] ([Intel XE#1727]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [SKIP][165] ([Intel XE#2291]) -> [PASS][166] +2 other tests pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][167] ([Intel XE#877]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt at kms_draw_crc@fill-fb: - shard-dg2-set2: [SKIP][169] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_draw_crc@fill-fb.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-432/igt at kms_draw_crc@fill-fb.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][171] ([Intel XE#301]) -> [PASS][172] +2 other tests pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][173] ([Intel XE#3321]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/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_12467/shard-bmg-4/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-bmg: [SKIP][175] ([Intel XE#2316]) -> [PASS][176] +2 other tests pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-interruptible.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-2/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][177] ([Intel XE#886]) -> [PASS][178] +4 other tests pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_flip@blocking-wf_vblank.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-8/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@plain-flip-fb-recreate: - shard-bmg: [FAIL][179] ([Intel XE#2882]) -> [PASS][180] +1 other test pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_flip@plain-flip-fb-recreate.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_pipe_crc_basic@nonblocking-crc: - shard-bmg: [SKIP][181] ([Intel XE#2423]) -> [PASS][182] +78 other tests pass [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pipe_crc_basic@nonblocking-crc.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at kms_pipe_crc_basic@nonblocking-crc.html * igt at kms_plane_cursor@viewport: - shard-dg2-set2: [FAIL][183] ([Intel XE#616]) -> [PASS][184] +1 other test pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_plane_cursor@viewport.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_plane_cursor@viewport.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][185] ([Intel XE#2571]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-2/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-bmg: [SKIP][187] ([Intel XE#3007]) -> [PASS][188] +15 other tests pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][189] ([Intel XE#718]) -> [PASS][190] +1 other test pass [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-3/igt at kms_pm_dc@dc5-dpms.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-8/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [SKIP][191] ([Intel XE#2446]) -> [PASS][192] +3 other tests pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@basic-pci-d3-state.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_pm_rpm@legacy-planes: - shard-dg2-set2: [SKIP][193] ([Intel XE#2446]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_pm_rpm@legacy-planes.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at kms_pm_rpm@legacy-planes.html * igt at kms_psr@psr2-primary-render: - shard-lnl: [FAIL][195] -> [PASS][196] +1 other test pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_psr@psr2-primary-render.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-lnl-3/igt at kms_psr@psr2-primary-render.html * igt at kms_rmfb@close-fd at pipe-d-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][197] -> [PASS][198] +1 other test pass [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_rmfb@close-fd at pipe-d-hdmi-a-6.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_rmfb@close-fd at pipe-d-hdmi-a-6.html * igt at xe_exec_balancer@twice-virtual-basic: - shard-dg2-set2: [SKIP][199] ([Intel XE#1130]) -> [PASS][200] +18 other tests pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_balancer@twice-virtual-basic.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at xe_exec_balancer@twice-virtual-basic.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-dg2-set2: [SKIP][201] ([Intel XE#1392]) -> [PASS][202] +3 other tests pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-436/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-bmg: [FAIL][203] ([Intel XE#1999]) -> [PASS][204] +2 other tests pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_module_load@load: - shard-dg2-set2: ([SKIP][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], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230]) ([Intel XE#378]) -> ([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], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-466/igt at xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-432/igt at xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-436/igt at xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-436/igt at xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-436/igt at xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-432/igt at xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-436/igt at xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-433/igt at xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-433/igt at xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-432/igt at xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-434/igt at xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-466/igt at xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-466/igt at xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-434/igt at xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-434/igt at xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-432/igt at xe_module_load@load.html * igt at xe_pm@s2idle-vm-bind-userptr: - shard-dg2-set2: [ABORT][254] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-userptr.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at xe_pm@s2idle-vm-bind-userptr.html * igt at xe_vm@bind-no-array-conflict: - shard-bmg: [SKIP][256] ([Intel XE#1130]) -> [PASS][257] +208 other tests pass [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at xe_vm@bind-no-array-conflict.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-4/igt at xe_vm@bind-no-array-conflict.html #### Warnings #### * igt at kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][258] ([Intel XE#2423]) -> [SKIP][259] ([Intel XE#873]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_async_flips@invalid-async-flip.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][260] ([Intel XE#2385]) -> [SKIP][261] ([Intel XE#2423]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][262] ([Intel XE#2423]) -> [SKIP][263] ([Intel XE#2370]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: [SKIP][264] ([Intel XE#2136]) -> [SKIP][265] ([Intel XE#316]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@linear-16bpp-rotate-270.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at kms_big_fb@linear-16bpp-rotate-270.html - shard-bmg: [SKIP][266] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][267] ([Intel XE#2327]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@linear-16bpp-rotate-270.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: [SKIP][268] ([Intel XE#2136]) -> [SKIP][269] ([Intel XE#2327]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@linear-32bpp-rotate-90.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-bmg: [SKIP][270] ([Intel XE#2327]) -> [SKIP][271] ([Intel XE#2136]) +4 other tests skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_big_fb@linear-64bpp-rotate-90.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][272] ([Intel XE#2136]) -> [SKIP][273] ([Intel XE#1124]) +12 other tests skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at kms_big_fb@y-tiled-64bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][274] ([Intel XE#2136]) -> [SKIP][275] ([Intel XE#607]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][276] ([Intel XE#610]) -> [SKIP][277] ([Intel XE#2136]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/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-async-flip: - shard-dg2-set2: [SKIP][278] ([Intel XE#2136]) -> [SKIP][279] ([Intel XE#1124]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-432/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@yf-tiled-addfb: - shard-bmg: [SKIP][280] ([Intel XE#2136]) -> [SKIP][281] ([Intel XE#2328]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: [SKIP][282] ([Intel XE#1124]) -> [SKIP][283] ([Intel XE#2136]) +12 other tests skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][284] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][285] ([Intel XE#1124]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-bmg: [SKIP][286] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][287] ([Intel XE#2423]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-1-displays-2160x1440p: - shard-bmg: [SKIP][288] ([Intel XE#2423]) -> [SKIP][289] ([Intel XE#367]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-2160x1440p.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-2/igt at kms_bw@linear-tiling-1-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: [SKIP][290] ([Intel XE#367]) -> [SKIP][291] ([Intel XE#2423]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_bw@linear-tiling-2-displays-1920x1080p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][292] ([Intel XE#3007]) -> [SKIP][293] ([Intel XE#367]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs: - shard-dg2-set2: [SKIP][294] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][295] ([Intel XE#455] / [Intel XE#787]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-432/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][296] ([Intel XE#3432]) -> [SKIP][297] ([Intel XE#2136]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-bmg: [SKIP][298] ([Intel XE#2136]) -> [SKIP][299] ([Intel XE#3432]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-4/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][300] ([Intel XE#2136]) -> [SKIP][301] ([Intel XE#2652] / [Intel XE#787]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/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: - shard-bmg: [SKIP][302] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][303] ([Intel XE#2887]) +4 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][304] ([Intel XE#2136]) -> [SKIP][305] ([Intel XE#2887]) +17 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-2/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][306] ([Intel XE#2887]) -> [SKIP][307] ([Intel XE#2136]) +17 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-bmg: [SKIP][308] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][309] ([Intel XE#2136]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-ccs: - shard-dg2-set2: [SKIP][310] ([Intel XE#2136]) -> [SKIP][311] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-434/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-bmg: [SKIP][312] ([Intel XE#2252]) -> [SKIP][313] ([Intel XE#2423]) +11 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_chamelium_audio@hdmi-audio-edid.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_color@ctm-max: - shard-bmg: [SKIP][314] ([Intel XE#2325]) -> [SKIP][315] ([Intel XE#2423]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_chamelium_color@ctm-max.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_chamelium_color@ctm-max.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-bmg: [SKIP][316] ([Intel XE#2423]) -> [SKIP][317] ([Intel XE#2325]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_color@ctm-red-to-blue.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-4/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][318] ([Intel XE#2423]) -> [SKIP][319] ([Intel XE#2252]) +12 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_frames@dp-frame-dump: - shard-bmg: [SKIP][320] ([Intel XE#3007]) -> [SKIP][321] ([Intel XE#2252]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_chamelium_frames@dp-frame-dump.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-2/igt at kms_chamelium_frames@dp-frame-dump.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-dg2-set2: [SKIP][322] ([Intel XE#2423] / [i915#2575]) -> [SKIP][323] ([Intel XE#373]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_chamelium_hpd@dp-hpd-storm.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_content_protection@atomic: - shard-bmg: [SKIP][324] ([Intel XE#2341]) -> [SKIP][325] ([Intel XE#2423]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_content_protection@atomic.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_content_protection@atomic.html * igt at kms_content_protection@atomic-dpms: - shard-bmg: [FAIL][326] ([Intel XE#1178]) -> [SKIP][327] ([Intel XE#2423]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_content_protection@atomic-dpms.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@content-type-change: - shard-bmg: [SKIP][328] ([Intel XE#3007]) -> [SKIP][329] ([Intel XE#2341]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_content_protection@content-type-change.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-4/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-bmg: [SKIP][330] ([Intel XE#2423]) -> [SKIP][331] ([Intel XE#2390]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@dp-mst-lic-type-0.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-4/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@legacy: - shard-bmg: [SKIP][332] ([Intel XE#2423]) -> [FAIL][333] ([Intel XE#1178]) +1 other test fail [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@legacy.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/igt at kms_content_protection@legacy.html * igt at kms_content_protection@srm: - shard-dg2-set2: [FAIL][334] ([Intel XE#1178]) -> [INCOMPLETE][335] ([Intel XE#2715]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_content_protection@srm.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-436/igt at kms_content_protection@srm.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: [SKIP][336] ([Intel XE#2320]) -> [SKIP][337] ([Intel XE#2423]) +7 other tests skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_crc@cursor-offscreen-256x85.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-dg2-set2: [SKIP][338] ([Intel XE#2423] / [i915#2575]) -> [SKIP][339] ([Intel XE#455]) +2 other tests skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_cursor_crc@cursor-random-32x10.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-432/igt at kms_cursor_crc@cursor-random-32x10.html - shard-bmg: [SKIP][340] ([Intel XE#3007]) -> [SKIP][341] ([Intel XE#2320]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_cursor_crc@cursor-random-32x10.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: [SKIP][342] ([Intel XE#2423]) -> [SKIP][343] ([Intel XE#2320]) +4 other tests skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-bmg: [SKIP][344] ([Intel XE#2321]) -> [SKIP][345] ([Intel XE#2423]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_cursor_crc@cursor-sliding-512x170.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][346] ([Intel XE#2423]) -> [SKIP][347] ([Intel XE#2321]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x512.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_crc@cursor-sliding-64x21: - shard-bmg: [SKIP][348] ([Intel XE#2423]) -> [SKIP][349] ([Intel XE#3007]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-64x21.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at kms_cursor_crc@cursor-sliding-64x21.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-bmg: [SKIP][350] ([Intel XE#2291]) -> [SKIP][351] ([Intel XE#2423]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-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-bmg: [SKIP][352] ([Intel XE#3007]) -> [SKIP][353] ([Intel XE#2423]) +4 other tests skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-bmg: [SKIP][354] ([Intel XE#2423]) -> [SKIP][355] ([Intel XE#2286]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: [SKIP][356] ([Intel XE#2136]) -> [SKIP][357] ([Intel XE#1508]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-4/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [FAIL][358] ([Intel XE#2141]) -> [SKIP][359] ([Intel XE#2136]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][360] ([Intel XE#2425]) -> [SKIP][361] ([Intel XE#2423]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][362] ([Intel XE#2423]) -> [SKIP][363] ([Intel XE#2323]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_display_modes@mst-extended-mode-negative.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-2/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][364] ([Intel XE#2244]) -> [SKIP][365] ([Intel XE#2136]) +2 other tests skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-bmg: [SKIP][366] ([Intel XE#2136]) -> [SKIP][367] ([Intel XE#2244]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_dsc@dsc-with-bpc-formats.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-2/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][368] ([Intel XE#2136]) -> [SKIP][369] ([Intel XE#455]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-434/igt at kms_dsc@dsc-with-output-formats-with-bpc.html - shard-bmg: [SKIP][370] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][371] ([Intel XE#2244]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-4/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-bmg: [SKIP][372] ([Intel XE#776]) -> [SKIP][373] ([Intel XE#2136]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_fbcon_fbt@psr.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][374] ([Intel XE#2136]) -> [SKIP][375] ([Intel XE#776]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_fbcon_fbt@psr-suspend.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-4/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-4x: - shard-bmg: [SKIP][376] ([Intel XE#1138]) -> [SKIP][377] ([Intel XE#2423]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_feature_discovery@display-4x.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][378] ([Intel XE#2423]) -> [SKIP][379] ([Intel XE#2375]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_feature_discovery@dp-mst.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-2/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-bmg: [SKIP][380] ([Intel XE#2316]) -> [SKIP][381] ([Intel XE#2423]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][382] -> [SKIP][383] ([Intel XE#2423]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][384] ([Intel XE#2136]) -> [SKIP][385] ([Intel XE#2380]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: [SKIP][386] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][387] ([Intel XE#2136]) +4 other tests skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/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-upscaling: - shard-bmg: [SKIP][388] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][389] ([Intel XE#2293] / [Intel XE#2380]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][390] ([Intel XE#2136]) -> [SKIP][391] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/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: [SKIP][392] ([Intel XE#2136]) -> [SKIP][393] ([Intel XE#2311]) +35 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][394] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][395] ([Intel XE#651]) +1 other test skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][396] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][397] ([Intel XE#2311]) +4 other tests skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html - shard-dg2-set2: [SKIP][398] ([Intel XE#2136]) -> [SKIP][399] ([Intel XE#651]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][400] ([Intel XE#2311]) -> [SKIP][401] ([Intel XE#2136]) +39 other tests skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-rte: - shard-bmg: [SKIP][402] ([Intel XE#2136]) -> [SKIP][403] ([Intel XE#2136] / [Intel XE#2231]) [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-rte.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-rte.html - shard-dg2-set2: [SKIP][404] ([Intel XE#651]) -> [SKIP][405] ([Intel XE#2136]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-2p-rte.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-2p-rte.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][406] ([Intel XE#2312]) -> [SKIP][407] ([Intel XE#2311]) +4 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][408] ([Intel XE#2136]) -> [FAIL][409] ([Intel XE#2333]) +11 other tests fail [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [FAIL][410] ([Intel XE#2333]) -> [SKIP][411] ([Intel XE#2136]) +20 other tests skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][412] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][413] ([Intel XE#2333]) +2 other tests fail [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][414] ([Intel XE#2312]) -> [FAIL][415] ([Intel XE#2333]) +2 other tests fail [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][416] ([Intel XE#2312]) -> [SKIP][417] ([Intel XE#2136]) +7 other tests skip [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][418] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][419] ([Intel XE#2136]) +6 other tests skip [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: [SKIP][420] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][421] ([Intel XE#658]) [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][422] ([Intel XE#2350]) -> [SKIP][423] ([Intel XE#2136]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][424] ([Intel XE#2136]) -> [SKIP][425] ([Intel XE#2313]) +34 other tests skip [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][426] ([Intel XE#2313]) -> [SKIP][427] ([Intel XE#2136]) +37 other tests skip [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: [SKIP][428] ([Intel XE#2136]) -> [SKIP][429] ([Intel XE#653]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][430] ([Intel XE#2312]) -> [SKIP][431] ([Intel XE#2313]) +8 other tests skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][432] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][433] ([Intel XE#2313]) +6 other tests skip [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html - shard-dg2-set2: [SKIP][434] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][435] ([Intel XE#653]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][436] ([Intel XE#2423]) -> [SKIP][437] ([Intel XE#2340]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_getfb@getfb2-accept-ccs.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@invalid-hdr: - shard-bmg: [SKIP][438] ([Intel XE#3007]) -> [SKIP][439] ([Intel XE#1503]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_hdr@invalid-hdr.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][440] ([Intel XE#2136]) -> [SKIP][441] ([Intel XE#2934]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_joiner@basic-force-ultra-joiner.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][442] ([Intel XE#346]) -> [SKIP][443] ([Intel XE#2136]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_joiner@invalid-modeset-big-joiner.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][444] ([Intel XE#2423]) -> [SKIP][445] ([Intel XE#2393]) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_lowres@tiling-y.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_lowres@tiling-yf: - shard-bmg: [SKIP][446] ([Intel XE#2393]) -> [SKIP][447] ([Intel XE#2423]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_plane_lowres@tiling-yf.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][448] ([Intel XE#2423]) -> [SKIP][449] ([Intel XE#2493]) +1 other test skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_multiple@tiling-yf.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-bmg: [SKIP][450] ([Intel XE#2423]) -> [SKIP][451] ([Intel XE#2763]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-bmg: [SKIP][452] ([Intel XE#2763]) -> [SKIP][453] ([Intel XE#2423]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt at kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][454] ([Intel XE#2136]) -> [SKIP][455] ([Intel XE#870]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_backlight@fade-with-dpms.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: [SKIP][456] ([Intel XE#2391]) -> [SKIP][457] ([Intel XE#2136]) [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_pm_dc@dc3co-vpb-simulation.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: [FAIL][458] ([Intel XE#1430]) -> [SKIP][459] ([Intel XE#2136]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_pm_dc@dc6-dpms.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-bmg: [SKIP][460] ([Intel XE#2392]) -> [SKIP][461] ([Intel XE#2136]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_pm_dc@dc6-psr.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][462] ([Intel XE#2446]) -> [SKIP][463] ([Intel XE#1439] / [Intel XE#836]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: [SKIP][464] ([Intel XE#2446]) -> [SKIP][465] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-4/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][466] ([Intel XE#2136]) -> [SKIP][467] ([Intel XE#1489]) [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-434/igt at kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][468] ([Intel XE#1489]) -> [SKIP][469] ([Intel XE#2136]) +10 other tests skip [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][470] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][471] ([Intel XE#1489]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][472] ([Intel XE#2136]) -> [SKIP][473] ([Intel XE#1489]) +12 other tests skip [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-2/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-bmg: [SKIP][474] ([Intel XE#2387]) -> [SKIP][475] ([Intel XE#2136]) +1 other test skip [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_psr2_su@page_flip-xrgb8888.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-blt: - shard-bmg: [SKIP][476] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][477] ([Intel XE#2136]) +19 other tests skip [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_psr@fbc-pr-cursor-blt.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_psr@fbc-pr-cursor-blt.html * igt at kms_psr@fbc-psr-suspend: - shard-bmg: [SKIP][478] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][479] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr@fbc-psr-suspend.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at kms_psr@fbc-psr-suspend.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: [SKIP][480] ([Intel XE#2136]) -> [SKIP][481] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-466/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@psr2-sprite-blt: - shard-bmg: [SKIP][482] ([Intel XE#2136]) -> [SKIP][483] ([Intel XE#2234] / [Intel XE#2850]) +13 other tests skip [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr@psr2-sprite-blt.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/igt at kms_psr@psr2-sprite-blt.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][484] ([Intel XE#2414]) -> [SKIP][485] ([Intel XE#2136]) [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][486] ([Intel XE#2136]) -> [SKIP][487] ([Intel XE#2414]) [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-2/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@bad-pixel-format: - shard-bmg: [SKIP][488] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][489] ([Intel XE#2423]) +3 other tests skip [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_rotation_crc@bad-pixel-format.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-bmg: [SKIP][490] ([Intel XE#3007]) -> [SKIP][491] ([Intel XE#3414] / [Intel XE#3904]) [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: [SKIP][492] ([Intel XE#2423]) -> [SKIP][493] ([Intel XE#2330]) +1 other test skip [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][494] ([Intel XE#2423]) -> [SKIP][495] ([Intel XE#2413]) [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-center.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-2/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-none: - shard-bmg: [SKIP][496] ([Intel XE#2413]) -> [SKIP][497] ([Intel XE#2423]) [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_scaling_modes@scaling-mode-none.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-none.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: [SKIP][498] ([Intel XE#1435]) -> [SKIP][499] ([Intel XE#2423]) [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_setmode@basic-clone-single-crtc.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][500] ([Intel XE#2426]) -> [FAIL][501] ([Intel XE#1729]) [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_tiled_display@basic-test-pattern.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][502] ([Intel XE#2426]) -> [SKIP][503] ([Intel XE#2509]) [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@cmrr: - shard-bmg: [SKIP][504] ([Intel XE#2423]) -> [SKIP][505] ([Intel XE#2168]) [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_vrr@cmrr.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at kms_vrr@cmrr.html * igt at kms_vrr@flip-suspend: - shard-bmg: [SKIP][506] ([Intel XE#1499]) -> [SKIP][507] ([Intel XE#2423]) [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_vrr@flip-suspend.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@lobf: - shard-bmg: [SKIP][508] ([Intel XE#2168]) -> [SKIP][509] ([Intel XE#2423]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_vrr@lobf.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_vrr@lobf.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][510] ([Intel XE#3007]) -> [SKIP][511] ([Intel XE#1499]) [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_vrr@seamless-rr-switch-drrs.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][512] ([Intel XE#2423]) -> [SKIP][513] ([Intel XE#1499]) +1 other test skip [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-virtual.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-2/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-fb-id: - shard-bmg: [SKIP][514] ([Intel XE#2423]) -> [SKIP][515] ([Intel XE#756]) [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_writeback@writeback-fb-id.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: [SKIP][516] ([Intel XE#756]) -> [SKIP][517] ([Intel XE#2423]) +1 other test skip [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_writeback@writeback-pixel-formats.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][518] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][519] ([Intel XE#2423]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at sriov_basic@enable-vfs-autoprobe-off.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][520] ([Intel XE#1130]) -> [SKIP][521] ([Intel XE#2504]) [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_create@multigpu-create-massive-size.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at xe_create@multigpu-create-massive-size.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][522] ([Intel XE#1130]) -> [SKIP][523] ([Intel XE#2905]) +14 other tests skip [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-3/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-bmg: [SKIP][524] ([Intel XE#1130]) -> [SKIP][525] ([Intel XE#3889]) [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-5/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug_online@pagefault-write: - shard-dg2-set2: [SKIP][526] ([Intel XE#1130]) -> [SKIP][527] ([Intel XE#2905]) [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_eudebug_online@pagefault-write.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at xe_eudebug_online@pagefault-write.html * igt at xe_eudebug_online@stopped-thread: - shard-bmg: [SKIP][528] ([Intel XE#2905]) -> [SKIP][529] ([Intel XE#1130]) +13 other tests skip [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_eudebug_online@stopped-thread.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at xe_eudebug_online@stopped-thread.html * igt at xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-bmg: [SKIP][530] ([Intel XE#2322]) -> [SKIP][531] ([Intel XE#1130]) +9 other tests skip [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][532] ([Intel XE#1130]) -> [SKIP][533] ([Intel XE#2322]) +8 other tests skip [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_exec_basic@multigpu-once-null-rebind.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-2/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@many-execqueues-rebind: - shard-dg2-set2: [SKIP][534] ([Intel XE#1130]) -> [SKIP][535] ([Intel XE#288]) +3 other tests skip [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_fault_mode@many-execqueues-rebind.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-463/igt at xe_exec_fault_mode@many-execqueues-rebind.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][536] ([Intel XE#2459] / [Intel XE#2596]) -> [SKIP][537] ([Intel XE#1130]) [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_media_fill@media-fill.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at xe_media_fill@media-fill.html * igt at xe_oa@oa-regs-whitelisted: - shard-dg2-set2: [SKIP][538] ([Intel XE#1130]) -> [SKIP][539] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_oa@oa-regs-whitelisted.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-dg2-435/igt at xe_oa@oa-regs-whitelisted.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][540] ([Intel XE#1130]) -> [SKIP][541] ([Intel XE#2245]) [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_pat@pat-index-xelp.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-1/igt at xe_pat@pat-index-xelp.html * igt at xe_pm@d3cold-mocs: - shard-bmg: [SKIP][542] ([Intel XE#1130]) -> [SKIP][543] ([Intel XE#2284]) +2 other tests skip [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_pm@d3cold-mocs.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-2/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: [SKIP][544] ([Intel XE#2284]) -> [SKIP][545] ([Intel XE#1130]) +2 other tests skip [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at xe_pm@s2idle-d3cold-basic-exec.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_query@multigpu-query-invalid-extension: - shard-bmg: [SKIP][546] ([Intel XE#1130]) -> [SKIP][547] ([Intel XE#944]) +4 other tests skip [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_query@multigpu-query-invalid-extension.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-8/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-bmg: [SKIP][548] ([Intel XE#944]) -> [SKIP][549] ([Intel XE#1130]) +1 other test skip [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt at xe_sriov_flr@flr-each-isolation: - shard-bmg: [SKIP][550] ([Intel XE#3342]) -> [SKIP][551] ([Intel XE#1130]) [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at xe_sriov_flr@flr-each-isolation.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/shard-bmg-7/igt at xe_sriov_flr@flr-each-isolation.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [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#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#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#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#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [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#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [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#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [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#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [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#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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [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#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [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#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#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#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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_8199 -> IGTPW_12467 IGTPW_12467: 594d0d229b8c967c61efb5a47a98b60f7925ff29 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12467/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 19:26:55 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 19:26:55 -0000 Subject: =?utf-8?q?=E2=9C=97_GitLab=2EPipeline=3A_warning_for_tests/kms=5Faddfb=5Fbas?= =?utf-8?q?ic=3A_Fix_addfb25=5Ftests_to_not_require_intel?= In-Reply-To: <20250120171021.1029868-1-george.zhang@amd.com> References: <20250120171021.1029868-1-george.zhang@amd.com> Message-ID: <173740121580.2268529.3630771018244956498@b555e5b46a47> == Series Details == Series: tests/kms_addfb_basic: Fix addfb25_tests to not require intel URL : https://patchwork.freedesktop.org/series/143739/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1349021 for the overview. build:tests-debian-meson-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69652656): Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out aea71508 as detached HEAD (ref is intel/IGTPW_12468)... Removing build/ Removing lib/i915/perf-configs/__pycache__/ Removing lib/xe/oa-configs/__pycache__/ Removing scripts/__pycache__/ Skipping Git submodules setup section_end:1737400851:get_sources section_start:1737400851:step_script Executing "step_script" stage of the job script Using docker image sha256:7360075a71dacfc66f0b49b3271b9a459904dbe51c5760efac48fe52da27946c for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-arm64:commit-aea715085fd7dad8dc83a1dc74e5b2c1bb83d60d with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-arm64 at sha256:df8438cd0e218646c3bdc2eb6abccb43c4e884bfd40a1a4dd0365f1f8031d21f ... section_end:1737400854:step_script section_start:1737400854:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737400855:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:7360075a71dacfc66f0b49b3271b9a459904dbe51c5760efac48fe52da27946c: image not known (docker.go:650:0s) == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1349021 From patchwork at emeril.freedesktop.org Mon Jan 20 19:54:24 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 19:54:24 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_tests/kms=5Faddfb=5Fbasic?= =?utf-8?q?=3A_Fix_addfb25=5Ftests_to_not_require_intel?= In-Reply-To: <20250120171021.1029868-1-george.zhang@amd.com> References: <20250120171021.1029868-1-george.zhang@amd.com> Message-ID: <173740286425.2268516.3530086198906058631@b555e5b46a47> == Series Details == Series: tests/kms_addfb_basic: Fix addfb25_tests to not require intel URL : https://patchwork.freedesktop.org/series/143739/ State : failure == Summary == CI Bug Log - changes from IGT_8199 -> IGTPW_12468 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12468 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12468, 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_12468/index.html Participating hosts (39 -> 41) ------------------------------ Additional (2): fi-bsw-nick fi-elk-e7500 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12468: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@basic-flip-vs-dpms at a-dp2: - bat-dg2-13: NOTRUN -> [ABORT][1] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/bat-dg2-13/igt at kms_flip@basic-flip-vs-dpms at a-dp2.html * igt at kms_flip@basic-flip-vs-dpms at c-dp2: - bat-dg2-13: NOTRUN -> [DMESG-FAIL][2] +2 other tests dmesg-fail [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/bat-dg2-13/igt at kms_flip@basic-flip-vs-dpms at c-dp2.html Known issues ------------ Here are the changes found in IGTPW_12468 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at fbdev@info: - fi-bsw-nick: NOTRUN -> [SKIP][3] ([i915#1849]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/fi-bsw-nick/igt at fbdev@info.html * igt at gem_lmem_swapping@parallel-random-engines: - fi-bsw-nick: NOTRUN -> [SKIP][4] +43 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/fi-bsw-nick/igt at gem_lmem_swapping@parallel-random-engines.html * igt at gem_mmap@basic: - bat-dg2-13: NOTRUN -> [SKIP][5] ([i915#4083]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/bat-dg2-13/igt at gem_mmap@basic.html * igt at gem_tiled_blits@basic: - bat-dg2-13: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/bat-dg2-13/igt at gem_tiled_blits@basic.html * igt at gem_tiled_pread_basic: - bat-dg2-13: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/bat-dg2-13/igt at gem_tiled_pread_basic.html * igt at i915_selftest@live: - bat-adlp-6: [PASS][8] -> [ABORT][9] ([i915#13399]) +1 other test abort [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-adlp-6/igt at i915_selftest@live.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/bat-adlp-6/igt at i915_selftest@live.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-13: NOTRUN -> [SKIP][10] ([i915#5190]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/bat-dg2-13/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-13: NOTRUN -> [SKIP][11] ([i915#4215] / [i915#5190]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/bat-dg2-13/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@framebuffer-vs-set-tiling: - bat-dg2-13: NOTRUN -> [SKIP][12] ([i915#4212]) +7 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/bat-dg2-13/igt at kms_addfb_basic@framebuffer-vs-set-tiling.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-dg2-13: NOTRUN -> [SKIP][13] ([i915#4103] / [i915#4213]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/bat-dg2-13/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_dsc@dsc-basic: - bat-dg2-13: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#3840]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/bat-dg2-13/igt at kms_dsc@dsc-basic.html * igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1: - fi-elk-e7500: NOTRUN -> [SKIP][15] +24 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/fi-elk-e7500/igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1.html * igt at kms_pm_rpm@basic-rte: - bat-rpls-4: [PASS][16] -> [DMESG-WARN][17] ([i915#13400]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-rpls-4/igt at kms_pm_rpm@basic-rte.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/bat-rpls-4/igt at kms_pm_rpm@basic-rte.html #### Possible fixes #### * igt at i915_module_load@load: - bat-dg2-13: [ABORT][18] ([i915#13530]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-dg2-13/igt at i915_module_load@load.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/bat-dg2-13/igt at i915_module_load@load.html - {bat-mtlp-9}: [DMESG-WARN][20] ([i915#13494]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-mtlp-9/igt at i915_module_load@load.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/bat-mtlp-9/igt at i915_module_load@load.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13399 [i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#13530]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13530 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8199 -> IGTPW_12468 * Linux: CI_DRM_15983 -> CI_DRM_15984 CI-20190529: 20190529 CI_DRM_15983: 4d9c78b35c395ed49796502224f3a421b0ce65ef @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15984: 112cf3f777a01cf551c69d74d43f6c2732981706 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12468: aea715085fd7dad8dc83a1dc74e5b2c1bb83d60d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12468/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 20:01:50 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 20:01:50 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/kms=5Faddfb=5Fbasic?= =?utf-8?q?=3A_Fix_addfb25=5Ftests_to_not_require_intel?= In-Reply-To: <20250120171021.1029868-1-george.zhang@amd.com> References: <20250120171021.1029868-1-george.zhang@amd.com> Message-ID: <173740331056.2290495.10085830332769287061@b555e5b46a47> == Series Details == Series: tests/kms_addfb_basic: Fix addfb25_tests to not require intel URL : https://patchwork.freedesktop.org/series/143739/ State : success == Summary == CI Bug Log - changes from XEIGT_8199_BAT -> XEIGTPW_12468_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12468_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_8199/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/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#3970] / [Intel XE#4078]) +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/bat-adlp-vf/igt at xe_pat@pat-index-xelp at render.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/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_8199/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8199 -> IGTPW_12468 * Linux: xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef -> xe-2515-112cf3f777a01cf551c69d74d43f6c2732981706 IGTPW_12468: aea715085fd7dad8dc83a1dc74e5b2c1bb83d60d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef xe-2515-112cf3f777a01cf551c69d74d43f6c2732981706: 112cf3f777a01cf551c69d74d43f6c2732981706 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcin.bernatowicz at linux.intel.com Mon Jan 20 20:34:41 2025 From: marcin.bernatowicz at linux.intel.com (Marcin Bernatowicz) Date: Mon, 20 Jan 2025 21:34:41 +0100 Subject: [PATCH i-g-t 0/4] Add SR-IOV provisioning scheduling attributes and tests Message-ID: <20250120203445.16285-1-marcin.bernatowicz@linux.intel.com> Add helper functions to get and set SR-IOV provisioning scheduling attributes. These functions provide an interface for accessing provisioning attributes such as execution quantum, preemption timeout, schedule if idle policy, schedule priority, and engine reset policy. Include both returning and asserting versions to handle errors appropriately. Introduce a function to validate default SR-IOV scheduling attributes for VFs and PF. This function skips the test if non-default attributes are detected. The default attributes verified include: - exec_quantum_ms set to 0 (infinite execution quantum) - preempt_timeout_us set to 0 (infinite preemption timeout) - sched_if_idle set to false - reset_engine set to false - sched_priority set to XE_SRIOV_SCHED_PRIORITY_LOW Implement equal-throughput validation for VFs (PF is treated as VF0) with identical workloads and scheduling settings. Scheduling settings are adjusted to consider execution quantum, job duration, and the number of VFs, while adhering to timeout constraints and aiming for a sufficient number of job repeats. This approach balances overall test duration with accuracy. Verify the occurrence of engine resets when non-preemptible workloads surpass the combined duration of execution quantum and preemption timeout. Cc: Adam Miszczak Cc: Jakub Kolakowski Cc: Lukasz Laguna Cc: Micha? Wajdeczko Cc: Micha? Winiarski Cc: Narasimha C V Cc: Piotr Pi?rkowski Cc: Satyanarayana K V P Cc: Tomasz Lis Marcin Bernatowicz (4): lib/xe/xe_sriov_provisioning: Add scheduling attributes accessors lib/xe/xe_sriov_provisioning: Add helper to check default scheduling attributes tests/xe_sriov_scheduling: VF equal-throughput validation tests/xe_sriov_scheduling: nonpreempt-engine-resets subtest lib/xe/xe_sriov_provisioning.c | 411 ++++++++++++++- lib/xe/xe_sriov_provisioning.h | 54 ++ tests/intel/xe_sriov_scheduling.c | 824 ++++++++++++++++++++++++++++++ tests/meson.build | 1 + 4 files changed, 1289 insertions(+), 1 deletion(-) create mode 100644 tests/intel/xe_sriov_scheduling.c -- 2.31.1 From marcin.bernatowicz at linux.intel.com Mon Jan 20 20:34:42 2025 From: marcin.bernatowicz at linux.intel.com (Marcin Bernatowicz) Date: Mon, 20 Jan 2025 21:34:42 +0100 Subject: [PATCH i-g-t 1/4] lib/xe/xe_sriov_provisioning: Add scheduling attributes accessors In-Reply-To: <20250120203445.16285-1-marcin.bernatowicz@linux.intel.com> References: <20250120203445.16285-1-marcin.bernatowicz@linux.intel.com> Message-ID: <20250120203445.16285-2-marcin.bernatowicz@linux.intel.com> Add helper functions to get and set SR-IOV provisioning scheduling attributes. These functions provide an interface for accessing provisioning attributes such as execution quantum, preemption timeout, schedule if idle policy, schedule priority, and engine reset policy. Include both returning and asserting versions to handle errors appropriately. Signed-off-by: Marcin Bernatowicz Cc: Adam Miszczak Cc: Jakub Kolakowski Cc: Lukasz Laguna Cc: Micha? Wajdeczko Cc: Micha? Winiarski Cc: Narasimha C V Cc: Piotr Pi?rkowski Cc: Satyanarayana K V P Cc: Tomasz Lis --- lib/xe/xe_sriov_provisioning.c | 369 ++++++++++++++++++++++++++++++++- lib/xe/xe_sriov_provisioning.h | 53 +++++ 2 files changed, 421 insertions(+), 1 deletion(-) diff --git a/lib/xe/xe_sriov_provisioning.c b/lib/xe/xe_sriov_provisioning.c index 22035ffd8..4e3fbaae2 100644 --- a/lib/xe/xe_sriov_provisioning.c +++ b/lib/xe/xe_sriov_provisioning.c @@ -6,10 +6,11 @@ #include #include "igt_core.h" +#include "igt_sriov_device.h" #include "intel_chipset.h" #include "linux_scaffold.h" -#include "xe/xe_mmio.h" #include "xe/xe_query.h" +#include "xe/xe_mmio.h" #include "xe/xe_sriov_debugfs.h" #include "xe/xe_sriov_provisioning.h" @@ -296,3 +297,369 @@ bool xe_sriov_is_shared_res_provisionable(int pf, enum xe_sriov_shared_res res, return true; } + +/** + * __xe_sriov_get_exec_quantum_ms - Read the execution quantum in milliseconds for a given VF + * @pf: PF device file descriptor + * @vf_num: VF number (1-based) or 0 for PF + * @gt_num: GT number + * @value: Pointer to store the read value + * + * Reads the execution quantum in milliseconds for the given PF device @pf, + * VF number @vf_num on GT @gt_num. + * + * Return: 0 on success, negative error code on failure. + */ +int __xe_sriov_get_exec_quantum_ms(int pf, unsigned int vf_num, + unsigned int gt_num, uint32_t *value) +{ + return __xe_sriov_pf_debugfs_get_u32(pf, vf_num, gt_num, "exec_quantum_ms", value); +} + +/** + * xe_sriov_get_exec_quantum_ms - Get the execution quantum in milliseconds for a given VF + * @pf: PF device file descriptor + * @vf_num: VF number (1-based) or 0 for PF + * @gt_num: GT number + * + * A throwing version of __xe_sriov_get_exec_quantum_ms(). + * Instead of returning an error code, it returns the value read and + * asserts in case of an error. + * + * Return: Execution quantum in milliseconds assigned to a given VF. Asserts in case of failure. + */ +uint32_t xe_sriov_get_exec_quantum_ms(int pf, unsigned int vf_num, + unsigned int gt_num) +{ + uint32_t value; + + igt_fail_on(__xe_sriov_get_exec_quantum_ms(pf, vf_num, gt_num, &value)); + + return value; +} + +/** + * __xe_sriov_set_exec_quantum_ms - Set the execution quantum in milliseconds for a given VF + * @pf: PF device file descriptor + * @vf_num: VF number (1-based) or 0 for PF + * @gt_num: GT number + * @value: Value to set + * + * Sets the execution quantum in milliseconds for the given PF device @pf, + * VF number @vf_num on GT @gt_num. + * + * Return: 0 on success, negative error code on failure. + */ +int __xe_sriov_set_exec_quantum_ms(int pf, unsigned int vf_num, + unsigned int gt_num, uint32_t value) +{ + return __xe_sriov_pf_debugfs_set_u32(pf, vf_num, gt_num, "exec_quantum_ms", value); +} + +/** + * xe_sriov_set_exec_quantum_ms - Set the execution quantum in milliseconds for a given VF + * @pf: PF device file descriptor + * @vf_num: VF number (1-based) or 0 for PF + * @gt_num: GT number + * @value: Value to set + * + * A throwing version of __xe_sriov_set_exec_quantum_ms(). + * Instead of returning an error code, it asserts in case of an error. + */ +void xe_sriov_set_exec_quantum_ms(int pf, unsigned int vf_num, + unsigned int gt_num, uint32_t value) +{ + igt_fail_on(__xe_sriov_set_exec_quantum_ms(pf, vf_num, gt_num, value)); +} + +/** + * __xe_sriov_get_preempt_timeout_us - Get the preemption timeout in microseconds for a given VF + * @pf: PF device file descriptor + * @vf_num: VF number (1-based) or 0 for PF + * @gt_num: GT number + * @value: Pointer to store the read value + * + * Reads the preemption timeout in microseconds for the given PF device @pf, + * VF number @vf_num on GT @gt_num. + * + * Return: 0 on success, negative error code on failure. + */ +int __xe_sriov_get_preempt_timeout_us(int pf, unsigned int vf_num, + unsigned int gt_num, uint32_t *value) +{ + return __xe_sriov_pf_debugfs_get_u32(pf, vf_num, gt_num, "preempt_timeout_us", value); +} + +/** + * xe_sriov_get_preempt_timeout_us - Get the preemption timeout in microseconds for a given VF + * @pf: PF device file descriptor + * @vf_num: VF number (1-based) or 0 for PF + * @gt_num: GT number + * + * A throwing version of __xe_sriov_get_preempt_timeout_us(). + * Instead of returning an error code, it returns the value read and + * asserts in case of an error. + * + * Return: Preemption timeout in microseconds assigned to a given VF. + * Asserts in case of failure. + */ +uint32_t xe_sriov_get_preempt_timeout_us(int pf, unsigned int vf_num, + unsigned int gt_num) +{ + uint32_t value; + + igt_fail_on(__xe_sriov_get_preempt_timeout_us(pf, vf_num, gt_num, &value)); + + return value; +} + +/** + * __xe_sriov_set_preempt_timeout_us - Set the preemption timeout in microseconds for a given VF + * @pf: PF device file descriptor + * @vf_num: VF number (1-based) or 0 for PF + * @gt_num: GT number + * @value: Value to set + * + * Sets the preemption timeout in microseconds for the given PF device @pf, + * VF number @vf_num on GT @gt_num. + * + * Return: 0 on success, negative error code on failure. + */ +int __xe_sriov_set_preempt_timeout_us(int pf, unsigned int vf_num, + unsigned int gt_num, uint32_t value) +{ + return __xe_sriov_pf_debugfs_set_u32(pf, vf_num, gt_num, "preempt_timeout_us", value); +} + +/** + * xe_sriov_set_preempt_timeout_us - Set the preemption timeout in microseconds for a given VF + * @pf: PF device file descriptor + * @vf_num: VF number (1-based) or 0 for PF + * @gt_num: GT number + * @value: Value to set + * + * A throwing version of __xe_sriov_set_preempt_timeout_us(). + * Instead of returning an error code, it asserts in case of an error. + */ +void xe_sriov_set_preempt_timeout_us(int pf, unsigned int vf_num, + unsigned int gt_num, uint32_t value) +{ + igt_fail_on(__xe_sriov_set_preempt_timeout_us(pf, vf_num, gt_num, value)); +} + +/** + * __xe_sriov_get_engine_reset - Get the engine reset policy status for a given GT + * @pf: PF device file descriptor + * @gt_num: GT number + * @value: Pointer to store the read engine reset policy status + * + * Reads the engine reset status for the given PF device @pf on GT @gt_num. + * + * Return: 0 on success, negative error code on failure. + */ +int __xe_sriov_get_engine_reset(int pf, unsigned int gt_num, bool *value) +{ + return __xe_sriov_pf_debugfs_get_boolean(pf, 0, gt_num, "reset_engine", value); +} + +/** + * xe_sriov_get_engine_reset - Get the engine reset policy status for a given GT + * @pf: PF device file descriptor + * @gt_num: GT number + * + * A throwing version of __xe_sriov_get_engine_reset(). + * Instead of returning an error code, it returns the engine reset status + * and asserts in case of an error. + * + * Return: The engine reset status for the given GT. + * Asserts in case of failure. + */ +bool xe_sriov_get_engine_reset(int pf, unsigned int gt_num) +{ + bool value; + + igt_fail_on(__xe_sriov_get_engine_reset(pf, gt_num, &value)); + + return value; +} + +/** + * __xe_sriov_set_engine_reset - Set the engine reset policy for a given GT + * @pf: PF device file descriptor + * @gt_num: GT number + * @value: Engine reset policy status to set + * + * Sets the engine reset policy for the given PF device @pf on GT @gt_num. + * + * Return: 0 on success, negative error code on failure. + */ +int __xe_sriov_set_engine_reset(int pf, unsigned int gt_num, bool value) +{ + return __xe_sriov_pf_debugfs_set_boolean(pf, 0, gt_num, "reset_engine", value); +} + +/** + * xe_sriov_set_engine_reset - Set the engine reset policy for a given GT + * @pf: PF device file descriptor + * @gt_num: GT number + * @value: Engine reset policy status to set + * + * A throwing version of __xe_sriov_set_engine_reset(). + * Instead of returning an error code, it asserts in case of an error. + */ +void xe_sriov_set_engine_reset(int pf, unsigned int gt_num, bool value) +{ + igt_fail_on(__xe_sriov_set_engine_reset(pf, gt_num, value)); +} + +/** + * __xe_sriov_get_sched_if_idle - Get the scheduling if idle policy for a given GT + * @pf: PF device file descriptor + * @gt_num: GT number + * @value: Pointer to store the read scheduling if idle policy status + * + * Reads the scheduling if idle policy status for the given PF device @pf on GT @gt_num. + * + * Return: 0 on success, negative error code on failure. + */ +int __xe_sriov_get_sched_if_idle(int pf, unsigned int gt_num, bool *value) +{ + return __xe_sriov_pf_debugfs_get_boolean(pf, 0, gt_num, "sched_if_idle", value); +} + +/** + * xe_sriov_get_sched_if_idle - Get the scheduling if idle policy for a given GT + * @pf: PF device file descriptor + * @gt_num: GT number + * + * A throwing version of __xe_sriov_get_sched_if_idle(). + * Instead of returning an error code, it returns the scheduling if idle policy status + * and asserts in case of an error. + * + * Return: The scheduling if idle status for the given GT. + * Asserts in case of failure. + */ +bool xe_sriov_get_sched_if_idle(int pf, unsigned int gt_num) +{ + bool value; + + igt_fail_on(__xe_sriov_get_sched_if_idle(pf, gt_num, &value)); + + return value; +} + +/** + * __xe_sriov_set_sched_if_idle - Set the scheduling if idle policy status for a given GT + * @pf: PF device file descriptor + * @gt_num: GT number + * @value: Scheduling if idle policy status to set + * + * Sets the scheduling if idle policy status for the given PF device @pf on GT @gt_num. + * + * Return: 0 on success, negative error code on failure. + */ +int __xe_sriov_set_sched_if_idle(int pf, unsigned int gt_num, bool value) +{ + return __xe_sriov_pf_debugfs_set_boolean(pf, 0, gt_num, "sched_if_idle", value); +} + +/** + * xe_sriov_set_sched_if_idle - Set the scheduling if idle status policy for a given GT + * @pf: PF device file descriptor + * @gt_num: GT number + * @value: Scheduling if idle policy status to set + * + * A throwing version of __xe_sriov_set_sched_if_idle(). + * Instead of returning an error code, it asserts in case of an error. + */ +void xe_sriov_set_sched_if_idle(int pf, unsigned int gt_num, bool value) +{ + igt_fail_on(__xe_sriov_set_sched_if_idle(pf, gt_num, value)); +} + +/** + * __xe_sriov_get_sched_priority - Get the scheduling priority for a given VF + * @pf: PF device file descriptor + * @vf_num: VF number (1-based) or 0 for PF + * @gt_num: GT number + * @value: Pointer to store the read scheduling priority + * + * Reads the scheduling priority for the given PF device @pf, + * VF number @vf_num on GT @gt_num. + * + * Return: 0 on success, negative error code on failure. + */ +int __xe_sriov_get_sched_priority(int pf, unsigned int vf_num, + unsigned int gt_num, + enum xe_sriov_sched_priority *value) +{ + uint32_t priority; + int ret; + + ret = __xe_sriov_pf_debugfs_get_u32(pf, vf_num, gt_num, "sched_priority", &priority); + if (igt_debug_on_f(ret, "Failed to read sched_priority attribute for GT%u\n", gt_num)) + return ret; + + if (priority <= XE_SRIOV_SCHED_PRIORITY_HIGH) { + *value = (enum xe_sriov_sched_priority)priority; + return 0; + } + + return -ERANGE; +} + +/** + * xe_sriov_get_sched_priority - Get the scheduling priority for a given VF + * @pf: PF device file descriptor + * @vf_num: VF number (1-based) or 0 for PF + * @gt_num: GT number + * + * A throwing version of __xe_sriov_get_sched_priority(). + * Instead of returning an error code, it returns the scheduling priority + * and asserts in case of an error. + * + * Return: The scheduling priority for the given VF and GT. + * Asserts in case of failure. + */ +enum xe_sriov_sched_priority +xe_sriov_get_sched_priority(int pf, unsigned int vf_num, unsigned int gt_num) +{ + enum xe_sriov_sched_priority priority; + + igt_fail_on(__xe_sriov_get_sched_priority(pf, vf_num, gt_num, &priority)); + + return priority; +} + +/** + * __xe_sriov_set_sched_priority - Set the scheduling priority for a given VF + * @pf: PF device file descriptor + * @vf_num: VF number (1-based) or 0 for PF + * @gt_num: GT number + * @value: Scheduling priority to set (enum xe_sriov_sched_priority) + * + * Sets the scheduling priority for the given PF device @pf, VF number @vf_num on GT @gt_num. + * + * Return: 0 on success, negative error code on failure. + */ +int __xe_sriov_set_sched_priority(int pf, unsigned int vf_num, unsigned int gt_num, + enum xe_sriov_sched_priority value) +{ + return __xe_sriov_pf_debugfs_set_u32(pf, vf_num, gt_num, "sched_priority", value); +} + +/** + * xe_sriov_set_sched_priority - Set the scheduling priority for a given VF + * @pf: PF device file descriptor + * @vf_num: VF number (1-based) or 0 for PF + * @gt_num: GT number + * @value: Scheduling priority to set (enum xe_sriov_sched_priority) + * + * A throwing version of __xe_sriov_set_sched_priority(). + * Instead of returning an error code, it asserts in case of an error. + */ +void xe_sriov_set_sched_priority(int pf, unsigned int vf_num, unsigned int gt_num, + enum xe_sriov_sched_priority value) +{ + igt_fail_on(__xe_sriov_set_sched_priority(pf, vf_num, gt_num, value)); +} diff --git a/lib/xe/xe_sriov_provisioning.h b/lib/xe/xe_sriov_provisioning.h index b4300ec2e..b22f96d88 100644 --- a/lib/xe/xe_sriov_provisioning.h +++ b/lib/xe/xe_sriov_provisioning.h @@ -55,6 +55,26 @@ enum xe_sriov_shared_res { for ((res) = 0; (res) < XE_SRIOV_SHARED_RES_NUM; (res)++) \ for_if(xe_sriov_is_shared_res_provisionable((pf), (res), (gt))) +/** + * enum xe_sriov_sched_priority - SR-IOV scheduling priorities + * @XE_SRIOV_SCHED_PRIORITY_LOW: Schedule VF only if it has active work and + * VF-State is VF_STATE_RUNNING. This is the + * default value. + * @XE_SRIOV_SCHED_PRIORITY_NORMAL: Schedule VF always, irrespective of whether + * it has work or not, as long as VF-State is + * not VF_STATE_DISABLED. Once scheduled, VF + * will run for its entire execution quantum. + * @XE_SRIOV_SCHED_PRIORITY_HIGH: Schedule VF in the next time-slice after the + * current active time-slice completes. VF is + * scheduled only if it has work and VF-State is + * VF_STATE_RUNNING. + */ +enum xe_sriov_sched_priority { + XE_SRIOV_SCHED_PRIORITY_LOW, + XE_SRIOV_SCHED_PRIORITY_NORMAL, + XE_SRIOV_SCHED_PRIORITY_HIGH +}; + /** * struct xe_sriov_provisioned_range - Provisioned range for a Virtual Function (VF) * @vf_id: The ID of the VF @@ -89,5 +109,38 @@ int __xe_sriov_pf_set_shared_res_attr(int pf, enum xe_sriov_shared_res res, void xe_sriov_pf_set_shared_res_attr(int pf, enum xe_sriov_shared_res res, unsigned int vf_num, unsigned int gt_num, uint64_t value); +int __xe_sriov_get_exec_quantum_ms(int pf, unsigned int vf_num, + unsigned int gt_num, uint32_t *value); +uint32_t xe_sriov_get_exec_quantum_ms(int pf, unsigned int vf_num, + unsigned int gt_num); +int __xe_sriov_set_exec_quantum_ms(int pf, unsigned int vf_num, + unsigned int gt_num, uint32_t value); +void xe_sriov_set_exec_quantum_ms(int pf, unsigned int vf_num, + unsigned int gt_num, uint32_t value); +int __xe_sriov_get_preempt_timeout_us(int pf, unsigned int vf_num, + unsigned int gt_num, uint32_t *value); +uint32_t xe_sriov_get_preempt_timeout_us(int pf, unsigned int vf_num, + unsigned int gt_num); +int __xe_sriov_set_preempt_timeout_us(int pf, unsigned int vf_num, + unsigned int gt_num, uint32_t value); +void xe_sriov_set_preempt_timeout_us(int pf, unsigned int vf_num, + unsigned int gt_num, uint32_t value); +int __xe_sriov_get_engine_reset(int pf, unsigned int gt_num, bool *value); +bool xe_sriov_get_engine_reset(int pf, unsigned int gt_num); +int __xe_sriov_set_engine_reset(int pf, unsigned int gt_num, bool value); +void xe_sriov_set_engine_reset(int pf, unsigned int gt_num, bool value); +int __xe_sriov_get_sched_if_idle(int pf, unsigned int gt_num, bool *value); +bool xe_sriov_get_sched_if_idle(int pf, unsigned int gt_num); +int __xe_sriov_set_sched_if_idle(int pf, unsigned int gt_num, bool value); +void xe_sriov_set_sched_if_idle(int pf, unsigned int gt_num, bool value); +int __xe_sriov_get_sched_priority(int pf, unsigned int vf_num, + unsigned int gt_num, + enum xe_sriov_sched_priority *value); +enum xe_sriov_sched_priority xe_sriov_get_sched_priority(int pf, unsigned int vf_num, + unsigned int gt_num); +int __xe_sriov_set_sched_priority(int pf, unsigned int vf_num, unsigned int gt_num, + enum xe_sriov_sched_priority value); +void xe_sriov_set_sched_priority(int pf, unsigned int vf_num, unsigned int gt_num, + enum xe_sriov_sched_priority value); #endif /* __XE_SRIOV_PROVISIONING_H__ */ -- 2.31.1 From marcin.bernatowicz at linux.intel.com Mon Jan 20 20:34:43 2025 From: marcin.bernatowicz at linux.intel.com (Marcin Bernatowicz) Date: Mon, 20 Jan 2025 21:34:43 +0100 Subject: [PATCH i-g-t 2/4] lib/xe/xe_sriov_provisioning: Add helper to check default scheduling attributes In-Reply-To: <20250120203445.16285-1-marcin.bernatowicz@linux.intel.com> References: <20250120203445.16285-1-marcin.bernatowicz@linux.intel.com> Message-ID: <20250120203445.16285-3-marcin.bernatowicz@linux.intel.com> Introduce a function to validate default SR-IOV scheduling attributes for VFs and PF. This function skips the test if non-default attributes are detected. The default attributes verified include: - exec_quantum_ms set to 0 (infinite execution quantum) - preempt_timeout_us set to 0 (infinite preemption timeout) - sched_if_idle set to false - reset_engine set to false - sched_priority set to XE_SRIOV_SCHED_PRIORITY_LOW Signed-off-by: Marcin Bernatowicz Cc: Adam Miszczak Cc: Jakub Kolakowski Cc: Lukasz Laguna Cc: Micha? Wajdeczko Cc: Micha? Winiarski Cc: Narasimha C V Cc: Piotr Pi?rkowski Cc: Satyanarayana K V P Cc: Tomasz Lis --- lib/xe/xe_sriov_provisioning.c | 42 ++++++++++++++++++++++++++++++++++ lib/xe/xe_sriov_provisioning.h | 1 + 2 files changed, 43 insertions(+) diff --git a/lib/xe/xe_sriov_provisioning.c b/lib/xe/xe_sriov_provisioning.c index 4e3fbaae2..da580144d 100644 --- a/lib/xe/xe_sriov_provisioning.c +++ b/lib/xe/xe_sriov_provisioning.c @@ -663,3 +663,45 @@ void xe_sriov_set_sched_priority(int pf, unsigned int vf_num, unsigned int gt_nu { igt_fail_on(__xe_sriov_set_sched_priority(pf, vf_num, gt_num, value)); } + +/** + * xe_sriov_require_default_scheduling_attributes - Ensure default SR-IOV scheduling attributes + * @pf_fd: PF device file descriptor + * + * Skips the current test if non-default SR-IOV scheduling attributes are set. + * + * Default scheduling attributes are as follows for each VF and PF: + * - exec_quantum_ms equals zero (meaning infinity) + * - preempt_timeout_us equals zero (meaning infinity) + * - sched_if_idle equals false + * - reset_engine equals false + * - sched_priority equals XE_SRIOV_SCHED_PRIORITY_LOW + */ +void xe_sriov_require_default_scheduling_attributes(int pf) +{ + unsigned int totalvfs = igt_sriov_get_total_vfs(pf); + enum xe_sriov_sched_priority sched_priority; + bool sched_if_idle, reset_engine; + uint32_t eq, pt; + unsigned int gt; + + xe_for_each_gt(pf, gt) { + igt_skip_on(__xe_sriov_get_sched_if_idle(pf, gt, &sched_if_idle)); + igt_require_f(!sched_if_idle, "sched_if_idle != false on gt%u\n", gt); + igt_skip_on(__xe_sriov_get_engine_reset(pf, gt, &reset_engine)); + igt_require_f(!reset_engine, "reset_engine != false on gt%u\n", gt); + + for (unsigned int vf_num = 0; vf_num <= totalvfs; ++vf_num) { + igt_skip_on(__xe_sriov_get_exec_quantum_ms(pf, vf_num, gt, &eq)); + igt_require_f(eq == 0, "exec_quantum_ms != 0 on gt%u/VF%u\n", gt, vf_num); + + igt_skip_on(__xe_sriov_get_preempt_timeout_us(pf, vf_num, gt, &pt)); + igt_require_f(pt == 0, "preempt_timeout_us != 0 on gt%u/VF%u\n", + gt, vf_num); + + igt_skip_on(__xe_sriov_get_sched_priority(pf, vf_num, gt, &sched_priority)); + igt_require_f(sched_priority == XE_SRIOV_SCHED_PRIORITY_LOW, + "sched_priority != LOW on gt%u/VF%u\n", gt, vf_num); + } + } +} diff --git a/lib/xe/xe_sriov_provisioning.h b/lib/xe/xe_sriov_provisioning.h index b22f96d88..4382f528f 100644 --- a/lib/xe/xe_sriov_provisioning.h +++ b/lib/xe/xe_sriov_provisioning.h @@ -142,5 +142,6 @@ int __xe_sriov_set_sched_priority(int pf, unsigned int vf_num, unsigned int gt_n enum xe_sriov_sched_priority value); void xe_sriov_set_sched_priority(int pf, unsigned int vf_num, unsigned int gt_num, enum xe_sriov_sched_priority value); +void xe_sriov_require_default_scheduling_attributes(int pf); #endif /* __XE_SRIOV_PROVISIONING_H__ */ -- 2.31.1 From marcin.bernatowicz at linux.intel.com Mon Jan 20 20:34:44 2025 From: marcin.bernatowicz at linux.intel.com (Marcin Bernatowicz) Date: Mon, 20 Jan 2025 21:34:44 +0100 Subject: [PATCH i-g-t 3/4] tests/xe_sriov_scheduling: VF equal-throughput validation In-Reply-To: <20250120203445.16285-1-marcin.bernatowicz@linux.intel.com> References: <20250120203445.16285-1-marcin.bernatowicz@linux.intel.com> Message-ID: <20250120203445.16285-4-marcin.bernatowicz@linux.intel.com> Implement equal-throughput validation for VFs (PF is treated as VF0) with identical workloads and scheduling settings. Scheduling settings are adjusted to consider execution quantum, job duration, and the number of VFs, while adhering to timeout constraints and aiming for a sufficient number of job repeats. This approach balances overall test duration with accuracy. Signed-off-by: Marcin Bernatowicz Cc: Adam Miszczak Cc: Jakub Kolakowski Cc: Lukasz Laguna Cc: Micha? Wajdeczko Cc: Micha? Winiarski Cc: Narasimha C V Cc: Piotr Pi?rkowski Cc: Satyanarayana K V P Cc: Tomasz Lis --- tests/intel/xe_sriov_scheduling.c | 698 ++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 699 insertions(+) create mode 100644 tests/intel/xe_sriov_scheduling.c diff --git a/tests/intel/xe_sriov_scheduling.c b/tests/intel/xe_sriov_scheduling.c new file mode 100644 index 000000000..20ec15b22 --- /dev/null +++ b/tests/intel/xe_sriov_scheduling.c @@ -0,0 +1,698 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright ? 2024 Intel Corporation + */ +#include "igt.h" +#include "igt_sriov_device.h" +#include "igt_syncobj.h" +#include "xe_drm.h" +#include "xe/xe_ioctl.h" +#include "xe/xe_spin.h" +#include "xe/xe_sriov_provisioning.h" + +/** + * TEST: Tests for SR-IOV scheduling parameters. + * Category: Core + * Mega feature: SR-IOV + * Sub-category: scheduling + * Functionality: vGPU profiles scheduling parameters + * Run type: FULL + * Description: Verify the occurrence of engine resets + * when non-preemptible workloads surpass the combined + * duration of execution quantum and preemption timeout. + */ + +enum subm_sync_method { SYNC_NONE, SYNC_BARRIER }; + +struct subm_opts { + enum subm_sync_method sync_method; + uint32_t exec_quantum_ms; + uint32_t preempt_timeout_us; + double outlier_treshold; +}; + +struct subm_work_desc { + uint64_t duration_ms; + bool preempt; + unsigned int repeats; +}; + +struct subm_stats { + igt_stats_t samples; + uint64_t start_timestamp; + uint64_t end_timestamp; + unsigned int num_early_finish; + unsigned int concurrent_execs; + double concurrent_rate; + double concurrent_mean; +}; + +struct subm { + char id[32]; + int fd; + int vf_num; + struct subm_work_desc work; + uint32_t expected_ticks; + uint64_t addr; + uint32_t vm; + struct drm_xe_engine_class_instance hwe; + uint32_t exec_queue_id; + uint32_t bo; + size_t bo_size; + struct xe_spin *spin; + struct drm_xe_sync sync[1]; + struct drm_xe_exec exec; +}; + +struct subm_thread_data { + struct subm subm; + struct subm_stats stats; + const struct subm_opts *opts; + pthread_t thread; + pthread_barrier_t *barrier; +}; + +struct subm_set { + struct subm_thread_data *data; + int ndata; + enum subm_sync_method sync_method; + pthread_barrier_t barrier; +}; + +static void subm_init(struct subm *s, int fd, int vf_num, uint64_t addr, + struct drm_xe_engine_class_instance hwe) +{ + memset(s, 0, sizeof(*s)); + s->fd = fd; + s->vf_num = vf_num; + s->hwe = hwe; + snprintf(s->id, sizeof(s->id), "VF%d %d:%d:%d", vf_num, + hwe.engine_class, hwe.engine_instance, hwe.gt_id); + s->addr = addr ? addr : 0x1a0000; + s->vm = xe_vm_create(s->fd, 0, 0); + s->exec_queue_id = xe_exec_queue_create(s->fd, s->vm, &s->hwe, 0); + s->bo_size = ALIGN(sizeof(struct xe_spin) + xe_cs_prefetch_size(s->fd), + xe_get_default_alignment(s->fd)); + s->bo = xe_bo_create(s->fd, s->vm, s->bo_size, + vram_if_possible(fd, s->hwe.gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + s->spin = xe_bo_map(s->fd, s->bo, s->bo_size); + xe_vm_bind_sync(s->fd, s->vm, s->bo, 0, s->addr, s->bo_size); + /* out fence */ + s->sync[0].type = DRM_XE_SYNC_TYPE_SYNCOBJ; + s->sync[0].flags = DRM_XE_SYNC_FLAG_SIGNAL; + s->sync[0].handle = syncobj_create(s->fd, 0); + s->exec.num_syncs = 1; + s->exec.syncs = to_user_pointer(&s->sync[0]); + s->exec.num_batch_buffer = 1; + s->exec.exec_queue_id = s->exec_queue_id; + s->exec.address = s->addr; +} + +static void subm_fini(struct subm *s) +{ + xe_vm_unbind_sync(s->fd, s->vm, 0, s->addr, s->bo_size); + gem_munmap(s->spin, s->bo_size); + gem_close(s->fd, s->bo); + xe_exec_queue_destroy(s->fd, s->exec_queue_id); + xe_vm_destroy(s->fd, s->vm); + syncobj_destroy(s->fd, s->sync[0].handle); +} + +static void subm_workload_init(struct subm *s, struct subm_work_desc *work) +{ + s->work = *work; + s->expected_ticks = xe_spin_nsec_to_ticks(s->fd, s->hwe.gt_id, + s->work.duration_ms * 1000000); + xe_spin_init_opts(s->spin, .addr = s->addr, .preempt = s->work.preempt, + .ctx_ticks = s->expected_ticks); +} + +static void subm_wait(struct subm *s, uint64_t abs_timeout_nsec) +{ + igt_assert(syncobj_wait(s->fd, &s->sync[0].handle, 1, abs_timeout_nsec, + 0, NULL)); +} + +static void subm_exec(struct subm *s) +{ + syncobj_reset(s->fd, &s->sync[0].handle, 1); + xe_exec(s->fd, &s->exec); +} + +static bool subm_is_work_complete(struct subm *s) +{ + return s->expected_ticks <= ~s->spin->ticks_delta; +} + +static bool subm_is_exec_queue_banned(struct subm *s) +{ + struct drm_xe_exec_queue_get_property args = { + .exec_queue_id = s->exec_queue_id, + .property = DRM_XE_EXEC_QUEUE_GET_PROPERTY_BAN, + }; + int ret = igt_ioctl(s->fd, DRM_IOCTL_XE_EXEC_QUEUE_GET_PROPERTY, &args); + + return ret || args.value; +} + +static void subm_exec_loop(struct subm *s, struct subm_stats *stats, + const struct subm_opts *opts) +{ + struct timespec tv; + unsigned int i; + + igt_gettime(&tv); + stats->start_timestamp = + tv.tv_sec * (uint64_t)NSEC_PER_SEC + tv.tv_nsec; + igt_debug("[%s] start_timestamp: %f\n", s->id, stats->start_timestamp * 1e-9); + + for (i = 0; i < s->work.repeats; ++i) { + igt_gettime(&tv); + + subm_exec(s); + + subm_wait(s, INT64_MAX); + + igt_stats_push(&stats->samples, igt_nsec_elapsed(&tv)); + + if (!subm_is_work_complete(s)) { + stats->num_early_finish++; + + igt_debug("[%s] subm #%d early_finish=%u\n", + s->id, i, stats->num_early_finish); + + if (subm_is_exec_queue_banned(s)) + break; + } + } + + igt_gettime(&tv); + stats->end_timestamp = tv.tv_sec * (uint64_t)NSEC_PER_SEC + tv.tv_nsec; + igt_debug("[%s] end_timestamp: %f\n", s->id, stats->end_timestamp * 1e-9); +} + +static void *subm_thread(void *thread_data) +{ + struct subm_thread_data *td = thread_data; + struct timespec tv; + + igt_gettime(&tv); + igt_debug("[%s] thread started %ld.%ld\n", td->subm.id, tv.tv_sec, + tv.tv_nsec); + + if (td->barrier) + pthread_barrier_wait(td->barrier); + + subm_exec_loop(&td->subm, &td->stats, td->opts); + + return NULL; +} + +static void subm_set_dispatch_and_wait_threads(struct subm_set *set) +{ + int i; + + for (i = 0; i < set->ndata; ++i) + igt_assert_eq(0, pthread_create(&set->data[i].thread, NULL, + subm_thread, &set->data[i])); + + for (i = 0; i < set->ndata; ++i) + pthread_join(set->data[i].thread, NULL); +} + +static void subm_set_alloc_data(struct subm_set *set, unsigned int ndata) +{ + igt_assert(!set->data); + set->ndata = ndata; + set->data = calloc(set->ndata, sizeof(struct subm_thread_data)); + igt_assert(set->data); +} + +static void subm_set_free_data(struct subm_set *set) +{ + free(set->data); + set->data = NULL; + set->ndata = 0; +} + +static void subm_set_init_sync_method(struct subm_set *set, enum subm_sync_method sm) +{ + set->sync_method = sm; + if (set->sync_method == SYNC_BARRIER) + pthread_barrier_init(&set->barrier, NULL, set->ndata); +} + +static void subm_set_fini(struct subm_set *set) +{ + int i; + + if (!set->ndata) + return; + + for (i = 0; i < set->ndata; ++i) { + igt_stats_fini(&set->data[i].stats.samples); + subm_fini(&set->data[i].subm); + drm_close_driver(set->data[i].subm.fd); + } + subm_set_free_data(set); + + if (set->sync_method == SYNC_BARRIER) + pthread_barrier_destroy(&set->barrier); +} + +struct init_vf_ids_opts { + bool shuffle; + bool shuffle_pf; +}; + +static void init_vf_ids(uint8_t *array, size_t n, + const struct init_vf_ids_opts *opts) +{ + size_t i, j; + + if (!opts->shuffle_pf && n) { + array[0] = 0; + n -= 1; + array = array + 1; + } + + for (i = 0; i < n; i++) { + j = (opts->shuffle) ? rand() % (i + 1) : i; + + if (j != i) + array[i] = array[j]; + + array[j] = i + (opts->shuffle_pf ? 0 : 1); + } +} + +struct vf_sched_params { + uint32_t exec_quantum_ms; + uint32_t preempt_timeout_us; +}; + +static void set_vfs_scheduling_params(int pf_fd, int num_vfs, + const struct vf_sched_params *p) +{ + unsigned int gt; + + xe_for_each_gt(pf_fd, gt) { + for (int vf = 0; vf <= num_vfs; ++vf) { + xe_sriov_set_exec_quantum_ms(pf_fd, vf, gt, p->exec_quantum_ms); + xe_sriov_set_preempt_timeout_us(pf_fd, vf, gt, p->preempt_timeout_us); + } + } +} + +static bool check_within_epsilon(const double x, const double ref, const double tol) +{ + return x <= (1.0 + tol) * ref && x >= (1.0 - tol) * ref; +} + +static void compute_common_time_frame_stats(struct subm_set *set) +{ + struct subm_thread_data *data = set->data; + int i, j, ndata = set->ndata; + struct subm_stats *stats; + uint64_t common_start = 0; + uint64_t common_end = UINT64_MAX; + + /* Find the common time frame */ + for (i = 0; i < ndata; i++) { + stats = &data[i].stats; + + if (stats->start_timestamp > common_start) + common_start = stats->start_timestamp; + + if (stats->end_timestamp < common_end) + common_end = stats->end_timestamp; + } + + igt_info("common time frame: [%lu;%lu] %.2fms\n", + common_start, common_end, (common_end - common_start) / 1e6); + + if (igt_warn_on_f(common_end <= common_start, "No common time frame for all sets found\n")) + return; + + /* Compute concurrent_rate for each sample set within the common time frame */ + for (i = 0; i < ndata; i++) { + uint64_t total_samples_duration = 0; + uint64_t samples_duration_in_common_frame = 0; + + stats = &data[i].stats; + stats->concurrent_execs = 0; + stats->concurrent_rate = 0.0; + stats->concurrent_mean = 0.0; + + for (j = 0; j < stats->samples.n_values; j++) { + uint64_t sample_start = stats->start_timestamp + total_samples_duration; + uint64_t sample_end = sample_start + stats->samples.values_u64[j]; + + if (sample_start >= common_start && + sample_end <= common_end) { + stats->concurrent_execs++; + samples_duration_in_common_frame += + stats->samples.values_u64[j]; + } + + total_samples_duration += stats->samples.values_u64[j]; + } + + stats->concurrent_rate = samples_duration_in_common_frame ? + (double)stats->concurrent_execs / + (samples_duration_in_common_frame * + 1e-9) : + 0.0; + stats->concurrent_mean = stats->concurrent_execs ? + (double)samples_duration_in_common_frame / + stats->concurrent_execs : + 0.0; + igt_info("[%s] Throughput = %.4f execs/s mean duration=%.4fms nsamples=%d\n", + data[i].subm.id, stats->concurrent_rate, stats->concurrent_mean * 1e-6, + stats->concurrent_execs); + } +} + +static void log_sample_values(char *id, struct subm_stats *stats, + double comparison_mean, double outlier_treshold) +{ + const uint64_t *values = stats->samples.values_u64; + unsigned int n = stats->samples.n_values; + char buffer[2048]; + char *p = buffer, *pend = buffer + sizeof(buffer); + unsigned int i; + const unsigned int edge_items = 3; + bool is_outlier; + double tolerance = outlier_treshold * comparison_mean; + + p += snprintf(p, pend - p, + "[%s] start=%f end=%f nsamples=%u comparison_mean=%.2fms\n", + id, stats->start_timestamp * 1e-9, stats->end_timestamp * 1e-9, n, + comparison_mean * 1e-6); + + for (i = 0; i < n && p < pend; ++i) { + is_outlier = fabs(values[i] - comparison_mean) > tolerance; + + if (n <= 2 * edge_items || i < edge_items || + i >= n - edge_items || is_outlier) { + if (is_outlier) { + double pct_diff = + 100 * + (comparison_mean ? + (values[i] - comparison_mean) / + comparison_mean : + 1.0); + + p += snprintf(p, pend - p, + "%0.2f @%d Pct Diff %0.2f%%\n", + values[i] * 1e-6, i, + pct_diff); + } else { + p += snprintf(p, pend - p, "%0.2f\n", + values[i] * 1e-6); + } + } + + if (i == edge_items && n > 2 * edge_items) + p += snprintf(p, pend - p, "...\n"); + } + + igt_debug("%s\n", buffer); +} + +#define MIN_NUM_REPEATS 25 +#define MIN_EXEC_QUANTUM_MS 8 +#define MAX_EXEC_QUANTUM_MS 32 +#define MIN_JOB_DURATION_MS 16 +#define JOB_TIMEOUT_MS 5000 +#define MAX_TOTAL_DURATION_MS 15000 +#define PREFERRED_TOTAL_DURATION_MS 10000 +#define MAX_PREFERRED_REPEATS 100 + +struct job_sched_params { + int duration_ms; + int num_repeats; + struct vf_sched_params sched_params; +}; + +static int calculate_job_duration_ms(int execution_ms) +{ + return execution_ms * 2 > MIN_JOB_DURATION_MS ? execution_ms * 2 : + MIN_JOB_DURATION_MS; +} + +static bool compute_max_exec_quantum_ms(struct job_sched_params *params, + int num_threads) +{ + for (int test_execution_ms = MAX_EXEC_QUANTUM_MS; + test_execution_ms >= MIN_EXEC_QUANTUM_MS; test_execution_ms--) { + int test_duration_ms = + calculate_job_duration_ms(test_execution_ms); + int max_delay_ms = (num_threads - 1) * test_execution_ms; + + /* + * Check if the job can complete within JOB_TIMEOUT_MS, + * including the maximum scheduling delay + */ + if (test_duration_ms + max_delay_ms <= JOB_TIMEOUT_MS) { + int estimated_num_repeats = + MAX_TOTAL_DURATION_MS / + (num_threads * test_duration_ms); + + if (estimated_num_repeats >= MIN_NUM_REPEATS) { + params->sched_params.exec_quantum_ms = test_execution_ms; + return true; + } + } + } + return false; +} + +static void adjust_num_repeats(struct job_sched_params *params, int num_threads) +{ + int preferred_max_repeats = PREFERRED_TOTAL_DURATION_MS / + (num_threads * params->duration_ms); + int optimal_repeats = min(preferred_max_repeats, MAX_PREFERRED_REPEATS); + + params->num_repeats = max(optimal_repeats, MIN_NUM_REPEATS); +} + +static struct job_sched_params +prepare_job_sched_params(int num_threads, const struct subm_opts *opts) +{ + struct job_sched_params params = { MIN_NUM_REPEATS, + MIN_JOB_DURATION_MS, + { MIN_EXEC_QUANTUM_MS, + MIN_EXEC_QUANTUM_MS * 2000 } }; + + if (opts->exec_quantum_ms || opts->preempt_timeout_us) { + if (opts->exec_quantum_ms) + params.sched_params.exec_quantum_ms = + opts->exec_quantum_ms; + if (opts->preempt_timeout_us) + params.sched_params.preempt_timeout_us = + opts->preempt_timeout_us; + } else { + if (igt_debug_on(!compute_max_exec_quantum_ms(¶ms, num_threads))) + return params; + + /* + * After computing a feasible max_exec_quantum_ms, + * select a random exec_quantum_ms within the new range + */ + params.sched_params.exec_quantum_ms = + MIN_EXEC_QUANTUM_MS + + rand() % (params.sched_params.exec_quantum_ms - + MIN_EXEC_QUANTUM_MS + 1); + params.sched_params.preempt_timeout_us = + params.sched_params.exec_quantum_ms * 2000; + } + params.duration_ms = + calculate_job_duration_ms(params.sched_params.exec_quantum_ms); + + adjust_num_repeats(¶ms, num_threads); + + return params; +} + +/** + * SUBTEST: equal-throughput + * Description: + * Check all VFs with same scheduling settings running same workload + * achieve the same throughput. + */ +static void throughput_ratio(int pf_fd, int num_vfs, const struct subm_opts *opts) +{ + struct subm_set set_ = {}, *set = &set_; + uint8_t vf_ids[num_vfs + 1 /*PF*/]; + struct job_sched_params job_sched_params = prepare_job_sched_params(num_vfs + 1, opts); + + igt_info("eq=%ums pt=%uus duration=%ums repeats=%d num_vfs=%d\n", + job_sched_params.sched_params.exec_quantum_ms, + job_sched_params.sched_params.preempt_timeout_us, + job_sched_params.duration_ms, job_sched_params.num_repeats, + num_vfs + 1); + + init_vf_ids(vf_ids, ARRAY_SIZE(vf_ids), + &(struct init_vf_ids_opts){ .shuffle = true, + .shuffle_pf = true }); + xe_sriov_require_default_scheduling_attributes(pf_fd); + /* enable VFs */ + igt_sriov_disable_driver_autoprobe(pf_fd); + igt_sriov_enable_vfs(pf_fd, num_vfs); + /* set scheduling params (PF and VFs) */ + set_vfs_scheduling_params(pf_fd, num_vfs, &job_sched_params.sched_params); + /* probe VFs */ + igt_sriov_enable_driver_autoprobe(pf_fd); + for (int vf = 1; vf <= num_vfs; ++vf) + igt_sriov_bind_vf_drm_driver(pf_fd, vf); + + /* init subm_set */ + subm_set_alloc_data(set, num_vfs + 1 /*PF*/); + subm_set_init_sync_method(set, opts->sync_method); + + for (int n = 0; n < set->ndata; ++n) { + int vf_fd = + vf_ids[n] ? + igt_sriov_open_vf_drm_device(pf_fd, vf_ids[n]) : + drm_reopen_driver(pf_fd); + + igt_assert_fd(vf_fd); + set->data[n].opts = opts; + subm_init(&set->data[n].subm, vf_fd, vf_ids[n], 0, + xe_engine(vf_fd, 0)->instance); + subm_workload_init(&set->data[n].subm, + &(struct subm_work_desc){ + .duration_ms = job_sched_params.duration_ms, + .preempt = true, + .repeats = job_sched_params.num_repeats }); + igt_stats_init_with_size(&set->data[n].stats.samples, + set->data[n].subm.work.repeats); + if (set->sync_method == SYNC_BARRIER) + set->data[n].barrier = &set->barrier; + } + + /* dispatch spinners, wait for results */ + subm_set_dispatch_and_wait_threads(set); + + /* verify results */ + compute_common_time_frame_stats(set); + for (int n = 0; n < set->ndata; ++n) { + struct subm_stats *stats = &set->data[n].stats; + const double ref_rate = set->data[0].stats.concurrent_rate; + + igt_assert_eq(0, stats->num_early_finish); + if (!check_within_epsilon(stats->concurrent_rate, ref_rate, + opts->outlier_treshold)) { + log_sample_values(set->data[0].subm.id, + &set->data[0].stats, + set->data[0].stats.concurrent_mean, + opts->outlier_treshold); + log_sample_values(set->data[n].subm.id, stats, + set->data[0].stats.concurrent_mean, + opts->outlier_treshold); + igt_assert_f(false, + "Throughput=%.3f execs/s not within +-%.0f%% of expected=%.3f execs/s\n", + stats->concurrent_rate, + opts->outlier_treshold * 100, ref_rate); + } + } + + /* cleanup */ + subm_set_fini(set); + set_vfs_scheduling_params(pf_fd, num_vfs, &(struct vf_sched_params){}); + igt_sriov_disable_vfs(pf_fd); +} + +static struct subm_opts subm_opts = { + .sync_method = SYNC_BARRIER, + .outlier_treshold = 0.1, +}; + +static bool extended_scope; + +static int subm_opts_handler(int opt, int opt_index, void *data) +{ + switch (opt) { + case 'e': + extended_scope = true; + break; + case 's': + subm_opts.sync_method = atoi(optarg); + igt_info("Sync method: %d\n", subm_opts.sync_method); + break; + case 'q': + subm_opts.exec_quantum_ms = atoi(optarg); + igt_info("Execution quantum ms: %u\n", subm_opts.exec_quantum_ms); + break; + case 'p': + subm_opts.preempt_timeout_us = atoi(optarg); + igt_info("Preempt timeout us: %u\n", subm_opts.preempt_timeout_us); + break; + case 't': + subm_opts.outlier_treshold = atoi(optarg) / 100.0; + igt_info("Outlier threshold: %.2f\n", subm_opts.outlier_treshold); + break; + default: + return IGT_OPT_HANDLER_ERROR; + } + + return IGT_OPT_HANDLER_SUCCESS; +} + +static const struct option long_opts[] = { + { .name = "extended", .has_arg = false, .val = 'e', }, + { .name = "sync", .has_arg = true, .val = 's', }, + { .name = "threshold", .has_arg = true, .val = 't', }, + { .name = "eq_ms", .has_arg = true, .val = 'q', }, + { .name = "pt_us", .has_arg = true, .val = 'p', }, + {} +}; + +static const char help_str[] = + " --extended\tRun the extended test scope\n" + " --sync\tThreads synchronization method: 0 - none 1 - barrier (Default 1)\n" + " --threshold\tSample outlier threshold (Default 0.1)\n" + " --eq_ms\texec_quantum_ms\n" + " --pt_us\tpreempt_timeout_us\n"; + +igt_main_args("s:e:p:", long_opts, help_str, subm_opts_handler, NULL) +{ + int pf_fd; + bool autoprobe; + + igt_fixture { + pf_fd = drm_open_driver(DRIVER_XE); + igt_require(igt_sriov_is_pf(pf_fd)); + igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0); + autoprobe = igt_sriov_is_driver_autoprobe_enabled(pf_fd); + xe_sriov_require_default_scheduling_attributes(pf_fd); + } + + igt_describe("Check VFs achieve equal throughput"); + igt_subtest_with_dynamic("equal-throughput") { + if (extended_scope) + for_each_sriov_num_vfs(pf_fd, vf) + igt_dynamic_f("numvfs-%d", vf) + throughput_ratio(pf_fd, vf, &subm_opts); + + for_random_sriov_vf(pf_fd, vf) + igt_dynamic("numvfs-random") + throughput_ratio(pf_fd, vf, &subm_opts); + } + + igt_fixture { + set_vfs_scheduling_params(pf_fd, igt_sriov_get_total_vfs(pf_fd), + &(struct vf_sched_params){}); + igt_sriov_disable_vfs(pf_fd); + /* abort to avoid execution of next tests with enabled VFs */ + igt_abort_on_f(igt_sriov_get_enabled_vfs(pf_fd) > 0, + "Failed to disable VF(s)"); + autoprobe ? igt_sriov_enable_driver_autoprobe(pf_fd) : + igt_sriov_disable_driver_autoprobe(pf_fd); + igt_abort_on_f(autoprobe != igt_sriov_is_driver_autoprobe_enabled(pf_fd), + "Failed to restore sriov_drivers_autoprobe value\n"); + drm_close_driver(pf_fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index 33dffad31..c8868d5ab 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -318,6 +318,7 @@ intel_xe_progs = [ 'xe_spin_batch', 'xe_sriov_auto_provisioning', 'xe_sriov_flr', + 'xe_sriov_scheduling', 'xe_sysfs_defaults', 'xe_sysfs_preempt_timeout', 'xe_sysfs_scheduler', -- 2.31.1 From marcin.bernatowicz at linux.intel.com Mon Jan 20 20:34:45 2025 From: marcin.bernatowicz at linux.intel.com (Marcin Bernatowicz) Date: Mon, 20 Jan 2025 21:34:45 +0100 Subject: [PATCH i-g-t 4/4] tests/xe_sriov_scheduling: nonpreempt-engine-resets subtest In-Reply-To: <20250120203445.16285-1-marcin.bernatowicz@linux.intel.com> References: <20250120203445.16285-1-marcin.bernatowicz@linux.intel.com> Message-ID: <20250120203445.16285-5-marcin.bernatowicz@linux.intel.com> Verify the occurrence of engine resets when non-preemptible workloads surpass the combined duration of execution quantum and preemption timeout. Signed-off-by: Marcin Bernatowicz Cc: Adam Miszczak Cc: Jakub Kolakowski Cc: Lukasz Laguna Cc: Micha? Wajdeczko Cc: Micha? Winiarski Cc: Narasimha C V Cc: Piotr Pi?rkowski Cc: Satyanarayana K V P Cc: Tomasz Lis --- tests/intel/xe_sriov_scheduling.c | 126 ++++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) diff --git a/tests/intel/xe_sriov_scheduling.c b/tests/intel/xe_sriov_scheduling.c index 20ec15b22..5999c3f98 100644 --- a/tests/intel/xe_sriov_scheduling.c +++ b/tests/intel/xe_sriov_scheduling.c @@ -605,6 +605,119 @@ static void throughput_ratio(int pf_fd, int num_vfs, const struct subm_opts *opt igt_sriov_disable_vfs(pf_fd); } +static unsigned int select_random_exec_quantum_value(unsigned int min, + unsigned int num_vfs, + unsigned int job_timeout) +{ + int max = min(64u, job_timeout / (3 * (num_vfs + 1))); + + igt_skip_on(max <= min); + /* random between min (inclusive) and max (exclusive) */ + return rand() % (max - min) + min; +} + +static struct vf_sched_params prepare_vf_sched_params(int num_vfs, + const struct subm_opts *opts) +{ + struct vf_sched_params params = {}; + + if (opts->exec_quantum_ms || opts->preempt_timeout_us) { + if (opts->exec_quantum_ms) + params.exec_quantum_ms = opts->exec_quantum_ms; + if (opts->preempt_timeout_us) + params.preempt_timeout_us = opts->preempt_timeout_us; + } else { + params.exec_quantum_ms = + select_random_exec_quantum_value(8, num_vfs, 5000); + params.preempt_timeout_us = 2 * params.exec_quantum_ms * 1000; + } + + return params; +} + +/** + * SUBTEST: nonpreempt-engine-resets + * Description: + * Check all VFs running a non-preemptible workload with a duration + * exceeding the sum of its execution quantum and preemption timeout, + * will experience engine reset due to preemption timeout. + */ +static void nonpreempt_engine_resets(int pf_fd, int num_vfs, + const struct subm_opts *opts) +{ + struct subm_set set_ = {}, *set = &set_; + struct vf_sched_params vf_sched_params = + prepare_vf_sched_params(num_vfs, opts); + uint64_t duration_ms = 2 * vf_sched_params.exec_quantum_ms + + vf_sched_params.preempt_timeout_us / 1000; + int preemptible_end = 1; + uint8_t vf_ids[num_vfs + 1 /*PF*/]; + + igt_info("eq=%ums pt=%uus duration=%lums num_vfs=%d\n", + vf_sched_params.exec_quantum_ms, + vf_sched_params.preempt_timeout_us, duration_ms, num_vfs); + igt_assert(duration_ms); + igt_assert_lt(duration_ms, 2000); + + init_vf_ids(vf_ids, ARRAY_SIZE(vf_ids), + &(struct init_vf_ids_opts){ .shuffle = true, + .shuffle_pf = true }); + xe_sriov_require_default_scheduling_attributes(pf_fd); + /* enable VFs */ + igt_sriov_disable_driver_autoprobe(pf_fd); + igt_sriov_enable_vfs(pf_fd, num_vfs); + /* set scheduling params (PF and VFs) */ + set_vfs_scheduling_params(pf_fd, num_vfs, &vf_sched_params); + /* probe VFs */ + igt_sriov_enable_driver_autoprobe(pf_fd); + for (int vf = 1; vf <= num_vfs; ++vf) + igt_sriov_bind_vf_drm_driver(pf_fd, vf); + + /* init subm_set */ + subm_set_alloc_data(set, num_vfs + 1 /*PF*/); + subm_set_init_sync_method(set, opts->sync_method); + + for (int n = 0; n < set->ndata; ++n) { + int vf_fd = + vf_ids[n] ? + igt_sriov_open_vf_drm_device(pf_fd, vf_ids[n]) : + drm_reopen_driver(pf_fd); + + igt_assert_fd(vf_fd); + set->data[n].opts = opts; + subm_init(&set->data[n].subm, vf_fd, vf_ids[n], 0, + xe_engine(vf_fd, 0)->instance); + subm_workload_init(&set->data[n].subm, + &(struct subm_work_desc){ + .duration_ms = duration_ms, + .preempt = (n < preemptible_end), + .repeats = 2000 / duration_ms }); + igt_stats_init_with_size(&set->data[n].stats.samples, + set->data[n].subm.work.repeats); + if (set->sync_method == SYNC_BARRIER) + set->data[n].barrier = &set->barrier; + } + + /* dispatch spinners, wait for results */ + subm_set_dispatch_and_wait_threads(set); + + /* verify results */ + for (int n = 0; n < set->ndata; ++n) { + if (n < preemptible_end) { + igt_assert_eq(0, set->data[n].stats.num_early_finish); + igt_assert_eq(set->data[n].subm.work.repeats, + set->data[n].stats.samples.n_values); + } else { + igt_assert_eq(1, set->data[n].stats.num_early_finish); + } + } + + /* cleanup */ + subm_set_fini(set); + set_vfs_scheduling_params(pf_fd, num_vfs, &(struct vf_sched_params){}); + igt_sriov_disable_vfs(pf_fd); +} + static struct subm_opts subm_opts = { .sync_method = SYNC_BARRIER, .outlier_treshold = 0.1, @@ -682,6 +795,19 @@ igt_main_args("s:e:p:", long_opts, help_str, subm_opts_handler, NULL) throughput_ratio(pf_fd, vf, &subm_opts); } + igt_describe("Check VFs experience engine reset due to preemption timeout"); + igt_subtest_with_dynamic("nonpreempt-engine-resets") { + if (extended_scope) + for_each_sriov_num_vfs(pf_fd, vf) + igt_dynamic_f("numvfs-%d", vf) + nonpreempt_engine_resets(pf_fd, vf, + &subm_opts); + + for_random_sriov_vf(pf_fd, vf) + igt_dynamic("numvfs-random") + nonpreempt_engine_resets(pf_fd, vf, &subm_opts); + } + igt_fixture { set_vfs_scheduling_params(pf_fd, igt_sriov_get_total_vfs(pf_fd), &(struct vf_sched_params){}); -- 2.31.1 From patchwork at emeril.freedesktop.org Mon Jan 20 21:42:03 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 21:42:03 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/kms=5Faddfb=5Fbasic?= =?utf-8?q?=3A_Fix_addfb25=5Ftests_to_not_require_intel?= In-Reply-To: <20250120171021.1029868-1-george.zhang@amd.com> References: <20250120171021.1029868-1-george.zhang@amd.com> Message-ID: <173740932320.2315526.6559945221855950613@b555e5b46a47> == Series Details == Series: tests/kms_addfb_basic: Fix addfb25_tests to not require intel URL : https://patchwork.freedesktop.org/series/143739/ State : failure == Summary == CI Bug Log - changes from XEIGT_8199_full -> XEIGTPW_12468_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12468_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12468_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_12468_full: ### IGT changes ### #### Possible regressions #### * igt at kms_psr@fbc-psr2-primary-render: - shard-lnl: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-1/igt at kms_psr@fbc-psr2-primary-render.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-1/igt at kms_psr@fbc-psr2-primary-render.html Known issues ------------ Here are the changes found in XEIGTPW_12468_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_getversion@basic: - shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#3440]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at core_getversion@basic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at core_getversion@basic.html * igt at core_hotunplug@unplug-rescan: - shard-bmg: [PASS][5] -> [SKIP][6] ([Intel XE#1885]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at core_hotunplug@unplug-rescan.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at core_hotunplug@unplug-rescan.html * igt at fbdev@info: - shard-bmg: [PASS][7] -> [SKIP][8] ([Intel XE#2134]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at fbdev@info.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at fbdev@info.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1125]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-1/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@bad-pitch-32: - shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_addfb_basic@bad-pitch-32.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_addfb_basic@bad-pitch-32.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: NOTRUN -> [FAIL][12] ([Intel XE#3719]) +3 other tests fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-3/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-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#3767]) +23 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-434/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_big_fb@linear-64bpp-rotate-0: - shard-lnl: NOTRUN -> [DMESG-WARN][14] ([Intel XE#1725]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-1/igt at kms_big_fb@linear-64bpp-rotate-0.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#316]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-435/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407]) +5 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-1/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +9 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1428]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-1/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +5 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-2/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#367]) +6 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-434/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2191]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-7/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2191]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-436/igt at kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1512]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-4/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +28 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-432/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +10 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-3/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#787]) +132 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-466/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs at pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-4/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs at pipe-b-dp-2.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][28] -> [INCOMPLETE][29] ([Intel XE#3862]) +1 other test incomplete [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][30] -> [ABORT][31] ([Intel XE#2625]) +1 other test abort [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#3432]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-4/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-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]) +21 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#2907]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-434/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 at pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#3113]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-a-hdmi-a-6.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-463/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-4-tiled-dg2-rc-ccs at pipe-d-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][38] ([Intel XE#1727]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-432/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-d-hdmi-a-2.html * igt at kms_cdclk@mode-transition at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#314]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-435/igt at kms_cdclk@mode-transition at pipe-d-dp-4.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#306]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-435/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_color@ctm-negative: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#306]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-8/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#373]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-434/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +5 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-3/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#307]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-7/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][45] ([Intel XE#1178]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-436/igt at kms_content_protection@legacy at pipe-a-dp-4.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][46] ([Intel XE#1178]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_content_protection@lic-type-0 at pipe-a-dp-2.html * igt at kms_content_protection@type1: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#3278]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-3/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][48] ([Intel XE#1188]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#308]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-435/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#2321]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-4/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-sliding-128x42: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1424]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-6/igt at kms_cursor_crc@cursor-sliding-128x42.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_8199/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#309]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-7/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#323]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-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][56] ([Intel XE#3383]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-6/igt at kms_display_modes@extended-mode-basic.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#701]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-435/igt at kms_feature_discovery@chamelium.html - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#701]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-6/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#702]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-8/igt at kms_feature_discovery@display-2x.html * igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3: - shard-bmg: [PASS][60] -> [FAIL][61] ([Intel XE#3321]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at cd-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank at cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][62] -> [FAIL][63] ([Intel XE#301]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at cd-hdmi-a6-dp4.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-modeset: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1421]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-4/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-suspend-interruptible at cd-hdmi-a2-dp2: - shard-dg2-set2: NOTRUN -> [ABORT][65] ([Intel XE#2625]) +1 other test abort [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-432/igt at kms_flip@2x-flip-vs-suspend-interruptible at cd-hdmi-a2-dp2.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#2423]) +94 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb-recreate.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][68] ([Intel XE#301] / [Intel XE#3321]) +2 other tests fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][69] ([Intel XE#301]) +2 other tests fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_flip@flip-vs-expired-vblank at c-hdmi-a6.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2293]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-2/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-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1401]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-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]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1397] / [Intel XE#1745]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/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][74] ([Intel XE#1397]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/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-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2380]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#455]) +11 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#651]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-7/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#651]) +21 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-436/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-dg2-set2: [PASS][79] -> [SKIP][80] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#656]) +24 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#653]) +21 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [PASS][83] -> [FAIL][84] ([Intel XE#616]) +1 other test fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_plane_cursor@overlay at pipe-a-hdmi-a-6-size-64.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][85] ([Intel XE#616]) +2 other tests fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-434/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_scaling@intel-max-src-size: - shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#3007]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_plane_scaling@intel-max-src-size.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/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][88] ([Intel XE#2763]) +11 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/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-b: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#2763]) +5 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-436/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-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/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-75 at pipe-a: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2763]) +15 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-3/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a.html * igt at kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#870]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-463/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2938]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#1129]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-463/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@i2c: - shard-bmg: [PASS][95] -> [SKIP][96] ([Intel XE#2446]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_pm_rpm@i2c.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_pm_rpm@i2c.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1439] / [Intel XE#3141]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-3/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1489]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#2893]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-6/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#1122]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-435/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-psr2-sprite-render: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2136] / [Intel XE#2351]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_psr@fbc-psr2-sprite-render.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1406]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-2/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2850] / [Intel XE#929]) +12 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-436/igt at kms_psr@psr-dpms.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#3414]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-435/igt at kms_rotation_crc@primary-rotation-90.html - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-1/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1435]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-3/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#362]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-6/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][108] -> [FAIL][109] ([Intel XE#2159]) +1 other test fail [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-1/igt at kms_vrr@cmrr at pipe-a-edp-1.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-8/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2168]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#756]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-5/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#3889]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-463/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#3889]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-1/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug_online@preempt-breakpoint: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#2905]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-1/igt at xe_eudebug_online@preempt-breakpoint.html * igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2905]) +6 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-463/igt at xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#688]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-4/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt at xe_exec_balancer@twice-parallel-userptr-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#1130]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at xe_exec_balancer@twice-parallel-userptr-rebind.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [PASS][118] -> [SKIP][119] ([Intel XE#1392]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#1392]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-1/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_exec_basic@no-exec-bindexecqueue-rebind: - shard-dg2-set2: [PASS][121] -> [SKIP][122] ([Intel XE#1130]) +16 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_exec_basic@no-exec-bindexecqueue-rebind.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at xe_exec_basic@no-exec-bindexecqueue-rebind.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#288]) +20 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-466/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_live_ktest@xe_bo: - shard-bmg: [PASS][124] -> [SKIP][125] ([Intel XE#1192]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at xe_live_ktest@xe_bo.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-2/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][126] ([Intel XE#1999]) +2 other tests fail [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#4045]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-4/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#512]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-432/igt at xe_mmap@small-bar.html * igt at xe_module_load@many-reload: - shard-bmg: [PASS][129] -> [FAIL][130] ([Intel XE#3546]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at xe_module_load@many-reload.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at xe_module_load@many-reload.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-463/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#977]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-432/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2838] / [Intel XE#979]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-434/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@write: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1061]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at xe_peer2peer@write.html - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#1061]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-8/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2284] / [Intel XE#366]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at xe_pm@d3cold-mmap-vram.html - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#2284] / [Intel XE#366]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-4/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1948]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-5/igt at xe_pm@d3hot-mmap-vram.html * igt at xe_pm@s3-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#584]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-3/igt at xe_pm@s3-vm-bind-unbind-all.html * igt at xe_pm@s4-d3hot-basic-exec: - shard-dg2-set2: NOTRUN -> [ABORT][140] ([Intel XE#1358]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-432/igt at xe_pm@s4-d3hot-basic-exec.html * igt at xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [PASS][141] -> [ABORT][142] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-5/igt at xe_pm@s4-vm-bind-unbind-all.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-2/igt at xe_pm@s4-vm-bind-unbind-all.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#579]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-466/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#944]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-435/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#944]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-7/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_spin_batch@spin-all: - shard-bmg: [PASS][146] -> [SKIP][147] ([Intel XE#1130]) +211 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at xe_spin_batch@spin-all.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at xe_spin_batch@spin-all.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#3342]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-436/igt at xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt at core_hotunplug@hotrebind: - shard-bmg: [SKIP][149] ([Intel XE#1885]) -> [PASS][150] +1 other test pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at core_hotunplug@hotrebind.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-4/igt at core_hotunplug@hotrebind.html * igt at core_setmaster@master-drop-set-root: - shard-bmg: [FAIL][151] ([Intel XE#3249]) -> [PASS][152] [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at core_setmaster@master-drop-set-root.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-3/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@pan: - shard-bmg: [SKIP][153] ([Intel XE#2134]) -> [PASS][154] +1 other test pass [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at fbdev@pan.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at fbdev@pan.html * igt at kms_addfb_basic@unused-pitches: - shard-dg2-set2: [SKIP][155] ([Intel XE#2423] / [i915#2575]) -> [PASS][156] +18 other tests pass [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_addfb_basic@unused-pitches.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-466/igt at kms_addfb_basic@unused-pitches.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [SKIP][157] ([Intel XE#2136]) -> [PASS][158] +19 other tests pass [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@linear-16bpp-rotate-180.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-4/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][159] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][160] +1 other test pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-3/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][161] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-4/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [SKIP][163] ([Intel XE#2136]) -> [PASS][164] +4 other tests pass [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [SKIP][165] ([Intel XE#2291]) -> [PASS][166] +3 other tests pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-4/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-bmg: [SKIP][167] ([Intel XE#2423]) -> [PASS][168] +70 other tests pass [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-3/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][169] ([Intel XE#2425]) -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-8/igt at kms_display_modes@extended-mode-basic.html * igt at kms_draw_crc@fill-fb: - shard-dg2-set2: [SKIP][171] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_draw_crc@fill-fb.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-434/igt at kms_draw_crc@fill-fb.html * igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][173] ([Intel XE#301]) -> [PASS][174] +2 other tests pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/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-expired-vblank at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][175] -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-bmg: [SKIP][177] ([Intel XE#2316]) -> [PASS][178] +3 other tests pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-interruptible.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][179] ([Intel XE#886]) -> [PASS][180] +4 other tests pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_flip@blocking-wf_vblank.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-8/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@plain-flip-fb-recreate: - shard-bmg: [FAIL][181] ([Intel XE#2882]) -> [PASS][182] +1 other test pass [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_flip@plain-flip-fb-recreate.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-dg2-set2: [ABORT][183] ([Intel XE#2625]) -> [PASS][184] +1 other test pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_plane@plane-panning-bottom-right-suspend.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-435/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_multiple@tiling-none: - shard-bmg: [SKIP][185] ([Intel XE#3007]) -> [PASS][186] +13 other tests pass [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_plane_multiple@tiling-none.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-3/igt at kms_plane_multiple@tiling-none.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [SKIP][187] ([Intel XE#2446]) -> [PASS][188] +3 other tests pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@basic-pci-d3-state.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-4/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_psr@psr2-primary-render: - shard-lnl: [FAIL][189] -> [PASS][190] +1 other test pass [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_psr@psr2-primary-render.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-lnl-6/igt at kms_psr@psr2-primary-render.html * igt at kms_rmfb@close-fd at pipe-d-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][191] -> [PASS][192] +1 other test pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_rmfb@close-fd at pipe-d-hdmi-a-6.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-466/igt at kms_rmfb@close-fd at pipe-d-hdmi-a-6.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-dg2-set2: [SKIP][193] ([Intel XE#1392]) -> [PASS][194] +3 other tests pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-463/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html * igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate: - shard-bmg: [SKIP][195] ([Intel XE#1130]) -> [PASS][196] +177 other tests pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [ABORT][197] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][198] +1 other test pass [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_prime_self_import@basic-with_fd_dup: - shard-dg2-set2: [SKIP][199] ([Intel XE#1130]) -> [PASS][200] +27 other tests pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_prime_self_import@basic-with_fd_dup.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-434/igt at xe_prime_self_import@basic-with_fd_dup.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][201] ([Intel XE#2233]) -> [SKIP][202] ([Intel XE#2423]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-bmg: [SKIP][203] ([Intel XE#3768]) -> [SKIP][204] ([Intel XE#2423]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][205] ([Intel XE#2423]) -> [SKIP][206] ([Intel XE#2370]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-4/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-bmg: [SKIP][207] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][208] ([Intel XE#2327]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@linear-16bpp-rotate-270.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: [SKIP][209] ([Intel XE#2327]) -> [SKIP][210] ([Intel XE#2136]) +3 other tests skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_big_fb@linear-32bpp-rotate-270.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_big_fb@linear-32bpp-rotate-270.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: [SKIP][211] ([Intel XE#2136]) -> [SKIP][212] ([Intel XE#2327]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@linear-32bpp-rotate-90.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][213] ([Intel XE#2327]) -> [SKIP][214] ([Intel XE#2136] / [Intel XE#2231]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-dg2-set2: [SKIP][215] ([Intel XE#316]) -> [SKIP][216] ([Intel XE#2136]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-16bpp-rotate-180: - shard-bmg: [SKIP][217] ([Intel XE#1124]) -> [SKIP][218] ([Intel XE#2136]) +10 other tests skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_big_fb@y-tiled-16bpp-rotate-180.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_big_fb@y-tiled-16bpp-rotate-180.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][219] ([Intel XE#2136]) -> [SKIP][220] ([Intel XE#607]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-4/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][221] ([Intel XE#610]) -> [SKIP][222] ([Intel XE#2136]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][223] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][224] ([Intel XE#1124]) +2 other tests skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-3/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html - shard-dg2-set2: [SKIP][225] ([Intel XE#2136]) -> [SKIP][226] ([Intel XE#1124]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-466/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][227] ([Intel XE#2136]) -> [SKIP][228] ([Intel XE#1124]) +10 other tests skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-8/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][229] ([Intel XE#607]) -> [SKIP][230] ([Intel XE#2136]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-bmg: [SKIP][231] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][232] ([Intel XE#2423]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][233] ([Intel XE#2423]) -> [SKIP][234] ([Intel XE#2314] / [Intel XE#2894]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][235] ([Intel XE#2423]) -> [SKIP][236] ([Intel XE#367]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][237] ([Intel XE#3007]) -> [SKIP][238] ([Intel XE#367]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-4/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html - shard-dg2-set2: [SKIP][239] ([Intel XE#2423] / [i915#2575]) -> [SKIP][240] ([Intel XE#367]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-435/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-3-displays-1920x1080p: - shard-bmg: [SKIP][241] ([Intel XE#367]) -> [SKIP][242] ([Intel XE#2423]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_bw@linear-tiling-3-displays-1920x1080p.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_bw@linear-tiling-3-displays-1920x1080p.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][243] ([Intel XE#2887]) -> [SKIP][244] ([Intel XE#2136]) +18 other tests skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-dg2-set2: [SKIP][245] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][246] ([Intel XE#2136]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_ccs@bad-aux-stride-yf-tiled-ccs.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][247] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][248] ([Intel XE#2887]) +3 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][249] ([Intel XE#2887]) -> [SKIP][250] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs: - shard-dg2-set2: [SKIP][251] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][252] ([Intel XE#455] / [Intel XE#787]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-466/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][253] ([Intel XE#3432]) -> [SKIP][254] ([Intel XE#2136]) +2 other tests skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][255] ([Intel XE#2136]) -> [SKIP][256] ([Intel XE#3432]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][257] ([Intel XE#2136]) -> [SKIP][258] ([Intel XE#2887]) +16 other tests skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-4/igt at kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][259] ([Intel XE#1727] / [Intel XE#3124]) -> [INCOMPLETE][260] ([Intel XE#1727]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-432/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-cc: - shard-dg2-set2: [DMESG-WARN][261] ([Intel XE#1727]) -> [INCOMPLETE][262] ([Intel XE#1727] / [Intel XE#2692]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-bmg: [SKIP][263] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][264] ([Intel XE#2136]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-ccs: - shard-dg2-set2: [SKIP][265] ([Intel XE#2136]) -> [SKIP][266] ([Intel XE#455] / [Intel XE#787]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html * igt at kms_cdclk@plane-scaling: - shard-bmg: [SKIP][267] ([Intel XE#2724]) -> [SKIP][268] ([Intel XE#2136]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_cdclk@plane-scaling.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][269] ([Intel XE#2325]) -> [SKIP][270] ([Intel XE#2423]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_chamelium_color@ctm-green-to-red.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_color@ctm-negative: - shard-bmg: [SKIP][271] ([Intel XE#2423]) -> [SKIP][272] ([Intel XE#2325]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_color@ctm-negative.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at kms_chamelium_color@ctm-negative.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][273] ([Intel XE#2423]) -> [SKIP][274] ([Intel XE#2252]) +13 other tests skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-bmg: [SKIP][275] ([Intel XE#2252]) -> [SKIP][276] ([Intel XE#2423]) +13 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: [SKIP][277] ([Intel XE#3007]) -> [SKIP][278] ([Intel XE#2252]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_chamelium_hpd@dp-hpd-storm.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_chamelium_hpd@dp-hpd-storm.html - shard-dg2-set2: [SKIP][279] ([Intel XE#2423] / [i915#2575]) -> [SKIP][280] ([Intel XE#373]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_chamelium_hpd@dp-hpd-storm.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-435/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_content_protection@atomic: - shard-bmg: [SKIP][281] ([Intel XE#2341]) -> [SKIP][282] ([Intel XE#2423]) +3 other tests skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_content_protection@atomic.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][283] ([Intel XE#2423]) -> [SKIP][284] ([Intel XE#2390]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@dp-mst-type-0.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-2/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][285] ([Intel XE#2390]) -> [SKIP][286] ([Intel XE#2423]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_content_protection@dp-mst-type-1.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-0: - shard-bmg: [SKIP][287] ([Intel XE#2423]) -> [FAIL][288] ([Intel XE#1178]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@lic-type-0.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@uevent: - shard-bmg: [SKIP][289] ([Intel XE#2423]) -> [FAIL][290] ([Intel XE#1188]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@uevent.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: [SKIP][291] ([Intel XE#2320]) -> [SKIP][292] ([Intel XE#2423]) +6 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_cursor_crc@cursor-offscreen-32x32.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-bmg: [SKIP][293] ([Intel XE#3007]) -> [SKIP][294] ([Intel XE#2320]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_cursor_crc@cursor-random-32x10.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-8/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: [SKIP][295] ([Intel XE#2423]) -> [SKIP][296] ([Intel XE#2320]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-4/igt at kms_cursor_crc@cursor-rapid-movement-32x10.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-bmg: [SKIP][297] ([Intel XE#2423]) -> [SKIP][298] ([Intel XE#2321]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-sliding-512x170: - shard-bmg: [SKIP][299] ([Intel XE#2321]) -> [SKIP][300] ([Intel XE#2423]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_cursor_crc@cursor-sliding-512x170.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x170.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: [SKIP][301] ([Intel XE#2286]) -> [SKIP][302] ([Intel XE#2423]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-bmg: [SKIP][303] ([Intel XE#2423]) -> [SKIP][304] ([Intel XE#2286]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-2/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: [SKIP][305] ([Intel XE#2136]) -> [SKIP][306] ([Intel XE#1508]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dsc@dsc-basic: - shard-bmg: [SKIP][307] ([Intel XE#2136]) -> [SKIP][308] ([Intel XE#2244]) +2 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_dsc@dsc-basic.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-8/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-bmg: [SKIP][309] ([Intel XE#2244]) -> [SKIP][310] ([Intel XE#2136] / [Intel XE#2231]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_dsc@dsc-fractional-bpp.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_dsc@dsc-fractional-bpp.html - shard-dg2-set2: [SKIP][311] ([Intel XE#455]) -> [SKIP][312] ([Intel XE#2136]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_dsc@dsc-fractional-bpp.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: [SKIP][313] ([Intel XE#2244]) -> [SKIP][314] ([Intel XE#2136]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_dsc@dsc-with-output-formats.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][315] ([Intel XE#2136]) -> [SKIP][316] ([Intel XE#455]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-466/igt at kms_dsc@dsc-with-output-formats-with-bpc.html - shard-bmg: [SKIP][317] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][318] ([Intel XE#2244]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-3/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [FAIL][319] ([Intel XE#1695]) -> [SKIP][320] ([Intel XE#2136]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_fbcon_fbt@fbc-suspend.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][321] ([Intel XE#2136]) -> [SKIP][322] ([Intel XE#776]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_fbcon_fbt@psr-suspend.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-3x: - shard-bmg: [SKIP][323] ([Intel XE#2373]) -> [SKIP][324] ([Intel XE#2423]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_feature_discovery@display-3x.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_feature_discovery@display-3x.html * igt at kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][325] ([Intel XE#2423]) -> [SKIP][326] ([Intel XE#2375]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_feature_discovery@dp-mst.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-2/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-bmg: [SKIP][327] ([Intel XE#2374]) -> [SKIP][328] ([Intel XE#2423]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_feature_discovery@psr1.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][329] -> [SKIP][330] ([Intel XE#2423]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: [SKIP][331] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][332] ([Intel XE#2136]) +5 other tests skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][333] ([Intel XE#2136]) -> [SKIP][334] ([Intel XE#2380]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][335] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][336] ([Intel XE#2293] / [Intel XE#2380]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][337] ([Intel XE#2136]) -> [SKIP][338] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-3/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: [SKIP][339] ([Intel XE#2136]) -> [SKIP][340] ([Intel XE#2311]) +25 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][341] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][342] ([Intel XE#651]) +2 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][343] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][344] ([Intel XE#2136]) +6 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html - shard-dg2-set2: [SKIP][345] ([Intel XE#2136]) -> [SKIP][346] ([Intel XE#651]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][347] ([Intel XE#2312]) -> [SKIP][348] ([Intel XE#2311]) +5 other tests skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-bmg: [SKIP][349] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][350] ([Intel XE#2311]) +4 other tests skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][351] ([Intel XE#2333]) -> [SKIP][352] ([Intel XE#2136] / [Intel XE#2231]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][353] ([Intel XE#2136]) -> [FAIL][354] ([Intel XE#2333]) +11 other tests fail [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][355] ([Intel XE#2312]) -> [FAIL][356] ([Intel XE#2333]) +2 other tests fail [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: [SKIP][357] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][358] ([Intel XE#2333]) +1 other test fail [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-tiling-linear: - shard-bmg: [FAIL][359] ([Intel XE#2333]) -> [SKIP][360] ([Intel XE#2136]) +14 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-tiling-linear.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-tiling-linear.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-bmg: [SKIP][361] ([Intel XE#2352]) -> [SKIP][362] ([Intel XE#2136]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-tiling-y.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][363] ([Intel XE#2136]) -> [SKIP][364] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][365] ([Intel XE#2311]) -> [SKIP][366] ([Intel XE#2136]) +30 other tests skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][367] ([Intel XE#2311]) -> [SKIP][368] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html - shard-dg2-set2: [SKIP][369] ([Intel XE#651]) -> [SKIP][370] ([Intel XE#2136]) +3 other tests skip [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][371] ([Intel XE#2313]) -> [SKIP][372] ([Intel XE#2136] / [Intel XE#2231]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html - shard-dg2-set2: [SKIP][373] ([Intel XE#653]) -> [SKIP][374] ([Intel XE#2136]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][375] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][376] ([Intel XE#2313]) +4 other tests skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][377] ([Intel XE#2312]) -> [SKIP][378] ([Intel XE#2136]) +7 other tests skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][379] ([Intel XE#2136]) -> [SKIP][380] ([Intel XE#653]) +3 other tests skip [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][381] ([Intel XE#2313]) -> [SKIP][382] ([Intel XE#2136]) +38 other tests skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][383] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][384] ([Intel XE#2352]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-dg2-set2: [SKIP][385] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][386] ([Intel XE#658]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][387] ([Intel XE#2350]) -> [SKIP][388] ([Intel XE#2136]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][389] ([Intel XE#2136]) -> [SKIP][390] ([Intel XE#2313]) +32 other tests skip [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][391] ([Intel XE#2312]) -> [SKIP][392] ([Intel XE#2313]) +8 other tests skip [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][393] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][394] ([Intel XE#653]) +2 other tests skip [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][395] ([Intel XE#2423]) -> [SKIP][396] ([Intel XE#2340]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_getfb@getfb2-accept-ccs.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-8/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][397] ([Intel XE#2423] / [i915#2575]) -> [SKIP][398] ([Intel XE#455]) +2 other tests skip [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_hdr@invalid-hdr.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][399] ([Intel XE#2136]) -> [SKIP][400] ([Intel XE#2934]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_joiner@basic-force-ultra-joiner.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-4/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][401] ([Intel XE#2423]) -> [SKIP][402] ([Intel XE#2501]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-8/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][403] ([Intel XE#2423]) -> [SKIP][404] ([Intel XE#2393]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_lowres@tiling-y.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_lowres@tiling-yf: - shard-bmg: [SKIP][405] ([Intel XE#2393]) -> [SKIP][406] ([Intel XE#2423]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_plane_lowres@tiling-yf.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][407] ([Intel XE#2423]) -> [SKIP][408] ([Intel XE#2493]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_multiple@tiling-yf.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][409] ([Intel XE#2571]) -> [SKIP][410] ([Intel XE#2423]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-bmg: [SKIP][411] ([Intel XE#3007]) -> [SKIP][412] ([Intel XE#2423]) +8 other tests skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-bmg: [SKIP][413] ([Intel XE#2763]) -> [SKIP][414] ([Intel XE#2423]) +3 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_plane_scaling@planes-downscale-factor-0-25.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][415] ([Intel XE#2423]) -> [SKIP][416] ([Intel XE#2763]) +3 other tests skip [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_backlight@fade: - shard-bmg: [SKIP][417] ([Intel XE#870]) -> [SKIP][418] ([Intel XE#2136]) +1 other test skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_pm_backlight@fade.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_pm_backlight@fade.html * igt at kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][419] ([Intel XE#3309]) -> [SKIP][420] ([Intel XE#2136]) [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_pm_dc@dc5-retention-flops.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_rpm@modeset-lpsp: - shard-bmg: [SKIP][421] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][422] ([Intel XE#2446]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_pm_rpm@modeset-lpsp.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_properties@crtc-properties-atomic: - shard-bmg: [SKIP][423] ([Intel XE#2423]) -> [SKIP][424] ([Intel XE#3007]) +1 other test skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_properties@crtc-properties-atomic.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_properties@crtc-properties-atomic.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][425] ([Intel XE#2136]) -> [SKIP][426] ([Intel XE#1489]) +11 other tests skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][427] ([Intel XE#1489]) -> [SKIP][428] ([Intel XE#2136]) +6 other tests skip [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][429] ([Intel XE#1489]) -> [SKIP][430] ([Intel XE#2136]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][431] ([Intel XE#2136]) -> [SKIP][432] ([Intel XE#1489]) +1 other test skip [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-435/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html - shard-bmg: [SKIP][433] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][434] ([Intel XE#1489]) +1 other test skip [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-2/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][435] ([Intel XE#2387]) -> [SKIP][436] ([Intel XE#2136]) [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-psr-suspend: - shard-bmg: [SKIP][437] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][438] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr@fbc-psr-suspend.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-8/igt at kms_psr@fbc-psr-suspend.html - shard-dg2-set2: [SKIP][439] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][440] ([Intel XE#2850] / [Intel XE#929]) [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@fbc-psr-suspend.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-463/igt at kms_psr@fbc-psr-suspend.html * igt at kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: [SKIP][441] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][442] ([Intel XE#2136]) +23 other tests skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_psr@fbc-psr2-cursor-plane-move.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_psr@fbc-psr2-cursor-plane-move.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: [SKIP][443] ([Intel XE#2136]) -> [SKIP][444] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@fbc-psr2-sprite-render: - shard-bmg: [SKIP][445] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][446] ([Intel XE#2136] / [Intel XE#2231]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_psr@fbc-psr2-sprite-render.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_psr@fbc-psr2-sprite-render.html * igt at kms_psr@psr-primary-blt: - shard-dg2-set2: [SKIP][447] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][448] ([Intel XE#2136]) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_psr@psr-primary-blt.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at kms_psr@psr-primary-blt.html * igt at kms_psr@psr2-sprite-blt: - shard-bmg: [SKIP][449] ([Intel XE#2136]) -> [SKIP][450] ([Intel XE#2234] / [Intel XE#2850]) +16 other tests skip [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr@psr2-sprite-blt.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-4/igt at kms_psr@psr2-sprite-blt.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][451] ([Intel XE#2414]) -> [SKIP][452] ([Intel XE#2136]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-rotation-270: - shard-bmg: [SKIP][453] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][454] ([Intel XE#2423]) +2 other tests skip [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_rotation_crc@primary-rotation-270.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_rotation_crc@primary-rotation-270.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: [SKIP][455] ([Intel XE#2423]) -> [SKIP][456] ([Intel XE#2330]) [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-8/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: [SKIP][457] ([Intel XE#2413]) -> [SKIP][458] ([Intel XE#2423]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_scaling_modes@scaling-mode-full.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][459] ([Intel XE#2426]) -> [SKIP][460] ([Intel XE#2423]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2-set2: [SKIP][461] ([Intel XE#362]) -> [SKIP][462] ([Intel XE#1500]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-435/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@cmrr: - shard-bmg: [SKIP][463] ([Intel XE#2423]) -> [SKIP][464] ([Intel XE#2168]) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_vrr@cmrr.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at kms_vrr@cmrr.html * igt at kms_vrr@flip-suspend: - shard-bmg: [SKIP][465] ([Intel XE#1499]) -> [SKIP][466] ([Intel XE#2423]) +2 other tests skip [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_vrr@flip-suspend.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at kms_vrr@flip-suspend.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][467] ([Intel XE#2423]) -> [SKIP][468] ([Intel XE#1499]) +1 other test skip [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-virtual.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][469] ([Intel XE#2423]) -> [SKIP][470] ([Intel XE#756]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_writeback@writeback-invalid-parameters.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-2/igt at kms_writeback@writeback-invalid-parameters.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][471] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][472] ([Intel XE#2423]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at sriov_basic@enable-vfs-autoprobe-off.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][473] ([Intel XE#1130]) -> [SKIP][474] ([Intel XE#1126]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0x369.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0x369.html * igt at xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][475] ([Intel XE#1130]) -> [SKIP][476] ([Intel XE#2504]) [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_create@multigpu-create-massive-size.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-4/igt at xe_create@multigpu-create-massive-size.html * igt at xe_eudebug@basic-read-event: - shard-bmg: [SKIP][477] ([Intel XE#1130]) -> [SKIP][478] ([Intel XE#2905]) +13 other tests skip [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_eudebug@basic-read-event.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at xe_eudebug@basic-read-event.html * igt at xe_eudebug@sysfs-toggle: - shard-dg2-set2: [SKIP][479] ([Intel XE#1130]) -> [SKIP][480] ([Intel XE#2905]) +2 other tests skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_eudebug@sysfs-toggle.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-436/igt at xe_eudebug@sysfs-toggle.html * igt at xe_eudebug_online@single-step-one: - shard-bmg: [SKIP][481] ([Intel XE#2905]) -> [SKIP][482] ([Intel XE#1130]) +15 other tests skip [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_eudebug_online@single-step-one.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at xe_eudebug_online@single-step-one.html * igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram: - shard-dg2-set2: [SKIP][483] ([Intel XE#2905]) -> [SKIP][484] ([Intel XE#1130]) [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-433/igt at xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: [SKIP][485] ([Intel XE#2322]) -> [SKIP][486] ([Intel XE#1130]) +13 other tests skip [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][487] ([Intel XE#1130]) -> [SKIP][488] ([Intel XE#2322]) +9 other tests skip [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-2/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@many-execqueues-rebind: - shard-dg2-set2: [SKIP][489] ([Intel XE#1130]) -> [SKIP][490] ([Intel XE#288]) +5 other tests skip [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_fault_mode@many-execqueues-rebind.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-466/igt at xe_exec_fault_mode@many-execqueues-rebind.html * igt at xe_live_ktest@xe_mocs: - shard-bmg: [FAIL][491] ([Intel XE#1999]) -> [SKIP][492] ([Intel XE#1192]) [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_live_ktest@xe_mocs.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-2/igt at xe_live_ktest@xe_mocs.html * igt at xe_oa@oa-regs-whitelisted: - shard-dg2-set2: [SKIP][493] ([Intel XE#1130]) -> [SKIP][494] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_oa@oa-regs-whitelisted.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-435/igt at xe_oa@oa-regs-whitelisted.html * igt at xe_oa@oa-tlb-invalidate: - shard-bmg: [SKIP][495] ([Intel XE#2248]) -> [SKIP][496] ([Intel XE#1130]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at xe_oa@oa-tlb-invalidate.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][497] ([Intel XE#1130]) -> [SKIP][498] ([Intel XE#2248]) [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_oa@unprivileged-single-ctx-counters.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at xe_oa@unprivileged-single-ctx-counters.html * igt at xe_peer2peer@write: - shard-bmg: [SKIP][499] ([Intel XE#2427]) -> [SKIP][500] ([Intel XE#2557]) [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_peer2peer@write.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-5/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-mocs: - shard-bmg: [SKIP][501] ([Intel XE#1130]) -> [SKIP][502] ([Intel XE#2284]) +1 other test skip [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_pm@d3cold-mocs.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-4/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-bmg: [SKIP][503] ([Intel XE#2284]) -> [SKIP][504] ([Intel XE#1130]) [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at xe_pm@s4-d3cold-basic-exec.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_query@multigpu-query-invalid-query: - shard-bmg: [SKIP][505] ([Intel XE#1130]) -> [SKIP][506] ([Intel XE#944]) +2 other tests skip [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_query@multigpu-query-invalid-query.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-1/igt at xe_query@multigpu-query-invalid-query.html * igt at xe_query@multigpu-query-mem-usage: - shard-bmg: [SKIP][507] ([Intel XE#944]) -> [SKIP][508] ([Intel XE#1130]) [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at xe_query@multigpu-query-mem-usage.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-bmg-7/igt at xe_query@multigpu-query-mem-usage.html * igt at xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][509] ([Intel XE#1130]) -> [SKIP][510] ([Intel XE#944]) [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-guc.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/shard-dg2-436/igt at xe_query@multigpu-query-uc-fw-version-guc.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [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#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#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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [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#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [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#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [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#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#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [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#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#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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [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#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#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#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [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#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_8199 -> IGTPW_12468 * Linux: xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef -> xe-2515-112cf3f777a01cf551c69d74d43f6c2732981706 IGTPW_12468: aea715085fd7dad8dc83a1dc74e5b2c1bb83d60d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef xe-2515-112cf3f777a01cf551c69d74d43f6c2732981706: 112cf3f777a01cf551c69d74d43f6c2732981706 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12468/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 22:02:17 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 22:02:17 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_tests/kms=5Faddfb=5Fbasic?= =?utf-8?q?=3A_Fix_addfb25=5Ftests_to_not_require_intel_=28rev2=29?= In-Reply-To: <20250120171021.1029868-1-george.zhang@amd.com> References: <20250120171021.1029868-1-george.zhang@amd.com> Message-ID: <173741053706.2329094.3027441962775722020@b555e5b46a47> == Series Details == Series: tests/kms_addfb_basic: Fix addfb25_tests to not require intel (rev2) URL : https://patchwork.freedesktop.org/series/143739/ State : failure == Summary == CI Bug Log - changes from IGT_8199 -> IGTPW_12469 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12469 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12469, 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_12469/index.html Participating hosts (39 -> 41) ------------------------------ Additional (2): fi-bsw-nick fi-elk-e7500 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12469: ### IGT changes ### #### Possible regressions #### * igt at i915_pm_rpm@module-reload: - fi-cfl-8700k: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/fi-cfl-8700k/igt at i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/fi-cfl-8700k/igt at i915_pm_rpm@module-reload.html Known issues ------------ Here are the changes found in IGTPW_12469 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at fbdev@info: - fi-bsw-nick: NOTRUN -> [SKIP][3] ([i915#1849]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/fi-bsw-nick/igt at fbdev@info.html * igt at gem_lmem_swapping@parallel-random-engines: - fi-bsw-nick: NOTRUN -> [SKIP][4] +43 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/fi-bsw-nick/igt at gem_lmem_swapping@parallel-random-engines.html * igt at gem_mmap@basic: - bat-dg2-13: NOTRUN -> [SKIP][5] ([i915#4083]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at gem_mmap@basic.html * igt at gem_tiled_blits@basic: - bat-dg2-13: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at gem_tiled_blits@basic.html * igt at gem_tiled_pread_basic: - bat-dg2-13: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at gem_tiled_pread_basic.html * igt at i915_pm_rps@basic-api: - bat-dg2-13: NOTRUN -> [SKIP][8] ([i915#11681] / [i915#6621]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at i915_pm_rps@basic-api.html * igt at i915_selftest@live: - bat-twl-1: [PASS][9] -> [ABORT][10] ([i915#12919] / [i915#13503]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-twl-1/igt at i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-twl-1/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_mocs: - bat-twl-1: [PASS][11] -> [ABORT][12] ([i915#12919]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-twl-1/igt at i915_selftest@live at gt_mocs.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-twl-1/igt at i915_selftest@live at gt_mocs.html * igt at i915_selftest@live at workarounds: - bat-arlh-3: [PASS][13] -> [DMESG-FAIL][14] ([i915#12061]) +1 other test dmesg-fail [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-arlh-3/igt at i915_selftest@live at workarounds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-arlh-3/igt at i915_selftest@live at workarounds.html - bat-arls-5: [PASS][15] -> [DMESG-FAIL][16] ([i915#12061]) +1 other test dmesg-fail [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-arls-5/igt at i915_selftest@live at workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-arls-5/igt at i915_selftest@live at workarounds.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-13: NOTRUN -> [SKIP][17] ([i915#5190]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-13: NOTRUN -> [SKIP][18] ([i915#4215] / [i915#5190]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@framebuffer-vs-set-tiling: - bat-dg2-13: NOTRUN -> [SKIP][19] ([i915#4212]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at kms_addfb_basic@framebuffer-vs-set-tiling.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-dg2-13: NOTRUN -> [SKIP][20] ([i915#4103] / [i915#4213]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_dsc@dsc-basic: - bat-dg2-13: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#3840]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at kms_dsc@dsc-basic.html * igt at kms_force_connector_basic@force-load-detect: - bat-dg2-13: NOTRUN -> [SKIP][22] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at kms_force_connector_basic@force-load-detect.html * igt at kms_force_connector_basic@prune-stale-modes: - bat-dg2-13: NOTRUN -> [SKIP][23] ([i915#5274]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1: - fi-elk-e7500: NOTRUN -> [SKIP][24] +24 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/fi-elk-e7500/igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1.html * igt at kms_pm_backlight@basic-brightness: - bat-dg2-13: NOTRUN -> [SKIP][25] ([i915#5354]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at kms_pm_backlight@basic-brightness.html * igt at kms_psr@psr-primary-page-flip: - bat-dg2-13: NOTRUN -> [SKIP][26] ([i915#1072] / [i915#9732]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at kms_psr@psr-primary-page-flip.html * igt at kms_setmode@basic-clone-single-crtc: - bat-dg2-13: NOTRUN -> [SKIP][27] ([i915#3555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at kms_setmode@basic-clone-single-crtc.html * igt at prime_vgem@basic-fence-flip: - bat-dg2-13: NOTRUN -> [SKIP][28] ([i915#3708]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at prime_vgem@basic-fence-flip.html * igt at prime_vgem@basic-fence-mmap: - bat-dg2-13: NOTRUN -> [SKIP][29] ([i915#3708] / [i915#4077]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-write: - bat-dg2-13: NOTRUN -> [SKIP][30] ([i915#3291] / [i915#3708]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at prime_vgem@basic-write.html #### Possible fixes #### * igt at i915_module_load@load: - bat-dg2-13: [ABORT][31] ([i915#13530]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-dg2-13/igt at i915_module_load@load.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-dg2-13/igt at i915_module_load@load.html * igt at i915_selftest@live at workarounds: - {bat-arls-6}: [DMESG-FAIL][33] ([i915#12061]) -> [PASS][34] +1 other test pass [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-arls-6/igt at i915_selftest@live at workarounds.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/bat-arls-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#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503 [i915#13530]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13530 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8199 -> IGTPW_12469 * Linux: CI_DRM_15983 -> CI_DRM_15985 CI-20190529: 20190529 CI_DRM_15983: 4d9c78b35c395ed49796502224f3a421b0ce65ef @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15985: fb87b4e061d1844beaca66c8446cfcf60db99a23 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12469: 27414070fc43f52e70d66da13ee97d856fcb0373 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 22:20:51 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 22:20:51 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/kms=5Faddfb=5Fbasic?= =?utf-8?q?=3A_Fix_addfb25=5Ftests_to_not_require_intel_=28rev2=29?= In-Reply-To: <20250120171021.1029868-1-george.zhang@amd.com> References: <20250120171021.1029868-1-george.zhang@amd.com> Message-ID: <173741165177.2333067.3050899180043258304@b555e5b46a47> == Series Details == Series: tests/kms_addfb_basic: Fix addfb25_tests to not require intel (rev2) URL : https://patchwork.freedesktop.org/series/143739/ State : success == Summary == CI Bug Log - changes from XEIGT_8199_BAT -> XEIGTPW_12469_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12469_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3970] / [Intel XE#4078]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/bat-adlp-vf/igt at xe_exec_basic@twice-bindexecqueue-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_8199/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/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_8199/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8199 -> IGTPW_12469 * Linux: xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef -> xe-2516-fb87b4e061d1844beaca66c8446cfcf60db99a23 IGTPW_12469: 27414070fc43f52e70d66da13ee97d856fcb0373 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef xe-2516-fb87b4e061d1844beaca66c8446cfcf60db99a23: fb87b4e061d1844beaca66c8446cfcf60db99a23 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 22:31:29 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 22:31:29 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_Add_SR-IOV_provisioning_s?= =?utf-8?q?cheduling_attributes_and_tests?= In-Reply-To: <20250120203445.16285-1-marcin.bernatowicz@linux.intel.com> References: <20250120203445.16285-1-marcin.bernatowicz@linux.intel.com> Message-ID: <173741228999.2333067.13137514740535853119@b555e5b46a47> == Series Details == Series: Add SR-IOV provisioning scheduling attributes and tests URL : https://patchwork.freedesktop.org/series/143762/ State : failure == Summary == CI Bug Log - changes from IGT_8199 -> IGTPW_12470 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12470 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12470, 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_12470/index.html Participating hosts (39 -> 41) ------------------------------ Additional (2): fi-bsw-nick fi-elk-e7500 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12470: ### IGT changes ### #### Possible regressions #### * igt at i915_selftest@live at guc: - bat-adlp-6: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-adlp-6/igt at i915_selftest@live at guc.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-adlp-6/igt at i915_selftest@live at guc.html Known issues ------------ Here are the changes found in IGTPW_12470 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at fbdev@info: - fi-bsw-nick: NOTRUN -> [SKIP][3] ([i915#1849]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/fi-bsw-nick/igt at fbdev@info.html * igt at gem_lmem_swapping@parallel-random-engines: - fi-bsw-nick: NOTRUN -> [SKIP][4] +43 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/fi-bsw-nick/igt at gem_lmem_swapping@parallel-random-engines.html * igt at gem_mmap@basic: - bat-dg2-13: NOTRUN -> [SKIP][5] ([i915#4083]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at gem_mmap@basic.html * igt at gem_tiled_blits@basic: - bat-dg2-13: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at gem_tiled_blits@basic.html * igt at gem_tiled_pread_basic: - bat-dg2-13: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at gem_tiled_pread_basic.html * igt at i915_pm_rpm@module-reload: - fi-cfl-8109u: [PASS][8] -> [DMESG-WARN][9] ([i915#11621] / [i915#1982]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/fi-cfl-8109u/igt at i915_pm_rpm@module-reload.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/fi-cfl-8109u/igt at i915_pm_rpm@module-reload.html * igt at i915_pm_rps@basic-api: - bat-dg2-13: NOTRUN -> [SKIP][10] ([i915#11681] / [i915#6621]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at i915_pm_rps@basic-api.html * igt at i915_selftest@live: - bat-adlp-6: [PASS][11] -> [ABORT][12] ([i915#13399]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-adlp-6/igt at i915_selftest@live.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-adlp-6/igt at i915_selftest@live.html * igt at i915_selftest@live at execlists: - bat-jsl-3: [PASS][13] -> [INCOMPLETE][14] ([i915#12445] / [i915#13241]) +1 other test incomplete [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-jsl-3/igt at i915_selftest@live at execlists.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-jsl-3/igt at i915_selftest@live at execlists.html * igt at i915_selftest@live at late_gt_pm: - fi-cfl-8109u: [PASS][15] -> [DMESG-WARN][16] ([i915#11621]) +13 other tests dmesg-warn [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/fi-cfl-8109u/igt at i915_selftest@live at late_gt_pm.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/fi-cfl-8109u/igt at i915_selftest@live at late_gt_pm.html * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-13: NOTRUN -> [SKIP][17] ([i915#5190]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-13: NOTRUN -> [SKIP][18] ([i915#4215] / [i915#5190]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@framebuffer-vs-set-tiling: - bat-dg2-13: NOTRUN -> [SKIP][19] ([i915#4212]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at kms_addfb_basic@framebuffer-vs-set-tiling.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-dg2-13: NOTRUN -> [SKIP][20] ([i915#4103] / [i915#4213]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_dsc@dsc-basic: - bat-dg2-13: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#3840]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at kms_dsc@dsc-basic.html * igt at kms_force_connector_basic@force-load-detect: - bat-dg2-13: NOTRUN -> [SKIP][22] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at kms_force_connector_basic@force-load-detect.html * igt at kms_force_connector_basic@prune-stale-modes: - bat-dg2-13: NOTRUN -> [SKIP][23] ([i915#5274]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at kms_force_connector_basic@prune-stale-modes.html * igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1: - fi-elk-e7500: NOTRUN -> [SKIP][24] +24 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/fi-elk-e7500/igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1.html * igt at kms_pm_backlight@basic-brightness: - bat-dg2-13: NOTRUN -> [SKIP][25] ([i915#5354]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at kms_pm_backlight@basic-brightness.html * igt at kms_psr@psr-primary-page-flip: - bat-dg2-13: NOTRUN -> [SKIP][26] ([i915#1072] / [i915#9732]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at kms_psr@psr-primary-page-flip.html * igt at kms_setmode@basic-clone-single-crtc: - bat-dg2-13: NOTRUN -> [SKIP][27] ([i915#3555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at kms_setmode@basic-clone-single-crtc.html * igt at prime_vgem@basic-fence-flip: - bat-dg2-13: NOTRUN -> [SKIP][28] ([i915#3708]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at prime_vgem@basic-fence-flip.html * igt at prime_vgem@basic-fence-mmap: - bat-dg2-13: NOTRUN -> [SKIP][29] ([i915#3708] / [i915#4077]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-write: - bat-dg2-13: NOTRUN -> [SKIP][30] ([i915#3291] / [i915#3708]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at prime_vgem@basic-write.html #### Possible fixes #### * igt at i915_module_load@load: - bat-dg2-13: [ABORT][31] ([i915#13530]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-dg2-13/igt at i915_module_load@load.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-dg2-13/igt at i915_module_load@load.html * igt at i915_selftest@live at workarounds: - {bat-arls-6}: [DMESG-FAIL][33] ([i915#12061]) -> [PASS][34] +1 other test pass [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/bat-arls-6/igt at i915_selftest@live at workarounds.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/bat-arls-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#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#13241]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13241 [i915#13399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13399 [i915#13530]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13530 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8199 -> IGTPW_12470 * Linux: CI_DRM_15983 -> CI_DRM_15985 CI-20190529: 20190529 CI_DRM_15983: 4d9c78b35c395ed49796502224f3a421b0ce65ef @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15985: fb87b4e061d1844beaca66c8446cfcf60db99a23 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12470: 7f19312a42cdf84cc7517e0f2f9e01a37be7e9fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12470/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 22:43:40 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 22:43:40 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Add_SR-IOV_provisioning_sch?= =?utf-8?q?eduling_attributes_and_tests?= In-Reply-To: <20250120203445.16285-1-marcin.bernatowicz@linux.intel.com> References: <20250120203445.16285-1-marcin.bernatowicz@linux.intel.com> Message-ID: <173741302051.2329083.16457721851086875780@b555e5b46a47> == Series Details == Series: Add SR-IOV provisioning scheduling attributes and tests URL : https://patchwork.freedesktop.org/series/143762/ State : success == Summary == CI Bug Log - changes from XEIGT_8199_BAT -> XEIGTPW_12470_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8199 -> IGTPW_12470 * Linux: xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef -> xe-2516-fb87b4e061d1844beaca66c8446cfcf60db99a23 IGTPW_12470: 7f19312a42cdf84cc7517e0f2f9e01a37be7e9fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef xe-2516-fb87b4e061d1844beaca66c8446cfcf60db99a23: fb87b4e061d1844beaca66c8446cfcf60db99a23 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Mon Jan 20 23:37:23 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Mon, 20 Jan 2025 23:37:23 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/kms=5Faddfb=5Fbasic?= =?utf-8?q?=3A_Fix_addfb25=5Ftests_to_not_require_intel_=28rev2=29?= In-Reply-To: <20250120171021.1029868-1-george.zhang@amd.com> References: <20250120171021.1029868-1-george.zhang@amd.com> Message-ID: <173741624303.2345752.10792373097902083747@b555e5b46a47> == Series Details == Series: tests/kms_addfb_basic: Fix addfb25_tests to not require intel (rev2) URL : https://patchwork.freedesktop.org/series/143739/ State : failure == Summary == CI Bug Log - changes from XEIGT_8199_full -> XEIGTPW_12469_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12469_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12469_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_12469_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@flip-vs-suspend-interruptible: - shard-lnl: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-7/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at xe_exec_balancer@twice-cm-parallel-userptr-invalidate: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-433/igt at xe_exec_balancer@twice-cm-parallel-userptr-invalidate.html Known issues ------------ Here are the changes found in XEIGTPW_12469_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotreplug: - shard-bmg: [PASS][3] -> [SKIP][4] ([Intel XE#1885]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at core_hotunplug@hotreplug.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at core_hotunplug@hotreplug.html * igt at core_setmaster@master-drop-set-user: - shard-bmg: [PASS][5] -> [FAIL][6] ([Intel XE#3249]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at core_setmaster@master-drop-set-user.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at core_setmaster@master-drop-set-user.html * igt at fbdev@info: - shard-bmg: [PASS][7] -> [SKIP][8] ([Intel XE#2134]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at fbdev@info.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at fbdev@info.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1125]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-8/igt at intel_hwmon@hwmon-write.html * igt at kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [PASS][10] -> [FAIL][11] ([Intel XE#3701] / [Intel XE#3718] / [Intel XE#827]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip-atomic.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/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][12] -> [FAIL][13] ([Intel XE#3802] / [Intel XE#827]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-b-dp-2.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/igt at kms_async_flips@alternate-sync-async-flip-atomic at pipe-b-dp-2.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: NOTRUN -> [FAIL][14] ([Intel XE#3719]) +3 other tests fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-4/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-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#3767]) +15 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-435/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-b-hdmi-a-6-4-mc-ccs.html * igt at kms_big_fb@linear-64bpp-rotate-0: - shard-lnl: NOTRUN -> [DMESG-WARN][16] ([Intel XE#1725]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-2/igt at kms_big_fb@linear-64bpp-rotate-0.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-463/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1407]) +5 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-6/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-433/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#610]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-433/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1428]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-5/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +6 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-8/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#367]) +5 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-433/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2191]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-5/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2191]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-433/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1512]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-5/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +31 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-436/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +9 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-2/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-y-tiled-ccs at pipe-d-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#787]) +153 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_ccs@crc-primary-basic-y-tiled-ccs at pipe-d-hdmi-a-2.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs at pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-4/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs at pipe-b-dp-2.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][31] -> [INCOMPLETE][32] ([Intel XE#3862]) +1 other test incomplete [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#3432]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-4/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-bmg: [PASS][34] -> [SKIP][35] ([Intel XE#2136]) +22 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/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-mc-ccs: - shard-dg2-set2: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#1727] / [Intel XE#3124]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-463/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-a-dp-4: - shard-dg2-set2: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-dp-4.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs at pipe-a-dp-4.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#306]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-1/igt at kms_chamelium_color@ctm-blue-to-red.html - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#306]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-436/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#373]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-466/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +5 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-6/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@atomic at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][44] ([Intel XE#1178]) +2 other tests fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-5/igt at kms_content_protection@atomic at pipe-a-dp-2.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#307]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-3/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@type1: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#3278]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-8/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][47] ([Intel XE#1188]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#308]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-436/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#2321]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-5/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-sliding-128x42: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1424]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-3/igt at kms_cursor_crc@cursor-sliding-128x42.html * igt at kms_cursor_crc@cursor-suspend: - shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#2423]) +97 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_cursor_crc@cursor-suspend.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_edge_walk@64x64-right-edge: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([i915#2575]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_cursor_edge_walk@64x64-right-edge.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: [PASS][54] -> [SKIP][55] ([i915#2575]) +13 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@cursor-vs-flip-toggle: - shard-bmg: [PASS][56] -> [INCOMPLETE][57] ([Intel XE#3226]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_cursor_legacy@cursor-vs-flip-toggle.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/igt at kms_cursor_legacy@cursor-vs-flip-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][58] ([Intel XE#3226]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-434/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#323]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-435/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#323]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-4/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][61] ([Intel XE#3383]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-1/igt at kms_display_modes@extended-mode-basic.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_draw_crc@draw-method-mmap-wc.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#701]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-436/igt at kms_feature_discovery@chamelium.html - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#701]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-1/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#702]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-4/igt at kms_feature_discovery@display-2x.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][67] ([Intel XE#301]) +5 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/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 cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][68] -> [FAIL][69] ([Intel XE#301]) +1 other test fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at cd-hdmi-a6-dp4.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-modeset: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1421]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-4/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-flip-vs-suspend at bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-WARN][71] ([Intel XE#877]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-8/igt at kms_flip@2x-flip-vs-suspend at bd-dp2-hdmi-a3.html * igt at kms_flip@basic-flip-vs-wf_vblank: - shard-lnl: [PASS][72] -> [FAIL][73] ([Intel XE#3098]) +1 other test fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_flip@basic-flip-vs-wf_vblank.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-8/igt at kms_flip@basic-flip-vs-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][74] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html * igt at kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][75] ([Intel XE#2597]) +1 other test incomplete [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-434/igt at kms_flip@flip-vs-suspend-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1401]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-5/igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2293]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/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-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-1/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1397] / [Intel XE#1745]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/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][80] ([Intel XE#1397]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/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-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2380]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#455]) +11 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-436/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#651]) +6 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-7/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#651]) +18 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [PASS][85] -> [SKIP][86] ([Intel XE#2136] / [Intel XE#2231]) +6 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#656]) +25 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-8/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#653]) +21 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_plane@pixel-format-source-clamping: - shard-bmg: [PASS][89] -> [DMESG-WARN][90] ([Intel XE#2566] / [Intel XE#877]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_plane@pixel-format-source-clamping.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-4/igt at kms_plane@pixel-format-source-clamping.html * igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-5: - shard-bmg: [PASS][91] -> [DMESG-WARN][92] ([Intel XE#877]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-5.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-4/igt at kms_plane@pixel-format-source-clamping at pipe-b-plane-5.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][93] ([Intel XE#616]) +2 other tests fail [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-436/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#309]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2763]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-436/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-modifiers at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-436/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-bmg: [PASS][97] -> [SKIP][98] ([Intel XE#3007]) +11 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#2763]) +11 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/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-upscale-20x20-downscale-factor-0-75 at pipe-a: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2763]) +11 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a.html * igt at kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#870]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-433/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2938]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-435/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_rpm@i2c: - shard-bmg: [PASS][103] -> [SKIP][104] ([Intel XE#2446]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_pm_rpm@i2c.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_pm_rpm@i2c.html - shard-dg2-set2: [PASS][105] -> [SKIP][106] ([Intel XE#2446]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_pm_rpm@i2c.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_pm_rpm@i2c.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1439] / [Intel XE#3141]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1489]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-463/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2893]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-5/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#1122]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-466/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-pr-sprite-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1406]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-5/igt at kms_psr@fbc-pr-sprite-plane-onoff.html * igt at kms_psr@fbc-psr-no-drrs: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-466/igt at kms_psr@fbc-psr-no-drrs.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_psr@psr-dpms.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#3414]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-435/igt at kms_rotation_crc@primary-rotation-90.html - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#3414] / [Intel XE#3904]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-1/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1435]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-2/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#362]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-5/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [PASS][118] -> [ABORT][119] ([Intel XE#2625] / [Intel XE#4057]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_vblank@ts-continuation-suspend.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][120] ([Intel XE#2625] / [Intel XE#4057]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_vblank@ts-continuation-suspend at pipe-d-dp-2.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2168]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-466/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#756]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-5/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#756]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-466/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: NOTRUN -> [ABORT][124] ([Intel XE#2625]) +1 other test abort [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at xe_ccs@suspend-resume at tile64-compressed-compfmt0-vram01-vram01.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#3889]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#3889]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-5/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug_online@preempt-breakpoint: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2905]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-3/igt at xe_eudebug_online@preempt-breakpoint.html * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#688]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-1/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1392]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html * igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-dg2-set2: [PASS][130] -> [SKIP][131] ([Intel XE#1392]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1392]) +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-3/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#1130]) +5 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at xe_exec_fault_mode@once-invalid-userptr-fault.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#288]) +17 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2905]) +7 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-433/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][136] ([Intel XE#1999]) +2 other tests fail [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-436/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#4045]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-3/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#512]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-436/igt at xe_mmap@small-bar.html * igt at xe_module_load@many-reload: - shard-bmg: [PASS][139] -> [FAIL][140] ([Intel XE#3546]) +1 other test fail [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at xe_module_load@many-reload.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at xe_module_load@many-reload.html - shard-dg2-set2: [PASS][141] -> [FAIL][142] ([Intel XE#3546]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_module_load@many-reload.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-466/igt at xe_module_load@many-reload.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-435/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#977]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-436/igt at xe_pat@pat-index-xe2.html * igt at xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#2838] / [Intel XE#979]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-463/igt at xe_pat@pat-index-xehpc.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][146] ([Intel XE#1173]) +2 other tests fail [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-466/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_peer2peer@write: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#1061]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-1/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#2284] / [Intel XE#366]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-433/igt at xe_pm@d3cold-mmap-vram.html - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#2284] / [Intel XE#366]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-3/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1948]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-3/igt at xe_pm@d3hot-mmap-vram.html * igt at xe_pm@s2idle-exec-after: - shard-dg2-set2: [PASS][151] -> [ABORT][152] ([Intel XE#1358]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_pm@s2idle-exec-after.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at xe_pm@s2idle-exec-after.html * igt at xe_pm@s3-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#584]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-6/igt at xe_pm@s3-vm-bind-unbind-all.html * igt at xe_pm@s3-vm-bind-userptr: - shard-dg2-set2: [PASS][154] -> [ABORT][155] ([Intel XE#1358] / [Intel XE#1794]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_pm@s3-vm-bind-userptr.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at xe_pm@s3-vm-bind-userptr.html * igt at xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#944]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-463/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#944]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-5/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#3342]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-463/igt at xe_sriov_flr@flr-vf1-clear.html * igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][159] -> [SKIP][160] ([Intel XE#1130]) +239 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html * igt at xe_vm@large-split-misaligned-binds-33554432: - 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_8199/shard-dg2-436/igt at xe_vm@large-split-misaligned-binds-33554432.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at xe_vm@large-split-misaligned-binds-33554432.html #### Possible fixes #### * igt at core_hotunplug@hotunplug-rescan: - shard-bmg: [SKIP][163] ([Intel XE#1885]) -> [PASS][164] +1 other test pass [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at core_hotunplug@hotunplug-rescan.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at core_hotunplug@hotunplug-rescan.html * igt at core_setmaster@master-drop-set-root: - shard-bmg: [FAIL][165] ([Intel XE#3249]) -> [PASS][166] [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at core_setmaster@master-drop-set-root.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-4/igt at core_setmaster@master-drop-set-root.html * igt at fbdev@pan: - shard-bmg: [SKIP][167] ([Intel XE#2134]) -> [PASS][168] +1 other test pass [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at fbdev@pan.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at fbdev@pan.html * igt at kms_addfb_basic@unused-pitches: - shard-dg2-set2: [SKIP][169] ([Intel XE#2423] / [i915#2575]) -> [PASS][170] +15 other tests pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_addfb_basic@unused-pitches.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-433/igt at kms_addfb_basic@unused-pitches.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-c-dp-4-4-rc-ccs: - shard-dg2-set2: [SKIP][171] ([Intel XE#2550] / [Intel XE#3767]) -> [PASS][172] +7 other tests pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-c-dp-4-4-rc-ccs.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-433/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-c-dp-4-4-rc-ccs.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [SKIP][173] ([Intel XE#2136]) -> [PASS][174] +17 other tests pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@linear-16bpp-rotate-180.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][175] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-5/igt at kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][177] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [SKIP][179] ([Intel XE#2136]) -> [PASS][180] +4 other tests pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-463/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][181] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-435/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-c-dp-4: - shard-dg2-set2: [INCOMPLETE][183] ([Intel XE#3124]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-dp-4.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-dp-4.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][185] ([Intel XE#1727]) -> [PASS][186] +1 other test pass [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html * igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: [SKIP][187] ([Intel XE#2291]) -> [PASS][188] +1 other test pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][189] ([Intel XE#2425]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/igt at kms_display_modes@extended-mode-basic.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3: - shard-bmg: [FAIL][191] ([Intel XE#3321]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at ad-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-expired-vblank at ad-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][193] ([Intel XE#301]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_flip@2x-flip-vs-expired-vblank at ad-hdmi-a6-dp4.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank at ad-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3: - shard-bmg: [FAIL][195] -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at bc-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-bmg: [SKIP][197] ([Intel XE#2316]) -> [PASS][198] +1 other test pass [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-interruptible.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-5/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][199] ([Intel XE#886]) -> [PASS][200] +4 other tests pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_flip@blocking-wf_vblank.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-7/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@flip-vs-panning-vs-hang: - shard-bmg: [SKIP][201] ([Intel XE#2423]) -> [PASS][202] +64 other tests pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip@flip-vs-panning-vs-hang.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_flip@flip-vs-panning-vs-hang.html * igt at kms_flip@plain-flip-fb-recreate: - shard-bmg: [FAIL][203] ([Intel XE#2882]) -> [PASS][204] +1 other test pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_flip@plain-flip-fb-recreate.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-dg2-set2: [ABORT][205] ([Intel XE#2625]) -> [PASS][206] +1 other test pass [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_plane@plane-panning-bottom-right-suspend.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-436/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_multiple@tiling-none: - shard-bmg: [SKIP][207] ([Intel XE#3007]) -> [PASS][208] +14 other tests pass [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_plane_multiple@tiling-none.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/igt at kms_plane_multiple@tiling-none.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][209] ([Intel XE#2571]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-4/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][211] ([Intel XE#718]) -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-3/igt at kms_pm_dc@dc5-dpms.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-lnl-7/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [SKIP][213] ([Intel XE#2446]) -> [PASS][214] +4 other tests pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@basic-pci-d3-state.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-5/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at kms_pm_rpm@legacy-planes: - shard-dg2-set2: [SKIP][215] ([Intel XE#2446]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_pm_rpm@legacy-planes.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-466/igt at kms_pm_rpm@legacy-planes.html * igt at kms_rmfb@close-fd at pipe-d-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][217] -> [PASS][218] +1 other test pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_rmfb@close-fd at pipe-d-hdmi-a-6.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-435/igt at kms_rmfb@close-fd at pipe-d-hdmi-a-6.html * igt at xe_exec_balancer@twice-virtual-basic: - shard-dg2-set2: [SKIP][219] ([Intel XE#1130]) -> [PASS][220] +25 other tests pass [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_balancer@twice-virtual-basic.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-435/igt at xe_exec_balancer@twice-virtual-basic.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-dg2-set2: [SKIP][221] ([Intel XE#1392]) -> [PASS][222] +3 other tests pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-466/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-bmg: [FAIL][223] ([Intel XE#1999]) -> [PASS][224] +2 other tests pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-5/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_pm@s2idle-vm-bind-userptr: - shard-dg2-set2: [ABORT][225] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-userptr.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-436/igt at xe_pm@s2idle-vm-bind-userptr.html * igt at xe_vm@bind-no-array-conflict: - shard-bmg: [SKIP][227] ([Intel XE#1130]) -> [PASS][228] +176 other tests pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at xe_vm@bind-no-array-conflict.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-8/igt at xe_vm@bind-no-array-conflict.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][229] ([Intel XE#2233]) -> [SKIP][230] ([Intel XE#2423]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][231] ([Intel XE#2423]) -> [SKIP][232] ([Intel XE#873]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_async_flips@invalid-async-flip.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-5/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-bmg: [SKIP][233] ([Intel XE#3768]) -> [SKIP][234] ([Intel XE#2423]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_async_flips@invalid-async-flip-atomic.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][235] ([Intel XE#2423]) -> [SKIP][236] ([Intel XE#2370]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-5/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][237] ([Intel XE#2327]) -> [SKIP][238] ([Intel XE#2136] / [Intel XE#2231]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html - shard-dg2-set2: [SKIP][239] ([Intel XE#316]) -> [SKIP][240] ([Intel XE#2136] / [Intel XE#2231]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: [SKIP][241] ([Intel XE#2136]) -> [SKIP][242] ([Intel XE#316]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@linear-16bpp-rotate-270.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-434/igt at kms_big_fb@linear-16bpp-rotate-270.html - shard-bmg: [SKIP][243] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][244] ([Intel XE#2327]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@linear-16bpp-rotate-270.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-8/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: [SKIP][245] ([Intel XE#2136]) -> [SKIP][246] ([Intel XE#2327]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@linear-32bpp-rotate-90.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-5/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@x-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][247] ([Intel XE#2327]) -> [SKIP][248] ([Intel XE#2136]) +4 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_big_fb@x-tiled-32bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-bmg: [SKIP][249] ([Intel XE#1124]) -> [SKIP][250] ([Intel XE#2136] / [Intel XE#2231]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html - shard-dg2-set2: [SKIP][251] ([Intel XE#1124]) -> [SKIP][252] ([Intel XE#2136] / [Intel XE#2231]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][253] ([Intel XE#1124]) -> [SKIP][254] ([Intel XE#2136]) +8 other tests skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][255] ([Intel XE#2136]) -> [SKIP][256] ([Intel XE#1124]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-435/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html - shard-bmg: [SKIP][257] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][258] ([Intel XE#1124]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-5/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][259] ([Intel XE#2136]) -> [SKIP][260] ([Intel XE#1124]) +10 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-8/igt at kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-bmg: [SKIP][261] ([Intel XE#2136]) -> [SKIP][262] ([Intel XE#2328]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-8/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][263] ([Intel XE#607]) -> [SKIP][264] ([Intel XE#2136]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: [SKIP][265] ([Intel XE#610]) -> [SKIP][266] ([Intel XE#2136]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][267] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][268] ([Intel XE#2423]) +2 other tests skip [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-1-displays-1920x1080p: - shard-bmg: [SKIP][269] ([Intel XE#367]) -> [SKIP][270] ([Intel XE#2423]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-1920x1080p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][271] ([Intel XE#2423]) -> [SKIP][272] ([Intel XE#367]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][273] ([Intel XE#3007]) -> [SKIP][274] ([Intel XE#367]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html - shard-dg2-set2: [SKIP][275] ([Intel XE#2423] / [i915#2575]) -> [SKIP][276] ([Intel XE#367]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-435/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][277] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][278] ([Intel XE#2887]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][279] ([Intel XE#2136]) -> [SKIP][280] ([Intel XE#2887]) +12 other tests skip [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-4/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][281] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][282] ([Intel XE#2136]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][283] ([Intel XE#3432]) -> [SKIP][284] ([Intel XE#2136]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][285] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][286] ([Intel XE#2136] / [Intel XE#2231]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][287] ([Intel XE#2887]) -> [SKIP][288] ([Intel XE#2136]) +14 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][289] ([Intel XE#2136]) -> [SKIP][290] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-433/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-ccs: - shard-dg2-set2: [SKIP][291] ([Intel XE#2136]) -> [SKIP][292] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html * igt at kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][293] ([Intel XE#2325]) -> [SKIP][294] ([Intel XE#2423]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_chamelium_color@ctm-green-to-red.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_chamelium_color@ctm-green-to-red.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][295] ([Intel XE#2423]) -> [SKIP][296] ([Intel XE#2252]) +10 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-bmg: [SKIP][297] ([Intel XE#2252]) -> [SKIP][298] ([Intel XE#2423]) +8 other tests skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: [SKIP][299] ([Intel XE#3007]) -> [SKIP][300] ([Intel XE#2252]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_chamelium_hpd@dp-hpd-storm.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-5/igt at kms_chamelium_hpd@dp-hpd-storm.html - shard-dg2-set2: [SKIP][301] ([Intel XE#2423] / [i915#2575]) -> [SKIP][302] ([Intel XE#373]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_chamelium_hpd@dp-hpd-storm.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-435/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_chamelium_hpd@hdmi-hpd-fast: - shard-bmg: [SKIP][303] ([Intel XE#2252]) -> [SKIP][304] ([Intel XE#3007]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_chamelium_hpd@hdmi-hpd-fast.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_chamelium_hpd@hdmi-hpd-fast.html * igt at kms_content_protection@atomic: - shard-bmg: [SKIP][305] ([Intel XE#2341]) -> [FAIL][306] ([Intel XE#1178]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_content_protection@atomic.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-5/igt at kms_content_protection@atomic.html * igt at kms_content_protection@content-type-change: - shard-bmg: [SKIP][307] ([Intel XE#3007]) -> [SKIP][308] ([Intel XE#2341]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_content_protection@content-type-change.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-bmg: [SKIP][309] ([Intel XE#2390]) -> [SKIP][310] ([Intel XE#3007]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_content_protection@dp-mst-lic-type-1.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_content_protection@dp-mst-lic-type-1.html - shard-dg2-set2: [SKIP][311] ([Intel XE#307]) -> [SKIP][312] ([i915#2575]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_content_protection@dp-mst-lic-type-1.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][313] ([Intel XE#2423]) -> [SKIP][314] ([Intel XE#2390]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@dp-mst-type-0.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-bmg: [SKIP][315] ([Intel XE#2423]) -> [FAIL][316] ([Intel XE#1178]) +1 other test fail [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@legacy.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at kms_content_protection@legacy.html * igt at kms_content_protection@mei-interface: - shard-bmg: [SKIP][317] ([Intel XE#2341]) -> [SKIP][318] ([Intel XE#2423]) +2 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_content_protection@mei-interface.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@uevent: - shard-bmg: [SKIP][319] ([Intel XE#2423]) -> [FAIL][320] ([Intel XE#1188]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@uevent.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][321] ([Intel XE#2320]) -> [SKIP][322] ([Intel XE#2423]) +4 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_cursor_crc@cursor-offscreen-128x42.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-random-256x85: - shard-bmg: [SKIP][323] ([Intel XE#2320]) -> [SKIP][324] ([Intel XE#3007]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_cursor_crc@cursor-random-256x85.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_cursor_crc@cursor-random-256x85.html * igt at kms_cursor_crc@cursor-random-32x10: - shard-bmg: [SKIP][325] ([Intel XE#3007]) -> [SKIP][326] ([Intel XE#2320]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_cursor_crc@cursor-random-32x10.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at kms_cursor_crc@cursor-random-32x10.html * igt at kms_cursor_crc@cursor-rapid-movement-128x42: - shard-bmg: [SKIP][327] ([Intel XE#2423]) -> [SKIP][328] ([Intel XE#2320]) +2 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-rapid-movement-128x42.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-5/igt at kms_cursor_crc@cursor-rapid-movement-128x42.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][329] ([Intel XE#2423]) -> [SKIP][330] ([Intel XE#2321]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x512.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@cursor-vs-flip-legacy: - shard-bmg: [SKIP][331] ([Intel XE#2423]) -> [INCOMPLETE][332] ([Intel XE#3226]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_legacy@cursor-vs-flip-legacy.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-8/igt at kms_cursor_legacy@cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [SKIP][333] ([Intel XE#2291]) -> [SKIP][334] ([Intel XE#2423]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-bmg: [SKIP][335] ([Intel XE#2423]) -> [SKIP][336] ([Intel XE#2286]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: [SKIP][337] ([Intel XE#2136]) -> [SKIP][338] ([Intel XE#1508]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [FAIL][339] ([Intel XE#2141]) -> [SKIP][340] ([Intel XE#2136]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_draw_crc@fill-fb: - shard-dg2-set2: [SKIP][341] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][342] ([Intel XE#2136] / [Intel XE#2231]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_draw_crc@fill-fb.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_draw_crc@fill-fb.html * igt at kms_dsc@dsc-basic: - shard-bmg: [SKIP][343] ([Intel XE#2136]) -> [SKIP][344] ([Intel XE#2244]) +2 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_dsc@dsc-basic.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][345] ([Intel XE#2136]) -> [SKIP][346] ([Intel XE#455]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-463/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [FAIL][347] ([Intel XE#1695]) -> [SKIP][348] ([Intel XE#2136]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_fbcon_fbt@fbc-suspend.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][349] ([Intel XE#2372]) -> [SKIP][350] ([Intel XE#2423]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_feature_discovery@chamelium.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-bmg: [SKIP][351] ([Intel XE#1138]) -> [SKIP][352] ([Intel XE#2423]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_feature_discovery@display-4x.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][353] ([Intel XE#2423]) -> [SKIP][354] ([Intel XE#2375]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_feature_discovery@dp-mst.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-bmg: [SKIP][355] ([Intel XE#2374]) -> [SKIP][356] ([Intel XE#2423]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_feature_discovery@psr1.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][357] -> [SKIP][358] ([Intel XE#2423]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-flip-vs-suspend: - shard-bmg: [SKIP][359] ([Intel XE#2423]) -> [DMESG-WARN][360] ([Intel XE#2955]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-8/igt at kms_flip@2x-flip-vs-suspend.html * igt at kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [SKIP][361] ([Intel XE#2316]) -> [SKIP][362] ([Intel XE#2423]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip@2x-flip-vs-suspend-interruptible.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_flip@2x-flip-vs-suspend-interruptible.html * igt at kms_flip_event_leak@basic: - shard-bmg: [SKIP][363] ([Intel XE#3007]) -> [SKIP][364] ([Intel XE#2423]) +4 other tests skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip_event_leak@basic.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_flip_event_leak@basic.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: [SKIP][365] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][366] ([Intel XE#2136]) +4 other tests skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: [SKIP][367] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][368] ([Intel XE#2136] / [Intel XE#2231]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-dg2-set2: [SKIP][369] ([Intel XE#455]) -> [SKIP][370] ([Intel XE#2136] / [Intel XE#2231]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][371] ([Intel XE#2136]) -> [SKIP][372] ([Intel XE#2380]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][373] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][374] ([Intel XE#2293] / [Intel XE#2380]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-8/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][375] ([Intel XE#2136]) -> [SKIP][376] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][377] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][378] ([Intel XE#651]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][379] ([Intel XE#651]) -> [SKIP][380] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][381] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][382] ([Intel XE#2311]) +4 other tests skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html - shard-dg2-set2: [SKIP][383] ([Intel XE#2136]) -> [SKIP][384] ([Intel XE#651]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-433/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][385] ([Intel XE#2136]) -> [SKIP][386] ([Intel XE#2136] / [Intel XE#2231]) +7 other tests skip [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][387] ([Intel XE#2136]) -> [SKIP][388] ([Intel XE#2311]) +22 other tests skip [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-8/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][389] ([Intel XE#2312]) -> [SKIP][390] ([Intel XE#2311]) +3 other tests skip [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: [SKIP][391] ([Intel XE#2311]) -> [SKIP][392] ([Intel XE#2136]) +28 other tests skip [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [FAIL][393] ([Intel XE#2333]) -> [SKIP][394] ([Intel XE#2136]) +17 other tests skip [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][395] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][396] ([Intel XE#2333]) +2 other tests fail [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [FAIL][397] ([Intel XE#2333]) -> [SKIP][398] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][399] ([Intel XE#2136]) -> [FAIL][400] ([Intel XE#2333]) +8 other tests fail [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][401] ([Intel XE#2311]) -> [SKIP][402] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/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-indfb-pgflip-blt: - shard-dg2-set2: [SKIP][403] ([Intel XE#2136]) -> [SKIP][404] ([Intel XE#653]) +4 other tests skip [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][405] ([Intel XE#653]) -> [SKIP][406] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][407] ([Intel XE#2313]) -> [SKIP][408] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][409] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][410] ([Intel XE#2136]) +9 other tests skip [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][411] ([Intel XE#2312]) -> [SKIP][412] ([Intel XE#2313]) +8 other tests skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][413] ([Intel XE#2313]) -> [SKIP][414] ([Intel XE#2136]) +38 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][415] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][416] ([Intel XE#2352]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-dg2-set2: [SKIP][417] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][418] ([Intel XE#658]) [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][419] ([Intel XE#2350]) -> [SKIP][420] ([Intel XE#2136]) [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@plane-fbc-rte.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][421] ([Intel XE#2136]) -> [SKIP][422] ([Intel XE#2313]) +33 other tests skip [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][423] ([Intel XE#2312]) -> [SKIP][424] ([Intel XE#2136]) +11 other tests skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][425] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][426] ([Intel XE#653]) +2 other tests skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-436/igt at kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][427] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][428] ([Intel XE#2313]) +4 other tests skip [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][429] ([Intel XE#2423]) -> [SKIP][430] ([Intel XE#2340]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_getfb@getfb2-accept-ccs.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-5/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][431] ([Intel XE#2423] / [i915#2575]) -> [SKIP][432] ([Intel XE#455]) +3 other tests skip [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_hdr@invalid-hdr.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][433] ([Intel XE#2136]) -> [SKIP][434] ([Intel XE#2934]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_joiner@basic-force-ultra-joiner.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-4/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][435] ([Intel XE#346]) -> [SKIP][436] ([Intel XE#2136]) [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_joiner@invalid-modeset-big-joiner.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][437] ([Intel XE#2423]) -> [SKIP][438] ([Intel XE#2501]) [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][439] ([Intel XE#2423]) -> [SKIP][440] ([Intel XE#2393]) [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_lowres@tiling-y.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_lowres@tiling-yf: - shard-bmg: [SKIP][441] ([Intel XE#2393]) -> [SKIP][442] ([Intel XE#3007]) [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_plane_lowres@tiling-yf.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][443] ([Intel XE#2423]) -> [SKIP][444] ([Intel XE#2493]) [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_multiple@tiling-yf.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-4/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-bmg: [SKIP][445] ([Intel XE#2763]) -> [SKIP][446] ([Intel XE#2423]) +3 other tests skip [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-dg2-set2: [SKIP][447] ([Intel XE#2423] / [i915#2575]) -> [SKIP][448] ([i915#2575]) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][449] ([Intel XE#2423]) -> [SKIP][450] ([Intel XE#2763]) +2 other tests skip [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-4/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_backlight@fade-with-suspend: - shard-bmg: [SKIP][451] ([Intel XE#870]) -> [SKIP][452] ([Intel XE#2136]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_pm_backlight@fade-with-suspend.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][453] ([Intel XE#3309]) -> [SKIP][454] ([Intel XE#2136]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_pm_dc@dc5-retention-flops.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: [FAIL][455] ([Intel XE#1430]) -> [SKIP][456] ([Intel XE#2136]) [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_pm_dc@dc6-dpms.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-bmg: [SKIP][457] ([Intel XE#2392]) -> [SKIP][458] ([Intel XE#2136]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_pm_dc@dc6-psr.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][459] ([Intel XE#2446]) -> [SKIP][460] ([Intel XE#1439] / [Intel XE#836]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][461] ([Intel XE#2136]) -> [SKIP][462] ([Intel XE#1489]) +7 other tests skip [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][463] ([Intel XE#1489]) -> [SKIP][464] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][465] ([Intel XE#1489]) -> [SKIP][466] ([Intel XE#2136]) +6 other tests skip [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][467] ([Intel XE#2136]) -> [SKIP][468] ([Intel XE#1489]) +1 other test skip [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-466/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html - shard-bmg: [SKIP][469] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][470] ([Intel XE#1489]) +1 other test skip [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-8/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-bmg: [SKIP][471] ([Intel XE#1489]) -> [SKIP][472] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][473] ([Intel XE#2387]) -> [SKIP][474] ([Intel XE#2136]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-bmg: [SKIP][475] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][476] ([Intel XE#2136]) +19 other tests skip [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_psr@fbc-pr-cursor-plane-onoff.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-psr-suspend: - shard-bmg: [SKIP][477] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][478] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr@fbc-psr-suspend.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at kms_psr@fbc-psr-suspend.html - shard-dg2-set2: [SKIP][479] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][480] ([Intel XE#2850] / [Intel XE#929]) [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@fbc-psr-suspend.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_psr@fbc-psr-suspend.html * igt at kms_psr@fbc-psr2-cursor-blt: - shard-bmg: [SKIP][481] ([Intel XE#2136]) -> [SKIP][482] ([Intel XE#2234] / [Intel XE#2850]) +12 other tests skip [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr@fbc-psr2-cursor-blt.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_psr@fbc-psr2-cursor-blt.html * igt at kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: [SKIP][483] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][484] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_psr@fbc-psr2-cursor-plane-move.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_psr@fbc-psr2-cursor-plane-move.html - shard-dg2-set2: [SKIP][485] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][486] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@fbc-psr2-cursor-plane-move.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_psr@fbc-psr2-cursor-plane-move.html * igt at kms_psr@psr2-cursor-plane-onoff: - shard-dg2-set2: [SKIP][487] ([Intel XE#2136]) -> [SKIP][488] ([Intel XE#2850] / [Intel XE#929]) [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@psr2-cursor-plane-onoff.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-435/igt at kms_psr@psr2-cursor-plane-onoff.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][489] ([Intel XE#2136]) -> [SKIP][490] ([Intel XE#2414]) [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2-set2: [SKIP][491] ([Intel XE#3414]) -> [SKIP][492] ([i915#2575]) [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_rotation_crc@bad-tiling.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_rotation_crc@bad-tiling.html - shard-bmg: [SKIP][493] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][494] ([Intel XE#3007]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_rotation_crc@bad-tiling.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][495] ([Intel XE#2423] / [i915#2575]) -> [SKIP][496] ([Intel XE#3414]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-bmg: [SKIP][497] ([Intel XE#3007]) -> [SKIP][498] ([Intel XE#3414] / [Intel XE#3904]) [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: [SKIP][499] ([Intel XE#2330]) -> [SKIP][500] ([Intel XE#2423]) [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-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-bmg: [SKIP][501] ([Intel XE#2423]) -> [SKIP][502] ([Intel XE#2330]) [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: [SKIP][503] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][504] ([Intel XE#2423]) +2 other tests skip [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][505] ([Intel XE#2423]) -> [SKIP][506] ([Intel XE#2413]) [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-center.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-4/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-full: - shard-bmg: [SKIP][507] ([Intel XE#2413]) -> [SKIP][508] ([Intel XE#2423]) [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_scaling_modes@scaling-mode-full.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_sequence@queue-idle: - shard-bmg: [SKIP][509] ([Intel XE#2423]) -> [SKIP][510] ([Intel XE#3007]) +3 other tests skip [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_sequence@queue-idle.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at kms_sequence@queue-idle.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: [SKIP][511] ([Intel XE#1435]) -> [SKIP][512] ([Intel XE#2423]) +1 other test skip [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_setmode@basic-clone-single-crtc.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][513] ([Intel XE#2426]) -> [SKIP][514] ([Intel XE#2423]) [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_tiled_display@basic-test-pattern.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][515] ([Intel XE#362]) -> [SKIP][516] ([Intel XE#1500]) [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@cmrr: - shard-bmg: [SKIP][517] ([Intel XE#2423]) -> [SKIP][518] ([Intel XE#2168]) [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_vrr@cmrr.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-4/igt at kms_vrr@cmrr.html * igt at kms_vrr@flip-basic: - shard-bmg: [SKIP][519] ([Intel XE#1499]) -> [SKIP][520] ([Intel XE#2423]) +1 other test skip [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_vrr@flip-basic.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_vrr@flip-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][521] ([Intel XE#3007]) -> [SKIP][522] ([Intel XE#1499]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_vrr@seamless-rr-switch-drrs.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-dg2-set2: [SKIP][523] ([Intel XE#455]) -> [SKIP][524] ([i915#2575]) +1 other test skip [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_vrr@seamless-rr-switch-virtual.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: [SKIP][525] ([Intel XE#756]) -> [SKIP][526] ([Intel XE#2423]) [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_writeback@writeback-check-output-xrgb2101010.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-bmg: [SKIP][527] ([Intel XE#2423]) -> [SKIP][528] ([Intel XE#756]) [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_writeback@writeback-fb-id.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-4/igt at kms_writeback@writeback-fb-id.html * igt at xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][529] ([Intel XE#1130]) -> [SKIP][530] ([Intel XE#1126]) [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0x369.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-463/igt at xe_copy_basic@mem-set-linear-0x369.html * igt at xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][531] ([Intel XE#1126]) -> [SKIP][532] ([Intel XE#1130]) [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0xfd.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at xe_copy_basic@mem-set-linear-0xfd.html * igt at xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][533] ([Intel XE#1130]) -> [SKIP][534] ([Intel XE#2504]) [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_create@multigpu-create-massive-size.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/igt at xe_create@multigpu-create-massive-size.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][535] ([Intel XE#3889]) -> [SKIP][536] ([Intel XE#1130]) [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at xe_eudebug@basic-vm-access-parameters-userptr.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][537] ([Intel XE#1130]) -> [SKIP][538] ([Intel XE#2905]) +13 other tests skip [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-bmg: [SKIP][539] ([Intel XE#1130]) -> [SKIP][540] ([Intel XE#3889]) [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@discovery-race: - shard-dg2-set2: [SKIP][541] ([Intel XE#1130]) -> [SKIP][542] ([Intel XE#2905]) +1 other test skip [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_eudebug@discovery-race.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-434/igt at xe_eudebug@discovery-race.html * igt at xe_eudebug_online@single-step: - shard-bmg: [SKIP][543] ([Intel XE#2905]) -> [SKIP][544] ([Intel XE#1130]) +12 other tests skip [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_eudebug_online@single-step.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at xe_eudebug_online@single-step.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: [SKIP][545] ([Intel XE#2322]) -> [SKIP][546] ([Intel XE#1130]) +11 other tests skip [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][547] ([Intel XE#1130]) -> [SKIP][548] ([Intel XE#2322]) +9 other tests skip [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-5/igt at xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch: - shard-dg2-set2: [SKIP][549] ([Intel XE#288]) -> [SKIP][550] ([Intel XE#1130]) +4 other tests skip [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html * igt at xe_exec_fault_mode@once-userptr-invalidate-race-imm: - shard-dg2-set2: [SKIP][551] ([Intel XE#1130]) -> [SKIP][552] ([Intel XE#288]) +4 other tests skip [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_fault_mode@once-userptr-invalidate-race-imm.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-436/igt at xe_exec_fault_mode@once-userptr-invalidate-race-imm.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][553] ([Intel XE#2459] / [Intel XE#2596]) -> [SKIP][554] ([Intel XE#1130]) [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_media_fill@media-fill.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at xe_media_fill@media-fill.html * igt at xe_mmap@small-bar: - shard-bmg: [SKIP][555] ([Intel XE#586]) -> [SKIP][556] ([Intel XE#1130]) [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_mmap@small-bar.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at xe_mmap@small-bar.html * igt at xe_oa@non-system-wide-paranoid: - shard-dg2-set2: [SKIP][557] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][558] ([Intel XE#1130]) +1 other test skip [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_oa@non-system-wide-paranoid.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at xe_oa@non-system-wide-paranoid.html * igt at xe_oa@oa-regs-whitelisted: - shard-dg2-set2: [SKIP][559] ([Intel XE#1130]) -> [SKIP][560] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_oa@oa-regs-whitelisted.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-433/igt at xe_oa@oa-regs-whitelisted.html * igt at xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][561] ([Intel XE#1420]) -> [SKIP][562] ([Intel XE#1130]) [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_pat@pat-index-xehpc.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at xe_pat@pat-index-xehpc.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][563] ([Intel XE#1130]) -> [SKIP][564] ([Intel XE#2245]) [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_pat@pat-index-xelp.html [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-2/igt at xe_pat@pat-index-xelp.html * igt at xe_pat@pat-index-xelpg: - shard-bmg: [SKIP][565] ([Intel XE#2236]) -> [SKIP][566] ([Intel XE#1130]) [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_pat@pat-index-xelpg.html [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at xe_pat@pat-index-xelpg.html * igt at xe_peer2peer@read: - shard-dg2-set2: [SKIP][567] ([Intel XE#1061]) -> [FAIL][568] ([Intel XE#1173]) [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_peer2peer@read.html [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-466/igt at xe_peer2peer@read.html * igt at xe_pm@d3cold-mmap-system: - shard-dg2-set2: [SKIP][569] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][570] ([Intel XE#1130]) [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at xe_pm@d3cold-mmap-system.html [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@d3cold-mocs: - shard-bmg: [SKIP][571] ([Intel XE#1130]) -> [SKIP][572] ([Intel XE#2284]) +1 other test skip [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_pm@d3cold-mocs.html [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at xe_pm@d3cold-mocs.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [ABORT][573] ([Intel XE#1358] / [Intel XE#1794]) -> [SKIP][574] ([Intel XE#1130]) [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html * igt at xe_query@multigpu-query-cs-cycles: - shard-bmg: [SKIP][575] ([Intel XE#944]) -> [SKIP][576] ([Intel XE#1130]) +2 other tests skip [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_query@multigpu-query-cs-cycles.html [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-invalid-extension: - shard-bmg: [SKIP][577] ([Intel XE#1130]) -> [SKIP][578] ([Intel XE#944]) +2 other tests skip [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_query@multigpu-query-invalid-extension.html [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-4/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_sriov_auto_provisioning@exclusive-ranges: - shard-bmg: [SKIP][579] -> [SKIP][580] ([Intel XE#1130]) [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at xe_sriov_auto_provisioning@exclusive-ranges.html [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-3/igt at xe_sriov_auto_provisioning@exclusive-ranges.html - shard-dg2-set2: [SKIP][581] -> [SKIP][582] ([Intel XE#1130]) [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_sriov_auto_provisioning@exclusive-ranges.html [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-dg2-432/igt at xe_sriov_auto_provisioning@exclusive-ranges.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-bmg: [SKIP][583] ([Intel XE#3342]) -> [SKIP][584] ([Intel XE#1130]) [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_sriov_flr@flr-vf1-clear.html [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/shard-bmg-7/igt at xe_sriov_flr@flr-vf1-clear.html [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [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#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#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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [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#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [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#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [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#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [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#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#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955 [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#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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [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#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#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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3802]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3802 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4057]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4057 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [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#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#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#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_8199 -> IGTPW_12469 * Linux: xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef -> xe-2516-fb87b4e061d1844beaca66c8446cfcf60db99a23 IGTPW_12469: 27414070fc43f52e70d66da13ee97d856fcb0373 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef xe-2516-fb87b4e061d1844beaca66c8446cfcf60db99a23: fb87b4e061d1844beaca66c8446cfcf60db99a23 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12469/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 21 00:12:38 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 21 Jan 2025 00:12:38 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_Add_SR-IOV_provisioning_sc?= =?utf-8?q?heduling_attributes_and_tests?= In-Reply-To: <20250120203445.16285-1-marcin.bernatowicz@linux.intel.com> References: <20250120203445.16285-1-marcin.bernatowicz@linux.intel.com> Message-ID: <173741835819.2361266.8878778048570610032@b555e5b46a47> == Series Details == Series: Add SR-IOV provisioning scheduling attributes and tests URL : https://patchwork.freedesktop.org/series/143762/ State : failure == Summary == CI Bug Log - changes from XEIGT_8199_full -> XEIGTPW_12470_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12470_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12470_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_12470_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@2x-flip-vs-expired-vblank at bd-dp2-hdmi-a3: - shard-bmg: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip@2x-flip-vs-expired-vblank at bd-dp2-hdmi-a3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank at bd-dp2-hdmi-a3.html * {igt at xe_sriov_scheduling@nonpreempt-engine-resets} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][3] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at xe_sriov_scheduling@nonpreempt-engine-resets.html - shard-lnl: NOTRUN -> [SKIP][4] +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-3/igt at xe_sriov_scheduling@nonpreempt-engine-resets.html #### Warnings #### * igt at kms_content_protection@atomic-dpms at pipe-a-dp-4: - shard-dg2-set2: [FAIL][5] ([Intel XE#1178]) -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_content_protection@atomic-dpms at pipe-a-dp-4.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_content_protection@atomic-dpms at pipe-a-dp-4.html New tests --------- New tests have been introduced between XEIGT_8199_full and XEIGTPW_12470_full: ### New IGT tests (2) ### * igt at xe_sriov_scheduling@equal-throughput: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at xe_sriov_scheduling@nonpreempt-engine-resets: - Statuses : 3 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12470_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at core_hotunplug@hotrebind-lateclose: - shard-bmg: [PASS][7] -> [SKIP][8] ([Intel XE#1885]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at core_hotunplug@hotrebind-lateclose.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at core_hotunplug@hotrebind-lateclose.html * igt at fbdev@unaligned-write: - shard-bmg: [PASS][9] -> [SKIP][10] ([Intel XE#2134]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at fbdev@unaligned-write.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at fbdev@unaligned-write.html * igt at intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1125]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-4/igt at intel_hwmon@hwmon-write.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: NOTRUN -> [FAIL][12] ([Intel XE#3719]) +3 other tests fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-4/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-hdmi-a-2-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#3767]) +15 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-432/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-2-4-rc-ccs-cc.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#2136]) +4 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html - shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt at kms_big_fb@linear-64bpp-rotate-0: - shard-lnl: NOTRUN -> [DMESG-WARN][18] ([Intel XE#1725]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-6/igt at kms_big_fb@linear-64bpp-rotate-0.html * igt at kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#316]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-434/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1407]) +5 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-4/igt at kms_big_fb@x-tiled-8bpp-rotate-270.html * igt at kms_big_fb@x-tiled-addfb: - shard-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#2136]) +21 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_big_fb@x-tiled-addfb.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_big_fb@x-tiled-addfb.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +7 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-463/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#607]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-434/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: NOTRUN -> [SKIP][25] ([Intel XE#610]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +6 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-6/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2191]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-5/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2191]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-463/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#367]) +7 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-432/igt at kms_bw@linear-tiling-2-displays-3840x2160p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1512]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-6/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2887]) +9 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-1/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html * igt at kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#455] / [Intel XE#787]) +27 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#787]) +125 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2907]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-434/igt at kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][35] -> [INCOMPLETE][36] ([Intel XE#3862]) +1 other test incomplete [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-8/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#3432]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-8/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2652] / [Intel XE#787]) +11 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4: - shard-dg2-set2: [PASS][39] -> [DMESG-WARN][40] ([Intel XE#1727] / [Intel XE#3113]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-463/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-b-dp-4.html * igt at kms_cdclk@mode-transition at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#314]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-434/igt at kms_cdclk@mode-transition at pipe-d-dp-4.html * igt at kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#306]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-1/igt at kms_chamelium_color@ctm-blue-to-red.html - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#306]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at kms_chamelium_color@ctm-blue-to-red.html * igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#373]) +9 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-463/igt at kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt at kms_chamelium_hpd@vga-hpd-without-ddc: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#373]) +6 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-3/igt at kms_chamelium_hpd@vga-hpd-without-ddc.html * igt at kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#307]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-8/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy at pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#1178]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-434/igt at kms_content_protection@legacy at pipe-a-dp-4.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][48] ([Intel XE#1178]) +1 other test fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-1/igt at kms_content_protection@lic-type-0 at pipe-a-dp-2.html * igt at kms_content_protection@type1: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#3278]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-3/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][50] ([Intel XE#1188]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-1/igt at kms_content_protection@uevent at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#308]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#2321]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-6/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-sliding-128x42: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1424]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-6/igt at kms_cursor_crc@cursor-sliding-128x42.html * igt at kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-bmg: [PASS][54] -> [INCOMPLETE][55] ([Intel XE#3226]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_cursor_legacy@cursorb-vs-flipb-legacy.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#323]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#323]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-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][58] ([Intel XE#3383]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-1/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#701]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-436/igt at kms_feature_discovery@chamelium.html - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#701]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-1/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#702]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-5/igt at kms_feature_discovery@display-2x.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [PASS][63] -> [FAIL][64] ([Intel XE#301]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][65] ([Intel XE#301] / [Intel XE#3321]) +2 other tests fail [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/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 bc-dp2-hdmi-a3: - shard-bmg: [PASS][66] -> [FAIL][67] ([Intel XE#3321]) +1 other test fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-dp2-hdmi-a3.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/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 cd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][68] ([Intel XE#301]) +5 other tests fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-modeset: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1421]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-7/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#2423]) +101 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_flip@2x-plain-flip-fb-recreate.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_flip@2x-plain-flip-fb-recreate.html * igt at kms_flip@absolute-wf_vblank: - shard-dg2-set2: [PASS][72] -> [SKIP][73] ([Intel XE#2423] / [i915#2575]) +13 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_flip@absolute-wf_vblank.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_flip@absolute-wf_vblank.html * igt at kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2293]) +5 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/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-xtile-to-64bpp-xtile-upscaling: - shard-dg2-set2: [PASS][75] -> [SKIP][76] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1401]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-3/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1397] / [Intel XE#1745]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/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][80] ([Intel XE#1397]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/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-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#455]) +9 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_force_connector_basic@force-connector-state: - shard-bmg: [PASS][82] -> [SKIP][83] ([Intel XE#3007]) +11 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_force_connector_basic@force-connector-state.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_force_connector_basic@force-connector-state.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#651]) +6 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#651]) +23 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-432/igt at kms_frontbuffer_tracking@drrs-suspend.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#2136]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#656]) +24 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#658]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#653]) +20 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt at kms_invalid_mode@overflow-vrefresh: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2423] / [i915#2575]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_invalid_mode@overflow-vrefresh.html * igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][91] ([Intel XE#616]) +2 other tests fail [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at kms_plane_cursor@primary at pipe-a-hdmi-a-6-size-256.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#309]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-7/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-c: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#2763]) +11 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/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-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_12470/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_12470/shard-dg2-463/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2763]) +11 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 at pipe-a.html * igt at kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#870]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2938]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#1129]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-432/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@i2c: - shard-bmg: [PASS][100] -> [SKIP][101] ([Intel XE#2446]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_pm_rpm@i2c.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_pm_rpm@i2c.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1439] / [Intel XE#3141]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-3/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [PASS][103] -> [SKIP][104] ([Intel XE#2446]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_pm_rpm@system-suspend-modeset.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_pm_rpm@system-suspend-modeset.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#1489]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#1122]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@pr-sprite-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1406]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-7/igt at kms_psr@pr-sprite-plane-onoff.html * igt at kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at kms_psr@psr-dpms.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#3414]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at kms_rotation_crc@primary-rotation-90.html - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-3/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1435]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-6/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_sysfs_edid_timing: - shard-bmg: [PASS][112] -> [FAIL][113] ([Intel XE#1174]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_sysfs_edid_timing.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-4/igt at kms_sysfs_edid_timing.html * igt at kms_tiled_display@basic-test-pattern: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#362]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-8/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2168]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-432/igt at kms_vrr@lobf.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#756]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-3/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#756]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1091] / [Intel XE#2849]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-436/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1130]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#3889]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-463/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#3889]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-8/igt at xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt at xe_eudebug_online@preempt-breakpoint: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2905]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-1/igt at xe_eudebug_online@preempt-breakpoint.html * igt at xe_evict@evict-beng-large-cm: - shard-dg2-set2: [PASS][123] -> [SKIP][124] ([Intel XE#1130]) +26 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_evict@evict-beng-large-cm.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at xe_evict@evict-beng-large-cm.html * igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#688]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-8/igt at xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1392]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-2/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-once-null: - shard-dg2-set2: [PASS][127] -> [SKIP][128] ([Intel XE#1392]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_exec_basic@multigpu-once-null.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-432/igt at xe_exec_basic@multigpu-once-null.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#288]) +17 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2905]) +7 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-434/igt at xe_exec_sip_eudebug@breakpoint-writesip.html * igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [PASS][131] -> [SKIP][132] ([Intel XE#1130]) +250 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt at xe_mmap@pci-membarrier-bad-pagesize: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#4045]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-4/igt at xe_mmap@pci-membarrier-bad-pagesize.html * igt at xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#512]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at xe_mmap@small-bar.html * igt at xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at xe_oa@whitelisted-registers-userspace-config.html * igt at xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#977]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at xe_pat@pat-index-xe2.html * igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][137] ([Intel XE#1173]) +2 other tests fail [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at xe_peer2peer@read at read-gpua-vram01-gpub-system-p2p.html * igt at xe_peer2peer@write: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1061]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-5/igt at xe_peer2peer@write.html * igt at xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2284] / [Intel XE#366]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-434/igt at xe_pm@d3cold-mmap-vram.html - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#2284] / [Intel XE#366]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-6/igt at xe_pm@d3cold-mmap-vram.html * igt at xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1948]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-4/igt at xe_pm@d3hot-mmap-vram.html * igt at xe_pm@s3-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#584]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-1/igt at xe_pm@s3-vm-bind-unbind-all.html * igt at xe_pm@s4-vm-bind-userptr: - shard-lnl: [PASS][143] -> [ABORT][144] ([Intel XE#1358] / [Intel XE#1794]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-8/igt at xe_pm@s4-vm-bind-userptr.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-2/igt at xe_pm@s4-vm-bind-userptr.html * igt at xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#579]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-463/igt at xe_pm@vram-d3cold-threshold.html * igt at xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#944]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-invalid-cs-cycles: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#944]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-5/igt at xe_query@multigpu-query-invalid-cs-cycles.html * igt at xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#3342]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at xe_sriov_flr@flr-vf1-clear.html * {igt at xe_sriov_scheduling@nonpreempt-engine-resets} (NEW): - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#1130]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at xe_sriov_scheduling@nonpreempt-engine-resets.html #### Possible fixes #### * igt at core_hotunplug@hotrebind: - shard-bmg: [SKIP][150] ([Intel XE#1885]) -> [PASS][151] +1 other test pass [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at core_hotunplug@hotrebind.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at core_hotunplug@hotrebind.html * igt at fbdev@pan: - shard-bmg: [SKIP][152] ([Intel XE#2134]) -> [PASS][153] +1 other test pass [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at fbdev@pan.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at fbdev@pan.html * igt at kms_addfb_basic@unused-pitches: - shard-dg2-set2: [SKIP][154] ([Intel XE#2423] / [i915#2575]) -> [PASS][155] +17 other tests pass [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_addfb_basic@unused-pitches.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_addfb_basic@unused-pitches.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-c-dp-4-4-rc-ccs: - shard-dg2-set2: [SKIP][156] ([Intel XE#2550] / [Intel XE#3767]) -> [PASS][157] +7 other tests pass [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-c-dp-4-4-rc-ccs.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-c-dp-4-4-rc-ccs.html * igt at kms_big_fb@x-tiled-16bpp-rotate-0: - shard-bmg: [SKIP][158] ([Intel XE#2136]) -> [PASS][159] +14 other tests pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@x-tiled-16bpp-rotate-0.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at kms_big_fb@x-tiled-16bpp-rotate-0.html * igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][160] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [SKIP][162] ([Intel XE#2136]) -> [PASS][163] +4 other tests pass [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-463/igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt at kms_draw_crc@fill-fb: - shard-dg2-set2: [SKIP][164] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_draw_crc@fill-fb.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-436/igt at kms_draw_crc@fill-fb.html - shard-bmg: [SKIP][166] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_draw_crc@fill-fb.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at kms_draw_crc@fill-fb.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3: - shard-bmg: [FAIL][168] -> [PASS][169] +1 other test pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ab-dp2-hdmi-a3.html * igt at kms_flip@2x-flip-vs-panning-interruptible: - shard-bmg: [SKIP][170] ([Intel XE#2316]) -> [PASS][171] +3 other tests pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_flip@2x-flip-vs-panning-interruptible.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-4/igt at kms_flip@2x-flip-vs-panning-interruptible.html * igt at kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][172] ([Intel XE#886]) -> [PASS][173] +2 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_flip@blocking-wf_vblank.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-8/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6: - shard-dg2-set2: [FAIL][174] ([Intel XE#301]) -> [PASS][175] +3 other tests pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-463/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a6.html * igt at kms_flip@flip-vs-panning-vs-hang: - shard-bmg: [SKIP][176] ([Intel XE#2423]) -> [PASS][177] +78 other tests pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip@flip-vs-panning-vs-hang.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at kms_flip@flip-vs-panning-vs-hang.html * igt at kms_flip@plain-flip-fb-recreate: - shard-bmg: [FAIL][178] ([Intel XE#2882]) -> [PASS][179] +1 other test pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_flip@plain-flip-fb-recreate.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-dg2-set2: [ABORT][180] ([Intel XE#2625]) -> [PASS][181] +1 other test pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_plane@plane-panning-bottom-right-suspend.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_cursor@viewport: - shard-dg2-set2: [FAIL][182] ([Intel XE#616]) -> [PASS][183] +1 other test pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_plane_cursor@viewport.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-434/igt at kms_plane_cursor@viewport.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][184] ([Intel XE#2571]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_plane_scaling@2x-scaler-multi-pipe.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-1/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-bmg: [SKIP][186] ([Intel XE#3007]) -> [PASS][187] +16 other tests pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-1/igt at kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt at kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][188] ([Intel XE#718]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-7/igt at kms_pm_dc@dc5-psr.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-4/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-bmg: [SKIP][190] ([Intel XE#2446]) -> [PASS][191] +3 other tests pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-4/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_psr@psr2-primary-render: - shard-lnl: [FAIL][192] -> [PASS][193] +1 other test pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-lnl-6/igt at kms_psr@psr2-primary-render.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-lnl-6/igt at kms_psr@psr2-primary-render.html * igt at kms_rmfb@close-fd: - shard-dg2-set2: [INCOMPLETE][194] -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_rmfb@close-fd.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-432/igt at kms_rmfb@close-fd.html * igt at xe_exec_balancer@twice-virtual-basic: - shard-dg2-set2: [SKIP][196] ([Intel XE#1130]) -> [PASS][197] +31 other tests pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_balancer@twice-virtual-basic.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-436/igt at xe_exec_balancer@twice-virtual-basic.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-dg2-set2: [SKIP][198] ([Intel XE#1392]) -> [PASS][199] +4 other tests pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-434/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html * igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate: - shard-bmg: [SKIP][200] ([Intel XE#1130]) -> [PASS][201] +196 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-4/igt at xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html * igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit: - shard-bmg: [FAIL][202] ([Intel XE#1999]) -> [PASS][203] +2 other tests pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-8/igt at xe_live_ktest@xe_mocs at xe_live_mocs_kernel_kunit.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [ABORT][204] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-434/igt at xe_pm@s2idle-vm-bind-unbind-all.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][206] ([Intel XE#2233]) -> [SKIP][207] ([Intel XE#2423]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][208] ([Intel XE#2423]) -> [SKIP][209] ([Intel XE#873]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_async_flips@invalid-async-flip.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at kms_async_flips@invalid-async-flip.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][210] ([Intel XE#2385]) -> [SKIP][211] ([Intel XE#2423]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: [SKIP][212] ([Intel XE#2370]) -> [SKIP][213] ([Intel XE#2423]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/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-bmg: [SKIP][214] ([Intel XE#2423]) -> [SKIP][215] ([Intel XE#2370]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-1/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][216] ([Intel XE#2327]) -> [SKIP][217] ([Intel XE#2136]) +6 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_big_fb@4-tiled-32bpp-rotate-90.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: [SKIP][218] ([Intel XE#2136]) -> [SKIP][219] ([Intel XE#316]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@linear-16bpp-rotate-270.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-432/igt at kms_big_fb@linear-16bpp-rotate-270.html - shard-bmg: [SKIP][220] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][221] ([Intel XE#2327]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@linear-16bpp-rotate-270.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-8/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: [SKIP][222] ([Intel XE#2136]) -> [SKIP][223] ([Intel XE#2327]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@linear-32bpp-rotate-90.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-4/igt at kms_big_fb@linear-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][224] ([Intel XE#2136]) -> [SKIP][225] ([Intel XE#607]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/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-async-flip: - shard-dg2-set2: [SKIP][226] ([Intel XE#1124]) -> [SKIP][227] ([Intel XE#2136]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][228] ([Intel XE#1124]) -> [SKIP][229] ([Intel XE#2136]) +11 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][230] ([Intel XE#2136]) -> [SKIP][231] ([Intel XE#1124]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-434/igt at kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [SKIP][232] ([Intel XE#2136]) -> [SKIP][233] ([Intel XE#1124]) +11 other tests skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][234] ([Intel XE#1124]) -> [SKIP][235] ([Intel XE#2136] / [Intel XE#2351]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-bmg: [SKIP][236] ([Intel XE#1124]) -> [SKIP][237] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][238] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][239] ([Intel XE#1124]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][240] ([Intel XE#619]) -> [SKIP][241] ([Intel XE#2136] / [Intel XE#2351]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][242] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][243] ([Intel XE#2423]) +2 other tests skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][244] ([Intel XE#2423]) -> [SKIP][245] ([Intel XE#2314] / [Intel XE#2894]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-1/igt at kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt at kms_bw@linear-tiling-1-displays-2160x1440p: - shard-bmg: [SKIP][246] ([Intel XE#2423]) -> [SKIP][247] ([Intel XE#367]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-2160x1440p.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-4/igt at kms_bw@linear-tiling-1-displays-2160x1440p.html * igt at kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][248] ([Intel XE#3007]) -> [SKIP][249] ([Intel XE#367]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-4/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html - shard-dg2-set2: [SKIP][250] ([Intel XE#2423] / [i915#2575]) -> [SKIP][251] ([Intel XE#367]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at kms_bw@linear-tiling-2-displays-2160x1440p.html * igt at kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: [SKIP][252] ([Intel XE#367]) -> [SKIP][253] ([Intel XE#2423]) +4 other tests skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_bw@linear-tiling-4-displays-1920x1080p.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][254] ([Intel XE#2887]) -> [SKIP][255] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][256] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][257] ([Intel XE#2136] / [Intel XE#2351]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][258] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][259] ([Intel XE#2136]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][260] ([Intel XE#2136]) -> [SKIP][261] ([Intel XE#2887]) +14 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs: - shard-dg2-set2: [SKIP][262] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][263] ([Intel XE#455] / [Intel XE#787]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][264] ([Intel XE#3432]) -> [SKIP][265] ([Intel XE#2136] / [Intel XE#2231]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][266] ([Intel XE#3432]) -> [SKIP][267] ([Intel XE#2136]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][268] ([Intel XE#2136]) -> [SKIP][269] ([Intel XE#3432]) +2 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][270] ([Intel XE#2136]) -> [SKIP][271] ([Intel XE#2652] / [Intel XE#787]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/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: - shard-bmg: [SKIP][272] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][273] ([Intel XE#2887]) +3 other tests skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-4/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][274] ([Intel XE#2887]) -> [SKIP][275] ([Intel XE#2136]) +17 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html - shard-dg2-set2: [DMESG-WARN][276] ([Intel XE#1727]) -> [INCOMPLETE][277] ([Intel XE#1727] / [Intel XE#3124]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/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-d-dp-4: - shard-dg2-set2: [DMESG-WARN][278] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113]) -> [INCOMPLETE][279] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-4.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-436/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 at pipe-c-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][280] ([Intel XE#1727]) -> [INCOMPLETE][281] ([Intel XE#3124]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs at pipe-c-hdmi-a-6.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-463/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-4-tiled-lnl-ccs: - shard-bmg: [SKIP][282] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][283] ([Intel XE#2136]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-ccs: - shard-dg2-set2: [SKIP][284] ([Intel XE#2136]) -> [SKIP][285] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at kms_ccs@random-ccs-data-y-tiled-ccs.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][286] ([Intel XE#2136]) -> [SKIP][287] ([Intel XE#2724]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cdclk@mode-transition.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-8/igt at kms_cdclk@mode-transition.html * igt at kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][288] ([Intel XE#2325]) -> [SKIP][289] ([Intel XE#2423]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_chamelium_color@ctm-0-50.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@ctm-red-to-blue: - shard-bmg: [SKIP][290] ([Intel XE#2423]) -> [SKIP][291] ([Intel XE#2325]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_color@ctm-red-to-blue.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-1/igt at kms_chamelium_color@ctm-red-to-blue.html * igt at kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][292] ([Intel XE#2423]) -> [SKIP][293] ([Intel XE#3007]) +5 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html - shard-dg2-set2: [SKIP][294] ([Intel XE#373]) -> [SKIP][295] ([Intel XE#2423] / [i915#2575]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-bmg: [SKIP][296] ([Intel XE#2423]) -> [SKIP][297] ([Intel XE#2252]) +9 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-1/igt at kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][298] ([Intel XE#2252]) -> [SKIP][299] ([Intel XE#2423]) +9 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_chamelium_hpd@common-hpd-after-suspend.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: [SKIP][300] ([Intel XE#3007]) -> [SKIP][301] ([Intel XE#2252]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_chamelium_hpd@dp-hpd-storm.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at kms_chamelium_hpd@dp-hpd-storm.html - shard-dg2-set2: [SKIP][302] ([Intel XE#2423] / [i915#2575]) -> [SKIP][303] ([Intel XE#373]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_chamelium_hpd@dp-hpd-storm.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_content_protection@atomic: - shard-bmg: [SKIP][304] ([Intel XE#2341]) -> [SKIP][305] ([Intel XE#2423]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_content_protection@atomic.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_content_protection@atomic.html * igt at kms_content_protection@atomic-dpms: - shard-dg2-set2: [FAIL][306] ([Intel XE#1178]) -> [INCOMPLETE][307] ([Intel XE#2715]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_content_protection@atomic-dpms.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_content_protection@atomic-dpms.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-2: - shard-bmg: [FAIL][308] ([Intel XE#1178]) -> [INCOMPLETE][309] ([Intel XE#2715]) +1 other test incomplete [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_content_protection@atomic-dpms at pipe-a-dp-2.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at kms_content_protection@atomic-dpms at pipe-a-dp-2.html * igt at kms_content_protection@content-type-change: - shard-bmg: [SKIP][310] ([Intel XE#3007]) -> [SKIP][311] ([Intel XE#2341]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_content_protection@content-type-change.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-0: - shard-dg2-set2: [SKIP][312] ([Intel XE#307]) -> [SKIP][313] ([Intel XE#2423] / [i915#2575]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_content_protection@dp-mst-type-0.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-bmg: [SKIP][314] ([Intel XE#2423]) -> [FAIL][315] ([Intel XE#1178]) +1 other test fail [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@legacy.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-8/igt at kms_content_protection@legacy.html * igt at kms_content_protection@srm: - shard-bmg: [FAIL][316] ([Intel XE#1178]) -> [SKIP][317] ([Intel XE#2423]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_content_protection@srm.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-bmg: [SKIP][318] ([Intel XE#2423]) -> [FAIL][319] ([Intel XE#1188]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_content_protection@uevent.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][320] ([Intel XE#2320]) -> [SKIP][321] ([Intel XE#2423]) +5 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_cursor_crc@cursor-offscreen-128x42.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-128x42.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: [SKIP][322] ([Intel XE#2321]) -> [SKIP][323] ([Intel XE#2423]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_crc@cursor-offscreen-512x512.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: [SKIP][324] ([Intel XE#2423]) -> [SKIP][325] ([Intel XE#2320]) +2 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-onscreen-32x32.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][326] ([Intel XE#2423]) -> [SKIP][327] ([Intel XE#2321]) +3 other tests skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x512.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-1/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: [SKIP][328] ([Intel XE#2286]) -> [SKIP][329] ([Intel XE#3007]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg2-set2: [SKIP][330] ([Intel XE#323]) -> [SKIP][331] ([Intel XE#2423] / [i915#2575]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [SKIP][332] ([Intel XE#2291]) -> [SKIP][333] ([Intel XE#2423]) +3 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-bmg: [SKIP][334] ([Intel XE#2423]) -> [SKIP][335] ([Intel XE#2286]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][336] ([Intel XE#2425]) -> [SKIP][337] ([Intel XE#2423]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_display_modes@extended-mode-basic.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][338] ([Intel XE#2423]) -> [SKIP][339] ([Intel XE#2323]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_display_modes@mst-extended-mode-negative.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-8/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][340] ([Intel XE#2244]) -> [SKIP][341] ([Intel XE#2136] / [Intel XE#2231]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_dsc@dsc-with-bpc: - shard-bmg: [SKIP][342] ([Intel XE#2136]) -> [SKIP][343] ([Intel XE#2244]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_dsc@dsc-with-bpc.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-4/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][344] ([Intel XE#2136]) -> [SKIP][345] ([Intel XE#455]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at kms_dsc@dsc-with-output-formats-with-bpc.html - shard-bmg: [SKIP][346] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][347] ([Intel XE#2244]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_dsc@dsc-with-output-formats-with-bpc.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-4/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@fbc: - shard-bmg: [FAIL][348] ([Intel XE#1695]) -> [SKIP][349] ([Intel XE#2136]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_fbcon_fbt@fbc.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_fbcon_fbt@fbc.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-bmg: [FAIL][350] ([Intel XE#1695]) -> [SKIP][351] ([Intel XE#2136] / [Intel XE#2231]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_fbcon_fbt@fbc-suspend.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][352] ([Intel XE#2136]) -> [SKIP][353] ([Intel XE#776]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_fbcon_fbt@psr-suspend.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-8/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-bmg: [SKIP][354] ([Intel XE#2372]) -> [SKIP][355] ([Intel XE#2423]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_feature_discovery@chamelium.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][356] ([Intel XE#2423]) -> [SKIP][357] ([Intel XE#2375]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_feature_discovery@dp-mst.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_feature_discovery@dp-mst.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: [SKIP][358] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][359] ([Intel XE#2136]) +3 other tests skip [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][360] ([Intel XE#2136]) -> [SKIP][361] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/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: [SKIP][362] ([Intel XE#2136]) -> [SKIP][363] ([Intel XE#2311]) +32 other tests skip [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][364] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][365] ([Intel XE#2311]) +2 other tests skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html - shard-dg2-set2: [SKIP][366] ([Intel XE#2136]) -> [SKIP][367] ([Intel XE#651]) +2 other tests skip [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][368] ([Intel XE#2312]) -> [SKIP][369] ([Intel XE#2136] / [Intel XE#2231]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][370] ([Intel XE#2311]) -> [SKIP][371] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html - shard-dg2-set2: [SKIP][372] ([Intel XE#651]) -> [SKIP][373] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][374] ([Intel XE#2312]) -> [SKIP][375] ([Intel XE#2311]) +5 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: [SKIP][376] ([Intel XE#2311]) -> [SKIP][377] ([Intel XE#2136]) +33 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-dg2-set2: [SKIP][378] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][379] ([Intel XE#651]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: [FAIL][380] ([Intel XE#2333]) -> [SKIP][381] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][382] ([Intel XE#2333]) -> [SKIP][383] ([Intel XE#2136]) +18 other tests skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][384] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][385] ([Intel XE#2333]) +2 other tests fail [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][386] ([Intel XE#2312]) -> [FAIL][387] ([Intel XE#2333]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-4/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][388] ([Intel XE#2136]) -> [FAIL][389] ([Intel XE#2333]) +14 other tests fail [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][390] ([Intel XE#651]) -> [SKIP][391] ([Intel XE#2136]) [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: [SKIP][392] ([Intel XE#2352]) -> [SKIP][393] ([Intel XE#2136]) [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-bmg: [SKIP][394] ([Intel XE#2313]) -> [SKIP][395] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: [SKIP][396] ([Intel XE#2136]) -> [SKIP][397] ([Intel XE#653]) +4 other tests skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][398] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][399] ([Intel XE#2136]) +12 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][400] ([Intel XE#2312]) -> [SKIP][401] ([Intel XE#2313]) +7 other tests skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][402] ([Intel XE#2313]) -> [SKIP][403] ([Intel XE#2136]) +31 other tests skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][404] ([Intel XE#653]) -> [SKIP][405] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][406] ([Intel XE#2136]) -> [SKIP][407] ([Intel XE#2313]) +24 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][408] ([Intel XE#2312]) -> [SKIP][409] ([Intel XE#2136]) +9 other tests skip [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][410] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][411] ([Intel XE#2313]) +5 other tests skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html - shard-dg2-set2: [SKIP][412] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][413] ([Intel XE#653]) +1 other test skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][414] ([Intel XE#653]) -> [SKIP][415] ([Intel XE#2136]) +3 other tests skip [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_frontbuffer_tracking@psr-slowdraw.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][416] ([Intel XE#2502]) -> [SKIP][417] ([Intel XE#2423]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_getfb@getfb-reject-ccs.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_getfb@getfb-reject-ccs.html * igt at kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][418] ([Intel XE#2423]) -> [SKIP][419] ([Intel XE#2340]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_getfb@getfb2-accept-ccs.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_getfb@getfb2-accept-ccs.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][420] ([Intel XE#2423] / [i915#2575]) -> [SKIP][421] ([Intel XE#455]) +3 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_hdr@invalid-hdr.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-434/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][422] ([Intel XE#2136]) -> [SKIP][423] ([Intel XE#2934]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_joiner@basic-force-ultra-joiner.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-8/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-bmg: [SKIP][424] ([Intel XE#2927]) -> [SKIP][425] ([Intel XE#2136]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_joiner@basic-ultra-joiner.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][426] ([Intel XE#346]) -> [SKIP][427] ([Intel XE#2136]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_joiner@invalid-modeset-big-joiner.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: [SKIP][428] ([Intel XE#2934]) -> [SKIP][429] ([Intel XE#2136] / [Intel XE#2231]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg2-set2: [SKIP][430] ([Intel XE#2925]) -> [SKIP][431] ([Intel XE#2136]) [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][432] ([Intel XE#2423]) -> [SKIP][433] ([Intel XE#2501]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_panel_fitting@legacy: - shard-bmg: [SKIP][434] ([Intel XE#2486]) -> [SKIP][435] ([Intel XE#2423]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_panel_fitting@legacy.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_panel_fitting@legacy.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][436] ([Intel XE#2423]) -> [SKIP][437] ([Intel XE#2393]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_lowres@tiling-y.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-8/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_lowres@tiling-yf: - shard-bmg: [SKIP][438] ([Intel XE#2393]) -> [SKIP][439] ([Intel XE#3007]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-4/igt at kms_plane_lowres@tiling-yf.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_plane_lowres@tiling-yf.html - shard-dg2-set2: [SKIP][440] ([Intel XE#455]) -> [SKIP][441] ([Intel XE#2423] / [i915#2575]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at kms_plane_lowres@tiling-yf.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-none: - shard-bmg: [SKIP][442] ([Intel XE#3007]) -> [SKIP][443] ([Intel XE#2423]) +6 other tests skip [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_plane_multiple@tiling-none.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_plane_multiple@tiling-none.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][444] ([Intel XE#2423]) -> [SKIP][445] ([Intel XE#2493]) +1 other test skip [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_multiple@tiling-yf.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][446] ([Intel XE#2763]) -> [SKIP][447] ([Intel XE#2423]) +3 other tests skip [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-bmg: [SKIP][448] ([Intel XE#2423]) -> [SKIP][449] ([Intel XE#2763]) +2 other tests skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt at kms_pm_backlight@fade: - shard-bmg: [SKIP][450] ([Intel XE#870]) -> [SKIP][451] ([Intel XE#2136]) +2 other tests skip [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_pm_backlight@fade.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_pm_backlight@fade.html * igt at kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][452] ([Intel XE#2136]) -> [SKIP][453] ([Intel XE#870]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_backlight@fade-with-dpms.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: [SKIP][454] ([Intel XE#2391]) -> [SKIP][455] ([Intel XE#2136]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_pm_dc@dc3co-vpb-simulation.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc6-psr: - shard-bmg: [SKIP][456] ([Intel XE#2392]) -> [SKIP][457] ([Intel XE#2136]) [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_pm_dc@dc6-psr.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: [SKIP][458] ([Intel XE#2499]) -> [SKIP][459] ([Intel XE#2136]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_pm_lpsp@kms-lpsp.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][460] ([Intel XE#2446]) -> [SKIP][461] ([Intel XE#1439] / [Intel XE#836]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: [SKIP][462] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][463] ([Intel XE#2446]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_pm_rpm@modeset-lpsp-stress.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: [SKIP][464] ([Intel XE#2446]) -> [SKIP][465] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][466] ([Intel XE#2136]) -> [SKIP][467] ([Intel XE#1489]) +13 other tests skip [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][468] ([Intel XE#1489]) -> [SKIP][469] ([Intel XE#2136]) +8 other tests skip [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][470] ([Intel XE#2136]) -> [SKIP][471] ([Intel XE#1489]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html - shard-bmg: [SKIP][472] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][473] ([Intel XE#1489]) +1 other test skip [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][474] ([Intel XE#1489]) -> [SKIP][475] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html - shard-dg2-set2: [SKIP][476] ([Intel XE#1489]) -> [SKIP][477] ([Intel XE#2136]) +1 other test skip [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@page_flip-p010: - shard-bmg: [SKIP][478] ([Intel XE#2387]) -> [SKIP][479] ([Intel XE#2136]) +2 other tests skip [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr2_su@page_flip-p010.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-bmg: [SKIP][480] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][481] ([Intel XE#2136]) +14 other tests skip [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-3/igt at kms_psr@fbc-pr-cursor-plane-onoff.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-psr-cursor-plane-move: - shard-bmg: [SKIP][482] ([Intel XE#2136]) -> [SKIP][483] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr@fbc-psr-cursor-plane-move.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at kms_psr@fbc-psr-cursor-plane-move.html * igt at kms_psr@fbc-psr-suspend: - shard-bmg: [SKIP][484] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][485] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_psr@fbc-psr-suspend.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-1/igt at kms_psr@fbc-psr-suspend.html * igt at kms_psr@fbc-psr2-primary-blt: - shard-bmg: [SKIP][486] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][487] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_psr@fbc-psr2-primary-blt.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_psr@fbc-psr2-primary-blt.html - shard-dg2-set2: [SKIP][488] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][489] ([Intel XE#2136]) [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-466/igt at kms_psr@fbc-psr2-primary-blt.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_psr@fbc-psr2-primary-blt.html * igt at kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: [SKIP][490] ([Intel XE#2136]) -> [SKIP][491] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at kms_psr@fbc-psr2-sprite-plane-onoff.html * igt at kms_psr@psr2-suspend: - shard-bmg: [SKIP][492] ([Intel XE#2136]) -> [SKIP][493] ([Intel XE#2136] / [Intel XE#2231]) +8 other tests skip [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_psr@psr2-suspend.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][494] ([Intel XE#2414]) -> [SKIP][495] ([Intel XE#2136]) [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@bad-pixel-format: - shard-bmg: [SKIP][496] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][497] ([Intel XE#2423]) +3 other tests skip [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_rotation_crc@bad-pixel-format.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][498] ([Intel XE#2423] / [i915#2575]) -> [SKIP][499] ([Intel XE#3414]) [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-434/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-bmg: [SKIP][500] ([Intel XE#3007]) -> [SKIP][501] ([Intel XE#3414] / [Intel XE#3904]) [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-5/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: [SKIP][502] ([Intel XE#2423]) -> [SKIP][503] ([Intel XE#2330]) +1 other test skip [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_setmode@basic-clone-single-crtc: - shard-bmg: [SKIP][504] ([Intel XE#1435]) -> [SKIP][505] ([Intel XE#2423]) [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_setmode@basic-clone-single-crtc.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][506] ([Intel XE#1729]) -> [SKIP][507] ([Intel XE#362]) [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-433/igt at kms_tiled_display@basic-test-pattern.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-463/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][508] ([Intel XE#330]) -> [SKIP][509] ([Intel XE#2423] / [i915#2575]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-436/igt at kms_tv_load_detect@load-detect.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at kms_tv_load_detect@load-detect.html - shard-bmg: [SKIP][510] ([Intel XE#2450]) -> [SKIP][511] ([Intel XE#3007]) [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-8/igt at kms_tv_load_detect@load-detect.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-3/igt at kms_tv_load_detect@load-detect.html * igt at kms_vrr@cmrr: - shard-bmg: [SKIP][512] ([Intel XE#2423]) -> [SKIP][513] ([Intel XE#2168]) [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_vrr@cmrr.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-4/igt at kms_vrr@cmrr.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][514] ([Intel XE#2423]) -> [SKIP][515] ([Intel XE#1499]) +1 other test skip [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-virtual.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-bmg: [SKIP][516] ([Intel XE#1499]) -> [SKIP][517] ([Intel XE#2423]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_vrr@seamless-rr-switch-vrr.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-fb-id: - shard-bmg: [SKIP][518] ([Intel XE#2423]) -> [SKIP][519] ([Intel XE#756]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at kms_writeback@writeback-fb-id.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: [SKIP][520] ([Intel XE#756]) -> [SKIP][521] ([Intel XE#2423]) +1 other test skip [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at kms_writeback@writeback-pixel-formats.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at kms_writeback@writeback-pixel-formats.html * igt at xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: [SKIP][522] ([Intel XE#1123]) -> [SKIP][523] ([Intel XE#1130]) [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at xe_copy_basic@mem-copy-linear-0x3fff.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at xe_copy_basic@mem-copy-linear-0x3fff.html * igt at xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][524] ([Intel XE#1130]) -> [SKIP][525] ([Intel XE#1126]) [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_copy_basic@mem-set-linear-0x369.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at xe_copy_basic@mem-set-linear-0x369.html * igt at xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][526] ([Intel XE#1130]) -> [SKIP][527] ([Intel XE#2504]) [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_create@multigpu-create-massive-size.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at xe_create@multigpu-create-massive-size.html * igt at xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][528] ([Intel XE#1130]) -> [SKIP][529] ([Intel XE#2905]) +11 other tests skip [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-4/igt at xe_eudebug@basic-vm-bind-metadata-discovery.html * igt at xe_eudebug@discovery-empty: - shard-bmg: [SKIP][530] ([Intel XE#2905]) -> [SKIP][531] ([Intel XE#1130]) +12 other tests skip [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_eudebug@discovery-empty.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at xe_eudebug@discovery-empty.html * igt at xe_eudebug@discovery-race: - shard-dg2-set2: [SKIP][532] ([Intel XE#1130]) -> [SKIP][533] ([Intel XE#2905]) [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_eudebug@discovery-race.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at xe_eudebug@discovery-race.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: [SKIP][534] ([Intel XE#2322]) -> [SKIP][535] ([Intel XE#1130]) +9 other tests skip [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt at xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][536] ([Intel XE#1130]) -> [SKIP][537] ([Intel XE#2322]) +10 other tests skip [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_exec_basic@multigpu-once-null-rebind.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at xe_exec_basic@multigpu-once-null-rebind.html * igt at xe_exec_fault_mode@many-execqueues-rebind: - shard-dg2-set2: [SKIP][538] ([Intel XE#1130]) -> [SKIP][539] ([Intel XE#288]) +5 other tests skip [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_exec_fault_mode@many-execqueues-rebind.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-466/igt at xe_exec_fault_mode@many-execqueues-rebind.html * igt at xe_exec_fault_mode@once-userptr-rebind: - shard-dg2-set2: [SKIP][540] ([Intel XE#288]) -> [SKIP][541] ([Intel XE#1130]) +3 other tests skip [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-434/igt at xe_exec_fault_mode@once-userptr-rebind.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at xe_exec_fault_mode@once-userptr-rebind.html * igt at xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: [SKIP][542] ([Intel XE#2360]) -> [SKIP][543] ([Intel XE#1130]) [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][544] ([Intel XE#2459] / [Intel XE#2596]) -> [SKIP][545] ([Intel XE#1130]) [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-2/igt at xe_media_fill@media-fill.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at xe_media_fill@media-fill.html * igt at xe_oa@invalid-oa-metric-set-id: - shard-dg2-set2: [SKIP][546] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][547] ([Intel XE#1130]) +1 other test skip [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-463/igt at xe_oa@invalid-oa-metric-set-id.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at xe_oa@invalid-oa-metric-set-id.html * igt at xe_oa@oa-regs-whitelisted: - shard-dg2-set2: [SKIP][548] ([Intel XE#1130]) -> [SKIP][549] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_oa@oa-regs-whitelisted.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at xe_oa@oa-regs-whitelisted.html * igt at xe_pat@pat-index-xelp: - shard-bmg: [SKIP][550] ([Intel XE#1130]) -> [SKIP][551] ([Intel XE#2245]) [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_pat@pat-index-xelp.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at xe_pat@pat-index-xelp.html * igt at xe_peer2peer@read: - shard-dg2-set2: [SKIP][552] ([Intel XE#1061]) -> [FAIL][553] ([Intel XE#1173]) [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_peer2peer@read.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-433/igt at xe_peer2peer@read.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: [SKIP][554] ([Intel XE#1130]) -> [SKIP][555] ([Intel XE#2284]) [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_pm@d3cold-mmap-system.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-2/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: [SKIP][556] ([Intel XE#2284]) -> [SKIP][557] ([Intel XE#1130]) +1 other test skip [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-1/igt at xe_pm@s2idle-d3cold-basic-exec.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at xe_pm@s2idle-d3cold-basic-exec.html * igt at xe_pm@s2idle-vm-bind-userptr: - shard-dg2-set2: [ABORT][558] ([Intel XE#1358] / [Intel XE#1794]) -> [SKIP][559] ([Intel XE#1130]) [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-userptr.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-435/igt at xe_pm@s2idle-vm-bind-userptr.html * igt at xe_query@multigpu-query-cs-cycles: - shard-bmg: [SKIP][560] ([Intel XE#944]) -> [SKIP][561] ([Intel XE#1130]) +3 other tests skip [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-6/igt at xe_query@multigpu-query-cs-cycles.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-7/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-invalid-extension: - shard-bmg: [SKIP][562] ([Intel XE#1130]) -> [SKIP][563] ([Intel XE#944]) +4 other tests skip [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-bmg-7/igt at xe_query@multigpu-query-invalid-extension.html [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-bmg-5/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][564] ([Intel XE#1130]) -> [SKIP][565] ([Intel XE#944]) [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8199/shard-dg2-435/igt at xe_query@multigpu-query-uc-fw-version-guc.html [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/shard-dg2-463/igt at xe_query@multigpu-query-uc-fw-version-guc.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1174 [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#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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [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#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#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#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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [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#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [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#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [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#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [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#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#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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [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#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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [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#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#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8199 -> IGTPW_12470 * Linux: xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef -> xe-2516-fb87b4e061d1844beaca66c8446cfcf60db99a23 IGTPW_12470: 7f19312a42cdf84cc7517e0f2f9e01a37be7e9fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2514-4d9c78b35c395ed49796502224f3a421b0ce65ef: 4d9c78b35c395ed49796502224f3a421b0ce65ef xe-2516-fb87b4e061d1844beaca66c8446cfcf60db99a23: fb87b4e061d1844beaca66c8446cfcf60db99a23 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12470/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 21 03:13:44 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 21 Jan 2025 03:13:44 -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_=28rev5=29?= In-Reply-To: <20241113110104.125403-1-mohammed.thasleem@intel.com> References: <20241113110104.125403-1-mohammed.thasleem@intel.com> Message-ID: <173742922449.2426114.8697416875030267193@b555e5b46a47> == Series Details == Series: tests/intel/kms_fbcon_fbt: Add skip condition for bmg platform (rev5) URL : https://patchwork.freedesktop.org/series/141281/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15982_full -> IGTPW_12460_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12460_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12460_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_12460/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12460_full: ### IGT changes ### #### Possible regressions #### * igt at gem_lmem_evict@dontneed-evict-race: - shard-dg2: [PASS][1] -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg2-8/igt at gem_lmem_evict@dontneed-evict-race.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at gem_lmem_evict@dontneed-evict-race.html * igt at i915_selftest@live at gt_pm: - shard-rkl: [PASS][3] -> [DMESG-FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-5/igt at i915_selftest@live at gt_pm.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-7/igt at i915_selftest@live at gt_pm.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [ABORT][5] +1 other test abort [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_plane_cursor@overlay at pipe-c-hdmi-a-1-size-256: - shard-glk: NOTRUN -> [FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk8/igt at kms_plane_cursor@overlay at pipe-c-hdmi-a-1-size-256.html * igt at kms_vblank@ts-continuation-dpms-rpm at pipe-a-hdmi-a-2: - shard-rkl: [PASS][7] -> [SKIP][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-3/igt at kms_vblank@ts-continuation-dpms-rpm at pipe-a-hdmi-a-2.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-5/igt at kms_vblank@ts-continuation-dpms-rpm at pipe-a-hdmi-a-2.html * igt at perf_pmu@busy-start at vcs0: - shard-mtlp: [PASS][9] -> [FAIL][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-2/igt at perf_pmu@busy-start at vcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-1/igt at perf_pmu@busy-start at vcs0.html * igt at perf_pmu@module-unload: - shard-dg1: [PASS][11] -> [INCOMPLETE][12] +2 other tests incomplete [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-13/igt at perf_pmu@module-unload.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at perf_pmu@module-unload.html Known issues ------------ Here are the changes found in IGTPW_12460_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8411]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-7/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@object-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8411]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at api_intel_bb@object-reloc-keep-cache.html * igt at debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#9318]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-1/igt at debugfs_test@basic-hwmon.html * igt at device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#11078]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-8/igt at device_reset@cold-reset-bound.html * igt at device_reset@unbind-cold-reset-rebind: - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#11078]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#11078]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-13/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-idle at vcs1: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8414]) +12 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-17/igt at drm_fdinfo@busy-idle at vcs1.html * igt at drm_fdinfo@most-busy-check-all at bcs0: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8414]) +25 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at drm_fdinfo@most-busy-check-all at bcs0.html * igt at gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#7697]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-2/igt at gem_basic@multigpu-create-close.html * igt at gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][22] ([i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-2/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-5/igt at gem_ccs@block-multicopy-inplace.html * igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][24] -> [INCOMPLETE][25] ([i915#12392] / [i915#7297]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg2-10/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-10/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html * igt at gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-8/igt at gem_close_race@multigpu-basic-process.html * igt at gem_close_race@multigpu-basic-threads: - shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#7697]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][28] ([i915#13427]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-7/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#8562]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at gem_create@create-ext-set-pat.html - shard-rkl: NOTRUN -> [SKIP][30] ([i915#8562]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-6/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][31] ([i915#12353]) +1 other test incomplete [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk7/igt at gem_ctx_isolation@preservation-s3 at bcs0.html * igt at gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#8555]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-12/igt at gem_ctx_persistence@heartbeat-stop.html * igt at gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][33] ([i915#1099]) +5 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-snb7/igt at gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt at gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-1/igt at gem_ctx_sseu@invalid-args.html * igt at gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#280]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][36] ([i915#13390]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk9/igt at gem_eio@in-flight-suspend.html * igt at gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4771]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-17/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4771]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-3/igt at gem_exec_balancer@bonded-pair.html - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4771]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-7/igt at gem_exec_balancer@bonded-pair.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_12460/shard-dg1-18/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#8555]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-7/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#4525]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-7/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#4525]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at gem_exec_balancer@parallel-keep-submit-fence.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][44] ([i915#11965]) +2 other tests fail [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_fence@submit: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4812]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at gem_exec_fence@submit.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_12460/shard-dg2-7/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]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at gem_exec_flush@basic-wb-ro-before-default.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +23 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-1/igt at gem_exec_reloc@basic-active.html * igt at gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-2/igt at gem_exec_reloc@basic-cpu-noreloc.html * igt at gem_exec_reloc@basic-gtt-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +7 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-17/igt at gem_exec_reloc@basic-gtt-read-noreloc.html * igt at gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3281]) +13 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-1/igt at gem_exec_reloc@basic-write-read.html * igt at gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4812]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-14/igt at gem_exec_schedule@semaphore-power.html * igt at gem_exec_suspend@basic-s0: - shard-dg2: NOTRUN -> [INCOMPLETE][55] ([i915#11441] / [i915#13304]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-3/igt at gem_exec_suspend@basic-s0.html * igt at gem_exec_suspend@basic-s0 at lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][56] ([i915#11441]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-3/igt at gem_exec_suspend@basic-s0 at lmem0.html * igt at gem_exec_suspend@basic-s4-devices: - shard-rkl: NOTRUN -> [ABORT][57] ([i915#7975] / [i915#8213]) +1 other test abort [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-5/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: NOTRUN -> [ABORT][58] ([i915#7975] / [i915#8213]) +1 other test abort [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-8/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#12193]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-12/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4565]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-12/igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0.html * igt at gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-7/igt at gem_lmem_swapping@parallel-multi.html * igt at gem_lmem_swapping@parallel-random: - shard-tglu-1: NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at gem_lmem_swapping@parallel-random.html * igt at gem_lmem_swapping@parallel-random-engines: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4613]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-7/igt at gem_lmem_swapping@parallel-random-engines.html * igt at gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][65] ([i915#4613]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk5/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#8289]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at gem_media_fill@media-fill.html * igt at gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4077]) +14 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-17/igt at gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt at gem_mmap_gtt@medium-copy: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4077]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-2/igt at gem_mmap_gtt@medium-copy.html * igt at gem_mmap_wc@close: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-12/igt at gem_mmap_wc@close.html * igt at gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4083]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-7/igt at gem_mmap_wc@write.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4083]) +5 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-8/igt at gem_partial_pwrite_pread@reads-uncached.html * igt at gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][73] ([i915#2658]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk2/igt at gem_pwrite@basic-exhaustion.html * igt at gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282]) +8 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-1/igt at gem_pwrite@basic-self.html * igt at gem_pwrite_snooped: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#3282]) +6 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at gem_pwrite_snooped.html * igt at gem_pxp@create-valid-protected-context: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4270]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-12/igt at gem_pxp@create-valid-protected-context.html * igt at gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][77] ([i915#12917] / [i915#12964]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-2/igt at gem_pxp@protected-encrypted-src-copy-not-readible.html * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4270]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3282]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-3/igt at gem_readwrite@new-obj.html * igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#5190] / [i915#8428]) +7 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-1/igt at gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt at gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#8428]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-7/igt at gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4079]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#8411]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-4/igt at gem_set_tiling_vs_blt@tiled-to-untiled.html * igt at gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4077]) +15 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at gem_tiled_partial_pwrite_pread@writes.html * igt at gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4079]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at gem_tiled_pread_pwrite.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][86] ([i915#13263] / [i915#13449]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk9/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@coherency-sync: - shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at gem_userptr_blits@coherency-sync.html * igt at gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-7/igt at gem_userptr_blits@coherency-unsync.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at gem_userptr_blits@create-destroy-unsync.html - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297]) +4 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-3/igt at gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#3323]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-7/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4880]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4880]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at gem_userptr_blits@map-fixed-invalidate-busy.html * igt at gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4958]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at gem_userptr_blits@sd-probe.html * igt at gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#3297]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-10/igt at gem_userptr_blits@unsync-unmap-cycles.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_12460/shard-glk3/igt at gem_workarounds@suspend-resume-context.html * igt at gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][98] +17 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-8/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-7/igt at gen9_exec_parse@basic-rejected.html * igt at gen9_exec_parse@bb-oversize: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#2856]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-6/igt at gen9_exec_parse@bb-oversize.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_12460/shard-dg1-17/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#2527]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-5/igt at gen9_exec_parse@bb-start-out.html * igt at gen9_exec_parse@bb-start-param: - 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_12460/shard-tglu-1/igt at gen9_exec_parse@bb-start-param.html * igt at gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#2856]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at gen9_exec_parse@shadow-peek.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][105] -> [ABORT][106] ([i915#12817] / [i915#9820]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-tglu-9/igt at i915_module_load@reload-with-fault-injection.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-10/igt at i915_module_load@reload-with-fault-injection.html - shard-glk: NOTRUN -> [ABORT][107] ([i915#9820]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk6/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#7091]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-8/igt at i915_pipe_stress@stress-xrgb8888-ytiled.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_12460/shard-tglu-10/igt at i915_pm_freq_api@freq-suspend.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#6590]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-5/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-dg1: NOTRUN -> [FAIL][111] ([i915#3591]) +1 other test fail [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: NOTRUN -> [FAIL][112] ([i915#12739] / [i915#3591]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html * igt at i915_pm_rpm@debugfs-forcewake-user: - shard-rkl: [PASS][113] -> [SKIP][114] ([i915#13328]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-4/igt at i915_pm_rpm@debugfs-forcewake-user.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-5/igt at i915_pm_rpm@debugfs-forcewake-user.html * igt at i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#11681] / [i915#6621]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-2/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@thresholds: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#11681]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at i915_pm_rps@thresholds.html * igt at i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#11681]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at i915_pm_rps@thresholds-park.html * igt at i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#7984]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-1/igt at i915_power@sanity.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#6188]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_selftest@live: - shard-rkl: [PASS][120] -> [DMESG-FAIL][121] ([i915#12964]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-5/igt at i915_selftest@live.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-7/igt at i915_selftest@live.html * igt at i915_selftest@mock at memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][122] ([i915#9311]) +1 other test dmesg-warn [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-4/igt at i915_selftest@mock at memory_region.html - shard-dg1: NOTRUN -> [DMESG-WARN][123] ([i915#9311]) +1 other test dmesg-warn [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-12/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][124] ([i915#7443]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-9/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@debugfs-reader: - shard-glk: [PASS][125] -> [INCOMPLETE][126] ([i915#4817]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk7/igt at i915_suspend@debugfs-reader.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk9/igt at i915_suspend@debugfs-reader.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][127] ([i915#4817]) +1 other test incomplete [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk3/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#7707]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-7/igt at intel_hwmon@hwmon-write.html - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#7707]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-3/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4212]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4212]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-13/igt at kms_addfb_basic@basic-x-tiled-legacy.html * igt at kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4215]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at kms_addfb_basic@basic-y-tiled-legacy.html - shard-dg2: NOTRUN -> [SKIP][133] ([i915#4215] / [i915#5190]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-1/igt at kms_addfb_basic@basic-y-tiled-legacy.html * igt at kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#12454] / [i915#12712]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/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-b-hdmi-a-2-y-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#8709]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/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@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#12967] / [i915#6228]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-7/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@invalid-async-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#12967]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at kms_async_flips@invalid-async-flip-atomic.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3555]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][139] ([i915#9531]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-4/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][140] ([i915#1769]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-snb2/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-glk: NOTRUN -> [SKIP][141] ([i915#1769]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk9/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][142] ([i915#1769] / [i915#3555]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-17/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#4538] / [i915#5286]) +6 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-17/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#5286]) +7 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-7/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#5286]) +5 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#5286]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][147] -> [FAIL][148] ([i915#5138]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-6/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#5286]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-8/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_big_fb@y-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#4538] / [i915#5190]) +13 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-8/igt at kms_big_fb@y-tiled-32bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#3638]) +4 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-17/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3638]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-5/igt at kms_big_fb@y-tiled-8bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#5190]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/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-dg1: NOTRUN -> [SKIP][154] ([i915#4538]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-12/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][155] +43 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-7/igt at kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#6095]) +152 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-14/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-4.html * igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#12313]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt at kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs at pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#6095]) +9 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-5/igt at kms_ccs@bad-rotation-90-y-tiled-gen12-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][159] ([i915#10307] / [i915#6095]) +121 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/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@ccs-on-another-bo-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][160] +372 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk6/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs at pipe-c-hdmi-a-2.html * igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#12313]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/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-dg2-mc-ccs at pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#6095]) +83 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/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-dg2-rc-ccs-cc at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#6095]) +34 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-2/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#12805]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#12805]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#6095]) +12 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/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][168] ([i915#12313]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-6/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][169] ([i915#12313]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#12313]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-2/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#6095]) +34 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#3742]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#11616] / [i915#7213]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-8/igt at kms_cdclk@mode-transition at pipe-d-hdmi-a-1.html * igt at kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#3742]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_cdclk@plane-scaling.html * igt at kms_chamelium_audio@dp-audio-edid: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-3/igt at kms_chamelium_audio@dp-audio-edid.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +10 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-17/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_color@ctm-limited-range: - shard-mtlp: NOTRUN -> [SKIP][177] +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-1/igt at kms_chamelium_color@ctm-limited-range.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +14 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-10/igt at kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt at kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +10 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-4/igt at kms_chamelium_frames@vga-frame-dump.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#11151] / [i915#7828]) +5 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-3/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#11151] / [i915#7828]) +3 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.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_12460/shard-rkl-4/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#3116] / [i915#3299]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#3116] / [i915#3299]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-5/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#3299]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#7118] / [i915#9424]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-7/igt at kms_content_protection@legacy.html * igt at kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#9424]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-10/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#7116]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-17/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#7116] / [i915#9424]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent: - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-offscreen-256x85: - shard-rkl: [PASS][191] -> [DMESG-WARN][192] ([i915#12964]) +33 other tests dmesg-warn [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-5/igt at kms_cursor_crc@cursor-offscreen-256x85.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-2/igt at kms_cursor_crc@cursor-offscreen-256x85.html * igt at kms_cursor_crc@cursor-offscreen-256x85 at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][193] ([i915#12964]) +24 other tests dmesg-warn [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-2/igt at kms_cursor_crc@cursor-offscreen-256x85 at pipe-b-hdmi-a-1.html * igt at kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#13049]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at kms_cursor_crc@cursor-offscreen-512x170.html * igt at kms_cursor_crc@cursor-onscreen-256x85: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#8814]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-4/igt at kms_cursor_crc@cursor-onscreen-256x85.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#3555]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#13049]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-10/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#13049]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-13/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-sliding-32x10: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#3555]) +13 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at kms_cursor_crc@cursor-sliding-32x10.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#13049]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-3/igt at kms_cursor_crc@cursor-sliding-512x512.html - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#13049]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][202] ([i915#12358] / [i915#7882]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk9/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][203] ([i915#12358]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk9/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-snb: [PASS][204] -> [SKIP][205] +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-snb7/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-snb5/igt at kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#4103]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#4103]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt at kms_cursor_legacy@basic-flip-before-cursor-legacy: - shard-glk: NOTRUN -> [FAIL][208] ([i915#2346]) +1 other test fail [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk8/igt at kms_cursor_legacy@basic-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#13046] / [i915#5354]) +5 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-10/igt at kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-mtlp: [PASS][210] -> [FAIL][211] ([i915#2346]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-2/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-1/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#9067]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-7/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][213] ([i915#9067]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-7/igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#9833]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-7/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#8588]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#1257]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [PASS][217] -> [SKIP][218] ([i915#12402]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg2-10/igt at kms_dp_linktrain_fallback@dp-fallback.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-8/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#8812]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-1/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#3840]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-8/igt at kms_dsc@dsc-basic.html - shard-tglu: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-4/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#3840]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-8/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#3840] / [i915#9053]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-13/igt at kms_dsc@dsc-with-output-formats-with-bpc.html * igt at kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#3469]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-8/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#3469]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-12/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#4854]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-3/igt at kms_feature_discovery@chamelium.html - shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#2065] / [i915#4854]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#1839]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at kms_feature_discovery@display-2x.html - shard-rkl: NOTRUN -> [SKIP][229] ([i915#1839]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-6/igt at kms_feature_discovery@display-2x.html * igt at kms_feature_discovery@display-4x: - shard-tglu: NOTRUN -> [SKIP][230] ([i915#1839]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-7/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#9337]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-7/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#658]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-13/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_12460/shard-dg2-10/igt at kms_fence_pin_leak.html * igt at kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#9934]) +10 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at kms_flip@2x-absolute-wf_vblank.html * igt at kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#9934]) +10 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-2/igt at kms_flip@2x-flip-vs-dpms.html - shard-dg1: NOTRUN -> [SKIP][236] ([i915#9934]) +8 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-17/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][237] -> [FAIL][238] ([i915#13027]) +1 other test fail [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk3/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a1-hdmi-a2.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk4/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at bc-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#8381]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3637]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-5/igt at kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt at kms_flip@2x-plain-flip-ts-check: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#3637]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-2/igt at kms_flip@2x-plain-flip-ts-check.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#3637]) +2 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#8381]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@wf_vblank-ts-check-interruptible at a-hdmi-a1: - shard-tglu: [PASS][244] -> [FAIL][245] ([i915#11989]) +1 other test fail [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-tglu-3/igt at kms_flip@wf_vblank-ts-check-interruptible at a-hdmi-a1.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-4/igt at kms_flip@wf_vblank-ts-check-interruptible at a-hdmi-a1.html * igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1: - shard-tglu-1: NOTRUN -> [FAIL][246] ([i915#11989]) +2 other tests fail [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-2/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#2672]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-2/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-64bpp-yftile-downscaling: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-8/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-8/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#2587] / [i915#2672] / [i915#3555]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/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-16bpp-4tile-upscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#2587] / [i915#2672]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/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]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-12/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-xtile-to-16bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8810] / [i915#8813]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-7/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8810]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-7/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +3 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555]) +3 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-14/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#3555]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/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-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#2672]) +4 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-7/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#8708]) +3 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-6/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#1825]) +43 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#8708]) +27 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][264] +49 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#5354]) +44 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-2/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][266] ([i915#10056] / [i915#13353]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk8/igt at kms_frontbuffer_tracking@fbc-suspend.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg2: NOTRUN -> [FAIL][267] ([i915#6880]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][268] ([i915#5439]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][269] +51 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#3023]) +38 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-7/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#8708]) +17 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-13/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#9766]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-6/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][273] ([i915#9766]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#3458]) +19 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#10433] / [i915#3458]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#1825]) +4 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#3458]) +20 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt at kms_hdr@bpc-switch: - shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_hdr@bpc-switch.html - shard-dg1: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-12/igt at kms_hdr@bpc-switch.html * igt at kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#12713]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-8/igt at kms_hdr@brightness-with-hdr.html - shard-rkl: NOTRUN -> [SKIP][281] ([i915#12713]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-5/igt at kms_hdr@brightness-with-hdr.html - shard-dg1: NOTRUN -> [SKIP][282] ([i915#12713]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-14/igt at kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][283] ([i915#12713]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-7/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#8228]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-3/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-3/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at kms_hdr@static-toggle-suspend.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#12388]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_joiner@invalid-modeset-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][288] ([i915#12388]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-12/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#10656] / [i915#13522]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][290] ([i915#12394] / [i915#13522]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-6/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][291] ([i915#12394] / [i915#13522]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#10656] / [i915#13522]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-2/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#12339]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-4/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#1839]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][295] ([i915#13026]) +1 other test incomplete [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk2/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][296] ([i915#10647] / [i915#12169]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk6/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][297] ([i915#10647]) +1 other test fail [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk6/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_cursor@overlay: - shard-glk: NOTRUN -> [DMESG-FAIL][298] ([i915#118]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk8/igt at kms_plane_cursor@overlay.html * igt at kms_plane_cursor@overlay at pipe-c-hdmi-a-1-size-64: - shard-glk: NOTRUN -> [DMESG-WARN][299] ([i915#118]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk8/igt at kms_plane_cursor@overlay at pipe-c-hdmi-a-1-size-64.html * igt at kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#9809]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-8/igt at kms_plane_scaling@2x-scaler-multi-pipe.html * igt at kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#6953]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-5/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#12247]) +18 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-8/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-c.html * igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#12247]) +4 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-2/igt at kms_plane_scaling@plane-downscale-factor-0-5-with-rotation at pipe-c.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#3555]) +7 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-2/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation at pipe-b: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#12247]) +7 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-2/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation at pipe-b.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-a: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#12247]) +19 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/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][307] ([i915#12247]) +9 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/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-75-upscale-factor-0-25: - shard-rkl: [PASS][308] -> [DMESG-WARN][309] ([i915#12964] / [i915#1982]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-3/igt at kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-3/igt at kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][310] ([i915#12247] / [i915#6953]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-10/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt at kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#5354]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-12/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#12343]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-3/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#5354]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-1/igt at kms_pm_backlight@fade-with-dpms.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_12460/shard-rkl-3/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#3828]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-4/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu-1: NOTRUN -> [FAIL][316] ([i915#9295]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][317] ([i915#9340]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-14/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#9519]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-7/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#9519]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_pm_rpm@i2c: - shard-dg2: NOTRUN -> [FAIL][320] ([i915#8717]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-2/igt at kms_pm_rpm@i2c.html * igt at kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#9519]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-17/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][322] -> [SKIP][323] ([i915#9519]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-3/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#9519]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-6/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#6524] / [i915#6805]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#6524]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-1/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#6524]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#11520]) +8 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-10/igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#11520]) +10 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-3/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][330] ([i915#11520]) +10 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk5/igt at kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][331] ([i915#12316]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-4/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-dg1: NOTRUN -> [SKIP][332] ([i915#11520]) +8 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-14/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][333] ([i915#11520]) +4 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-9/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#11520]) +2 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-snb: NOTRUN -> [SKIP][335] ([i915#11520]) +6 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-snb1/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][336] ([i915#9683]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-13/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#9683]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-2/igt at kms_psr2_su@page_flip-xrgb8888.html - shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#9683]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr-primary-render: - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#9732]) +12 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_psr@fbc-psr-primary-render.html * igt at kms_psr@fbc-psr2-primary-blt: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#1072] / [i915#9732]) +30 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-3/igt at kms_psr@fbc-psr2-primary-blt.html * igt at kms_psr@pr-cursor-plane-move: - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#9688]) +3 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-5/igt at kms_psr@pr-cursor-plane-move.html * igt at kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#1072] / [i915#9732]) +30 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-8/igt at kms_psr@psr2-cursor-blt.html * igt at kms_psr@psr2-sprite-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#9732]) +11 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-4/igt at kms_psr@psr2-sprite-mmap-cpu.html * igt at kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][344] ([i915#1072] / [i915#9732]) +22 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-17/igt at kms_psr@psr2-sprite-mmap-gtt.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][345] ([i915#9685]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#12755]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-2/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][347] ([i915#5289]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#5289]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-2/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt at kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][349] ([i915#3555]) +2 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-7/igt at kms_scaling_modes@scaling-mode-full-aspect.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][350] ([i915#13179]) +1 other test abort [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-snb4/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][351] ([i915#5465]) +2 other tests fail [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-snb5/igt at kms_setmode@basic.html * igt at kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#3555]) +4 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-3/igt at kms_setmode@basic-clone-single-crtc.html * igt at kms_setmode@invalid-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][353] ([i915#3555] / [i915#8809]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-8/igt at kms_setmode@invalid-clone-single-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#8623]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-7/igt at kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][355] ([i915#8623]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-7/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vblank@ts-continuation-dpms-rpm: - shard-rkl: [PASS][356] -> [DMESG-WARN][357] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-3/igt at kms_vblank@ts-continuation-dpms-rpm.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-5/igt at kms_vblank@ts-continuation-dpms-rpm.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1: - shard-glk: [PASS][358] -> [INCOMPLETE][359] ([i915#12276]) +1 other test incomplete [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk9/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk4/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][360] ([i915#9906]) +2 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@max-min: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#9906]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-1/igt at kms_vrr@max-min.html * igt at kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#3555] / [i915#9906]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-2/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-dg1: NOTRUN -> [SKIP][363] ([i915#9906]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-14/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-dg1: NOTRUN -> [SKIP][364] ([i915#2437]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#2437]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][366] ([i915#2437] / [i915#9412]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-3/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-glk: NOTRUN -> [SKIP][367] ([i915#2437]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk8/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg1: NOTRUN -> [SKIP][368] ([i915#2437] / [i915#9412]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-17/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#2436]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-8/igt at perf@gen8-unprivileged-single-ctx-counters.html * igt at perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#7387]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at perf@global-sseu-config-invalid.html * igt at perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][371] ([i915#2433]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-3/igt at perf@unprivileged-single-ctx-counters.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][372] +391 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-snb7/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: NOTRUN -> [FAIL][373] ([i915#4349]) +4 other tests fail [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@busy-idle-check-all at rcs0: - shard-dg2: [PASS][374] -> [FAIL][375] ([i915#4349]) +1 other test fail [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg2-4/igt at perf_pmu@busy-idle-check-all at rcs0.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-8/igt at perf_pmu@busy-idle-check-all at rcs0.html * igt at perf_pmu@cpu-hotplug: - shard-dg1: NOTRUN -> [SKIP][376] ([i915#8850]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-14/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@frequency at gt0: - shard-dg1: NOTRUN -> [FAIL][377] ([i915#12549] / [i915#6806]) +1 other test fail [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-13/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][378] ([i915#11823]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-8/igt at perf_pmu@module-unload.html * igt at perf_pmu@most-busy-check-all: - shard-rkl: NOTRUN -> [FAIL][379] ([i915#4349]) +1 other test fail [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-1/igt at perf_pmu@most-busy-check-all.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#8516]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-dg1: NOTRUN -> [SKIP][381] ([i915#8516]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at perf_pmu@render-node-busy: - shard-dg1: NOTRUN -> [FAIL][382] ([i915#4349]) +1 other test fail [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-12/igt at perf_pmu@render-node-busy.html * igt at perf_pmu@render-node-busy at rcs0: - shard-mtlp: [PASS][383] -> [FAIL][384] ([i915#4349]) +5 other tests fail [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-6/igt at perf_pmu@render-node-busy at rcs0.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-4/igt at perf_pmu@render-node-busy at rcs0.html * igt at prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][385] ([i915#9351]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at prime_mmap@test_aperture_limit.html * igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][386] ([i915#9351]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-5/igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem.html * igt at prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][387] ([i915#3708] / [i915#4077]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-7/igt at prime_vgem@basic-fence-mmap.html * igt at prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][388] ([i915#3291] / [i915#3708]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-4/igt at prime_vgem@basic-fence-read.html * igt at prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][389] ([i915#3708] / [i915#4077]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#3708]) +1 other test skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/igt at prime_vgem@fence-flip-hang.html * igt at prime_vgem@fence-write-hang: - shard-dg1: NOTRUN -> [SKIP][391] ([i915#3708]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg1-18/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][392] ([i915#9917]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-dg2-4/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_12460/shard-dg1-17/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][394] ([i915#12910]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-8/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt at tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][395] +24 other tests skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-2/igt at tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt at core_setmaster@master-drop-set-shared-fd: - shard-tglu: [ABORT][396] -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-tglu-2/igt at core_setmaster@master-drop-set-shared-fd.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-tglu-9/igt at core_setmaster@master-drop-set-shared-fd.html * igt at gem_ctx_shared@exec-single-timeline at vcs0: - shard-rkl: [DMESG-WARN][398] ([i915#12964]) -> [PASS][399] +45 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-4/igt at gem_ctx_shared@exec-single-timeline at vcs0.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-rkl-1/igt at gem_ctx_shared@exec-single-timeline at vcs0.html * igt at gem_exec_balancer@full-late-pulse: - shard-mtlp: [FAIL][400] ([i915#13364]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-3/igt at gem_exec_balancer@full-late-pulse.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-mtlp-6/igt at gem_exec_balancer@full-late-pulse.html * igt at i915_module_load@load: - shard-glk: ([PASS][402], [PASS][403], [PASS][404], [PASS][405], [PASS][406], [PASS][407], [DMESG-WARN][408], [PASS][409], [PASS][410], [PASS][411], [PASS][412], [DMESG-WARN][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]) ([i915#118]) -> ([PASS][426], [PASS][427], [PASS][428], [PASS][429], [PASS][430], [PASS][431], [PASS][432], [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]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk7/igt at i915_module_load@load.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk1/igt at i915_module_load@load.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk2/igt at i915_module_load@load.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk9/igt at i915_module_load@load.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk3/igt at i915_module_load@load.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk5/igt at i915_module_load@load.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk5/igt at i915_module_load@load.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk6/igt at i915_module_load@load.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk4/igt at i915_module_load@load.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk4/igt at i915_module_load@load.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk7/igt at i915_module_load@load.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk5/igt at i915_module_load@load.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk5/igt at i915_module_load@load.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk8/igt at i915_module_load@load.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk2/igt at i915_module_load@load.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk4/igt at i915_module_load@load.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk3/igt at i915_module_load@load.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk1/igt at i915_module_load@load.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk6/igt at i915_module_load@load.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk3/igt at i915_module_load@load.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk8/igt at i915_module_load@load.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk2/igt at i915_module_load@load.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk9/igt at i915_module_load@load.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk1/igt at i915_module_load@load.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk7/igt at i915_module_load@load.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk2/igt at i915_module_load@load.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk8/igt at i915_module_load@load.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk5/igt at i915_module_load@load.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk1/igt at i915_module_load@load.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk6/igt at i915_module_load@load.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk9/igt at i915_module_load@load.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk3/igt at i915_module_load@load.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk8/igt at i915_module_load@load.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk9/igt at i915_module_load@load.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk6/igt at i915_module_load@load.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/shard-glk3/igt at i915_module_load@load.html [438]: == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12460/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From vitaly.prosyak at amd.com Tue Jan 21 04:40:25 2025 From: vitaly.prosyak at amd.com (vitaly.prosyak at amd.com) Date: Mon, 20 Jan 2025 23:40:25 -0500 Subject: [PATCH] tests/amdgpu: find PCI bus, device and function and use it Message-ID: <20250121044025.167761-1-vitaly.prosyak@amd.com> From: Vitaly Prosyak Use the PCI domain, bus, device, and function ID to determine the required path from the file descriptor. This is utilized to check whether the GPU reset mask is enabled for GFX, compute, or SDMA rings. Cc: Christian Koenig Cc: Alexander Deucher Cc: Jesse Zhang Signed-off-by: Vitaly Prosyak --- lib/amdgpu/amd_ip_blocks.c | 9 +++++++-- lib/amdgpu/amd_ip_blocks.h | 2 +- tests/amdgpu/amd_deadlock.c | 18 +++++++++--------- tests/amdgpu/amd_dispatch.c | 15 +++++++++------ tests/amdgpu/amd_pci_unplug.c | 1 - tests/amdgpu/amd_queue_reset.c | 6 +++++- 6 files changed, 31 insertions(+), 20 deletions(-) diff --git a/lib/amdgpu/amd_ip_blocks.c b/lib/amdgpu/amd_ip_blocks.c index 9749e2072..2b1b84414 100644 --- a/lib/amdgpu/amd_ip_blocks.c +++ b/lib/amdgpu/amd_ip_blocks.c @@ -1004,7 +1004,7 @@ 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) +is_reset_enable(enum amd_ip_block_type ip_type, uint32_t reset_type, const struct pci_addr *pci) { char cmd[256]; FILE *fp, *fp2; @@ -1019,7 +1019,12 @@ is_reset_enable(enum amd_ip_block_type ip_type, uint32_t reset_type) 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:.]+'"); + if( pci) + snprintf(cmd, sizeof(cmd) - 1, "sudo cat /sys/kernel/debug/dri/%04x:%02x:%02x.%01x/name |grep -oP '(?<=dev=)[0-9:.]+'", + pci->domain, pci->bus, pci->device, pci->function); + else + 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; diff --git a/lib/amdgpu/amd_ip_blocks.h b/lib/amdgpu/amd_ip_blocks.h index dc4d87151..595b2b16b 100644 --- a/lib/amdgpu/amd_ip_blocks.h +++ b/lib/amdgpu/amd_ip_blocks.h @@ -233,7 +233,7 @@ void asic_rings_readness(amdgpu_device_handle device_handle, uint32_t mask, bool arr[AMD_IP_MAX]); bool -is_reset_enable(enum amd_ip_block_type ip_type, uint32_t reset_type); +is_reset_enable(enum amd_ip_block_type ip_type, uint32_t reset_type, const struct pci_addr *pci); int get_pci_addr_from_fd(int fd, struct pci_addr *pci); diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c index 29b7ae509..472f28e68 100644 --- a/tests/amdgpu/amd_deadlock.c +++ b/tests/amdgpu/amd_deadlock.c @@ -76,7 +76,7 @@ igt_main igt_describe("Test-GPU-reset-by-access-gfx-illegal-reg"); igt_subtest_with_dynamic("amdgpu-gfx-illegal-reg-access") { if (arr_cap[AMD_IP_GFX] && - is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-illegal-reg-access") bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_REG_ADDRESS, AMDGPU_HW_IP_GFX, &pci); @@ -86,7 +86,7 @@ igt_main igt_describe("Test-GPU-reset-by-access-gfx-illegal-mem-addr"); igt_subtest_with_dynamic("amdgpu-gfx-illegal-mem-access") { if (arr_cap[AMD_IP_GFX] && - is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-illegal-mem-access") bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS, AMDGPU_HW_IP_GFX, &pci); @@ -105,7 +105,7 @@ igt_main igt_describe("Test-GPU-reset-by-access-compute-illegal-mem-addr"); igt_subtest("amdgpu-compute-illegal-mem-access") { if (arr_cap[AMD_IP_COMPUTE] && - is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS, AMDGPU_HW_IP_COMPUTE, &pci); } @@ -122,7 +122,7 @@ igt_main igt_describe("Test-GPU-reset-by-sdma-corrupted-header-with-jobs"); igt_subtest_with_dynamic("amdgpu-deadlock-sdma-corrupted-header-test") { if (arr_cap[AMD_IP_DMA] && - is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-deadlock-sdma-corrupted-header-test") amdgpu_hang_sdma_ring_helper(device, DMA_CORRUPTED_HEADER_HANG, &pci); } @@ -131,7 +131,7 @@ igt_main igt_describe("Test-GPU-reset-by-sdma-slow-linear-copy-with-jobs"); igt_subtest_with_dynamic("amdgpu-deadlock-sdma-slow-linear-copy") { if (arr_cap[AMD_IP_DMA] && - is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-deadlock-sdma-slow-linear-copy") amdgpu_hang_sdma_ring_helper(device, DMA_SLOW_LINEARCOPY_HANG, &pci); } @@ -140,7 +140,7 @@ igt_main igt_describe("Test-GPU-reset-by-sdma-badop-with-jobs"); igt_subtest_with_dynamic("amdgpu-deadlock-sdma-badop-test") { if (arr_cap[AMD_IP_DMA] && - is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-deadlock-sdma-badop-test") bad_access_ring_helper(device, CMD_STREAM_EXEC_INVALID_OPCODE, AMDGPU_HW_IP_DMA, &pci); @@ -150,7 +150,7 @@ igt_main igt_describe("Test-GPU-reset-by-sdma-bad-mem-with-jobs"); igt_subtest_with_dynamic("amdgpu-deadlock-sdma-bad-mem-test") { if (arr_cap[AMD_IP_DMA] && - is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-deadlock-sdma-bad-mem-test") bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS, AMDGPU_HW_IP_DMA, &pci); @@ -160,7 +160,7 @@ igt_main igt_describe("Test-GPU-reset-by-sdma-bad-reg-with-jobs"); igt_subtest_with_dynamic("amdgpu-deadlock-sdma-bad-reg-test") { if (arr_cap[AMD_IP_DMA] && - is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-deadlock-sdma-bad-reg-test") bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_REG_ADDRESS, AMDGPU_HW_IP_DMA, &pci); @@ -170,7 +170,7 @@ igt_main igt_describe("Test-GPU-reset-by-sdma-bad-length-with-jobs"); igt_subtest_with_dynamic("amdgpu-deadlock-sdma-bad-length-test") { if (arr_cap[AMD_IP_DMA] && - is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-deadlock-sdma-bad-length-test") bad_access_ring_helper(device, CMD_STREAM_EXEC_INVALID_PACKET_LENGTH, AMDGPU_HW_IP_DMA, &pci); diff --git a/tests/amdgpu/amd_dispatch.c b/tests/amdgpu/amd_dispatch.c index 23d07561c..26b179f35 100644 --- a/tests/amdgpu/amd_dispatch.c +++ b/tests/amdgpu/amd_dispatch.c @@ -78,6 +78,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; @@ -90,7 +91,9 @@ igt_main igt_info("Initialized amdgpu, driver version %d.%d\n", major, minor); - + 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); r = amdgpu_query_gpu_info(device, &gpu_info); igt_assert_eq(r, 0); r = setup_amdgpu_ip_blocks(major, minor, &gpu_info, device); @@ -117,7 +120,7 @@ igt_main igt_describe("Test GPU reset using a binary shader to hang the job on gfx ring"); igt_subtest_with_dynamic("amdgpu-dispatch-hang-test-gfx-with-IP-GFX") { if (arr_cap[AMD_IP_GFX] && - is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-dispatch-hang-test-gfx") amdgpu_dispatch_hang_gfx(device, BACKEND_SE_GC_SHADER_INVALID_SHADER); } @@ -126,7 +129,7 @@ igt_main igt_describe("Test GPU reset using a binary shader to hang the job on compute ring"); igt_subtest_with_dynamic("amdgpu-dispatch-hang-test-compute-with-IP-COMPUTE") { if (arr_cap[AMD_IP_COMPUTE] && - is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-dispatch-hang-test-compute") amdgpu_dispatch_hang_compute(device, BACKEND_SE_GC_SHADER_INVALID_SHADER); } @@ -135,7 +138,7 @@ igt_main igt_describe("Test GPU reset using a invalid shader program address to hang the job on compute ring"); igt_subtest_with_dynamic("amdgpu-dispatch-invalid-program-addr-test-compute-with-IP-COMPUTE") { if (arr_cap[AMD_IP_COMPUTE] && - is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-dispatch-invalid-program-addr-test-compute") amdgpu_dispatch_hang_compute(device, BACKEND_SE_GC_SHADER_INVALID_PROGRAM_ADDR); } @@ -144,7 +147,7 @@ igt_main igt_describe("Test GPU reset using a invalid shader program setting to hang the job on compute ring"); igt_subtest_with_dynamic("amdgpu-dispatch-invalid-setting-test-compute-with-IP-COMPUTE") { if (arr_cap[AMD_IP_COMPUTE] && - is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-dispatch-invalid-setting-test-compute") amdgpu_dispatch_hang_compute(device, BACKEND_SE_GC_SHADER_INVALID_PROGRAM_SETTING); } @@ -153,7 +156,7 @@ igt_main igt_describe("Test GPU reset using a invalid shader user data to hang the job on compute ring"); igt_subtest_with_dynamic("amdgpu-dispatch-invalid-user-data-test-compute-with-IP-COMPUTE") { if (arr_cap[AMD_IP_COMPUTE] && - is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-dispatch-invalid-user-data-test-compute") amdgpu_dispatch_hang_compute(device, BACKEND_SE_GC_SHADER_INVALID_USER_DATA); } diff --git a/tests/amdgpu/amd_pci_unplug.c b/tests/amdgpu/amd_pci_unplug.c index 4c055b99f..cb88185a0 100644 --- a/tests/amdgpu/amd_pci_unplug.c +++ b/tests/amdgpu/amd_pci_unplug.c @@ -47,7 +47,6 @@ igt_main igt_subtest("amdgpu_hotunplug_with_cs") amdgpu_hotunplug_with_cs(&setup, &unplug); - /*TODO about second GPU*/ igt_subtest("amdgpu_hotunplug_with_exported_bo") amdgpu_hotunplug_with_exported_bo(&setup, &unplug); diff --git a/tests/amdgpu/amd_queue_reset.c b/tests/amdgpu/amd_queue_reset.c index 87cf665f3..a7aca4171 100644 --- a/tests/amdgpu/amd_queue_reset.c +++ b/tests/amdgpu/amd_queue_reset.c @@ -1126,6 +1126,7 @@ igt_main unsigned int ring_id_job_good; unsigned int ring_id_job_bad; int expect_error; + struct pci_addr pci ; enum amd_ip_block_type ip_tests[3] = {AMD_IP_COMPUTE/*keep first*/, AMD_IP_GFX, AMD_IP_DMA}; enum amd_ip_block_type ip_background = AMD_IP_COMPUTE; @@ -1202,6 +1203,9 @@ igt_main igt_require(fd_shm != -1); launch_background_process(argc, argv, path, &pid_background, fd_shm); process = PROCESS_TEST; + 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); } else { process = PROCESS_BACKGROUND; } @@ -1236,7 +1240,7 @@ igt_main reset = (ip_tests[i] != AMD_IP_DMA) && (it->test == CMD_STREAM_EXEC_INVALID_PACKET_LENGTH) ? AMDGPU_RESET_TYPE_PER_QUEUE : AMDGPU_RESET_TYPE_PER_PIPE; - if (arr_cap[ip_tests[i]] && is_reset_enable(ip_tests[i], reset) && + if (arr_cap[ip_tests[i]] && is_reset_enable(ip_tests[i], reset, &pci) && get_next_rings(&ring_id_good, &ring_id_bad, info[0].available_rings, info[i].available_rings, ip_background != ip_tests[i], &ring_id_job_good, &ring_id_job_bad)) { igt_dynamic_f("amdgpu-%s-ring-good-%d-bad-%d-%s", it->name, ring_id_job_good, ring_id_job_bad, -- 2.34.1 From Jesse.Zhang at amd.com Tue Jan 21 04:54:23 2025 From: Jesse.Zhang at amd.com (Zhang, Jesse(Jie)) Date: Tue, 21 Jan 2025 04:54:23 +0000 Subject: [PATCH] tests/amdgpu: find PCI bus, device and function and use it In-Reply-To: <20250121044025.167761-1-vitaly.prosyak@amd.com> References: <20250121044025.167761-1-vitaly.prosyak@amd.com> Message-ID: [AMD Official Use Only - AMD Internal Distribution Only] This patch is good for me, and Reviewed-by: "Jesse.zhang at amd.com" -----Original Message----- From: vitaly.prosyak at amd.com Sent: Tuesday, January 21, 2025 12:40 PM To: igt-dev at lists.freedesktop.org Cc: Prosyak, Vitaly ; Koenig, Christian ; Deucher, Alexander ; Zhang, Jesse(Jie) Subject: [PATCH] tests/amdgpu: find PCI bus, device and function and use it From: Vitaly Prosyak Use the PCI domain, bus, device, and function ID to determine the required path from the file descriptor. This is utilized to check whether the GPU reset mask is enabled for GFX, compute, or SDMA rings. Cc: Christian Koenig Cc: Alexander Deucher Cc: Jesse Zhang Signed-off-by: Vitaly Prosyak --- lib/amdgpu/amd_ip_blocks.c | 9 +++++++-- lib/amdgpu/amd_ip_blocks.h | 2 +- tests/amdgpu/amd_deadlock.c | 18 +++++++++--------- tests/amdgpu/amd_dispatch.c | 15 +++++++++------ tests/amdgpu/amd_pci_unplug.c | 1 - tests/amdgpu/amd_queue_reset.c | 6 +++++- 6 files changed, 31 insertions(+), 20 deletions(-) diff --git a/lib/amdgpu/amd_ip_blocks.c b/lib/amdgpu/amd_ip_blocks.c index 9749e2072..2b1b84414 100644 --- a/lib/amdgpu/amd_ip_blocks.c +++ b/lib/amdgpu/amd_ip_blocks.c @@ -1004,7 +1004,7 @@ 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) +is_reset_enable(enum amd_ip_block_type ip_type, uint32_t reset_type, +const struct pci_addr *pci) { char cmd[256]; FILE *fp, *fp2; @@ -1019,7 +1019,12 @@ is_reset_enable(enum amd_ip_block_type ip_type, uint32_t reset_type) 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:.]+'"); + if( pci) + snprintf(cmd, sizeof(cmd) - 1, "sudo cat /sys/kernel/debug/dri/%04x:%02x:%02x.%01x/name |grep -oP '(?<=dev=)[0-9:.]+'", + pci->domain, pci->bus, pci->device, pci->function); + else + 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; diff --git a/lib/amdgpu/amd_ip_blocks.h b/lib/amdgpu/amd_ip_blocks.h index dc4d87151..595b2b16b 100644 --- a/lib/amdgpu/amd_ip_blocks.h +++ b/lib/amdgpu/amd_ip_blocks.h @@ -233,7 +233,7 @@ void asic_rings_readness(amdgpu_device_handle device_handle, uint32_t mask, bool arr[AMD_IP_MAX]); bool -is_reset_enable(enum amd_ip_block_type ip_type, uint32_t reset_type); +is_reset_enable(enum amd_ip_block_type ip_type, uint32_t reset_type, +const struct pci_addr *pci); int get_pci_addr_from_fd(int fd, struct pci_addr *pci); diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c index 29b7ae509..472f28e68 100644 --- a/tests/amdgpu/amd_deadlock.c +++ b/tests/amdgpu/amd_deadlock.c @@ -76,7 +76,7 @@ igt_main igt_describe("Test-GPU-reset-by-access-gfx-illegal-reg"); igt_subtest_with_dynamic("amdgpu-gfx-illegal-reg-access") { if (arr_cap[AMD_IP_GFX] && - is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-illegal-reg-access") bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_REG_ADDRESS, AMDGPU_HW_IP_GFX, &pci); @@ -86,7 +86,7 @@ igt_main igt_describe("Test-GPU-reset-by-access-gfx-illegal-mem-addr"); igt_subtest_with_dynamic("amdgpu-gfx-illegal-mem-access") { if (arr_cap[AMD_IP_GFX] && - is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-illegal-mem-access") bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS, AMDGPU_HW_IP_GFX, &pci); @@ -105,7 +105,7 @@ igt_main igt_describe("Test-GPU-reset-by-access-compute-illegal-mem-addr"); igt_subtest("amdgpu-compute-illegal-mem-access") { if (arr_cap[AMD_IP_COMPUTE] && - is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) +{ bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS, AMDGPU_HW_IP_COMPUTE, &pci); } @@ -122,7 +122,7 @@ igt_main igt_describe("Test-GPU-reset-by-sdma-corrupted-header-with-jobs"); igt_subtest_with_dynamic("amdgpu-deadlock-sdma-corrupted-header-test") { if (arr_cap[AMD_IP_DMA] && - is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-deadlock-sdma-corrupted-header-test") amdgpu_hang_sdma_ring_helper(device, DMA_CORRUPTED_HEADER_HANG, &pci); } @@ -131,7 +131,7 @@ igt_main igt_describe("Test-GPU-reset-by-sdma-slow-linear-copy-with-jobs"); igt_subtest_with_dynamic("amdgpu-deadlock-sdma-slow-linear-copy") { if (arr_cap[AMD_IP_DMA] && - is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-deadlock-sdma-slow-linear-copy") amdgpu_hang_sdma_ring_helper(device, DMA_SLOW_LINEARCOPY_HANG, &pci); } @@ -140,7 +140,7 @@ igt_main igt_describe("Test-GPU-reset-by-sdma-badop-with-jobs"); igt_subtest_with_dynamic("amdgpu-deadlock-sdma-badop-test") { if (arr_cap[AMD_IP_DMA] && - is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-deadlock-sdma-badop-test") bad_access_ring_helper(device, CMD_STREAM_EXEC_INVALID_OPCODE, AMDGPU_HW_IP_DMA, &pci); @@ -150,7 +150,7 @@ igt_main igt_describe("Test-GPU-reset-by-sdma-bad-mem-with-jobs"); igt_subtest_with_dynamic("amdgpu-deadlock-sdma-bad-mem-test") { if (arr_cap[AMD_IP_DMA] && - is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-deadlock-sdma-bad-mem-test") bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS, AMDGPU_HW_IP_DMA, &pci); @@ -160,7 +160,7 @@ igt_main igt_describe("Test-GPU-reset-by-sdma-bad-reg-with-jobs"); igt_subtest_with_dynamic("amdgpu-deadlock-sdma-bad-reg-test") { if (arr_cap[AMD_IP_DMA] && - is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-deadlock-sdma-bad-reg-test") bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_REG_ADDRESS, AMDGPU_HW_IP_DMA, &pci); @@ -170,7 +170,7 @@ igt_main igt_describe("Test-GPU-reset-by-sdma-bad-length-with-jobs"); igt_subtest_with_dynamic("amdgpu-deadlock-sdma-bad-length-test") { if (arr_cap[AMD_IP_DMA] && - is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_DMA, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { igt_dynamic_f("amdgpu-deadlock-sdma-bad-length-test") bad_access_ring_helper(device, CMD_STREAM_EXEC_INVALID_PACKET_LENGTH, AMDGPU_HW_IP_DMA, &pci); diff --git a/tests/amdgpu/amd_dispatch.c b/tests/amdgpu/amd_dispatch.c index 23d07561c..26b179f35 100644 --- a/tests/amdgpu/amd_dispatch.c +++ b/tests/amdgpu/amd_dispatch.c @@ -78,6 +78,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; @@ -90,7 +91,9 @@ igt_main igt_info("Initialized amdgpu, driver version %d.%d\n", major, minor); - + 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); r = amdgpu_query_gpu_info(device, &gpu_info); igt_assert_eq(r, 0); r = setup_amdgpu_ip_blocks(major, minor, &gpu_info, device); @@ -117,7 +120,7 @@ igt_main igt_describe("Test GPU reset using a binary shader to hang the job on gfx ring"); igt_subtest_with_dynamic("amdgpu-dispatch-hang-test-gfx-with-IP-GFX") { if (arr_cap[AMD_IP_GFX] && - is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) +{ igt_dynamic_f("amdgpu-dispatch-hang-test-gfx") amdgpu_dispatch_hang_gfx(device, BACKEND_SE_GC_SHADER_INVALID_SHADER); } @@ -126,7 +129,7 @@ igt_main igt_describe("Test GPU reset using a binary shader to hang the job on compute ring"); igt_subtest_with_dynamic("amdgpu-dispatch-hang-test-compute-with-IP-COMPUTE") { if (arr_cap[AMD_IP_COMPUTE] && - is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) +{ igt_dynamic_f("amdgpu-dispatch-hang-test-compute") amdgpu_dispatch_hang_compute(device, BACKEND_SE_GC_SHADER_INVALID_SHADER); } @@ -135,7 +138,7 @@ igt_main igt_describe("Test GPU reset using a invalid shader program address to hang the job on compute ring"); igt_subtest_with_dynamic("amdgpu-dispatch-invalid-program-addr-test-compute-with-IP-COMPUTE") { if (arr_cap[AMD_IP_COMPUTE] && - is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) +{ igt_dynamic_f("amdgpu-dispatch-invalid-program-addr-test-compute") amdgpu_dispatch_hang_compute(device, BACKEND_SE_GC_SHADER_INVALID_PROGRAM_ADDR); } @@ -144,7 +147,7 @@ igt_main igt_describe("Test GPU reset using a invalid shader program setting to hang the job on compute ring"); igt_subtest_with_dynamic("amdgpu-dispatch-invalid-setting-test-compute-with-IP-COMPUTE") { if (arr_cap[AMD_IP_COMPUTE] && - is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) +{ igt_dynamic_f("amdgpu-dispatch-invalid-setting-test-compute") amdgpu_dispatch_hang_compute(device, BACKEND_SE_GC_SHADER_INVALID_PROGRAM_SETTING); } @@ -153,7 +156,7 @@ igt_main igt_describe("Test GPU reset using a invalid shader user data to hang the job on compute ring"); igt_subtest_with_dynamic("amdgpu-dispatch-invalid-user-data-test-compute-with-IP-COMPUTE") { if (arr_cap[AMD_IP_COMPUTE] && - is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE)) { + is_reset_enable(AMD_IP_COMPUTE, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) +{ igt_dynamic_f("amdgpu-dispatch-invalid-user-data-test-compute") amdgpu_dispatch_hang_compute(device, BACKEND_SE_GC_SHADER_INVALID_USER_DATA); } diff --git a/tests/amdgpu/amd_pci_unplug.c b/tests/amdgpu/amd_pci_unplug.c index 4c055b99f..cb88185a0 100644 --- a/tests/amdgpu/amd_pci_unplug.c +++ b/tests/amdgpu/amd_pci_unplug.c @@ -47,7 +47,6 @@ igt_main igt_subtest("amdgpu_hotunplug_with_cs") amdgpu_hotunplug_with_cs(&setup, &unplug); - /*TODO about second GPU*/ igt_subtest("amdgpu_hotunplug_with_exported_bo") amdgpu_hotunplug_with_exported_bo(&setup, &unplug); diff --git a/tests/amdgpu/amd_queue_reset.c b/tests/amdgpu/amd_queue_reset.c index 87cf665f3..a7aca4171 100644 --- a/tests/amdgpu/amd_queue_reset.c +++ b/tests/amdgpu/amd_queue_reset.c @@ -1126,6 +1126,7 @@ igt_main unsigned int ring_id_job_good; unsigned int ring_id_job_bad; int expect_error; + struct pci_addr pci ; enum amd_ip_block_type ip_tests[3] = {AMD_IP_COMPUTE/*keep first*/, AMD_IP_GFX, AMD_IP_DMA}; enum amd_ip_block_type ip_background = AMD_IP_COMPUTE; @@ -1202,6 +1203,9 @@ igt_main igt_require(fd_shm != -1); launch_background_process(argc, argv, path, &pid_background, fd_shm); process = PROCESS_TEST; + 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); } else { process = PROCESS_BACKGROUND; } @@ -1236,7 +1240,7 @@ igt_main reset = (ip_tests[i] != AMD_IP_DMA) && (it->test == CMD_STREAM_EXEC_INVALID_PACKET_LENGTH) ? AMDGPU_RESET_TYPE_PER_QUEUE : AMDGPU_RESET_TYPE_PER_PIPE; - if (arr_cap[ip_tests[i]] && is_reset_enable(ip_tests[i], reset) && + if (arr_cap[ip_tests[i]] && is_reset_enable(ip_tests[i], reset, +&pci) && get_next_rings(&ring_id_good, &ring_id_bad, info[0].available_rings, info[i].available_rings, ip_background != ip_tests[i], &ring_id_job_good, &ring_id_job_bad)) { igt_dynamic_f("amdgpu-%s-ring-good-%d-bad-%d-%s", it->name, ring_id_job_good, ring_id_job_bad, -- 2.34.1 From patchwork at emeril.freedesktop.org Tue Jan 21 06:07:52 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 21 Jan 2025 06:07:52 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel/kms=5Fdirtyf?= =?utf-8?q?b=3A_Add_skip_condition_for_bmg_platform_=28rev5=29?= In-Reply-To: <20241113174118.158849-1-mohammed.thasleem@intel.com> References: <20241113174118.158849-1-mohammed.thasleem@intel.com> Message-ID: <173743967204.2473805.5293586859118894704@b555e5b46a47> == Series Details == Series: tests/intel/kms_dirtyfb: Add skip condition for bmg platform (rev5) URL : https://patchwork.freedesktop.org/series/141312/ State : failure == Summary == CI Bug Log - changes from IGT_8199_full -> IGTPW_12461_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12461_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12461_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_12461/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12461_full: ### IGT changes ### #### Possible regressions #### * igt at i915_selftest@live: - shard-rkl: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-5/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-1/igt at i915_selftest@live.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][3] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-5/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs at pipe-a-hdmi-a-2.html * igt at kms_vblank@ts-continuation-suspend: - shard-tglu: [PASS][4] -> [ABORT][5] +1 other test abort [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-7/igt at kms_vblank@ts-continuation-suspend.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-6/igt at kms_vblank@ts-continuation-suspend.html * igt at perf_pmu@busy-check-all at vcs1: - shard-mtlp: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-3/igt at perf_pmu@busy-check-all at vcs1.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-7/igt at perf_pmu@busy-check-all at vcs1.html #### Warnings #### * igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0: - shard-rkl: [DMESG-WARN][8] ([i915#12964]) -> [SKIP][9] +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-4/igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at i915_pm_rc6_residency@rc6-idle at gt0-bcs0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt at perf_pmu@busy-check-all at vecs1: - {shard-dg2-9}: NOTRUN -> [FAIL][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-9/igt at perf_pmu@busy-check-all at vecs1.html Known issues ------------ Here are the changes found in IGTPW_12461_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-7/igt at api_intel_bb@blit-reloc-keep-cache.html * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8411]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8411]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-7/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#8411]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at api_intel_bb@object-reloc-keep-cache.html * igt at drm_fdinfo@busy-hang at bcs0: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#8414]) +6 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at drm_fdinfo@busy-hang at bcs0.html * igt at drm_fdinfo@most-busy-idle-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#8414]) +19 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-6/igt at drm_fdinfo@most-busy-idle-check-all at vecs1.html * igt at gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#7697]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-1/igt at gem_basic@multigpu-create-close.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-18/igt at gem_basic@multigpu-create-close.html - shard-dg2: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-8/igt at gem_basic@multigpu-create-close.html * igt at gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#3936]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-18/igt at gem_busy@semaphore.html * igt at gem_caching@writes: - shard-rkl: [PASS][21] -> [DMESG-WARN][22] ([i915#12917] / [i915#12964]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-4/igt at gem_caching@writes.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-3/igt at gem_caching@writes.html * igt at gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-5/igt at gem_ccs@block-copy-compressed.html - shard-rkl: NOTRUN -> [SKIP][24] ([i915#3555] / [i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-3/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#9323]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][26] ([i915#13008]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-3/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][27] ([i915#7297]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-1/igt at gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][28] ([i915#9323]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][29] ([i915#12392] / [i915#7297]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-1/igt at gem_ccs@suspend-resume at linear-compressed-compfmt0-lmem0-lmem0.html * igt at gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][30] ([i915#6335]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-3/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#6335]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#8562]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-10/igt at gem_create@create-ext-set-pat.html - shard-rkl: NOTRUN -> [SKIP][33] ([i915#8562]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-3/igt at gem_create@create-ext-set-pat.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#8562]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-12/igt at gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][35] ([i915#8562]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-10/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][36] ([i915#1099]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-snb2/igt at gem_ctx_persistence@engines-mixed-process.html * igt at gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#8555]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-6/igt at gem_ctx_persistence@heartbeat-hang.html * igt at gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#5882]) +7 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-8/igt at gem_ctx_persistence@saturated-hostile-nopreempt.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#280]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/igt at gem_ctx_sseu@invalid-sseu.html - shard-tglu: NOTRUN -> [SKIP][40] ([i915#280]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-2/igt at gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#280]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-7/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@kms: - shard-tglu: [PASS][42] -> [DMESG-WARN][43] ([i915#13363]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-10/igt at gem_eio@kms.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-8/igt at gem_eio@kms.html * igt at gem_eio@reset-stress: - shard-snb: NOTRUN -> [FAIL][44] ([i915#8898]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-snb4/igt at gem_eio@reset-stress.html * igt at gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4771]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4771]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-4/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4812]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-10/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@full-late-pulse: - shard-dg1: NOTRUN -> [FAIL][48] ([i915#13364]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at gem_exec_balancer@full-late-pulse.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4036]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-1/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@noheartbeat: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#8555]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4525]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-7/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][52] ([i915#4525]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt at gem_exec_capture@capture-invisible at smem0: - shard-glk: NOTRUN -> [SKIP][53] ([i915#6334]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk1/igt at gem_exec_capture@capture-invisible at smem0.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][54] ([i915#11965]) +2 other tests fail [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3539] / [i915#4852]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-6/igt at gem_exec_flush@basic-uc-pro-default.html - shard-dg1: NOTRUN -> [SKIP][56] ([i915#3539] / [i915#4852]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at gem_exec_flush@basic-uc-pro-default.html * igt at gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3281]) +9 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-5/igt at gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt at gem_exec_reloc@basic-gtt-wc-noreloc: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#3281]) +10 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/igt at gem_exec_reloc@basic-gtt-wc-noreloc.html * igt at gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3281]) +8 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-3/igt at gem_exec_reloc@basic-write-read-noreloc.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3281]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-3/igt at gem_exec_reloc@basic-write-read-noreloc.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4537] / [i915#4812]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-8/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4537] / [i915#4812]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-2/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4812]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-18/igt at gem_exec_schedule@semaphore-power.html * igt at gem_exec_suspend@basic-s4-devices: - shard-rkl: NOTRUN -> [ABORT][64] ([i915#7975] / [i915#8213]) +1 other test abort [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-2/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4860]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-8/igt at gem_fence_thrash@bo-copy.html - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4860]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-7/igt at gem_fence_thrash@bo-copy.html * igt at gem_fenced_exec_thrash@2-spare-fences: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4860]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at gem_fenced_exec_thrash@2-spare-fences.html * igt at gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][68] ([i915#2190]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#4613]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-2/igt at gem_lmem_swapping@heavy-random.html - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4613]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-7/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#12193]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4565]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#4613]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-7/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][74] ([i915#4613]) +7 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk7/igt at gem_lmem_swapping@random.html * igt at gem_lmem_swapping@verify-random: - shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#4613]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at gem_lmem_swapping@verify-random.html * igt at gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#8289]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-7/igt at gem_media_fill@media-fill.html * igt at gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4077]) +12 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt at gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4077]) +15 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-8/igt at gem_mmap_gtt@fault-concurrent-x.html * igt at gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4077]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-8/igt at gem_mmap_gtt@fault-concurrent-y.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][80] -> [ABORT][81] ([i915#10729]) +1 other test abort [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-3/igt at gem_mmap_offset@clear-via-pagefault.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-2/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4083]) +5 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-3/igt at gem_mmap_wc@fault-concurrent.html * igt at gem_mmap_wc@write-cpu-read-wc: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4083]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-2/igt at gem_mmap_wc@write-cpu-read-wc.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#4083]) +4 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_pread@bench: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#3282]) +7 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at gem_pread@bench.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#3282]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-12/igt at gem_pread@exhaustion.html * igt at gem_pxp@display-protected-crc: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4270]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-18/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4270]) +6 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-3/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html - shard-rkl: NOTRUN -> [TIMEOUT][89] ([i915#12964]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-5/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][90] ([i915#12917] / [i915#12964]) +2 other tests timeout [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-7/igt at gem_pxp@hw-rejects-pxp-buffer.html - shard-tglu: NOTRUN -> [SKIP][91] ([i915#13398]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-4/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3282]) +6 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-3/igt at gem_readwrite@beyond-eob.html - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#3282]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-4/igt at gem_readwrite@beyond-eob.html * igt at gem_render_copy@x-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#8428]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-3/igt at gem_render_copy@x-tiled-to-vebox-y-tiled.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#5190] / [i915#8428]) +9 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-10/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_set_tiling_vs_pwrite: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4079]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at gem_set_tiling_vs_pwrite.html * igt at gem_softpin@noreloc-s3: - shard-glk: NOTRUN -> [INCOMPLETE][97] ([i915#13306]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk7/igt at gem_softpin@noreloc-s3.html * igt at gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#4079]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-1/igt at gem_tiled_pread_basic.html - shard-dg2: NOTRUN -> [SKIP][99] ([i915#4079]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-7/igt at gem_tiled_pread_basic.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][100] ([i915#13263] / [i915#13449]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk6/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@coherency-sync: - shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#3297]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at gem_userptr_blits@coherency-sync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3282] / [i915#3297]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-3/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#4880]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-10/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3297] / [i915#4880]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-18/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#3297]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-6/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#3297]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-6/igt at gem_userptr_blits@unsync-unmap.html - shard-rkl: NOTRUN -> [SKIP][107] ([i915#3297]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-3/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#3297]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_workarounds@suspend-resume-context: - shard-rkl: [PASS][109] -> [DMESG-FAIL][110] ([i915#12964]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-1/igt at gem_workarounds@suspend-resume-context.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-7/igt at gem_workarounds@suspend-resume-context.html * igt at gen9_exec_parse@bb-chained: - shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#2527] / [i915#2856]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#2527]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/igt at gen9_exec_parse@bb-large.html * igt at gen9_exec_parse@secure-batches: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#2856]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-4/igt at gen9_exec_parse@secure-batches.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#2856]) +6 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-6/igt at gen9_exec_parse@unaligned-access.html * igt at gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#2527] / [i915#2856]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-2/igt at gen9_exec_parse@unaligned-jump.html * igt at gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#2527]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at gen9_exec_parse@valid-registers.html * igt at i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#7178]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/igt at i915_module_load@resize-bar.html * igt at i915_pm_freq_mult@media-freq at gt0: - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#6590]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at i915_pm_freq_mult@media-freq at gt0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-tglu-1: NOTRUN -> [WARN][119] ([i915#2681]) +4 other tests warn [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rps@engine-order: - shard-glk: [PASS][120] -> [FAIL][121] ([i915#13547]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk1/igt at i915_pm_rps@engine-order.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk7/igt at i915_pm_rps@engine-order.html * igt at i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][122] ([i915#8346]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-6/igt at i915_pm_rps@reset.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#11681]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-2/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4387]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at i915_pm_sseu@full-enable.html * igt at i915_query@test-query-geometry-subslices: - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#5723]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at i915_query@test-query-geometry-subslices.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [PASS][126] -> [DMESG-FAIL][127] ([i915#12061]) +1 other test dmesg-fail [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-6/igt at i915_selftest@live at workarounds.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-6/igt at i915_selftest@live at workarounds.html * igt at i915_selftest@mock at memory_region: - shard-dg1: NOTRUN -> [DMESG-WARN][128] ([i915#9311]) +1 other test dmesg-warn [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s3-without-i915: - shard-glk: [PASS][129] -> [INCOMPLETE][130] ([i915#4817]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk9/igt at i915_suspend@basic-s3-without-i915.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk3/igt at i915_suspend@basic-s3-without-i915.html * igt at intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#7707]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-3/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#4212]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-6/igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#4212]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-2/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt at kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#4212]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-18/igt at kms_addfb_basic@tile-pitch-mismatch.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#8709]) +7 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-6/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-1-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][136] ([i915#8709]) +11 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-4/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@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#12967] / [i915#6228]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-10/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#10333]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-5/igt at kms_async_flips@test-cursor.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#9531]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-2/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#1769] / [i915#3555]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-2/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][141] ([i915#1769] / [i915#3555]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-5/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#4538] / [i915#5286]) +6 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/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][143] ([i915#5286]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-3/igt at kms_big_fb@4-tiled-8bpp-rotate-0.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#5286]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/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-tglu: NOTRUN -> [SKIP][145] ([i915#5286]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-10/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][146] -> [FAIL][147] ([i915#5138]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-5/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][148] +8 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-5/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3638]) +6 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-1/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#3638]) +6 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#5190]) +4 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/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][152] ([i915#4538] / [i915#5190]) +19 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-3/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#6187]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-8/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#4538]) +4 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-18/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_busy@extended-modeset-hang-newfb-with-reset: - shard-rkl: [PASS][155] -> [DMESG-WARN][156] ([i915#12964]) +28 other tests dmesg-warn [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-3/igt at kms_busy@extended-modeset-hang-newfb-with-reset.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-6/igt at kms_busy@extended-modeset-hang-newfb-with-reset.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/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-mtl-rc-ccs-cc at pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#6095]) +184 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/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-cc at pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#10307] / [i915#6095]) +117 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/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@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#6095]) +69 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-5/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-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#12313]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-7/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#6095]) +9 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-6/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-a-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#6095]) +8 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs at pipe-c-hdmi-a-3.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#6095]) +39 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#12313]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#6095]) +88 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#12313]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-1/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][168] ([i915#12313]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-2/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc at pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][169] +558 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk8/igt at kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc at pipe-c-hdmi-a-2.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#3742]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/igt at kms_cdclk@mode-transition-all-outputs.html - shard-tglu: NOTRUN -> [SKIP][171] ([i915#3742]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-3/igt at kms_cdclk@mode-transition-all-outputs.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#7213] / [i915#9010]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-8/igt at kms_cdclk@mode-transition-all-outputs.html - shard-dg2: NOTRUN -> [SKIP][173] ([i915#11616] / [i915#7213]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-2/igt at kms_cdclk@mode-transition-all-outputs.html - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3742]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-5/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][175] +18 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-8/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +7 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-10/igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +14 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-10/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_frames@hdmi-crc-single: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +9 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/igt at kms_chamelium_frames@hdmi-crc-single.html * igt at kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +6 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-5/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#11151] / [i915#7828]) +7 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_chamelium_hpd@dp-hpd-after-suspend.html * igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#11151] / [i915#7828]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-8/igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt at kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#7116] / [i915#9424]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at kms_content_protection@atomic.html * igt at kms_content_protection@content-type-change: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#6944] / [i915#9424]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#3116] / [i915#3299]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-4/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3299]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-7/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3299]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-8/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3116]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-7/igt at kms_content_protection@legacy.html - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#6944] / [i915#9424]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-3/igt at kms_content_protection@legacy.html - shard-dg2: NOTRUN -> [SKIP][190] ([i915#7118] / [i915#9424]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-6/igt at kms_content_protection@legacy.html - shard-rkl: NOTRUN -> [SKIP][191] ([i915#7118] / [i915#9424]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-3/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#6944] / [i915#9424]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-8/igt at kms_content_protection@lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][193] ([i915#9424]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-1/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#7118]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-7/igt at kms_content_protection@srm.html * igt at kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_content_protection@type1.html * igt at kms_content_protection@uevent at pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][196] ([i915#1339] / [i915#7173]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-10/igt at kms_content_protection@uevent at pipe-a-dp-4.html * igt at kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3555]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-32x32.html * igt at kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#13049]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#3555]) +4 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-1/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#13049]) +2 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-5/igt at kms_cursor_crc@cursor-onscreen-512x512.html - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#13049]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-3/igt at kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg2: NOTRUN -> [SKIP][202] ([i915#13049]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-3/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#13049]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-2/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-random-64x64: - shard-glk: [PASS][204] -> [DMESG-FAIL][205] ([i915#118]) +1 other test dmesg-fail [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk3/igt at kms_cursor_crc@cursor-random-64x64.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk8/igt at kms_cursor_crc@cursor-random-64x64.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#3555]) +6 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-6/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#13049]) +3 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][208] ([i915#12358] / [i915#7882]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk6/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][209] ([i915#12358]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk6/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#9809]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-3/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-snb: [PASS][211] -> [SKIP][212] +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb7/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-snb1/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#4103] / [i915#4213]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-18/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#4103] / [i915#4213]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#13046] / [i915#5354]) +7 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-10/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][216] +19 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-1/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic: - shard-dg1: NOTRUN -> [DMESG-WARN][217] ([i915#4423]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at kms_cursor_legacy@flip-vs-cursor-atomic.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: [PASS][218] -> [FAIL][219] ([i915#2346]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#9067]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-1/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][221] ([i915#4103]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/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-toggle: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#4103]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#9723]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#8588]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#1257]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-1/igt at kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][226] ([i915#1257]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-2/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#12402]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-10/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#8812]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-7/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#8812]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-basic: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#3840]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-12/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#3840]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc-formats: - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#3840]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_dsc@dsc-with-bpc-formats.html * igt at kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#3840]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-8/igt at kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#3840]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-1/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#3955]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#1839]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-3/igt at kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][237] ([i915#1839]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][238] ([i915#1839]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-7/igt at kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#1839]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-3/igt at kms_feature_discovery@display-4x.html - shard-dg2: NOTRUN -> [SKIP][240] ([i915#1839]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-6/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#658]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-3/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][242] ([i915#658]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-2/igt at kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][243] ([i915#658]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-5/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-dpms: - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#3637]) +5 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_flip@2x-flip-vs-dpms.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#9934]) +7 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#4423] / [i915#9934]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#3637]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-2/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#9934]) +14 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-8/igt at kms_flip@2x-modeset-vs-vblank-race.html - shard-dg1: NOTRUN -> [SKIP][249] ([i915#9934]) +7 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-18/igt at kms_flip@2x-modeset-vs-vblank-race.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#3637]) +4 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-6/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@dpms-off-confusion-interruptible at a-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][251] ([i915#12964]) +22 other tests dmesg-warn [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at kms_flip@dpms-off-confusion-interruptible at a-hdmi-a1.html * igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1: - shard-mtlp: [PASS][252] -> [FAIL][253] ([i915#11989]) +3 other tests fail [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-4/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-8/igt at kms_flip@flip-vs-blocking-wf-vblank at a-edp1.html * igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a1: - shard-glk: NOTRUN -> [FAIL][254] ([i915#13027]) +1 other test fail [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk8/igt at kms_flip@flip-vs-expired-vblank-interruptible at a-hdmi-a1.html * igt at kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#8381]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-5/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#8381]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-2/igt at kms_flip@flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][257] ([i915#8381]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#3555]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-10/igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-4/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#2587] / [i915#2672] / [i915#3555]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][261] ([i915#2587] / [i915#2672] / [i915#3555]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#2672]) +5 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-4/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode.html - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#2587] / [i915#2672]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#2587] / [i915#2672]) +3 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-3/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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#8813]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling 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-rkl: NOTRUN -> [SKIP][267] ([i915#2672]) +3 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-3/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-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#2672] / [i915#3555]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#2672] / [i915#3555]) +3 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-tglu: NOTRUN -> [SKIP][270] ([i915#2672] / [i915#3555]) +3 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-5/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-dg1: NOTRUN -> [SKIP][271] ([i915#2672] / [i915#3555]) +6 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/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-dg1: NOTRUN -> [SKIP][272] ([i915#2587] / [i915#2672]) +7 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/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_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [FAIL][273] ([i915#6880]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [PASS][274] -> [FAIL][275] ([i915#6880]) +1 other test fail [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-5/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][276] +51 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html - shard-dg1: NOTRUN -> [SKIP][277] +51 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#1825]) +11 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#1825]) +50 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#5439]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][281] ([i915#5439]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#10055]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbc-tiling-y.html - shard-dg2: NOTRUN -> [SKIP][283] ([i915#10055]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#10433] / [i915#3458]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#3458]) +19 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#3458]) +26 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#4423] / [i915#8708]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#8708]) +28 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-10/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#5354]) +41 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][290] ([i915#8708]) +22 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#3023]) +25 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-6/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][292] +85 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-9/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#8708]) +4 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-1/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt at kms_hdr@bpc-switch-dpms: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#3555] / [i915#8228]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-6/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@brightness-with-hdr: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#12713]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#3555] / [i915#8228]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-3/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-toggle: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#3555] / [i915#8228]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-dpms: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8228]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-1/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#10656]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][300] ([i915#10656]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-1/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#12388]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-5/igt at kms_joiner@basic-force-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][302] ([i915#12388]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#12339]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at kms_joiner@basic-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][304] ([i915#12339]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-5/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#10656]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#12388]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_joiner@invalid-modeset-force-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][307] ([i915#12394] / [i915#13522]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-18/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@legacy: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#6301]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1: - shard-glk: [PASS][309] -> [INCOMPLETE][310] ([i915#12756] / [i915#1982]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk8/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk4/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][311] ([i915#13026]) +1 other test incomplete [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk4/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][312] ([i915#12178]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk1/igt at kms_plane_alpha_blend@alpha-basic.html * igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][313] ([i915#7862]) +1 other test fail [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk1/igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1.html * igt at kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#8821]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-8/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#3555] / [i915#8821]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-7/igt at kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][316] ([i915#3555] / [i915#8821]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-1/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#3555] / [i915#8806]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-4/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#6953]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-7/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#12247] / [i915#9423]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-2/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#12247]) +11 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-2/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#12247]) +10 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-5/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a.html - shard-dg1: NOTRUN -> [SKIP][322] ([i915#12247]) +8 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][323] ([i915#12247]) +13 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-10/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][324] ([i915#12247] / [i915#6953]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-7/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-tglu-1: NOTRUN -> [SKIP][325] ([i915#12247] / [i915#6953]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/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-c: - shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#12247]) +11 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][327] ([i915#12247] / [i915#3555] / [i915#6953]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-3/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][328] ([i915#12247]) +3 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-3/igt at kms_plane_scaling@planes-downscale-factor-0-75 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#12247] / [i915#3555]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][330] ([i915#12247] / [i915#3555]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#12247] / [i915#6953] / [i915#9423]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-2/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][332] ([i915#12247] / [i915#6953]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-5/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt at kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][333] ([i915#5354]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#5354]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-2/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#12343]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-7/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#9685]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-7/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu-1: NOTRUN -> [FAIL][337] ([i915#9295]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#9685]) +2 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-8/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#8430]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-7/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg1: NOTRUN -> [SKIP][340] ([i915#9519]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#9519]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-5/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][342] ([i915#9519]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-10/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#9519]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][344] -> [SKIP][345] ([i915#9519]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-6/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-8/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#6524] / [i915#6805]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-5/igt at kms_prime@basic-crc-hybrid.html * igt at kms_prime@basic-crc-vgem: - shard-dg1: NOTRUN -> [SKIP][347] ([i915#6524]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at kms_prime@basic-crc-vgem.html * igt at kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#6524]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-2/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#11520]) +10 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-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-glk: NOTRUN -> [SKIP][350] ([i915#11520]) +17 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk7/igt at kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#11520]) +3 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/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][352] ([i915#11520]) +9 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-3/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-snb: NOTRUN -> [SKIP][353] ([i915#11520]) +11 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-snb1/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#12316]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-1/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][355] ([i915#11520]) +7 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][356] ([i915#11520]) +5 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-9/igt at kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][357] ([i915#11520] / [i915#4423]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#9683]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-4/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#9683]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][360] ([i915#1072] / [i915#9732]) +34 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-4/igt at kms_psr@fbc-psr-cursor-plane-move.html * igt at kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][361] ([i915#9688]) +7 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-1/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][362] ([i915#1072] / [i915#9732]) +23 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt at kms_psr@psr2-primary-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][363] ([i915#9732]) +14 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-2/igt at kms_psr@psr2-primary-mmap-cpu.html * igt at kms_psr@psr2-sprite-blt: - shard-tglu-1: NOTRUN -> [SKIP][364] ([i915#9732]) +12 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_psr@psr2-sprite-blt.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +25 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-7/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][366] ([i915#9685]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-6/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][367] ([i915#9685]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][368] ([i915#5289]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-7/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][369] ([i915#5289]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][370] ([i915#5289]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-4/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][371] ([i915#12755] / [i915#5190]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#12755]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-6/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][373] ([i915#3555]) +4 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-13/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][374] ([i915#3555]) +3 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-2/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#8623]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-10/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][376] ([i915#12276]) +3 other tests incomplete [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk2/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html * igt at kms_vblank@ts-continuation-suspend at pipe-d-hdmi-a-1: - shard-tglu: [PASS][377] -> [INCOMPLETE][378] ([i915#1982]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-7/igt at kms_vblank@ts-continuation-suspend at pipe-d-hdmi-a-1.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-6/igt at kms_vblank@ts-continuation-suspend at pipe-d-hdmi-a-1.html * igt at kms_vrr@flip-basic-fastset: - shard-dg1: NOTRUN -> [SKIP][379] ([i915#9906]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-14/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#3555] / [i915#9906]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-4/igt at kms_vrr@negative-basic.html - shard-tglu-1: NOTRUN -> [SKIP][381] ([i915#3555] / [i915#9906]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][382] ([i915#3555] / [i915#9906]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][383] ([i915#9906]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-3/igt at kms_vrr@seamless-rr-switch-drrs.html - shard-tglu: NOTRUN -> [SKIP][384] ([i915#9906]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-5/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][385] ([i915#9906]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-7/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][386] ([i915#2437]) +1 other test skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-5/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][387] ([i915#2437] / [i915#9412]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-8/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][388] ([i915#2437] / [i915#9412]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-glk: NOTRUN -> [SKIP][389] ([i915#2437]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][390] ([i915#2437]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-18/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#7387]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-7/igt at perf@global-sseu-config-invalid.html * igt at perf_pmu@all-busy-check-all: - shard-dg2: [PASS][392] -> [FAIL][393] ([i915#13545]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-7/igt at perf_pmu@all-busy-check-all.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-10/igt at perf_pmu@all-busy-check-all.html - shard-dg1: [PASS][394] -> [FAIL][395] ([i915#13545]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-14/igt at perf_pmu@all-busy-check-all.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-12/igt at perf_pmu@all-busy-check-all.html - shard-mtlp: [PASS][396] -> [FAIL][397] ([i915#13545]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-4/igt at perf_pmu@all-busy-check-all.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-5/igt at perf_pmu@all-busy-check-all.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][398] +498 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-snb7/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@busy-check-all: - shard-mtlp: [PASS][399] -> [FAIL][400] ([i915#4349]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-3/igt at perf_pmu@busy-check-all.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-7/igt at perf_pmu@busy-check-all.html * igt at perf_pmu@busy-check-all at rcs0: - shard-dg1: NOTRUN -> [FAIL][401] ([i915#4349]) +1 other test fail [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-17/igt at perf_pmu@busy-check-all at rcs0.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: NOTRUN -> [FAIL][402] ([i915#4349]) +4 other tests fail [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-5/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@enable-race: - shard-glk: NOTRUN -> [DMESG-WARN][403] ([i915#118]) +1 other test dmesg-warn [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk8/igt at perf_pmu@enable-race.html * igt at perf_pmu@frequency at gt0: - shard-dg2: NOTRUN -> [FAIL][404] ([i915#12549] / [i915#6806]) +1 other test fail [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-6/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][405] ([i915#8516]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-2/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][406] ([i915#8516]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-5/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-dg1: NOTRUN -> [SKIP][407] ([i915#8516]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-12/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][408] ([i915#8516]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-3/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][409] ([i915#9351]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-3/igt at prime_mmap@test_aperture_limit.html * igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][410] ([i915#9351]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg2-3/igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem.html * igt at prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][411] ([i915#3708]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-6/igt at prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][412] ([i915#3708]) +1 other test skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-1/igt at prime_vgem@fence-read-hang.html - shard-dg1: NOTRUN -> [SKIP][413] ([i915#3708]) +1 other test skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-dg1-18/igt at prime_vgem@fence-read-hang.html * igt at sriov_basic@bind-unbind-vf at vf-5: - shard-mtlp: NOTRUN -> [FAIL][414] ([i915#12910]) +9 other tests fail [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-mtlp-4/igt at sriov_basic@bind-unbind-vf at vf-5.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][415] ([i915#9917]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-4/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][416] ([i915#12910]) +9 other tests fail [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-1/igt at sriov_basic@enable-vfs-autoprobe-off at numvfs-all.html #### Possible fixes #### * igt at gem_exec_big@single: - shard-tglu: [ABORT][417] ([i915#11713]) -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-9/igt at gem_exec_big@single.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-tglu-7/igt at gem_exec_big@single.html * igt at gem_exec_suspend@basic-s3: - shard-rkl: [DMESG-FAIL][419] ([i915#12964]) -> [PASS][420] +1 other test pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-7/igt at gem_exec_suspend@basic-s3.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-rkl-1/igt at gem_exec_suspend@basic-s3.html * igt at gem_workarounds@suspend-resume: - shard-glk: [INCOMPLETE][421] ([i915#13356]) -> [PASS][422] +1 other test pass [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk2/igt at gem_workarounds@suspend-resume.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/shard-glk3/igt at gem_workarounds@suspend-resume.html * igt at i915_pm_rpm@sysfs-read: - shard-dg1: [SKIP][423] ([i915#4423]) -> [PASS][424] [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-18/igt at i915_pm_rpm@sysfs-read.html [ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12461/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From pravalika.gurram at intel.com Tue Jan 21 06:32:05 2025 From: pravalika.gurram at intel.com (Pravalika Gurram) Date: Tue, 21 Jan 2025 12:02:05 +0530 Subject: [PATCH 0/2] Make igt_facts_test noreturn and cleanup Message-ID: <20250121063207.71737-1-pravalika.gurram@intel.com> fix BOOL_COMPARISON, COMPARISON_TO_NULL, LINE_SPACING, PARENTHESIS_ALIGNMENT, Remove extern from header warning from checkpatch 'Fixes: 1a9c3117328 ("lib/igt_facts: Library and unit testing")' Pravalika Gurram (2): lib/igt_facts: Make igt_facts_test noreturn lib/igt_facts : Cleanup lib/igt_facts.c | 24 +++++++++++++----------- lib/igt_facts.h | 3 ++- 2 files changed, 15 insertions(+), 12 deletions(-) -- 2.34.1 From pravalika.gurram at intel.com Tue Jan 21 06:32:06 2025 From: pravalika.gurram at intel.com (Pravalika Gurram) Date: Tue, 21 Jan 2025 12:02:06 +0530 Subject: [PATCH 1/2] lib/igt_facts: Make igt_facts_test noreturn In-Reply-To: <20250121063207.71737-1-pravalika.gurram@intel.com> References: <20250121063207.71737-1-pravalika.gurram@intel.com> Message-ID: <20250121063207.71737-2-pravalika.gurram@intel.com> noreturn attribute is used to improve the optimization by informing to the compiler that function does not return . Signed-off-by: Pravalika Gurram --- lib/igt_facts.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/igt_facts.c b/lib/igt_facts.c index 2e04a7c86..bd6742065 100644 --- a/lib/igt_facts.c +++ b/lib/igt_facts.c @@ -748,7 +748,7 @@ static void igt_facts_test_mark_and_sweep(struct igt_list_head *head) * * Returns: bool indicating if the tests passed */ -void igt_facts_test(void) +__noreturn void igt_facts_test(void) { const char *last_test = "Unit Testing"; @@ -776,4 +776,6 @@ void igt_facts_test(void) /* Clean up the list and call igt_facts(). This should not crash */ igt_facts_list_mark_and_sweep(&igt_facts_list_pci_gpu_head); igt_facts(last_test); + + igt_exit(); } -- 2.34.1 From pravalika.gurram at intel.com Tue Jan 21 06:32:07 2025 From: pravalika.gurram at intel.com (Pravalika Gurram) Date: Tue, 21 Jan 2025 12:02:07 +0530 Subject: [PATCH 2/2] lib/igt_facts : Cleanup In-Reply-To: <20250121063207.71737-1-pravalika.gurram@intel.com> References: <20250121063207.71737-1-pravalika.gurram@intel.com> Message-ID: <20250121063207.71737-3-pravalika.gurram@intel.com> fix BOOL_COMPARISON, COMPARISON_TO_NULL, LINE_SPACING, PARENTHESIS_ALIGNMENT, Remove extern from header warning from checkpatch 'Fixes: 1a9c3117328 ("lib/igt_facts: Library and unit testing")' Signed-off-by: Pravalika Gurram --- lib/igt_facts.c | 20 ++++++++++---------- lib/igt_facts.h | 3 ++- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/lib/igt_facts.c b/lib/igt_facts.c index bd6742065..6e7efbaf3 100644 --- a/lib/igt_facts.c +++ b/lib/igt_facts.c @@ -677,18 +677,18 @@ static void igt_facts_test_add_get(struct igt_list_head *head) const char *last_test = NULL; ret = igt_facts_list_add(name, value, last_test, head); - igt_assert(ret == true); + igt_assert(ret); /* Assert that there is one element in the linked list */ igt_assert_eq(igt_list_length(head), 1); /* Assert that the element in the linked list is the one we added */ fact = igt_facts_list_get(name, head); - igt_assert(fact != NULL); + igt_assert(fact); igt_assert_eq(strcmp(fact->name, name), 0); igt_assert_eq(strcmp(fact->value, value), 0); - igt_assert(fact->present == true); - igt_assert(fact->last_test == NULL); + igt_assert(fact->present); + igt_assert(!fact->last_test); } /** @@ -729,16 +729,16 @@ static void igt_facts_test_mark_and_sweep(struct igt_list_head *head) /* Assert that the two updated elements are present */ fact = igt_facts_list_get(name1, head); - igt_assert(fact != NULL); - igt_assert(fact->present == true); + igt_assert(!fact); + igt_assert(fact->present); fact = igt_facts_list_get(name2, head); - igt_assert(fact != NULL); - igt_assert(fact->present == true); + igt_assert(!fact); + igt_assert(fact->present); /* Assert that the third element was deleted */ fact = igt_facts_list_get(name3, head); - igt_assert(fact == NULL); + igt_assert(!fact); } /** @@ -766,7 +766,7 @@ __noreturn void igt_facts_test(void) /* Assert that igt_facts_list_mark_and_sweep() cleans up the list */ igt_assert(igt_list_empty(&igt_facts_list_pci_gpu_head) == false); igt_facts_list_mark_and_sweep(&igt_facts_list_pci_gpu_head); - igt_assert(igt_list_empty(&igt_facts_list_pci_gpu_head) == true); + igt_assert(igt_list_empty(&igt_facts_list_pci_gpu_head)); /* Test the mark and sweep pattern used to delete elements * from the list diff --git a/lib/igt_facts.h b/lib/igt_facts.h index e96f88083..60d702977 100644 --- a/lib/igt_facts.h +++ b/lib/igt_facts.h @@ -37,7 +37,8 @@ struct igt_facts_config { bool enabled; bool disable_udev; }; -extern struct igt_facts_config igt_facts_config; + +struct igt_facts_config igt_facts_config; void igt_facts_lists_init(void); void igt_facts(const char *last_test); -- 2.34.1 From patchwork at emeril.freedesktop.org Tue Jan 21 07:04:02 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 21 Jan 2025 07:04:02 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/amdgpu/amd=5Fabm?= =?utf-8?q?=3A_Fix_test_failed_on_self-refresh_panel_=28rev2=29?= In-Reply-To: <20250120102501.4164-1-chiahsuan.chung@amd.com> References: <20250120102501.4164-1-chiahsuan.chung@amd.com> Message-ID: <173744304291.2491448.420319942019387965@b555e5b46a47> == Series Details == Series: tests/amdgpu/amd_abm: Fix test failed on self-refresh panel (rev2) URL : https://patchwork.freedesktop.org/series/143552/ State : failure == Summary == CI Bug Log - changes from IGT_8199_full -> IGTPW_12463_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12463_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12463_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_12463/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12463_full: ### IGT changes ### #### Possible regressions #### * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-snb: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-snb1/igt at kms_flip@flip-vs-expired-vblank-interruptible.html Known issues ------------ Here are the changes found in IGTPW_12463_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][2] ([i915#8411]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-3/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411]) +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-2/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-5/igt at api_intel_bb@object-reloc-keep-cache.html * igt at device_reset@unbind-cold-reset-rebind: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-18/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-hang at bcs0: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8414]) +6 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/igt at drm_fdinfo@busy-hang at bcs0.html * igt at drm_fdinfo@most-busy-idle-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +17 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-7/igt at drm_fdinfo@most-busy-idle-check-all at vecs1.html * igt at gem_bad_reloc@negative-reloc-lut: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#3281]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-4/igt at gem_bad_reloc@negative-reloc-lut.html * igt at gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-14/igt at gem_basic@multigpu-create-close.html - shard-dg2: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-10/igt at gem_basic@multigpu-create-close.html * igt at gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#3936]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/igt at gem_busy@semaphore.html * igt at gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-7/igt at gem_ccs@block-copy-compressed.html - shard-rkl: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-1/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#13008]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-3/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][16] ([i915#7297]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-5/igt at gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-3/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][18] ([i915#12392] / [i915#7297]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-5/igt at gem_ccs@suspend-resume at tile4-compressed-compfmt0-smem-lmem0.html * igt at gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-6/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#6335]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-4/igt at gem_create@create-ext-cpu-access-big.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_12463/shard-tglu-3/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8562]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-2/igt at gem_create@create-ext-set-pat.html - shard-dg1: NOTRUN -> [SKIP][23] ([i915#8562]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][24] ([i915#8562]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-3/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +6 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-snb2/igt at gem_ctx_persistence@engines-mixed-process.html * igt at gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#8555]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-1/igt at gem_ctx_persistence@heartbeat-hang.html * igt at gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#5882]) +7 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-5/igt at gem_ctx_persistence@saturated-hostile-nopreempt.html * igt at gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-3/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_12463/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_12463/shard-dg1-14/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_12463/shard-mtlp-4/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@kms: - shard-tglu: [PASS][32] -> [DMESG-WARN][33] ([i915#13363]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-10/igt at gem_eio@kms.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-4/igt at gem_eio@kms.html * igt at gem_eio@reset-stress: - shard-snb: NOTRUN -> [FAIL][34] ([i915#8898]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-snb1/igt at gem_eio@reset-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_12463/shard-dg2-8/igt at gem_exec_balancer@bonded-pair.html - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4771]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-14/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4812]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-8/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@full-pulse: - shard-mtlp: [PASS][38] -> [FAIL][39] ([i915#13364]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-5/igt at gem_exec_balancer@full-pulse.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-1/igt at gem_exec_balancer@full-pulse.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4036]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-7/igt at gem_exec_balancer@invalid-bonds.html - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4036]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-18/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][42] ([i915#4525]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-5/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-keep-in-fence: - shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#4525]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at gem_exec_balancer@parallel-keep-in-fence.html * igt at gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][44] ([i915#11965]) +1 other test fail [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-8/igt at gem_exec_capture@capture.html * igt at gem_exec_capture@capture-invisible at smem0: - shard-glk: NOTRUN -> [SKIP][45] ([i915#6334]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk3/igt at gem_exec_capture@capture-invisible at smem0.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][46] ([i915#11965]) +2 other tests fail [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_flush@basic-uc-pro-default: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-17/igt at gem_exec_flush@basic-uc-pro-default.html * igt at gem_exec_flush@basic-wb-prw-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_12463/shard-dg2-7/igt at gem_exec_flush@basic-wb-prw-default.html * igt at gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-1/igt at gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt at gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +12 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-18/igt at gem_exec_reloc@basic-write-cpu-active.html * igt at gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#3281]) +6 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-3/igt at gem_exec_reloc@basic-write-read-noreloc.html * igt at gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4812]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-18/igt at gem_exec_schedule@preempt-queue.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-8/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-7/igt at gem_exec_schedule@reorder-wide.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_12463/shard-rkl-5/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4860]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-1/igt at gem_fence_thrash@bo-copy.html * igt at gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4860]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-14/igt at gem_fenced_exec_thrash@no-spare-fences.html * igt at gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4860]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-8/igt at gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613] / [i915#7582]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-4/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-random: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4613]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-2/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4565]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-7/igt at gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][63] ([i915#4613]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at gem_lmem_swapping@parallel-random-verify-ccs.html - shard-dg1: NOTRUN -> [SKIP][64] ([i915#12193]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][65] ([i915#4613]) +7 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk2/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-8/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_media_vme: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#284]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at gem_media_vme.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4077]) +16 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-1/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4077]) +12 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/igt at gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt at gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4077]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-6/igt at gem_mmap_gtt@fault-concurrent-y.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][71] -> [ABORT][72] ([i915#10729]) +1 other test abort [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-3/igt at gem_mmap_offset@clear-via-pagefault.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-3/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@write-cpu-read-wc: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083]) +4 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-8/igt at gem_mmap_wc@write-cpu-read-wc.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4083]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-7/igt at gem_mmap_wc@write-cpu-read-wc.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4083]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3282]) +6 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at gem_pread@exhaustion.html - shard-snb: NOTRUN -> [WARN][77] ([i915#2658]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-snb1/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282]) +10 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-3/igt at gem_pwrite@basic-self.html * igt at gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4270]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-10/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#4270]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-2/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-14/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt at gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3282]) +5 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-1/igt at gem_readwrite@beyond-eob.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3282]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-4/igt at gem_readwrite@beyond-eob.html * igt at gem_render_copy@x-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8428]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-3/igt at gem_render_copy@x-tiled-to-vebox-y-tiled.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#5190] / [i915#8428]) +10 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-8/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_set_tiling_vs_pwrite: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4079]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-14/igt at gem_set_tiling_vs_pwrite.html * igt at gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4079]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-6/igt at gem_tiled_pread_basic.html - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4079]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-5/igt at gem_tiled_pread_basic.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][89] ([i915#13263] / [i915#13449]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk5/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@create-destroy-unsync: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at gem_userptr_blits@create-destroy-unsync.html * igt at gem_userptr_blits@dmabuf-sync: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#3323]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at gem_userptr_blits@dmabuf-sync.html * igt at gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297]) +5 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-5/igt at gem_userptr_blits@dmabuf-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3282] / [i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-7/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4880]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-8/igt at gem_userptr_blits@map-fixed-invalidate.html - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4880]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3297]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-8/igt at gem_userptr_blits@map-fixed-invalidate-overlap.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_12463/shard-rkl-1/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@unsync-unmap: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#3297]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-4/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#3297]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][100] +473 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-snb2/igt at gem_vm_create@invalid-create.html * igt at gem_workarounds@suspend-resume-fd: - shard-glk: NOTRUN -> [INCOMPLETE][101] ([i915#13356]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk3/igt at gem_workarounds@suspend-resume-fd.html * igt at gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#2527]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/igt at gen9_exec_parse@bb-large.html * igt at gen9_exec_parse@bb-start-cmd: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#2527] / [i915#2856]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at gen9_exec_parse@bb-start-cmd.html * igt at gen9_exec_parse@secure-batches: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#2856]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-8/igt at gen9_exec_parse@secure-batches.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#2856]) +4 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-8/igt at gen9_exec_parse@unaligned-access.html * igt at gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#2527] / [i915#2856]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-4/igt at gen9_exec_parse@unaligned-jump.html * igt at gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#2527]) +5 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-4/igt at gen9_exec_parse@valid-registers.html * igt at i915_fb_tiling: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4881]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-18/igt at i915_fb_tiling.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [ABORT][109] ([i915#10887] / [i915#9820]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-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_12463/shard-rkl-2/igt at i915_module_load@resize-bar.html - shard-dg1: NOTRUN -> [SKIP][111] ([i915#7178]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-14/igt at i915_module_load@resize-bar.html * igt at i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#8399]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at i915_pm_freq_api@freq-basic-api.html * igt at i915_pm_rpm@gem-pread: - shard-rkl: [PASS][113] -> [SKIP][114] ([i915#13328]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-5/igt at i915_pm_rpm@gem-pread.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-4/igt at i915_pm_rpm@gem-pread.html * igt at i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#11681] / [i915#6621]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-14/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][116] ([i915#8346]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-3/igt at i915_pm_rps@reset.html * igt at i915_pm_rps@thresholds: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#11681]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at i915_pm_rps@thresholds.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_12463/shard-dg2-5/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4387]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at i915_pm_sseu@full-enable.html * igt at i915_selftest@live at workarounds: - shard-mtlp: [PASS][120] -> [DMESG-FAIL][121] ([i915#12061]) +1 other test dmesg-fail [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-6/igt at i915_selftest@live at workarounds.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-3/igt at i915_selftest@live at workarounds.html * igt at i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][122] ([i915#9311]) +1 other test dmesg-warn [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-snb1/igt at i915_selftest@mock.html - shard-glk: NOTRUN -> [DMESG-WARN][123] ([i915#1982] / [i915#9311]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk4/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-dg1: NOTRUN -> [DMESG-WARN][124] ([i915#9311]) +1 other test dmesg-warn [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-17/igt at i915_selftest@mock at memory_region.html - shard-glk: NOTRUN -> [DMESG-WARN][125] ([i915#9311]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk4/igt at i915_selftest@mock at memory_region.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_12463/shard-rkl-2/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#4212]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-8/igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4212]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-7/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#4212]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-18/igt at kms_addfb_basic@basic-x-tiled-legacy.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][130] ([i915#8709]) +7 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/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-atomic at pipe-c-hdmi-a-1-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#8709]) +11 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-8/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-c-hdmi-a-1-4-rc-ccs-cc.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][132] ([i915#8709]) +7 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/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-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#8709]) +7 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-9/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-1-y-rc-ccs.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#12967] / [i915#6228]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-7/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#10333]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-5/igt at kms_async_flips@test-cursor.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#9531]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-3/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#1769] / [i915#3555]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-2/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][138] ([i915#1769]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk5/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5286]) +6 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-18/igt at kms_big_fb@4-tiled-64bpp-rotate-270.html * igt at kms_big_fb@4-tiled-8bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#5286]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_big_fb@4-tiled-8bpp-rotate-0.html * igt at kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#5286]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-14/igt at kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#5286]) +5 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-7/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#5286]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-5/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][144] +8 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-5/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@linear-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#3638]) +5 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-18/igt at kms_big_fb@linear-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#3638]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-1/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#5190]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-4/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][148] ([i915#4538] / [i915#5190]) +15 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-7/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6187]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-4/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#4538]) +7 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-18/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#6095]) +193 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/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: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#10307] / [i915#6095]) +157 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-1/igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/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-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#12313]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-10/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#6095]) +59 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/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-rotation-180-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#6095]) +72 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/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-rotation-180-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#4423] / [i915#6095]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#12805]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][159] ([i915#12805]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-8/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#12805]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-4/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-dg2: NOTRUN -> [SKIP][161] ([i915#12805]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][162] ([i915#12805]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-5/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#6095]) +9 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-7/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-a-edp-1.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#6095]) +49 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#6095]) +9 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-6/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][166] ([i915#12796]) +1 other test incomplete [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk2/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#12313]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-4/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][168] ([i915#12313]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-4/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][169] ([i915#12313]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#3742]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/igt at kms_cdclk@mode-transition-all-outputs.html - shard-tglu: NOTRUN -> [SKIP][171] ([i915#3742]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-2/igt at kms_cdclk@mode-transition-all-outputs.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#7213] / [i915#9010]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-1/igt at kms_cdclk@mode-transition-all-outputs.html - shard-dg2: NOTRUN -> [SKIP][173] ([i915#11616] / [i915#7213]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-6/igt at kms_cdclk@mode-transition-all-outputs.html - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3742]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-3/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +9 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-2/igt at kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +8 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-5/igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +12 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-6/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_frames@hdmi-crc-single: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +11 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at kms_chamelium_frames@hdmi-crc-single.html * igt at kms_chamelium_hpd@dp-hpd: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +4 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#11151] / [i915#7828]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-7/igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt at kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#7116] / [i915#9424]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-17/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#3116] / [i915#3299]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-3/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3299]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-8/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3299]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-3/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#3116]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-5/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#6944] / [i915#9424]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-8/igt at kms_content_protection@legacy.html - shard-rkl: NOTRUN -> [SKIP][187] ([i915#7118] / [i915#9424]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-7/igt at kms_content_protection@legacy.html - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#6944] / [i915#9424]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-4/igt at kms_content_protection@lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][190] ([i915#9424]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-4/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#9424]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-7/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [TIMEOUT][192] ([i915#7173]) +1 other test timeout [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-10/igt at kms_content_protection@srm.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#13049]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-2/igt at kms_cursor_crc@cursor-onscreen-512x512.html - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#13049]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#13049]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-1/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#13049]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-9/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#13049]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-5/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-rapid-movement-max-size: - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#3555]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_cursor_crc@cursor-rapid-movement-max-size.html * igt at kms_cursor_crc@cursor-sliding-256x256: - shard-rkl: NOTRUN -> [DMESG-WARN][199] ([i915#12964]) +23 other tests dmesg-warn [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-2/igt at kms_cursor_crc@cursor-sliding-256x256.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#13049]) +4 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-14/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_edge_walk@128x128-top-edge: - shard-rkl: [PASS][201] -> [DMESG-WARN][202] ([i915#12964]) +28 other tests dmesg-warn [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-5/igt at kms_cursor_edge_walk@128x128-top-edge.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-1/igt at kms_cursor_edge_walk@128x128-top-edge.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#9809]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-5/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][204] +16 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-2/igt at kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-snb: [PASS][205] -> [SKIP][206] +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb7/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-snb7/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#4103] / [i915#4213]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-18/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#4103] / [i915#4213]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-8/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@basic-flip-after-cursor-atomic: - shard-glk: NOTRUN -> [FAIL][209] ([i915#2346]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk8/igt at kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt at kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#13046] / [i915#5354]) +4 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-4/igt at kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt at kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: NOTRUN -> [FAIL][211] ([i915#2346]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-snb5/igt at kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#9067]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/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][213] ([i915#4103]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][214] ([i915#4103]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-7/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#3555]) +14 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-4/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#8588]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-18/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#1769] / [i915#3555] / [i915#3804]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-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-1: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#3804]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-1.html * igt at kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#1257]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-8/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#12402]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-2/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_12463/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][222] ([i915#8812]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-17/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#8812]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-1/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-basic: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-17/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#3840]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#3840]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-6/igt at kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-3/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#3955]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-7/igt at kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][229] ([i915#3469]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-9/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#3469]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-6/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#1839]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-5/igt at kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#1839]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][233] ([i915#1839]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-8/igt at kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#1839]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-4/igt at kms_feature_discovery@display-4x.html - shard-dg2: NOTRUN -> [SKIP][235] ([i915#1839]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-1/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#658]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-10/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#658]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#9934]) +9 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-3/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html - shard-tglu: NOTRUN -> [SKIP][239] ([i915#3637]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-2/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][240] -> [FAIL][241] ([i915#13027]) +1 other test fail [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk8/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a1-hdmi-a2.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk5/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at ac-hdmi-a1-hdmi-a2.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#3637]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-4/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#9934]) +13 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-1/igt at kms_flip@2x-modeset-vs-vblank-race.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#3637]) +5 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-dg1: NOTRUN -> [SKIP][245] ([i915#9934]) +9 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-17/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@2x-wf_vblank-ts-check: - shard-snb: [PASS][246] -> [FAIL][247] ([i915#11989]) +1 other test fail [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb4/igt at kms_flip@2x-wf_vblank-ts-check.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-snb4/igt at kms_flip@2x-wf_vblank-ts-check.html * igt at kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#8381]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-1/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#8381]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-6/igt at kms_flip@flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][250] ([i915#8381]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][251] ([i915#12745] / [i915#4839]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk5/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][252] ([i915#12745]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk5/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check at b-vga1: - shard-snb: NOTRUN -> [FAIL][253] ([i915#11989]) +3 other tests fail [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-snb4/igt at kms_flip@plain-flip-ts-check at b-vga1.html * igt at kms_flip@wf_vblank-ts-check at a-edp1: - shard-mtlp: [PASS][254] -> [FAIL][255] ([i915#11989]) +5 other tests fail [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-4/igt at kms_flip@wf_vblank-ts-check at a-edp1.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-5/igt at kms_flip@wf_vblank-ts-check at a-edp1.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling at pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#2587] / [i915#2672]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-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-ytileccs-to-64bpp-ytile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#2587] / [i915#2672] / [i915#3555]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672] / [i915#3555]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-14/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-rkl: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#2587] / [i915#2672]) +3 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-8/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-5/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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#8813]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-5/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling 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-rkl: NOTRUN -> [SKIP][264] ([i915#2672]) +3 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-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-16bpp-yftile-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#2672]) +4 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-2/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#3555]) +3 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-4/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-dg1: NOTRUN -> [SKIP][267] ([i915#2672] / [i915#3555]) +6 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-14/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-dg1: NOTRUN -> [SKIP][268] ([i915#2587] / [i915#2672]) +7 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-14/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-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#2672] / [i915#3555]) +4 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-10/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [FAIL][271] ([i915#6880]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-6/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#1825]) +41 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][273] +57 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-14/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#1825]) +15 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#5354]) +54 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-stridechange: - shard-dg2: [PASS][276] -> [FAIL][277] ([i915#6880]) +2 other tests fail [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-8/igt at kms_frontbuffer_tracking@fbc-stridechange.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-stridechange.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#5439]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-14/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][279] ([i915#5439]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-5/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#10055]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbc-tiling-y.html - shard-dg2: NOTRUN -> [SKIP][281] ([i915#10055]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-6/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#3458]) +24 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#8708]) +28 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][284] +50 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][285] +75 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-7/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#4423]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#8708]) +26 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-2/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#3023]) +26 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-3/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#3458]) +28 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#8708]) +4 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-3/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt at kms_hdr@bpc-switch-dpms: - shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8228]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_hdr@bpc-switch-dpms.html * igt at kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#3555] / [i915#8228]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-4/igt at kms_hdr@invalid-hdr.html - shard-tglu: NOTRUN -> [SKIP][293] ([i915#3555] / [i915#8228]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-5/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@invalid-metadata-sizes: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#3555] / [i915#8228]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#3555] / [i915#8228]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-3/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#10656]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-1/igt at kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][297] ([i915#10656]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-4/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#12388]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-4/igt at kms_joiner@basic-force-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][299] ([i915#12388]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-2/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#12339]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-1/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#10656]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-17/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#10656] / [i915#13522]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-6/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][303] ([i915#12394] / [i915#13522]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#6301]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-2/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][305] +15 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-7/igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1: - shard-glk: [PASS][306] -> [INCOMPLETE][307] ([i915#12756] / [i915#1982]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk8/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk2/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#8821]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-1/igt at kms_plane_lowres@tiling-y.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_12463/shard-dg2-5/igt at kms_plane_lowres@tiling-yf.html - shard-rkl: NOTRUN -> [SKIP][310] ([i915#3555]) +3 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-7/igt at kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#3555] / [i915#8821]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-6/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-y: - shard-dg1: NOTRUN -> [DMESG-WARN][312] ([i915#4423]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#3555] / [i915#8806]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-6/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#12247]) +7 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-2/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][315] ([i915#12247]) +13 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-8/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#12247] / [i915#6953]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-9/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-tglu-1: NOTRUN -> [SKIP][317] ([i915#12247] / [i915#6953]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][318] ([i915#12247] / [i915#6953]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/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-c: - shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#12247]) +8 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html - shard-dg1: NOTRUN -> [SKIP][320] ([i915#12247]) +8 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#12247] / [i915#3555] / [i915#6953]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/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][322] ([i915#12247]) +3 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-2/igt at kms_plane_scaling@planes-downscale-factor-0-75 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#12247] / [i915#6953] / [i915#9423]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-4/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][324] ([i915#12247] / [i915#6953]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-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-d: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#12247]) +3 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-4/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d.html * igt at kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][326] ([i915#5354]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@fade-with-suspend: - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#9812]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_pm_backlight@fade-with-suspend.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#9685]) +2 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-8/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#9685]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-4/igt at kms_pm_dc@dc5-psr.html - shard-dg1: NOTRUN -> [SKIP][330] ([i915#9685]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-17/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#5978]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-7/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][332] ([i915#8430]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-17/igt at kms_pm_lpsp@screens-disabled.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/IGT_8199/shard-rkl-7/igt at kms_pm_rpm@dpms-lpsp.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-1/igt at kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][335] ([i915#9519]) +2 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-18/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#9519]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-3/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][337] ([i915#9519]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-4/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#9519]) +2 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-8/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#6524] / [i915#6805]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-5/igt at kms_prime@basic-crc-vgem.html * igt at kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][340] ([i915#6524]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][341] ([i915#6524]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-9/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][342] ([i915#11520]) +6 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-10/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][343] ([i915#11520]) +10 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-snb4/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html - shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#11520]) +3 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][345] ([i915#11520]) +11 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk8/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#12316]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-1/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-rkl: NOTRUN -> [SKIP][347] ([i915#11520]) +7 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-7/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][348] ([i915#11520]) +9 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-17/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#11520]) +14 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-2/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#9683]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-7/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][351] ([i915#9683]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-7/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#9732]) +12 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_psr@fbc-pr-cursor-plane-onoff.html * igt at kms_psr@fbc-psr2-primary-blt: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#1072] / [i915#9732]) +20 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-3/igt at kms_psr@fbc-psr2-primary-blt.html * igt at kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#9688]) +7 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-1/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@psr2-primary-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][355] ([i915#1072] / [i915#9732]) +22 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-17/igt at kms_psr@psr2-primary-mmap-cpu.html - shard-tglu: NOTRUN -> [SKIP][356] ([i915#9732]) +13 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-9/igt at kms_psr@psr2-primary-mmap-cpu.html * igt at kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#1072] / [i915#9732]) +34 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-3/igt at kms_psr@psr2-primary-mmap-gtt.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][358] +521 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk8/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][359] ([i915#9685]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-3/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][360] ([i915#5289]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-4/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][361] ([i915#5289]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-18/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][362] ([i915#5289]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-5/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#5289]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#12755] / [i915#5190]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#12755]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-8/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][366] ([i915#3555]) +4 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-17/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][367] ([i915#3555]) +3 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-4/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][368] ([i915#13179]) +1 other test abort [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk9/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-mtlp: NOTRUN -> [SKIP][369] ([i915#3555] / [i915#8809]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-7/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#8623]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-1/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vblank@query-forked-hang: - shard-rkl: NOTRUN -> [DMESG-WARN][371] ([i915#12917] / [i915#12964]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-4/igt at kms_vblank@query-forked-hang.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][372] ([i915#12276]) +3 other tests incomplete [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk8/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-1.html * igt at kms_vrr@flip-basic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][373] ([i915#9906]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-1/igt at kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][374] ([i915#9906]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-17/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#3555] / [i915#9906]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-4/igt at kms_vrr@negative-basic.html - shard-rkl: NOTRUN -> [SKIP][376] ([i915#3555] / [i915#9906]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-4/igt at kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][377] ([i915#3555] / [i915#9906]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-17/igt at kms_vrr@negative-basic.html - shard-tglu: NOTRUN -> [SKIP][378] ([i915#3555] / [i915#9906]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-9/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][379] ([i915#9906]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-3/igt at kms_vrr@seamless-rr-switch-drrs.html - shard-tglu: NOTRUN -> [SKIP][380] ([i915#9906]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-3/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][381] ([i915#2437]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-1/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][382] ([i915#2437]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk6/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][383] ([i915#2437]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][384] ([i915#2437] / [i915#9412]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-3/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][385] ([i915#7387]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-4/igt at perf@global-sseu-config-invalid.html * igt at perf_pmu@busy-accuracy-2 at vcs1: - shard-mtlp: [PASS][386] -> [FAIL][387] ([i915#4349]) +3 other tests fail [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-1/igt at perf_pmu@busy-accuracy-2 at vcs1.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-1/igt at perf_pmu@busy-accuracy-2 at vcs1.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: NOTRUN -> [FAIL][388] ([i915#4349]) +8 other tests fail [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-2/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@frequency at gt0: - shard-dg2: NOTRUN -> [FAIL][389] ([i915#12549] / [i915#6806]) +1 other test fail [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-2/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][390] ([i915#8516]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-17/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#8516]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-1/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][392] ([i915#8516]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-4/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][393] ([i915#8516]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-4/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][394] ([i915#3708] / [i915#4077]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-17/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][395] ([i915#3708] / [i915#4077]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-2/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][396] ([i915#3708]) +1 other test skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-8/igt at prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][397] ([i915#3708]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-7/igt at prime_vgem@fence-read-hang.html - shard-dg1: NOTRUN -> [SKIP][398] ([i915#3708]) +1 other test skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/igt at prime_vgem@fence-read-hang.html * igt at prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][399] ([i915#3708]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-8/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][400] ([i915#9917]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-2/igt at sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][401] ([i915#9917]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-12/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@bind-unbind-vf at vf-4: - shard-tglu: NOTRUN -> [FAIL][402] ([i915#12910]) +9 other tests fail [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-4/igt at sriov_basic@bind-unbind-vf at vf-4.html * igt at sriov_basic@bind-unbind-vf at vf-5: - shard-mtlp: NOTRUN -> [FAIL][403] ([i915#12910]) +9 other tests fail [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-6/igt at sriov_basic@bind-unbind-vf at vf-5.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2: NOTRUN -> [SKIP][404] ([i915#9917]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-4/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt at gem_create@busy-create: - shard-rkl: [DMESG-WARN][405] ([i915#12964]) -> [PASS][406] +31 other tests pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-3/igt at gem_create@busy-create.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-5/igt at gem_create@busy-create.html * igt at gem_exec_suspend@basic-s3: - shard-rkl: [DMESG-FAIL][407] ([i915#12964]) -> [PASS][408] +1 other test pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-7/igt at gem_exec_suspend@basic-s3.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-rkl-7/igt at gem_exec_suspend@basic-s3.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: [TIMEOUT][409] ([i915#5493]) -> [PASS][410] +1 other test pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-7/igt at gem_lmem_swapping@smem-oom at lmem0.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-10/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][411] ([i915#12817] / [i915#9820]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-5/igt at i915_module_load@reload-with-fault-injection.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-tglu-3/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_pm_freq_api@freq-suspend at gt0: - shard-dg2: [INCOMPLETE][413] ([i915#12455]) -> [PASS][414] +1 other test pass [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-10/igt at i915_pm_freq_api@freq-suspend at gt0.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg2-4/igt at i915_pm_freq_api@freq-suspend at gt0.html * igt at i915_pm_rpm@sysfs-read: - shard-dg1: [SKIP][415] ([i915#4423]) -> [PASS][416] [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-18/igt at i915_pm_rpm@sysfs-read.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-14/igt at i915_pm_rpm@sysfs-read.html * igt at i915_suspend@fence-restore-untiled: - shard-glk: [INCOMPLETE][417] ([i915#4817]) -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk7/igt at i915_suspend@fence-restore-untiled.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk3/igt at i915_suspend@fence-restore-untiled.html * igt at kms_color@legacy-gamma-reset: - shard-dg1: [DMESG-WARN][419] ([i915#4423]) -> [PASS][420] +6 other tests pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-18/igt at kms_color@legacy-gamma-reset.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-dg1-13/igt at kms_color@legacy-gamma-reset.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-mtlp: [FAIL][421] ([i915#2346]) -> [PASS][422] [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-mtlp-8/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_cursor_legacy@short-flip-before-cursor-toggle: - shard-glk: [FAIL][423] ([i915#2346]) -> [PASS][424] [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk8/igt at kms_cursor_legacy@short-flip-before-cursor-toggle.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/shard-glk3/igt at kms_cursor_legacy@short-flip-before-cu == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12463/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 21 07:25:17 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 21 Jan 2025 07:25:17 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_tests/amdgpu=3A_find_PCI_?= =?utf-8?q?bus=2C_device_and_function_and_use_it?= In-Reply-To: <20250121044025.167761-1-vitaly.prosyak@amd.com> References: <20250121044025.167761-1-vitaly.prosyak@amd.com> Message-ID: <173744431715.2501559.975474842088640316@b555e5b46a47> == Series Details == Series: tests/amdgpu: find PCI bus, device and function and use it URL : https://patchwork.freedesktop.org/series/143766/ State : success == Summary == CI Bug Log - changes from IGT_8200 -> IGTPW_12471 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12471/index.html Participating hosts (40 -> 40) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_12471 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#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8200/bat-arls-5/igt at i915_selftest@live at workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12471/bat-arls-5/igt at i915_selftest@live at workarounds.html #### Possible fixes #### * igt at i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][3] ([i915#12061]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8200/bat-mtlp-8/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12471/bat-mtlp-8/igt at i915_selftest@live.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8200 -> IGTPW_12471 * Linux: CI_DRM_15985 -> CI_DRM_15986 CI-20190529: 20190529 CI_DRM_15985: fb87b4e061d1844beaca66c8446cfcf60db99a23 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15986: e48abf2c0aa4813a4629aeebd0547eb86f0f1a91 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12471: 8ee26c6c2c199488285311f882112bd9b6486b89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8200: 5352b187076e89a9ff146cc1ecbd809aa20e4f91 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12471/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 21 07:34:15 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 21 Jan 2025 07:34:15 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Ffault?= =?utf-8?q?=5Finjection=3A_Inject_errors_during_xe=5Fguc=5Fct=5Fsend=5Frecv_?= =?utf-8?q?=26_xe=5Fguc=5Fmmio=5Fsend=5Frecv_=28rev3=29?= In-Reply-To: <20250120122835.10511-1-satyanarayana.k.v.p@intel.com> References: <20250120122835.10511-1-satyanarayana.k.v.p@intel.com> Message-ID: <173744485593.2504091.10568757810047817285@b555e5b46a47> == Series Details == Series: tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv & xe_guc_mmio_send_recv (rev3) URL : https://patchwork.freedesktop.org/series/142999/ State : failure == Summary == CI Bug Log - changes from IGT_8199_full -> IGTPW_12464_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12464_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12464_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_12464/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12464_full: ### IGT changes ### #### Possible regressions #### * igt at gem_workarounds@suspend-resume-fd: - shard-tglu-1: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at gem_workarounds@suspend-resume-fd.html * igt at perf_pmu@module-unload: - shard-tglu: [PASS][2] -> [ABORT][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-9/igt at perf_pmu@module-unload.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-10/igt at perf_pmu@module-unload.html #### Warnings #### * igt at kms_prime@basic-modeset-hybrid: - shard-tglu: [SKIP][4] ([i915#6524]) -> [ABORT][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-9/igt at kms_prime@basic-modeset-hybrid.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-2/igt at kms_prime@basic-modeset-hybrid.html Known issues ------------ Here are the changes found in IGTPW_12464_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-4/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/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_12464/shard-rkl-1/igt at api_intel_bb@object-reloc-keep-cache.html * igt at drm_fdinfo@busy-hang at bcs0: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +6 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-12/igt at drm_fdinfo@busy-hang at bcs0.html * igt at drm_fdinfo@most-busy-idle-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +34 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-6/igt at drm_fdinfo@most-busy-idle-check-all at vecs1.html * igt at gem_bad_reloc@negative-reloc-lut: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#3281]) +2 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-3/igt at gem_bad_reloc@negative-reloc-lut.html * igt at gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#7697]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/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_12464/shard-tglu-6/igt at gem_ccs@block-copy-compressed.html - shard-rkl: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-7/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#13008]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-2/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-7/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#6335]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-10/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8562]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-1/igt at gem_create@create-ext-set-pat.html - shard-rkl: NOTRUN -> [SKIP][22] ([i915#8562]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-5/igt at gem_create@create-ext-set-pat.html - shard-dg1: NOTRUN -> [SKIP][23] ([i915#8562]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/igt at gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][24] ([i915#8562]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-2/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][25] ([i915#12353]) +1 other test incomplete [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-glk5/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][26] ([i915#1099]) +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-snb5/igt at gem_ctx_persistence@engines-hostile-preempt.html * igt at gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-8/igt at gem_ctx_persistence@heartbeat-close.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_12464/shard-dg2-5/igt at gem_ctx_sseu@invalid-sseu.html - shard-rkl: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-2/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_12464/shard-dg1-18/igt at gem_ctx_sseu@invalid-sseu.html - shard-tglu: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-7/igt at gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-3/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][33] ([i915#13390]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-glk9/igt at gem_eio@in-flight-suspend.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_12464/shard-dg2-8/igt at gem_exec_balancer@bonded-pair.html - shard-dg1: NOTRUN -> [SKIP][35] ([i915#4771]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4036]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-8/igt at gem_exec_balancer@invalid-bonds.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4036]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@noheartbeat: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#8555]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-18/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4525]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-2/igt at gem_exec_balancer@parallel-contexts.html * igt at gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][41] ([i915#11965]) +1 other test fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-8/igt at gem_exec_capture@capture.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][42] ([i915#11965]) +2 other tests fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +6 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-3/igt at gem_exec_flush@basic-uc-pro-default.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-12/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +7 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-4/igt at gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt at gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +10 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at gem_exec_reloc@basic-write-cpu-active.html * igt at gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +7 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-7/igt at gem_exec_reloc@basic-write-read-noreloc.html * igt at gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4812]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at gem_exec_schedule@preempt-queue.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-1/igt at gem_exec_schedule@preempt-queue-contexts-chain.html - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-6/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_suspend@basic-s4-devices: - shard-tglu: [PASS][51] -> [ABORT][52] ([i915#7975] / [i915#8213]) +1 other test abort [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-7/igt at gem_exec_suspend@basic-s4-devices.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-10/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4860]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-1/igt at gem_fence_thrash@bo-copy.html - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/igt at gem_fence_thrash@bo-copy.html * igt at gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-5/igt at gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613] / [i915#7582]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-7/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#4613]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-9/igt at gem_lmem_swapping@heavy-random.html - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4613]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-3/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@massive: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-4/igt at gem_lmem_swapping@massive.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_12464/shard-glk7/igt at gem_lmem_swapping@random.html * igt at gem_lmem_swapping@verify: - shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at gem_lmem_swapping@verify.html * igt at gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#8289]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at gem_media_fill@media-fill.html * igt at gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#284]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-6/igt at gem_media_vme.html - shard-dg1: NOTRUN -> [SKIP][64] ([i915#284]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-18/igt at gem_media_vme.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4077]) +14 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-5/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4077]) +13 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt at gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4077]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-8/igt at gem_mmap_gtt@fault-concurrent-y.html * igt at gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][68] -> [ABORT][69] ([i915#10729]) +1 other test abort [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-3/igt at gem_mmap_offset@clear-via-pagefault.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-7/igt at gem_mmap_offset@clear-via-pagefault.html * igt at gem_mmap_wc@write-cpu-read-wc: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4083]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-5/igt at gem_mmap_wc@write-cpu-read-wc.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4083]) +5 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-6/igt at gem_mmap_wc@write-prefaulted.html - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4083]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-12/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-1/igt at gem_partial_pwrite_pread@writes-after-reads-display.html * igt at gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282]) +9 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-7/igt at gem_pwrite@basic-self.html * igt at gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4270]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-3/igt at gem_pxp@display-protected-crc.html - shard-rkl: NOTRUN -> [TIMEOUT][76] ([i915#12917] / [i915#12964]) +1 other test timeout [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-2/igt at gem_pxp@display-protected-crc.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4270]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-12/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: NOTRUN -> [TIMEOUT][78] ([i915#12964]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-5/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_12464/shard-tglu-5/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_readwrite@beyond-eob: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3282]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-18/igt at gem_readwrite@beyond-eob.html - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#3282]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-5/igt at gem_readwrite@beyond-eob.html * igt at gem_render_copy@x-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8428]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-7/igt at gem_render_copy@x-tiled-to-vebox-y-tiled.html * igt at gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#5190] / [i915#8428]) +9 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-5/igt at gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt at gem_set_tiling_vs_pwrite: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#4079]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-14/igt at gem_set_tiling_vs_pwrite.html * igt at gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4079]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-2/igt at gem_tiled_pread_basic.html - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4079]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-7/igt at gem_tiled_pread_basic.html * igt at gem_userptr_blits@coherency-unsync: - shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at gem_userptr_blits@coherency-unsync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3282] / [i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-7/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4880]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-7/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4880]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-2/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-5/igt at gem_userptr_blits@unsync-unmap.html - shard-rkl: NOTRUN -> [SKIP][93] ([i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-1/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][95] +479 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-snb5/igt at gem_vm_create@invalid-create.html * igt at gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#2527]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at gen9_exec_parse@bb-large.html * igt at gen9_exec_parse@cmd-crossing-page: - shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at gen9_exec_parse@cmd-crossing-page.html * igt at gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#2856]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-6/igt at gen9_exec_parse@secure-batches.html - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#2856]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-4/igt at gen9_exec_parse@secure-batches.html * igt at gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-2/igt at gen9_exec_parse@unaligned-jump.html * igt at gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#2527]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-7/igt at gen9_exec_parse@valid-registers.html * igt at i915_fb_tiling: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#4881]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-12/igt at i915_fb_tiling.html * igt at i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [ABORT][103] ([i915#9820]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-1/igt at i915_module_load@reload-with-fault-injection.html - shard-snb: NOTRUN -> [ABORT][104] ([i915#9820]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-snb4/igt at i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [ABORT][105] ([i915#9820]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-10/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#6412]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-5/igt at i915_module_load@resize-bar.html - shard-dg1: NOTRUN -> [SKIP][107] ([i915#7178]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/igt at i915_module_load@resize-bar.html * igt at i915_pm_rc6_residency@rc6-idle: - shard-dg1: NOTRUN -> [FAIL][108] ([i915#3591]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: NOTRUN -> [FAIL][109] ([i915#12739] / [i915#3591]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#11681] / [i915#6621]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#11681] / [i915#6621]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][112] ([i915#8346]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-5/igt at i915_pm_rps@reset.html * igt at i915_pm_rps@thresholds: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#11681]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/igt at i915_pm_rps@thresholds.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#11681]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-8/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_selftest@mock at memory_region: - shard-dg1: NOTRUN -> [DMESG-WARN][115] ([i915#9311]) +1 other test dmesg-warn [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s3-without-i915: - shard-glk: [PASS][116] -> [INCOMPLETE][117] ([i915#4817]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk9/igt at i915_suspend@basic-s3-without-i915.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-glk1/igt at i915_suspend@basic-s3-without-i915.html * igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#4212]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-7/igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#4212]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-7/igt at kms_addfb_basic@basic-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4212]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/igt at kms_addfb_basic@basic-x-tiled-legacy.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][121] ([i915#8709]) +7 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/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-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#8709]) +7 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-8/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-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][123] ([i915#8709]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/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][124] ([i915#12967] / [i915#6228]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-1/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#12105]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-4/igt at kms_async_flips@test-cursor at pipe-b-edp-1.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#9531]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-6/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][127] ([i915#1769]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-snb2/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][128] ([i915#1769] / [i915#3555]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-1/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_12464/shard-rkl-5/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][130] ([i915#1769]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-glk5/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5286]) +5 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#5286]) +7 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-1/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-tglu: NOTRUN -> [SKIP][133] ([i915#5286]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-10/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#5286]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][135] +6 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-6/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#3638]) +5 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-7/igt at kms_big_fb@linear-64bpp-rotate-90.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_12464/shard-dg1-18/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#5190]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5190]) +13 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt at kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6187]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-2/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-14/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#6095]) +69 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-8/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-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#12313]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-1/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#6095]) +4 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-1/igt at kms_ccs@crc-primary-basic-yf-tiled-ccs at pipe-b-edp-1.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#12313]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-4/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-rotation-180-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#6095]) +44 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#12805]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-18/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][149] ([i915#12805]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-6/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#12805]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-4/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-dg2: NOTRUN -> [SKIP][151] ([i915#12805]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-6/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][152] ([i915#12805]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/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][153] ([i915#6095]) +9 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-5/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-yf-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][154] ([i915#12796]) +1 other test incomplete [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-glk3/igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#10307] / [i915#6095]) +132 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/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-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#12313]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-3/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#6095]) +143 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-12/igt at kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@random-ccs-data-y-tiled-ccs at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#6095]) +95 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-2/igt at kms_ccs@random-ccs-data-y-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3742]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at kms_cdclk@mode-transition-all-outputs.html - shard-tglu: NOTRUN -> [SKIP][160] ([i915#3742]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-8/igt at kms_cdclk@mode-transition-all-outputs.html - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#7213] / [i915#9010]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-4/igt at kms_cdclk@mode-transition-all-outputs.html - shard-dg2: NOTRUN -> [SKIP][162] ([i915#11616] / [i915#7213]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at kms_cdclk@mode-transition-all-outputs.html - shard-rkl: NOTRUN -> [SKIP][163] ([i915#3742]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +5 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][165] +24 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-6/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_edid@hdmi-edid-read: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +9 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-18/igt at kms_chamelium_edid@hdmi-edid-read.html * igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +7 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-9/igt at kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +12 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-8/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +7 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-2/igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#3116] / [i915#3299]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-8/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3299]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-4/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3299]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#3299]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#3116] / [i915#3299]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3116]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-4/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-9/igt at kms_content_protection@legacy.html - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#6944] / [i915#9424]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-6/igt at kms_content_protection@legacy.html - shard-dg2: NOTRUN -> [SKIP][179] ([i915#7118] / [i915#9424]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-5/igt at kms_content_protection@legacy.html - shard-rkl: NOTRUN -> [SKIP][180] ([i915#7118] / [i915#9424]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-1/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#9424]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-6/igt at kms_content_protection@lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][182] ([i915#9424]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-7/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#9424]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [TIMEOUT][184] ([i915#7173]) +1 other test timeout [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-10/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#7116] / [i915#9424]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555]) +9 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-1/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#13049]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-6/igt at kms_cursor_crc@cursor-onscreen-512x512.html - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#13049]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-6/igt at kms_cursor_crc@cursor-onscreen-512x512.html - shard-rkl: NOTRUN -> [SKIP][189] ([i915#13049]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-7/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#13049]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555]) +9 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-1/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#3555]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#13049]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-1/igt at kms_cursor_crc@cursor-rapid-movement-512x512.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#13049]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][195] ([i915#12358] / [i915#7882]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-glk1/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][196] ([i915#12358]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-glk1/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#9809]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-1/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-snb: [PASS][198] -> [SKIP][199] +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb7/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-snb5/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#13046] / [i915#5354]) +5 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-8/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][201] +19 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-1/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#9067]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-4/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][203] ([i915#4103]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-9/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][204] ([i915#4103]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-1/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#9723]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#8588]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/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][207] ([i915#3804]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2.html * igt at kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#1257]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-6/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#12402]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-4/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][210] ([i915#12402]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-7/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#8812]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-7/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-1/igt at kms_dsc@dsc-basic.html - shard-dg1: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#3840]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#3840]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#3840]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-7/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#3955]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-1/igt at kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][217] ([i915#3469]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-10/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#3469]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-6/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#1839]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-4/igt at kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][220] ([i915#1839]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-7/igt at kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#1839]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-7/igt at kms_feature_discovery@display-4x.html - shard-dg2: NOTRUN -> [SKIP][222] ([i915#1839]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-8/igt at kms_feature_discovery@display-4x.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_12464/shard-tglu-6/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#658]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][225] ([i915#658]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-1/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-fences-interruptible: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#9934]) +9 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/igt at kms_flip@2x-flip-vs-fences-interruptible.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#3637]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-2/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#3637]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#3637]) +4 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-9/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-dg2: NOTRUN -> [SKIP][230] ([i915#9934]) +10 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-5/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html - shard-dg1: NOTRUN -> [SKIP][231] ([i915#9934]) +6 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-18/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#8381]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-8/igt at kms_flip@flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][233] ([i915#8381]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-8/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#8381]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-18/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1: - shard-rkl: [PASS][235] -> [FAIL][236] ([i915#11989]) +2 other tests fail [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-7/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-7/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html - shard-tglu: [PASS][237] -> [FAIL][238] ([i915#11989]) +3 other tests fail [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-10/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-4/igt at kms_flip@wf_vblank-ts-check at a-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#3555]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/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][240] ([i915#2587] / [i915#2672]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/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-ytileccs-to-64bpp-ytile-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#2672]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-8/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-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555]) +4 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-3/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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#8813]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling 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-rkl: NOTRUN -> [SKIP][245] ([i915#2672]) +4 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling at pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][246] ([i915#2587] / [i915#2672]) +2 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-7/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-tglu: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-10/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-dg1: NOTRUN -> [SKIP][248] ([i915#2672] / [i915#3555]) +5 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/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-dg1: NOTRUN -> [SKIP][249] ([i915#2587] / [i915#2672]) +5 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/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-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555]) +2 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-4/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][252] +56 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-12/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#1825]) +14 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-1/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#5354]) +42 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#1825]) +54 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#5439]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-1/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][257] ([i915#5439]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-5/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#10055]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-8/igt at kms_frontbuffer_tracking@fbc-tiling-y.html - shard-dg2: NOTRUN -> [SKIP][259] ([i915#10055]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-8/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#3458]) +14 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-12/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#8708]) +22 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#8708]) +31 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#10433] / [i915#3458]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-suspend.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][264] +36 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#3458]) +21 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#3023]) +30 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-1/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][267] +78 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#8708]) +4 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-5/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt at kms_hdmi_inject@inject-audio: - shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#13030]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_hdmi_inject@inject-audio.html * igt at kms_hdr@brightness-with-hdr: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#12713]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-6/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#8228]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-10/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-toggle: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8228]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8228]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-1/igt at kms_hdr@static-toggle-dpms.html - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#12388]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-8/igt at kms_joiner@basic-force-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][276] ([i915#12388]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-5/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#12339]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at kms_joiner@basic-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][278] ([i915#12339]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#10656]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-7/igt at kms_joiner@invalid-modeset-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][280] ([i915#10656]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-14/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#10656] / [i915#13522]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-6/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][282] ([i915#12394] / [i915#13522]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-18/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#6301]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-1/igt at kms_panel_fitting@legacy.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][284] ([i915#13026]) +1 other test incomplete [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-glk3/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][285] ([i915#12178]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-glk7/igt at kms_plane_alpha_blend@alpha-basic.html * igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][286] ([i915#7862]) +1 other test fail [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-glk7/igt at kms_plane_alpha_blend@alpha-basic at pipe-c-hdmi-a-1.html * igt at kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#8821]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-7/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8821]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-1/igt at kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8821]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-2/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#6953]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#12247] / [i915#9423]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#12247]) +8 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation at pipe-b: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#12247]) +9 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-5/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation at pipe-b.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#12247]) +8 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-10/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#12247] / [i915#6953]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-10/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#12247] / [i915#3555]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#12247] / [i915#6953] / [i915#9423]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-3/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][298] ([i915#12247] / [i915#6953]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-2/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-d: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#12247]) +7 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-3/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 at pipe-d.html * igt at kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#5354]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-14/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#5354]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#12343]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-1/igt at kms_pm_backlight@brightness-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][303] ([i915#12343]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-9/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#9685]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-7/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#9685]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-4/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc5-retention-flops: - shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#3828]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_pm_dc@dc5-retention-flops.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#9340]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-6/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][308] ([i915#8430]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-18/igt at kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][309] ([i915#8430]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-6/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#9519]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#9519]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-3/igt at kms_pm_rpm@modeset-lpsp-stress.html - shard-rkl: NOTRUN -> [SKIP][312] ([i915#9519]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-5/igt at kms_pm_rpm@modeset-lpsp-stress.html - shard-dg1: NOTRUN -> [SKIP][313] ([i915#9519]) +2 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-12/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#9519]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-2/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][315] -> [DMESG-WARN][316] ([i915#12964]) +42 other tests dmesg-warn [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-5/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-1/igt at kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt at kms_pm_rpm@pm-caching: - shard-rkl: NOTRUN -> [DMESG-WARN][317] ([i915#12964]) +21 other tests dmesg-warn [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/igt at kms_pm_rpm@pm-caching.html * igt at kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#6524] / [i915#6805]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-6/igt at kms_prime@basic-crc-vgem.html * igt at kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#6524]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-12/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#6524]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-9/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#11520]) +3 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][322] ([i915#11520]) +8 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-14/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][323] ([i915#11520]) +10 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/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-snb: NOTRUN -> [SKIP][324] ([i915#11520]) +13 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-snb2/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][325] ([i915#11520]) +6 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-4/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][326] ([i915#11520]) +8 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-glk9/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][327] ([i915#12316]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-6/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#11520]) +11 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-6/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#9683]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-1/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#9683]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#9683]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#9688]) +7 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-4/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-cursor-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#9732]) +8 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_psr@pr-cursor-mmap-gtt.html * igt at kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][334] ([i915#1072] / [i915#9732]) +20 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-18/igt at kms_psr@psr-sprite-mmap-cpu.html * igt at kms_psr@psr2-primary-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#9732]) +16 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-2/igt at kms_psr@psr2-primary-mmap-cpu.html * igt at kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#1072] / [i915#9732]) +32 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-8/igt at kms_psr@psr2-primary-mmap-gtt.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][337] +412 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-glk1/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#1072] / [i915#9732]) +29 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][339] ([i915#9685]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-12/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][340] ([i915#9685]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-4/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#5289]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-4/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][342] ([i915#5289]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#12755]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at kms_rotation_crc@primary-rotation-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#5289]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-5/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][345] ([i915#12755] / [i915#5190]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-3/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#5289]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][347] ([i915#3555]) +4 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-17/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#3555]) +4 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-6/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#3555] / [i915#8809]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-1/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#8623]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-1/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vblank@ts-continuation-dpms-rpm: - shard-rkl: NOTRUN -> [DMESG-WARN][351] ([i915#12917] / [i915#12964]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-4/igt at kms_vblank@ts-continuation-dpms-rpm.html * igt at kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][352] ([i915#12276]) +3 other tests incomplete [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-glk6/igt at kms_vblank@ts-continuation-suspend.html * igt at kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#3555] / [i915#9906]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-7/igt at kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][354] ([i915#3555] / [i915#9906]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-14/igt at kms_vrr@negative-basic.html - shard-tglu: NOTRUN -> [SKIP][355] ([i915#3555] / [i915#9906]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-3/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][356] ([i915#9906]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-10/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#9906]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#2437]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-7/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#2437] / [i915#9412]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-8/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][360] ([i915#2437]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-glk7/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][361] ([i915#2437] / [i915#9412]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][362] ([i915#2437] / [i915#9412]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-12/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][363] ([i915#2437]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-18/igt at kms_writeback@writeback-invalid-parameters.html * igt at perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#7387]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-1/igt at perf@global-sseu-config-invalid.html * igt at perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][365] ([i915#8850]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-5/igt at perf_pmu@cpu-hotplug.html - shard-tglu-1: NOTRUN -> [SKIP][366] ([i915#8850]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@frequency at gt0: - shard-dg2: NOTRUN -> [FAIL][367] ([i915#12549] / [i915#6806]) +1 other test fail [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-3/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@most-busy-check-all: - shard-rkl: [PASS][368] -> [FAIL][369] ([i915#4349]) +1 other test fail [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-2/igt at perf_pmu@most-busy-check-all.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-5/igt at perf_pmu@most-busy-check-all.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#8516]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][371] ([i915#8516]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-4/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][372] ([i915#8516]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-9/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][373] ([i915#9351]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-6/igt at prime_mmap@test_aperture_limit.html * igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][374] ([i915#9351]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-6/igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem.html * igt at prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][375] ([i915#3708] / [i915#4077]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-18/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][376] ([i915#3708] / [i915#4077]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-5/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][377] ([i915#3708]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-1/igt at prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][378] ([i915#3708]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-7/igt at prime_vgem@fence-read-hang.html - shard-dg1: NOTRUN -> [SKIP][379] ([i915#3708]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-14/igt at prime_vgem@fence-read-hang.html * igt at prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#3708]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-7/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][381] ([i915#9917]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-18/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@bind-unbind-vf at vf-4: - shard-tglu: NOTRUN -> [FAIL][382] ([i915#12910]) +9 other tests fail [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-5/igt at sriov_basic@bind-unbind-vf at vf-4.html * igt at sriov_basic@bind-unbind-vf at vf-5: - shard-mtlp: NOTRUN -> [FAIL][383] ([i915#12910]) +9 other tests fail [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-5/igt at sriov_basic@bind-unbind-vf at vf-5.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2: NOTRUN -> [SKIP][384] ([i915#9917]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-3/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-tglu-1: NOTRUN -> [FAIL][385] ([i915#12910]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-1/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt at gem_create@busy-create: - shard-rkl: [DMESG-WARN][386] ([i915#12964]) -> [PASS][387] +33 other tests pass [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-3/igt at gem_create@busy-create.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/igt at gem_create@busy-create.html * igt at gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][388] ([i915#13427]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-3/igt at gem_create@create-ext-cpu-access-big.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_exec_big@single: - shard-tglu: [ABORT][390] ([i915#11713]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-9/igt at gem_exec_big@single.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-5/igt at gem_exec_big@single.html * igt at gem_exec_suspend@basic-s3: - shard-rkl: [DMESG-FAIL][392] ([i915#12964]) -> [PASS][393] +1 other test pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-7/igt at gem_exec_suspend@basic-s3.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-1/igt at gem_exec_suspend@basic-s3.html * igt at gem_lmem_swapping@smem-oom at lmem0: - shard-dg2: [TIMEOUT][394] ([i915#5493]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-7/igt at gem_lmem_swapping@smem-oom at lmem0.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-2/igt at gem_lmem_swapping@smem-oom at lmem0.html * igt at gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][396] -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-9/igt at gem_tiled_swapping@non-threaded.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-4/igt at gem_tiled_swapping@non-threaded.html * igt at i915_pm_freq_api@freq-suspend at gt0: - shard-dg2: [INCOMPLETE][398] ([i915#12455]) -> [PASS][399] +1 other test pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-10/igt at i915_pm_freq_api@freq-suspend at gt0.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-5/igt at i915_pm_freq_api@freq-suspend at gt0.html * igt at i915_pm_rpm@sysfs-read: - shard-dg1: [SKIP][400] ([i915#4423]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-18/igt at i915_pm_rpm@sysfs-read.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-18/igt at i915_pm_rpm@sysfs-read.html * igt at kms_color@legacy-gamma-reset: - shard-dg1: [DMESG-WARN][402] ([i915#4423]) -> [PASS][403] +4 other tests pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-18/igt at kms_color@legacy-gamma-reset.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-12/igt at kms_color@legacy-gamma-reset.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][404] ([i915#2346]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk8/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-glk7/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [FAIL][406] ([i915#2346]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-snb4/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html - shard-mtlp: [FAIL][408] ([i915#2346]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-1/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-vga1-hdmi-a1: - shard-snb: [FAIL][410] ([i915#11989]) -> [PASS][411] +1 other test pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-vga1-hdmi-a1.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-snb2/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-vga1-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a3: - shard-dg2: [FAIL][412] ([i915#11989]) -> [PASS][413] +3 other tests pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-5/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a3.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-3/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a3.html * igt at kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][414] ([i915#9519]) -> [PASS][415] +2 other tests pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-1/igt at kms_pm_rpm@modeset-lpsp.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-7/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_setmode@basic at pipe-a-hdmi-a-1: - shard-tglu: [FAIL][416] ([i915#5465]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-8/igt at kms_setmode@basic at pipe-a-hdmi-a-1.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-tglu-10/igt at kms_setmode@basic at pipe-a-hdmi-a-1.html #### Warnings #### * igt at gem_pxp@create-regular-context-1: - shard-rkl: [TIMEOUT][418] ([i915#12917] / [i915#12964]) -> [SKIP][419] ([i915#4270]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-5/igt at gem_pxp@create-regular-context-1.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-4/igt at gem_pxp@create-regular-context-1.html * igt at i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][420] ([i915#10131] / [i915#13493]) -> [ABORT][421] ([i915#10131] / [i915#13493] / [i915#9820]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-6/igt at i915_module_load@reload-with-fault-injection.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-mtlp-1/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_selftest@mock: - shard-rkl: [DMESG-WARN][422] ([i915#12964] / [i915#9311]) -> [DMESG-WARN][423] ([i915#9311]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-1/igt at i915_selftest@mock.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-2/igt at i915_selftest@mock.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-glk: [INCOMPLETE][424] ([i915#12761] / [i915#1982]) -> [INCOMPLETE][425] ([i915#12761]) +1 other test incomplete [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk6/igt at kms_async_flips@async-flip-suspend-resume.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-glk4/igt at kms_async_flips@async-flip-suspend-resume.html * igt at kms_content_protection@mei-interface: - shard-dg1: [SKIP][426] ([i915#9424]) -> [SKIP][427] ([i915#9433]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-18/igt at kms_content_protection@mei-interface.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg1-13/igt at kms_content_protection@mei-interface.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][428] ([i915#10433] / [i915#3458]) -> [SKIP][429] ([i915#3458]) +2 other tests skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-dg2-5/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt at kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][430] ([i915#9519]) -> [DMESG-WARN][431] ([i915#12964]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-2/igt at kms_pm_rpm@modeset-non-lpsp-stress.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-3/igt at kms_pm_rpm@modeset-non-lpsp-stress.html * igt at kms_pm_rpm@pc8-residency: - shard-rkl: [SKIP][432] -> [SKIP][433] ([i915#12916]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-4/igt at kms_pm_rpm@pc8-residency.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/shard-rkl-4/igt at kms_pm_rpm@pc8-residency.html * igt at kms_tiled_display@basic-test-pattern: - shard-glk: [SKIP][434] -> [FAIL][435] ([i915#10959]) [434]: https://intel-gfx-ci.01.org == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12464/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 21 08:03:16 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 21 Jan 2025 08:03:16 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/xe=5Fdebugfs=3A_Im?= =?utf-8?q?prove_test=5Fgt_subtest_=28rev3=29?= In-Reply-To: <20250113134558.947544-1-pravalika.gurram@intel.com> References: <20250113134558.947544-1-pravalika.gurram@intel.com> Message-ID: <173744659625.2512105.12768999399152240710@b555e5b46a47> == Series Details == Series: tests/xe_debugfs: Improve test_gt subtest (rev3) URL : https://patchwork.freedesktop.org/series/143322/ State : failure == Summary == CI Bug Log - changes from IGT_8199_full -> IGTPW_12465_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12465_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12465_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_12465/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12465_full: ### IGT changes ### #### Possible regressions #### * igt at gem_exec_suspend@basic-s3 at smem: - shard-glk: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk8/igt at gem_exec_suspend@basic-s3 at smem.html Known issues ------------ Here are the changes found in IGTPW_12465_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][2] ([i915#8411]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-8/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411]) +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-4/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at device_reset@unbind-cold-reset-rebind: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at device_reset@unbind-cold-reset-rebind.html * igt at dmabuf@all-tests at dma_fence_chain: - shard-rkl: [PASS][6] -> [DMESG-WARN][7] ([i915#12964]) +37 other tests dmesg-warn [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-4/igt at dmabuf@all-tests at dma_fence_chain.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-2/igt at dmabuf@all-tests at dma_fence_chain.html * igt at drm_fdinfo@busy-hang at bcs0: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +7 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at drm_fdinfo@busy-hang at bcs0.html * igt at drm_fdinfo@most-busy-idle-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +25 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at drm_fdinfo@most-busy-idle-check-all at vecs1.html * igt at gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#7697]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-1/igt at gem_basic@multigpu-create-close.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at gem_basic@multigpu-create-close.html - shard-dg2: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-6/igt at gem_basic@multigpu-create-close.html * igt at gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#3936]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at gem_busy@semaphore.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_12465/shard-tglu-3/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_12465/shard-dg1-13/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#13008]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-8/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-4/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#6335]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-4/igt at gem_create@create-ext-cpu-access-big.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-7/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8562]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-7/igt at gem_create@create-ext-set-pat.html - shard-rkl: NOTRUN -> [SKIP][21] ([i915#8562]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-7/igt at gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][22] ([i915#8562]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-6/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_isolation@preservation-s3 at rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][23] ([i915#12353]) +1 other test incomplete [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk7/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][24] ([i915#1099]) +7 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-snb4/igt at gem_ctx_persistence@engines-mixed-process.html * igt at gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#8555]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-7/igt at gem_ctx_persistence@heartbeat-hang.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-7/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_12465/shard-dg1-18/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_12465/shard-tglu-10/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_12465/shard-mtlp-1/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@reset-stress: - shard-dg1: [PASS][30] -> [FAIL][31] ([i915#12543] / [i915#5784]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-12/igt at gem_eio@reset-stress.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at gem_eio@reset-stress.html * igt at gem_eio@unwedge-stress: - shard-dg1: [PASS][32] -> [FAIL][33] ([i915#12714] / [i915#5784]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-12/igt at gem_eio@unwedge-stress.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at gem_eio@unwedge-stress.html * igt at gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4771]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at gem_exec_balancer@bonded-dual.html * igt at gem_exec_balancer@full: - shard-mtlp: [PASS][35] -> [FAIL][36] ([i915#13364]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-4/igt at gem_exec_balancer@full.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-8/igt at gem_exec_balancer@full.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4036]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-1/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@noheartbeat: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#8555]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-12/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][39] ([i915#4525]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-3/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4525]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-6/igt at gem_exec_balancer@parallel-contexts.html * igt at gem_exec_balancer@parallel-keep-in-fence: - shard-tglu-1: NOTRUN -> [SKIP][41] ([i915#4525]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at gem_exec_balancer@parallel-keep-in-fence.html * igt at gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][42] ([i915#11965]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-4/igt at gem_exec_capture@capture.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_12465/shard-dg1-18/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_fence@concurrent: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at gem_exec_fence@concurrent.html * igt at gem_exec_flush@basic-uc-ro-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_12465/shard-dg2-8/igt at gem_exec_flush@basic-uc-ro-default.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_reloc@basic-gtt: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-4/igt at gem_exec_reloc@basic-gtt.html * igt at gem_exec_reloc@basic-scanout: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +8 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at gem_exec_reloc@basic-scanout.html * igt at gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +11 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-4/igt at gem_exec_reloc@basic-write-gtt.html * igt at gem_exec_reloc@basic-write-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-1/igt at gem_exec_reloc@basic-write-read-noreloc.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-1/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-3/igt at gem_exec_schedule@reorder-wide.html * igt at gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4812]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-14/igt at gem_exec_schedule@semaphore-power.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][54] ([i915#7975] / [i915#8213]) +1 other test abort [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-6/igt at gem_exec_suspend@basic-s4-devices.html - shard-rkl: NOTRUN -> [ABORT][55] ([i915#7975] / [i915#8213]) +1 other test abort [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-7/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_exec_suspend@basic-s4-devices at lmem0: - shard-dg1: NOTRUN -> [ABORT][56] ([i915#7975] / [i915#8213]) +1 other test abort [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-14/igt at gem_exec_suspend@basic-s4-devices at lmem0.html * igt at gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4860]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-1/igt at gem_fence_thrash@bo-copy.html * igt at gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4860]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at gem_fenced_exec_thrash@no-spare-fences.html * igt at gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4860]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-1/igt at gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt at gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][60] ([i915#2190]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk6/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-random: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-4/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#12193]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at gem_lmem_swapping@heavy-verify-random-ccs.html * igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4565]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-7/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@random-engines: - shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#4613]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at gem_lmem_swapping@random-engines.html * igt at gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][66] ([i915#4613]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk6/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][67] ([i915#4613]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-7/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#8289]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-3/igt at gem_media_fill@media-fill.html * igt at gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) +19 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-7/igt at gem_mmap_gtt@basic-small-bo.html * igt at gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4077]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-1/igt at gem_mmap_gtt@fault-concurrent-y.html * igt at gem_mmap_wc@write-cpu-read-wc: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4083]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-6/igt at gem_mmap_wc@write-cpu-read-wc.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +6 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at gem_mmap_wc@write-prefaulted.html - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4083]) +4 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3282]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-1/igt at gem_partial_pwrite_pread@writes-after-reads-display.html - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3282]) +5 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-4/igt at gem_partial_pwrite_pread@writes-after-reads-display.html - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-6/igt at gem_partial_pwrite_pread@writes-after-reads-display.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at gem_pread@exhaustion.html - shard-snb: NOTRUN -> [WARN][78] ([i915#2658]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-snb5/igt at gem_pread@exhaustion.html * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4270]) +5 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-3/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html - shard-rkl: NOTRUN -> [TIMEOUT][80] ([i915#12964]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-5/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][81] ([i915#12917] / [i915#12964]) +1 other test timeout [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-3/igt at gem_pxp@hw-rejects-pxp-buffer.html - shard-tglu: NOTRUN -> [SKIP][82] ([i915#13398]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-2/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4270]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_render_copy@x-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8428]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-5/igt at gem_render_copy@x-tiled-to-vebox-y-tiled.html * igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#5190] / [i915#8428]) +10 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-2/igt at gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt at gem_render_tiled_blits@basic: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4079]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at gem_render_tiled_blits@basic.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#8411]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-3/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4079]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-3/igt at gem_tiled_pread_basic.html - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4079]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-6/igt at gem_tiled_pread_basic.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4880]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-14/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-2/igt at gem_userptr_blits@map-fixed-invalidate-overlap.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_12465/shard-rkl-3/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297]) +4 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-5/igt at gem_userptr_blits@unsync-unmap.html - shard-rkl: NOTRUN -> [SKIP][94] ([i915#3297]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-4/igt at gem_userptr_blits@unsync-unmap.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gem_workarounds@suspend-resume-context: - shard-rkl: [PASS][96] -> [DMESG-FAIL][97] ([i915#12964]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-1/igt at gem_workarounds@suspend-resume-context.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-1/igt at gem_workarounds@suspend-resume-context.html * igt at gen7_exec_parse@bitmasks: - shard-rkl: NOTRUN -> [SKIP][98] +11 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-1/igt at gen7_exec_parse@bitmasks.html * igt at gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#2527]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-secure: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at gen9_exec_parse@bb-secure.html * igt at gen9_exec_parse@secure-batches: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#2856]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-7/igt at gen9_exec_parse@secure-batches.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at gen9_exec_parse@unaligned-access.html * igt at gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#2527] / [i915#2856]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-4/igt at gen9_exec_parse@unaligned-jump.html - shard-rkl: NOTRUN -> [SKIP][104] ([i915#2527]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-6/igt at gen9_exec_parse@unaligned-jump.html * igt at i915_fb_tiling: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4881]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-14/igt at i915_fb_tiling.html * igt at i915_module_load@load: - shard-dg1: ([PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125]) -> ([PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [DMESG-WARN][142], [PASS][143], [PASS][144], [PASS][145]) ([i915#4423]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-13/igt at i915_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-17/igt at i915_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-12/igt at i915_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-12/igt at i915_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-13/igt at i915_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-17/igt at i915_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-14/igt at i915_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-14/igt at i915_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-18/igt at i915_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-13/igt at i915_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-18/igt at i915_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-12/igt at i915_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-14/igt at i915_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-17/igt at i915_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-18/igt at i915_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-18/igt at i915_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-12/igt at i915_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-14/igt at i915_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-13/igt at i915_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-17/igt at i915_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at i915_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-12/igt at i915_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-12/igt at i915_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at i915_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-12/igt at i915_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at i915_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at i915_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at i915_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at i915_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-14/igt at i915_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-14/igt at i915_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at i915_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-14/igt at i915_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at i915_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-14/igt at i915_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at i915_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at i915_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at i915_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at i915_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at i915_module_load@load.html * igt at i915_module_load@reload-no-display: - shard-snb: [PASS][146] -> [ABORT][147] ([i915#11703]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb1/igt at i915_module_load@reload-no-display.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-snb5/igt at i915_module_load@reload-no-display.html * igt at i915_module_load@reload-with-fault-injection: - shard-tglu-1: NOTRUN -> [ABORT][148] ([i915#12817] / [i915#9820]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at i915_module_load@reload-with-fault-injection.html - shard-glk: [PASS][149] -> [DMESG-WARN][150] ([i915#1982]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk5/igt at i915_module_load@reload-with-fault-injection.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk4/igt at i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [ABORT][151] ([i915#9820]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-5/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#6412]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-2/igt at i915_module_load@resize-bar.html - shard-dg1: NOTRUN -> [SKIP][153] ([i915#7178]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at i915_module_load@resize-bar.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-dg1: NOTRUN -> [FAIL][154] ([i915#3591]) +1 other test fail [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0: - shard-dg1: NOTRUN -> [FAIL][155] ([i915#12739] / [i915#3591]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at i915_pm_rc6_residency@rc6-idle at gt0-vecs0.html * igt at i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][156] ([i915#12797]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk6/igt at i915_pm_rpm@system-suspend-execbuf.html * igt at i915_pm_rps@engine-order: - shard-glk: [PASS][157] -> [FAIL][158] ([i915#13547]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk1/igt at i915_pm_rps@engine-order.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk5/igt at i915_pm_rps@engine-order.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#11681] / [i915#6621]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-3/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#11681] / [i915#6621]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][161] ([i915#8346]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-2/igt at i915_pm_rps@reset.html * igt at i915_pm_rps@thresholds: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#11681]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at i915_pm_rps@thresholds.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#11681]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#4387]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at i915_pm_sseu@full-enable.html * igt at i915_selftest@live: - shard-rkl: [PASS][165] -> [DMESG-FAIL][166] ([i915#13550]) +1 other test dmesg-fail [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-5/igt at i915_selftest@live.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-4/igt at i915_selftest@live.html * igt at i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][167] ([i915#9311]) +1 other test dmesg-warn [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-snb1/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][168] ([i915#9311]) +1 other test dmesg-warn [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at i915_selftest@mock at memory_region.html - shard-dg1: NOTRUN -> [DMESG-WARN][169] ([i915#9311]) +1 other test dmesg-warn [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at i915_selftest@mock at memory_region.html * igt at i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][170] -> [INCOMPLETE][171] ([i915#4817]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-4/igt at i915_suspend@basic-s3-without-i915.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-3/igt at i915_suspend@basic-s3-without-i915.html - shard-glk: [PASS][172] -> [INCOMPLETE][173] ([i915#1982] / [i915#4817]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk9/igt at i915_suspend@basic-s3-without-i915.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk8/igt at i915_suspend@basic-s3-without-i915.html * igt at i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][174] ([i915#4817]) +1 other test incomplete [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk9/igt at i915_suspend@fence-restore-tiled2untiled.html * igt at intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#7707]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-1/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#4212]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-5/igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#4212]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at kms_addfb_basic@basic-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][178] ([i915#4212]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at kms_addfb_basic@basic-x-tiled-legacy.html * igt at kms_async_flips@async-flip-suspend-resume: - shard-rkl: NOTRUN -> [INCOMPLETE][179] ([i915#12761]) +1 other test incomplete [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-5/igt at kms_async_flips@async-flip-suspend-resume.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][180] ([i915#8709]) +3 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/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@async-flip-with-page-flip-events at pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#8709]) +7 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-6/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-1-y-rc-ccs.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#12967] / [i915#6228]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-5/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#10333]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-4/igt at kms_async_flips@test-cursor.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#9531]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-6/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][185] ([i915#1769]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-snb1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][186] ([i915#1769] / [i915#3555]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][187] ([i915#1769] / [i915#3555]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/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][188] ([i915#1769]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk8/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-addfb: - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#5286]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at kms_big_fb@4-tiled-addfb.html * igt at kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#5286]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-12/igt at kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#5286]) +5 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-2/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#4538] / [i915#5286]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#5286]) +4 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-7/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][194] +8 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-6/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#3638]) +5 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#3638]) +4 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-1/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#4538] / [i915#5190]) +18 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#6187]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-2/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#4538]) +4 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-8/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#6095]) +69 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-4/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-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#12313]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-2/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#6095]) +14 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#12313]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs at pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#6095]) +80 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/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-rotation-180-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#10307] / [i915#6095]) +168 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-3/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs at pipe-a-hdmi-a-3.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#12805]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-14/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][208] ([i915#12805]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-3/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#12805]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-2/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#6095]) +9 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-7/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-a-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs at pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#6095]) +19 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/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-4-tiled-mtl-rc-ccs-cc at pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#6095]) +158 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/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-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#12313]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-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-tglu: NOTRUN -> [SKIP][214] ([i915#12313]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-3/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#12313]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-6/igt at kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3742]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at kms_cdclk@mode-transition-all-outputs.html - shard-tglu: NOTRUN -> [SKIP][217] ([i915#3742]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-7/igt at kms_cdclk@mode-transition-all-outputs.html - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#7213] / [i915#9010]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-8/igt at kms_cdclk@mode-transition-all-outputs.html - shard-dg2: NOTRUN -> [SKIP][219] ([i915#11616] / [i915#7213]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-4/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#4087]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-4/igt at kms_cdclk@plane-scaling at pipe-d-hdmi-a-1.html * igt at kms_chamelium_color@ctm-0-50: - shard-tglu-1: NOTRUN -> [SKIP][221] +32 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at kms_chamelium_color@ctm-0-50.html * igt at kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][222] +23 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-1/igt at kms_chamelium_color@degamma.html * igt at kms_chamelium_frames@dp-crc-multiple: - shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#11151] / [i915#7828]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at kms_chamelium_frames@dp-crc-multiple.html * igt at kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#11151] / [i915#7828]) +6 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-6/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_chamelium_hpd@dp-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#11151] / [i915#7828]) +15 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at kms_chamelium_hpd@dp-hpd-storm.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#11151] / [i915#7828]) +8 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-2/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#11151] / [i915#7828]) +12 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-12/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#11151] / [i915#7828]) +2 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-4/igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#3116] / [i915#3299]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-4/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#3299]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-5/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][231] ([i915#3116]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-6/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-9/igt at kms_content_protection@legacy.html - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#6944] / [i915#9424]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-5/igt at kms_content_protection@legacy.html - shard-dg2: NOTRUN -> [SKIP][234] ([i915#7118] / [i915#9424]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-1/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][235] ([i915#7173]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at kms_content_protection@lic-type-0 at pipe-a-dp-4.html * igt at kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#9424]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-5/igt at kms_content_protection@lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][237] ([i915#9424]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-7/igt at kms_content_protection@lic-type-1.html - shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#6944] / [i915#9424]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#6944] / [i915#9424]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-10/igt at kms_content_protection@mei-interface.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#7118]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-4/igt at kms_content_protection@srm.html * igt at kms_content_protection@uevent: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#7116] / [i915#9424]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at kms_content_protection@uevent.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#3555]) +7 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-6/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#13049]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-10/igt at kms_cursor_crc@cursor-onscreen-512x512.html - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#13049]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-7/igt at kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg2: NOTRUN -> [SKIP][245] ([i915#13049]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-5/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#13049]) +2 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-2/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#13049]) +3 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-14/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_crc@cursor-suspend: - shard-dg2: NOTRUN -> [INCOMPLETE][248] ([i915#12358] / [i915#7882]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-3/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-FAIL][249] ([i915#12964]) +1 other test dmesg-fail [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-3/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-2.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [INCOMPLETE][250] ([i915#12358]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-3/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-3.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#13046] / [i915#5354]) +8 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-5/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#9809]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-8/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#4103] / [i915#4213]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@basic-flip-before-cursor-varying-size: - shard-glk: [PASS][254] -> [FAIL][255] ([i915#2346]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk5/igt at kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk8/igt at kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-tglu: [PASS][256] -> [FAIL][257] ([i915#2346]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-9/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-5/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#4103]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-6/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][259] ([i915#4103]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#3555]) +9 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#8588]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at kms_display_modes@mst-extended-mode-negative.html - shard-dg1: NOTRUN -> [SKIP][262] ([i915#8588]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-12/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][263] ([i915#3804]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-1/igt at kms_dither@fb-8bpc-vs-panel-6bpc at pipe-a-hdmi-a-2.html * igt at kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#1257]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-4/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#12402]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-2/igt at kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][266] ([i915#12402]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-7/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#8812]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#8812]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-3/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#3840]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at kms_dsc@dsc-basic.html - shard-dg1: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#3840]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#3840]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-4/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#3840]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-2/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#3955]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-4/igt at kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][274] ([i915#3469]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-6/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#2065] / [i915#4854]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at kms_feature_discovery@chamelium.html * igt at kms_feature_discovery@display-4x: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#1839]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-6/igt at kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#1839]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-6/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#658]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-7/igt at kms_feature_discovery@psr1.html * igt at kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#658]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-4/igt at kms_feature_discovery@psr2.html * igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [FAIL][280] ([i915#11989]) +4 other tests fail [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-snb4/igt at kms_flip@2x-flip-vs-blocking-wf-vblank at ab-vga1-hdmi-a1.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#9934]) +9 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-1/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html - shard-tglu: NOTRUN -> [SKIP][282] ([i915#3637]) +3 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-2/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#3637]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-2/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-flip-vs-panning-vs-hang: - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#3637]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at kms_flip@2x-flip-vs-panning-vs-hang.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#9934]) +6 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/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-dg2: NOTRUN -> [SKIP][286] ([i915#9934]) +11 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-6/igt at kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#8381]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-5/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#8381]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at kms_flip@flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][289] ([i915#8381]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][290] ([i915#12745] / [i915#4839]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk5/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][291] ([i915#12745]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk5/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate at a-hdmi-a1: - shard-glk: [PASS][292] -> [DMESG-FAIL][293] ([i915#118]) +1 other test dmesg-fail [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk8/igt at kms_flip@plain-flip-fb-recreate at a-hdmi-a1.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk8/igt at kms_flip@plain-flip-fb-recreate at a-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#2672] / [i915#3555]) +3 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#2672]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-7/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#2672] / [i915#8813]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-1/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling 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-tglu: NOTRUN -> [SKIP][298] ([i915#2587] / [i915#2672]) +2 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-3/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-downscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#2672]) +3 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-1/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#2672] / [i915#3555]) +2 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-4/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-dg1: NOTRUN -> [SKIP][301] ([i915#2672] / [i915#3555]) +4 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/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-dg1: NOTRUN -> [SKIP][302] ([i915#2587] / [i915#2672]) +4 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/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-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#2672] / [i915#3555]) +4 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-8/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#2672] / [i915#3555] / [i915#5190]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg1: [PASS][305] -> [DMESG-WARN][306] ([i915#4423]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-17/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-14/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: [PASS][307] -> [FAIL][308] ([i915#6880]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][309] +58 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#1825]) +15 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-snb: [PASS][311] -> [SKIP][312] +2 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-snb5/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#1825]) +42 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#5439]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-3/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][315] ([i915#5439]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][316] ([i915#5439]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-5/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#10055]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-5/igt at kms_frontbuffer_tracking@fbc-tiling-y.html - shard-dg2: NOTRUN -> [SKIP][318] ([i915#10055]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-8/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#3458]) +26 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#3458]) +18 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#8708]) +24 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#8708]) +27 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-1/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#5354]) +45 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#9766]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#10433] / [i915#3458]) +3 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-4/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#3023]) +22 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-3/igt at kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][327] +90 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-9/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#8708]) +4 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-8/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt at kms_hdr@brightness-with-hdr: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#12713]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-1/igt at kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][330] ([i915#1187] / [i915#12713]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-2/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-tglu: NOTRUN -> [SKIP][331] ([i915#3555] / [i915#8228]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-8/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#3555] / [i915#8228]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-5/igt at kms_hdr@static-toggle-dpms.html - shard-rkl: NOTRUN -> [SKIP][333] ([i915#3555] / [i915#8228]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-7/igt at kms_hdr@static-toggle-dpms.html - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#3555] / [i915#8228]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#10656]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-7/igt at kms_joiner@basic-big-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#10656]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][337] ([i915#10656]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-5/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#12388]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-6/igt at kms_joiner@basic-force-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][339] ([i915#12388]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-7/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#12339]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-1/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][341] ([i915#10656]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-14/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#10656] / [i915#13522]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-4/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][343] ([i915#12394] / [i915#13522]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg1: NOTRUN -> [SKIP][344] ([i915#1839]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][345] ([i915#13026]) +1 other test incomplete [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk2/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane@plane-position-hole at pipe-b-plane-1: - shard-rkl: NOTRUN -> [DMESG-WARN][346] ([i915#12964]) +17 other tests dmesg-warn [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-7/igt at kms_plane@plane-position-hole at pipe-b-plane-1.html * igt at kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][347] ([i915#3555]) +3 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-9/igt at kms_plane_lowres@tiling-4.html * igt at kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][348] ([i915#8821]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-8/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#3555] / [i915#8821]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-5/igt at kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#3555] / [i915#8821]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-7/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#3555] / [i915#8806]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-7/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#6953]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-3/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#12247] / [i915#9423]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-2/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-a: - shard-rkl: NOTRUN -> [SKIP][354] ([i915#12247]) +2 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-4/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-a.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#12247]) +11 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][356] ([i915#12247]) +13 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-3/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][357] ([i915#12247] / [i915#6953]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-7/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-dg1: NOTRUN -> [SKIP][358] ([i915#12247] / [i915#6953]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/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-c: - shard-dg1: NOTRUN -> [SKIP][359] ([i915#12247]) +12 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][360] ([i915#12247] / [i915#3555] / [i915#6953]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-7/igt at kms_plane_scaling@planes-downscale-factor-0-75.html * igt at kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling: - shard-rkl: NOTRUN -> [DMESG-WARN][361] ([i915#12964] / [i915#1982]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-4/igt at kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html * igt at kms_plane_scaling@planes-downscale-factor-0-75 at pipe-b: - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#12247]) +3 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-7/igt at kms_plane_scaling@planes-downscale-factor-0-75 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][363] ([i915#12247] / [i915#3555]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#12247] / [i915#6953] / [i915#9423]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt at kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][365] ([i915#5354]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][366] ([i915#5354]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-3/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][367] ([i915#12343]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-8/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][368] ([i915#9685]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-5/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][369] ([i915#9685]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-2/igt at kms_pm_dc@dc5-psr.html - shard-tglu: NOTRUN -> [SKIP][370] ([i915#9685]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-5/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-tglu: [PASS][371] -> [FAIL][372] ([i915#9295]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-2/igt at kms_pm_dc@dc6-dpms.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-7/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc9-dpms: - shard-tglu-1: NOTRUN -> [SKIP][373] ([i915#4281]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at kms_pm_dc@dc9-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#9340]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-2/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][375] ([i915#8430]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][376] ([i915#8430]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-lpsp: - shard-dg1: NOTRUN -> [SKIP][377] ([i915#9519]) +2 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][378] ([i915#4077]) +13 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-17/igt at kms_pm_rpm@fences.html * igt at kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][379] ([i915#9519]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][380] ([i915#9519]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-4/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][381] ([i915#6524] / [i915#6805]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-3/igt at kms_prime@basic-crc-vgem.html * igt at kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][382] ([i915#6524]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-12/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][383] ([i915#6524]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-10/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-tglu-1: NOTRUN -> [SKIP][384] ([i915#11520]) +2 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/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][385] ([i915#11520]) +8 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-1/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-snb: NOTRUN -> [SKIP][386] ([i915#11520]) +13 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-snb1/igt at kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][387] ([i915#11520]) +7 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-8/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][388] ([i915#12316]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-5/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][389] ([i915#11520]) +19 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][390] ([i915#11520]) +7 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][391] ([i915#11520]) +11 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk2/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][392] ([i915#9683]) +1 other test skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-2/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][393] ([i915#9683]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-2/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][394] ([i915#9683]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-sprite-render: - shard-tglu-1: NOTRUN -> [SKIP][395] ([i915#9732]) +5 other tests skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at kms_psr@fbc-pr-sprite-render.html * igt at kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][396] ([i915#9688]) +7 other tests skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-1/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@pr-suspend: - shard-dg1: NOTRUN -> [SKIP][397] ([i915#1072] / [i915#9732]) +18 other tests skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at kms_psr@pr-suspend.html * igt at kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][398] ([i915#1072] / [i915#9732]) +16 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-4/igt at kms_psr@psr2-cursor-mmap-gtt.html * igt at kms_psr@psr2-primary-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][399] ([i915#9732]) +17 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-6/igt at kms_psr@psr2-primary-mmap-cpu.html * igt at kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][400] ([i915#1072] / [i915#9732]) +32 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-1/igt at kms_psr@psr2-primary-mmap-gtt.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][401] +433 other tests skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk8/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][402] ([i915#9685]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg1: NOTRUN -> [SKIP][403] ([i915#9685]) +1 other test skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-12/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][404] ([i915#5289]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][405] ([i915#5190]) +2 other tests skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-8/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][406] ([i915#5289]) +1 other test skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][407] ([i915#12755] / [i915#5190]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-7/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][408] ([i915#3555]) +3 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][409] ([i915#13179]) +1 other test abort [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-snb7/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-mtlp: NOTRUN -> [SKIP][410] ([i915#3555] / [i915#8809]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-6/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][411] ([i915#8623]) +1 other test skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-2/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@flip-basic-fastset: - shard-dg1: NOTRUN -> [SKIP][412] ([i915#9906]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-14/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@lobf: - shard-tglu-1: NOTRUN -> [SKIP][413] ([i915#11920]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-1/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][414] ([i915#3555] / [i915#9906]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-2/igt at kms_vrr@negative-basic.html - shard-rkl: NOTRUN -> [SKIP][415] ([i915#3555] / [i915#9906]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-2/igt at kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][416] ([i915#3555] / [i915#9906]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at kms_vrr@negative-basic.html - shard-tglu: NOTRUN -> [SKIP][417] ([i915#3555] / [i915#9906]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-4/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][418] ([i915#9906]) +1 other test skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-7/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][419] ([i915#9906]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-7/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][420] ([i915#9906]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-8/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-glk: NOTRUN -> [SKIP][421] ([i915#2437]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-glk6/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][422] ([i915#2437] / [i915#9412]) +1 other test skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-7/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][423] ([i915#2437] / [i915#9412]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][424] ([i915#7387]) +1 other test skip [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-10/igt at perf@global-sseu-config-invalid.html * igt at perf_pmu@busy: - shard-dg1: [PASS][425] -> [FAIL][426] ([i915#4349]) +1 other test fail [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-14/igt at perf_pmu@busy.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-13/igt at perf_pmu@busy.html * igt at perf_pmu@busy-accuracy-50: - shard-dg1: NOTRUN -> [FAIL][427] ([i915#4349]) +1 other test fail [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-14/igt at perf_pmu@busy-accuracy-50.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][428] +519 other tests skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-snb7/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@busy-accuracy-98 at vecs0: - shard-mtlp: [PASS][429] -> [FAIL][430] ([i915#4349]) +3 other tests fail [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-4/igt at perf_pmu@busy-accuracy-98 at vecs0.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-2/igt at perf_pmu@busy-accuracy-98 at vecs0.html * igt at perf_pmu@busy at vecs1: - shard-dg2: [PASS][431] -> [FAIL][432] ([i915#4349]) +3 other tests fail [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-6/igt at perf_pmu@busy at vecs1.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-8/igt at perf_pmu@busy at vecs1.html * igt at perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][433] ([i915#8850]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-6/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][434] ([i915#8516]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-12/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][435] ([i915#8516]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-8/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][436] ([i915#3708] / [i915#4077]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-12/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][437] ([i915#3708] / [i915#4077]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-7/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][438] ([i915#3708]) +1 other test skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-4/igt at prime_vgem@fence-read-hang.html * igt at prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][439] ([i915#3708]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg2-4/igt at prime_vgem@fence-write-hang.html - shard-rkl: NOTRUN -> [SKIP][440] ([i915#3708]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-rkl-1/igt at prime_vgem@fence-write-hang.html - shard-dg1: NOTRUN -> [SKIP][441] ([i915#3708]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-dg1-18/igt at prime_vgem@fence-write-hang.html * igt at sriov_basic@bind-unbind-vf at vf-4: - shard-tglu: NOTRUN -> [FAIL][442] ([i915#12910]) +9 other tests fail [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-tglu-8/igt at sriov_basic@bind-unbind-vf at vf-4.html * igt at sriov_basic@bind-unbind-vf at vf-5: - shard-mtlp: NOTRUN -> [FAIL][443] ([i915#12910]) +9 other tests fail [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/shard-mtlp-4/igt at sriov_basic@bind-unbind-vf at vf-5.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][444] ([i915#9917]) [444]: https: == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12465/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From peter.senna at linux.intel.com Tue Jan 21 08:16:19 2025 From: peter.senna at linux.intel.com (Peter Senna Tschudin) Date: Tue, 21 Jan 2025 09:16:19 +0100 Subject: [PATCH i-g-t v14 resend 1/3] lib/igt_facts: Library and unit testing for fact tracking In-Reply-To: <20241219124015.57unqsj6kiun3bff@kamilkon-desk.igk.intel.com> References: <20241216151420.43042-1-peter.senna@linux.intel.com> <20241216151420.43042-2-peter.senna@linux.intel.com> <20241219124015.57unqsj6kiun3bff@kamilkon-desk.igk.intel.com> Message-ID: <23457bf4-ee02-4da4-8c98-33866bdb56a7@linux.intel.com> Hi Kamil, On 19.12.2024 13:40, Kamil Konieczny wrote: > Hi Peter, > On 2024-12-16 at 16:14:18 +0100, Peter Senna Tschudin wrote: > > I have few nits about a code, I checked it with checkpatch.pl > and looks like some warnings are left, why not removing them? > Here are some found by it: > > 0001-lib-igt_facts-Library-and-unit-testing-for-fact-trac.patch:824: CHECK:COMPARISON_TO_NULL: Comparison to NULL could be written "fact" > #824: FILE: lib/igt_facts.c:736: > + igt_assert(fact != NULL); > > 0001-lib-igt_facts-Library-and-unit-testing-for-fact-trac.patch:825: CHECK:BOOL_COMPARISON: Using comparison to true is error prone > #825: FILE: lib/igt_facts.c:737: > + igt_assert(fact->present == true); There is a very important detail here. It is error prone only when the type is not bool. My code is not error prone. > > 0001-lib-igt_facts-Library-and-unit-testing-for-fact-trac.patch:913: CHECK:LINE_SPACING: Please use a blank line after function/struct/union/enum declarations > #913: FILE: lib/igt_facts.h:40: > +}; > +extern struct igt_facts_config igt_facts_config; Good catch, thank you. > > total: 0 errors, 3 warnings, 23 checks, 858 lines checked > > 0001-lib-igt_facts-Library-and-unit-testing-for-fact-trac.patch has style problems, please review. > > Especially when there are many it is easy to overlook an issue, > one such is comparision with 'true', I searched your code for '== true' > and one place needs fixing: > > grep -n '== true' lib/igt_facts.c > 680: igt_assert(ret == true); > 690: igt_assert(fact->present == true); > 733: igt_assert(fact->present == true); > 737: igt_assert(fact->present == true); > 769: igt_assert(igt_list_empty(&igt_facts_list_pci_gpu_head) == true); > > Last line may be an issue, as sometimes pointer comparision could > be implemented in runtime as 'return (src - dest)' so please fix all > using template: I don't think so as the type is bool. I can't imagine a way to make this go wrong. Can you give me an example showing how a bool type can be evaluated incorrectly? What am I missing here? > > igt_assert(val == true); --> igt_assert(val); > > In summary, please fix BOOL_COMPARISON, COMPARISON_TO_NULL, > LINE_SPACING, PARENTHESIS_ALIGNMENT. > > Please remove extern from header, it is not needed: > > extern struct igt_facts_config igt_facts_config; yep yep, this is twice on the email... [...] From peter.senna at linux.intel.com Tue Jan 21 08:21:01 2025 From: peter.senna at linux.intel.com (Peter Senna Tschudin) Date: Tue, 21 Jan 2025 09:21:01 +0100 Subject: [PATCH 1/2] lib/igt_facts: Make igt_facts_test noreturn In-Reply-To: <20250121063207.71737-2-pravalika.gurram@intel.com> References: <20250121063207.71737-1-pravalika.gurram@intel.com> <20250121063207.71737-2-pravalika.gurram@intel.com> Message-ID: <21d050fd-f30f-4759-86b7-343d3f7b1015@linux.intel.com> Hi Pravalika, On 21.01.2025 07:32, Pravalika Gurram wrote: > noreturn attribute is used to improve the optimization by informing to > the compiler that function does not return . > > Signed-off-by: Pravalika Gurram > --- > lib/igt_facts.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/lib/igt_facts.c b/lib/igt_facts.c > index 2e04a7c86..bd6742065 100644 > --- a/lib/igt_facts.c > +++ b/lib/igt_facts.c > @@ -748,7 +748,7 @@ static void igt_facts_test_mark_and_sweep(struct igt_list_head *head) > * > * Returns: bool indicating if the tests passed > */ > -void igt_facts_test(void) > +__noreturn void igt_facts_test(void) How did you find this? Is the compiler complaining? > { > const char *last_test = "Unit Testing"; > > @@ -776,4 +776,6 @@ void igt_facts_test(void) > /* Clean up the list and call igt_facts(). This should not crash */ > igt_facts_list_mark_and_sweep(&igt_facts_list_pci_gpu_head); > igt_facts(last_test); > + > + igt_exit(); > } Why adding igt_exit() here? How did you test this patch? Thanks, Peter From peter.senna at linux.intel.com Tue Jan 21 08:32:32 2025 From: peter.senna at linux.intel.com (Peter Senna Tschudin) Date: Tue, 21 Jan 2025 09:32:32 +0100 Subject: [PATCH 2/2] lib/igt_facts : Cleanup In-Reply-To: <20250121063207.71737-3-pravalika.gurram@intel.com> References: <20250121063207.71737-1-pravalika.gurram@intel.com> <20250121063207.71737-3-pravalika.gurram@intel.com> Message-ID: Hi Pravalika, Please wait for Kamil to answer my questions in the original thread before changing the code. How did you test this patch? Please see my comments below. Thanks On 21.01.2025 07:32, Pravalika Gurram wrote: > fix BOOL_COMPARISON, COMPARISON_TO_NULL, > LINE_SPACING, PARENTHESIS_ALIGNMENT, > Remove extern from header warning from checkpatch > > 'Fixes: 1a9c3117328 ("lib/igt_facts: Library and unit testing")' > > Signed-off-by: Pravalika Gurram > --- > lib/igt_facts.c | 20 ++++++++++---------- > lib/igt_facts.h | 3 ++- > 2 files changed, 12 insertions(+), 11 deletions(-) > > diff --git a/lib/igt_facts.c b/lib/igt_facts.c > index bd6742065..6e7efbaf3 100644 > --- a/lib/igt_facts.c > +++ b/lib/igt_facts.c > @@ -677,18 +677,18 @@ static void igt_facts_test_add_get(struct igt_list_head *head) > const char *last_test = NULL; > > ret = igt_facts_list_add(name, value, last_test, head); > - igt_assert(ret == true); > + igt_assert(ret); > > /* Assert that there is one element in the linked list */ > igt_assert_eq(igt_list_length(head), 1); > > /* Assert that the element in the linked list is the one we added */ > fact = igt_facts_list_get(name, head); > - igt_assert(fact != NULL); > + igt_assert(fact); > igt_assert_eq(strcmp(fact->name, name), 0); > igt_assert_eq(strcmp(fact->value, value), 0); > - igt_assert(fact->present == true); > - igt_assert(fact->last_test == NULL); > + igt_assert(fact->present); > + igt_assert(!fact->last_test); > } > > /** > @@ -729,16 +729,16 @@ static void igt_facts_test_mark_and_sweep(struct igt_list_head *head) > > /* Assert that the two updated elements are present */ > fact = igt_facts_list_get(name1, head); > - igt_assert(fact != NULL); > - igt_assert(fact->present == true); > + igt_assert(!fact); This one is wrong. > + igt_assert(fact->present); > > fact = igt_facts_list_get(name2, head); > - igt_assert(fact != NULL); > - igt_assert(fact->present == true); > + igt_assert(!fact); This one is wrong too. > + igt_assert(fact->present); > > /* Assert that the third element was deleted */ > fact = igt_facts_list_get(name3, head); > - igt_assert(fact == NULL); > + igt_assert(!fact); > } > > /** > @@ -766,7 +766,7 @@ __noreturn void igt_facts_test(void) > /* Assert that igt_facts_list_mark_and_sweep() cleans up the list */ > igt_assert(igt_list_empty(&igt_facts_list_pci_gpu_head) == false); > igt_facts_list_mark_and_sweep(&igt_facts_list_pci_gpu_head); > - igt_assert(igt_list_empty(&igt_facts_list_pci_gpu_head) == true); > + igt_assert(igt_list_empty(&igt_facts_list_pci_gpu_head)); > > /* Test the mark and sweep pattern used to delete elements > * from the list > diff --git a/lib/igt_facts.h b/lib/igt_facts.h > index e96f88083..60d702977 100644 > --- a/lib/igt_facts.h > +++ b/lib/igt_facts.h > @@ -37,7 +37,8 @@ struct igt_facts_config { > bool enabled; > bool disable_udev; > }; > -extern struct igt_facts_config igt_facts_config; > + > +struct igt_facts_config igt_facts_config; > > void igt_facts_lists_init(void); > void igt_facts(const char *last_test); From patchwork at emeril.freedesktop.org Tue Jan 21 08:58:11 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 21 Jan 2025 08:58:11 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_tests/intel/xe=5Fwedged?= =?utf-8?q?=3A_Read_wedged=5Fmode_debugfs?= In-Reply-To: <20250120130927.65919-1-pravalika.gurram@intel.com> References: <20250120130927.65919-1-pravalika.gurram@intel.com> Message-ID: <173744989160.2528870.3918367679116483599@b555e5b46a47> == Series Details == Series: tests/intel/xe_wedged: Read wedged_mode debugfs URL : https://patchwork.freedesktop.org/series/143729/ State : failure == Summary == CI Bug Log - changes from IGT_8199_full -> IGTPW_12466_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12466_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12466_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_12466/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12466_full: ### IGT changes ### #### Possible regressions #### * igt at gem_exec_suspend@basic-s3 at smem: - shard-tglu: [PASS][1] -> [ABORT][2] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-10/igt at gem_exec_suspend@basic-s3 at smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-5/igt at gem_exec_suspend@basic-s3 at smem.html Known issues ------------ Here are the changes found in IGTPW_12466_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-7/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-7/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-2/igt at api_intel_bb@object-reloc-keep-cache.html * igt at device_reset@unbind-cold-reset-rebind: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at device_reset@unbind-cold-reset-rebind.html * igt at drm_fdinfo@busy-hang at bcs0: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +8 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-12/igt at drm_fdinfo@busy-hang at bcs0.html * igt at drm_fdinfo@most-busy-idle-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +26 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-3/igt at drm_fdinfo@most-busy-idle-check-all at vecs1.html * igt at gem_bad_reloc@negative-reloc-lut: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#3281]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-4/igt at gem_bad_reloc@negative-reloc-lut.html * igt at gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#7697]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-3/igt at gem_basic@multigpu-create-close.html * igt at gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#3936]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/igt at gem_busy@semaphore.html * igt at gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-7/igt at gem_ccs@block-copy-compressed.html - shard-rkl: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-3/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_12466/shard-dg1-13/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#13008]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-6/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][17] ([i915#7297]) +1 other test incomplete [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-6/igt at gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-3/igt at gem_ccs@suspend-resume.html * igt at gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-2/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#6335]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-3/igt at gem_create@create-ext-cpu-access-sanity-check.html - shard-rkl: NOTRUN -> [SKIP][21] ([i915#6335]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/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: NOTRUN -> [INCOMPLETE][22] ([i915#12353]) +1 other test incomplete [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk9/igt at gem_ctx_isolation@preservation-s3 at rcs0.html * igt at gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][23] ([i915#1099]) +5 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-snb5/igt at gem_ctx_persistence@engines-mixed-process.html * igt at gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-8/igt at gem_ctx_persistence@heartbeat-hostile.html * igt at gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-4/igt at gem_ctx_sseu@invalid-sseu.html - shard-rkl: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-6/igt at gem_ctx_sseu@invalid-sseu.html - shard-tglu: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-4/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_12466/shard-mtlp-4/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@in-flight-suspend: - shard-rkl: [PASS][29] -> [DMESG-WARN][30] ([i915#12964]) +37 other tests dmesg-warn [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-2/igt at gem_eio@in-flight-suspend.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-5/igt at gem_eio@in-flight-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][31] ([i915#13197] / [i915#13390]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk5/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@kms: - shard-tglu: [PASS][32] -> [DMESG-WARN][33] ([i915#13363]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-10/igt at gem_eio@kms.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-9/igt at gem_eio@kms.html * igt at gem_exec_balancer@bonded-pair: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-18/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4812]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-8/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4036]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-18/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][37] ([i915#4525]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-6/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#4525]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-3/igt at gem_exec_balancer@parallel-contexts.html * igt at gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][39] ([i915#11965]) +1 other test fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-1/igt at gem_exec_capture@capture.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][40] ([i915#11965]) +4 other tests fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-7/igt at gem_exec_capture@capture at vecs0-lmem0.html - shard-dg1: NOTRUN -> [FAIL][41] ([i915#11965]) +2 other tests fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-12/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_flush@basic-uc-ro-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_12466/shard-dg2-10/igt at gem_exec_flush@basic-uc-ro-default.html * igt at gem_exec_flush@basic-wb-pro-default: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at gem_exec_flush@basic-wb-pro-default.html * igt at gem_exec_reloc@basic-scanout: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +14 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/igt at gem_exec_reloc@basic-scanout.html * igt at gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +7 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-5/igt at gem_exec_reloc@basic-write-gtt.html * igt at gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +7 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-2/igt at gem_exec_reloc@basic-write-read-noreloc.html * igt at gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-10/igt at gem_exec_schedule@preempt-queue.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-5/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4812]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-18/igt at gem_exec_schedule@semaphore-power.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_12466/shard-rkl-7/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4860]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-4/igt at gem_fence_thrash@bo-copy.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4860]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at gem_fence_thrash@bo-copy.html * igt at gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4860]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-5/igt at gem_fenced_exec_thrash@no-spare-fences-interruptible.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_12466/shard-glk1/igt at gem_huc_copy@huc-copy.html * igt at gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#4613]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-8/igt at gem_lmem_swapping@heavy-random.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-2/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-4/igt at gem_lmem_swapping@parallel-random-verify-ccs.html - shard-dg1: NOTRUN -> [SKIP][58] ([i915#12193]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@parallel-random-verify-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4565]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/igt at gem_lmem_swapping@parallel-random-verify-ccs at lmem0.html * igt at gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) +6 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk5/igt at gem_lmem_swapping@random.html * igt at gem_lmem_swapping@verify-random: - shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at gem_lmem_swapping@verify-random.html * igt at gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#284]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-5/igt at gem_media_vme.html * igt at gem_mmap_gtt@basic-read: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +10 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-4/igt at gem_mmap_gtt@basic-read.html * igt at gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4077]) +10 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-18/igt at gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt at gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-8/igt at gem_mmap_gtt@fault-concurrent-y.html * igt at gem_mmap_wc@write-cpu-read-wc: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4083]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-7/igt at gem_mmap_wc@write-cpu-read-wc.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +7 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-10/igt at gem_mmap_wc@write-prefaulted.html - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-18/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_pread@bench: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3282]) +8 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-2/igt at gem_pread@bench.html * igt at gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][70] ([i915#2658]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at gem_pread@exhaustion.html - shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-17/igt at gem_pread@exhaustion.html - shard-snb: NOTRUN -> [WARN][72] ([i915#2658]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-snb2/igt at gem_pread@exhaustion.html * igt at gem_pxp@display-protected-crc: - shard-rkl: NOTRUN -> [TIMEOUT][73] ([i915#12917] / [i915#12964]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-7/igt at gem_pxp@display-protected-crc.html * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: NOTRUN -> [TIMEOUT][74] ([i915#12964]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-2/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4270]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/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][76] ([i915#13398]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-5/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#4270]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-2/igt at gem_pxp@reject-modify-context-protection-off-1.html * igt at gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4270]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-8/igt at gem_pxp@reject-modify-context-protection-off-2.html * igt at gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3282]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-7/igt at gem_readwrite@beyond-eob.html - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3282]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-1/igt at gem_readwrite@beyond-eob.html * igt at gem_render_copy@x-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#8428]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-7/igt at gem_render_copy@x-tiled-to-vebox-y-tiled.html * igt at gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#5190] / [i915#8428]) +7 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-2/igt at gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt at gem_set_tiling_vs_pwrite: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4079]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at gem_set_tiling_vs_pwrite.html * igt at gem_softpin@noreloc-s3: - shard-glk: NOTRUN -> [INCOMPLETE][84] ([i915#13306]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk9/igt at gem_softpin@noreloc-s3.html * igt at gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4079]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-2/igt at gem_tiled_pread_pwrite.html * igt at gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][86] ([i915#13263] / [i915#13449]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk4/igt at gem_tiled_swapping@non-threaded.html * igt at gem_userptr_blits@access-control: - shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at gem_userptr_blits@access-control.html * igt at gem_userptr_blits@coherency-sync: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at gem_userptr_blits@coherency-sync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3282] / [i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-1/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4880]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-8/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4880]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-7/igt at gem_userptr_blits@map-fixed-invalidate-overlap.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_12466/shard-rkl-7/igt at gem_userptr_blits@relocations.html * igt at gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#3297]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-3/igt at gem_userptr_blits@unsync-unmap.html * igt at gen9_exec_parse@allowed-all: - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at gen9_exec_parse@allowed-all.html * igt at gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#2527]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-12/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@secure-batches: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#2856]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-1/igt at gen9_exec_parse@secure-batches.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#2856]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-3/igt at gen9_exec_parse@unaligned-access.html * igt at gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-10/igt at gen9_exec_parse@unaligned-jump.html * igt at gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-4/igt at gen9_exec_parse@valid-registers.html * igt at i915_fb_tiling: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#4881]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/igt at i915_fb_tiling.html * igt at i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#6412]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-7/igt at i915_module_load@resize-bar.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#7178]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-17/igt at i915_module_load@resize-bar.html * igt at i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [PASS][104] -> [FAIL][105] ([i915#12942]) +1 other test fail [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-3/igt at i915_pm_rc6_residency@rc6-accuracy.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-7/igt at i915_pm_rc6_residency@rc6-accuracy.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0: - shard-dg1: NOTRUN -> [FAIL][106] ([i915#12739] / [i915#3591]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle at gt0-rcs0.html * igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0: - shard-tglu-1: NOTRUN -> [WARN][107] ([i915#2681]) +6 other tests warn [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html - shard-dg1: NOTRUN -> [FAIL][108] ([i915#3591]) +1 other test fail [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-17/igt at i915_pm_rc6_residency@rc6-idle at gt0-vcs0.html * igt at i915_pm_rpm@gem-execbuf-stress: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#13328]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-4/igt at i915_pm_rpm@gem-execbuf-stress.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#11681] / [i915#6621]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-4/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][111] ([i915#8346]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-5/igt at i915_pm_rps@reset.html * igt at i915_pm_rps@thresholds: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#11681]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/igt at i915_pm_rps@thresholds.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#11681]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-10/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_pm_sseu@full-enable: - shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#4387]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4387]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-17/igt at i915_pm_sseu@full-enable.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_12466/shard-dg1-14/igt at i915_selftest@mock at memory_region.html * igt at intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#7707]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-3/igt at intel_hwmon@hwmon-write.html * igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#4212]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-2/igt at kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#4212]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-5/igt at kms_addfb_basic@basic-x-tiled-legacy.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_12466/shard-dg1-13/igt at kms_addfb_basic@tile-pitch-mismatch.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][121] ([i915#8709]) +7 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/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-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#8709]) +7 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-4/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-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][123] ([i915#8709]) +7 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-3/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][124] ([i915#12967] / [i915#6228]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-3/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#10333]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-3/igt at kms_async_flips@test-cursor.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#9531]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-9/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg1: NOTRUN -> [DMESG-WARN][127] ([i915#4423]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-17/igt at kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][128] ([i915#1769]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-snb1/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][129] ([i915#1769] / [i915#3555]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-5/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][130] ([i915#1769] / [i915#3555]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/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-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#5286]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@4-tiled-addfb-size-overflow: - shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#5286]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_big_fb@4-tiled-addfb-size-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#5286]) +8 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-5/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#5286]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-9/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][135] -> [FAIL][136] ([i915#5138]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-8/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#4538] / [i915#5286]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-18/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][138] +8 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-1/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#3638]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-6/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#3638]) +4 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-17/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#5190]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-1/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][142] ([i915#4538] / [i915#5190]) +13 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-3/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6187]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-3/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][144] +38 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#4538]) +5 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-8/igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc at pipe-d-hdmi-a-1.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc at pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#6095]) +176 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/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-y-tiled-ccs at pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#10307] / [i915#6095]) +145 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-8/igt at kms_ccs@ccs-on-another-bo-y-tiled-ccs at pipe-b-hdmi-a-1.html * igt at kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#6095]) +69 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-5/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-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#12313]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#12313]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-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: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#12805]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-4/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#12805]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-5/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][154] ([i915#12805]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-3/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#6095]) +9 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-5/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-a-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#12805]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#6095]) +23 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-10/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-b-dp-4.html * igt at kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][158] ([i915#12796]) +1 other test incomplete [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk2/igt at kms_ccs@crc-primary-suspend-yf-tiled-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][159] ([i915#6095]) +77 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-1/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-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#6095]) +19 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#12313]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-7/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][162] ([i915#12313]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-6/igt at kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#3742]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at kms_cdclk@mode-transition-all-outputs.html - shard-tglu: NOTRUN -> [SKIP][164] ([i915#3742]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-3/igt at kms_cdclk@mode-transition-all-outputs.html - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#7213] / [i915#9010]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-1/igt at kms_cdclk@mode-transition-all-outputs.html - shard-dg2: NOTRUN -> [SKIP][166] ([i915#11616] / [i915#7213]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-3/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_cdclk@plane-scaling at pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#4087]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-10/igt at kms_cdclk@plane-scaling at pipe-d-dp-4.html * igt at kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +4 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +15 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-5/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +12 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-2/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +7 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-4/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +8 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-12/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-8/igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt at kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#7116] / [i915#9424]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/igt at kms_content_protection@atomic.html - shard-dg2: NOTRUN -> [SKIP][175] ([i915#7118] / [i915#9424]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-1/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3116]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-5/igt at kms_content_protection@dp-mst-type-0.html - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#3116] / [i915#3299]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-6/igt at kms_content_protection@legacy.html - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#6944] / [i915#9424]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-2/igt at kms_content_protection@legacy.html - shard-rkl: NOTRUN -> [SKIP][180] ([i915#7118] / [i915#9424]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-7/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#9424]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-7/igt at kms_content_protection@lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][182] ([i915#9424]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-4/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#7118]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-2/igt at kms_content_protection@srm.html * igt at kms_cursor_crc@cursor-offscreen-max-size: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#3555]) +3 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_cursor_crc@cursor-offscreen-max-size.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#3555]) +7 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-1/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#13049]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-8/igt at kms_cursor_crc@cursor-onscreen-512x512.html - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#13049]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-2/igt at kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg2: NOTRUN -> [SKIP][188] ([i915#13049]) +2 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-3/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#13049]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-5/igt at kms_cursor_crc@cursor-random-512x170.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#13049]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][191] ([i915#12358] / [i915#7882]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk1/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][192] ([i915#12358]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk1/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#9809]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-3/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#4103] / [i915#4213]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-18/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#4103] / [i915#4213]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#13046] / [i915#5354]) +4 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-8/igt at kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][197] +12 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-1/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#9067]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-4/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][199] ([i915#4103]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][200] ([i915#4103]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-3/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][201] -> [FAIL][202] ([i915#2346]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk6/igt at kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk8/igt at kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#9723]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#3555]) +10 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-1/igt at kms_display_modes@extended-mode-basic.html * igt at kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][205] ([i915#1257]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-8/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_12466/shard-tglu-6/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_12466/shard-dg1-13/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#8812]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-10/igt at kms_draw_crc@draw-method-mmap-wc.html * igt at kms_dsc@dsc-basic: - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#3840]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_dsc@dsc-basic.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-17/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#3840]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-7/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-7/igt at kms_dsc@dsc-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#3840]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-2/igt at kms_dsc@dsc-with-bpc.html * igt at kms_fbcon_fbt@fbc-suspend: - shard-snb: [PASS][214] -> [INCOMPLETE][215] ([i915#9878]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb7/igt at kms_fbcon_fbt@fbc-suspend.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-snb2/igt at kms_fbcon_fbt@fbc-suspend.html * igt at kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#3955]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-1/igt at kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][217] ([i915#3469]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-7/igt at kms_fbcon_fbt@psr.html * igt at kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#3469]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-1/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#1839]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-1/igt at kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#1839]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-18/igt at kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][221] ([i915#1839]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-7/igt at kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#1839]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-7/igt at kms_feature_discovery@display-4x.html - shard-dg2: NOTRUN -> [SKIP][223] ([i915#1839]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-10/igt at kms_feature_discovery@display-4x.html * igt at kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][224] ([i915#658]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-5/igt at kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][225] ([i915#658]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-2/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#3637]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#9934]) +5 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-3/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3637]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-8/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#9934]) +12 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-7/igt at kms_flip@2x-modeset-vs-vblank-race.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#9934]) +7 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-12/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-tglu: NOTRUN -> [SKIP][231] ([i915#3637]) +4 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-5/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@2x-plain-flip-ts-check-interruptible at ab-vga1-hdmi-a1: - shard-snb: [PASS][232] -> [FAIL][233] ([i915#11989]) +1 other test fail [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb2/igt at kms_flip@2x-plain-flip-ts-check-interruptible at ab-vga1-hdmi-a1.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-snb7/igt at kms_flip@2x-plain-flip-ts-check-interruptible at ab-vga1-hdmi-a1.html * igt at kms_flip@blocking-wf_vblank: - shard-mtlp: [PASS][234] -> [FAIL][235] ([i915#11989]) +7 other tests fail [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-5/igt at kms_flip@blocking-wf_vblank.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-2/igt at kms_flip@blocking-wf_vblank.html - shard-snb: NOTRUN -> [FAIL][236] ([i915#10826] / [i915#11989]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-snb1/igt at kms_flip@blocking-wf_vblank.html * igt at kms_flip@blocking-wf_vblank at a-hdmi-a1: - shard-tglu: [PASS][237] -> [FAIL][238] ([i915#11989]) +3 other tests fail [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-7/igt at kms_flip@blocking-wf_vblank at a-hdmi-a1.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-8/igt at kms_flip@blocking-wf_vblank at a-hdmi-a1.html * igt at kms_flip@blocking-wf_vblank at a-vga1: - shard-snb: NOTRUN -> [FAIL][239] ([i915#10826]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-snb1/igt at kms_flip@blocking-wf_vblank at a-vga1.html * igt at kms_flip@blocking-wf_vblank at b-vga1: - shard-snb: NOTRUN -> [FAIL][240] ([i915#11989]) +2 other tests fail [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-snb1/igt at kms_flip@blocking-wf_vblank at b-vga1.html * igt at kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#8381]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-4/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#8381]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-8/igt at kms_flip@flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][243] ([i915#8381]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-17/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][244] ([i915#12745] / [i915#4839]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk7/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][245] ([i915#12745]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk7/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-2/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][247] ([i915#2587] / [i915#2672] / [i915#3555]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#2672]) +4 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-2/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-6/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#2672]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-4/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555]) +4 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-12/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-2/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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#8813]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-2/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling 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-dg1: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) +5 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-12/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-tglu: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +3 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-5/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555]) +3 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-1/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: [PASS][258] -> [FAIL][259] ([i915#6880]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-dg2: NOTRUN -> [FAIL][260] ([i915#6880]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-10/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: - shard-snb: [PASS][261] -> [SKIP][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb7/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-snb2/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][263] +54 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#1825]) +13 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#5354]) +53 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#5439]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-1/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][267] ([i915#5439]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-18/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][268] ([i915#5439]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-9/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#10055]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-6/igt at kms_frontbuffer_tracking@fbc-tiling-y.html - shard-dg2: NOTRUN -> [SKIP][270] ([i915#10055]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-2/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#3458]) +22 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#3458]) +18 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-17/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#8708]) +28 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#1825]) +50 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-6/igt at kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#8708]) +22 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-3/igt at kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#10433] / [i915#3458]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#3023]) +29 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-3/igt at kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][278] +87 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-9/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#8708]) +4 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-7/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt at kms_hdr@brightness-with-hdr: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#12713]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-2/igt at kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][281] ([i915#12713]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-8/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8228]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-6/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@invalid-metadata-sizes: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-18/igt at kms_hdr@invalid-metadata-sizes.html * igt at kms_hdr@static-swap: - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#8228]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_hdr@static-swap.html * igt at kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-5/igt at kms_hdr@static-toggle-dpms.html - shard-rkl: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-5/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#10656]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-3/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][288] ([i915#12388]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-3/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#12339]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_joiner@basic-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][290] ([i915#12339]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at kms_joiner@basic-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][291] ([i915#12339]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-4/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#10656]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#10656] / [i915#13522]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-10/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#6301]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-5/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][295] +21 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-5/igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][296] ([i915#13026]) +1 other test incomplete [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk1/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][297] ([i915#10647] / [i915#12177]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk8/igt at kms_plane_alpha_blend@alpha-transparent-fb.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][298] ([i915#10647] / [i915#12169]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk5/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][299] ([i915#10647]) +3 other tests fail [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk5/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_cursor@viewport at pipe-a-hdmi-a-2-size-128: - shard-rkl: NOTRUN -> [DMESG-WARN][300] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-1/igt at kms_plane_cursor@viewport at pipe-a-hdmi-a-2-size-128.html * igt at kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#8821]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-7/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#8821]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-5/igt at kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8821]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-1/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8806]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-8/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#6953]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-1/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#12247]) +10 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-5/igt at kms_plane_scaling@plane-downscale-factor-0-75-with-rotation at pipe-a.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][307] ([i915#12247]) +13 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-5/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#12247] / [i915#6953]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-7/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-dg1: NOTRUN -> [SKIP][309] ([i915#12247] / [i915#6953]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/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-c: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#12247]) +7 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#12247] / [i915#3555] / [i915#6953]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-5/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][312] ([i915#12247]) +3 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-5/igt at kms_plane_scaling@planes-downscale-factor-0-75 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][313] ([i915#12247] / [i915#3555]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#12247] / [i915#6953]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-5/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#12247] / [i915#6953]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/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][316] ([i915#12247]) +3 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/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-rkl: NOTRUN -> [SKIP][317] ([i915#5354]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-5/igt at kms_pm_backlight@basic-brightness.html - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#9812]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_pm_backlight@basic-brightness.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#12343]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-5/igt at kms_pm_backlight@brightness-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][320] ([i915#12343]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-2/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#9685]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-8/igt at kms_pm_dc@dc3co-vpb-simulation.html - shard-rkl: NOTRUN -> [SKIP][322] ([i915#9685]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-1/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#9340]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-1/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#8430]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_pm_lpsp@screens-disabled.html - shard-dg1: NOTRUN -> [SKIP][325] ([i915#8430]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][326] ([i915#8430]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-4/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@cursor-dpms: - shard-rkl: [PASS][327] -> [SKIP][328] ([i915#12916]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-2/igt at kms_pm_rpm@cursor-dpms.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-5/igt at kms_pm_rpm@cursor-dpms.html * igt at kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][329] -> [SKIP][330] ([i915#9519]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-7/igt at kms_pm_rpm@dpms-lpsp.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-3/igt at kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][331] ([i915#9519]) +3 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-18/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#9519]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-9/igt at kms_pm_rpm@modeset-non-lpsp.html - shard-dg2: [PASS][333] -> [SKIP][334] ([i915#9519]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-3/igt at kms_pm_rpm@modeset-non-lpsp.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-8/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#6524] / [i915#6805]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-10/igt at kms_prime@basic-crc-vgem.html * igt at kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][336] ([i915#6524]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][337] ([i915#6524]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-2/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#11520]) +14 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-3/igt at kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][339] ([i915#11520]) +10 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-4/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html - shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#11520]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][341] ([i915#11520]) +7 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-6/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][342] ([i915#11520]) +11 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-snb5/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][343] ([i915#12316]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-5/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][344] ([i915#11520]) +11 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-17/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][345] ([i915#11520]) +15 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk2/igt at kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#9683]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-7/igt at kms_psr2_su@frontbuffer-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][347] ([i915#9683]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-2/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#9688]) +5 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-2/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][349] ([i915#1072] / [i915#9732]) +24 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-12/igt at kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt at kms_psr@psr2-primary-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][350] ([i915#9732]) +13 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-9/igt at kms_psr@psr2-primary-mmap-cpu.html * igt at kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#1072] / [i915#9732]) +30 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-5/igt at kms_psr@psr2-primary-mmap-gtt.html * igt at kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#9732]) +10 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at kms_psr@psr2-sprite-mmap-gtt.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][353] +564 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk7/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][354] ([i915#1072] / [i915#9732]) +24 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-7/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][355] ([i915#9685]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][356] ([i915#9685]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-6/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#5289]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-1/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][358] ([i915#5289]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-17/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#12755] / [i915#5190]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-1/igt at kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][360] ([i915#5289]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-6/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]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-2/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][362] ([i915#3555]) +4 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-12/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][363] ([i915#3555]) +4 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-5/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][364] ([i915#13179]) +1 other test abort [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk8/igt at kms_selftest@drm_framebuffer.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-mtlp: NOTRUN -> [SKIP][365] ([i915#3555] / [i915#8809]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-4/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#8623]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-8/igt at kms_tiled_display@basic-test-pattern-with-chamelium.html * igt at kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#9906]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-3/igt at kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][368] ([i915#9906]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at kms_vrr@flip-basic-fastset.html * igt at kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][369] ([i915#3555] / [i915#9906]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-12/igt at kms_vrr@negative-basic.html - shard-tglu: NOTRUN -> [SKIP][370] ([i915#3555] / [i915#9906]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-8/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][371] ([i915#9906]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-10/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][372] ([i915#9906]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-7/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][373] ([i915#2437]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk4/igt at kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][374] ([i915#2437]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-7/igt at kms_writeback@writeback-fb-id.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][375] ([i915#2437] / [i915#9412]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-18/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][376] ([i915#2437]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/igt at kms_writeback@writeback-invalid-parameters.html * igt at kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#2437] / [i915#9412]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-7/igt at kms_writeback@writeback-pixel-formats.html * igt at perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][378] ([i915#7387]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-3/igt at perf@global-sseu-config.html * igt at perf@polling at 0-rcs0: - shard-rkl: NOTRUN -> [DMESG-WARN][379] ([i915#12964]) +19 other tests dmesg-warn [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-3/igt at perf@polling at 0-rcs0.html * igt at perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][380] +430 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-snb5/igt at perf_pmu@busy-accuracy-98.html * igt at perf_pmu@busy-check-all at vcs0: - shard-dg1: NOTRUN -> [FAIL][381] ([i915#4349]) +1 other test fail [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-12/igt at perf_pmu@busy-check-all at vcs0.html * igt at perf_pmu@busy-hang at vcs1: - shard-mtlp: NOTRUN -> [FAIL][382] ([i915#4349]) +3 other tests fail [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-8/igt at perf_pmu@busy-hang at vcs1.html * igt at perf_pmu@busy-idle-check-all at bcs0: - shard-mtlp: [PASS][383] -> [FAIL][384] ([i915#4349]) +8 other tests fail [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-2/igt at perf_pmu@busy-idle-check-all at bcs0.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-7/igt at perf_pmu@busy-idle-check-all at bcs0.html * igt at perf_pmu@busy-idle-check-all at vcs0: - shard-dg2: [PASS][385] -> [FAIL][386] ([i915#4349]) +5 other tests fail [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-5/igt at perf_pmu@busy-idle-check-all at vcs0.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/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][387] -> [FAIL][388] ([i915#4349]) +7 other tests fail [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-13/igt at perf_pmu@busy-idle-check-all at vecs0.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-14/igt at perf_pmu@busy-idle-check-all at vecs0.html * igt at perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][389] ([i915#8850]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-5/igt at perf_pmu@cpu-hotplug.html - shard-tglu-1: NOTRUN -> [SKIP][390] ([i915#8850]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-1/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@frequency at gt0: - shard-dg2: NOTRUN -> [FAIL][391] ([i915#12549] / [i915#6806]) +1 other test fail [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-4/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][392] ([i915#8516]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-10/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][393] ([i915#8516]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-6/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][394] ([i915#9351]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-4/igt at prime_mmap@test_aperture_limit.html * igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][395] ([i915#9351]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-4/igt at prime_mmap@test_aperture_limit at test_aperture_limit-smem.html * igt at prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][396] ([i915#3708] / [i915#4077]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/igt at prime_vgem@basic-gtt.html * igt at prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][397] ([i915#3708] / [i915#4077]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-4/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][398] ([i915#3708]) +1 other test skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-3/igt at prime_vgem@fence-read-hang.html - shard-dg2: NOTRUN -> [SKIP][399] ([i915#3708]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-8/igt at prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][400] ([i915#3708]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-4/igt at prime_vgem@fence-read-hang.html - shard-dg1: NOTRUN -> [SKIP][401] ([i915#3708]) +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-13/igt at prime_vgem@fence-read-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][402] ([i915#9917]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-12/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@bind-unbind-vf at vf-4: - shard-tglu: NOTRUN -> [FAIL][403] ([i915#12910]) +9 other tests fail [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-8/igt at sriov_basic@bind-unbind-vf at vf-4.html * igt at sriov_basic@bind-unbind-vf at vf-5: - shard-mtlp: NOTRUN -> [FAIL][404] ([i915#12910]) +9 other tests fail [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-2/igt at sriov_basic@bind-unbind-vf at vf-5.html * igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2: NOTRUN -> [SKIP][405] ([i915#9917]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-5/igt at sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt at gem_create@busy-create: - shard-rkl: [DMESG-WARN][406] ([i915#12964]) -> [PASS][407] +37 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-3/igt at gem_create@busy-create.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-2/igt at gem_create@busy-create.html * igt at gem_eio@kms: - shard-dg1: [FAIL][408] ([i915#5784]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-12/igt at gem_eio@kms.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-17/igt at gem_eio@kms.html * igt at gem_exec_big@single: - shard-tglu: [ABORT][410] ([i915#11713]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-9/igt at gem_exec_big@single.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-tglu-8/igt at gem_exec_big@single.html * igt at i915_pm_freq_api@freq-suspend at gt0: - shard-dg2: [INCOMPLETE][412] ([i915#12455]) -> [PASS][413] +1 other test pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-10/igt at i915_pm_freq_api@freq-suspend at gt0.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-5/igt at i915_pm_freq_api@freq-suspend at gt0.html * igt at i915_pm_rpm@sysfs-read: - shard-dg1: [SKIP][414] ([i915#4423]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-18/igt at i915_pm_rpm@sysfs-read.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg1-17/igt at i915_pm_rpm@sysfs-read.html * igt at kms_cursor_edge_walk@64x64-top-edge: - shard-rkl: [DMESG-WARN][416] ([i915#12917] / [i915#12964]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-7/igt at kms_cursor_edge_walk@64x64-top-edge.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-2/igt at kms_cursor_edge_walk@64x64-top-edge.html * igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][418] ([i915#2346]) -> [PASS][419] +1 other test pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk1/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-glk4/igt at kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [FAIL][420] ([i915#2346]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html - shard-mtlp: [FAIL][422] ([i915#2346]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-mtlp-4/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-snb: [FAIL][424] ([i915#11989]) -> [PASS][425] +1 other test pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb2/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-snb1/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@plain-flip-fb-recreate: - shard-rkl: [FAIL][426] ([i915#11989]) -> [PASS][427] +1 other test pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-7/igt at kms_flip@plain-flip-fb-recreate.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-rkl-4/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_flip@plain-flip-fb-recreate-interruptible: - shard-dg2: [FAIL][428] ([i915#11989]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-5/igt at kms_flip@plain-flip-fb-recreate-interruptible.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/shard-dg2-10/igt at kms_flip@plain-flip-fb-recreate-interruptible.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at d-hdmi-a1: - shard-tglu: [FAIL][430] ([i915#11989]) -> [PASS][431] +5 other tests pass [430]: https://intel-gfx-ci.01. == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12466/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 21 09:03:49 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 21 Jan 2025 09:03:49 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_tests/amdgpu=3A_find_PCI_bu?= =?utf-8?q?s=2C_device_and_function_and_use_it?= In-Reply-To: <20250121044025.167761-1-vitaly.prosyak@amd.com> References: <20250121044025.167761-1-vitaly.prosyak@amd.com> Message-ID: <173745022909.2528870.13441706037309348678@b555e5b46a47> == Series Details == Series: tests/amdgpu: find PCI bus, device and function and use it URL : https://patchwork.freedesktop.org/series/143766/ State : success == Summary == CI Bug Log - changes from XEIGT_8200_BAT -> XEIGTPW_12471_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12471_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/bat-adlp-vf/igt at xe_live_ktest@xe_bo at xe_ccs_migrate_kunit.html * igt at xe_live_ktest@xe_migrate at xe_migrate_sanity_kunit: - bat-adlp-vf: NOTRUN -> [DMESG-FAIL][2] ([Intel XE#4078]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/bat-adlp-vf/igt at xe_live_ktest@xe_migrate at xe_migrate_sanity_kunit.html #### Possible fixes #### * igt at xe_intel_bb@intel-bb-blit-y: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3970] / [Intel XE#4078]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-y.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/bat-adlp-vf/igt at xe_intel_bb@intel-bb-blit-y.html * igt at xe_live_ktest@xe_dma_buf: - bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/bat-adlp-vf/igt at xe_live_ktest@xe_dma_buf.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/bat-adlp-vf/igt at xe_live_ktest@xe_dma_buf.html * igt at xe_vm@shared-pte-page: - bat-adlp-vf: [DMESG-WARN][7] ([Intel XE#4078]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/bat-adlp-vf/igt at xe_vm@shared-pte-page.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/bat-adlp-vf/igt at xe_vm@shared-pte-page.html #### Warnings #### * igt at xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][9] ([Intel XE#1192]) -> [SKIP][10] ([Intel XE#2229] / [Intel XE#455]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/bat-adlp-vf/igt at xe_live_ktest@xe_bo.html * igt at xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][11] ([Intel XE#1192]) -> [DMESG-FAIL][12] ([Intel XE#4078]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/bat-adlp-vf/igt at xe_live_ktest@xe_migrate.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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8200 -> IGTPW_12471 * Linux: xe-2516-fb87b4e061d1844beaca66c8446cfcf60db99a23 -> xe-2517-e48abf2c0aa4813a4629aeebd0547eb86f0f1a91 IGTPW_12471: 8ee26c6c2c199488285311f882112bd9b6486b89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8200: 5352b187076e89a9ff146cc1ecbd809aa20e4f91 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2516-fb87b4e061d1844beaca66c8446cfcf60db99a23: fb87b4e061d1844beaca66c8446cfcf60db99a23 xe-2517-e48abf2c0aa4813a4629aeebd0547eb86f0f1a91: e48abf2c0aa4813a4629aeebd0547eb86f0f1a91 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From pravalika.gurram at intel.com Tue Jan 21 09:14:05 2025 From: pravalika.gurram at intel.com (Gurram, Pravalika) Date: Tue, 21 Jan 2025 09:14:05 +0000 Subject: [PATCH 1/2] lib/igt_facts: Make igt_facts_test noreturn In-Reply-To: <21d050fd-f30f-4759-86b7-343d3f7b1015@linux.intel.com> References: <20250121063207.71737-1-pravalika.gurram@intel.com> <20250121063207.71737-2-pravalika.gurram@intel.com> <21d050fd-f30f-4759-86b7-343d3f7b1015@linux.intel.com> Message-ID: > -----Original Message----- > From: Peter Senna Tschudin > Sent: Tuesday, January 21, 2025 1:51 PM > To: Gurram, Pravalika ; igt- > dev at lists.freedesktop.org; kamil.konieczny at linux.intel.com > Subject: Re: [PATCH 1/2] lib/igt_facts: Make igt_facts_test noreturn > > Hi Pravalika, > > On 21.01.2025 07:32, Pravalika Gurram wrote: > > noreturn attribute is used to improve the optimization by informing to > > the compiler that function does not return . > > > > Signed-off-by: Pravalika Gurram > > --- > > lib/igt_facts.c | 4 +++- > > 1 file changed, 3 insertions(+), 1 deletion(-) > > > > diff --git a/lib/igt_facts.c b/lib/igt_facts.c index > > 2e04a7c86..bd6742065 100644 > > --- a/lib/igt_facts.c > > +++ b/lib/igt_facts.c > > @@ -748,7 +748,7 @@ static void igt_facts_test_mark_and_sweep(struct > igt_list_head *head) > > * > > * Returns: bool indicating if the tests passed > > */ > > -void igt_facts_test(void) > > +__noreturn void igt_facts_test(void) > > How did you find this? Is the compiler complaining? > When am fixing the check patch errors I have seen below error ninja: Entering directory `build' [2/835] Compiling C object lib/libigt-igt_facts_c.a.p/igt_facts.c.o ../lib/igt_facts.c: In function ?igt_facts_test?: ../lib/igt_facts.c:751:6: warning: function might be candidate for attribute ?noreturn? [-Wsuggest-attribute=noreturn] 751 | void igt_facts_test(void) | ^~~~~~~~~~~~~~ [6/6] Generating docs/testplan/intel-ci-tests with a custom command Then have added changes. > > { > > const char *last_test = "Unit Testing"; > > > > @@ -776,4 +776,6 @@ void igt_facts_test(void) > > /* Clean up the list and call igt_facts(). This should not crash */ > > igt_facts_list_mark_and_sweep(&igt_facts_list_pci_gpu_head); > > igt_facts(last_test); > > + > > + igt_exit(); > > } > Why adding igt_exit() here? > > How did you test this patch? > If we don?t explicitly specify igt_exit() I will below warning ninja: Entering directory `build' [43/999] Compiling C object lib/libigt-igt_facts_c.a.p/igt_facts.c.o ../lib/igt_facts.c: In function ?igt_facts_test?: ../lib/igt_facts.c:779:1: warning: ?noreturn? function does return 779 | } | ^ I have compiled since these check patch errors > Thanks, > > Peter From patchwork at emeril.freedesktop.org Tue Jan 21 09:18:57 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 21 Jan 2025 09:18:57 -0000 Subject: =?utf-8?q?=E2=9C=97_GitLab=2EPipeline=3A_warning_for_Make_igt=5Ffacts=5Ftest?= =?utf-8?q?_noreturn_and_cleanup?= In-Reply-To: <20250121063207.71737-1-pravalika.gurram@intel.com> References: <20250121063207.71737-1-pravalika.gurram@intel.com> Message-ID: <173745113763.2528870.10068986420789503642@b555e5b46a47> == Series Details == Series: Make igt_facts_test noreturn and cleanup URL : https://patchwork.freedesktop.org/series/143776/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1349299 for the overview. test:ninja-test has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69671923): 439/443 assembler test/rnde-intsrc OK 0.01 s 440/443 assembler test/rndz OK 0.01 s 441/443 assembler test/lzd OK 0.01 s 442/443 assembler test/not OK 0.01 s 443/443 assembler test/immediate OK 0.01 s Ok: 438 Expected Fail: 4 Fail: 1 Unexpected Pass: 0 Skipped: 0 Timeout: 0 Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt section_end:1737450521:step_script section_start:1737450521:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737450529:cleanup_file_variables ERROR: Job failed: exit code 1 test:ninja-test-clang has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69672350): 439/443 assembler test/rnde-intsrc OK 0.02 s 440/443 assembler test/rndz OK 0.03 s 441/443 assembler test/lzd OK 0.02 s 442/443 assembler test/not OK 0.02 s 443/443 assembler test/immediate OK 0.02 s Ok: 438 Expected Fail: 4 Fail: 1 Unexpected Pass: 0 Skipped: 0 Timeout: 0 Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt section_end:1737451010:step_script section_start:1737451010:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737451011:cleanup_file_variables ERROR: Job failed: exit code 1 test:ninja-test-minimal has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/69671924): 27/31 lib i915_perf_data_alignment OK 0.53 s 28/31 lib bad_subtest_type EXPECTEDFAIL 0.48 s 29/31 lib igt_no_subtest EXPECTEDFAIL 0.24 s 30/31 lib igt_simple_test_subtests EXPECTEDFAIL 0.24 s 31/31 lib igt_timeout EXPECTEDFAIL 1.21 s Ok: 26 Expected Fail: 4 Fail: 1 Unexpected Pass: 0 Skipped: 0 Timeout: 0 Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt section_end:1737450451:step_script section_start:1737450451:cleanup_file_variables Cleaning up project directory and file based variables section_end:1737450451:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1349299 From patchwork at emeril.freedesktop.org Tue Jan 21 09:23:11 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 21 Jan 2025 09:23:11 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_Make_igt=5Ffacts=5Ftest_n?= =?utf-8?q?oreturn_and_cleanup?= In-Reply-To: <20250121063207.71737-1-pravalika.gurram@intel.com> References: <20250121063207.71737-1-pravalika.gurram@intel.com> Message-ID: <173745139117.2537476.14072847684311085292@b555e5b46a47> == Series Details == Series: Make igt_facts_test noreturn and cleanup URL : https://patchwork.freedesktop.org/series/143776/ State : success == Summary == CI Bug Log - changes from IGT_8201 -> IGTPW_12472 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12472/index.html Participating hosts (41 -> 36) ------------------------------ Missing (5): fi-hsw-4770 bat-rplp-1 bat-arls-6 bat-arlh-2 bat-mtlp-6 Known issues ------------ Here are the changes found in IGTPW_12472 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at debugfs_test@basic-hwmon: - fi-pnv-d510: NOTRUN -> [SKIP][1] +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12472/fi-pnv-d510/igt at debugfs_test@basic-hwmon.html * igt at gem_exec_gttfill@basic: - fi-pnv-d510: NOTRUN -> [ABORT][2] ([i915#13169]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12472/fi-pnv-d510/igt at gem_exec_gttfill@basic.html #### Possible fixes #### * igt at i915_module_load@load: - fi-pnv-d510: [ABORT][3] ([i915#13203]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8201/fi-pnv-d510/igt at i915_module_load@load.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12472/fi-pnv-d510/igt at i915_module_load@load.html * igt at i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8201/bat-mtlp-8/igt at i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12472/bat-mtlp-8/igt at i915_selftest@live.html - bat-dg2-11: [INCOMPLETE][7] ([i915#12435] / [i915#12445]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8201/bat-dg2-11/igt at i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12472/bat-dg2-11/igt at i915_selftest@live.html * igt at i915_selftest@live at hugepages: - bat-dg2-11: [INCOMPLETE][9] -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8201/bat-dg2-11/igt at i915_selftest@live at hugepages.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12472/bat-dg2-11/igt at i915_selftest@live at hugepages.html * igt at i915_selftest@live at workarounds: - bat-arlh-3: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8201/bat-arlh-3/igt at i915_selftest@live at workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12472/bat-arlh-3/igt at i915_selftest@live at workarounds.html - {bat-mtlp-9}: [DMESG-FAIL][13] ([i915#12061]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8201/bat-mtlp-9/igt at i915_selftest@live at workarounds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12472/bat-mtlp-9/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#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435 [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#13169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13169 [i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8201 -> IGTPW_12472 CI-20190529: 20190529 CI_DRM_15986: e48abf2c0aa4813a4629aeebd0547eb86f0f1a91 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12472: d00a9eb6fbffafc283fff85eab99cf7352de3c54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8201: dcc73646ce05a91bb4537e50ee6fa7ac5e8ff4ed @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12472/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 21 09:26:45 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 21 Jan 2025 09:26:45 -0000 Subject: =?utf-8?q?=E2=9C=97_i915=2ECI=2EFull=3A_failure_for_series_starting_with_=5B?= =?utf-8?q?i-g-t=2C1/2=5D_lib/xe=5Feudebug=3A_Fix_32b_compilation_warnings/e?= =?utf-8?q?rrors?= In-Reply-To: <20250120131338.131713-1-dominik.grzegorzek@intel.com> References: <20250120131338.131713-1-dominik.grzegorzek@intel.com> Message-ID: <173745160559.2537476.11658020411931991022@b555e5b46a47> == Series Details == Series: series starting with [i-g-t,1/2] lib/xe_eudebug: Fix 32b compilation warnings/errors URL : https://patchwork.freedesktop.org/series/143730/ State : failure == Summary == CI Bug Log - changes from IGT_8199_full -> IGTPW_12467_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12467_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12467_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_12467/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12467_full: ### IGT changes ### #### Possible regressions #### * igt at fbdev@read: - shard-dg2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-2/igt at fbdev@read.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-5/igt at fbdev@read.html Known issues ------------ Here are the changes found in IGTPW_12467_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt at api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-12/igt at api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-5/igt at api_intel_bb@blit-reloc-purge-cache.html * igt at drm_fdinfo@busy-hang at bcs0: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#8414]) +7 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-12/igt at drm_fdinfo@busy-hang at bcs0.html * igt at drm_fdinfo@most-busy-idle-check-all at vecs1: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +26 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-1/igt at drm_fdinfo@most-busy-idle-check-all at vecs1.html * igt at gem_bad_reloc@negative-reloc-lut: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#3281]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-7/igt at gem_bad_reloc@negative-reloc-lut.html * igt at gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#7697]) +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-2/igt at gem_basic@multigpu-create-close.html - shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#7697]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at gem_basic@multigpu-create-close.html - shard-dg1: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-17/igt at gem_basic@multigpu-create-close.html - shard-dg2: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-10/igt at gem_basic@multigpu-create-close.html * igt at gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#3936]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-14/igt at gem_busy@semaphore.html * igt at gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-9/igt at gem_ccs@block-copy-compressed.html * igt at gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-18/igt at gem_ccs@block-multicopy-compressed.html * igt at gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#13008]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-5/igt at gem_ccs@large-ctrl-surf-copy.html * igt at gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][16] ([i915#7297]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-2/igt at gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-4/igt at gem_ccs@suspend-resume.html * igt at gem_ccs@suspend-resume at tile64-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][18] ([i915#12392] / [i915#7297]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-2/igt at gem_ccs@suspend-resume at tile64-compressed-compfmt0-smem-lmem0.html * igt at gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-3/igt at gem_close_race@multigpu-basic-threads.html * igt at gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#6335]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-4/igt at gem_create@create-ext-cpu-access-sanity-check.html * igt at gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8562]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-7/igt at gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][22] ([i915#8562]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-5/igt at gem_create@create-ext-set-pat.html * igt at gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][23] ([i915#1099]) +8 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-snb1/igt at gem_ctx_persistence@engines-mixed-process.html * igt at gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#5882]) +7 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-1/igt at gem_ctx_persistence@saturated-hostile-nopreempt.html * igt at gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-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_12467/shard-dg1-12/igt at gem_ctx_sseu@invalid-sseu.html - shard-tglu: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-9/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_12467/shard-mtlp-5/igt at gem_ctx_sseu@invalid-sseu.html * igt at gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][29] ([i915#13197] / [i915#13390]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk6/igt at gem_eio@in-flight-suspend.html * igt at gem_eio@kms: - shard-tglu: [PASS][30] -> [DMESG-WARN][31] ([i915#13363]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-10/igt at gem_eio@kms.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-10/igt at gem_eio@kms.html * igt at gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4771]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-3/igt at gem_exec_balancer@bonded-pair.html - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4771]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-13/igt at gem_exec_balancer@bonded-pair.html * igt at gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4812]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-7/igt at gem_exec_balancer@bonded-true-hang.html * igt at gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4036]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-1/igt at gem_exec_balancer@invalid-bonds.html * igt at gem_exec_balancer@noheartbeat: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#8555]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-14/igt at gem_exec_balancer@noheartbeat.html * igt at gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][37] ([i915#4525]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-4/igt at gem_exec_balancer@parallel-bb-first.html * igt at gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#4525]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-4/igt at gem_exec_balancer@parallel-contexts.html * igt at gem_exec_balancer@parallel-keep-in-fence: - shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#4525]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at gem_exec_balancer@parallel-keep-in-fence.html * igt at gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][40] ([i915#11965]) +1 other test fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-5/igt at gem_exec_capture@capture.html * igt at gem_exec_capture@capture at vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][41] ([i915#11965]) +2 other tests fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-12/igt at gem_exec_capture@capture at vecs0-lmem0.html * igt at gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-7/igt at gem_exec_flush@basic-uc-pro-default.html * igt at gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-12/igt at gem_exec_flush@basic-wb-rw-before-default.html * igt at gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +12 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-18/igt at gem_exec_reloc@basic-write-cpu-active.html * igt at gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +10 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-5/igt at gem_exec_reloc@basic-write-gtt.html * igt at gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-1/igt at gem_exec_reloc@basic-write-read-noreloc.html * igt at gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-3/igt at gem_exec_schedule@preempt-queue-contexts-chain.html - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-8/igt at gem_exec_schedule@preempt-queue-contexts-chain.html * igt at gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4812]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-17/igt at gem_exec_schedule@semaphore-power.html * igt at gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][50] ([i915#7975] / [i915#8213]) +1 other test abort [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-8/igt at gem_exec_suspend@basic-s4-devices.html - shard-rkl: NOTRUN -> [ABORT][51] ([i915#7975] / [i915#8213]) +1 other test abort [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-7/igt at gem_exec_suspend@basic-s4-devices.html * igt at gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-10/igt at gem_fence_thrash@bo-copy.html * igt at gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-12/igt at gem_fenced_exec_thrash@no-spare-fences.html * igt at gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4860]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-6/igt at gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt at gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613] / [i915#7582]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-2/igt at gem_lmem_evict@dontneed-evict-race.html * igt at gem_lmem_swapping@heavy-random: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-8/igt at gem_lmem_swapping@heavy-random.html * igt at gem_lmem_swapping@heavy-verify-multi: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-1/igt at gem_lmem_swapping@heavy-verify-multi.html * igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4565]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-12/igt at gem_lmem_swapping@heavy-verify-random-ccs at lmem0.html * igt at gem_lmem_swapping@parallel-random-verify-ccs: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#12193]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-14/igt at gem_lmem_swapping@parallel-random-verify-ccs.html * igt at gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk3/igt at gem_lmem_swapping@verify-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at gem_lmem_swapping@verify-ccs.html * igt at gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#4613]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-4/igt at gem_lmem_swapping@verify-random-ccs.html * igt at gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#284]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-4/igt at gem_media_vme.html * igt at gem_mmap@basic: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-17/igt at gem_mmap@basic.html * igt at gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +12 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-13/igt at gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt at gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4077]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-2/igt at gem_mmap_gtt@fault-concurrent-y.html * igt at gem_mmap_wc@write-cpu-read-wc: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4083]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-7/igt at gem_mmap_wc@write-cpu-read-wc.html * igt at gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +8 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-8/igt at gem_mmap_wc@write-prefaulted.html * igt at gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#3282]) +6 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-17/igt at gem_pread@exhaustion.html - shard-snb: NOTRUN -> [WARN][70] ([i915#2658]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-snb7/igt at gem_pread@exhaustion.html * igt at gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3282]) +8 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-1/igt at gem_pwrite@basic-self.html * igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4270]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-10/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4270]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-14/igt at gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt at gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][74] ([i915#12917] / [i915#12964]) +2 other tests timeout [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-2/igt at gem_pxp@hw-rejects-pxp-buffer.html - shard-tglu: NOTRUN -> [SKIP][75] ([i915#13398]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-8/igt at gem_pxp@hw-rejects-pxp-buffer.html * igt at gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-5/igt at gem_readwrite@beyond-eob.html - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3282]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-1/igt at gem_readwrite@beyond-eob.html * igt at gem_render_copy@linear-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#5190] / [i915#8428]) +7 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-8/igt at gem_render_copy@linear-to-vebox-yf-tiled.html * igt at gem_render_copy@x-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#8428]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-7/igt at gem_render_copy@x-tiled-to-vebox-y-tiled.html * igt at gem_render_tiled_blits@basic: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4079]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-18/igt at gem_render_tiled_blits@basic.html * igt at gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#8411]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-4/igt at gem_set_tiling_vs_blt@tiled-to-tiled.html * igt at gem_softpin@allocator-evict at bcs0: - shard-rkl: [PASS][82] -> [DMESG-WARN][83] ([i915#12964]) +8 other tests dmesg-warn [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-3/igt at gem_softpin@allocator-evict at bcs0.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-5/igt at gem_softpin@allocator-evict at bcs0.html * igt at gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4077]) +13 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-8/igt at gem_tiled_partial_pwrite_pread@writes.html * igt at gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4079]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-8/igt at gem_tiled_pread_basic.html - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4079]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-7/igt at gem_tiled_pread_basic.html * igt at gem_userptr_blits@coherency-sync: - shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at gem_userptr_blits@coherency-sync.html * igt at gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3282] / [i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-10/igt at gem_userptr_blits@forbidden-operations.html * igt at gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4880]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-3/igt at gem_userptr_blits@map-fixed-invalidate.html * igt at gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4880]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-17/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-4/igt at gem_userptr_blits@map-fixed-invalidate-overlap.html * igt at gem_userptr_blits@sync-unmap-cycles: - shard-rkl: NOTRUN -> [DMESG-WARN][92] ([i915#12964]) +12 other tests dmesg-warn [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-3/igt at gem_userptr_blits@sync-unmap-cycles.html * igt at gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#3297]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-17/igt at gem_userptr_blits@unsync-unmap-after-close.html * igt at gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-17/igt at gen9_exec_parse@bb-chained.html * igt at gen9_exec_parse@bb-start-param: - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at gen9_exec_parse@bb-start-param.html * igt at gen9_exec_parse@secure-batches: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#2856]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-7/igt at gen9_exec_parse@secure-batches.html * igt at gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#2856]) +5 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-10/igt at gen9_exec_parse@unaligned-access.html * igt at gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-10/igt at gen9_exec_parse@unaligned-jump.html * igt at gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#2527]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-7/igt at gen9_exec_parse@valid-registers.html * igt at i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [ABORT][100] ([i915#9820]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-3/igt at i915_module_load@reload-with-fault-injection.html * igt at i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#6412]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-1/igt at i915_module_load@resize-bar.html * igt at i915_pm_rpm@gem-mmap-type: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#13328]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-3/igt at i915_pm_rpm@gem-mmap-type.html * igt at i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#11681] / [i915#6621]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-3/igt at i915_pm_rps@min-max-config-idle.html * igt at i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#11681] / [i915#6621]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-14/igt at i915_pm_rps@min-max-config-loaded.html * igt at i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][105] ([i915#8346]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-7/igt at i915_pm_rps@reset.html * igt at i915_pm_rps@thresholds: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#11681]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-13/igt at i915_pm_rps@thresholds.html * igt at i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#11681]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-6/igt at i915_pm_rps@thresholds-idle-park.html * igt at i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4387]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-12/igt at i915_pm_sseu@full-enable.html * igt at i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#6188]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-7/igt at i915_query@query-topology-coherent-slice-mask.html * igt at i915_selftest@live: - shard-rkl: [PASS][110] -> [DMESG-FAIL][111] ([i915#12964] / [i915#13550]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-5/igt at i915_selftest@live.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-2/igt at i915_selftest@live.html * igt at i915_selftest@live at gt_pm: - shard-rkl: [PASS][112] -> [DMESG-FAIL][113] ([i915#13550]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-5/igt at i915_selftest@live at gt_pm.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-2/igt at i915_selftest@live at gt_pm.html * igt at i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][114] ([i915#9311]) +1 other test dmesg-warn [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-snb2/igt at i915_selftest@mock.html - shard-glk: NOTRUN -> [DMESG-WARN][115] ([i915#9311]) +1 other test dmesg-warn [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk6/igt at i915_selftest@mock.html * igt at i915_selftest@mock at memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][116] ([i915#9311]) +1 other test dmesg-warn [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-1/igt at i915_selftest@mock at memory_region.html - shard-dg1: NOTRUN -> [DMESG-WARN][117] ([i915#9311]) +1 other test dmesg-warn [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-12/igt at i915_selftest@mock at memory_region.html * igt at intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#7707]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at intel_hwmon@hwmon-read.html * igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#4212]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-4/igt at kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.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][120] ([i915#8709]) +11 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/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][121] ([i915#8709]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/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@async-flip-with-page-flip-events at pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#8709]) +7 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-10/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-b-hdmi-a-1-y-rc-ccs.html * igt at kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#12967] / [i915#6228]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-7/igt at kms_async_flips@invalid-async-flip.html * igt at kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#10333]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-5/igt at kms_async_flips@test-cursor.html * igt at kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#9531]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-6/igt at kms_atomic@plane-primary-overlay-mutable-zpos.html * igt at kms_atomic_transition@plane-all-modeset-transition: - shard-dg1: [PASS][126] -> [FAIL][127] ([i915#5956]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-12/igt at kms_atomic_transition@plane-all-modeset-transition.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-14/igt at kms_atomic_transition@plane-all-modeset-transition.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][128] ([i915#1769]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-snb2/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][129] ([i915#1769] / [i915#3555]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-2/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][130] ([i915#1769] / [i915#3555]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-4/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][131] ([i915#1769]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk4/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-4: - shard-dg1: NOTRUN -> [FAIL][132] ([i915#5956]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-14/igt at kms_atomic_transition@plane-all-modeset-transition at pipe-a-hdmi-a-4.html * igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-hdmi-a-1: - shard-tglu: [PASS][133] -> [FAIL][134] ([i915#11808]) +3 other tests fail [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-10/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-hdmi-a-1.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-2/igt at kms_atomic_transition@plane-toggle-modeset-transition at pipe-a-hdmi-a-1.html * igt at kms_big_fb@4-tiled-8bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#5286]) +5 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-7/igt at kms_big_fb@4-tiled-8bpp-rotate-0.html * igt at kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#5286]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-18/igt at kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#4538] / [i915#5286]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-13/igt at kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#5286]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-5/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-0-hflip-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#5286]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt at kms_big_fb@linear-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][140] +7 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-5/igt at kms_big_fb@linear-16bpp-rotate-90.html * igt at kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#3638]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-4/igt at kms_big_fb@linear-64bpp-rotate-90.html * igt at kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#3638]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-14/igt at kms_big_fb@x-tiled-16bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#5190]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-2/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][144] ([i915#4538] / [i915#5190]) +13 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-8/igt at kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6187]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-1/igt at kms_big_fb@yf-tiled-addfb.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#4538]) +5 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-14/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc at pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#10307] / [i915#6095]) +110 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-5/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc at pipe-a-hdmi-a-3.html * igt at kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs at pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-8/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-mtl-rc-ccs-cc at pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#6095]) +153 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/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-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#6095]) +69 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/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-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#12313]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-5/igt at kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#12313]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-14/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-dg2: NOTRUN -> [SKIP][153] ([i915#12313]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-10/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#12805]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#12805]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-8/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][156] ([i915#12805]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-3/igt at kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#6095]) +9 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-5/igt at kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs at pipe-a-edp-1.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc at pipe-c-dp-4: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#6095]) +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-10/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc at pipe-c-dp-4.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][159] ([i915#12796]) +2 other tests incomplete [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk6/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-2.html * igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs at pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#6095]) +34 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs at pipe-d-hdmi-a-1.html * igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#6095]) +68 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-5/igt at kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt at kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#3742]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-12/igt at kms_cdclk@mode-transition-all-outputs.html - shard-tglu: NOTRUN -> [SKIP][163] ([i915#3742]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-7/igt at kms_cdclk@mode-transition-all-outputs.html - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#7213] / [i915#9010]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-7/igt at kms_cdclk@mode-transition-all-outputs.html - shard-dg2: NOTRUN -> [SKIP][165] ([i915#11616] / [i915#7213]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-7/igt at kms_cdclk@mode-transition-all-outputs.html - shard-rkl: NOTRUN -> [SKIP][166] ([i915#3742]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-1/igt at kms_cdclk@mode-transition-all-outputs.html * igt at kms_chamelium_audio@hdmi-audio-edid: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_chamelium_audio@hdmi-audio-edid.html * igt at kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +13 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-2/igt at kms_chamelium_frames@dp-crc-fast.html * igt at kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +10 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-3/igt at kms_chamelium_hpd@dp-hpd.html * igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +5 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-7/igt at kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt at kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +10 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-17/igt at kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-6/igt at kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt at kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#7116] / [i915#9424]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-17/igt at kms_content_protection@atomic.html - shard-dg2: NOTRUN -> [SKIP][174] ([i915#7118] / [i915#9424]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-3/igt at kms_content_protection@atomic.html * igt at kms_content_protection@dp-mst-lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3299]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-8/igt at kms_content_protection@dp-mst-lic-type-0.html - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#3116] / [i915#3299]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_content_protection@dp-mst-lic-type-0.html * igt at kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#3116]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-5/igt at kms_content_protection@dp-mst-type-0.html - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3299]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-1/igt at kms_content_protection@dp-mst-type-0.html * igt at kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-2/igt at kms_content_protection@legacy.html - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#6944] / [i915#9424]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-3/igt at kms_content_protection@legacy.html * igt at kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#9424]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-5/igt at kms_content_protection@lic-type-0.html * igt at kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#9424]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-1/igt at kms_content_protection@lic-type-1.html * igt at kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#7118]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-5/igt at kms_content_protection@srm.html * igt at kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#3555]) +6 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-1/igt at kms_cursor_crc@cursor-onscreen-32x32.html * igt at kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#13049]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-4/igt at kms_cursor_crc@cursor-onscreen-512x512.html - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#13049]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-7/igt at kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg2: NOTRUN -> [SKIP][187] ([i915#13049]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-6/igt at kms_cursor_crc@cursor-onscreen-512x512.html * igt at kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#3555]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_cursor_crc@cursor-onscreen-max-size.html * igt at kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3555]) +4 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-18/igt at kms_cursor_crc@cursor-random-32x32.html * igt at kms_cursor_crc@cursor-random-512x512: - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#13049]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_cursor_crc@cursor-random-512x512.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#13049]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-13/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][192] ([i915#12358] / [i915#7882]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk9/igt at kms_cursor_crc@cursor-suspend.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][193] ([i915#12358]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk9/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-1.html * igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-FAIL][194] ([i915#12964]) +1 other test dmesg-fail [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-3/igt at kms_cursor_crc@cursor-suspend at pipe-a-hdmi-a-2.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#13046] / [i915#5354]) +3 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-7/igt at kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#9809]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-2/igt at kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-snb: [PASS][197] -> [SKIP][198] [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb7/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-snb2/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#4103] / [i915#4213]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-6/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt at kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][200] +13 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-2/igt at kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt at kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#9067]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-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][202] ([i915#4103]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-10/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][203] ([i915#4103]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-4/igt at kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt at kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#9723]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt at kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-dg1: [PASS][205] -> [DMESG-WARN][206] ([i915#4423]) +4 other tests dmesg-warn [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-12/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-14/igt at kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt at kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#3555]) +8 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-4/igt at kms_display_modes@extended-mode-basic.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#8588]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-13/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#1257]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-5/igt at kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][210] ([i915#1257]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-7/igt at kms_dp_aux_dev.html * igt at kms_dp_linktrain_fallback@dp-fallback: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#12402]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-5/igt at kms_dp_linktrain_fallback@dp-fallback.html * igt at kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#8812]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-17/igt at kms_draw_crc@draw-method-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][213] ([i915#8812]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-10/igt at kms_draw_crc@draw-method-mmap-gtt.html * igt at kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#3840]) +2 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-5/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3840]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-6/igt at kms_dsc@dsc-fractional-bpp.html * igt at kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#3840]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-7/igt at kms_dsc@dsc-with-bpc.html * igt at kms_dsc@dsc-with-formats: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-18/igt at kms_dsc@dsc-with-formats.html * igt at kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#3469]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-5/igt at kms_fbcon_fbt@psr.html * igt at kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#1839]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-5/igt at kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#1839]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-18/igt at kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][221] ([i915#1839]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-3/igt at kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#1839]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-4/igt at kms_feature_discovery@display-4x.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_12467/shard-tglu-9/igt at kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][224] ([i915#658]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-1/igt at kms_feature_discovery@psr1.html * igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#9934]) +8 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-2/igt at kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt at kms_flip@2x-flip-vs-modeset-vs-hang: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3637]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-3/igt at kms_flip@2x-flip-vs-modeset-vs-hang.html * igt at kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#9934]) +12 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-6/igt at kms_flip@2x-modeset-vs-vblank-race.html * igt at kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#9934]) +8 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-18/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-tglu: NOTRUN -> [SKIP][229] ([i915#3637]) +4 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-3/igt at kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt at kms_flip@2x-plain-flip-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#3637]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_flip@2x-plain-flip-interruptible.html * igt at kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: [PASS][231] -> [FAIL][232] ([i915#11989]) +1 other test fail [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb2/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-snb7/igt at kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1: - shard-mtlp: [PASS][233] -> [FAIL][234] ([i915#11989]) +2 other tests fail [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-2/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-8/igt at kms_flip@flip-vs-absolute-wf_vblank-interruptible at b-edp1.html * igt at kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#8381]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-2/igt at kms_flip@flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][236] ([i915#8381]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-14/igt at kms_flip@flip-vs-fences.html * igt at kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#8381]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-4/igt at kms_flip@flip-vs-fences-interruptible.html * igt at kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][238] ([i915#12745] / [i915#4839]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk7/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@flip-vs-suspend at a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][239] ([i915#12745]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk7/igt at kms_flip@flip-vs-suspend at a-hdmi-a1.html * igt at kms_flip@plain-flip-ts-check-interruptible: - shard-tglu: [PASS][240] -> [FAIL][241] ([i915#11989]) +9 other tests fail [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-6/igt at kms_flip@plain-flip-ts-check-interruptible.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-7/igt at kms_flip@plain-flip-ts-check-interruptible.html - shard-rkl: NOTRUN -> [FAIL][242] ([i915#11989]) +1 other test fail [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-1/igt at kms_flip@plain-flip-ts-check-interruptible.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-3/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][244] ([i915#2587] / [i915#2672] / [i915#3555]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-17/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#2672]) +4 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-3/igt at kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#2672] / [i915#3555]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/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][247] ([i915#2587] / [i915#2672]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/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-32bpp-4tile-upscaling at pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#2587] / [i915#2672]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling at pipe-a-valid-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-3/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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#8813]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-3/igt at kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling 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-rkl: NOTRUN -> [SKIP][251] ([i915#2672]) +4 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-7/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-rkl: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555]) +4 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-3/igt at kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-tglu: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#3555]) +3 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-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-dg1: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555]) +6 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-18/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-dg1: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) +7 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-18/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-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-6/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [FAIL][257] ([i915#6880]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-6/igt at kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: [PASS][258] -> [FAIL][259] ([i915#6880]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-7/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][260] +51 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-14/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#1825]) +14 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-8/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#1825]) +35 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-2/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt at kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#5439]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-7/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][264] ([i915#5439]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-13/igt at kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][265] ([i915#5439]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-8/igt at kms_frontbuffer_tracking@fbc-tiling-4.html * igt at kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#10055]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-2/igt at kms_frontbuffer_tracking@fbc-tiling-y.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#3458]) +26 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-7/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#3458]) +23 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-14/igt at kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#8708]) +24 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-18/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#8708]) +29 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-8/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#5354]) +43 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-4/igt at kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][272] +82 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-4/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][273] +39 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#8708]) +4 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-6/igt at kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#3023]) +19 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-1/igt at kms_frontbuffer_tracking@psr-suspend.html * igt at kms_hdr@brightness-with-hdr: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#12713]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-7/igt at kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][277] ([i915#1187] / [i915#12713]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-2/igt at kms_hdr@brightness-with-hdr.html * igt at kms_hdr@invalid-hdr: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-7/igt at kms_hdr@invalid-hdr.html * igt at kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-5/igt at kms_hdr@static-toggle.html - shard-dg1: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-13/igt at kms_hdr@static-toggle.html * igt at kms_hdr@static-toggle-dpms: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8228]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-1/igt at kms_hdr@static-toggle-dpms.html * igt at kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#10656]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-5/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#12388]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-2/igt at kms_joiner@basic-force-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][284] ([i915#12388]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-3/igt at kms_joiner@basic-force-big-joiner.html * igt at kms_joiner@basic-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#12394] / [i915#13522]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_joiner@basic-force-ultra-joiner.html * igt at kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#12339]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-7/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#10656]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-18/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#12394] / [i915#13522]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-13/igt at kms_joiner@invalid-modeset-force-ultra-joiner.html * igt at kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#6301]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-1/igt at kms_panel_fitting@legacy.html * igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][290] +17 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-10/igt at kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1: - shard-glk: [PASS][291] -> [INCOMPLETE][292] ([i915#12756]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk8/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk9/igt at kms_pipe_crc_basic@suspend-read-crc at pipe-a-hdmi-a-1.html * igt at kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][293] ([i915#13026]) +1 other test incomplete [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk7/igt at kms_plane@plane-panning-bottom-right-suspend.html * igt at kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][294] ([i915#10647] / [i915#12177]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk3/igt at kms_plane_alpha_blend@alpha-transparent-fb.html * igt at kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][295] ([i915#10647] / [i915#12169]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk2/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][296] ([i915#10647]) +3 other tests fail [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk2/igt at kms_plane_alpha_blend@constant-alpha-max at pipe-c-hdmi-a-1.html * igt at kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#3555] / [i915#8821]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-4/igt at kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8821]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-5/igt at kms_plane_lowres@tiling-yf.html * igt at kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8806]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-3/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#6953]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-7/igt at kms_plane_scaling@intel-max-src-size.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#12247] / [i915#9423]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-10/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#12247]) +11 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-7/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format at pipe-d.html * igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation at pipe-b: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#12247]) +4 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-5/igt at kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation at pipe-b.html * igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-c: - shard-tglu: NOTRUN -> [SKIP][304] ([i915#12247]) +9 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-7/igt at kms_plane_scaling@plane-upscale-20x20-with-rotation at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#12247] / [i915#6953]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_plane_scaling@planes-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling at pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#12247]) +8 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/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-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][307] ([i915#12247] / [i915#6953]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-14/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-c: - shard-dg1: NOTRUN -> [SKIP][308] ([i915#12247]) +7 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-14/igt at kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 at pipe-c.html * igt at kms_plane_scaling@planes-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#12247] / [i915#3555] / [i915#6953]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-5/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][310] ([i915#12247]) +3 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-5/igt at kms_plane_scaling@planes-downscale-factor-0-75 at pipe-b.html * igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#12247] / [i915#3555]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-12/igt at kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#12247] / [i915#6953] / [i915#9423]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-3/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt at kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#12343]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-6/igt at kms_pm_backlight@brightness-with-dpms.html * igt at kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#9812]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_pm_backlight@fade-with-dpms.html * igt at kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#9685]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-1/igt at kms_pm_dc@dc5-psr.html * igt at kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#5978]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-1/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#9685]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-5/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#9340]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-6/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#8430]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-17/igt at kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][320] ([i915#8430]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-3/igt at kms_pm_lpsp@screens-disabled.html * igt at kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][321] -> [SKIP][322] ([i915#12916]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-7/igt at kms_pm_rpm@dpms-lpsp.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-2/igt at kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][323] ([i915#9519]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-17/igt at kms_pm_rpm@dpms-lpsp.html * igt at kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][324] -> [SKIP][325] ([i915#9519]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-7/igt at kms_pm_rpm@dpms-non-lpsp.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-8/igt at kms_pm_rpm@dpms-non-lpsp.html * igt at kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#9519]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-10/igt at kms_pm_rpm@modeset-lpsp-stress.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][327] ([i915#9519]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-3/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_prime@basic-modeset-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][328] ([i915#6524]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_prime@basic-modeset-hybrid.html - shard-dg1: NOTRUN -> [SKIP][329] ([i915#6524]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-17/igt at kms_prime@basic-modeset-hybrid.html * igt at kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#6524]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-5/igt at kms_prime@d3hot.html * igt at kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][331] ([i915#11520]) +7 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-snb2/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][332] ([i915#11520]) +7 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-4/igt at kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][333] ([i915#11520]) +8 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-9/igt at kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#11520]) +3 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][335] ([i915#11520]) +12 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk2/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][336] ([i915#12316]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-2/igt at kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][337] ([i915#11520]) +10 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-17/igt at kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#11520]) +13 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-10/igt at kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#9683]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-6/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-p010: - shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#9683]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_psr2_su@page_flip-p010.html * igt at kms_psr@fbc-psr2-basic: - shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#9732]) +7 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_psr@fbc-psr2-basic.html * igt at kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#9688]) +7 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-8/igt at kms_psr@fbc-psr2-primary-render.html * igt at kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][343] ([i915#1072] / [i915#9732]) +24 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-13/igt at kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt at kms_psr@psr2-primary-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#9732]) +19 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-4/igt at kms_psr@psr2-primary-mmap-cpu.html * igt at kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +30 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-10/igt at kms_psr@psr2-primary-mmap-gtt.html * igt at kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][346] +559 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk2/igt at kms_psr@psr2-sprite-plane-onoff.html * igt at kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#1072] / [i915#9732]) +22 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-3/igt at kms_psr@psr2-suspend.html * igt at kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][348] ([i915#9685]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-12/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][349] ([i915#9685]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-7/igt at kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][350] ([i915#9685]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][351] ([i915#5289]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-17/igt at kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt at kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][352] ([i915#5289]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-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-dg2: NOTRUN -> [SKIP][353] ([i915#12755] / [i915#5190]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-8/igt at kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt at kms_rotation_crc@sprite-rotation-270: - shard-snb: NOTRUN -> [SKIP][354] +390 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-snb5/igt at kms_rotation_crc@sprite-rotation-270.html * igt at kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#12755]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-6/igt at kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt at kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][356] ([i915#3555]) +4 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-10/igt at kms_scaling_modes@scaling-mode-full.html * igt at kms_setmode@invalid-clone-single-crtc-stealing: - shard-mtlp: NOTRUN -> [SKIP][357] ([i915#3555] / [i915#8809]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-4/igt at kms_setmode@invalid-clone-single-crtc-stealing.html * igt at kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#8623]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-8/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][359] ([i915#12276]) +1 other test incomplete [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk5/igt at kms_vblank@ts-continuation-dpms-suspend at pipe-a-hdmi-a-2.html * igt at kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][360] ([i915#3555] / [i915#9906]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-7/igt at kms_vrr@negative-basic.html - shard-rkl: NOTRUN -> [SKIP][361] ([i915#3555] / [i915#9906]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-1/igt at kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][362] ([i915#3555] / [i915#9906]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-12/igt at kms_vrr@negative-basic.html - shard-tglu: NOTRUN -> [SKIP][363] ([i915#3555] / [i915#9906]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-7/igt at kms_vrr@negative-basic.html * igt at kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#9906]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-2/igt at kms_vrr@seamless-rr-switch-drrs.html * igt at kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#9906]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-3/igt at kms_vrr@seamless-rr-switch-virtual.html * igt at kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][366] ([i915#9906]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-8/igt at kms_vrr@seamless-rr-switch-vrr.html * igt at kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#2437]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-10/igt at kms_writeback@writeback-check-output.html * igt at kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][368] ([i915#2437] / [i915#9412]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-1/igt at kms_writeback@writeback-check-output-xrgb2101010.html - shard-glk: NOTRUN -> [SKIP][369] ([i915#2437]) +2 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk9/igt at kms_writeback@writeback-check-output-xrgb2101010.html * igt at perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#7387]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-3/igt at perf@global-sseu-config.html * igt at perf_pmu@busy-double-start at vecs1: - shard-dg2: NOTRUN -> [FAIL][371] ([i915#4349]) +4 other tests fail [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-2/igt at perf_pmu@busy-double-start at vecs1.html * igt at perf_pmu@busy-idle at ccs0: - shard-mtlp: [PASS][372] -> [FAIL][373] ([i915#4349]) +5 other tests fail [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-2/igt at perf_pmu@busy-idle at ccs0.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-4/igt at perf_pmu@busy-idle at ccs0.html * igt at perf_pmu@busy-idle at vcs0: - shard-dg1: NOTRUN -> [FAIL][374] ([i915#4349]) +5 other tests fail [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-18/igt at perf_pmu@busy-idle at vcs0.html * igt at perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][375] ([i915#8850]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-4/igt at perf_pmu@cpu-hotplug.html * igt at perf_pmu@frequency at gt0: - shard-dg2: NOTRUN -> [FAIL][376] ([i915#12549] / [i915#6806]) +1 other test fail [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-8/igt at perf_pmu@frequency at gt0.html * igt at perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#8516]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-8/igt at perf_pmu@rc6-all-gts.html * igt at perf_pmu@rc6 at other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][378] ([i915#8516]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-5/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-dg1: NOTRUN -> [SKIP][379] ([i915#8516]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-18/igt at perf_pmu@rc6 at other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][380] ([i915#8516]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-3/igt at perf_pmu@rc6 at other-idle-gt0.html * igt at prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][381] ([i915#3708] / [i915#4077]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-8/igt at prime_vgem@coherency-gtt.html * igt at prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][382] ([i915#3708]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-1/igt at prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][383] ([i915#3708]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-5/igt at prime_vgem@fence-read-hang.html - shard-dg1: NOTRUN -> [SKIP][384] ([i915#3708]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-13/igt at prime_vgem@fence-read-hang.html * igt at sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][385] ([i915#9917]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-6/igt at sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][386] ([i915#9917]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-18/igt at sriov_basic@bind-unbind-vf.html * igt at sriov_basic@bind-unbind-vf at vf-4: - shard-tglu: NOTRUN -> [FAIL][387] ([i915#12910]) +9 other tests fail [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-10/igt at sriov_basic@bind-unbind-vf at vf-4.html * igt at sriov_basic@bind-unbind-vf at vf-5: - shard-mtlp: NOTRUN -> [FAIL][388] ([i915#12910]) +9 other tests fail [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-6/igt at sriov_basic@bind-unbind-vf at vf-5.html #### Possible fixes #### * igt at gem_exec_suspend@basic-s3: - shard-rkl: [DMESG-FAIL][389] ([i915#12964]) -> [PASS][390] +1 other test pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-7/igt at gem_exec_suspend@basic-s3.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-1/igt at gem_exec_suspend@basic-s3.html * igt at gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][391] -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-9/igt at gem_tiled_swapping@non-threaded.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-4/igt at gem_tiled_swapping@non-threaded.html * igt at gem_workarounds@suspend-resume-context: - shard-glk: [INCOMPLETE][393] ([i915#13356]) -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk4/igt at gem_workarounds@suspend-resume-context.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk3/igt at gem_workarounds@suspend-resume-context.html * igt at i915_pm_freq_api@freq-suspend at gt0: - shard-dg2: [INCOMPLETE][395] ([i915#12455]) -> [PASS][396] +1 other test pass [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-10/igt at i915_pm_freq_api@freq-suspend at gt0.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-1/igt at i915_pm_freq_api@freq-suspend at gt0.html * igt at i915_pm_rpm@sysfs-read: - shard-dg1: [SKIP][397] ([i915#4423]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-18/igt at i915_pm_rpm@sysfs-read.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-13/igt at i915_pm_rpm@sysfs-read.html * igt at i915_pm_rpm@system-suspend: - shard-glk: [INCOMPLETE][399] ([i915#12797]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk3/igt at i915_pm_rpm@system-suspend.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk2/igt at i915_pm_rpm@system-suspend.html * igt at i915_suspend@fence-restore-untiled: - shard-glk: [INCOMPLETE][401] ([i915#4817]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk7/igt at i915_suspend@fence-restore-untiled.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk5/igt at i915_suspend@fence-restore-untiled.html * igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][403] ([i915#12796]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk9/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk6/igt at kms_ccs@crc-primary-suspend-y-tiled-ccs at pipe-a-hdmi-a-1.html * igt at kms_color@legacy-gamma-reset: - shard-dg1: [DMESG-WARN][405] ([i915#4423]) -> [PASS][406] +4 other tests pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg1-18/igt at kms_color@legacy-gamma-reset.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg1-18/igt at kms_color@legacy-gamma-reset.html * igt at kms_cursor_crc@cursor-onscreen-256x256: - shard-rkl: [DMESG-WARN][407] ([i915#12964]) -> [PASS][408] +34 other tests pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-2/igt at kms_cursor_crc@cursor-onscreen-256x256.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-7/igt at kms_cursor_crc@cursor-onscreen-256x256.html * igt at kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [FAIL][409] ([i915#2346]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-snb7/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html - shard-mtlp: [FAIL][411] ([i915#2346]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-mtlp-5/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-mtlp-2/igt at kms_cursor_legacy@flip-vs-cursor-toggle.html * igt at kms_cursor_legacy@short-flip-before-cursor-toggle: - shard-glk: [FAIL][413] ([i915#2346]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-glk8/igt at kms_cursor_legacy@short-flip-before-cursor-toggle.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-glk6/igt at kms_cursor_legacy@short-flip-before-cursor-toggle.html * igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-vga1-hdmi-a1: - shard-snb: [FAIL][415] ([i915#11989]) -> [PASS][416] +1 other test pass [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-snb7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-vga1-hdmi-a1.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-snb7/igt at kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible at ab-vga1-hdmi-a1.html * igt at kms_flip@plain-flip-fb-recreate: - shard-rkl: [FAIL][417] ([i915#11989]) -> [PASS][418] +1 other test pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-7/igt at kms_flip@plain-flip-fb-recreate.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-7/igt at kms_flip@plain-flip-fb-recreate.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a3: - shard-dg2: [FAIL][419] ([i915#11989]) -> [PASS][420] +3 other tests pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-dg2-5/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a3.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-dg2-5/igt at kms_flip@plain-flip-fb-recreate-interruptible at a-hdmi-a3.html * igt at kms_flip@plain-flip-fb-recreate-interruptible at d-hdmi-a1: - shard-tglu: [FAIL][421] ([i915#11989]) -> [PASS][422] +4 other tests pass [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-10/igt at kms_flip@plain-flip-fb-recreate-interruptible at d-hdmi-a1.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-9/igt at kms_flip@plain-flip-fb-recreate-interruptible at d-hdmi-a1.html * igt at kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][423] ([i915#9519]) -> [PASS][424] [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-7/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-5/igt at kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt at kms_setmode@basic: - shard-tglu: [FAIL][425] ([i915#5465]) -> [PASS][426] +2 other tests pass [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-tglu-8/igt at kms_setmode@basic.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-tglu-8/igt at kms_setmode@basic.html - shard-rkl: [FAIL][427] ([i915#5465]) -> [PASS][428] [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8199/shard-rkl-5/igt at kms_setmode@basic.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/shard-rkl-2/igt at kms_setmode@basic.html * igt at perf_pmu@module-unload: - shard-snb: [ABORT][429] ([i915#11703]) -> [PASS][430] [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12467/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From peter.senna at linux.intel.com Tue Jan 21 09:30:09 2025 From: peter.senna at linux.intel.com (Peter Senna Tschudin) Date: Tue, 21 Jan 2025 10:30:09 +0100 Subject: [PATCH 1/2] lib/igt_facts: Make igt_facts_test noreturn In-Reply-To: References: <20250121063207.71737-1-pravalika.gurram@intel.com> <20250121063207.71737-2-pravalika.gurram@intel.com> <21d050fd-f30f-4759-86b7-343d3f7b1015@linux.intel.com> Message-ID: Hi Pravalika, Please see my answers below. >>> >>> diff --git a/lib/igt_facts.c b/lib/igt_facts.c index >>> 2e04a7c86..bd6742065 100644 >>> --- a/lib/igt_facts.c >>> +++ b/lib/igt_facts.c >>> @@ -748,7 +748,7 @@ static void igt_facts_test_mark_and_sweep(struct >> igt_list_head *head) >>> * >>> * Returns: bool indicating if the tests passed >>> */ >>> -void igt_facts_test(void) >>> +__noreturn void igt_facts_test(void) >> >> How did you find this? Is the compiler complaining? >> > When am fixing the check patch errors I have seen below error > > ninja: Entering directory `build' > [2/835] Compiling C object lib/libigt-igt_facts_c.a.p/igt_facts.c.o > ../lib/igt_facts.c: In function ?igt_facts_test?: > ../lib/igt_facts.c:751:6: warning: function might be candidate for attribute ?noreturn? [-Wsuggest-attribute=noreturn] > 751 | void igt_facts_test(void) > | ^~~~~~~~~~~~~~ > [6/6] Generating docs/testplan/intel-ci-tests with a custom command Is your tree clean? What command line are you using? Asking because I see no warnings when I build with: rm -rf build/ && meson build && ninja -C build > > Then have added changes. >>> { >>> const char *last_test = "Unit Testing"; >>> >>> @@ -776,4 +776,6 @@ void igt_facts_test(void) >>> /* Clean up the list and call igt_facts(). This should not crash */ >>> igt_facts_list_mark_and_sweep(&igt_facts_list_pci_gpu_head); >>> igt_facts(last_test); >>> + >>> + igt_exit(); >>> } >> Why adding igt_exit() here? >> >> How did you test this patch? >> > If we don?t explicitly specify igt_exit() I will below warning > > ninja: Entering directory `build' > [43/999] Compiling C object lib/libigt-igt_facts_c.a.p/igt_facts.c.o > ../lib/igt_facts.c: In function ?igt_facts_test?: > ../lib/igt_facts.c:779:1: warning: ?noreturn? function does return > 779 | } > | ^ > I have compiled since these check patch errors Curious with your command line to see these warning here too. Compiling only is not enough testing. Please run unit testing, and a few calls to igt_runner with facts enabled, with large test lists such as xe bat or i915 bat, and in a RIL DUT. Compare the facts before and after your changes to make sure nothing breaks. > >> Thanks, >> >> Peter From marcin.bernatowicz at linux.intel.com Tue Jan 21 09:51:28 2025 From: marcin.bernatowicz at linux.intel.com (Bernatowicz, Marcin) Date: Tue, 21 Jan 2025 10:51:28 +0100 Subject: [PATCH i-g-t v3 2/2] tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv In-Reply-To: <20250120122835.10511-3-satyanarayana.k.v.p@intel.com> References: <20250120122835.10511-1-satyanarayana.k.v.p@intel.com> <20250120122835.10511-3-satyanarayana.k.v.p@intel.com> Message-ID: <5c952476-2810-4937-ad16-397c0f2e5c17@linux.intel.com> On 1/20/2025 1:28 PM, Satyanarayana K V P wrote: > Use the kernel fault injection infrastructure to test error handling > of xe at enabling of VFs stage when executing xe_guc_ct_send_recv() > so that more code paths are tested, such as error handling and unwinding. > > Error can be injected using: > igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv > > v2: Updated guc_fail_* to enable_vfs_* > Added igt_skip_on(!igt_sriov_is_pf(fd)) to skip test when run without > enabling sriov. > > v3: Fixed documentation build error > ERROR: Missing documentation for igt at xe_fault_injection@enable-vfs-fail-xe_guc_ct_send_recv > ERROR: Unneeded documentation for igt at xe_fault_injection@guc-fail-xe_guc_ct_send_recv > > Cc: Matthew Brost > Cc: Micha? Wajdeczko > Cc: Francois Dugast > Signed-off-by: Satyanarayana K V P > --- > tests/intel/xe_fault_injection.c | 63 ++++++++++++++++++++++++++++++++ > 1 file changed, 63 insertions(+) > > diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c > index 3a0e2aa29..81ecc1131 100644 > --- a/tests/intel/xe_fault_injection.c > +++ b/tests/intel/xe_fault_injection.c > @@ -19,12 +19,14 @@ > #include "igt_sysfs.h" > #include "lib/igt_syncobj.h" > #include "lib/intel_pat.h" > +#include "lib/igt_sriov_device.h" > #include "xe/xe_ioctl.h" > #include "xe/xe_query.h" > > #define INJECT_ERRNO -ENOMEM > #define BO_ADDR 0x1a0000 > #define BO_SIZE (1024*1024) > +#define NUM_VFS 1 > > enum injection_list_action { > INJECTION_LIST_ADD, > @@ -281,6 +283,55 @@ vm_bind_fail(int fd, const char function_name[]) > igt_assert_eq(simple_vm_bind(fd, vm), 0); > } > > +static int sriov_enable_vfs(int fd, int num_vfs) > +{ > + int sysfs; > + bool ret; > + > + sysfs = igt_sysfs_open(fd); > + igt_assert_fd(sysfs); > + > + ret = __igt_sysfs_set_u32(sysfs, "device/sriov_numvfs", num_vfs); > + close(sysfs); > + > + return ret; > +} > + > +/** > + * SUBTEST: enable-vfs-fail-%s > + * Description: inject an error in function %arg[1] used when xe interacts with guc to make it fail > + * Functionality: fault > + * > + * arg[1]: > + * @xe_guc_ct_send_recv: xe_guc_ct_send_recv > + */ > + > +static void > +enable_vfs_fail(int fd, int num_vfs, const char function_name[]) > +{ > + bool autoprobe_en = 0; NIT: maybe just bool autoprobe = 0 ? > + > + ignore_faults_in_dmesg(function_name); > + injection_list_do(INJECTION_LIST_ADD, function_name); > + set_retval(function_name, INJECT_ERRNO); > + > + autoprobe_en = igt_sriov_is_driver_autoprobe_enabled(fd); > + > + if (autoprobe_en) > + igt_sriov_disable_driver_autoprobe(fd); > + > + /* igt_sriov_enable_vfs can't be used here as it is causing abort on any error. > + * Since error in this test is expected, we have written our own static function here. > + */ > + sriov_enable_vfs(fd, num_vfs); > + > + igt_assert_eq(-errno, INJECT_ERRNO); > + injection_list_do(INJECTION_LIST_REMOVE, function_name); > + > + if (autoprobe_en) > + igt_sriov_enable_driver_autoprobe(fd); > +} > + > igt_main > { > int fd; > @@ -319,6 +370,10 @@ igt_main > { "xe_vma_ops_alloc" }, > { } > }; > + const struct section enable_vfs_fail_functions[] = { > + { "xe_guc_ct_send_recv" }, > + { } > + }; > > igt_fixture { > igt_require(fail_function_injection_enabled()); > @@ -335,6 +390,14 @@ igt_main > igt_subtest_f("vm-bind-fail-%s", s->name) > vm_bind_fail(fd, s->name); > > + for (const struct section *s = enable_vfs_fail_functions; s->name; s++) > + igt_subtest_f("enable-vfs-fail-%s", s->name) { > + /* Skip the test if not running with SRIOV > + */ > + igt_skip_on(!igt_sriov_is_pf(fd)); NIT: Using igt_require without negation improves readability igt_require(igt_sriov_is_pf(fd)); > + enable_vfs_fail(fd, NUM_VFS, s->name); > + } > + > igt_fixture { > xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_UNBIND); > } With small nits, Reviewed-by: Marcin Bernatowicz From patchwork at emeril.freedesktop.org Tue Jan 21 10:48:25 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 21 Jan 2025 10:48:25 -0000 Subject: =?utf-8?q?=E2=9C=93_Xe=2ECI=2EBAT=3A_success_for_Make_igt=5Ffacts=5Ftest_nor?= =?utf-8?q?eturn_and_cleanup?= In-Reply-To: <20250121063207.71737-1-pravalika.gurram@intel.com> References: <20250121063207.71737-1-pravalika.gurram@intel.com> Message-ID: <173745650542.2564997.6052121051058954154@b555e5b46a47> == Series Details == Series: Make igt_facts_test noreturn and cleanup URL : https://patchwork.freedesktop.org/series/143776/ State : success == Summary == CI Bug Log - changes from XEIGT_8201_BAT -> XEIGTPW_12472_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12472_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt at kms_pipe_crc_basic@hang-read-crc: - bat-bmg-1: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#877]) +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8201/bat-bmg-1/igt at kms_pipe_crc_basic@hang-read-crc.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12472/bat-bmg-1/igt at kms_pipe_crc_basic@hang-read-crc.html [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 Build changes ------------- * IGT: IGT_8201 -> IGTPW_12472 IGTPW_12472: d00a9eb6fbffafc283fff85eab99cf7352de3c54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8201: dcc73646ce05a91bb4537e50ee6fa7ac5e8ff4ed @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2517-e48abf2c0aa4813a4629aeebd0547eb86f0f1a91: e48abf2c0aa4813a4629aeebd0547eb86f0f1a91 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12472/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From patchwork at emeril.freedesktop.org Tue Jan 21 11:00:55 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 21 Jan 2025 11:00:55 -0000 Subject: =?utf-8?q?=E2=9C=97_Xe=2ECI=2EFull=3A_failure_for_tests/amdgpu=3A_find_PCI_b?= =?utf-8?q?us=2C_device_and_function_and_use_it?= In-Reply-To: <20250121044025.167761-1-vitaly.prosyak@amd.com> References: <20250121044025.167761-1-vitaly.prosyak@amd.com> Message-ID: <173745725559.2567592.10459803329579465333@b555e5b46a47> == Series Details == Series: tests/amdgpu: find PCI bus, device and function and use it URL : https://patchwork.freedesktop.org/series/143766/ State : failure == Summary == CI Bug Log - changes from XEIGT_8200_full -> XEIGTPW_12471_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12471_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12471_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_12471_full: ### IGT changes ### #### Possible regressions #### * igt at core_setmaster@master-drop-set-user: - shard-bmg: [PASS][1] -> [FAIL][2] +2 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-3/igt at core_setmaster@master-drop-set-user.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at core_setmaster@master-drop-set-user.html * igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-valid-mode: - shard-bmg: [PASS][3] -> [INCOMPLETE][4] +3 other tests incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-3/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-valid-mode.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling at pipe-a-valid-mode.html * igt at kms_hdr@bpc-switch at pipe-a-dp-4: - shard-dg2-set2: [PASS][5] -> [FAIL][6] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-433/igt at kms_hdr@bpc-switch at pipe-a-dp-4.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_hdr@bpc-switch at pipe-a-dp-4.html * igt at kms_plane_lowres@tiling-x at pipe-a-dp-4: - shard-dg2-set2: [PASS][7] -> [INCOMPLETE][8] +5 other tests incomplete [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-434/igt at kms_plane_lowres@tiling-x at pipe-a-dp-4.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-436/igt at kms_plane_lowres@tiling-x at pipe-a-dp-4.html * igt at xe_exec_threads@threads-hang-shared-vm-basic: - shard-lnl: [PASS][9] -> [ABORT][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-4/igt at xe_exec_threads@threads-hang-shared-vm-basic.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-6/igt at xe_exec_threads@threads-hang-shared-vm-basic.html Known issues ------------ Here are the changes found in XEIGTPW_12471_full that come from known issues: ### IGT changes ### #### Issues hit #### * 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_8200/shard-dg2-435/igt at core_setmaster@master-drop-set-user.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at core_setmaster@master-drop-set-user.html * igt at kms_addfb_basic@too-wide: - shard-dg2-set2: [PASS][13] -> [SKIP][14] ([Intel XE#2423] / [i915#2575]) +10 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-436/igt at kms_addfb_basic@too-wide.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_addfb_basic@too-wide.html * igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-2-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#3767]) +15 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-432/igt at kms_async_flips@async-flip-with-page-flip-events-atomic at pipe-d-hdmi-a-2-4-rc-ccs-cc.html * igt at kms_atomic_transition@plane-all-modeset-transition: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#3279]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-7/igt at kms_atomic_transition@plane-all-modeset-transition.html * igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3658]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-1/igt at kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt at kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#316]) +5 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-463/igt at kms_big_fb@linear-16bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1407]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-2/igt at kms_big_fb@linear-16bpp-rotate-270.html * igt at kms_big_fb@y-tiled-32bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +5 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-6/igt at kms_big_fb@y-tiled-32bpp-rotate-180.html * igt at kms_big_fb@y-tiled-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-1/igt at kms_big_fb@y-tiled-64bpp-rotate-270.html * igt at kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2136]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/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-16bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +6 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-432/igt at kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt at kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#610]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-436/igt at kms_big_fb@yf-tiled-addfb-size-overflow.html * igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#367]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-432/igt at kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2191]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-4/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2907]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-436/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2669]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-7/igt at kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs at pipe-b-edp-1.html * igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +4 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-6/igt at kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#3432]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs at pipe-d-hdmi-a-3.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs at pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#455] / [Intel XE#787]) +46 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-432/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs at pipe-d-dp-2.html * igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#787]) +202 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-434/igt at kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs at pipe-b-hdmi-a-6.html * igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][35] -> [DMESG-WARN][36] ([Intel XE#1727]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-435/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_12471/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-dp-4: - shard-dg2-set2: [PASS][37] -> [DMESG-WARN][38] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-435/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-4.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc at pipe-d-dp-4.html * igt at kms_cdclk@mode-transition at pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#314]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_cdclk@mode-transition at pipe-d-dp-4.html * igt at kms_chamelium_color@ctm-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#306]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-432/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_frames@hdmi-crc-fast: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2252]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at kms_chamelium_frames@hdmi-crc-fast.html * igt at kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#373]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_chamelium_hpd@hdmi-hpd.html - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-6/igt at kms_chamelium_hpd@hdmi-hpd.html * igt at kms_content_protection@atomic-dpms at pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][44] ([Intel XE#1178]) +2 other tests fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-432/igt at kms_content_protection@atomic-dpms at pipe-a-dp-2.html * igt at kms_content_protection@content-type-change: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#3278]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-6/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#307]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-436/igt at kms_content_protection@dp-mst-lic-type-1.html * igt at kms_content_protection@lic-type-0 at pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][47] ([Intel XE#1178]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at kms_content_protection@lic-type-0 at pipe-a-dp-2.html * igt at kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#308]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_cursor_crc@cursor-onscreen-512x170.html * igt at kms_cursor_crc@cursor-rapid-movement-32x32: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1424]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-5/igt at kms_cursor_crc@cursor-rapid-movement-32x32.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#2321]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-8/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#309]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-7/igt at kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#323]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-433/igt at kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt at kms_dirtyfb@default-dirtyfb-ioctl: - shard-dg2-set2: [PASS][53] -> [SKIP][54] ([Intel XE#2136]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-433/igt at kms_dirtyfb@default-dirtyfb-ioctl.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_dirtyfb@default-dirtyfb-ioctl.html * igt at kms_dsc@dsc-fractional-bpp-with-bpc: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#2244]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-8/igt at kms_dsc@dsc-fractional-bpp-with-bpc.html * igt at kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#776]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-433/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#703]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-463/igt at kms_feature_discovery@display-3x.html * igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][58] -> [FAIL][59] ([Intel XE#301]) +4 other tests fail [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-434/igt at kms_flip@2x-flip-vs-expired-vblank-interruptible at cd-hdmi-a6-dp4.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/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 ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][60] ([Intel XE#301]) +11 other tests fail [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-433/igt at kms_flip@2x-flip-vs-expired-vblank at ab-hdmi-a6-dp4.html * igt at kms_flip@2x-flip-vs-modeset: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1421]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-3/igt at kms_flip@2x-flip-vs-modeset.html * igt at kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][62] -> [FAIL][63] ([Intel XE#3321]) +1 other test fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-2/igt at kms_flip@flip-vs-expired-vblank-interruptible.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at kms_flip@flip-vs-expired-vblank-interruptible.html * igt at kms_flip@flip-vs-suspend at b-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][64] ([Intel XE#2597]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-5/igt at kms_flip@flip-vs-suspend at b-hdmi-a3.html * igt at kms_flip@plain-flip-fb-recreate at c-dp2: - shard-bmg: [PASS][65] -> [FAIL][66] ([Intel XE#2882]) +3 other tests fail [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-1/igt at kms_flip@plain-flip-fb-recreate at c-dp2.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-7/igt at kms_flip@plain-flip-fb-recreate at c-dp2.html * igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html - shard-dg2-set2: [PASS][69] -> [SKIP][70] ([Intel XE#2136] / [Intel XE#2351]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-436/igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-8/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-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1401]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-4/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1397] / [Intel XE#1745]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1397]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-8/igt at kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling at pipe-a-default-mode.html * igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling at pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2293]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-5/igt at kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling at pipe-a-valid-mode.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#651]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-4/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2311]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#651]) +24 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#658]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-433/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#656]) +17 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-3/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2313]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#653]) +29 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-434/igt at kms_frontbuffer_tracking@psr-slowdraw.html * igt at kms_hdr@invalid-hdr: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#455]) +19 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-433/igt at kms_hdr@invalid-hdr.html * igt at kms_joiner@basic-big-joiner: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#346]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-1/igt at kms_joiner@basic-big-joiner.html * igt at kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#2927]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-435/igt at kms_joiner@invalid-modeset-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#2927]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-5/igt at kms_joiner@invalid-modeset-ultra-joiner.html * igt at kms_plane_alpha_blend@coverage-vs-premult-vs-constant: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html * igt at kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#2493]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-8/igt at kms_plane_multiple@tiling-y.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2763]) +11 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-a.html - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2763]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/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-modifiers at pipe-b: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#2763]) +7 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-1/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-b.html * igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers at pipe-d.html * igt at kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#870]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-434/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_dc@dc5-dpms: - shard-lnl: NOTRUN -> [FAIL][94] ([Intel XE#718]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-1/igt at kms_pm_dc@dc5-dpms.html * igt at kms_pm_dc@dc6-psr: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#1129]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_pm_dc@dc6-psr.html * igt at kms_pm_dc@deep-pkgc: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#908]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-432/igt at kms_pm_dc@deep-pkgc.html * igt at kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1439] / [Intel XE#3141]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-6/igt at kms_pm_rpm@modeset-non-lpsp.html * igt at kms_properties@connector-properties-legacy: - shard-bmg: [PASS][98] -> [SKIP][99] ([Intel XE#3007]) +10 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-2/igt at kms_properties@connector-properties-legacy.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_properties@connector-properties-legacy.html * igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#1489]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-434/igt at kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2893]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-1/igt at kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt at kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#1122]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-433/igt at kms_psr2_su@page_flip-nv12.html * igt at kms_psr@fbc-pr-dpms: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1406]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-7/igt at kms_psr@fbc-pr-dpms.html * igt at kms_psr@psr2-basic: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-434/igt at kms_psr@psr2-basic.html * igt at kms_psr@psr2-no-drrs: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2136] / [Intel XE#2231]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_psr@psr2-no-drrs.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2939]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-463/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#3414]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-434/igt at kms_rotation_crc@bad-tiling.html * igt at kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#3414] / [Intel XE#3904]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-5/igt at kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt at kms_vrr@cmrr at pipe-a-edp-1: - shard-lnl: [PASS][109] -> [FAIL][110] ([Intel XE#2159]) +1 other test fail [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-8/igt at kms_vrr@cmrr at pipe-a-edp-1.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-4/igt at kms_vrr@cmrr at pipe-a-edp-1.html * igt at kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2168]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-435/igt at kms_vrr@lobf.html * igt at kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1499]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-1/igt at kms_vrr@negative-basic.html * igt at kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#756]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-434/igt at kms_writeback@writeback-fb-id-xrgb2101010.html * igt at xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at xe_compute_preempt@compute-preempt-many.html * igt at xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#1123]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-435/igt at xe_copy_basic@mem-copy-linear-0x369.html * igt at xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2905]) +9 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-436/igt at xe_eudebug@basic-close.html - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#2905]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-7/igt at xe_eudebug@basic-close.html * igt at xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#3889]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-1/igt at xe_eudebug@basic-vm-access-parameters-userptr.html * igt at xe_eudebug_online@breakpoint-many-sessions-tiles: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2905]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-5/igt at xe_eudebug_online@breakpoint-many-sessions-tiles.html * igt at xe_exec_basic@many-basic-defer-mmap: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1130]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at xe_exec_basic@many-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#1392]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html * igt at xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [PASS][122] -> [SKIP][123] ([Intel XE#1392]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-434/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-432/igt at xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt at xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1392]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-6/igt at xe_exec_basic@multigpu-once-userptr-invalidate.html * igt at xe_exec_basic@once-userptr-invalidate-race: - shard-dg2-set2: [PASS][125] -> [SKIP][126] ([Intel XE#1130]) +16 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-434/igt at xe_exec_basic@once-userptr-invalidate-race.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at xe_exec_basic@once-userptr-invalidate-race.html * igt at xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#288]) +29 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-436/igt at xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt at xe_mmap@small-bar: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#512]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-5/igt at xe_mmap@small-bar.html * igt at xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-432/igt at xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt at xe_pat@display-vs-wb-transient: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1337]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-435/igt at xe_pat@display-vs-wb-transient.html * igt at xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2284]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-1/igt at xe_pm@d3cold-mmap-system.html * igt at xe_pm@s2idle-multiple-execs: - shard-dg2-set2: [PASS][132] -> [ABORT][133] ([Intel XE#1358]) +1 other test abort [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-435/igt at xe_pm@s2idle-multiple-execs.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-432/igt at xe_pm@s2idle-multiple-execs.html * igt at xe_pm@s4-mocs: - shard-lnl: [PASS][134] -> [ABORT][135] ([Intel XE#1358] / [Intel XE#1794]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-1/igt at xe_pm@s4-mocs.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-2/igt at xe_pm@s4-mocs.html * igt at xe_query@multigpu-query-invalid-size: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#944]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-8/igt at xe_query@multigpu-query-invalid-size.html * igt at xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#944]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-436/igt at xe_query@multigpu-query-topology.html * igt at xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#3342]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-433/igt at xe_sriov_flr@flr-each-isolation.html * igt at xe_sysfs_defaults@engine-defaults: - shard-bmg: [PASS][139] -> [SKIP][140] ([Intel XE#1130]) +16 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-1/igt at xe_sysfs_defaults@engine-defaults.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at xe_sysfs_defaults@engine-defaults.html #### Possible fixes #### * igt at core_hotunplug@hotrebind: - shard-bmg: [SKIP][141] ([Intel XE#1885]) -> [PASS][142] +4 other tests pass [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at core_hotunplug@hotrebind.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at core_hotunplug@hotrebind.html * igt at fbdev@unaligned-write: - shard-bmg: [SKIP][143] ([Intel XE#2134]) -> [PASS][144] [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at fbdev@unaligned-write.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-5/igt at fbdev@unaligned-write.html * igt at kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][145] ([Intel XE#2423]) -> [PASS][146] +122 other tests pass [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_addfb_basic@bad-pitch-999.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-7/igt at kms_addfb_basic@bad-pitch-999.html * igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear: - shard-lnl: [FAIL][147] ([Intel XE#911]) -> [PASS][148] +3 other tests pass [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-3/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-4/igt at kms_async_flips@async-flip-with-page-flip-events at pipe-a-edp-1-linear.html * igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: [FAIL][149] ([Intel XE#3908]) -> [PASS][150] +1 other test pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-8/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-5/igt at kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt at kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [SKIP][151] ([Intel XE#2136]) -> [PASS][152] +28 other tests pass [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_big_fb@linear-16bpp-rotate-180.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at kms_big_fb@linear-16bpp-rotate-180.html * igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][153] ([Intel XE#877]) -> [PASS][154] [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-4/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-7/igt at kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt at kms_flip@absolute-wf_vblank-interruptible: - shard-dg2-set2: [INCOMPLETE][155] ([Intel XE#2049]) -> [PASS][156] +1 other test pass [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-463/igt at kms_flip@absolute-wf_vblank-interruptible.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-436/igt at kms_flip@absolute-wf_vblank-interruptible.html * igt at kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][157] ([Intel XE#886]) -> [PASS][158] +3 other tests pass [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-3/igt at kms_flip@flip-vs-absolute-wf_vblank.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-6/igt at kms_flip@flip-vs-absolute-wf_vblank.html * igt at kms_flip@flip-vs-expired-vblank at a-dp2: - shard-bmg: [FAIL][159] ([Intel XE#3321]) -> [PASS][160] +6 other tests pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-1/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at kms_flip@flip-vs-expired-vblank at a-dp2.html * igt at kms_flip@flip-vs-expired-vblank at a-dp4: - shard-dg2-set2: [FAIL][161] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][162] +2 other tests pass [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at a-dp4.html * igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6: - shard-dg2-set2: [FAIL][163] ([Intel XE#301]) -> [PASS][164] +3 other tests pass [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-466/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-434/igt at kms_flip@flip-vs-expired-vblank at a-hdmi-a6.html * igt at kms_flip@flip-vs-rmfb at c-dp4: - shard-dg2-set2: [INCOMPLETE][165] -> [PASS][166] +1 other test pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-434/igt at kms_flip@flip-vs-rmfb at c-dp4.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-436/igt at kms_flip@flip-vs-rmfb at c-dp4.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][167] ([Intel XE#2136]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-466/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-434/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html * igt at kms_plane_alpha_blend@constant-alpha-mid: - shard-bmg: [INCOMPLETE][169] -> [PASS][170] +1 other test pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-8/igt at kms_plane_alpha_blend@constant-alpha-mid.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at kms_plane_alpha_blend@constant-alpha-mid.html * igt at kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [SKIP][171] ([Intel XE#2446]) -> [PASS][172] +2 other tests pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_pm_rpm@basic-pci-d3-state.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at kms_pm_rpm@basic-pci-d3-state.html * igt at xe_exec_balancer@no-exec-parallel-userptr-invalidate-race: - shard-dg2-set2: [SKIP][173] ([Intel XE#1130]) -> [PASS][174] +3 other tests pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-466/igt at xe_exec_balancer@no-exec-parallel-userptr-invalidate-race.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-436/igt at xe_exec_balancer@no-exec-parallel-userptr-invalidate-race.html * igt at xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [SKIP][175] ([Intel XE#1130]) -> [PASS][176] +286 other tests pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at xe_exec_basic@many-bindexecqueue-rebind.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at xe_exec_basic@many-bindexecqueue-rebind.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [SKIP][177] ([Intel XE#1392]) -> [PASS][178] +2 other tests pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-432/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-435/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html * igt at xe_live_ktest@xe_migrate: - shard-bmg: [SKIP][179] ([Intel XE#1192]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-2/igt at xe_live_ktest@xe_migrate.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at xe_live_ktest@xe_migrate.html * igt at xe_module_load@load: - shard-lnl: ([SKIP][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [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]) ([Intel XE#378]) -> ([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], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-4/igt at xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-6/igt at xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-6/igt at xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-6/igt at xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-4/igt at xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-4/igt at xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-4/igt at xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-4/igt at xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-8/igt at xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-8/igt at xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-8/igt at xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-8/igt at xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-7/igt at xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-7/igt at xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-7/igt at xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-5/igt at xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-5/igt at xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-3/igt at xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-3/igt at xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-3/igt at xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-5/igt at xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-1/igt at xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-1/igt at xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-1/igt at xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-lnl-1/igt at xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-1/igt at xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-8/igt at xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-4/igt at xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-5/igt at xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-4/igt at xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-7/igt at xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-8/igt at xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-1/igt at xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-6/igt at xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-7/igt at xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-7/igt at xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-2/igt at xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-3/igt at xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-3/igt at xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-7/igt at xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-6/igt at xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-5/igt at xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-5/igt at xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-3/igt at xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-4/igt at xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-1/igt at xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-6/igt at xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-8/igt at xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-lnl-8/igt at xe_module_load@load.html * igt at xe_module_load@reload: - shard-bmg: [FAIL][230] ([Intel XE#3546]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at xe_module_load@reload.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-7/igt at xe_module_load@reload.html * igt at xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [ABORT][232] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][233] +2 other tests pass [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-432/igt at xe_pm@s2idle-vm-bind-unbind-all.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-433/igt at xe_pm@s2idle-vm-bind-unbind-all.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][234] ([Intel XE#2423]) -> [SKIP][235] ([Intel XE#2233]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][236] ([Intel XE#2423]) -> [SKIP][237] ([Intel XE#2370]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-5/igt at kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt at kms_big_fb@4-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][238] ([Intel XE#2136]) -> [SKIP][239] ([Intel XE#2327]) +4 other tests skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at kms_big_fb@4-tiled-64bpp-rotate-90.html * igt at kms_big_fb@4-tiled-8bpp-rotate-90: - shard-bmg: [SKIP][240] ([Intel XE#2327]) -> [SKIP][241] ([Intel XE#2136] / [Intel XE#2231]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-4/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html - shard-dg2-set2: [SKIP][242] ([Intel XE#316]) -> [SKIP][243] ([Intel XE#2136] / [Intel XE#2351]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-435/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_big_fb@4-tiled-8bpp-rotate-90.html * igt at kms_big_fb@y-tiled-addfb: - shard-bmg: [SKIP][244] ([Intel XE#2136]) -> [SKIP][245] ([Intel XE#2328]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at kms_big_fb@y-tiled-addfb.html * igt at kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][246] ([Intel XE#2136]) -> [SKIP][247] ([Intel XE#610]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_big_fb@y-tiled-addfb-size-overflow.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at kms_big_fb@y-tiled-addfb-size-overflow.html * igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: [SKIP][248] ([Intel XE#1124]) -> [SKIP][249] ([Intel XE#2136]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-435/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [SKIP][250] ([Intel XE#2136]) -> [SKIP][251] ([Intel XE#1124]) +9 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-5/igt at kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-bmg: [SKIP][252] ([Intel XE#2423]) -> [SKIP][253] ([Intel XE#2314] / [Intel XE#2894]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt at kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][254] ([Intel XE#2423]) -> [SKIP][255] ([Intel XE#367]) +4 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at kms_bw@linear-tiling-1-displays-2560x1440p.html * igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][256] ([Intel XE#2887]) -> [SKIP][257] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-5/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][258] ([Intel XE#2136]) -> [SKIP][259] ([Intel XE#2887]) +20 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt at kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][260] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][261] ([Intel XE#2136]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-434/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html * igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][262] ([Intel XE#2136]) -> [SKIP][263] ([Intel XE#3432]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][264] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][265] ([Intel XE#3432]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-1/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html - shard-dg2-set2: [SKIP][266] ([Intel XE#2136]) -> [SKIP][267] ([Intel XE#455] / [Intel XE#787]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-466/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-432/igt at kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][268] ([Intel XE#2136]) -> [SKIP][269] ([Intel XE#2652] / [Intel XE#787]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs: - shard-dg2-set2: [SKIP][270] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][271] ([Intel XE#2136] / [Intel XE#2351]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-435/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html * igt at kms_cdclk@mode-transition: - shard-bmg: [SKIP][272] ([Intel XE#2136]) -> [SKIP][273] ([Intel XE#2724]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_cdclk@mode-transition.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at kms_cdclk@mode-transition.html * igt at kms_chamelium_color@ctm-0-25: - shard-bmg: [SKIP][274] ([Intel XE#2423]) -> [SKIP][275] ([Intel XE#2325]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_chamelium_color@ctm-0-25.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at kms_chamelium_color@ctm-0-25.html * igt at kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-bmg: [SKIP][276] ([Intel XE#3007]) -> [SKIP][277] ([Intel XE#2252]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-1/igt at kms_chamelium_edid@dp-edid-stress-resolution-4k.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-5/igt at kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt at kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][278] ([Intel XE#2423]) -> [SKIP][279] ([Intel XE#2252]) +14 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_chamelium_hpd@common-hpd-after-suspend.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-1/igt at kms_chamelium_hpd@common-hpd-after-suspend.html * igt at kms_content_protection@content-type-change: - shard-bmg: [SKIP][280] ([Intel XE#2423]) -> [SKIP][281] ([Intel XE#2341]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_content_protection@content-type-change.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at kms_content_protection@content-type-change.html * igt at kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][282] ([Intel XE#2423]) -> [SKIP][283] ([Intel XE#2390]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_content_protection@dp-mst-type-1.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at kms_content_protection@dp-mst-type-1.html * igt at kms_content_protection@lic-type-0: - shard-bmg: [SKIP][284] ([Intel XE#2423]) -> [FAIL][285] ([Intel XE#1178]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_content_protection@lic-type-0.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at kms_content_protection@lic-type-0.html * igt at kms_cursor_crc@cursor-offscreen-max-size: - shard-bmg: [SKIP][286] ([Intel XE#2320]) -> [SKIP][287] ([Intel XE#3007]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-4/igt at kms_cursor_crc@cursor-offscreen-max-size.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_cursor_crc@cursor-offscreen-max-size.html * igt at kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: [SKIP][288] ([Intel XE#2423]) -> [SKIP][289] ([Intel XE#2320]) +6 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-256x85.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at kms_cursor_crc@cursor-sliding-256x85.html * igt at kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][290] ([Intel XE#2423]) -> [SKIP][291] ([Intel XE#2321]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x512.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-7/igt at kms_cursor_crc@cursor-sliding-512x512.html * igt at kms_cursor_edge_walk@128x128-top-edge: - shard-bmg: [SKIP][292] ([Intel XE#2423]) -> [SKIP][293] ([Intel XE#3007]) +3 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_cursor_edge_walk@128x128-top-edge.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_cursor_edge_walk@128x128-top-edge.html * igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-bmg: [SKIP][294] ([Intel XE#2423]) -> [SKIP][295] ([Intel XE#2286]) +2 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt at kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][296] ([Intel XE#2136]) -> [SKIP][297] ([Intel XE#1508]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at kms_dirtyfb@psr-dirtyfb-ioctl.html * igt at kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][298] ([Intel XE#2423]) -> [SKIP][299] ([Intel XE#2323]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_display_modes@mst-extended-mode-negative.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at kms_display_modes@mst-extended-mode-negative.html * igt at kms_dsc@dsc-basic: - shard-bmg: [SKIP][300] ([Intel XE#2136]) -> [SKIP][301] ([Intel XE#2244]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_dsc@dsc-basic.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at kms_dsc@dsc-basic.html * igt at kms_dsc@dsc-with-output-formats: - shard-bmg: [SKIP][302] ([Intel XE#2244]) -> [SKIP][303] ([Intel XE#2136] / [Intel XE#2231]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-5/igt at kms_dsc@dsc-with-output-formats.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_dsc@dsc-with-output-formats.html - shard-dg2-set2: [SKIP][304] ([Intel XE#455]) -> [SKIP][305] ([Intel XE#2136]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-433/igt at kms_dsc@dsc-with-output-formats.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_dsc@dsc-with-output-formats.html * igt at kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][306] ([Intel XE#2136]) -> [SKIP][307] ([Intel XE#776]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_fbcon_fbt@psr-suspend.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at kms_fbcon_fbt@psr-suspend.html * igt at kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][308] ([Intel XE#2423]) -> [SKIP][309] ([Intel XE#2375]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_feature_discovery@dp-mst.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at kms_feature_discovery@dp-mst.html * igt at kms_feature_discovery@psr1: - shard-bmg: [SKIP][310] ([Intel XE#2423]) -> [SKIP][311] ([Intel XE#2374]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_feature_discovery@psr1.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_feature_discovery@psr1.html * igt at kms_flip@flip-vs-suspend: - shard-bmg: [SKIP][312] ([Intel XE#2423]) -> [INCOMPLETE][313] ([Intel XE#2597]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_flip@flip-vs-suspend.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-5/igt at kms_flip@flip-vs-suspend.html * igt at kms_flip@plain-flip-fb-recreate at a-dp2: - shard-bmg: [FAIL][314] ([Intel XE#2882]) -> [FAIL][315] ([Intel XE#3098]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-1/igt at kms_flip@plain-flip-fb-recreate at a-dp2.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-7/igt at kms_flip@plain-flip-fb-recreate at a-dp2.html * igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-bmg: [SKIP][316] ([Intel XE#2136]) -> [SKIP][317] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: [SKIP][318] ([Intel XE#2136]) -> [SKIP][319] ([Intel XE#2311]) +40 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][320] ([Intel XE#651]) -> [SKIP][321] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-434/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][322] ([Intel XE#2311]) -> [SKIP][323] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-3/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][324] ([Intel XE#651]) -> [SKIP][325] ([Intel XE#2136]) +2 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-463/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][326] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][327] ([Intel XE#2333]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-1/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][328] ([Intel XE#2136]) -> [FAIL][329] ([Intel XE#2333]) +25 other tests fail [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][330] ([Intel XE#2313]) -> [SKIP][331] ([Intel XE#2136] / [Intel XE#2231]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-4/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][332] ([Intel XE#653]) -> [SKIP][333] ([Intel XE#2136] / [Intel XE#2351]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][334] ([Intel XE#2136]) -> [SKIP][335] ([Intel XE#653]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-466/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-432/igt at kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][336] ([Intel XE#2136]) -> [SKIP][337] ([Intel XE#2313]) +46 other tests skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-5/igt at kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt at kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][338] ([Intel XE#2136]) -> [SKIP][339] ([Intel XE#2352]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-1/igt at kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][340] ([Intel XE#2136]) -> [SKIP][341] ([Intel XE#2136] / [Intel XE#2231]) +8 other tests skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][342] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][343] ([Intel XE#2313]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-1/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-5/igt at kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html * igt at kms_joiner@basic-ultra-joiner: - shard-bmg: [SKIP][344] ([Intel XE#2136]) -> [SKIP][345] ([Intel XE#2927]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_joiner@basic-ultra-joiner.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_joiner@basic-ultra-joiner.html * igt at kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][346] ([Intel XE#2136]) -> [SKIP][347] ([Intel XE#346]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_joiner@invalid-modeset-big-joiner.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-7/igt at kms_joiner@invalid-modeset-big-joiner.html * igt at kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][348] ([Intel XE#2423]) -> [SKIP][349] ([Intel XE#2393]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_plane_lowres@tiling-y.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_plane_lowres@tiling-y.html * igt at kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][350] ([Intel XE#2423]) -> [SKIP][351] ([Intel XE#2493]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_plane_multiple@tiling-yf.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at kms_plane_multiple@tiling-yf.html * igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][352] ([Intel XE#2423]) -> [SKIP][353] ([Intel XE#2763]) +2 other tests skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-1/igt at kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt at kms_pm_backlight@bad-brightness: - shard-bmg: [SKIP][354] ([Intel XE#2136]) -> [SKIP][355] ([Intel XE#870]) +2 other tests skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_pm_backlight@bad-brightness.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at kms_pm_backlight@bad-brightness.html * igt at kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: [SKIP][356] ([Intel XE#2136]) -> [SKIP][357] ([Intel XE#2391]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_pm_dc@dc3co-vpb-simulation.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at kms_pm_dc@dc3co-vpb-simulation.html * igt at kms_pm_dc@dc6-dpms: - shard-bmg: [SKIP][358] ([Intel XE#2136]) -> [FAIL][359] ([Intel XE#1430]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_pm_dc@dc6-dpms.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-5/igt at kms_pm_dc@dc6-dpms.html * igt at kms_pm_lpsp@kms-lpsp: - shard-bmg: [SKIP][360] ([Intel XE#2136]) -> [SKIP][361] ([Intel XE#2499]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_pm_lpsp@kms-lpsp.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-5/igt at kms_pm_lpsp@kms-lpsp.html * igt at kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][362] ([Intel XE#2446]) -> [SKIP][363] ([Intel XE#1439] / [Intel XE#836]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-1/igt at kms_pm_rpm@dpms-mode-unset-lpsp.html * igt at kms_pm_rpm@modeset-lpsp: - shard-bmg: [SKIP][364] ([Intel XE#2446]) -> [SKIP][365] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_pm_rpm@modeset-lpsp.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at kms_pm_rpm@modeset-lpsp.html * igt at kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][366] ([Intel XE#1489]) -> [SKIP][367] ([Intel XE#2136]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-432/igt at kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-bmg: [SKIP][368] ([Intel XE#2136]) -> [SKIP][369] ([Intel XE#1489]) +10 other tests skip [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-5/igt at kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt at kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][370] ([Intel XE#2136]) -> [SKIP][371] ([Intel XE#2387]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_psr2_su@frontbuffer-xrgb8888.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-8/igt at kms_psr2_su@frontbuffer-xrgb8888.html * igt at kms_psr2_su@page_flip-xrgb8888: - shard-bmg: [SKIP][372] ([Intel XE#2387]) -> [SKIP][373] ([Intel XE#2136] / [Intel XE#2231]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-8/igt at kms_psr2_su@page_flip-xrgb8888.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_psr2_su@page_flip-xrgb8888.html - shard-dg2-set2: [SKIP][374] ([Intel XE#1122]) -> [SKIP][375] ([Intel XE#2136]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-436/igt at kms_psr2_su@page_flip-xrgb8888.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_psr2_su@page_flip-xrgb8888.html * igt at kms_psr@fbc-pr-cursor-blt: - shard-bmg: [SKIP][376] ([Intel XE#2136]) -> [SKIP][377] ([Intel XE#2234] / [Intel XE#2850]) +22 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_psr@fbc-pr-cursor-blt.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at kms_psr@fbc-pr-cursor-blt.html * igt at kms_psr@pr-sprite-blt: - shard-dg2-set2: [SKIP][378] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][379] ([Intel XE#2136]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-466/igt at kms_psr@pr-sprite-blt.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_psr@pr-sprite-blt.html - shard-bmg: [SKIP][380] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][381] ([Intel XE#2136] / [Intel XE#2231]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-1/igt at kms_psr@pr-sprite-blt.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_psr@pr-sprite-blt.html * igt at kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][382] ([Intel XE#2136]) -> [SKIP][383] ([Intel XE#2414]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-1/igt at kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt at kms_rotation_crc@bad-pixel-format: - shard-bmg: [SKIP][384] ([Intel XE#2423]) -> [SKIP][385] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_rotation_crc@bad-pixel-format.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-7/igt at kms_rotation_crc@bad-pixel-format.html * igt at kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-bmg: [SKIP][386] ([Intel XE#2423]) -> [SKIP][387] ([Intel XE#2330]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt at kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][388] ([Intel XE#2413]) -> [SKIP][389] ([Intel XE#3007]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-5/igt at kms_scaling_modes@scaling-mode-center.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at kms_scaling_modes@scaling-mode-center.html - shard-dg2-set2: [SKIP][390] ([Intel XE#455]) -> [SKIP][391] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-433/igt at kms_scaling_modes@scaling-mode-center.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at kms_scaling_modes@scaling-mode-center.html * igt at kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: [SKIP][392] ([Intel XE#2423]) -> [SKIP][393] ([Intel XE#1435]) [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_setmode@invalid-clone-exclusive-crtc.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at kms_setmode@invalid-clone-exclusive-crtc.html * igt at kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][394] ([Intel XE#2426]) -> [FAIL][395] ([Intel XE#1729]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-5/igt at kms_tiled_display@basic-test-pattern.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-1/igt at kms_tiled_display@basic-test-pattern.html * igt at kms_vrr@flip-suspend: - shard-bmg: [SKIP][396] ([Intel XE#2423]) -> [SKIP][397] ([Intel XE#1499]) +2 other tests skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_vrr@flip-suspend.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-5/igt at kms_vrr@flip-suspend.html * igt at kms_writeback@writeback-pixel-formats: - shard-bmg: [SKIP][398] ([Intel XE#2423]) -> [SKIP][399] ([Intel XE#756]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at kms_writeback@writeback-pixel-formats.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-1/igt at kms_writeback@writeback-pixel-formats.html * igt at sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][400] ([Intel XE#2423]) -> [SKIP][401] ([Intel XE#1091] / [Intel XE#2849]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at sriov_basic@enable-vfs-autoprobe-off.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at sriov_basic@enable-vfs-autoprobe-off.html * igt at xe_eudebug@basic-read-event: - shard-bmg: [SKIP][402] ([Intel XE#1130]) -> [SKIP][403] ([Intel XE#2905]) +15 other tests skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at xe_eudebug@basic-read-event.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at xe_eudebug@basic-read-event.html * igt at xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-bmg: [SKIP][404] ([Intel XE#1130]) -> [SKIP][405] ([Intel XE#3889]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-1/igt at xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt at xe_eudebug_online@interrupt-other-debuggable: - shard-dg2-set2: [SKIP][406] ([Intel XE#2905]) -> [SKIP][407] ([Intel XE#1130]) [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-433/igt at xe_eudebug_online@interrupt-other-debuggable.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at xe_eudebug_online@interrupt-other-debuggable.html - shard-bmg: [SKIP][408] ([Intel XE#2905]) -> [SKIP][409] ([Intel XE#1130]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-5/igt at xe_eudebug_online@interrupt-other-debuggable.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at xe_eudebug_online@interrupt-other-debuggable.html * igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][410] ([Intel XE#1130]) -> [SKIP][411] ([Intel XE#2322]) +10 other tests skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html * igt at xe_exec_fault_mode@many-bindexecqueue-userptr-rebind-imm: - shard-dg2-set2: [SKIP][412] ([Intel XE#288]) -> [SKIP][413] ([Intel XE#1130]) +2 other tests skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-463/igt at xe_exec_fault_mode@many-bindexecqueue-userptr-rebind-imm.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at xe_exec_fault_mode@many-bindexecqueue-userptr-rebind-imm.html * igt at xe_media_fill@media-fill: - shard-bmg: [SKIP][414] ([Intel XE#2459] / [Intel XE#2596]) -> [SKIP][415] ([Intel XE#1130]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-5/igt at xe_media_fill@media-fill.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at xe_media_fill@media-fill.html - shard-dg2-set2: [SKIP][416] ([Intel XE#560]) -> [SKIP][417] ([Intel XE#1130]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-433/igt at xe_media_fill@media-fill.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at xe_media_fill@media-fill.html * igt at xe_oa@oa-tlb-invalidate: - shard-bmg: [SKIP][418] ([Intel XE#1130]) -> [SKIP][419] ([Intel XE#2248]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at xe_oa@oa-tlb-invalidate.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-3/igt at xe_oa@oa-tlb-invalidate.html * igt at xe_oa@syncs-ufence-wait: - shard-dg2-set2: [SKIP][420] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][421] ([Intel XE#1130]) [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-435/igt at xe_oa@syncs-ufence-wait.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at xe_oa@syncs-ufence-wait.html * igt at xe_pm@s4-d3cold-basic-exec: - shard-bmg: [SKIP][422] ([Intel XE#1130]) -> [SKIP][423] ([Intel XE#2284]) +1 other test skip [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at xe_pm@s4-d3cold-basic-exec.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at xe_pm@s4-d3cold-basic-exec.html * igt at xe_query@multigpu-query-cs-cycles: - shard-bmg: [SKIP][424] ([Intel XE#1130]) -> [SKIP][425] ([Intel XE#944]) +2 other tests skip [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at xe_query@multigpu-query-cs-cycles.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at xe_query@multigpu-query-cs-cycles.html * igt at xe_query@multigpu-query-invalid-extension: - shard-bmg: [SKIP][426] ([Intel XE#944]) -> [SKIP][427] ([Intel XE#1130]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-8/igt at xe_query@multigpu-query-invalid-extension.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-2/igt at xe_query@multigpu-query-invalid-extension.html - shard-dg2-set2: [SKIP][428] ([Intel XE#944]) -> [SKIP][429] ([Intel XE#1130]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-dg2-436/igt at xe_query@multigpu-query-invalid-extension.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-dg2-466/igt at xe_query@multigpu-query-invalid-extension.html * igt at xe_sriov_auto_provisioning@exclusive-ranges: - shard-bmg: [SKIP][430] ([Intel XE#1130]) -> [SKIP][431] ([Intel XE#4130]) [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8200/shard-bmg-7/igt at xe_sriov_auto_provisioning@exclusive-ranges.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/shard-bmg-4/igt at xe_sriov_auto_provisioning@exclusive-ranges.html [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#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#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [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#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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [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#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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323 [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [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#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [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#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [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#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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [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#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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#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#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [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#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [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#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [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#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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [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#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_8200 -> IGTPW_12471 * Linux: xe-2516-fb87b4e061d1844beaca66c8446cfcf60db99a23 -> xe-2517-e48abf2c0aa4813a4629aeebd0547eb86f0f1a91 IGTPW_12471: 8ee26c6c2c199488285311f882112bd9b6486b89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8200: 5352b187076e89a9ff146cc1ecbd809aa20e4f91 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2516-fb87b4e061d1844beaca66c8446cfcf60db99a23: fb87b4e061d1844beaca66c8446cfcf60db99a23 xe-2517-e48abf2c0aa4813a4629aeebd0547eb86f0f1a91: e48abf2c0aa4813a4629aeebd0547eb86f0f1a91 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12471/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From juhapekka.heikkila at gmail.com Tue Jan 21 11:08:25 2025 From: juhapekka.heikkila at gmail.com (=?UTF-8?Q?Juha=2DPekka_Heikkil=C3=A4?=) Date: Tue, 21 Jan 2025 13:08:25 +0200 Subject: =?UTF-8?Q?Re=3A_=E2=9C=97_i915=2ECI=2EBAT=3A_failure_for_tests=2Fkms=5Faddfb=5Fbas?= =?UTF-8?Q?ic=3A_Fix_addfb25=5Ftests_to_not_require_intel_=28rev2=29?= In-Reply-To: <173741053706.2329094.3027441962775722020@b555e5b46a47> References: <20250120171021.1029868-1-george.zhang@amd.com> <173741053706.2329094.3027441962775722020@b555e5b46a47> Message-ID: @I915-ci-infra at lists.freedesktop.org These newly spotted regressions (on this i915 bat and xe full run results) have nothing to do with this patch, here is just relaxed one subtest group to run on other than Intel hw hence Intel results shouldn't change because of this change. /Juha-Pekka On Tue, Jan 21, 2025 at 12:02?AM Patchwork wrote: > > Patch Details > Series:tests/kms_addfb_basic: Fix addfb25_tests to not require intel (rev2) > URL:https://patchwork.freedesktop.org/series/143739/ > State:failure > Details:https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12469/index.html > > CI Bug Log - changes from IGT_8199 -> IGTPW_12469 > > Summary > > FAILURE > > Serious unknown changes coming with IGTPW_12469 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12469, 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_12469/index.html > > Participating hosts (39 -> 41) > > Additional (2): fi-bsw-nick fi-elk-e7500 > > Possible new issues > > Here are the unknown changes that may have been introduced in IGTPW_12469: > > IGT changes > > Possible regressions > > igt at i915_pm_rpm@module-reload: > > fi-cfl-8700k: PASS -> ABORT > > Known issues > > Here are the changes found in IGTPW_12469 that come from known issues: > > IGT changes > > Issues hit > > igt at fbdev@info: > > fi-bsw-nick: NOTRUN -> SKIP (i915#1849) > > igt at gem_lmem_swapping@parallel-random-engines: > > fi-bsw-nick: NOTRUN -> SKIP +43 other tests skip > > igt at gem_mmap@basic: > > bat-dg2-13: NOTRUN -> SKIP (i915#4083) > > igt at gem_tiled_blits@basic: > > bat-dg2-13: NOTRUN -> SKIP (i915#4077) +2 other tests skip > > igt at gem_tiled_pread_basic: > > bat-dg2-13: NOTRUN -> SKIP (i915#4079) +1 other test skip > > igt at i915_pm_rps@basic-api: > > bat-dg2-13: NOTRUN -> SKIP (i915#11681 / i915#6621) > > igt at i915_selftest@live: > > bat-twl-1: PASS -> ABORT (i915#12919 / i915#13503) > > igt at i915_selftest@live at gt_mocs: > > bat-twl-1: PASS -> ABORT (i915#12919) > > igt at i915_selftest@live at workarounds: > > bat-arlh-3: PASS -> DMESG-FAIL (i915#12061) +1 other test dmesg-fail > bat-arls-5: PASS -> DMESG-FAIL (i915#12061) +1 other test dmesg-fail > > igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: > > bat-dg2-13: NOTRUN -> SKIP (i915#5190) > > igt at kms_addfb_basic@basic-y-tiled-legacy: > > bat-dg2-13: NOTRUN -> SKIP (i915#4215 / i915#5190) > > igt at kms_addfb_basic@framebuffer-vs-set-tiling: > > bat-dg2-13: NOTRUN -> SKIP (i915#4212) +7 other tests skip > > igt at kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: > > bat-dg2-13: NOTRUN -> SKIP (i915#4103 / i915#4213) +1 other test skip > > igt at kms_dsc@dsc-basic: > > bat-dg2-13: NOTRUN -> SKIP (i915#3555 / i915#3840) > > igt at kms_force_connector_basic@force-load-detect: > > bat-dg2-13: NOTRUN -> SKIP > > igt at kms_force_connector_basic@prune-stale-modes: > > bat-dg2-13: NOTRUN -> SKIP (i915#5274) > > igt at kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 at pipe-a-hdmi-a-1: > > fi-elk-e7500: NOTRUN -> SKIP +24 other tests skip > > igt at kms_pm_backlight@basic-brightness: > > bat-dg2-13: NOTRUN -> SKIP (i915#5354) > > igt at kms_psr@psr-primary-page-flip: > > bat-dg2-13: NOTRUN -> SKIP (i915#1072 / i915#9732) +3 other tests skip > > igt at kms_setmode@basic-clone-single-crtc: > > bat-dg2-13: NOTRUN -> SKIP (i915#3555) > > igt at prime_vgem@basic-fence-flip: > > bat-dg2-13: NOTRUN -> SKIP (i915#3708) > > igt at prime_vgem@basic-fence-mmap: > > bat-dg2-13: NOTRUN -> SKIP (i915#3708 / i915#4077) +1 other test skip > > igt at prime_vgem@basic-write: > > bat-dg2-13: NOTRUN -> SKIP (i915#3291 / i915#3708) +2 other tests skip > > Possible fixes > > igt at i915_module_load@load: > > bat-dg2-13: ABORT (i915#13530) -> PASS > > igt at i915_selftest@live at workarounds: > > {bat-arls-6}: DMESG-FAIL (i915#12061) -> PASS +1 other test pass > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > Build changes > > CI: CI-20190529 -> None > IGT: IGT_8199 -> IGTPW_12469 > Linux: CI_DRM_15983 -> CI_DRM_15985 > > CI-20190529: 20190529 > CI_DRM_15983: 4d9c78b35c395ed49796502224f3a421b0ce65ef @ git://anongit.freedesktop.org/gfx-ci/linux > CI_DRM_15985: fb87b4e061d1844beaca66c8446cfcf60db99a23 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_12469: 27414070fc43f52e70d66da13ee97d856fcb0373 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8199: 8df1895672949617992cddbc33c5d683865879e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git From patchwork at emeril.freedesktop.org Tue Jan 21 11:29:06 2025 From: patchwork at emeril.freedesktop.org (Patchwork) Date: Tue, 21 Jan 2025 11:29:06 -0000 Subject: =?utf-8?q?=E2=9C=93_i915=2ECI=2EBAT=3A_success_for_series_starting_with_=5Bv?= =?utf-8?q?4=2C1/2=5D_tests/intel/kms=5Ffrontbuffer=5Ftracking=3A_Skip_fbc-*?= =?utf-8?q?_tests_on_BMG_=28rev2=29?= In-Reply-To: <20250109055652.405793-1-mohammed.thasleem@intel.com> References: <20250109055652.405793-1-mohammed.thasleem@intel.com> Message-ID: <173745894668.2570706.3730078365939658800@b555e5b46a47> == Series Details == Series: series starting with [v4,1/2] tests/intel/kms_frontbuffer_tracking: Skip fbc-* tests on BMG (rev2) URL : https://patchwork.freedesktop.org/series/143304/ State : success == Summary == CI Bug Log - changes from IGT_8198 -> IGTPW_12459 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/index.html Participating hosts (44 -> 40) ------------------------------ Missing (4): bat-apl-1 fi-kbl-guc fi-glk-j4005 fi-snb-2520m New tests --------- New tests have been introduced between IGT_8198 and IGTPW_12459: ### New IGT tests (103) ### * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-farfromfence-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb101010-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@drrs-rgb565-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-indfb-fliptrack-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-pwrite: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-1p-shrfb-fliptrack-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-indfb-fliptrack-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-2p-shrfb-fliptrack-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-farfromfence-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-cpu: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-gtt: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-pwrite: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt at meta_test@fail-result: - Statuses : 2 fail(s) - Exec time: [0.01, 0.02] s Known issues ------------ Here are the changes found in IGTPW_12459 that come from known issues: ### IGT changes ### #### Issues hit #### * igt at i915_selftest@live: - fi-cfl-guc: [PASS][1] -> [ABORT][2] ([i915#13551]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/fi-cfl-guc/igt at i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-cfl-guc/igt at i915_selftest@live.html - fi-cfl-8700k: [PASS][3] -> [ABORT][4] ([i915#13551]) +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/fi-cfl-8700k/igt at i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-cfl-8700k/igt at i915_selftest@live.html * igt at i915_selftest@live at workarounds: - bat-mtlp-6: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-mtlp-6/igt at i915_selftest@live at workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-mtlp-6/igt at i915_selftest@live at workarounds.html * igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt: - bat-arlh-2: NOTRUN -> [SKIP][7] ([i915#11346]) +719 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-arlh-2/igt at kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen: - fi-kbl-x1275: NOTRUN -> [SKIP][8] +719 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-kbl-x1275/igt at kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen.html * igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - bat-dg1-6: NOTRUN -> [SKIP][9] ([i915#12311]) +79 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-dg1-6/igt at kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - fi-ilk-650: NOTRUN -> [SKIP][10] +170 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-ilk-650/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - fi-tgl-1115g4: NOTRUN -> [SKIP][11] +138 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt at kms_frontbuffer_tracking@fbc-2p-rte: - bat-kbl-2: NOTRUN -> [SKIP][12] +104 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-kbl-2/igt at kms_frontbuffer_tracking@fbc-2p-rte.html * igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - fi-ivb-3770: NOTRUN -> [SKIP][13] +197 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-ivb-3770/igt at kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt: - fi-tgl-1115g4: NOTRUN -> [SKIP][14] ([i915#13534]) +34 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html * igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt (NEW): - fi-tgl-1115g4: NOTRUN -> [SKIP][15] ([i915#11560]) +183 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt at kms_frontbuffer_tracking@fbcpsr-2p-rte: - fi-hsw-4770: NOTRUN -> [SKIP][16] +10 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-hsw-4770/igt at kms_frontbuffer_tracking@fbcpsr-2p-rte.html * igt at kms_frontbuffer_tracking@pipe-fbc-rte: - fi-tgl-1115g4: NOTRUN -> [SKIP][17] ([i915#9766]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html - bat-dg1-6: NOTRUN -> [SKIP][18] ([i915#12311] / [i915#4342]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-dg1-6/igt at kms_frontbuffer_tracking@pipe-fbc-rte.html * igt at kms_frontbuffer_tracking@plane-fbc-rte: - fi-tgl-1115g4: NOTRUN -> [SKIP][19] ([i915#10070]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-tgl-1115g4/igt at kms_frontbuffer_tracking@plane-fbc-rte.html * igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite: - fi-ilk-650: NOTRUN -> [INCOMPLETE][20] ([i915#13531]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-ilk-650/igt at kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html * igt at meta_test@fail-result (NEW): - bat-arlh-2: NOTRUN -> [FAIL][21] ([i915#13555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-arlh-2/igt at meta_test@fail-result.html - fi-kbl-x1275: NOTRUN -> [FAIL][22] ([i915#13555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-kbl-x1275/igt at meta_test@fail-result.html * igt at xe_module_load@load: - fi-ivb-3770: NOTRUN -> [FAIL][23] ([i915#13552]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-ivb-3770/igt at xe_module_load@load.html - fi-hsw-4770: NOTRUN -> [FAIL][24] ([i915#13552]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-hsw-4770/igt at xe_module_load@load.html - fi-ilk-650: NOTRUN -> [FAIL][25] ([i915#13552]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-ilk-650/igt at xe_module_load@load.html - bat-mtlp-6: NOTRUN -> [ABORT][26] ([i915#13553]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-mtlp-6/igt at xe_module_load@load.html - fi-kbl-x1275: NOTRUN -> [FAIL][27] ([i915#13552]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/fi-kbl-x1275/igt at xe_module_load@load.html - bat-kbl-2: NOTRUN -> [FAIL][28] ([i915#13552]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-kbl-2/igt at xe_module_load@load.html - bat-dg1-6: NOTRUN -> [DMESG-WARN][29] ([i915#13554]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-dg1-6/igt at xe_module_load@load.html #### Possible fixes #### * igt at i915_module_load@reload: - bat-atsm-1: [ABORT][30] ([i915#13292]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-atsm-1/igt at i915_module_load@reload.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-atsm-1/igt at i915_module_load@reload.html * igt at kms_addfb_basic@basic-x-tiled-legacy: - bat-arlh-2: [SKIP][32] ([i915#10200] / [i915#11346] / [i915#11666]) -> [PASS][33] +1 other test pass [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arlh-2/igt at kms_addfb_basic@basic-x-tiled-legacy.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-arlh-2/igt at kms_addfb_basic@basic-x-tiled-legacy.html - bat-dg1-6: [SKIP][34] ([i915#12311] / [i915#4212]) -> [PASS][35] +1 other test pass [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-dg1-6/igt at kms_addfb_basic@basic-x-tiled-legacy.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-dg1-6/igt at kms_addfb_basic@basic-x-tiled-legacy.html #### Warnings #### * igt at kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-arlh-2: [SKIP][36] ([i915#10200] / [i915#11346] / [i915#11666] / [i915#12203]) -> [SKIP][37] ([i915#11346] / [i915#12203]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arlh-2/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/bat-arlh-2/igt at kms_addfb_basic@addfb25-y-tiled-small-legacy.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10070 [i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#11560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11560 [i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#13292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13292 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#13531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13531 [i915#13534]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13534 [i915#13551]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13551 [i915#13552]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13552 [i915#13553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13553 [i915#13554]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13554 [i915#13555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13555 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8198 -> IGTPW_12459 * Linux: CI_DRM_15978 -> CI_DRM_15982 CI-20190529: 20190529 CI_DRM_15978: db09bf4e722f65089b91798e6d490d21b8dd8143 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15982: aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12459: c33d54be70c2115e82190804df90d1bb83939b5d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12459/index.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From peter.senna at linux.intel.com Tue Jan 21 11:29:42 2025 From: peter.senna at linux.intel.com (Peter Senna Tschudin) Date: Tue, 21 Jan 2025 12:29:42 +0100 Subject: [PATCH i-g-t 0/2] Integrat kmemleak scans in igt_runner Message-ID: <20250121112944.115491-1-peter.senna@linux.intel.com> This patch series introduces a library to interact with the Linux kernel's kmemleak feature and integrates it into igt_runner. If kmemleaks are detected, they will be saved in the igt_runner results directory in a file named kmemleak.txt. During testing, the size of the kmemleak.txt file varied significantly. Larger files, up to 2 MB, were observed when running i915-BAT on a Tiger Lake DUT. Conversely, smaller files, typically under 100 KB, were generated when running Xe BAT on the same DUT. Large files often contain numerous false positives, with the e1000 driver being a frequent source of noise. The time required for the Linux kernel to complete a kmemleak scan ranges from 5 to 60 seconds. This variability can cause igt_runner to slow down by a factor of 4 when using the -keach option. Transient leaks are a common phenomenon but are mostly undetected by the current version of this library. A typical transient leak occurs when pointers are reused, such as in linked lists. For example, if 10 calls to kmalloc are made, storing the address in the same variable and freeing only the final allocation, the previous 9 allocations become transient leaks. These leaks will go undetected unless the kernel thread performs continuous scanning. To enable continuous scanning: # echo scan=1 > /sys/kernel/debug/kmemleak This configures the kmemleak kernel thread to scan the memory continuously with 1 second pauses. While this may increase the likelihood of detecting transient leaks, it can significantly impact system performance. In most cases, the igt_runner slowdown remains in the 4x range, but the kernel thread will consume 100% of a CPU core, as observed with tools like top. When using scan=1, transient leaks that exist during an active scan will be detected. However, detection remains non-deterministic due to timing. It is recommended to reset the scan interval to the default value of 600 seconds after completing your tests. CC: stylon.wang at amd.com CC: Rodrigo.Siqueira at amd.com> CC: ramadevi.gandi at intel.com CC: ryszard.knop at intel.com CC: sameer.lattannavar at intel.com CC: lucas.demarchi at intel.com CC: jani.saarinen at intel.com CC: katarzyna.piecielska at intel.com CC: matthew.d.roper at intel.com CC: gregory.f.germano at intel.com CC: clinton.a.taylor at intel.com CC: jianshui.yu at intel.com CC: balasubramani.vivekanandan at intel.com CC: jonathan.cavitt at intel.com Peter Senna Tschudin (2): lib/igt_kmemleak: library to interact with kmemleak runner/executor: Integrate igt_kmemleak scans lib/igt_kmemleak.c | 268 +++++++++++++++++++++++++++++++++++++++ lib/igt_kmemleak.h | 15 +++ lib/meson.build | 1 + lib/tests/igt_kmemleak.c | 259 +++++++++++++++++++++++++++++++++++++ lib/tests/meson.build | 1 + runner/executor.c | 23 +++- runner/runner_tests.c | 18 ++- runner/settings.c | 31 ++++- runner/settings.h | 2 + 9 files changed, 613 insertions(+), 5 deletions(-) create mode 100644 lib/igt_kmemleak.c create mode 100644 lib/igt_kmemleak.h create mode 100644 lib/tests/igt_kmemleak.c -- 2.34.1 From peter.senna at linux.intel.com Tue Jan 21 11:29:43 2025 From: peter.senna at linux.intel.com (Peter Senna Tschudin) Date: Tue, 21 Jan 2025 12:29:43 +0100 Subject: [PATCH i-g-t 1/2] lib/igt_kmemleak: library to interact with kmemleak In-Reply-To: <20250121112944.115491-1-peter.senna@linux.intel.com> References: <20250121112944.115491-1-peter.senna@linux.intel.com> Message-ID: <20250121112944.115491-2-peter.senna@linux.intel.com> Adds a simple library for interacting with kmemleak and add unit testing for the library. There are two modes intended to integrate with igt_runner: - once: collect kmemleaks after all test completed - each: collect kmemleaks after eachb test completes To use the library include "igt_kmemleak.h", call igt_kmemleak_init(NULL) to check if kmemleak is enabled and finally call igt_kmemleak() to collect kmemleaks. igt_kmemleak() expect the following arguments: - const char *last_test: Name of the last lest or NULL - int resdirfd: file descriptor of the results directory - bool kmemleak_each: Are we scanning once or scanning after each test? CC: stylon.wang at amd.com CC: Rodrigo.Siqueira at amd.com> CC: ramadevi.gandi at intel.com CC: ryszard.knop at intel.com CC: sameer.lattannavar at intel.com CC: lucas.demarchi at intel.com CC: jani.saarinen at intel.com CC: katarzyna.piecielska at intel.com CC: matthew.d.roper at intel.com CC: gregory.f.germano at intel.com CC: clinton.a.taylor at intel.com CC: jianshui.yu at intel.com CC: balasubramani.vivekanandan at intel.com CC: jonathan.cavitt at intel.com Signed-off-by: Peter Senna Tschudin --- lib/igt_kmemleak.c | 268 +++++++++++++++++++++++++++++++++++++++ lib/igt_kmemleak.h | 15 +++ lib/meson.build | 1 + lib/tests/igt_kmemleak.c | 259 +++++++++++++++++++++++++++++++++++++ lib/tests/meson.build | 1 + 5 files changed, 544 insertions(+) create mode 100644 lib/igt_kmemleak.c create mode 100644 lib/igt_kmemleak.h create mode 100644 lib/tests/igt_kmemleak.c diff --git a/lib/igt_kmemleak.c b/lib/igt_kmemleak.c new file mode 100644 index 000000000..ff9543b58 --- /dev/null +++ b/lib/igt_kmemleak.c @@ -0,0 +1,268 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright ? 2024 Intel Corporation + */ + +#include +#include +#include +#include +#include + +#include "igt_core.h" +#include "igt_kmemleak.h" + +/* We can change the path for unit testing, see igt_kmemleak_init() */ +static char igt_kmemleak_file[256] = "/sys/kernel/debug/kmemleak"; +static bool igt_kmemleak_sync; + +#define MAX_WRITE_RETRIES 5 +/** + * igt_kmemleak_write - Writes the buffer to the file descriptor retrying when + * possible. + * @fd: The file descriptor to write to. + * @buf: Pointer to the data to write. + * @count: Total number of bytes to write. + * + * Returns the total number of bytes written on success, or -1 on failure. + */ +static ssize_t igt_kmemleak_write(int fd, const void *buf, size_t count) +{ + const char *ptr = buf; + size_t remaining = count; + ssize_t written; + int retries = 0; + + while (remaining > 0) { + written = write(fd, ptr, remaining); + if (written > 0) { + ptr += written; + remaining -= written; + } else if (written == -1) { + if (errno == EINTR || errno == EAGAIN) { + /* Retry for recoverable errors */ + if (++retries > MAX_WRITE_RETRIES) { + igt_warn("igt_write: Exceeded retry limit\n"); + return -1; + } + continue; + } else { + /* Log unrecoverable error */ + igt_warn("igt_write: unrecoverable write error"); + return -1; + } + } + } + return count; +} + +/** + * igt_kmemeak_cmd: + * @cmd: command to send to kmemleak + * + * Send a command to kmemleak. + * + * Returns: true if sending the command was successful, false otherwise. + */ +static bool igt_kmemleak_cmd(const char *cmd) +{ + int fp; + size_t wlen; + int cmdlen = strlen(cmd); + + fp = open(igt_kmemleak_file, O_RDWR); + if (!fp) + return false; + + wlen = igt_kmemleak_write(fp, cmd, cmdlen); + close(fp); + + return wlen == cmdlen; +} + +/** + * igt_kmemeak_clear: + * + * Trigger an immediate clear on kmemleak. + * + * Returns: true if sending the command to clear was successful, false + * otherwise. + */ +static bool igt_kmemleak_clear(void) +{ + return igt_kmemleak_cmd("clear"); +} + +/** + * igt_kmemeak_found_leaks: + * + * Check if kmemleak found any leaks by trying to read one byte from the + * kmemleak file. + * + * Returns: true if kmemleak found any leaks, false otherwise. + */ +static bool igt_kmemleak_found_leaks(void) +{ + FILE *fp; + char buf[1]; + size_t rlen; + + fp = fopen(igt_kmemleak_file, "r"); + if (!fp) + return false; + + rlen = fread(buf, 1, 1, fp); + fclose(fp); + + if (rlen == 1) + lseek(fileno(fp), 0, SEEK_SET); + + return rlen == 1; +} + +/** + * igt_kmemeak_scan: + * + * Trigger an immediate scan on kmemleak. + * + * Returns: true if leaks are found. False on failure and when no leaks are + * found. + */ +static bool igt_kmemleak_scan(void) +{ + if (!igt_kmemleak_cmd("scan")) + return false; + + /* kmemleak documentation states that "the memory scanning is only + * performed when the /sys/kernel/debug/kmemleak file is read." Read + * a byte to trigger the scan now. + */ + return igt_kmemleak_found_leaks(); +} + +/** + * igt_kmemleak_append_to: + * @last_test: last test name to append to the file + * @resdirfd: file descriptor of the results directory + * @kmemleak_each: Are we scanning once or scanning after each test? + * + * Append the kmemleak file to the result file adding a header indicating if + * the leaks are for all tests or for a single one. + * + * Returns: true if appending to the file was successful, false otherwise. + */ +static bool igt_kmemleak_append_to(const char *last_test, int resdirfd, + bool kmemleak_each) +{ + const char *before = "kmemleaks found before running any test\n\n"; + const char *once = "kmemleaks found after running all tests\n"; + int kmemleakfd, resfilefd; + char buf[4096]; + size_t rlen; + + kmemleakfd = open(igt_kmemleak_file, O_RDONLY); + if (kmemleakfd < 0) + return false; + + /* Seek back to first byte */ + lseek(kmemleakfd, 0, SEEK_SET); + + /* Open text file to append */ + resfilefd = openat(resdirfd, KMEMLEAKRESFILENAME, + O_RDWR | O_CREAT | O_APPEND, 0666); + if (!resfilefd) { + close(kmemleakfd); + return false; + } + + /* This is the header added before the content of the kmemleak file */ + if (kmemleak_each) + if (!last_test) + igt_kmemleak_write(resfilefd, before, strlen(before)); + else { + /* Write \n\n last_test \n to buf */ + snprintf(buf, sizeof(buf), + "\n\nkmemleaks found after running %s:\n", + last_test); + + igt_kmemleak_write(resfilefd, buf, strlen(buf)); + memset(buf, 0, sizeof(buf)); + } + else + igt_kmemleak_write(resfilefd, once, strlen(once)); + + if (igt_kmemleak_sync) + fsync(resfilefd); + + while ((rlen = read(kmemleakfd, buf, sizeof(buf))) > 0) { + if (igt_kmemleak_write(resfilefd, buf, rlen) != rlen) { + close(resfilefd); + close(kmemleakfd); + return false; + } + if (igt_kmemleak_sync) + fsync(resfilefd); + } + + close(resfilefd); + close(kmemleakfd); + + return true; +} + +/** + * igt_kmemeak_init: + * @unit_test_kmemleak_file: path to kmemleak file for unit testing + * @sync: sync the kmemleak file often + * + * Check if kmemleak is enabled in the kernel, if debugfs is mounted and + * if kmemleak file is present and readable. Also sets the igt_kmemleak_sync. + * + * Returns: true if kmemleak is enabled, false otherwise. + */ +bool igt_kmemleak_init(const char *unit_test_kmemleak_file, bool sync) +{ + FILE *fp; + + igt_kmemleak_sync = sync; + + if (unit_test_kmemleak_file) + snprintf(igt_kmemleak_file, + sizeof(igt_kmemleak_file), + "%s", + unit_test_kmemleak_file); + + fp = fopen(igt_kmemleak_file, "r"); + if (!fp) + return false; + + fclose(fp); + + return true; +} + +/** + * igt_kmemleak: + * @last_test: last test name to append to the file + * @resdirfd: file descriptor of the results directory + * @kmemleak_each: Are we scanning once or scanning after each test? + * + * This is the main function that should be called when integrating igt_kmemleak + * into igt_runner or elsewhere. There are two flows: + * - run once: runs only once after all tests are completed + * - run for each test: runs after every test + * + * Returns: true on success, false otherwise. + */ +bool igt_kmemleak(const char *last_test, int resdirfd, bool kmemleak_each) +{ + /* Scan to collect results */ + if (igt_kmemleak_scan()) + if (!igt_kmemleak_append_to(last_test, resdirfd, kmemleak_each)) + return false; + + if (kmemleak_each) + igt_kmemleak_clear(); + + return true; +} diff --git a/lib/igt_kmemleak.h b/lib/igt_kmemleak.h new file mode 100644 index 000000000..a3c142827 --- /dev/null +++ b/lib/igt_kmemleak.h @@ -0,0 +1,15 @@ +/* SPDX-License-Identifier: MIT + * Copyright ? 2024 Intel Corporation + */ + +#ifndef IGT_KMEMLEAK_H +#define IGT_KMEMLEAK_H + +#include + +bool igt_kmemleak_init(const char *unit_test_kmemleak_file, bool sync); +bool igt_kmemleak(const char *last_test, int resdirfd, bool kmemleak_each); + +#define KMEMLEAKRESFILENAME "kmemleak.txt" + +#endif /* IGT_KMEMLEAK_H */ diff --git a/lib/meson.build b/lib/meson.build index 9fffdd3c6..7959dcacb 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -97,6 +97,7 @@ lib_sources = [ 'igt_dummyload.c', 'igt_store.c', 'uwildmat/uwildmat.c', + 'igt_kmemleak.c', 'igt_kmod.c', 'igt_ktap.c', 'igt_panfrost.c', diff --git a/lib/tests/igt_kmemleak.c b/lib/tests/igt_kmemleak.c new file mode 100644 index 000000000..717ba2852 --- /dev/null +++ b/lib/tests/igt_kmemleak.c @@ -0,0 +1,259 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright ? 2024 Intel Corporation + */ + +#include +#include +#include +#include + +#include "igt.h" +#include "igt_kmemleak.h" + +const char *kmemleak_file_example = +"unreferenced object 0xffff888102a2e638 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" 00 00 00 00 00 00 00 00 0d 01 a2 00 00 00 00 00 ................\n" +" f0 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" +" backtrace (crc 2df71a7e):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_create_op+0x1c0/0x400\n" +" [] acpi_ps_parse_loop+0x16c/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170" +"unreferenced object 0xffff888102a2ed18 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" 38 e6 a2 02 81 88 ff ff 0d 11 2d 00 00 00 00 00 8.........-.....\n" +" f2 7c 03 00 00 c9 ff ff 58 ea a2 02 81 88 ff ff .|......X.......\n" +" backtrace (crc ec2a8bdc):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_create_op+0x1c0/0x400\n" +" [] acpi_ps_parse_loop+0x16c/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170" +"unreferenced object 0xffff888102a2ea58 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" 38 e6 a2 02 81 88 ff ff 0d 01 a0 00 00 00 00 00 8...............\n" +" f6 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" +" backtrace (crc f911c0d1):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_create_op+0x1c0/0x400\n" +" [] acpi_ps_parse_loop+0x16c/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170" +"unreferenced object 0xffff888102a2e428 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" 58 ea a2 02 81 88 ff ff 0d 01 35 00 00 00 00 00 X.........5.....\n" +" fc 7c 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .|..............\n" +" backtrace (crc cb8aaffd):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_create_op+0x1c0/0x400\n" +" [] acpi_ps_parse_loop+0x16c/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170" +"unreferenced object 0xffff888102a2e008 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" 28 e4 a2 02 81 88 ff ff 0d 01 2d 00 00 00 00 00 (.........-.....\n" +" fc 7c 03 00 00 c9 ff ff c8 e2 a2 02 81 88 ff ff .|..............\n" +" backtrace (crc 7f883e78):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_get_next_namepath+0x1f5/0x390\n" +" [] acpi_ps_parse_loop+0x4a5/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170" +"unreferenced object 0xffff888102a2e2c8 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" 28 e4 a2 02 81 88 ff ff 0d 01 73 00 00 00 00 00 (.........s.....\n" +" 00 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" +" backtrace (crc 338c016):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_create_op+0x1c0/0x400\n" +" [] acpi_ps_parse_loop+0x16c/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170" +"unreferenced object 0xffff888102a2e378 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" c8 e2 a2 02 81 88 ff ff 0d 01 0d 00 00 00 00 00 ................\n" +" 01 7d 03 00 00 c9 ff ff 98 e7 a2 02 81 88 ff ff .}..............\n" +" backtrace (crc 665fb8a7):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_create_op+0x1c0/0x400\n" +" [] acpi_ps_parse_loop+0x16c/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170" +"unreferenced object 0xffff888102a2e798 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" 7c8 e2 a2 02 81 88 ff ff 0d 01 98 00 00 00 00 00 ................\n" +" 1b 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" +" backtrace (crc b7a23a1c):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_create_op+0x1c0/0x400\n" +" [] acpi_ps_parse_loop+0x16c/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170" +"unreferenced object 0xffff888102a2e0b8 (size 80):\n" +" comm \"swapper/0\", pid 1, jiffies 4294672730\n" +" hex dump (first 32 bytes):\n" +" 98 e7 a2 02 81 88 ff ff 0d 01 2d 00 00 00 00 00 ..........-.....\n" +" 1c 7d 03 00 00 c9 ff ff 00 00 00 00 00 00 00 00 .}..............\n" +" backtrace (crc 14d67a9c):\n" +" [] kmemleak_alloc+0x4b/0x80\n" +" [] kmem_cache_alloc_noprof+0x2ab/0x370\n" +" [] acpi_ps_alloc_op+0xdc/0xf0\n" +" [] acpi_ps_create_op+0x1c0/0x400\n" +" [] acpi_ps_parse_loop+0x16c/0xa60\n" +" [] acpi_ps_parse_aml+0x22f/0x5f0\n" +" [] acpi_ps_execute_method+0x152/0x380\n" +" [] acpi_ns_evaluate+0x31d/0x5e0\n" +" [] acpi_evaluate_object+0x206/0x490\n" +" [] __acpi_power_off.isra.0+0x22/0x70\n" +" [] acpi_turn_off_unused_power_resources+0xbb/0xf0\n" +" [] acpi_scan_init+0x119/0x290\n" +" [] acpi_init+0x23a/0x590\n" +" [] do_one_initcall+0x61/0x3d0\n" +" [] kernel_init_freeable+0x3e2/0x680\n" +" [] kernel_init+0x1b/0x170\n"; + +static const char *igt_kmemleak_unit_testing_resdir = "/tmp"; + +igt_main +{ + int resdirfd = 0; + + igt_subtest_group { + igt_subtest("test_igt_kmemleak_init") { + char unit_testing_kmemleak_filepath[256] = "/tmp/igt_kmemleak_test_XXXXXX"; + int written_bytes; + bool res; + int fd; + + fd = mkstemp(unit_testing_kmemleak_filepath); + igt_assert(fd >= 0); + + written_bytes = write(fd, kmemleak_file_example, + strlen(kmemleak_file_example)); + igt_assert_eq(written_bytes, strlen(kmemleak_file_example)); + + close(fd); + + res = igt_kmemleak_init(unit_testing_kmemleak_filepath, true); + igt_assert(res); + } + igt_fixture + igt_assert(resdirfd = open(igt_kmemleak_unit_testing_resdir, + O_DIRECTORY | O_RDONLY)); + + igt_subtest("test_igt_kmemleak_once") + igt_assert(igt_kmemleak(NULL, resdirfd, false)); + + igt_fixture { + /* Delete the result file */ + unlinkat(resdirfd, KMEMLEAKRESFILENAME, 0); + } + igt_subtest("test_igt_kmemleak_each") { + igt_assert(igt_kmemleak("test_name_1", resdirfd, true)); + igt_assert(igt_kmemleak("test_name_2", resdirfd, true)); + igt_assert(igt_kmemleak("test_name_3", resdirfd, true)); + } + igt_fixture { + close(resdirfd); + } + } +} diff --git a/lib/tests/meson.build b/lib/tests/meson.build index 1ce19f63c..5c42408d5 100644 --- a/lib/tests/meson.build +++ b/lib/tests/meson.build @@ -16,6 +16,7 @@ lib_tests = [ 'igt_ktap_parser', 'igt_list_only', 'igt_invalid_subtest_name', + 'igt_kmemleak', 'igt_nesting', 'igt_no_exit', 'igt_runnercomms_packets', -- 2.34.1 From peter.senna at linux.intel.com Tue Jan 21 11:29:44 2025 From: peter.senna at linux.intel.com (Peter Senna Tschudin) Date: Tue, 21 Jan 2025 12:29:44 +0100 Subject: [PATCH i-g-t 2/2] runner/executor: Integrate igt_kmemleak scans In-Reply-To: <20250121112944.115491-1-peter.senna@linux.intel.com> References: <20250121112944.115491-1-peter.senna@linux.intel.com> Message-ID: <20250121112944.115491-3-peter.senna@linux.intel.com> Modifies igt_runner to include calls to igt_kmemleak(). Kmemleak scanning is disabled by default, so add command line options to igt_runner to enable kmemleak scanning: -k, -k